:root {
  --bg: #16345c;
  --bg-2: #1c3f6e;
  --card: rgba(255,255,255,0.08);
  --card-border: rgba(255,255,255,0.18);
  --text: #ffffff;
  --muted: #c3d4ec;
  --muted-2: #9db3d6;
  --accent: #6ea8fe;
  --white: #ffffff;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
.serif { font-family: "Playfair Display", Georgia, serif; }
.wrap { max-width: 1120px; margin: 0 auto; padding: 0 24px; }
a { color: inherit; }
img { max-width: 100%; }

@keyframes revealIn {
  from { opacity: 0; filter: blur(14px); transform: translateY(10px); }
  to   { opacity: 1; filter: blur(0);    transform: translateY(0); }
}
.reveal { opacity: 0; animation: revealIn 1.1s cubic-bezier(.2,.7,.2,1) forwards; }
.r1 { animation-delay: .05s; }
.r2 { animation-delay: .2s; }
.r3 { animation-delay: .35s; }
.r4 { animation-delay: .5s; }

/* Header */
header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 24px;
  max-width: 1120px;
  margin: 0 auto;
  position: relative;
  z-index: 5;
}
.logo {
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: -0.01em;
  display: flex;
  align-items: center;
  gap: 4px;
  text-decoration: none;
  color: var(--text);
}
.logo .mark { width: 66px; height: 66px; display: block; margin-right: -4px; }
.header-inner { display: flex; align-items: center; gap: 36px; flex: 1; }
.header-divider { width: 1px; height: 22px; background: var(--card-border); }
nav { display: flex; align-items: center; }
nav a {
  text-decoration: none;
  color: var(--muted);
  margin-right: 26px;
  font-size: 0.92rem;
  transition: color .15s ease;
}
nav a:hover { color: var(--text); }
.nav-cta {
  display: inline-block;
  background: var(--white);
  color: var(--bg);
  text-decoration: none;
  padding: 10px 22px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  white-space: nowrap;
  transition: transform .15s ease, opacity .15s ease;
}
.nav-cta:hover { transform: translateY(-1px); opacity: .92; }

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--card-border);
  border-radius: 8px;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text);
  margin-right: 12px;
  padding: 0;
  flex-shrink: 0;
}
.nav-toggle svg { width: 20px; height: 20px; stroke: currentColor; stroke-width: 1.8; fill: none; }
.nav-toggle .icon-close { display: none; }
.nav-toggle.open .icon-menu { display: none; }
.nav-toggle.open .icon-close { display: block; }

.mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--bg-2);
  border-bottom: 1px solid var(--card-border);
  padding: 8px 24px 20px;
  flex-direction: column;
  z-index: 20;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  color: var(--muted);
  text-decoration: none;
  padding: 14px 2px;
  font-size: 1.02rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.mobile-menu a:last-child { border-bottom: none; }

/* Hero with light-beam background */
.hero {
  position: relative;
  overflow: hidden;
  padding: 110px 24px 100px;
  text-align: center;
  background: var(--bg);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      100deg,
      rgba(255,255,255,0.06) 0px,
      rgba(255,255,255,0.06) 1px,
      transparent 1px,
      transparent 140px
    ),
    radial-gradient(ellipse 900px 500px at 50% -10%, rgba(120,165,240,0.40), transparent 70%),
    linear-gradient(180deg, #244a7d 0%, #1c3f6e 60%, var(--bg) 100%);
  z-index: 0;
}
.hero::after {
  content: "";
  position: absolute;
  top: -20%; left: 30%;
  width: 60%; height: 140%;
  background: linear-gradient(75deg, transparent 40%, rgba(110,168,254,0.14) 48%, transparent 56%);
  z-index: 0;
}
.hero-inner { position: relative; z-index: 2; max-width: 780px; margin: 0 auto; }

.hero-label {
  font-size: 1rem;
  font-weight: 500;
  color: var(--muted);
  margin-bottom: 20px;
}

h1 {
  font-size: 3.1rem;
  line-height: 1.12;
  margin: 0 0 22px;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.hero p.sub {
  font-size: 1.15rem;
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto 36px;
}
.cta-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.cta, .cta-ghost {
  display: inline-block;
  text-decoration: none;
  padding: 14px 26px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.97rem;
  transition: transform .15s ease, opacity .15s ease;
}
.cta { background: var(--white); color: var(--bg); }
.cta:hover { transform: translateY(-1px); opacity: .92; }
.cta-ghost { border: 1px solid var(--card-border); color: var(--text); }
.cta-ghost:hover { border-color: rgba(255,255,255,0.25); }
.cta-note { font-size: 0.85rem; color: var(--muted-2); margin-top: 18px; }

/* Sections */
section { padding: 90px 24px; position: relative; }
.section-head { max-width: 620px; margin: 0 auto 48px; text-align: center; }
h2 {
  font-size: 2.1rem;
  margin: 0 0 12px;
  letter-spacing: -0.01em;
  font-weight: 600;
}
.section-lead { color: var(--muted); font-size: 1.05rem; margin: 0; }

/* Cards */
.cards {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.cards.cards-2 {
  max-width: 820px;
  grid-template-columns: repeat(2, 1fr);
}
.card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  padding: 30px 26px;
}
.card .num-tag {
  display: inline-block;
  font-size: 0.78rem;
  color: var(--accent);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.card h3 { margin: 0 0 10px; font-size: 1.2rem; font-weight: 500; }
.card p { margin: 0; color: var(--muted); font-size: 0.95rem; }

.icon-badge {
  width: 46px;
  height: 46px;
  border-radius: 11px;
  background: rgba(255,255,255,0.10);
  border: 1px solid var(--card-border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.icon-badge svg { width: 22px; height: 22px; stroke: var(--accent); stroke-width: 1.7; fill: none; }

.process-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 0 0 40px;
  color: var(--muted-2);
  font-size: 0.92rem;
  font-weight: 500;
}
.process-flow span.step { color: var(--text); }
.process-flow svg { width: 16px; height: 16px; stroke: var(--muted-2); stroke-width: 1.8; fill: none; }

/* Value / quote */
.value-wrap { max-width: 1120px; margin: 0 auto; }
.value-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 44px;
  align-items: center;
}
.value-grid p { color: var(--muted); font-size: 1.02rem; }
blockquote {
  background: var(--card);
  border: 1px solid var(--card-border);
  margin: 0;
  padding: 32px;
  border-radius: 14px;
  font-size: 1.15rem;
  line-height: 1.5;
}
blockquote::before { content: "\201C"; color: var(--accent); font-size: 2rem; font-family: "Playfair Display", serif; }

/* Benefit grid (How We Add Value) */
.benefit-grid {
  max-width: 1120px;
  margin: 56px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.benefit-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  padding: 28px 24px;
}
.benefit-card h3 { margin: 0 0 8px; font-size: 1.1rem; font-weight: 500; }
.benefit-card p { margin: 0; color: var(--muted); font-size: 0.93rem; }

/* Stats */
#why-now {
  position: relative;
  overflow: hidden;
}
#why-now::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 700px 400px at 15% 10%, rgba(110,168,254,0.16), transparent 65%),
              radial-gradient(ellipse 700px 400px at 85% 90%, rgba(110,168,254,0.10), transparent 65%);
  z-index: 0;
}
#why-now > * { position: relative; z-index: 1; }
.why-now-panel {
  max-width: 1120px;
  margin: 0 auto;
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 20px;
  padding: 48px;
}
.stat .icon-badge { margin: 0 auto 14px; }
.stat { text-align: center; background: rgba(255,255,255,0.04); }
.trend-tag {
  display: inline-block;
  margin-top: 10px;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--accent);
  background: rgba(110,168,254,0.14);
  border-radius: 999px;
  padding: 3px 10px;
}
.stats {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.stat {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  padding: 26px 22px;
}
.stat .num { font-size: 2.1rem; font-weight: 500; }
.stat p { margin: 8px 0 0; color: var(--muted); font-size: 0.87rem; }
.stats-source { text-align: center; color: var(--muted-2); font-size: 0.82rem; margin: 24px auto 0; max-width: 1120px; }

/* FAQ */
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  padding: 6px 24px;
}
.faq-item summary {
  cursor: pointer;
  padding: 18px 0;
  font-weight: 500;
  font-size: 1.02rem;
  list-style: none;
  position: relative;
  padding-right: 30px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 16px;
  font-size: 1.3rem;
  color: var(--accent);
}
.faq-item[open] summary::after { content: "\2212"; }
.faq-item p { color: var(--muted); margin: 0 0 20px; font-size: 0.97rem; }

/* Final CTA */
.final-cta { text-align: center; }
.final-cta .card {
  max-width: 640px;
  margin: 0 auto;
  padding: 56px 40px;
}
.final-cta h2 { margin-bottom: 14px; }
.final-cta p { color: var(--muted); max-width: 460px; margin: 0 auto 30px; }

footer {
  padding: 56px 24px 28px;
  color: var(--muted-2);
  font-size: 0.88rem;
  border-top: 1px solid var(--card-border);
}
.footer-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 32px;
}
.footer-brand .logo { margin-bottom: 12px; }
.footer-brand .logo .mark { width: 40px; height: 40px; margin-right: 2px; }
.footer-brand p { color: var(--muted-2); font-size: 0.88rem; max-width: 280px; margin: 0; }
.footer-col h4 {
  margin: 0 0 14px;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}
.footer-col a, .footer-col span {
  display: block;
  color: var(--muted-2);
  text-decoration: none;
  margin-bottom: 10px;
  font-size: 0.88rem;
}
.footer-col a:hover { color: var(--text); }
.footer-bottom {
  max-width: 1120px;
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid var(--card-border);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.82rem;
}
.footer-bottom a { color: var(--muted-2); text-decoration: none; }
.footer-bottom a:hover { color: var(--text); }

/* Founders */
.founder-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 520px;
}
.founder-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 14px;
  padding: 26px 22px;
  text-align: center;
}
.founder-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(110,168,254,0.16);
  border: 1px solid var(--card-border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-family: "Playfair Display", serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--accent);
}
.founder-card h3 { margin: 0 0 4px; font-size: 1.05rem; font-weight: 600; }
.founder-card .founder-role { color: var(--muted-2); font-size: 0.85rem; margin: 0 0 16px; }
.founder-linkedin {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  border: 1px solid var(--card-border);
  color: var(--muted);
  transition: color .15s ease, border-color .15s ease;
}
.founder-linkedin:hover { color: var(--text); border-color: rgba(255,255,255,0.3); }
.founder-linkedin svg { width: 16px; height: 16px; }

/* Privacy / policy content */
.policy-wrap { max-width: 760px; margin: 0 auto; }
.policy-wrap h2 { font-size: 1.4rem; margin: 40px 0 14px; }
.policy-wrap h2:first-child { margin-top: 0; }
.policy-wrap p, .policy-wrap li { color: var(--muted); font-size: 0.98rem; margin: 0 0 14px; }
.policy-wrap ul { padding-left: 20px; margin: 0 0 14px; }
.policy-wrap a { color: var(--accent); }
.policy-updated { color: var(--muted-2); font-size: 0.85rem; margin-bottom: 40px; }

/* Lightweight tag row (About page principles) */
.tag-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  max-width: 760px;
  margin: 0 auto;
}
.tag-row span {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 999px;
  padding: 10px 20px;
  font-size: 0.92rem;
  color: var(--muted);
}

/* Get Started page */
.page-hero {
  padding: 90px 24px 50px;
  text-align: center;
}
.page-hero h1 { font-size: 2.6rem; }
.form-wrap {
  max-width: 640px;
  margin: 0 auto;
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: 40px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 18px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: 0.88rem; color: var(--muted); }
.field input, .field textarea {
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--card-border);
  border-radius: 8px;
  padding: 12px 14px;
  color: var(--text);
  font-family: inherit;
  font-size: 0.95rem;
}
.field input::placeholder, .field textarea::placeholder { color: var(--muted-2); }
.field input:focus, .field textarea:focus { outline: 2px solid var(--accent); outline-offset: 1px; }
.field textarea { resize: vertical; min-height: 120px; }
.submit-btn {
  width: 100%;
  border: none;
  cursor: pointer;
  margin-top: 8px;
}
.form-note { text-align: center; font-size: 0.82rem; color: var(--muted-2); margin-top: 18px; }
.contact-strip {
  max-width: 640px;
  margin: 0 auto 40px;
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 0.92rem;
}

@media (max-width: 800px) {
  h1 { font-size: 2.2rem; }
  .cards { grid-template-columns: 1fr; }
  .cards.cards-2 { grid-template-columns: 1fr; }
  .value-grid { grid-template-columns: 1fr; }
  .benefit-grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  nav a { margin-right: 16px; font-size: 0.85rem; }
  section { padding: 64px 20px; }
  .form-row { grid-template-columns: 1fr; }
  .form-wrap { padding: 28px 22px; }
  .why-now-panel { padding: 28px 20px; }
  .stat .num { font-size: 1.7rem; white-space: nowrap; }
}
@media (max-width: 680px) {
  nav { display: none; }
  .header-divider { display: none; }
  .nav-toggle { display: inline-flex; }
}
@media (max-width: 540px) {
  .stats { grid-template-columns: 1fr; }
  .founder-grid { grid-template-columns: 1fr; max-width: 280px; margin-left: auto; margin-right: auto; }
}
@media (max-width: 680px) {
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}
