/* ========================================================================
   Vigil Faith — Marketing Site Design System
   Editorial/liturgical, navy + amber, less template more missal.
   ======================================================================== */

:root {
  --navy-deepest:   #03091c;
  --navy-deep:      #06142e;
  --navy:           #0a1f44;
  --navy-light:     #102a55;
  --navy-glow:      rgba(56, 102, 168, 0.30);

  --amber:          #f1a13a;
  --amber-warm:     #ffd680;
  --amber-deep:     #8b4a12;
  --amber-glow:     rgba(255, 190, 110, 0.22);
  --cream:          #f3ead8;

  --text-primary:   #ffffff;
  --text-secondary: rgba(255, 255, 255, 0.78);
  --text-muted:     rgba(255, 255, 255, 0.50);
  --text-faint:     rgba(255, 255, 255, 0.32);

  --line:           rgba(255, 255, 255, 0.08);
  --line-strong:    rgba(255, 255, 255, 0.16);

  --glass:          rgba(255, 255, 255, 0.035);
  --glass-strong:   rgba(255, 255, 255, 0.06);

  --radius-sm:  10px;
  --radius:     16px;
  --radius-lg:  28px;

  --shadow-deep:    0 40px 100px rgba(0, 0, 0, 0.55);

  --font-display:    'Cormorant Garamond', 'Fraunces', Georgia, 'Noto Serif TC', 'Noto Serif SC', 'Noto Serif KR', 'Noto Sans TC', 'Noto Sans SC', 'Noto Sans KR', 'PingFang TC', 'PingFang SC', 'Apple SD Gothic Neo', 'Hiragino Sans GB', 'Microsoft JhengHei', 'Microsoft YaHei', serif;
  --font-body:       'Inter', -apple-system, system-ui, 'Noto Sans TC', 'Noto Sans SC', 'Noto Sans KR', 'PingFang TC', 'PingFang SC', 'Apple SD Gothic Neo', 'Hiragino Sans GB', 'Microsoft JhengHei', 'Microsoft YaHei', sans-serif;
  --font-cjk-sans:   'Noto Sans TC', 'Noto Sans SC', 'Noto Sans KR', 'PingFang TC', 'PingFang SC', 'Apple SD Gothic Neo', 'Hiragino Sans GB', 'Microsoft JhengHei', 'Microsoft YaHei', sans-serif;
  --font-cjk-serif:  'Noto Serif TC', 'Noto Serif SC', 'Noto Serif KR', 'Songti TC', 'Songti SC', 'Apple SD Gothic Neo', 'Hiragino Mincho ProN', serif;

  --max-content:    1080px;
  --max-narrow:     720px;
}

/* base */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--navy-deepest);
  color: var(--text-primary);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
  overflow-x: hidden;
}
body[lang^="zh"], body[lang="ko"] { font-family: var(--font-cjk-sans); letter-spacing: 0.01em; }
body[lang^="zh"] h1, body[lang^="zh"] h2, body[lang^="zh"] h3, body[lang^="zh"] h4,
body[lang="ko"]  h1, body[lang="ko"]  h2, body[lang="ko"]  h3, body[lang="ko"]  h4 {
  font-family: 'Cormorant Garamond', 'Fraunces', var(--font-cjk-serif);
  letter-spacing: 0.02em;
}
body[lang^="zh"] em, body[lang="ko"] em { font-style: normal; }
body[lang^="zh"] h1 em, body[lang^="zh"] h2 em, body[lang^="zh"] h3 em,
body[lang="ko"]  h1 em, body[lang="ko"]  h2 em, body[lang="ko"]  h3 em { font-style: normal; color: var(--amber-warm, #fbbf24); }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

/* atmospheric bg */
.bg-atmosphere {
  position: fixed; inset: 0; z-index: -1;
  background:
    radial-gradient(ellipse 100% 60% at 50% 0%, rgba(56, 102, 168, 0.40), transparent 65%),
    radial-gradient(ellipse 70% 50% at 85% 20%, rgba(110, 80, 200, 0.14), transparent 60%),
    radial-gradient(ellipse 90% 60% at 15% 90%, rgba(255, 180, 90, 0.07), transparent 60%),
    linear-gradient(180deg, var(--navy-light) 0%, var(--navy) 28%, var(--navy-deep) 58%, var(--navy-deepest) 100%);
  pointer-events: none;
}
.bg-atmosphere::after {
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='220' height='220'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 0.035 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  opacity: 0.6;
  mix-blend-mode: overlay;
}

/* ============ NAV ============ */
.nav {
  position: sticky; top: 0; z-index: 100;
  backdrop-filter: blur(20px) saturate(150%);
  -webkit-backdrop-filter: blur(20px) saturate(150%);
  background: rgba(3, 9, 28, 0.72);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  max-width: var(--max-content);
  margin: 0 auto;
  padding: 14px 28px;
  display: flex; align-items: center; gap: 24px;
}
.nav-brand {
  display: flex; align-items: center;
}
.nav-brand img { height: 84px; width: auto; }
.nav-links {
  display: flex; gap: 28px; margin-left: auto; align-items: center;
  font-size: 14px; letter-spacing: 0.3px;
}
.nav-links a {
  color: var(--text-secondary); font-weight: 400;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--text-primary); }
/* Globe icon dropdown */
.nav-lang {
  position: relative;
  margin-left: 14px;
  padding-left: 18px; border-left: 1px solid var(--line);
}
.nav-lang-trigger {
  display: flex; align-items: center; gap: 8px;
  padding: 9px 14px; border-radius: 999px;
  background: var(--glass-strong);
  border: 1px solid var(--line-strong);
  color: var(--amber-warm); font-size: 14px; font-weight: 600;
  letter-spacing: 0.5px; cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.nav-lang-trigger:hover {
  background: rgba(241, 161, 58, 0.12);
  border-color: var(--amber);
  color: var(--text-primary);
}
.nav-lang-trigger svg { width: 18px; height: 18px; flex-shrink: 0; }
.nav-lang-trigger .caret { width: 9px; height: 9px; opacity: 0.6; }

.nav-lang-menu {
  position: absolute; top: calc(100% + 8px); right: 0;
  min-width: 180px;
  background: rgba(10, 24, 56, 0.97);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  padding: 6px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5);
  opacity: 0; visibility: hidden;
  transform: translateY(-4px);
  transition: opacity 0.15s, visibility 0.15s, transform 0.15s;
  z-index: 200;
}
.nav-lang:hover .nav-lang-menu,
.nav-lang:focus-within .nav-lang-menu {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.nav-lang-menu a {
  display: block;
  padding: 9px 14px;
  font-size: 14px;
  color: var(--text-secondary);
  border-radius: 8px;
  transition: background 0.15s, color 0.15s;
}
.nav-lang-menu a:hover { background: var(--glass-strong); color: var(--amber-warm); }
.nav-lang-menu a.active {
  color: var(--amber-warm);
  background: var(--glass);
}
.nav-lang-menu a .lang-code {
  display: inline-block;
  width: 36px;
  font-family: var(--font-display);
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.5px;
}

/* ============ HERO ============ */
.hero {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 28px 60px;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  gap: 40px;
  align-items: center;
}
.hero-text { position: relative; z-index: 2; }

.hero-logo {
  margin-bottom: 32px;
}
.hero-logo img {
  height: 96px; width: auto;
  filter: drop-shadow(0 0 30px rgba(255, 215, 150, 0.20));
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(46px, 6vw, 76px);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -1px;
  margin-bottom: 28px;
}
.hero h1 em {
  font-style: italic;
  color: var(--amber-warm);
  font-weight: 500;
}

.hero-sub {
  font-size: clamp(17px, 1.6vw, 20px);
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: 520px;
  margin-bottom: 44px;
  font-weight: 300;
}

.hero-cta {
  display: flex; gap: 10px; flex-wrap: wrap;
  margin-bottom: 28px;
}
.btn-store {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 13px 22px; border-radius: 10px;
  background: #000;
  color: #fff;
  font-weight: 500;
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: transform 0.15s, background 0.15s, border-color 0.15s;
  box-shadow: 0 6px 20px rgba(0,0,0,0.4);
}
.btn-store:hover {
  transform: translateY(-1px);
  background: #1a1a1a;
  border-color: var(--amber);
}
.btn-store-icon { width: 24px; height: 24px; color: #fff; }
.btn-store .badge-text { display: flex; flex-direction: column; align-items: flex-start; line-height: 1.15; }
.btn-store .badge-text small { font-size: 10px; font-weight: 400; opacity: 0.65; }
.btn-store .badge-text strong { font-size: 16px; font-weight: 600; letter-spacing: 0.2px; }

.hero-foot {
  font-size: 13px; color: var(--text-muted); font-weight: 300;
  letter-spacing: 0.3px;
}

/* hero phones — 3 side-by-side */
.hero-phones {
  position: relative;
  display: flex; justify-content: center; align-items: center;
  gap: 0;
  min-height: 560px;
}
.hero-phones::before {
  content: '';
  position: absolute; inset: -60px;
  background:
    radial-gradient(circle at 50% 50%, var(--amber-glow), transparent 60%),
    radial-gradient(circle at 30% 80%, rgba(255, 160, 80, 0.18), transparent 55%),
    radial-gradient(circle at 70% 80%, rgba(110, 80, 200, 0.16), transparent 55%);
  filter: blur(80px);
  pointer-events: none;
}
/* Realistic iPhone 16 Pro Max frame */
.phone-mockup {
  position: relative;
  width: 240px;
  border-radius: 42px;
  padding: 7px;
  background:
    linear-gradient(135deg, #5c5d62 0%, #2a2b2f 12%, #4a4b50 25%, #1c1d21 50%, #4a4b50 75%, #2a2b2f 88%, #5c5d62 100%);
  box-shadow:
    var(--shadow-deep),
    0 0 0 1px rgba(255,255,255,0.06),
    inset 0 0 0 2px rgba(0,0,0,0.5);
}
.phone-screen {
  position: relative;
  border-radius: 35px;
  overflow: hidden;
  background: #000;
}
.phone-screen img { width: 100%; display: block; }

/* Dynamic Island (overlay on screen) */
.phone-mockup::after {
  content: '';
  position: absolute;
  top: 22px;
  left: 50%;
  transform: translateX(-50%);
  width: 78px;
  height: 24px;
  background: #000;
  border-radius: 16px;
  z-index: 10;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.04);
}

/* Side hardware buttons */
.phone-btn {
  position: absolute;
  background: linear-gradient(to right, #2a2b2f 0%, #1a1b1f 50%, #2a2b2f 100%);
  z-index: 5;
  pointer-events: none;
}
.phone-btn.left {
  left: -2px;
  background: linear-gradient(to right, #2a2b2f, #1a1b1f);
  border-radius: 2px 0 0 2px;
}
.phone-btn.right {
  right: -2px;
  background: linear-gradient(to left, #2a2b2f, #1a1b1f);
  border-radius: 0 2px 2px 0;
}
.phone-btn.action  { top: 18%; height: 24px; width: 4px; }
.phone-btn.volup   { top: 28%; height: 38px; width: 4px; }
.phone-btn.voldn   { top: 41%; height: 38px; width: 4px; }
.phone-btn.power   { top: 28%; height: 60px; width: 4px; }
.phone-btn.camera  {
  top: 50%; height: 26px; width: 4px;
  background: linear-gradient(to left, #2a2b2f, #4a4b50 30%, #1a1b1f);
}

.phone-side { width: 200px; opacity: 0.92; }
.phone-left { transform: rotate(-9deg) translateX(35px) translateY(20px); z-index: 1; }
.phone-center { z-index: 2; }
.phone-right { transform: rotate(9deg) translateX(-35px) translateY(20px); z-index: 1; }

/* For showcase rows that previously used .hero-phone now use .showcase-img — unchanged */

/* ============ MANIFESTO  ============ */
.manifesto {
  max-width: var(--max-narrow);
  margin: 60px auto;
  padding: 80px 28px;
  text-align: center;
  position: relative;
}
.manifesto::before, .manifesto::after {
  content: ''; display: block;
  width: 60px; height: 1px;
  background: var(--amber);
  margin: 0 auto 32px;
  opacity: 0.6;
}
.manifesto::after { margin: 32px auto 0; }
.manifesto p {
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 34px);
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: -0.3px;
  color: var(--text-primary);
}
.manifesto p em { color: var(--amber-warm); font-style: italic; }

/* ============ SHOWCASE (the centerpiece — editorial alternating) ============ */
.showcase {
  max-width: var(--max-content);
  margin: 0 auto;
  padding: 40px 28px 120px;
}
.showcase-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 90px 0;
  border-bottom: 1px solid var(--line);
}
.showcase-row:first-child { padding-top: 40px; }
.showcase-row:last-child { border-bottom: 0; }
.showcase-row.reverse { direction: rtl; }
.showcase-row.reverse > * { direction: ltr; }

.showcase-img {
  position: relative;
  display: flex; justify-content: center;
}
.showcase-img::before {
  content: '';
  position: absolute; inset: -10px;
  background: radial-gradient(circle, var(--amber-glow), transparent 65%);
  filter: blur(40px);
  pointer-events: none;
}
.showcase-img img {
  position: relative;
  max-width: 300px;
  border-radius: 32px;
  box-shadow: var(--shadow-deep);
}

.showcase-num {
  font-family: var(--font-display);
  font-size: 14px; font-weight: 400;
  color: var(--amber);
  letter-spacing: 4px;
  margin-bottom: 18px;
  font-variant-numeric: oldstyle-nums;
}
.showcase h3 {
  font-family: var(--font-display);
  font-size: clamp(34px, 4vw, 50px);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -1px;
  margin-bottom: 22px;
}
.showcase h3 em { font-style: italic; color: var(--amber-warm); font-weight: 500; }

.showcase-body {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.7;
  font-weight: 300;
  max-width: 460px;
}
.showcase-body + .showcase-body { margin-top: 18px; }

.showcase-pullquote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 19px;
  color: var(--amber-warm);
  line-height: 1.5;
  margin-top: 24px;
  padding-left: 16px;
  border-left: 2px solid var(--amber);
  font-weight: 400;
}

/* ============ TEN-FEATURE LIST (editorial, no icons) ============ */
.ten-list {
  max-width: var(--max-narrow);
  margin: 0 auto;
  padding: 60px 28px 80px;
}
.ten-list-eyebrow {
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 4px;
  color: var(--amber);
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 16px;
  font-weight: 500;
}
.ten-list-heading {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 42px);
  text-align: center;
  font-weight: 500;
  margin-bottom: 50px;
  letter-spacing: -0.5px;
}
.ten-list ul {
  list-style: none;
}
.ten-list li {
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 20px;
  align-items: baseline;
}
.ten-list li:last-child { border-bottom: 0; }
.ten-list .num {
  font-family: var(--font-display);
  font-size: 17px;
  color: var(--amber);
  font-variant-numeric: oldstyle-nums tabular-nums;
  font-weight: 400;
}
.ten-list .name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  color: var(--text-primary);
  display: block;
  margin-bottom: 4px;
}
.ten-list .desc {
  font-size: 15px;
  color: var(--text-secondary);
  font-weight: 300;
  line-height: 1.55;
}

/* ============ FAQ ============ */
.faq-section {
  max-width: var(--max-narrow);
  margin: 0 auto;
  padding: 80px 28px;
}
.faq-section h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 500;
  text-align: center;
  margin-bottom: 60px;
  letter-spacing: -0.5px;
}
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-item summary {
  list-style: none; cursor: pointer;
  padding: 24px 0;
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 500;
  display: flex; align-items: center; justify-content: space-between;
  transition: color 0.2s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 22px;
  color: var(--amber);
  transition: transform 0.3s;
  font-family: var(--font-body);
  font-weight: 300;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item summary:hover { color: var(--amber-warm); }
.faq-answer {
  padding: 0 0 28px;
  color: var(--text-secondary);
  font-size: 16px; line-height: 1.7; font-weight: 300;
}

/* ============ CTA ============ */
.cta-strip {
  margin: 80px auto;
  max-width: var(--max-content);
  padding: 80px 28px;
  text-align: center;
  position: relative;
}
.cta-strip::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 50%, var(--navy-glow), transparent 70%);
  pointer-events: none;
}
.cta-strip > * { position: relative; }
.cta-strip h2 {
  font-family: var(--font-display);
  font-size: clamp(34px, 4.5vw, 52px);
  font-weight: 500;
  margin-bottom: 18px;
  letter-spacing: -0.5px;
}
.cta-strip h2 em { color: var(--amber-warm); font-style: italic; }
.cta-strip p {
  font-size: 17px; color: var(--text-secondary); font-weight: 300;
  max-width: 480px; margin: 0 auto 32px;
}
.cta-strip .hero-cta { justify-content: center; }

/* ============ FOOTER ============ */
.footer {
  max-width: var(--max-content);
  margin: 60px auto 0;
  padding: 50px 28px 30px;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
}
.footer h4 {
  font-family: var(--font-display);
  font-size: 13px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--text-muted); font-weight: 500;
  margin-bottom: 14px;
}
.footer ul { list-style: none; }
.footer li { margin-bottom: 8px; }
.footer a {
  font-size: 13px; color: var(--text-secondary); font-weight: 300;
  transition: color 0.2s;
}
.footer a:hover { color: var(--amber-warm); }
.footer-brand {
  font-family: var(--font-display);
  font-size: 22px; font-weight: 500; letter-spacing: 5px;
  margin-bottom: 8px;
}
.footer-tagline {
  font-size: 13px; color: var(--text-muted); font-weight: 300;
  margin-bottom: 20px; max-width: 320px; line-height: 1.6;
}
.footer-social { display: flex; gap: 14px; }
.footer-social a {
  font-size: 16px; color: var(--text-muted);
  transition: color 0.2s;
}
.footer-social a:hover { color: var(--amber-warm); }
.footer-bottom {
  grid-column: 1 / -1;
  margin-top: 30px; padding-top: 20px;
  border-top: 1px solid var(--line);
  font-size: 12px; color: var(--text-faint); font-weight: 300;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px;
}

/* responsive */
@media (max-width: 900px) {
  /* Center everything on narrower viewports */
  .hero {
    grid-template-columns: 1fr;
    padding: 50px 24px 40px;
    gap: 40px;
    text-align: center;
  }
  .hero-text { max-width: 600px; margin: 0 auto; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-cta { justify-content: center; }
  .hero-phones { order: -1; margin: 0 auto; }
  .phone-mockup { width: 210px; }
  .phone-side { width: 190px; }

  .nav-links a:not(.cta) { display: none; }
  .nav-lang { margin-left: auto; padding-left: 0; border-left: 0; }
  .nav-brand img { height: 56px; }

  .showcase-row { grid-template-columns: 1fr; gap: 40px; padding: 70px 0; text-align: center; }
  .showcase-row.reverse { direction: ltr; }
  .showcase-text { max-width: 520px; margin: 0 auto; }
  .showcase-body { margin: 0 auto; }
  .showcase-pullquote { border-left: 0; padding-left: 0; padding: 16px 24px;
    border-top: 1px solid var(--amber); border-bottom: 1px solid var(--amber); display: inline-block; }

  .carousel-stage { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .carousel-text-stack { min-height: 240px; }
  .carousel-text-slide { text-align: center; }
  .carousel-text-slide p { margin: 0 auto; }
  .carousel-text-slide .pullquote { border-left: 0; padding-left: 0; display: inline-block;
    padding: 14px 24px; border-top: 1px solid var(--amber); border-bottom: 1px solid var(--amber); }

  .footer { grid-template-columns: 1fr 1fr; text-align: center; }
  .footer-social { justify-content: center; }
  .manifesto { padding: 50px 24px; }

  /* Contact + donate */
  .form-section { grid-template-columns: 1fr; gap: 28px; }
  .form-row { grid-template-columns: 1fr; }
  .vf-form, .contact-aside { padding: 26px 22px; }
  .donate-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .hero h1 { font-size: 40px; }
  .btn-store { padding: 11px 16px; }
  .btn-store .badge-text strong { font-size: 14px; }
  .footer { grid-template-columns: 1fr; text-align: center; }
  .footer ul li { text-align: center; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 8px; }
  .donate-grid { grid-template-columns: 1fr; }
  .uses-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
}

/* ============ Full-width banner ============ */
.banner-full {
  width: 100%;
  margin: 100px 0;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.banner-full::before,
.banner-full::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  height: 80px;
  pointer-events: none;
  z-index: 2;
}
.banner-full::before {
  top: 0;
  background: linear-gradient(to bottom, var(--navy-deepest), transparent);
}
.banner-full::after {
  bottom: 0;
  background: linear-gradient(to top, var(--navy-deepest), transparent);
}
.banner-img {
  width: 100%;
  height: auto;
  display: block;
}
@media (max-width: 700px) {
  .banner-full { margin: 60px 0; }
  .banner-full::before, .banner-full::after { height: 40px; }
}

/* ============ Features card grid (10 cards) ============ */
.features-section {
  max-width: var(--max-content);
  margin: 0 auto;
  padding: 80px 28px;
}
.features-header {
  text-align: center;
  margin-bottom: 60px;
}
.features-eyebrow {
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 4px;
  color: var(--amber);
  text-transform: uppercase;
  margin-bottom: 14px;
  font-weight: 500;
}
.features-header h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 46px);
  font-weight: 500;
  letter-spacing: -0.5px;
  margin-bottom: 14px;
}
.features-lede {
  font-size: 17px;
  color: var(--text-secondary);
  font-weight: 300;
  max-width: 520px;
  margin: 0 auto;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
}
.feature-card {
  position: relative;
  padding: 32px 28px 30px;
  border-radius: var(--radius);
  background: var(--glass);
  border: 1px solid var(--line);
  transition: background 0.3s, border-color 0.3s, transform 0.3s;
}
.feature-card:hover {
  background: var(--glass-strong);
  border-color: var(--line-strong);
  transform: translateY(-3px);
}
.feature-number {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--amber);
  margin-bottom: 22px;
  font-weight: 400;
  font-variant-numeric: oldstyle-nums;
  letter-spacing: 1px;
}
.feature-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 10px;
  letter-spacing: -0.3px;
}
.feature-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  font-weight: 300;
}

/* hero phones responsive */
@media (max-width: 900px) {
  .hero-phones { min-height: auto; gap: 0; margin: 20px 0; }
  .phone-mockup { width: 160px; }
  .phone-side { width: 140px; }
  .phone-left { transform: rotate(-9deg) translateX(25px) translateY(15px); }
  .phone-right { transform: rotate(9deg) translateX(-25px) translateY(15px); }
  .banner-placeholder { height: 260px; }
  .banner-placeholder.banner-tall { height: 320px; }
}
@media (max-width: 480px) {
  .nav-lang { gap: 10px; font-size: 11px; }
  .features-grid { grid-template-columns: 1fr; }
}

/* ============ PAGE HERO (contact / donate / etc.) ============ */
.page-hero {
  max-width: var(--max-narrow);
  margin: 0 auto;
  padding: 100px 28px 60px;
  text-align: center;
}
.page-eyebrow {
  font-family: var(--font-display);
  font-size: 13px; letter-spacing: 4px; text-transform: uppercase;
  color: var(--amber); font-weight: 500;
  margin-bottom: 18px;
}
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(42px, 5.5vw, 64px);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -1px;
  margin-bottom: 22px;
}
.page-hero h1 em { font-style: italic; color: var(--amber-warm); font-weight: 500; }
.page-lede {
  font-size: 17px;
  color: var(--text-secondary);
  font-weight: 300;
  line-height: 1.65;
  max-width: 600px; margin: 0 auto;
}

/* ============ CONTACT FORM ============ */
.form-section {
  max-width: var(--max-content);
  margin: 0 auto;
  padding: 40px 28px 100px;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 60px;
  align-items: start;
}
.vf-form {
  background: var(--glass);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px 36px 32px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 0.5px;
  color: var(--text-secondary);
  font-weight: 500;
  margin-bottom: 8px;
}
.form-group label .optional {
  color: var(--text-muted); font-weight: 300; font-size: 12px;
  font-family: var(--font-body);
}
.vf-form input[type="text"],
.vf-form input[type="email"],
.vf-form select,
.vf-form textarea {
  width: 100%;
  padding: 12px 16px;
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 400;
  transition: border-color 0.2s, background 0.2s;
}
.vf-form input::placeholder, .vf-form textarea::placeholder {
  color: var(--text-faint);
}
.vf-form input:focus, .vf-form select:focus, .vf-form textarea:focus {
  outline: none;
  border-color: var(--amber);
  background: rgba(0, 0, 0, 0.35);
}
.vf-form select { cursor: pointer; appearance: none; -webkit-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' fill='none' stroke='%23f1a13a' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'><path d='M3 4.5l3 3 3-3'/></svg>");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 12px 12px;
  padding-right: 40px;
}
.vf-form textarea { resize: vertical; min-height: 120px; line-height: 1.5; }
.form-hint {
  font-size: 13px; color: var(--text-muted); font-weight: 300;
  margin-top: 6px;
}
.form-checkbox {
  display: flex; align-items: center; gap: 10px;
  margin: 4px 0 22px;
  cursor: pointer;
  font-size: 14px; color: var(--text-secondary); font-weight: 300;
}
.form-checkbox input { width: 16px; height: 16px; accent-color: var(--amber); cursor: pointer; }

.btn-primary {
  display: inline-block;
  width: 100%;
  padding: 14px 24px;
  background: var(--amber);
  color: #2a1404;
  border: 0;
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 15px; font-weight: 600;
  letter-spacing: 0.3px;
  cursor: pointer;
  transition: background 0.15s, transform 0.15s, box-shadow 0.15s;
  box-shadow: 0 8px 24px rgba(255, 161, 58, 0.25);
}
.btn-primary:hover {
  background: var(--amber-warm);
  transform: translateY(-1px);
  box-shadow: 0 12px 32px rgba(255, 161, 58, 0.4);
}
.form-foot {
  margin-top: 16px;
  text-align: center;
  font-size: 13px; color: var(--text-muted); font-weight: 300;
}
.form-foot a { color: var(--amber-warm); }
.form-foot a:hover { color: var(--amber); }

/* ============ CONTACT ASIDE ============ */
.contact-aside {
  padding: 36px 30px;
  background: var(--glass);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.contact-aside h3 {
  font-family: var(--font-display);
  font-size: 22px; font-weight: 500;
  margin-bottom: 22px;
  letter-spacing: -0.3px;
}
.contact-list {
  list-style: none;
  margin-bottom: 32px;
}
.contact-list li {
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: baseline;
  gap: 16px;
}
.contact-list li:last-child { border-bottom: 0; }
.contact-list .contact-label {
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 500;
  width: 80px;
  flex-shrink: 0;
}
.contact-list a {
  font-size: 14px;
  color: var(--text-secondary);
  font-weight: 400;
  transition: color 0.2s;
}
.contact-list a:hover { color: var(--amber-warm); }

.contact-quote {
  margin-top: 30px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  font-family: var(--font-display);
  font-style: italic;
  color: var(--amber-warm);
}
.contact-quote p {
  font-size: 17px;
  line-height: 1.55;
  margin-bottom: 10px;
}
.contact-quote-ref {
  font-size: 13px;
  font-style: normal;
  color: var(--text-muted);
  letter-spacing: 1px;
}

/* ============ DONATE USES ============ */
.donate-uses {
  max-width: var(--max-content);
  margin: 0 auto;
  padding: 40px 28px 60px;
}
.uses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}
.use-card {
  padding: 26px 24px;
  background: var(--glass);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: background 0.3s, border-color 0.3s;
}
.use-card:hover { background: var(--glass-strong); border-color: var(--line-strong); }
.use-num {
  font-family: var(--font-display);
  font-size: 16px;
  color: var(--amber);
  margin-bottom: 16px;
  font-variant-numeric: oldstyle-nums;
}
.use-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 8px;
}
.use-card p {
  font-size: 14px;
  color: var(--text-secondary);
  font-weight: 300;
  line-height: 1.55;
}

/* ============ DONATE GRID ============ */
.donate-section {
  max-width: var(--max-narrow);
  margin: 0 auto;
  padding: 60px 28px 80px;
  text-align: center;
}
.donate-section h2 {
  font-family: var(--font-display);
  font-size: clamp(34px, 4.5vw, 50px);
  font-weight: 500;
  margin-bottom: 14px;
  letter-spacing: -0.5px;
}
.donate-section h2 em { color: var(--amber-warm); font-style: italic; }
.donate-lede {
  font-size: 15px;
  color: var(--text-secondary);
  font-weight: 300;
  margin-bottom: 40px;
}
.donate-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 32px;
}
.donate-option {
  display: flex; flex-direction: column;
  padding: 28px 18px;
  background: var(--glass);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  text-align: center;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}
.donate-option:hover {
  background: var(--glass-strong);
  border-color: var(--amber);
  transform: translateY(-3px);
}
.donate-option.featured {
  background: linear-gradient(135deg, rgba(241, 161, 58, 0.15), rgba(255, 215, 150, 0.05));
  border-color: var(--amber);
}
.donate-amount {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 500;
  color: var(--amber-warm);
  margin-bottom: 6px;
  letter-spacing: -0.5px;
}
.donate-label {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 400;
  letter-spacing: 0.3px;
}
.donate-option.custom .donate-amount { font-size: 24px; }
.donate-foot {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 300;
  line-height: 1.6;
  max-width: 520px;
  margin: 0 auto;
}

/* ============ DONATE QUOTE ============ */
.donate-quote-section {
  max-width: var(--max-narrow);
  margin: 60px auto;
  padding: 0 28px 80px;
  text-align: center;
}
.donate-quote {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 40px 0;
}
.donate-quote p {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.5vw, 28px);
  font-style: italic;
  font-weight: 400;
  line-height: 1.45;
  color: var(--amber-warm);
  margin-bottom: 14px;
}
.donate-quote-ref {
  font-family: var(--font-display);
  font-size: 13px;
  color: var(--text-muted);
  font-style: normal;
  letter-spacing: 1.5px;
}

@media (max-width: 800px) {
  .form-section { grid-template-columns: 1fr; gap: 28px; }
  .form-row { grid-template-columns: 1fr; }
  .donate-grid { grid-template-columns: 1fr 1fr; }
  .vf-form { padding: 26px 22px; }
}
@media (max-width: 480px) {
  .donate-grid { grid-template-columns: 1fr; }
  .uses-grid { grid-template-columns: 1fr; }
}

/* ============ SHOWCASE: wrap raw screenshots in phone mockups ============ */
.showcase-img {
  position: relative;
  display: flex; justify-content: center;
}
.showcase-img::before {
  content: '';
  position: absolute; inset: -10px;
  background: radial-gradient(circle, var(--amber-glow), transparent 65%);
  filter: blur(40px);
  pointer-events: none;
}
.showcase-phone {
  position: relative;
  width: 270px;
  border-radius: 40px;
  padding: 7px;
  background: linear-gradient(135deg, #5c5d62 0%, #2a2b2f 12%, #4a4b50 25%, #1c1d21 50%, #4a4b50 75%, #2a2b2f 88%, #5c5d62 100%);
  box-shadow: var(--shadow-deep), 0 0 0 1px rgba(255,255,255,0.06);
}
.showcase-phone .phone-screen {
  border-radius: 33px;
  overflow: hidden;
}
.showcase-phone img {
  width: 100%; display: block; border-radius: 0;
  box-shadow: none;
}

/* ============ Social icon styles ============ */
.footer-social { display: flex; gap: 14px; }
.footer-social a {
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: var(--glass);
  border: 1px solid var(--line);
  color: var(--text-secondary);
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.footer-social a:hover {
  background: var(--glass-strong);
  border-color: var(--amber);
  color: var(--amber-warm);
}
.footer-social a svg { width: 17px; height: 17px; }

/* ============ CAROUSEL (auto-rotating showcase) ============ */
.carousel-section {
  max-width: var(--max-content);
  margin: 0 auto;
  padding: 80px 28px 100px;
}
.carousel-stage {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  min-height: 580px;
}
.carousel-text-stack { position: relative; min-height: 320px; }
.carousel-text-slide {
  position: absolute; top: 0; left: 0; right: 0;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s ease, transform 0.55s ease;
  pointer-events: none;
}
.carousel-text-slide.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.carousel-num {
  font-family: var(--font-display);
  font-size: 14px; font-weight: 400;
  color: var(--amber);
  letter-spacing: 4px;
  margin-bottom: 18px;
  font-variant-numeric: oldstyle-nums;
}
.carousel-text-slide h3 {
  font-family: var(--font-display);
  font-size: clamp(34px, 4vw, 50px);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -1px;
  margin-bottom: 22px;
}
.carousel-text-slide h3 em { font-style: italic; color: var(--amber-warm); font-weight: 500; }
.carousel-text-slide p {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.7;
  font-weight: 300;
  max-width: 460px;
}
.carousel-text-slide .pullquote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 19px;
  color: var(--amber-warm);
  line-height: 1.5;
  margin-top: 22px;
  padding-left: 16px;
  border-left: 2px solid var(--amber);
}

.carousel-phone-stage {
  position: relative;
  display: flex; justify-content: center; align-items: center;
  min-height: 580px;
  perspective: 1200px;
}
.carousel-phone-stage::before {
  content: '';
  position: absolute; inset: -20px;
  background: radial-gradient(circle, var(--amber-glow), transparent 60%);
  filter: blur(60px);
  pointer-events: none;
}
.carousel-phone {
  position: absolute;
  width: 290px;
  border-radius: 42px;
  padding: 7px;
  background: linear-gradient(135deg, #5c5d62 0%, #2a2b2f 12%, #4a4b50 25%, #1c1d21 50%, #4a4b50 75%, #2a2b2f 88%, #5c5d62 100%);
  box-shadow: var(--shadow-deep), 0 0 0 1px rgba(255,255,255,0.06);
  opacity: 0;
  transform: translateX(120%) rotate(8deg);
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.carousel-phone.active {
  opacity: 1;
  transform: translateX(0) rotate(0deg);
}
.carousel-phone.exiting {
  opacity: 0;
  transform: translateX(-120%) rotate(-8deg);
}
.carousel-phone .phone-screen {
  border-radius: 35px;
  overflow: hidden;
  background: #000;
}
.carousel-phone img { width: 100%; display: block; }

.carousel-dots {
  display: flex; justify-content: center; gap: 10px;
  margin-top: 50px;
}
.carousel-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--line-strong);
  cursor: pointer;
  transition: background 0.2s, width 0.2s;
  border: 0;
}
.carousel-dot.active { background: var(--amber); width: 24px; border-radius: 4px; }
.carousel-dot:hover { background: var(--amber-warm); }

@media (max-width: 900px) {
  .carousel-stage { grid-template-columns: 1fr; gap: 40px; min-height: auto; }
  .carousel-text-stack { min-height: 220px; }
  .carousel-phone-stage { min-height: 480px; }
  .carousel-phone { width: 230px; }
  .showcase-phone { width: 220px; }
}

/* ============ SUBSCRIBE ============ */
.subscribe-section {
  max-width: var(--max-narrow);
  margin: 60px auto 0;
  padding: 0 28px;
}
.subscribe-card {
  padding: 60px 50px;
  background:
    radial-gradient(ellipse at 0% 0%, rgba(255, 180, 80, 0.10), transparent 50%),
    radial-gradient(ellipse at 100% 100%, var(--navy-glow), transparent 50%),
    var(--glass-strong);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  text-align: center;
}
.subscribe-eyebrow {
  font-family: var(--font-display);
  font-size: 13px; letter-spacing: 4px; text-transform: uppercase;
  color: var(--amber); font-weight: 500;
  margin-bottom: 16px;
}
.subscribe-card h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 500;
  margin-bottom: 14px;
  letter-spacing: -0.5px;
}
.subscribe-card h2 em { color: var(--amber-warm); font-style: italic; }
.subscribe-card p {
  font-size: 16px;
  color: var(--text-secondary);
  font-weight: 300;
  max-width: 480px;
  margin: 0 auto 28px;
}
.subscribe-form {
  display: flex;
  gap: 10px;
  max-width: 460px;
  margin: 0 auto 16px;
}
.subscribe-form input[type="email"] {
  flex: 1;
  padding: 13px 18px;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 15px;
}
.subscribe-form input::placeholder { color: var(--text-faint); }
.subscribe-form input:focus { outline: none; border-color: var(--amber); }
.subscribe-form button { white-space: nowrap; padding: 13px 24px; }
.subscribe-consent {
  font-size: 12px;
  max-width: 460px;
  margin: 0 auto;
  color: var(--text-muted);
  justify-content: center;
}
.subscribe-consent input { width: 14px; height: 14px; }

@media (max-width: 600px) {
  .subscribe-form { flex-direction: column; }
  .subscribe-card { padding: 40px 24px; }
}

/* ============ Donate page extras (checkout area) ============ */
.donate-checkout {
  max-width: 480px;
  margin: 0 auto 24px;
  display: flex; flex-direction: column;
  gap: 12px;
}
.donate-email-input, .donate-custom-input {
  padding: 13px 18px;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 15px;
  text-align: center;
}
.donate-email-input::placeholder, .donate-custom-input::placeholder { color: var(--text-faint); }
.donate-email-input:focus, .donate-custom-input:focus { outline: none; border-color: var(--amber); }
.donate-option.selected {
  background: linear-gradient(135deg, rgba(241, 161, 58, 0.20), rgba(255, 215, 150, 0.08));
  border-color: var(--amber);
}

/* ============ DOWNLOAD PAGE ============ */
.download-platforms {
  max-width: var(--max-content);
  margin: 20px auto 80px;
  padding: 0 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.platform-card {
  padding: 50px 40px;
  background: var(--glass);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  text-align: center;
  transition: background 0.3s, border-color 0.3s, transform 0.3s;
}
.platform-card:hover {
  background: var(--glass-strong);
  border-color: var(--amber);
  transform: translateY(-4px);
}
.platform-icon {
  width: 64px; height: 64px;
  margin: 0 auto 20px;
  display: flex; align-items: center; justify-content: center;
  background: var(--glass-strong);
  border-radius: 18px;
  color: var(--text-primary);
}
.platform-icon svg { width: 36px; height: 36px; }
.platform-eyebrow {
  font-family: var(--font-display);
  font-size: 12px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--amber); font-weight: 500;
  margin-bottom: 12px;
}
.platform-card h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 500;
  margin-bottom: 14px;
  letter-spacing: -0.5px;
}
.platform-card p {
  font-size: 15px;
  color: var(--text-secondary);
  font-weight: 300;
  margin-bottom: 28px;
  max-width: 360px;
  margin-left: auto;
  margin-right: auto;
}
.platform-card .btn-store { margin: 0 auto; }

.download-promise {
  max-width: var(--max-content);
  margin: 0 auto;
  padding: 60px 28px 80px;
}
.promise-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 32px;
  text-align: center;
}
.promise-item h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 8px;
  letter-spacing: -0.3px;
}
.promise-item p {
  font-size: 14px;
  color: var(--text-secondary);
  font-weight: 300;
  line-height: 1.6;
  max-width: 280px;
  margin: 0 auto;
}
.promise-num {
  width: 36px; height: 36px;
  margin: 0 auto 16px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--amber), var(--amber-deep));
  color: #2a1404;
  border-radius: 50%;
  font-weight: 700;
  box-shadow: 0 6px 18px var(--amber-glow);
}

@media (max-width: 700px) {
  .download-platforms { grid-template-columns: 1fr; }
}

/* Contact aside social */
.aside-lede {
  font-size: 14px;
  color: var(--text-secondary);
  font-weight: 300;
  line-height: 1.6;
  margin-bottom: 24px;
}
.aside-social {
  display: flex; flex-direction: column;
  gap: 8px;
  margin-bottom: 30px;
}
.aside-social a {
  display: flex; align-items: center; gap: 14px;
  padding: 12px 16px;
  border-radius: 10px;
  background: var(--glass);
  border: 1px solid var(--line);
  color: var(--text-secondary);
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.aside-social a:hover {
  background: var(--glass-strong);
  border-color: var(--amber);
  color: var(--amber-warm);
}
.aside-social a svg { width: 18px; height: 18px; flex-shrink: 0; }
.aside-social a span { font-size: 14px; font-weight: 500; }

/* ============ LEGAL PAGES (privacy / terms) ============ */
.legal-content {
  max-width: var(--max-narrow);
  margin: 0 auto;
  padding: 40px 28px 80px;
}
.legal-intro {
  background: var(--glass);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 32px;
  margin-bottom: 32px;
}
.legal-intro p { font-size: 15px; color: var(--text-secondary); font-weight: 300; line-height: 1.7; }
.legal-intro p + p { margin-top: 14px; }
.legal-intro strong { color: var(--amber-warm); font-weight: 600; }
.legal-effective {
  font-family: var(--font-display);
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 14px;
  letter-spacing: 0.3px;
}
.legal-effective strong { color: var(--amber); font-weight: 500; }
.legal-section {
  background: var(--glass);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 36px;
  margin-bottom: 18px;
  transition: border-color 0.2s;
}
.legal-section:hover { border-color: var(--line-strong); }
.legal-section h2 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 16px;
  letter-spacing: -0.3px;
}
.legal-section h2::before {
  display: inline-block;
  margin-right: 10px;
  color: var(--amber);
  font-variant-numeric: oldstyle-nums;
}
.legal-section h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  color: var(--amber-warm);
  margin: 20px 0 10px;
  letter-spacing: -0.2px;
}
.legal-section p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 12px;
}
.legal-section p:last-child { margin-bottom: 0; }
.legal-section ul {
  padding-left: 1.5rem;
  margin: 12px 0;
}
.legal-section li {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 8px;
}
.legal-section li::marker { color: var(--amber); }
.legal-section li strong { color: var(--amber-warm); font-weight: 500; }
.legal-section a { color: var(--amber-warm); text-decoration: underline; }
.legal-section a:hover { color: var(--amber); }

@media (max-width: 700px) {
  .legal-section, .legal-intro { padding: 24px 22px; }
  .legal-section h2 { font-size: 21px; }
}

/* ============ BANNER + CTA OVERLAY ============ */
.banner-cta {
  position: relative;
  width: 100%;
  margin: 100px 0;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  min-height: 540px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.banner-cta-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  filter: brightness(1.2) saturate(0.95);
}
.banner-cta-veil {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center, rgba(3, 9, 28, 0.15) 0%, rgba(3, 9, 28, 0.35) 80%),
    linear-gradient(to bottom, var(--navy-deepest) 0%, transparent 8%, transparent 92%, var(--navy-deepest) 100%);
  z-index: 1;
  pointer-events: none;
}
.banner-cta-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--max-narrow);
  padding: 60px 28px;
  display: flex;
  justify-content: center;
}
/* Glassmorphism variant of subscribe card when overlaid on banner */
.subscribe-card-overlay {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.22);
  width: 100%;
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
}
.subscribe-card-overlay .subscribe-form input[type="email"] {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.25);
  color: var(--text-primary);
}
.subscribe-card-overlay .subscribe-form input[type="email"]::placeholder { color: rgba(255, 255, 255, 0.5); }

@media (max-width: 700px) {
  .banner-cta { min-height: 480px; margin: 60px 0; }
  .banner-cta-inner { padding: 40px 20px; }
}

/* Right-aligned overlay (Banner 1 has candle on left, card goes right) */
.banner-cta-right { min-height: 560px; }
.banner-cta-inner-right {
  max-width: var(--max-content);
  justify-content: flex-end;
  padding: 60px 28px;
}

.manifesto-card {
  max-width: 460px;
  width: 100%;
  padding: 50px 44px;
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.20);
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
}
.manifesto-rule {
  width: 50px;
  height: 1px;
  background: var(--amber);
  margin: 0 auto;
  opacity: 0.7;
}
.manifesto-card p {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.4vw, 28px);
  font-weight: 400;
  line-height: 1.45;
  letter-spacing: -0.2px;
  color: var(--text-primary);
  padding: 28px 0;
}
.manifesto-card p em { font-style: italic; color: var(--amber-warm); font-weight: 500; }

@media (max-width: 900px) {
  .banner-cta-inner-right { justify-content: center; padding: 40px 20px; }
  .manifesto-card { padding: 38px 28px; }
  .manifesto-card p { font-size: 20px; }
}

/* ============ COMPARE SECTION (AEO + competitor) ============ */
.compare-section {
  max-width: var(--max-content);
  margin: 0 auto;
  padding: 80px 28px;
}
.compare-header {
  text-align: center;
  margin-bottom: 50px;
}
.compare-header h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 46px);
  font-weight: 500;
  letter-spacing: -0.5px;
  margin-bottom: 14px;
}
.compare-header h2 em { color: var(--amber-warm); font-style: italic; }
.compare-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
}
.compare-card {
  padding: 30px 28px;
  background: var(--glass);
  border: 1px solid var(--line);
  border-left: 2px solid var(--amber);
  border-radius: var(--radius);
  transition: background 0.3s, border-color 0.3s;
}
.compare-card:hover { background: var(--glass-strong); }
.compare-card h3 {
  font-family: var(--font-display);
  font-size: 21px; font-weight: 500;
  margin-bottom: 10px;
  color: var(--amber-warm);
  letter-spacing: -0.2px;
}
.compare-card p {
  font-size: 14px;
  color: var(--text-secondary);
  font-weight: 300;
  line-height: 1.65;
}
