:root {
  color-scheme: dark;
  --bg: #090606;
  --surface: #120e0e;
  --surface-2: #1b1413;
  --surface-3: #241918;
  --line: rgba(255, 231, 219, 0.14);
  --line-strong: rgba(255, 231, 219, 0.24);
  --text: #fff3ec;
  --muted: #bca9a2;
  --muted-2: #8f7c76;
  --rose: #ff4d87;
  --rose-2: #ff7a9d;
  --champagne: #f3c891;
  --lime: #c7ff66;
  --ink: #18080c;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.42);
  --glow: 0 0 28px rgba(255, 77, 135, 0.18);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  background:
    linear-gradient(180deg, rgba(255, 77, 135, 0.12), transparent 420px),
    linear-gradient(135deg, rgba(243, 200, 145, 0.09), transparent 48%),
    var(--bg);
  color: var(--text);
}

a {
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
}

.shell {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.nav {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-weight: 850;
  letter-spacing: 0;
  text-decoration: none;
}

.mark {
  width: 26px;
  height: 26px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.32), transparent 36%),
    linear-gradient(135deg, var(--rose), var(--champagne));
  box-shadow: var(--glow);
}

.links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 6px;
}

.links a,
.policy-links a {
  border: 1px solid transparent;
  border-radius: 8px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 720;
  text-decoration: none;
}

.links a {
  padding: 8px 10px;
}

.links a:hover,
.policy-links a:hover {
  border-color: var(--line);
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
}

.hero {
  min-height: 680px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 48px;
  align-items: center;
  padding: 34px 0 72px;
}

.hero-copy {
  max-width: 720px;
}

.eyebrow {
  color: var(--lime);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p,
dl {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 18px;
  font-size: 92px;
  line-height: 0.92;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: 38px;
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 20px;
  line-height: 1.18;
  letter-spacing: 0;
}

p,
li {
  color: var(--muted);
  line-height: 1.65;
}

.lead {
  max-width: 680px;
  margin-bottom: 0;
  color: #e2d2cc;
  font-size: 19px;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 0 18px;
  font-weight: 850;
  text-decoration: none;
}

.button.primary {
  color: var(--ink);
  background: linear-gradient(135deg, var(--rose), var(--champagne));
  box-shadow: var(--glow);
}

.button.secondary {
  border: 1px solid var(--line);
  color: var(--text);
  background: rgba(255, 255, 255, 0.045);
}

.signal-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  max-width: 680px;
  margin: 36px 0 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.signal-strip div {
  min-height: 74px;
  padding: 14px;
  background: rgba(18, 14, 14, 0.86);
}

.signal-strip dt {
  color: var(--muted-2);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.signal-strip dd {
  margin: 8px 0 0;
  color: var(--text);
  font-weight: 780;
}

.device-panel {
  justify-self: end;
  width: min(100%, 378px);
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    var(--surface-2);
  box-shadow: var(--shadow), var(--glow);
}

.phone-frame {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 22px;
  background: #050404;
}

.phone-frame img {
  width: 100%;
  height: auto;
}

.feature-band {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.025);
}

.section-grid,
.split-section,
.compliance-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1fr);
  gap: 28px;
}

.section-grid {
  padding: 56px 0;
}

.feature-list,
.stack {
  display: grid;
  gap: 12px;
}

.card,
.mini-panel,
.doc {
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018)),
    var(--surface);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.24);
}

.card {
  min-height: 160px;
  padding: 18px;
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--lime);
  font-size: 12px;
  font-weight: 850;
}

.dot {
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 8px var(--lime);
}

.split-section {
  padding: 72px 0;
  border-bottom: 1px solid var(--line);
}

.mini-panel {
  padding: 18px;
}

.mini-panel strong {
  display: block;
  margin-bottom: 8px;
  color: var(--text);
  font-size: 17px;
}

.mini-panel p,
.compliance-panel p {
  margin-bottom: 0;
}

.compliance-panel {
  align-items: center;
  margin-top: 72px;
  margin-bottom: 72px;
  padding: 26px;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 77, 135, 0.12), rgba(243, 200, 145, 0.06)),
    var(--surface-2);
}

.policy-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.policy-links a {
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 14px;
  border-color: var(--line);
  color: var(--text);
  background: rgba(0, 0, 0, 0.18);
}

.policy-links a::after {
  content: "/";
  color: var(--lime);
}

.doc {
  margin: 26px auto 70px;
  padding: 42px;
}

.doc h1 {
  margin-bottom: 18px;
  font-size: 58px;
  line-height: 1;
}

.doc h2 {
  font-size: 28px;
}

.doc h3 {
  margin: 20px 0 8px;
  font-size: 18px;
}

.doc section {
  padding-top: 18px;
  margin-top: 24px;
  border-top: 1px solid var(--line);
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid var(--line);
  padding: 26px 0 42px;
  color: var(--muted);
  font-size: 13px;
}

.footer a {
  color: var(--text);
  text-decoration: none;
}

@media (max-width: 920px) {
  .hero,
  .section-grid,
  .split-section,
  .compliance-panel {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 0;
    gap: 34px;
    padding-top: 28px;
  }

  .device-panel {
    justify-self: start;
    max-width: 360px;
  }
}

@media (max-width: 680px) {
  .shell {
    width: min(100% - 24px, 1120px);
  }

  .nav {
    align-items: flex-start;
    flex-direction: column;
  }

  .links {
    justify-content: flex-start;
  }

  h1 {
    font-size: 54px;
  }

  h2 {
    font-size: 30px;
  }

  .lead {
    font-size: 17px;
  }

  .signal-strip,
  .policy-links {
    grid-template-columns: 1fr;
  }

  .device-panel {
    max-width: 310px;
  }

  .doc {
    padding: 24px 18px;
  }

  .doc h1 {
    font-size: 40px;
  }

  .footer {
    flex-direction: column;
  }
}
