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

:root {
  --bg:          #080B18;
  --bg-alt:      #0E1228;
  --bg-deep:     #141933;
  --ink:         #E8EEFF;
  --forest:      #5B4FCF;
  --forest-mid:  #7B6FE8;
  --gold:        #A78BFA;
  --terracotta:  #7DD3FC;
  --muted:       #8892B0;
  --rule:        rgba(167,139,250,0.15);
  --ff-display:  'Cormorant Garamond', Georgia, serif;
  --ff-body:     'Jost', sans-serif;
  --ease:        cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--ff-body);
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
  background-image:
    radial-gradient(1px 1px at 10% 15%, rgba(255,255,255,0.6) 0%, transparent 100%),
    radial-gradient(1px 1px at 25% 40%, rgba(255,255,255,0.4) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 40% 10%, rgba(255,255,255,0.7) 0%, transparent 100%),
    radial-gradient(1px 1px at 55% 60%, rgba(255,255,255,0.5) 0%, transparent 100%),
    radial-gradient(1px 1px at 70% 25%, rgba(255,255,255,0.6) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 80% 75%, rgba(255,255,255,0.4) 0%, transparent 100%),
    radial-gradient(1px 1px at 90% 45%, rgba(255,255,255,0.5) 0%, transparent 100%),
    radial-gradient(1px 1px at 15% 80%, rgba(255,255,255,0.3) 0%, transparent 100%),
    radial-gradient(1px 1px at 60% 90%, rgba(255,255,255,0.4) 0%, transparent 100%),
    radial-gradient(2px 2px at 35% 55%, rgba(167,139,250,0.5) 0%, transparent 100%),
    radial-gradient(2px 2px at 75% 20%, rgba(125,211,252,0.4) 0%, transparent 100%),
    radial-gradient(1px 1px at 5%  50%, rgba(255,255,255,0.3) 0%, transparent 100%),
    radial-gradient(1px 1px at 95% 85%, rgba(255,255,255,0.4) 0%, transparent 100%);
  background-attachment: fixed;
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-alt); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

/* ── SELECTION ── */
::selection { background: var(--forest); color: var(--bg); }

/* ── UTILITY ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 40px; }
@media (max-width: 768px) { .container { padding: 0 24px; } }

.tag {
  display: inline-block;
  font-family: var(--ff-body);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

hr.rule {
  border: none;
  border-top: 1px solid var(--rule);
  margin: 0;
}

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }
.reveal-d4 { transition-delay: 0.4s; }

/* ════════════════════════════════
   NAV
════════════════════════════════ */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0;
  background: rgba(8,11,24,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--rule);
  transition: box-shadow 0.3s;
}
nav.scrolled { box-shadow: 0 4px 32px rgba(28,25,21,0.08); }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.nav-logo {
  font-family: var(--ff-display);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: -0.01em;
}
.nav-logo span { color: var(--gold); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}

.nav-links a {
  font-family: var(--ff-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 2px;
  transition: color 0.2s, background 0.2s;
}
.nav-links a:hover { color: var(--ink); background: var(--bg-alt); }

.nav-links .btn-nav {
  color: var(--forest);
  border: 1.5px solid var(--forest);
  padding: 7px 18px;
}
.nav-links .btn-nav:hover { background: var(--forest); color: var(--bg); }

.nav-social {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: 16px;
}
.nav-social a {
  width: 34px; height: 34px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: var(--bg-alt);
  color: var(--muted);
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.nav-social a:hover { background: var(--forest); color: var(--bg); }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none; border: none;
}
.nav-hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--ink);
  border-radius: 1px;
  transition: transform 0.3s;
}

@media (max-width: 768px) {
  .nav-links, .nav-social { display: none; }
  .nav-hamburger { display: flex; }
}

/* ════════════════════════════════
   HERO
════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 64px;
  position: relative;
  overflow: hidden;
}

/* Soft radial accent */
.hero::before {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -15%;
  width: 60vw;
  height: 60vw;
  background: radial-gradient(ellipse at center, rgba(91,79,207,0.25) 0%, transparent 70%);
  pointer-events: none;
}

/* Warm gradient blob */
.hero::after {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 60vw;
  height: 70vh;
  background: radial-gradient(ellipse at center, rgba(125,211,252,0.10) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 80px 0;
}

.hero-eyebrow {
  font-family: var(--ff-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease) 0.1s forwards;
}

.hero-headline {
  font-family: var(--ff-display);
  font-size: clamp(3rem, 5vw, 5.5rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--ink);
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  opacity: 0;
  animation: fadeUp 0.9s var(--ease) 0.2s forwards;
}
.hero-headline em {
  font-style: italic;
  color: var(--forest);
}

.hero-sub {
  font-family: var(--ff-display);
  font-size: clamp(1.1rem, 1.8vw, 1.5rem);
  font-weight: 400;
  font-style: italic;
  color: var(--muted);
  margin-bottom: 40px;
  opacity: 0;
  animation: fadeUp 0.9s var(--ease) 0.3s forwards;
}

.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.9s var(--ease) 0.4s forwards;
}

.btn-primary {
  display: inline-block;
  padding: 14px 32px;
  background: var(--forest);
  color: var(--bg);
  font-family: var(--ff-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  border: 2px solid var(--forest);
  transition: background 0.25s, color 0.25s, transform 0.2s;
}
.btn-primary:hover { background: var(--forest-mid); transform: translateY(-1px); }

.btn-secondary {
  display: inline-block;
  padding: 14px 32px;
  background: transparent;
  color: var(--ink);
  font-family: var(--ff-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  border: 2px solid var(--rule);
  transition: border-color 0.25s, color 0.25s, transform 0.2s;
}
.btn-secondary:hover { border-color: var(--ink); transform: translateY(-1px); }

.btn-ghost {
  display: inline-block;
  padding: 14px 20px;
  background: transparent;
  color: var(--muted);
  font-family: var(--ff-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  transition: color 0.25s;
}
.btn-ghost:hover { color: var(--ink); }

/* Hero right — etymology card */
.hero-aside {
  opacity: 0;
  animation: fadeUp 1s var(--ease) 0.5s forwards;
}

.etymology-card {
  background: var(--bg-alt);
  border: 1px solid var(--rule);
  border-left: 4px solid var(--gold);
  padding: 40px;
  border-radius: 4px;
  position: relative;
}

.etymology-card .ety-word {
  font-family: var(--ff-display);
  font-size: 3.5rem;
  font-weight: 300;
  font-style: italic;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 4px;
}

.etymology-card .ety-pron {
  font-family: var(--ff-body);
  font-size: 0.75rem;
  color: var(--muted);
  letter-spacing: 0.08em;
  margin-bottom: 20px;
}

.etymology-card .ety-def {
  font-family: var(--ff-display);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--forest);
  line-height: 1.6;
  margin-bottom: 20px;
}

.etymology-card .ety-origin {
  font-family: var(--ff-body);
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.6;
}

.etymology-card .ety-origin strong {
  color: var(--ink);
  font-weight: 500;
}

/* Decorative number */
.hero-number {
  position: absolute;
  bottom: -20px;
  right: -20px;
  font-family: var(--ff-display);
  font-size: 8rem;
  font-weight: 300;
  color: rgba(192,139,58,0.08);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-aside { display: none; }
}

/* ════════════════════════════════
   HOW IT WORKS
════════════════════════════════ */
.how {
  padding: 120px 0;
  background: var(--bg);
}

.how-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  max-width: 680px;
}

.how-text .section-tag { margin-bottom: 12px; }

.section-headline {
  font-family: var(--ff-display);
  font-size: clamp(2.2rem, 3.5vw, 3.5rem);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 24px;
}

.section-body {
  font-family: var(--ff-body);
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.8;
  max-width: 480px;
}

/* Stylized mockup */
.mockup-wrap {
  position: relative;
}

.mockup-device {
  background: var(--forest);
  border-radius: 16px;
  padding: 32px 24px 28px;
  box-shadow: 0 32px 80px rgba(31,61,46,0.25), 0 8px 24px rgba(31,61,46,0.12);
  position: relative;
  max-width: 320px;
  margin: 0 auto;
}

.mockup-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 28px;
}

.mockup-role {
  font-family: var(--ff-body);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(247,243,238,0.5);
}

.mockup-status {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--ff-body);
  font-size: 0.65rem;
  color: rgba(247,243,238,0.5);
}
.mockup-status-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #5DDC8A;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.6; transform: scale(1.3); }
}

.mockup-wave {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 4px;
  height: 60px;
  margin-bottom: 28px;
}

.wave-bar {
  width: 4px;
  border-radius: 2px;
  background: rgba(247,243,238,0.4);
  animation: waveAnim 1.2s ease-in-out infinite;
}
.wave-bar:nth-child(1)  { height: 20px; animation-delay: 0s; }
.wave-bar:nth-child(2)  { height: 35px; animation-delay: 0.1s; }
.wave-bar:nth-child(3)  { height: 50px; animation-delay: 0.2s; background: rgba(247,243,238,0.7); }
.wave-bar:nth-child(4)  { height: 40px; animation-delay: 0.15s; }
.wave-bar:nth-child(5)  { height: 55px; animation-delay: 0.05s; background: rgba(192,139,58,0.8); }
.wave-bar:nth-child(6)  { height: 38px; animation-delay: 0.25s; }
.wave-bar:nth-child(7)  { height: 60px; animation-delay: 0.1s; background: rgba(247,243,238,0.9); }
.wave-bar:nth-child(8)  { height: 42px; animation-delay: 0.3s; }
.wave-bar:nth-child(9)  { height: 30px; animation-delay: 0.18s; }
.wave-bar:nth-child(10) { height: 15px; animation-delay: 0.08s; }

@keyframes waveAnim {
  0%,100% { transform: scaleY(1); }
  50%      { transform: scaleY(0.5); }
}

.mockup-translation-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: rgba(192,139,58,0.15);
  border: 1px solid rgba(192,139,58,0.3);
  border-radius: 20px;
  margin-bottom: 24px;
}

.mockup-translation-badge span {
  font-family: var(--ff-body);
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--gold);
}

.mockup-feedback-btn {
  display: block;
  width: 100%;
  padding: 10px;
  background: rgba(247,243,238,0.08);
  border: 1px solid rgba(247,243,238,0.15);
  border-radius: 8px;
  font-family: var(--ff-body);
  font-size: 0.72rem;
  font-weight: 500;
  color: rgba(247,243,238,0.7);
  text-align: center;
  margin-bottom: 24px;
  letter-spacing: 0.04em;
  cursor: default;
}

.mockup-footer {
  display: flex;
  justify-content: space-around;
  padding-top: 16px;
  border-top: 1px solid rgba(247,243,238,0.1);
}

.mockup-icon {
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(247,243,238,0.08);
  color: rgba(247,243,238,0.5);
  font-size: 0.9rem;
}

.mockup-icon.active {
  background: var(--gold);
  color: var(--bg);
}

/* Pipeline labels */
.pipeline {
  display: flex;
  align-items: center;
  gap: 0;
  margin-top: 48px;
  justify-content: center;
}

.pipeline-step {
  text-align: center;
}

.pipeline-step-label {
  font-family: var(--ff-body);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}

.pipeline-step-pill {
  display: inline-block;
  padding: 5px 12px;
  background: var(--bg-alt);
  border: 1px solid var(--rule);
  border-radius: 20px;
  font-family: var(--ff-body);
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--forest);
}

.pipeline-arrow {
  font-size: 0.8rem;
  color: var(--gold);
  padding: 0 12px;
  margin-top: 10px;
}

/* How It Works — steps */
.how-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  text-align: center;
  margin-top: 16px;
  position: relative;
}


.how-step-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
}
.how-step-icon--forest { background: var(--forest); color: var(--bg); }
.how-step-icon--gold   { background: var(--gold);   color: var(--bg); }

.how-step-num {
  font-family: var(--ff-display);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 4px;
}

.how-step-label {
  font-family: var(--ff-display);
  font-size: 1.6rem;
  font-weight: 400;
  font-style: italic;
  color: var(--forest);
  margin-bottom: 8px;
}

.how-step-desc {
  font-family: var(--ff-body);
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.7;
}

@media (max-width: 900px) {
  .how-inner { grid-template-columns: 1fr; gap: 48px; }
  .how-steps { grid-template-columns: 1fr !important; gap: 40px !important; }

  /* Vertical timeline on mobile */
  .how-steps::before {
    top: 36px;
    bottom: 36px;
    left: 50%;
    right: auto;
    width: 2px;
    height: auto;
    transform: translateX(-1px);
    background: linear-gradient(to bottom, var(--forest), var(--gold), var(--forest));
  }

  .how-step { position: relative; }
}

/* ── Stat counter animation ── */
.stat-number {
  transition: opacity 0.4s var(--ease);
}
.stat-number[data-target] {
  /* numbers start invisible until counted */
}

/* ════════════════════════════════
   MISSION
════════════════════════════════ */
.mission {
  padding: 120px 0;
  background: var(--bg-alt);
  position: relative;
  overflow: hidden;
}

.mission::before {
  display: none;
}

.mission-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  position: relative;
  z-index: 1;
}

.mission-pull-quote {
  font-family: var(--ff-display);
  font-size: clamp(1.6rem, 2.5vw, 2.4rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.3;
  color: var(--forest);
  border-left: 4px solid var(--gold);
  padding-left: 28px;
  margin-bottom: 36px;
}

.mission-body {
  font-family: var(--ff-body);
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.9;
}

.mission-body p + p { margin-top: 16px; }

.mission-right {
  position: relative;
}

.mission-photo-frame {
  position: relative;
  aspect-ratio: 3/4;
  max-height: 520px;
  overflow: hidden;
  border-radius: 4px;
}

.mission-photo-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(31,61,46,0.3));
}

.mission-photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Placeholder when no image */
.mission-photo-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--forest) 0%, var(--forest-mid) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 32px;
}

.mission-photo-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 1;
  padding: 24px 28px;
}

.mission-photo-name {
  font-family: var(--ff-display);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--bg);
  margin-bottom: 2px;
}

.mission-photo-title {
  font-family: var(--ff-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(247,243,238,0.7);
}

/* Decorative border offset */
.mission-right::before {
  content: '';
  position: absolute;
  top: 16px; left: -16px;
  right: -16px; bottom: -16px;
  border: 1px solid var(--rule);
  border-radius: 4px;
  pointer-events: none;
}

@media (max-width: 900px) {
  .mission-inner { grid-template-columns: 1fr; }
  .mission-right::before { display: none; }
}

/* ════════════════════════════════
   STATISTICS
════════════════════════════════ */
.stats {
  background: var(--forest);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.stats::before {
  display: none;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
  z-index: 1;
}

.stat-item {
  padding: 48px 40px;
  border-right: 1px solid rgba(247,243,238,0.1);
  text-align: center;
}
.stat-item:last-child { border-right: none; }

.stat-number {
  font-family: var(--ff-display);
  font-size: clamp(3.5rem, 6vw, 6rem);
  font-weight: 300;
  color: var(--bg);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -0.03em;
}

.stat-number em {
  font-style: normal;
  color: var(--gold);
}

.stat-label {
  font-family: var(--ff-body);
  font-size: 0.82rem;
  color: rgba(247,243,238,0.6);
  line-height: 1.6;
  max-width: 200px;
  margin: 0 auto;
}

.stats-source {
  text-align: center;
  padding-top: 48px;
  position: relative;
  z-index: 1;
}

.stats-source p {
  font-family: var(--ff-body);
  font-size: 0.68rem;
  color: rgba(247,243,238,0.35);
  letter-spacing: 0.06em;
}

@media (max-width: 768px) {
  .stats-grid { grid-template-columns: 1fr; }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(247,243,238,0.1); }
  .stat-item:last-child { border-bottom: none; }
}

/* ════════════════════════════════
   WHY THIS MATTERS
════════════════════════════════ */
.matters {
  padding: 120px 0;
  background: var(--bg);
}

.matters-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.news-card {
  background: var(--bg-alt);
  border: 1px solid var(--rule);
  border-radius: 4px;
  overflow: hidden;
  transition: box-shadow 0.3s, transform 0.3s;
}
.news-card:hover {
  box-shadow: 0 16px 48px rgba(28,25,21,0.1);
  transform: translateY(-4px);
}

.news-card-banner {
  height: 160px;
  background: linear-gradient(135deg, var(--forest) 0%, var(--forest-mid) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.news-card-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 10px,
    rgba(247,243,238,0.02) 10px,
    rgba(247,243,238,0.02) 20px
  );
}

.news-card-source {
  font-family: var(--ff-body);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(247,243,238,0.6);
  z-index: 1;
}

.news-card-body { padding: 28px 28px 24px; }

.news-card-date {
  font-family: var(--ff-body);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.news-card-headline {
  font-family: var(--ff-display);
  font-size: 1.35rem;
  font-weight: 500;
  line-height: 1.3;
  color: var(--ink);
  margin-bottom: 14px;
}

.news-card-excerpt {
  font-family: var(--ff-body);
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 20px;
}

.news-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ff-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--terracotta);
  text-decoration: none;
  transition: gap 0.2s;
}
.news-card-link:hover { gap: 12px; }

@media (max-width: 900px) {
  .matters-inner { grid-template-columns: 1fr; }
}

/* ════════════════════════════════
   FORMS
════════════════════════════════ */
.trial-section {
  padding: 120px 0;
  background: var(--forest);
  position: relative;
  overflow: hidden;
}

.trial-section::before {
  display: none;
}

.trial-section .tag { color: var(--gold); }
.trial-section .section-headline { color: var(--bg); }
.trial-section .section-body { color: rgba(247,243,238,0.6); max-width: 460px; }

.form-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.form-card {
  background: var(--bg);
  border: 1px solid var(--rule);
  border-radius: 4px;
  padding: 40px;
}

.trial-section .form-card {
  background: rgba(247,243,238,0.06);
  border-color: rgba(247,243,238,0.12);
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-family: var(--ff-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}

.trial-section .form-label { color: rgba(247,243,238,0.5); }

.form-input {
  width: 100%;
  padding: 12px 16px;
  background: var(--bg-alt);
  border: 1.5px solid var(--rule);
  border-radius: 2px;
  font-family: var(--ff-body);
  font-size: 0.9rem;
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  -webkit-appearance: none;
}

.form-input:focus {
  border-color: var(--forest);
  box-shadow: 0 0 0 3px rgba(91,79,207,0.30);
}

.form-input::placeholder { color: rgba(122,115,104,0.6); }

.trial-section .form-input {
  background: rgba(247,243,238,0.06);
  border-color: rgba(247,243,238,0.15);
  color: var(--bg);
}

.trial-section .form-input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(155,136,120,0.2);
}

.trial-section .form-input::placeholder { color: rgba(247,243,238,0.3); }

.btn-form {
  width: 100%;
  padding: 14px;
  background: var(--forest);
  color: var(--bg);
  border: none;
  border-radius: 2px;
  font-family: var(--ff-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.25s, transform 0.2s;
  margin-top: 8px;
}
.btn-form:hover { background: var(--forest-mid); transform: translateY(-1px); }

.trial-section .btn-form {
  background: var(--gold);
  color: var(--bg);
}
.trial-section .btn-form:hover { background: #B09A8A; }

@media (max-width: 900px) {
  .form-layout { grid-template-columns: 1fr; }
}

/* ════════════════════════════════
   FAQs
════════════════════════════════ */
.faqs {
  padding: 120px 0;
  background: var(--bg);
}

.faqs-header {
  max-width: 560px;
  margin-bottom: 64px;
}

.faq-list {
  max-width: 800px;
}

.faq-item {
  border-top: 1px solid var(--rule);
}
.faq-item:last-child { border-bottom: 1px solid var(--rule); }

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
}

.faq-question-text {
  font-family: var(--ff-display);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.4;
}

.faq-icon {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1.5px solid var(--rule);
  display: flex; align-items: center; justify-content: center;
  color: var(--muted);
  font-size: 1rem;
  transition: background 0.2s, border-color 0.2s, transform 0.3s;
  line-height: 1;
}

.faq-item.open .faq-icon {
  background: var(--forest);
  border-color: var(--forest);
  color: var(--bg);
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease), padding 0.3s;
}

.faq-item.open .faq-answer {
  max-height: 400px;
}

.faq-answer-inner {
  padding-bottom: 24px;
  font-family: var(--ff-body);
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.8;
}

.faqs-footer {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--rule);
  display: flex;
  align-items: center;
  gap: 12px;
}

.faqs-footer p {
  font-family: var(--ff-body);
  font-size: 0.85rem;
  color: var(--muted);
}

.faqs-footer a {
  font-family: var(--ff-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--forest);
  text-decoration: none;
  border-bottom: 1px solid var(--forest);
  padding-bottom: 1px;
  transition: opacity 0.2s;
}
.faqs-footer a:hover { opacity: 0.7; }

/* ════════════════════════════════
   FOOTER
════════════════════════════════ */
footer {
  position: relative;
  background:
    linear-gradient(180deg, #11163A 0%, #0B1030 100%);
  padding: 56px 0 44px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}
footer::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg,
    var(--forest) 0%,
    var(--gold) 50%,
    var(--forest) 100%);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-logo {
  font-family: var(--ff-display);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--bg);
  text-decoration: none;
  letter-spacing: -0.01em;
}
.footer-logo span { color: var(--gold); }

.footer-copy {
  font-family: var(--ff-body);
  font-size: 0.75rem;
  color: rgba(247,243,238,0.35);
  letter-spacing: 0.04em;
}

.footer-links {
  display: flex;
  gap: 20px;
}

.footer-links a {
  font-family: var(--ff-body);
  font-size: 0.75rem;
  color: rgba(247,243,238,0.45);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--bg); }

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(247,243,238,0.06);
  display: flex; align-items: center; justify-content: center;
  color: rgba(247,243,238,0.45);
  text-decoration: none;
  font-size: 0.8rem;
  transition: background 0.2s, color 0.2s;
}
.footer-social a:hover { background: var(--gold); color: var(--ink); }

/* ════════════════════════════════
   SECTION SPACING HELPERS
════════════════════════════════ */
.mb-sm { margin-bottom: 12px; }
.mb-md { margin-bottom: 24px; }
.mb-lg { margin-bottom: 48px; }
