:root {
  --paper: #faf4ea;
  --paper-2: #f2eadc;
  --ink: #17211f;
  --muted: #66716d;
  --soft: #8c9791;
  --line: rgba(32, 42, 38, .12);
  --card: rgba(255, 251, 244, .84);
  --card-strong: #fffaf1;
  --app: #2563eb;
  --app-2: #06b6d4;
  --shadow: 0 28px 70px rgba(53, 45, 34, .14);
  --radius: 28px;
  --radius-sm: 18px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  font-family: 'Manrope', sans-serif;
  background:
    radial-gradient(circle at 8% 0%, color-mix(in srgb, var(--app) 20%, transparent), transparent 28%),
    radial-gradient(circle at 86% 8%, color-mix(in srgb, var(--app-2) 18%, transparent), transparent 27%),
    linear-gradient(180deg, #fff9ef 0%, var(--paper) 44%, var(--paper-2) 100%);
  overflow-x: hidden;
}
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(rgba(23, 33, 31, .08) 1px, transparent 1px);
  background-size: 22px 22px;
  mask-image: linear-gradient(180deg, black, transparent 75%);
  -webkit-mask-image: linear-gradient(180deg, black, transparent 75%);
  opacity: .55;
}
a { color: inherit; text-decoration: none; }
.shell { width: min(100%, 1180px); margin: 0 auto; padding: 0 24px; }
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: none; }
.nav {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(250, 244, 234, .82);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px) saturate(1.2);
  -webkit-backdrop-filter: blur(18px) saturate(1.2);
}
.nav-inner { min-height: 72px; display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.brand { display: inline-flex; align-items: center; gap: 12px; font-weight: 800; letter-spacing: -.04em; }
.brand img { width: 42px; height: 42px; border-radius: 14px; object-fit: cover; box-shadow: 0 12px 26px color-mix(in srgb, var(--app) 26%, transparent); }
.brand span { font-family: 'Bricolage Grotesque', sans-serif; font-size: 18px; }
.nav-links { display: flex; align-items: center; gap: 7px; flex-wrap: wrap; justify-content: flex-end; }
.nav-links a { color: var(--muted); font-size: 13px; font-weight: 800; padding: 9px 13px; border-radius: 999px; }
.nav-links a:hover { color: var(--ink); background: rgba(23, 33, 31, .07); }
.nav-links .nav-cta { color: #fff; background: linear-gradient(135deg, var(--app), var(--app-2)); box-shadow: 0 14px 30px color-mix(in srgb, var(--app) 25%, transparent); }
.btn { display: inline-flex; align-items: center; justify-content: center; min-height: 52px; padding: 0 22px; border-radius: 999px; font-weight: 900; border: 1px solid transparent; transition: transform .18s ease, box-shadow .18s ease, background .18s ease; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { color: white; background: linear-gradient(135deg, var(--app), var(--app-2)); box-shadow: 0 18px 42px color-mix(in srgb, var(--app) 28%, transparent); }
.btn-ghost { color: var(--ink); background: rgba(255, 255, 255, .54); border-color: var(--line); }
.hero { padding: 94px 0 54px; position: relative; }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px; align-items: center; }
.kicker { display: inline-flex; align-items: center; gap: 9px; color: var(--app); font-size: 12px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 22px; }
.kicker::before { content: ''; width: 9px; height: 9px; border-radius: 99px; background: var(--app); box-shadow: 0 0 0 7px color-mix(in srgb, var(--app) 13%, transparent); }
.hero-title, .section-title, .legal-title { font-family: 'Bricolage Grotesque', sans-serif; letter-spacing: -.065em; line-height: .92; margin: 0; }
.hero-title { max-width: 820px; font-size: clamp(3.2rem, 7.4vw, 6.8rem); }
.hero-title .accent, .section-title .accent { color: var(--app); }
.hero-copy { max-width: 680px; color: var(--muted); font-size: clamp(1.02rem, 2vw, 1.2rem); line-height: 1.76; margin: 28px 0 32px; }
.action-row { display: flex; gap: 12px; flex-wrap: wrap; }
.home-stage { min-height: 540px; position: relative; display: grid; place-items: center; }
.orbit-card { position: absolute; width: 210px; padding: 16px; border-radius: 24px; background: rgba(255,255,255,.68); border: 1px solid rgba(255,255,255,.72); box-shadow: var(--shadow); transform: rotate(var(--r)); }
.orbit-card:nth-child(1) { top: 12px; left: 18px; --r: -7deg; }
.orbit-card:nth-child(2) { top: 70px; right: 0; --r: 8deg; }
.orbit-card:nth-child(3) { bottom: 74px; left: 8px; --r: 5deg; }
.orbit-card:nth-child(4) { bottom: 24px; right: 28px; --r: -8deg; }
.orbit-card img { width: 46px; height: 46px; border-radius: 14px; object-fit: cover; display: block; margin-bottom: 12px; }
.orbit-card strong { display: block; font-family: 'Bricolage Grotesque', sans-serif; letter-spacing: -.03em; font-size: 18px; }
.orbit-card span { color: var(--muted); font-size: 12px; font-weight: 800; }
.center-mark { width: 230px; height: 230px; border-radius: 46px; display: grid; place-items: center; background: linear-gradient(145deg, #17211f, #31413c); box-shadow: 0 34px 90px rgba(23,33,31,.28); color: #fff; position: relative; overflow: hidden; }
.center-mark::before { content: ''; position: absolute; inset: -35%; background: conic-gradient(from 90deg, var(--app), var(--app-2), #f59e0b, var(--app)); opacity: .45; animation: spin 16s linear infinite; }
.center-mark img { position: relative; width: 98px; height: 98px; border-radius: 26px; object-fit: cover; }
@keyframes spin { to { transform: rotate(360deg); } }
.section { padding: 86px 0; }
.section-head { max-width: 760px; margin-bottom: 36px; }
.section-title { font-size: clamp(2.25rem, 5.2vw, 4.8rem); }
.section-copy { color: var(--muted); font-size: 17px; line-height: 1.76; margin: 18px 0 0; }
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.product-card { min-height: 370px; padding: 24px; border-radius: 30px; background: var(--card); border: 1px solid rgba(255,255,255,.72); box-shadow: 0 18px 52px rgba(53,45,34,.1); position: relative; overflow: hidden; display: flex; flex-direction: column; transition: transform .22s ease, box-shadow .22s ease; }
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.product-card::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 20% 0%, color-mix(in srgb, var(--app) 16%, transparent), transparent 42%); pointer-events: none; }
.product-card > * { position: relative; }
.product-top { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 26px; }
.product-top img { width: 62px; height: 62px; border-radius: 18px; object-fit: cover; box-shadow: 0 14px 32px color-mix(in srgb, var(--app) 24%, transparent); }
.badge { display: inline-flex; padding: 7px 11px; border-radius: 999px; color: var(--app); background: color-mix(in srgb, var(--app) 11%, white); font-size: 11px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.product-card h3 { font-family: 'Bricolage Grotesque', sans-serif; font-size: 30px; line-height: .98; letter-spacing: -.05em; margin: 0 0 12px; }
.product-card p { color: var(--muted); line-height: 1.68; margin: 0; }
.product-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: auto; padding-top: 24px; }
.product-tags span { font-size: 12px; font-weight: 800; color: color-mix(in srgb, var(--app) 75%, #17211f); background: rgba(255,255,255,.58); border: 1px solid var(--line); border-radius: 999px; padding: 7px 10px; }
.product-link { margin-top: 18px; font-weight: 900; color: var(--app); }
.principles-grid, .feature-grid, .stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.stat-grid-four { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 28px; }
.tile, .stat-tile, .feature, .coverage-item, .legal-card, .policy-section { border-radius: 26px; background: rgba(255,255,255,.62); border: 1px solid rgba(255,255,255,.76); box-shadow: 0 18px 50px rgba(53,45,34,.09); }
.tile, .feature, .coverage-item, .policy-section { padding: 24px; }
.tile strong, .feature h3, .coverage-item strong, .policy-section h2 { font-family: 'Bricolage Grotesque', sans-serif; letter-spacing: -.04em; font-size: 23px; display: block; margin-bottom: 9px; }
.tile p, .feature p, .coverage-item p, .policy-section p, .policy-section li { color: var(--muted); line-height: 1.7; margin: 0; }
.stat-tile { padding: 22px; }
.stat-tile strong { display: block; font-family: 'Bricolage Grotesque', sans-serif; color: var(--app); letter-spacing: -.06em; line-height: .95; font-size: clamp(2rem, 4vw, 3.2rem); margin-bottom: 8px; }
.stat-tile span { color: var(--muted); font-weight: 800; line-height: 1.45; font-size: 13px; }
.app-hero { padding: 82px 0 48px; }
.app-stage { min-height: 520px; display: grid; place-items: center; }
.phone { width: min(100%, 350px); border-radius: 44px; padding: 18px; background: #17211f; box-shadow: 0 34px 86px rgba(23,33,31,.28); transform: rotate(2deg); }
.phone-screen { min-height: 550px; border-radius: 32px; padding: 22px; background: linear-gradient(180deg, #fffaf1, #f3eadb); position: relative; overflow: hidden; }
.phone-screen::before { content: ''; position: absolute; width: 220px; height: 220px; top: -90px; right: -80px; border-radius: 50%; background: color-mix(in srgb, var(--app) 22%, transparent); }
.phone-head, .phone-card, .phone-chip-row { position: relative; }
.phone-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 22px; }
.phone-head img { width: 54px; height: 54px; border-radius: 16px; object-fit: cover; }
.phone-pill { color: var(--app); background: color-mix(in srgb, var(--app) 12%, white); border-radius: 999px; padding: 7px 10px; font-size: 11px; font-weight: 900; }
.phone-title { position: relative; font-family: 'Bricolage Grotesque', sans-serif; font-size: 30px; letter-spacing: -.05em; line-height: 1; margin-bottom: 18px; }
.readiness { position: relative; padding: 18px; border-radius: 22px; background: linear-gradient(135deg, var(--app), var(--app-2)); color: white; margin-bottom: 14px; }
.readiness-line { display: flex; justify-content: space-between; font-weight: 900; margin-bottom: 12px; }
.bar { height: 8px; border-radius: 99px; overflow: hidden; background: rgba(255,255,255,.26); }
.bar span { display: block; width: 72%; height: 100%; border-radius: inherit; background: #fff; }
.phone-grid { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.phone-card { min-height: 92px; border-radius: 20px; background: rgba(255,255,255,.72); border: 1px solid rgba(23,33,31,.08); padding: 14px; display: flex; flex-direction: column; justify-content: center; }
.phone-card strong { font-size: 14px; line-height: 1.18; }
.phone-card span { color: var(--muted); font-size: 11px; font-weight: 800; margin-top: 6px; }
.app-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: center; }
.coverage-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.coverage-item { display: grid; grid-template-columns: 54px 1fr; gap: 14px; align-items: start; }
.coverage-code { width: 54px; height: 54px; border-radius: 18px; display: grid; place-items: center; color: #fff; background: linear-gradient(135deg, var(--app), var(--app-2)); font-weight: 900; }
.legal-card { padding: 34px; background: linear-gradient(135deg, #17211f, color-mix(in srgb, var(--app) 72%, #17211f)); color: white; display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 24px; }
.legal-card p { color: rgba(255,255,255,.76); line-height: 1.7; margin: 8px 0 0; }
.legal-card h2 { font-family: 'Bricolage Grotesque', sans-serif; font-size: clamp(2rem, 4vw, 3.3rem); letter-spacing: -.06em; line-height: .98; margin: 0; }
.legal-card .btn { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.22); color: white; box-shadow: none; }
.legal-page .hero { padding-bottom: 36px; }
.legal-title { font-size: clamp(2.7rem, 6.2vw, 5.4rem); max-width: 820px; }
.policy-layout { display: grid; grid-template-columns: 260px 1fr; gap: 28px; align-items: start; }
.policy-aside { position: sticky; top: 98px; padding: 22px; border-radius: 26px; background: rgba(255,255,255,.62); border: 1px solid rgba(255,255,255,.72); }
.policy-aside img { width: 68px; height: 68px; border-radius: 20px; object-fit: cover; margin-bottom: 16px; }
.policy-aside strong { display: block; font-family: 'Bricolage Grotesque', sans-serif; font-size: 24px; letter-spacing: -.05em; line-height: 1; }
.policy-aside span { display: block; color: var(--muted); font-size: 13px; font-weight: 800; margin-top: 8px; }
.policy-stack { display: grid; gap: 14px; }
.policy-section ul { margin: 10px 0 0 20px; padding: 0; }
.policy-section li + li { margin-top: 8px; }
.policy-link { display: inline-flex; margin-top: 12px; padding: 12px 15px; border-radius: 16px; background: color-mix(in srgb, var(--app) 10%, white); color: var(--app); font-weight: 900; word-break: break-word; }
.footer { padding: 48px 0 60px; border-top: 1px solid var(--line); margin-top: 70px; }
.footer-inner { display: flex; align-items: flex-start; justify-content: space-between; gap: 28px; flex-wrap: wrap; }
.footer-brand { max-width: 340px; color: var(--muted); line-height: 1.7; }
.footer-brand strong { display: block; color: var(--ink); font-family: 'Bricolage Grotesque', sans-serif; font-size: 24px; letter-spacing: -.05em; margin-bottom: 6px; }
.footer-links { display: flex; flex-wrap: wrap; gap: 12px 18px; justify-content: flex-end; }
.footer-links a { color: var(--muted); font-weight: 800; font-size: 14px; }
.footer-links a:hover { color: var(--app); }
@media (max-width: 980px) {
  .hero-grid, .app-layout, .policy-layout, .legal-card { grid-template-columns: 1fr; }
  .home-stage { min-height: 420px; }
  .product-grid, .principles-grid, .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-grid-four { grid-template-columns: repeat(2, 1fr); }
  .policy-aside { position: static; }
}
@media (max-width: 680px) {
  .shell { padding: 0 18px; }
  .nav-inner { align-items: flex-start; flex-direction: column; padding: 14px 0; }
  .nav-links { justify-content: flex-start; }
  .hero { padding-top: 58px; }
  .hero-title { font-size: clamp(3rem, 16vw, 5rem); }
  .product-grid, .principles-grid, .feature-grid, .coverage-grid, .stat-grid-four { grid-template-columns: 1fr; }
  .orbit-card { position: relative; inset: auto !important; transform: none; width: 100%; }
  .home-stage { display: grid; grid-template-columns: 1fr; gap: 12px; min-height: 0; margin-top: 30px; }
  .center-mark { display: none; }
  .phone { transform: none; }
  .phone-screen { min-height: 460px; }
  .legal-card { padding: 26px; }
  .footer-inner, .footer-links { justify-content: flex-start; }
}