/* Assessment landing — Greysolve brand (parchment / ink / gold) */

.a-page section {
  padding: 100px 40px;
}

.a-page .container {
  max-width: 1060px;
  margin: 0 auto;
}

.a-hero {
  padding-top: 160px;
  padding-bottom: 100px;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: var(--parchment);
}

.a-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 90% 15%, rgba(184, 146, 61, 0.07) 0%, transparent 35%),
    radial-gradient(circle at 10% 85%, rgba(122, 31, 43, 0.08) 0%, transparent 40%);
  pointer-events: none;
}

.a-hero .container {
  position: relative;
  z-index: 2;
}

.a-label {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 24px;
}

.a-hero-h1 {
  font-family: "Fraunces", serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(32px, 5.5vw, 56px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}

.a-hero-h1 em {
  font-style: normal;
  color: var(--gold);
}

.a-hero-sub {
  font-size: 18px;
  color: rgba(245, 240, 230, 0.78);
  max-width: 620px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

.a-hero-sub strong {
  color: var(--parchment);
  font-weight: 600;
}

.a-btn {
  display: inline-block;
  background: var(--gold);
  color: var(--ink);
  font-family: "DM Sans", sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 16px 28px;
  text-decoration: none;
  border-radius: 1px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}

.a-btn:hover {
  background: #c99f44;
  transform: translateY(-1px);
}

.a-hero-meta {
  margin-top: 16px;
  font-size: 12px;
  color: var(--muted);
  font-family: "JetBrains Mono", monospace;
  letter-spacing: 0.06em;
}

/* Stat bar */
.a-stat-bar {
  background: var(--ink-2);
  border-top: 1px solid var(--rule-dark);
  border-bottom: 1px solid var(--rule-dark);
  padding: 48px 40px;
}

.a-stat-bar .container {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  max-width: 900px;
}

.a-stat {
  text-align: center;
  flex: 1;
  min-width: 200px;
  max-width: 280px;
}

.a-stat-num {
  font-family: "Fraunces", serif;
  font-style: italic;
  font-size: 22px;
  color: var(--gold);
  line-height: 1.2;
}

.a-stat-label {
  font-size: 13px;
  color: rgba(245, 240, 230, 0.7);
  margin-top: 10px;
  line-height: 1.5;
}

/* Social proof */
.a-social {
  background: var(--parchment);
  padding: 56px 40px;
}

.a-social-title {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--wax);
  text-align: center;
  margin-bottom: 32px;
}

.a-logo-scroll {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 40px 48px;
}

.a-logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 36px;
  opacity: 0.85;
  transition: opacity 0.2s;
  min-width: 80px;
}

.a-logo-item:hover {
  opacity: 1;
}

.a-logo-item img {
  max-height: 36px;
  max-width: 120px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  filter: none;
}

.a-logo-note {
  font-size: 10px;
  color: var(--muted);
  margin-left: 4px;
  font-style: italic;
}

/* Learn grid */
.a-learn {
  background: var(--paper);
  border-top: 1px solid var(--rule);
}

.a-learn-header {
  text-align: center;
  margin-bottom: 48px;
}

.a-learn-header h2 {
  font-family: "Fraunces", serif;
  font-weight: 400;
  font-size: clamp(26px, 4vw, 40px);
  color: var(--ink);
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.a-learn-header p {
  font-size: 17px;
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

.a-learn-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.a-learn-card {
  background: var(--parchment);
  border: 1px solid var(--rule);
  border-radius: 2px;
  border-top: 2px solid var(--wax);
  padding: 28px;
  transition: transform 0.2s, border-color 0.2s;
}

.a-learn-card:hover {
  transform: translateY(-3px);
  border-color: rgba(15, 27, 45, 0.15);
}

.a-learn-icon {
  font-size: 26px;
  margin-bottom: 16px;
}

.a-learn-card h3 {
  font-family: "Fraunces", serif;
  font-size: 17px;
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--ink);
  letter-spacing: -0.02em;
}

.a-learn-card p {
  font-size: 14px;
  color: var(--text);
  line-height: 1.65;
}

/* How */
.a-how {
  background: var(--ink);
  color: var(--parchment);
  border-top: 1px solid var(--rule-dark);
}

.a-how-header {
  text-align: center;
  margin-bottom: 48px;
}

.a-how-header h2 {
  font-family: "Fraunces", serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(26px, 4vw, 40px);
  letter-spacing: -0.02em;
}

.a-how-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 0 auto 40px;
}

.a-how-step {
  background: rgba(245, 240, 230, 0.04);
  border: 1px solid var(--rule-dark);
  border-radius: 2px;
  padding: 32px;
  text-align: center;
}

.a-how-num {
  font-family: "Fraunces", serif;
  font-size: 36px;
  font-style: italic;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 16px;
}

.a-how-step h4 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--parchment);
}

.a-how-step p {
  font-size: 14px;
  color: rgba(245, 240, 230, 0.72);
  line-height: 1.65;
}

.a-how-cta {
  text-align: center;
}

.a-how-meta {
  text-align: center;
  margin-top: 14px;
  font-size: 12px;
  color: rgba(245, 240, 230, 0.45);
  font-family: "JetBrains Mono", monospace;
  letter-spacing: 0.05em;
}

/* Who */
.a-who {
  background: var(--parchment);
  border-top: 1px solid var(--rule);
  text-align: center;
}

.a-who h2 {
  font-family: "Fraunces", serif;
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 400;
  color: var(--ink);
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.a-who p {
  font-size: 17px;
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto 32px;
  line-height: 1.7;
}

.a-who-tags {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.a-who-tag {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: 2px;
  padding: 10px 18px;
  font-size: 13px;
  color: var(--text);
}

/* Meet */
.a-meet {
  background: var(--paper);
  border-top: 1px solid var(--rule);
  padding: 48px 40px;
  text-align: center;
}

.a-meet a {
  color: var(--wax);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  border-bottom: 1px solid rgba(122, 31, 43, 0.35);
}

.a-meet a:hover {
  color: var(--ink);
  border-bottom-color: var(--gold);
}

/* FAQ */
.a-faq {
  background: var(--parchment);
  border-top: 1px solid var(--rule);
}

.a-faq-header {
  text-align: center;
  margin-bottom: 40px;
}

.a-faq-header h2 {
  font-family: "Fraunces", serif;
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 400;
  color: var(--ink);
}

.a-faq-list {
  max-width: 640px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.a-faq-item {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: 2px;
  overflow: hidden;
}

.a-faq-item:hover {
  border-color: rgba(15, 27, 45, 0.12);
}

.a-faq-q {
  padding: 20px 24px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  color: var(--ink);
}

.a-faq-q::after {
  content: "+";
  font-size: 20px;
  color: var(--wax);
  font-weight: 400;
}

.a-faq-item.open .a-faq-q::after {
  content: "−";
}

.a-faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}

.a-faq-item.open .a-faq-a {
  max-height: 320px;
}

.a-faq-a-inner {
  padding: 0 24px 20px;
  font-size: 14px;
  color: var(--text);
  line-height: 1.7;
}

/* Final CTA */
.a-final {
  background: var(--ink);
  border-top: 1px solid var(--rule-dark);
  text-align: center;
  padding: 100px 40px;
  position: relative;
  overflow: hidden;
}

.a-final::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(184, 146, 61, 0.06) 0%, transparent 55%);
  pointer-events: none;
}

.a-final .container {
  position: relative;
  z-index: 2;
}

.a-final h2 {
  font-family: "Fraunces", serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(26px, 4vw, 42px);
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  color: var(--parchment);
}

.a-final h2 em {
  font-style: normal;
  color: var(--gold);
}

.a-final p {
  font-size: 17px;
  color: rgba(245, 240, 230, 0.75);
  max-width: 500px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

.a-final-meta {
  margin-top: 14px;
  font-size: 12px;
  color: rgba(245, 240, 230, 0.45);
  font-family: "JetBrains Mono", monospace;
  letter-spacing: 0.05em;
}

/* Animations */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 768px) {
  .a-page section {
    padding: 72px 20px;
  }

  .a-hero {
    padding-top: 130px;
    padding-bottom: 72px;
  }

  .a-learn-grid {
    grid-template-columns: 1fr;
  }

  .a-how-steps {
    grid-template-columns: 1fr;
  }

  .a-stat-bar .container {
    gap: 32px;
  }

  .a-social {
    padding: 40px 20px;
  }

  .a-logo-scroll {
    gap: 24px 32px;
  }
}
