:root {
  --yellow: #ffd20a;
  --yellow-soft: #fff4ad;
  --black: #111214;
  --charcoal: #1a1b1f;
  --white: #ffffff;
  --paper: #f5f5f2;
  --grey-50: #fafafa;
  --grey-100: #eeeeec;
  --grey-200: #dddeda;
  --grey-400: #969893;
  --grey-600: #5b5d59;
  --grey-800: #2d2f2c;
  --green: #1c8f59;
  --orange: #ef7f1a;
  --purple: #7d52c7;
  --radius-xl: 32px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --shadow: 0 22px 55px rgba(17, 18, 20, 0.14);
  --content: 1160px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--black);
  background: var(--white);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
button, input, textarea { font: inherit; }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 8px;
  z-index: 999;
  padding: 10px 14px;
  background: var(--black);
  color: var(--white);
  border-radius: 10px;
}
.skip-link:focus { left: 8px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(17, 18, 20, 0.08);
  background: rgba(255, 210, 10, 0.94);
  backdrop-filter: blur(12px);
}
.header-inner {
  width: min(calc(100% - 36px), var(--content));
  min-height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand { display: inline-flex; align-items: center; text-decoration: none; }
.brand img { width: 128px; height: auto; }
.nav-toggle {
  display: none;
  border: 0;
  background: rgba(17, 18, 20, 0.08);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 22px;
  cursor: pointer;
}
.site-nav { display: flex; align-items: center; gap: 6px; }
.site-nav a {
  text-decoration: none;
  font-weight: 750;
  font-size: 14px;
  padding: 10px 12px;
  border-radius: 999px;
}
.site-nav a:hover, .site-nav a:focus-visible { background: rgba(17, 18, 20, 0.09); outline: none; }
.site-nav .nav-cta { background: var(--black); color: var(--white); padding-inline: 16px; }
.site-nav .nav-cta:hover, .site-nav .nav-cta:focus-visible { background: #292a2e; }

.hero {
  background: var(--yellow);
  overflow: hidden;
  position: relative;
}
.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.hero::before {
  width: 420px;
  height: 420px;
  right: -120px;
  top: 70px;
  border: 72px solid rgba(255, 255, 255, 0.2);
}
.hero::after {
  width: 260px;
  height: 260px;
  left: -130px;
  bottom: -120px;
  border: 48px solid rgba(17, 18, 20, 0.055);
}
.hero-inner {
  width: min(calc(100% - 36px), var(--content));
  margin: 0 auto;
  padding: 78px 0 88px;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.eyebrow {
  margin: 0 0 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 13px;
  font-weight: 900;
}
.hero h1 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(48px, 7vw, 86px);
  line-height: 0.98;
  letter-spacing: -0.055em;
  font-weight: 950;
  text-transform: uppercase;
}
.hero-copy {
  margin: 24px 0 0;
  max-width: 650px;
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.48;
  font-weight: 600;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 20px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 850;
  line-height: 1.2;
  border: 2px solid var(--black);
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--black); color: var(--white); box-shadow: 0 10px 24px rgba(17,18,20,.18); }
.button-secondary { background: transparent; color: var(--black); }
.button-yellow { background: var(--yellow); color: var(--black); }
.button-muted { background: var(--grey-100); color: var(--black); border-color: var(--grey-200); }

.launch-note {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  font-size: 13px;
  font-weight: 750;
}
.launch-note::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--black);
  box-shadow: 0 0 0 6px rgba(17,18,20,.1);
}

.phone-wrap { display: flex; justify-content: center; }
.phone {
  width: min(100%, 360px);
  padding: 13px;
  border-radius: 42px;
  background: #050506;
  box-shadow: 0 35px 80px rgba(17, 18, 20, 0.28);
  transform: rotate(2deg);
}
.phone-screen {
  min-height: 670px;
  border-radius: 31px;
  overflow: hidden;
  background: var(--paper);
  display: flex;
  flex-direction: column;
}
.phone-top { background: var(--yellow); padding: 28px 20px 58px; }
.phone-logo { width: 114px; margin-bottom: 34px; }
.phone-greeting { font-size: 12px; font-weight: 800; letter-spacing: .08em; }
.phone-message { margin-top: 6px; font-size: 21px; line-height: 1.05; font-weight: 950; text-transform: uppercase; }
.status-card {
  margin: -38px 16px 0;
  padding: 18px;
  border-radius: 26px;
  background: var(--charcoal);
  color: var(--white);
  box-shadow: 0 18px 28px rgba(17, 18, 20, 0.2);
}
.status-row { display: flex; gap: 13px; align-items: center; }
.drop-icon {
  width: 58px;
  height: 58px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--black);
  font-size: 25px;
  font-weight: 950;
  font-style: italic;
}
.status-kicker { font-size: 11px; color: var(--yellow); font-weight: 850; letter-spacing: .08em; }
.status-title { font-size: 24px; line-height: 1.05; font-weight: 950; margin-top: 4px; }
.status-body { margin: 13px 0 0; color: #d1d2d4; font-size: 13px; line-height: 1.45; }
.pills { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-top: 14px; }
.pill { background: #323338; border-radius: 12px; padding: 9px 5px; text-align: center; font-size: 9px; font-weight: 850; }
.phone-cta { margin-top: 14px; padding: 13px; border-radius: 13px; background: var(--yellow); color: var(--black); text-align: center; font-size: 12px; font-weight: 900; }
.stat-grid { margin: 14px 16px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.stat { min-height: 94px; background: var(--white); border: 1px solid var(--grey-200); border-radius: 18px; padding: 12px; box-shadow: 0 5px 10px rgba(17,18,20,.05); }
.stat-dot { width: 24px; height: 24px; border-radius: 50%; background: var(--yellow); display: grid; place-items: center; font-size: 11px; font-weight: 900; }
.stat-label { font-size: 9px; color: var(--grey-600); margin-top: 10px; text-transform: uppercase; }
.stat-value { font-size: 20px; line-height: 1; font-weight: 900; margin-top: 4px; }
.mini-card { margin: 0 16px 18px; border-radius: 20px; background: #e7e8e5; padding: 15px; }
.mini-title { font-weight: 900; font-size: 13px; }
.mini-copy { font-size: 11px; color: var(--grey-600); margin-top: 3px; }

.section { padding: 88px 0; }
.section-grey { background: var(--paper); }
.section-black { background: var(--black); color: var(--white); }
.container { width: min(calc(100% - 36px), var(--content)); margin: 0 auto; }
.section-header { max-width: 760px; margin-bottom: 38px; }
.section-header h2 {
  margin: 0;
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.03;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  font-weight: 950;
}
.section-header p { margin: 18px 0 0; font-size: 18px; color: var(--grey-600); }
.section-black .section-header p { color: #b9bbb7; }

.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.step-card, .feature-card {
  border-radius: var(--radius-lg);
  border: 1px solid var(--grey-200);
  background: var(--white);
  padding: 26px;
}
.step-number {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--yellow);
  font-weight: 950;
}
.step-card h3, .feature-card h3 { margin: 20px 0 8px; font-size: 21px; line-height: 1.18; font-weight: 900; }
.step-card p, .feature-card p { margin: 0; color: var(--grey-600); }

.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.feature-card { min-height: 230px; display: flex; flex-direction: column; }
.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 15px;
  display: grid;
  place-items: center;
  background: var(--yellow);
  font-size: 22px;
}
.feature-card p { margin-top: auto; padding-top: 18px; }

.safety-banner {
  display: grid;
  grid-template-columns: 1.35fr .65fr;
  align-items: center;
  gap: 40px;
  background: var(--yellow);
  border-radius: var(--radius-xl);
  padding: clamp(28px, 5vw, 54px);
}
.safety-banner h2 { margin: 0; font-size: clamp(32px, 5vw, 54px); line-height: 1.02; text-transform: uppercase; font-weight: 950; letter-spacing: -.04em; }
.safety-banner p { margin: 16px 0 0; max-width: 720px; font-weight: 600; }
.safety-actions { display: flex; justify-content: flex-end; }

.legal-hero { background: var(--yellow); padding: 60px 0; }
.legal-hero .container { max-width: 920px; }
.legal-hero h1 { margin: 0; font-size: clamp(42px, 7vw, 70px); line-height: .98; letter-spacing: -.05em; text-transform: uppercase; font-weight: 950; }
.legal-hero p { max-width: 760px; margin: 18px 0 0; font-size: 18px; font-weight: 600; }
.legal-layout { width: min(calc(100% - 36px), 1120px); margin: 0 auto; padding: 60px 0 90px; display: grid; grid-template-columns: 260px minmax(0, 1fr); gap: 54px; align-items: start; }
.legal-nav { position: sticky; top: 100px; border: 1px solid var(--grey-200); border-radius: 18px; padding: 14px; background: var(--grey-50); }
.legal-nav strong { display: block; padding: 7px 10px 10px; font-size: 13px; text-transform: uppercase; letter-spacing: .08em; }
.legal-nav a { display: block; text-decoration: none; padding: 8px 10px; border-radius: 10px; color: var(--grey-600); font-size: 14px; font-weight: 650; }
.legal-nav a:hover { background: var(--grey-100); color: var(--black); }
.legal-content { min-width: 0; max-width: 790px; }
.legal-content h2 { margin: 48px 0 12px; font-size: 29px; line-height: 1.2; letter-spacing: -.02em; }
.legal-content h2:first-child { margin-top: 0; }
.legal-content h3 { margin: 28px 0 10px; font-size: 20px; }
.legal-content p, .legal-content li { color: #3d3f3b; }
.legal-content ul, .legal-content ol { padding-left: 22px; }
.legal-content li + li { margin-top: 8px; }
.legal-content a { text-decoration-thickness: 1.5px; text-underline-offset: 3px; }
.meta-line { font-size: 14px; color: var(--grey-600); margin-top: 16px; }
.notice {
  margin: 26px 0;
  border-left: 5px solid var(--yellow);
  border-radius: 0 14px 14px 0;
  padding: 18px 20px;
  background: #fff9d7;
}
.notice strong { display: block; margin-bottom: 4px; }
.notice-grey { border-left-color: var(--grey-600); background: var(--grey-100); }
.notice-dark { background: var(--black); color: var(--white); border-left-color: var(--yellow); }
.notice-dark p, .notice-dark li { color: #dddeda; }
.data-table { width: 100%; border-collapse: collapse; margin: 20px 0; font-size: 14px; }
.data-table th, .data-table td { text-align: left; vertical-align: top; border: 1px solid var(--grey-200); padding: 13px; }
.data-table th { background: var(--grey-100); font-weight: 850; }

.support-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.support-card { border: 1px solid var(--grey-200); border-radius: var(--radius-lg); padding: 26px; background: var(--white); }
.support-card h2, .support-card h3 { margin-top: 0; }
.support-card p { color: var(--grey-600); }
.contact-box { border-radius: var(--radius-xl); padding: 36px; background: var(--black); color: var(--white); }
.contact-box p { color: #c9cbc7; }
.contact-box a { color: var(--yellow); }

.site-footer { background: var(--black); color: var(--white); padding: 52px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.3fr repeat(2, .7fr); gap: 40px; }
.footer-logo { width: 130px; filter: invert(1); }
.footer-copy { max-width: 440px; color: #afb1ad; margin-top: 18px; }
.footer-heading { font-size: 13px; text-transform: uppercase; letter-spacing: .1em; color: var(--yellow); font-weight: 900; }
.footer-links { display: grid; gap: 8px; margin-top: 13px; }
.footer-links a { color: #e3e4e1; text-decoration: none; }
.footer-links a:hover { color: var(--yellow); }
.footer-bottom { margin-top: 42px; padding-top: 22px; border-top: 1px solid #34363a; display: flex; gap: 20px; justify-content: space-between; color: #9ea09c; font-size: 13px; }

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; padding-top: 58px; }
  .phone { width: min(100%, 340px); transform: none; }
  .steps, .feature-grid { grid-template-columns: 1fr 1fr; }
  .safety-banner { grid-template-columns: 1fr; }
  .safety-actions { justify-content: flex-start; }
  .legal-layout { grid-template-columns: 1fr; gap: 28px; }
  .legal-nav { position: static; display: flex; gap: 6px; overflow-x: auto; white-space: nowrap; }
  .legal-nav strong { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 720px) {
  .header-inner { min-height: 68px; }
  .brand img { width: 112px; }
  .nav-toggle { display: inline-grid; place-items: center; }
  .site-nav {
    display: none;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    padding: 12px 18px 20px;
    background: var(--yellow);
    border-bottom: 1px solid rgba(17,18,20,.1);
    flex-direction: column;
    align-items: stretch;
  }
  .site-nav.open { display: flex; }
  .site-nav a { text-align: center; }
  .hero-inner { gap: 44px; padding-bottom: 68px; }
  .hero h1 { font-size: clamp(46px, 15vw, 70px); }
  .hero-copy { font-size: 18px; }
  .steps, .feature-grid, .support-grid { grid-template-columns: 1fr; }
  .section { padding: 68px 0; }
  .legal-hero { padding: 48px 0; }
  .legal-layout { padding-top: 38px; }
  .data-table, .data-table tbody, .data-table tr, .data-table th, .data-table td { display: block; width: 100%; }
  .data-table thead { display: none; }
  .data-table tr { border: 1px solid var(--grey-200); border-radius: 14px; overflow: hidden; margin-bottom: 14px; }
  .data-table td { border: 0; border-bottom: 1px solid var(--grey-200); }
  .data-table td:last-child { border-bottom: 0; }
  .data-table td::before { content: attr(data-label); display: block; font-weight: 850; color: var(--black); margin-bottom: 4px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; animation: none !important; }
}
