:root {
  /* Paper palette — the warm counterpoint to the dark Winds sites */
  --paper: #f7f3ec;
  --paper-deep: #ede6d9;
  --paper-soft: #fbf8f2;
  --ink: #0f1420;
  --ink-soft: #3a4255;
  --ink-muted: #6e7284;
  --whisper: #8a8578;
  /* Family sky blue — matches WindsMobile & WindsForLife */
  --sky: #5b8ec7;
  --sky-soft: #8fb8e8;
  --sky-glow: rgba(91, 142, 199, 0.12);
  /* Friendly coral — the warmth accent */
  --coral: #e8927c;
  --coral-deep: #d67560;
  --coral-soft: #f4b8a7;
  /* Hair lines */
  --hair: rgba(15, 20, 32, 0.08);
  --hair-bright: rgba(15, 20, 32, 0.14);
}

* { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
html { scroll-behavior: smooth; }

body {
  background: var(--paper);
  color: var(--ink);
  font-family: 'Outfit', system-ui, sans-serif;
  font-weight: 300;
  letter-spacing: 0.005em;
  overflow-x: hidden;
}

::selection { background: var(--coral); color: var(--paper); }

/* ─────────────── Paper texture backdrop ─────────────── */
.paper-bg {
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 70% 50% at 15% 10%, rgba(232,146,124,0.08), transparent 60%),
    radial-gradient(ellipse 60% 60% at 85% 90%, rgba(91,142,199,0.08), transparent 60%),
    var(--paper);
}
.grain {
  position: fixed; inset: 0; z-index: 1; pointer-events: none; opacity: 0.35; mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='0.4'/></svg>");
}

main, header, footer { position: relative; z-index: 2; }

/* ─────────────── Nav ─────────────── */
.nav-shell {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100; padding: 20px 0;
  transition: padding .4s ease, background .4s ease, backdrop-filter .4s ease, border-color .4s ease;
  border-bottom: 1px solid transparent;
}
.nav-shell.scrolled {
  padding: 12px 0;
  background: rgba(247, 243, 236, 0.82);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border-bottom-color: var(--hair);
}
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; color: var(--ink); }
.brand-mark { width: 42px; height: 42px; }
.brand-mark svg { width: 100%; height: 100%; }
.brand-word { font-family: 'Unbounded'; font-weight: 500; font-size: 15px; letter-spacing: .18em; }
.brand-word .dot { color: var(--coral); }

.nav-links { display: flex; align-items: center; gap: 36px; }
.nav-links a {
  color: var(--ink-soft); text-decoration: none; font-size: 13.5px; font-weight: 400;
  letter-spacing: .06em; text-transform: uppercase; position: relative; transition: color .3s ease;
}
.nav-links a:hover { color: var(--ink); }
.nav-links a::after {
  content: ''; position: absolute; left: 0; bottom: -6px; height: 1px; width: 0;
  background: var(--coral); transition: width .4s ease;
}
.nav-links a:hover::after { width: 100%; }

.btn-ghost {
  padding: 10px 22px; border: 1px solid var(--hair-bright); border-radius: 999px;
  color: var(--ink); background: transparent; font-size: 13px; letter-spacing: .08em;
  text-transform: uppercase; text-decoration: none; font-weight: 500;
  transition: all .35s ease; display: inline-flex; align-items: center; gap: 8px;
}
.btn-ghost:hover { border-color: var(--ink); background: var(--ink); color: var(--paper); transform: translateY(-1px); }

.btn-solid {
  padding: 14px 30px; border-radius: 999px; color: var(--paper);
  background: var(--ink);
  font-size: 13px; letter-spacing: .08em; text-transform: uppercase; font-weight: 500;
  text-decoration: none; display: inline-flex; align-items: center; gap: 10px;
  border: none; cursor: pointer; position: relative; overflow: hidden;
  transition: transform .35s cubic-bezier(.2,.8,.2,1), box-shadow .35s ease, background .35s ease;
  box-shadow: 0 10px 30px -10px rgba(15, 20, 32, 0.3);
}
.btn-solid:hover { transform: translateY(-2px); background: var(--coral-deep); box-shadow: 0 16px 40px -10px rgba(214, 117, 96, 0.4); color: var(--paper); }
.btn-solid .arrow { transition: transform .35s ease; }
.btn-solid:hover .arrow { transform: translateX(4px); }

.btn-coral {
  padding: 14px 30px; border-radius: 999px; color: var(--paper);
  background: linear-gradient(135deg, var(--coral) 0%, var(--coral-deep) 100%);
  font-size: 13px; letter-spacing: .08em; text-transform: uppercase; font-weight: 500;
  text-decoration: none; display: inline-flex; align-items: center; gap: 10px;
  border: none; cursor: pointer;
  transition: transform .35s cubic-bezier(.2,.8,.2,1), box-shadow .35s ease;
  box-shadow: 0 10px 30px -10px rgba(214, 117, 96, 0.5);
}
.btn-coral:hover { transform: translateY(-2px); box-shadow: 0 16px 40px -10px rgba(214, 117, 96, 0.6); color: var(--paper); }
.btn-coral .arrow { transition: transform .35s ease; }
.btn-coral:hover .arrow { transform: translateX(4px); }

.menu-btn { display: none; background: transparent; border: 1px solid var(--hair-bright); color: var(--ink); border-radius: 999px; padding: 10px 14px; font-size: 12px; }

/* ─────────────── Hero ─────────────── */
.hero {
  min-height: 100vh; display: flex; align-items: center; position: relative;
  padding: 140px 0 80px;
}

/* Paper plane floating across hero */
.plane {
  position: absolute; top: 25%; left: -10%; z-index: 1; opacity: .85;
  animation: planefly 24s linear infinite;
}
.plane svg { width: 70px; height: 70px; filter: drop-shadow(0 10px 20px rgba(91,142,199,.25)); }
@keyframes planefly {
  0% { transform: translate(0, 0) rotate(-8deg); }
  50% { transform: translate(60vw, -40px) rotate(-4deg); }
  100% { transform: translate(120vw, 20px) rotate(-10deg); }
}
.plane.p2 { top: 70%; animation-duration: 32s; animation-delay: -8s; opacity: .5; }
.plane.p2 svg { width: 50px; height: 50px; }

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11.5px; letter-spacing: .28em; text-transform: uppercase;
  color: var(--coral-deep); font-weight: 500;
  padding: 8px 16px; border: 1px solid rgba(214, 117, 96, .3); border-radius: 999px;
  background: rgba(232, 146, 124, .08);
}
.hero-eyebrow .dot {
  width: 5px; height: 5px; border-radius: 50%; background: var(--coral);
  box-shadow: 0 0 10px var(--coral); animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse { 0%,100%{opacity:.5} 50%{opacity:1} }

.hero-title {
  font-family: 'Unbounded'; font-weight: 300;
  font-size: clamp(44px, 7.5vw, 100px); line-height: .95; letter-spacing: -0.03em;
  margin-top: 28px; color: var(--ink);
}
.hero-title .accent {
  font-weight: 200; font-style: italic;
  background: linear-gradient(135deg, var(--coral) 0%, var(--coral-deep) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  padding-right: 0.1em;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}
.hero-sub {
  font-size: 18px; line-height: 1.65; color: var(--ink-soft);
  max-width: 500px; margin-top: 28px; font-weight: 300;
}
.hero-cta { margin-top: 44px; display: flex; gap: 16px; flex-wrap: wrap; }

.hero-trust {
  margin-top: 36px; display: flex; gap: 28px; flex-wrap: wrap;
  font-size: 13px; color: var(--ink-muted);
}
.hero-trust span { display: inline-flex; align-items: center; gap: 8px; }
.hero-trust .tick {
  display: inline-grid; place-items: center;
  width: 20px; height: 20px; border-radius: 50%; background: var(--ink); color: var(--paper);
  font-size: 10px; font-weight: 700;
}

/* ─────────────── Inbox UI mock ─────────────── */
.inbox-stage { position: relative; height: 640px; display: flex; justify-content: center; align-items: center; }
.inbox-shadow {
  position: absolute; width: 90%; height: 90%;
  background: radial-gradient(ellipse at center, rgba(15,20,32,0.12), transparent 65%);
  filter: blur(40px); z-index: 0;
}
.inbox {
  position: relative; z-index: 2; width: 100%; max-width: 560px; aspect-ratio: 4/5.2;
  background: var(--paper-soft); border-radius: 22px;
  box-shadow:
    0 30px 80px -20px rgba(15, 20, 32, 0.25),
    0 1px 0 rgba(255,255,255,.8) inset,
    0 0 0 1px var(--hair);
  overflow: hidden;
  animation: floatsoft 7s ease-in-out infinite;
  display: grid; grid-template-columns: 150px 1fr; grid-template-rows: 46px 1fr;
}
@keyframes floatsoft { 0%,100%{transform:translateY(0) rotate(-1deg)} 50%{transform:translateY(-10px) rotate(-1deg)} }

.inbox-topbar {
  grid-column: 1 / -1; background: var(--paper); border-bottom: 1px solid var(--hair);
  display: flex; align-items: center; padding: 0 18px; gap: 10px;
}
.tb-dot { width: 10px; height: 10px; border-radius: 50%; }
.tb-dot.r { background: #f5a3a3; }
.tb-dot.y { background: #f5d58d; }
.tb-dot.g { background: #a3d5b5; }
.tb-search {
  margin-left: auto; font-size: 11px; color: var(--ink-muted); padding: 5px 12px;
  background: var(--paper-deep); border-radius: 999px; letter-spacing: .04em;
}

.inbox-side {
  background: var(--paper-deep); padding: 18px 12px;
  border-right: 1px solid var(--hair);
  display: flex; flex-direction: column; gap: 4px;
}
.side-grp { font-size: 9px; text-transform: uppercase; letter-spacing: .2em; color: var(--whisper); padding: 10px 8px 6px; }
.side-item {
  padding: 7px 10px; border-radius: 8px; font-size: 12px; color: var(--ink-soft);
  display: flex; align-items: center; gap: 8px; transition: background .2s ease;
}
.side-item.active { background: var(--ink); color: var(--paper); }
.side-item .num { margin-left: auto; font-size: 10px; opacity: .6; }
.side-icon {
  width: 14px; height: 14px; border-radius: 3px; background: currentColor; opacity: .7; flex-shrink: 0;
}
.side-icon.coral { background: var(--coral); opacity: 1; }
.side-icon.sky { background: var(--sky); opacity: 1; }
.side-compose {
  margin-top: 12px; background: var(--coral); color: var(--paper);
  padding: 10px; text-align: center; border-radius: 10px; font-size: 11px;
  letter-spacing: .1em; text-transform: uppercase; font-weight: 500;
}

.inbox-list { padding: 14px 8px; overflow: hidden; }
.mail-item {
  padding: 12px 14px; border-radius: 12px; margin-bottom: 4px;
  transition: background .3s ease;
  border-left: 3px solid transparent;
}
.mail-item.unread { background: rgba(232,146,124,.07); border-left-color: var(--coral); }
.mail-item.active { background: var(--paper-deep); }
.mail-head {
  display: flex; align-items: center; gap: 8px; margin-bottom: 4px;
}
.mail-avatar {
  width: 24px; height: 24px; border-radius: 50%; flex-shrink: 0;
  display: grid; place-items: center; color: var(--paper); font-size: 10px; font-weight: 600;
  font-family: 'Unbounded';
}
.av-1 { background: linear-gradient(135deg, var(--sky), var(--sky-soft)); }
.av-2 { background: linear-gradient(135deg, var(--coral), var(--coral-deep)); }
.av-3 { background: linear-gradient(135deg, #3a4255, #6e7284); }
.av-4 { background: linear-gradient(135deg, #8fb8e8, #c7d3e0); color: var(--ink); }
.mail-sender { font-size: 12px; font-weight: 500; color: var(--ink); flex: 1; }
.mail-time { font-size: 10px; color: var(--ink-muted); }
.mail-subject { font-size: 12px; color: var(--ink); font-weight: 400; margin-bottom: 2px; }
.mail-preview { font-size: 11px; color: var(--ink-muted); line-height: 1.4; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; overflow: hidden; }
.mail-badge {
  display: inline-block; font-size: 8px; letter-spacing: .15em; text-transform: uppercase;
  background: var(--sky); color: var(--paper); padding: 2px 6px; border-radius: 999px; margin-left: 6px;
  font-weight: 600; vertical-align: middle;
}
.mail-badge.coral { background: var(--coral); }

/* floating stamp */
.stamp {
  position: absolute; top: 24px; right: -30px; z-index: 3;
  width: 110px; height: 110px; transform: rotate(14deg);
  background: var(--paper);
  border: 2px dashed var(--ink);
  border-radius: 8px;
  display: grid; place-items: center; text-align: center;
  box-shadow: 0 20px 40px -10px rgba(15,20,32,0.25);
  animation: stamppulse 4s ease-in-out infinite;
}
@keyframes stamppulse { 0%,100%{transform:rotate(14deg) scale(1)} 50%{transform:rotate(14deg) scale(1.03)} }
.stamp-inner {
  font-family: 'Unbounded'; font-weight: 600;
  font-size: 10px; letter-spacing: .2em; color: var(--ink);
  line-height: 1.4;
}
.stamp-inner .big { font-size: 16px; display: block; color: var(--coral-deep); }

/* ─────────────── Sections ─────────────── */
section.slab { padding: 130px 0; position: relative; }
.section-label {
  font-size: 11px; letter-spacing: .32em; text-transform: uppercase; color: var(--coral-deep);
  display: flex; align-items: center; gap: 14px; margin-bottom: 24px; font-weight: 600;
}
.section-label::before { content: ''; width: 40px; height: 1px; background: var(--coral); opacity: .7; }
.section-label.center { justify-content: center; }
.section-label.center::before { display: none; }
.section-title {
  font-family: 'Unbounded'; font-weight: 300; font-size: clamp(36px, 5.2vw, 72px);
  line-height: 1.03; letter-spacing: -0.028em; color: var(--ink);
}
.section-title em {
  font-weight: 200; font-style: italic;
  background: linear-gradient(135deg, var(--coral) 0%, var(--coral-deep) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.section-title em.sky {
  background: linear-gradient(135deg, var(--sky) 0%, #3a6ba0 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.section-lead { color: var(--ink-soft); font-size: 18px; line-height: 1.7; max-width: 620px; margin-top: 24px; }

/* ─────────────── Three promises row ─────────────── */
.promise {
  background: var(--paper-soft); border: 1px solid var(--hair); border-radius: 24px;
  padding: 40px 32px; height: 100%; position: relative;
  transition: transform .5s cubic-bezier(.2,.8,.2,1), box-shadow .4s ease;
}
.promise:hover { transform: translateY(-6px); box-shadow: 0 20px 50px -20px rgba(15,20,32,.15); }
.promise-mark {
  width: 56px; height: 56px; margin-bottom: 24px;
  display: grid; place-items: center;
  background: var(--paper-deep); border-radius: 16px;
}
.promise-mark svg { width: 28px; height: 28px; }
.promise h3 { font-family: 'Unbounded'; font-weight: 400; font-size: 22px; letter-spacing: -0.015em; color: var(--ink); }
.promise p { color: var(--ink-soft); font-size: 15px; line-height: 1.65; margin-top: 12px; }

/* ─────────────── Feature grid ─────────────── */
.feature-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 20px; }
.fcard {
  background: var(--paper-soft);
  border: 1px solid var(--hair); border-radius: 28px; padding: 40px;
  position: relative; overflow: hidden; min-height: 320px;
  display: flex; flex-direction: column; justify-content: space-between;
  transition: transform .6s cubic-bezier(.2,.8,.2,1), box-shadow .4s ease;
}
.fcard:hover { transform: translateY(-6px); box-shadow: 0 24px 60px -20px rgba(15,20,32,.15); }
.fcard::before {
  content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%;
  background: radial-gradient(circle at var(--mx,50%) var(--my,50%), rgba(232,146,124,.08), transparent 40%);
  opacity: 0; transition: opacity .5s ease; pointer-events: none;
}
.fcard:hover::before { opacity: 1; }
.fcard .tag {
  display: inline-flex; font-size: 10px; letter-spacing: .22em; color: var(--coral-deep);
  text-transform: uppercase; padding: 5px 11px; border: 1px solid rgba(214, 117, 96, .3);
  border-radius: 999px; font-weight: 600; align-self: flex-start;
}
.fcard h3 { font-family: 'Unbounded'; font-weight: 300; font-size: 30px; letter-spacing: -0.02em; margin-top: 24px; line-height: 1.08; color: var(--ink); }
.fcard p { color: var(--ink-soft); font-size: 15px; line-height: 1.65; margin-top: 14px; }
.fcard .viz { margin-top: 28px; height: 110px; border-radius: 16px; position: relative; overflow: hidden; }

.fcard-lg { grid-column: span 8; }
.fcard-sm { grid-column: span 4; }
.fcard-md { grid-column: span 6; }

/* Card visuals */
.viz-seal {
  background: var(--paper-deep); display: grid; place-items: center;
}
.viz-seal .wax {
  width: 80px; height: 80px; border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, var(--coral-soft), var(--coral) 50%, var(--coral-deep) 100%);
  display: grid; place-items: center;
  box-shadow: 0 10px 30px -8px rgba(214,117,96,.4), inset 0 -4px 8px rgba(0,0,0,.15);
  animation: wax 5s ease-in-out infinite;
}
@keyframes wax { 0%,100%{transform:scale(1)} 50%{transform:scale(1.04)} }
.viz-seal .wax::after {
  content: 'W'; font-family: 'Unbounded'; font-weight: 600; font-size: 26px; color: var(--paper);
  text-shadow: 0 2px 4px rgba(0,0,0,.2);
}

.viz-shield {
  background: var(--paper-deep); display: grid; place-items: center; overflow: hidden; position: relative;
}
.viz-shield::before {
  content: ''; position: absolute; width: 200px; height: 200px; border-radius: 50%;
  border: 1px solid rgba(91,142,199,.3);
  animation: ringfade 4s ease-out infinite;
}
@keyframes ringfade {
  0% { transform: scale(.3); opacity: .9; }
  100% { transform: scale(1); opacity: 0; }
}
.viz-shield svg { width: 58px; height: 58px; position: relative; z-index: 2; }

.viz-envelopes {
  background: var(--paper-deep); display: flex; justify-content: center; align-items: center; gap: 12px;
}
.viz-envelopes .env {
  width: 64px; height: 44px; background: var(--paper);
  border: 1px solid var(--hair-bright); border-radius: 4px; position: relative;
  animation: envfloat 4s ease-in-out infinite;
}
.viz-envelopes .env:nth-child(2) { animation-delay: .3s; }
.viz-envelopes .env:nth-child(3) { animation-delay: .6s; }
@keyframes envfloat { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-6px)} }
.viz-envelopes .env::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 50%;
  background: linear-gradient(135deg, var(--sky-soft), var(--sky));
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  opacity: .4;
}

.viz-bars {
  background: var(--paper-deep); display: flex; align-items: flex-end; padding: 16px; gap: 6px;
}
.viz-bars .bar {
  flex: 1; background: linear-gradient(180deg, var(--sky), var(--sky-soft)); border-radius: 4px 4px 0 0;
  animation: barsoft 2.2s ease-in-out infinite;
}
.viz-bars .bar:nth-child(2n) { animation-delay: .3s; background: linear-gradient(180deg, var(--coral), var(--coral-soft)); }
.viz-bars .bar:nth-child(3n) { animation-delay: .6s; }
@keyframes barsoft { 0%,100%{height:25%} 50%{height:90%} }
.viz-bars .bar.h35 { height: 35%; }
.viz-bars .bar.h40 { height: 40%; }
.viz-bars .bar.h45 { height: 45%; }
.viz-bars .bar.h50 { height: 50%; }
.viz-bars .bar.h55 { height: 55%; }
.viz-bars .bar.h60 { height: 60%; }
.viz-bars .bar.h65 { height: 65%; }
.viz-bars .bar.h70 { height: 70%; }
.viz-bars .bar.h75 { height: 75%; }
.viz-bars .bar.h80 { height: 80%; }
.viz-bars .bar.h85 { height: 85%; }

.viz-clock {
  background: var(--paper-deep); display: grid; place-items: center; position: relative;
}
.viz-clock .moon {
  width: 70px; height: 70px; border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, var(--paper-soft), var(--paper-deep));
  border: 1px solid var(--hair);
  position: relative;
  animation: moonsoft 6s ease-in-out infinite;
}
@keyframes moonsoft { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-4px)} }
.viz-clock .crater {
  position: absolute; background: var(--hair); border-radius: 50%;
}
.viz-clock .crater.a { width: 10px; height: 10px; top: 20%; left: 30%; }
.viz-clock .crater.b { width: 6px; height: 6px; top: 55%; left: 55%; }
.viz-clock .crater.c { width: 4px; height: 4px; top: 35%; left: 60%; }

.viz-globe {
  background: var(--paper-deep); display: grid; place-items: center; overflow: hidden;
}
.viz-globe svg { width: 80px; height: 80px; animation: spinsoft 30s linear infinite; }
@keyframes spinsoft { to { transform: rotate(360deg); } }

/* ─────────────── Security (letter in envelope) ─────────────── */
.letter-stage {
  position: relative; aspect-ratio: 4/3; border-radius: 24px;
  background: var(--paper-deep);
  display: grid; place-items: center;
  overflow: hidden;
  border: 1px solid var(--hair);
}
.letter-stage::before {
  content: ''; position: absolute; inset: 0;
  background: repeating-linear-gradient(45deg, transparent, transparent 20px, rgba(15,20,32,.02) 20px, rgba(15,20,32,.02) 22px);
}
.letter {
  width: 72%; aspect-ratio: 1.4/1; background: var(--paper-soft);
  border-radius: 6px; position: relative; z-index: 2;
  box-shadow: 0 30px 60px -20px rgba(15,20,32,.3);
  padding: 22px 26px;
  transform: rotate(-3deg);
  animation: letterfloat 7s ease-in-out infinite;
}
@keyframes letterfloat { 0%,100%{transform:rotate(-3deg) translateY(0)} 50%{transform:rotate(-3deg) translateY(-8px)} }
.letter .line { height: 3px; background: var(--hair); border-radius: 999px; margin-bottom: 8px; }
.letter .line.short { width: 40%; }
.letter .line.med { width: 70%; }
.letter .line.long { width: 88%; }
.letter .sig {
  margin-top: 14px; font-family: 'Unbounded'; font-style: italic; font-weight: 300;
  font-size: 13px; color: var(--coral-deep);
}
.letter-wax {
  position: absolute; bottom: -18px; right: 40px; z-index: 3;
  width: 56px; height: 56px; border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, var(--coral-soft), var(--coral) 50%, var(--coral-deep) 100%);
  display: grid; place-items: center;
  box-shadow: 0 10px 20px -5px rgba(214,117,96,.5), inset 0 -4px 8px rgba(0,0,0,.15);
}
.letter-wax::after { content: 'W'; font-family: 'Unbounded'; font-weight: 600; font-size: 18px; color: var(--paper); }

.sec-list { margin-top: 36px; padding: 0; list-style: none; }
.sec-list li {
  padding: 20px 0; border-top: 1px solid var(--hair);
  display: flex; gap: 18px; align-items: flex-start;
}
.sec-list li:last-child { border-bottom: 1px solid var(--hair); }
.sec-list .num {
  font-family: 'Unbounded'; font-size: 12px; color: var(--coral-deep);
  letter-spacing: .2em; padding-top: 2px; min-width: 28px; font-weight: 600;
}
.sec-list .lt { font-family: 'Unbounded'; font-weight: 400; font-size: 16px; color: var(--ink); }
.sec-list .ld { color: var(--ink-soft); font-size: 14.5px; line-height: 1.6; margin-top: 4px; }

/* ─────────────── Pricing ─────────────── */
.plan {
  background: var(--paper-soft); border: 1px solid var(--hair); border-radius: 28px;
  padding: 44px 36px; height: 100%; position: relative;
  transition: transform .5s cubic-bezier(.2,.8,.2,1), box-shadow .4s ease;
}
.plan:hover { transform: translateY(-6px); box-shadow: 0 24px 60px -20px rgba(15,20,32,.15); }
.plan.featured {
  background: var(--ink); color: var(--paper);
  border-color: var(--ink);
}
.plan-badge {
  position: absolute; top: -14px; left: 36px;
  background: var(--coral); color: var(--paper);
  font-size: 10px; letter-spacing: .2em; text-transform: uppercase; font-weight: 600;
  padding: 6px 14px; border-radius: 999px;
}
.plan h3 { font-family: 'Unbounded'; font-weight: 400; font-size: 24px; letter-spacing: -0.015em; }
.plan .price {
  font-family: 'Unbounded'; font-weight: 200;
  font-size: 56px; letter-spacing: -0.03em; margin-top: 16px; line-height: 1;
}
.plan .price .unit { font-size: 14px; color: inherit; opacity: .6; margin-left: 4px; font-weight: 400; letter-spacing: 0; }
.plan .sub { font-size: 14px; opacity: .7; margin-top: 10px; }
.plan ul { list-style: none; padding: 0; margin: 28px 0 36px; }
.plan ul li {
  padding: 11px 0; border-top: 1px solid;
  border-color: var(--hair);
  font-size: 14.5px; display: flex; align-items: center; gap: 10px;
}
.plan.featured ul li { border-color: rgba(247,243,236,.12); }
.plan ul li:last-child { border-bottom: 1px solid; border-color: inherit; }
.plan.featured ul li:last-child { border-color: rgba(247,243,236,.12); }
.plan .check {
  display: inline-grid; place-items: center;
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--coral); color: var(--paper); font-size: 10px; font-weight: 700; flex-shrink: 0;
}
.plan.featured .check { background: var(--coral); }

.plan .btn-solid { width: 100%; justify-content: center; }
.plan.featured .btn-solid { background: var(--coral); color: var(--paper); }
.plan.featured .btn-solid:hover { background: var(--paper); color: var(--ink); }

/* ─────────────── Family ecosystem (link to sibling sites) ─────────────── */
.family {
  padding: 120px 0; position: relative;
}
.family-card {
  background: linear-gradient(160deg, var(--ink) 0%, #050810 100%);
  color: var(--paper);
  border-radius: 36px; padding: 80px 60px; position: relative; overflow: hidden;
}
.family-card::before {
  content: ''; position: absolute; top: -200px; right: -200px; width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(91,142,199,.25), transparent 60%);
  pointer-events: none;
}
.family-card::after {
  content: ''; position: absolute; bottom: -150px; left: -150px; width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(232,146,124,.15), transparent 60%);
  pointer-events: none;
}
.family-card .section-label { color: var(--sky-soft); }
.family-card .section-label::before { background: var(--sky-soft); }
.family-card .section-title { color: var(--paper); }
.family-card .section-lead { color: rgba(247,243,236,.7); }

.sibling-grid { margin-top: 48px; display: grid; grid-template-columns: 1fr 1fr; gap: 20px; position: relative; z-index: 2; }
.sibling {
  background: rgba(247,243,236,0.04);
  border: 1px solid rgba(247,243,236,0.08);
  border-radius: 22px; padding: 32px; text-decoration: none; color: var(--paper);
  display: flex; flex-direction: column; gap: 14px; position: relative; overflow: hidden;
  transition: transform .5s cubic-bezier(.2,.8,.2,1), background .4s ease, border-color .4s ease;
}
.sibling:hover {
  transform: translateY(-4px); background: rgba(247,243,236,0.06); border-color: rgba(143,184,232,.3); color: var(--paper);
}
.sibling-tag { font-size: 10px; letter-spacing: .25em; text-transform: uppercase; color: var(--sky-soft); font-weight: 600; }
.sibling-title { font-family: 'Unbounded'; font-weight: 400; font-size: 26px; letter-spacing: -0.02em; }
.sibling-desc { color: rgba(247,243,236,.65); font-size: 14.5px; line-height: 1.55; flex: 1; }
.sibling-go {
  display: inline-flex; align-items: center; gap: 8px; font-size: 12px;
  letter-spacing: .1em; text-transform: uppercase; color: var(--sky-soft); font-weight: 500;
  margin-top: 4px;
}
.sibling-go .arrow { transition: transform .35s ease; }
.sibling:hover .sibling-go .arrow { transform: translateX(4px); }

/* ─────────────── Footer ─────────────── */
footer {
  padding: 100px 0 40px; border-top: 1px solid var(--hair);
  background: var(--paper-deep);
}
footer h5 { font-family: 'Unbounded'; font-weight: 500; font-size: 12px; letter-spacing: .25em; text-transform: uppercase; color: var(--whisper); margin-bottom: 22px; }
footer a { color: var(--ink-soft); text-decoration: none; display: block; padding: 6px 0; font-size: 14px; transition: color .3s ease; }
footer a:hover { color: var(--coral-deep); }
.foot-legal { color: var(--ink-muted); font-size: 12px; letter-spacing: .06em; padding-top: 40px; margin-top: 60px; border-top: 1px solid var(--hair); }
.footer-desc { color: var(--ink-soft); max-width: 320px; margin-top: 16px; font-size: 14px; line-height: 1.6; }

/* ─────────────── Reveal ─────────────── */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .9s ease, transform .9s cubic-bezier(.2,.8,.2,1); }
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal.delay-1 { transition-delay: .1s; }
.reveal.delay-2 { transition-delay: .2s; }
.reveal.delay-3 { transition-delay: .3s; }
.reveal.delay-4 { transition-delay: .4s; }

@media (max-width: 991px) {
  .nav-links { display: none; }
  .menu-btn { display: inline-flex; }
  .inbox-stage { height: 520px; margin-top: 60px; }
  .inbox { max-width: 440px; grid-template-columns: 120px 1fr; }
  .stamp { width: 86px; height: 86px; right: -16px; }
  .stamp-inner .big { font-size: 13px; }
  section.slab { padding: 90px 0; }
  .family-card { padding: 50px 30px; }
  .sibling-grid { grid-template-columns: 1fr; }
  .fcard-lg, .fcard-sm, .fcard-md { grid-column: span 12; }
  .plane svg { width: 50px; height: 50px; }
}
@media (max-width: 575px) {
  .inbox { grid-template-columns: 0 1fr; }
  .inbox-side { display: none; }
  .inbox { grid-template-columns: 1fr; }
}
