
.aof {
  --aof-bg: #0b0d12;
  --aof-text: #f1f3f7;
  --aof-muted: #98a1b3;
  --aof-dim: #6b7488;
  --aof-line: rgba(255, 255, 255, 0.10);
  --aof-maxw: 1180px;

  background: var(--aof-bg);
  color: var(--aof-text);
  font-family: 'DM Sans', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  font-size: 15px;
  line-height: 1.6;

  border-top: 3px solid;
  border-image: linear-gradient(90deg, #953ee8 0%, #eb44b0 55%, #ff4146 100%) 1;
  margin-top: 96px;
}

.aof-inner,
.aof-bottom {
  width: 100%;
  max-width: var(--aof-maxw);
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}

.aof-inner {
  display: grid;
  grid-template-columns: 1.5fr 2.4fr;
  gap: 48px;
  padding-top: 64px;
  padding-bottom: 48px;
}

.aof-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--aof-text);
  text-decoration: none;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.02em;
}
.aof-logo strong { font-weight: 800; }
.aof-logo img { display: block; }

.aof-pitch {
  margin: 14px 0 0;
  max-width: 340px;
  font-size: 14px;
  color: var(--aof-muted);
}

.aof-where {
  margin: 12px 0 0;
  font-size: 13px;
  color: var(--aof-dim);
}

.aof-cols {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.aof-label {
  margin: 0 0 14px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--aof-dim);
  line-height: 1.4;
}

.aof-col a {
  display: block;
  padding: 6px 0;
  font-size: 14px;
  color: var(--aof-muted);
  text-decoration: none;
  transition: color 0.15s ease;
}
.aof-col a:hover,
.aof-col a:focus-visible { color: var(--aof-text); }

.aof-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 20px;
  padding-bottom: 32px;
  border-top: 1px solid var(--aof-line);
  font-size: 13px;
  color: var(--aof-dim);
}

.aof a:focus-visible {
  outline: 2px solid #eb44b0;
  outline-offset: 3px;
  border-radius: 3px;
}

@media (max-width: 900px) {
  .aof-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    padding-top: 48px;
  }
  .aof-pitch { max-width: none; }
}

@media (max-width: 560px) {
  .aof { margin-top: 64px; }
  .aof-cols { grid-template-columns: 1fr 1fr; gap: 24px 20px; }
  .aof-bottom { justify-content: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  .aof-col a { transition: none; }
}
