/* ─── Brand Tokens ─── */
:root {
  --midnight: #0B0F1E;
  --deep:     #111828;
  --navy:     #1A2540;
  --indigo:   #253260;
  --gold:     #E8B84B;
  --gold-lt:  #F5D080;
  --gold-dk:  #B8891E;
  --stardust: #C8D4F0;
  --nebula:   #7B90CC;
  --white:    #F4F2EE;
  --mist:     #E8E4DC;
  --cream:    #F0EDE6;
  --ink:      #1a1e2e;
  --ink-soft: #4a5168;
  --ink-mute: #6b7186;

  --font-display: Georgia, 'Times New Roman', serif;
  --font-body:    -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --font-mono:    'Courier New', ui-monospace, monospace;

  --fs-display-xl: clamp(48px, 11vw, 88px);
  --fs-display-lg: clamp(36px, 6.5vw, 58px);
  --fs-display-md: clamp(28px, 5vw, 42px);
  --fs-display-sm: clamp(22px, 3.8vw, 30px);
  --fs-body:       clamp(15px, 1.9vw, 17px);
  --fs-small:      clamp(13px, 1.5vw, 14px);

  --max-w: 1180px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

.wrap { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
@media (min-width: 768px) { .wrap { padding: 0 40px; } }

section { padding: 80px 0; }
@media (min-width: 768px) { section { padding: 120px 0; } }

/* ─── Section labels ─── */
.section-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-dk);
  margin-bottom: 16px;
}
.section-title {
  font-family: var(--font-display);
  font-size: var(--fs-display-lg);
  font-weight: 400;
  line-height: 1.12;
  color: var(--midnight);
  letter-spacing: -0.015em;
  margin-bottom: 16px;
  max-width: 22ch;
}
.section-title em { color: var(--gold-dk); font-style: italic; }
.section-lede {
  font-size: var(--fs-body);
  color: var(--ink-soft);
  line-height: 1.65;
  max-width: 56ch;
  margin-bottom: 48px;
}

/* ─── Navigation ─── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(11, 15, 30, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(232, 184, 75, 0.15);
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (min-width: 768px) {
  .nav-inner { padding: 18px 40px; }
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--white);
  font-weight: 400;
}
.nav-logo em { color: var(--gold); font-style: italic; }

/* Hamburger button */
.nav-hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 110;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--stardust);
  border-radius: 2px;
  transition: all 0.3s ease;
}
.nav-hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.nav-hamburger.active span:nth-child(2) {
  opacity: 0;
}
.nav-hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}
@media (min-width: 768px) {
  .nav-hamburger { display: none; }
}

.nav-links { display: none; }
@media (max-width: 767px) {
  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(11, 15, 30, 0.98);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    z-index: 105;
  }
  .nav-links.open {
    display: flex;
  }
  .nav-links a {
    font-size: 20px;
    color: var(--stardust);
    transition: color 0.2s;
  }
  .nav-links a:hover { color: var(--gold); }
}
@media (min-width: 768px) {
  .nav-links {
    display: flex;
    gap: 32px;
    align-items: center;
  }
  .nav-links a {
    font-size: 14px;
    color: var(--stardust);
    transition: color 0.2s;
  }
  .nav-links a:hover { color: var(--gold); }
}
.nav-cta {
  background: var(--gold);
  color: var(--midnight) !important;
  padding: 10px 22px;
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: all 0.2s ease;
}
.nav-cta:hover {
  background: var(--gold-lt);
  transform: translateY(-1px);
}

/* ─── Hero ─── */
.hero {
  background: var(--midnight);
  color: var(--white);
  text-align: center;
  overflow: hidden;
  padding: 0 !important;
}
.hero-photo {
  width: 100%;
  height: clamp(240px, 42vh, 460px);
  background-image: url('../imgs/eduastra-hero.jpg');
  background-size: cover;
  background-position: center 38%;
  position: relative;
}
.hero-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(11,15,30,0) 0%, rgba(11,15,30,0) 55%, rgba(11,15,30,0.92) 90%, var(--midnight) 100%);
}
.hero-body {
  padding: 64px 24px 96px;
  position: relative;
  background: var(--midnight);
}
@media (min-width: 768px) {
  .hero-body { padding: 80px 40px 120px; }
}
.hero-stars {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle, rgba(232,184,75,0.18) 1.2px, transparent 1.2px),
    radial-gradient(circle, rgba(200,212,240,0.12) 1px, transparent 1px);
  background-size: 90px 90px, 60px 60px;
  background-position: 0 0, 30px 30px;
  pointer-events: none;
}
.hero-inner { position: relative; z-index: 1; max-width: 720px; margin: 0 auto; }
.hero-tag {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--gold);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.hero-logo {
  width: 56px;
  height: 56px;
  margin: 0 auto 28px;
}
.hero-wordmark {
  font-family: var(--font-display);
  font-size: var(--fs-display-xl);
  line-height: 0.95;
  margin-bottom: 12px;
  color: var(--white);
  letter-spacing: -0.015em;
}
.hero-wordmark em { color: var(--gold); font-style: italic; }
.hero-sub {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--nebula);
}
.hero-divider {
  width: 40px;
  height: 2px;
  background: var(--gold);
  margin: 28px auto;
  opacity: 0.7;
}
.hero-tagline {
  font-family: var(--font-display);
  font-size: clamp(22px, 3.5vw, 30px);
  line-height: 1.3;
  color: var(--stardust);
  margin-bottom: 40px;
  max-width: 28ch;
  margin-left: auto;
  margin-right: auto;
}
.hero-tagline em { color: var(--gold); font-style: italic; }
.hero-cta-row {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  margin-top: 24px;
}
@media (min-width: 480px) {
  .hero-cta-row { flex-direction: row; justify-content: center; }
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 30px;
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: all 0.2s ease;
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn-primary {
  background: var(--gold);
  color: var(--midnight);
}
.btn-primary:hover {
  background: var(--gold-lt);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(232, 184, 75, 0.25);
}
.btn-ghost {
  color: var(--stardust);
  border-color: rgba(200, 212, 240, 0.3);
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ─── Problem section ─── */
.problem-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 32px;
}
@media (min-width: 768px) {
  .problem-grid { grid-template-columns: 1.2fr 1fr 1fr 1fr; gap: 16px; }
}
.stat-card {
  background: var(--midnight);
  color: var(--white);
  padding: 36px 28px;
  border-radius: 16px;
  position: relative;
  overflow: hidden;
}
.stat-card::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at top right, rgba(232, 184, 75, 0.18), transparent 60%);
  pointer-events: none;
}
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(48px, 7vw, 64px);
  color: var(--gold);
  line-height: 1;
  margin-bottom: 12px;
}
.stat-text {
  color: var(--stardust);
  line-height: 1.55;
  font-size: var(--fs-small);
  position: relative;
}
.pain-card {
  background: white;
  border-left: 4px solid var(--gold);
  padding: 24px 24px;
  border-radius: 0 12px 12px 0;
  box-shadow: 0 1px 3px rgba(11, 15, 30, 0.05);
}
.pain-title {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 600;
  color: var(--midnight);
  margin-bottom: 8px;
}
.pain-desc {
  font-size: var(--fs-small);
  color: var(--ink-soft);
  line-height: 1.55;
}

/* ─── Platform pillars ─── */
.pillar-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 32px;
}
@media (min-width: 768px) {
  .pillar-grid { grid-template-columns: repeat(4, 1fr); gap: 16px; }
}
.pillar {
  padding: 28px 24px;
  border-radius: 14px;
  background: white;
  border: 1px solid var(--mist);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.pillar:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(11, 15, 30, 0.08);
}
.pillar.featured {
  background: var(--midnight);
  color: var(--white);
  border-color: var(--midnight);
}
.pillar-icon {
  width: 40px; height: 40px;
  background: var(--gold);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.pillar.featured .pillar-icon { background: var(--gold); }
.pillar-title {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 600;
  margin-bottom: 8px;
  line-height: 1.2;
}
.pillar-title em { color: var(--gold); font-style: italic; }
.pillar:not(.featured) .pillar-title em { color: var(--gold-dk); }
.pillar-desc {
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.55;
}
.pillar.featured .pillar-desc { color: var(--stardust); }

/* ─── Audience strip ─── */
.audience {
  background: var(--cream);
}
.audience-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 32px;
}
@media (min-width: 768px) {
  .audience-grid { grid-template-columns: repeat(3, 1fr); }
}
.aud-card {
  background: white;
  padding: 28px 22px;
  border-radius: 12px;
  border: 1px solid var(--mist);
  transition: all 0.2s ease;
}
.aud-card:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
}
.aud-emoji {
  font-size: 28px;
  margin-bottom: 14px;
  display: block;
}
.aud-title {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  color: var(--midnight);
  margin-bottom: 8px;
  line-height: 1.3;
}
.aud-desc {
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.55;
}

/* ─── Feature blocks (image + text) ─── */
.feat-block {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
  margin-top: 48px;
}
@media (min-width: 900px) {
  .feat-block { grid-template-columns: 1fr 1fr; gap: 60px; }
  .feat-block.reverse > div:first-child { order: 2; }
}
.feat-body h3 {
  font-family: var(--font-display);
  font-size: var(--fs-display-md);
  font-weight: 400;
  line-height: 1.15;
  color: var(--midnight);
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}
.feat-body h3 em { color: var(--gold-dk); font-style: italic; }
.feat-body p {
  color: var(--ink-soft);
  margin-bottom: 24px;
  line-height: 1.65;
}
.feat-list {
  list-style: none;
}
.feat-list li {
  padding: 10px 0 10px 28px;
  position: relative;
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink);
  border-top: 1px solid var(--mist);
}
.feat-list li:first-child { border-top: none; }
.feat-list li::before {
  content: "★";
  position: absolute;
  left: 0; top: 10px;
  color: var(--gold);
  font-size: 13px;
}
.feat-image {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(11, 15, 30, 0.12);
  border: 1px solid var(--mist);
}
.feat-image img { display: block; width: 100%; }

/* ─── CRM pipeline ─── */
.pipeline-block {
  background: var(--midnight);
  color: var(--white);
  border-radius: 18px;
  padding: 36px 32px;
  margin-top: 48px;
  position: relative;
  overflow: hidden;
}
.pipeline-block::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(232, 184, 75, 0.12) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}
.pipeline-block > * { position: relative; }
.pipeline-mono {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.25em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 14px;
}
.pipeline-title {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 400;
  margin-bottom: 24px;
  line-height: 1.15;
}
.pipeline-title em { color: var(--gold); font-style: italic; }
.pipeline-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.pipeline-stage {
  background: var(--navy);
  border-radius: 10px;
  padding: 14px 18px;
  flex: 1 1 calc(50% - 5px);
  min-width: 130px;
  display: flex;
  align-items: center;
  gap: 10px;
}
@media (min-width: 600px) {
  .pipeline-stage { flex: 1 1 auto; }
}
.pipeline-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}
.pipeline-stage:nth-child(1) .pipeline-dot { background: var(--gold); }
.pipeline-stage:nth-child(2) .pipeline-dot { background: var(--gold-lt); }
.pipeline-stage:nth-child(3) .pipeline-dot { background: var(--nebula); }
.pipeline-stage:nth-child(4) .pipeline-dot { background: var(--stardust); }
.pipeline-stage:nth-child(5) .pipeline-dot { background: #FFB07F; }
.pipeline-stage:nth-child(6) .pipeline-dot { background: #6FCF97; }
.pipeline-stage:nth-child(7) .pipeline-dot { background: var(--gold-dk); opacity: 0.6; }
.pipeline-label {
  font-size: 13px;
  line-height: 1.2;
}

/* ─── Capability grid ─── */
.capability-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 32px;
}
@media (min-width: 700px) {
  .capability-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .capability-grid { grid-template-columns: repeat(3, 1fr); }
}
.cap-card {
  background: white;
  border: 1px solid var(--mist);
  border-radius: 14px;
  padding: 28px 26px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  transition: all 0.2s ease;
}
.cap-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(11, 15, 30, 0.08);
  border-color: var(--gold-lt);
}
.cap-icon {
  width: 44px; height: 44px;
  background: var(--midnight);
  border-radius: 10px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cap-body { flex: 1; min-width: 0; }
.cap-mono {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-dk);
  margin-bottom: 6px;
}
.cap-title {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  color: var(--midnight);
  margin-bottom: 8px;
  line-height: 1.2;
}
.cap-title em { color: var(--gold-dk); font-style: italic; }
.cap-desc {
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.55;
}

/* ─── Screenshot showcase ─── */
.showcase {
  background: var(--midnight);
  overflow: hidden;
}
.showcase-track {
  display: flex;
  gap: 20px;
  padding: 0 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--gold-dk) var(--navy);
  padding-bottom: 16px;
}
.showcase-track::-webkit-scrollbar {
  height: 6px;
}
.showcase-track::-webkit-scrollbar-track {
  background: var(--navy);
  border-radius: 3px;
}
.showcase-track::-webkit-scrollbar-thumb {
  background: var(--gold-dk);
  border-radius: 3px;
}
.showcase-item {
  flex: 0 0 auto;
  width: clamp(280px, 45vw, 520px);
  scroll-snap-align: start;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(232, 184, 75, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.showcase-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
}
.showcase-item img {
  display: block;
  width: 100%;
}
.showcase-caption {
  background: var(--navy);
  padding: 14px 18px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ─── Roles table ─── */
.roles {
  background: var(--cream);
}
.roles-wrap {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(11, 15, 30, 0.06);
  margin-top: 32px;
  overflow-x: auto;
}
.roles-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  min-width: 700px;
}
.roles-table thead {
  background: var(--midnight);
  color: var(--white);
}
.roles-table th {
  padding: 18px 16px;
  text-align: center;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}
.roles-table th:first-child {
  text-align: left;
  color: var(--white);
}
.roles-table td {
  padding: 16px;
  border-top: 1px solid var(--mist);
  text-align: center;
  color: var(--ink);
}
.roles-table td:first-child {
  text-align: left;
  font-weight: 500;
}
.roles-table tr:hover { background: rgba(232, 184, 75, 0.04); }
.role-yes { color: #2D8559; font-weight: 700; font-size: 16px; }
.role-read { color: var(--gold-dk); font-size: 11px; letter-spacing: 0.1em; }
.role-no { color: #CCD0D8; }

/* ─── Roadmap ─── */
.roadmap-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: 32px;
}
@media (min-width: 700px) {
  .roadmap-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .roadmap-grid { grid-template-columns: repeat(3, 1fr); }
}
.road-card {
  background: var(--midnight);
  color: var(--white);
  padding: 26px 24px;
  border-radius: 14px;
  position: relative;
  overflow: hidden;
}
.road-card::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(232, 184, 75, 0.1) 1px, transparent 1px);
  background-size: 36px 36px;
  pointer-events: none;
}
.road-card > * { position: relative; }
.road-mono {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.road-title {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 500;
  margin-bottom: 8px;
  line-height: 1.2;
}
.road-title em { color: var(--gold); font-style: italic; }
.road-desc {
  font-size: 13px;
  color: var(--stardust);
  line-height: 1.55;
}

/* ─── Why Edu-Astra (outcomes) ─── */
.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 32px;
}
@media (min-width: 768px) {
  .outcomes-grid { grid-template-columns: repeat(4, 1fr); }
}
.outcome {
  text-align: center;
  padding: 24px 18px;
}
.outcome-num {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 56px);
  color: var(--gold-dk);
  line-height: 1;
  margin-bottom: 8px;
  font-style: italic;
}
.outcome-label {
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.4;
}

/* ─── Contact section ─── */
.contact-section {
  background: var(--midnight);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.contact-section::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(232, 184, 75, 0.1) 1.5px, transparent 1.5px);
  background-size: 80px 80px;
  pointer-events: none;
}
.contact-section .section-label { color: var(--gold); }
.contact-section .section-title { color: var(--white); }
.contact-section .section-title em { color: var(--gold); }
.contact-section .section-lede { color: var(--stardust); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin: 40px 0 60px;
  position: relative;
}
@media (min-width: 600px) {
  .contact-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .contact-grid { grid-template-columns: repeat(4, 1fr); }
}
.contact-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(200, 212, 240, 0.15);
  border-radius: 12px;
  padding: 24px 22px;
  transition: all 0.2s ease;
  color: var(--white);
}
.contact-card:hover {
  border-color: var(--gold);
  background: rgba(232, 184, 75, 0.05);
  transform: translateY(-2px);
}
.contact-icon {
  width: 40px; height: 40px;
  background: var(--gold);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.contact-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}
.contact-value {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.3;
  word-break: break-word;
}
.contact-value em { color: var(--gold); font-style: italic; }

/* ─── About Semantic ─── */
.about-block {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(232, 184, 75, 0.2);
  border-radius: 16px;
  padding: 40px 32px;
  position: relative;
}
@media (min-width: 768px) {
  .about-block { padding: 48px 44px; }
}
.about-mono {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.about-block h4 {
  font-family: var(--font-display);
  font-size: var(--fs-display-sm);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 18px;
  color: var(--white);
}
.about-block h4 em { color: var(--gold); font-style: italic; }
.about-block p {
  color: var(--stardust);
  line-height: 1.65;
  margin-bottom: 16px;
  max-width: 65ch;
}
.about-bullets {
  list-style: none;
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid rgba(200, 212, 240, 0.12);
}
.about-bullets li {
  padding: 8px 0 8px 26px;
  position: relative;
  font-size: 14px;
  color: var(--stardust);
  line-height: 1.55;
}
.about-bullets li::before {
  content: "\2726";
  position: absolute;
  left: 0; top: 9px;
  color: var(--gold);
  font-size: 12px;
}
.about-bullets strong { color: var(--white); font-weight: 600; }

/* ─── Footer ─── */
footer {
  background: var(--deep);
  color: var(--stardust);
  padding: 40px 0;
  border-top: 1px solid rgba(200, 212, 240, 0.1);
}
.foot-inner {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: center;
  text-align: center;
}
@media (min-width: 768px) {
  .foot-inner { flex-direction: row; justify-content: space-between; text-align: left; }
}
.foot-brand {
  font-family: var(--font-display);
  color: var(--white);
}
.foot-brand em { color: var(--gold); font-style: italic; }
.foot-meta {
  font-size: 13px;
  color: var(--nebula);
}

/* ─── Reveal on scroll (progressive enhancement) ─── */
.reveal {
  opacity: 1;
  transform: none;
  transition: opacity 0.6s ease, transform 0.6s ease;
}
/* Only hide if browser supports IntersectionObserver AND has JS */
html.js-reveal .reveal:not(.visible) {
  opacity: 0;
  transform: translateY(20px);
}
html.js-reveal .reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── FAQ ─── */
.faq-list {
  max-width: 780px;
  margin: 32px auto 0;
}
.faq-item {
  border-bottom: 1px solid rgba(200, 212, 240, 0.12);
}
.faq-item summary {
  padding: 20px 0;
  font-size: clamp(15px, 1.1vw, 17px);
  font-weight: 600;
  color: var(--white);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: color 0.2s;
}
.faq-item summary:hover { color: var(--gold); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 22px;
  font-weight: 300;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform 0.25s;
}
.faq-item[open] summary::after {
  transform: rotate(45deg);
}
.faq-item p {
  padding: 0 0 20px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--stardust);
  max-width: 680px;
}

/* Accessibility */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
}
