:root {
  color-scheme: dark;
  --bg: #141116;
  --surface: #1f1c24;
  --surface-2: #27242f;
  --surface-3: #332832;
  --line: #4b4256;
  --text: #fff7f2;
  --muted: #dac9c6;
  --soft: #f8ded5;
  --primary: #ff5a32;
  --primary-soft: #843726;
  --danger: #960012;
  --blue: #1457ff;
  --gold: #ffc857;
  --header-height: 72px;
  --header-content-height: 72px;
  --safe-top: env(safe-area-inset-top, 0px);
}
* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--safe-top) + var(--header-content-height) + 18px);
}
img { max-width: 100%; }
body {
  margin: 0;
  padding-top: calc(var(--safe-top) + var(--header-content-height));
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 72% 8%, rgba(255, 90, 50, .18), transparent 28%),
    radial-gradient(circle at 18% 28%, rgba(255, 200, 87, .08), transparent 26%),
    linear-gradient(180deg, #141116 0%, #19151d 44%, #17141b 100%);
  line-height: 1.55;
}
a { color: inherit; }
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: calc(var(--safe-top) + var(--header-content-height));
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: var(--safe-top) clamp(18px, 4vw, 56px) 0;
  background: #141116;
  border-bottom: 1px solid rgba(255, 247, 242, .08);
  backdrop-filter: blur(14px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, .28);
  overflow: visible;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 800;
  font-size: 1.08rem;
}
.brand img {
  width: 42px;
  height: 42px;
  border-radius: 10px;
}
.site-header .brand {
  margin: 0;
  color: var(--text);
  text-transform: none;
  letter-spacing: 0;
  font-size: 1.08rem;
  line-height: 1;
}
.site-header .brand img {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  flex: 0 0 auto;
}
.site-header .brand span {
  color: var(--text);
  font-weight: 800;
}
.nav {
  display: flex;
  align-items: center;
  gap: 20px;
  color: var(--muted);
  font-size: .95rem;
}
.nav a { text-decoration: none; white-space: nowrap; }
.nav a:hover { color: var(--text); }
.menu-toggle {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.burger {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 247, 242, .16);
  border-radius: 10px;
  background: rgba(255, 247, 242, .06);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}
.burger span {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: var(--text);
  transition: transform .18s ease, opacity .18s ease;
}
.menu-toggle:checked + .burger span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.menu-toggle:checked + .burger span:nth-child(2) {
  opacity: 0;
}
.menu-toggle:checked + .burger span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
.hero {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(420px, 1.05fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  min-height: calc(100vh - var(--safe-top) - var(--header-content-height));
  padding: clamp(36px, 6vw, 82px) clamp(18px, 5vw, 72px) clamp(50px, 7vw, 92px);
}
.hero-content {
  max-width: 760px;
}
.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 200, 87, .38);
  border-radius: 999px;
  background: rgba(255, 200, 87, .1);
  color: #ffe3a5;
  font-size: .82rem;
  font-weight: 900;
}
.store-badge::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 20px rgba(255, 200, 87, .7);
}
.store-badge.large {
  margin-bottom: 18px;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  color: var(--muted);
  font-weight: 800;
  text-transform: uppercase;
  font-size: .82rem;
  letter-spacing: .08em;
}
.eyebrow::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--primary);
}
h1 {
  margin: 0;
  font-size: clamp(4.3rem, 13vw, 9.5rem);
  line-height: .85;
  letter-spacing: 0;
}
.hero-claim {
  max-width: 700px;
  margin: 22px 0 0;
  color: var(--text);
  font-size: clamp(1.8rem, 4.5vw, 3.35rem);
  line-height: 1.02;
  font-weight: 900;
}
.hero-copy {
  max-width: 660px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: clamp(1.04rem, 1.8vw, 1.24rem);
}
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 8px;
  border: 1px solid var(--primary);
  background: var(--primary);
  color: #fff;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 14px 32px rgba(255, 90, 50, .22);
}
.button.secondary {
  background: rgba(255, 247, 242, .04);
  color: var(--text);
  border-color: var(--line);
  box-shadow: none;
}
.hero-note {
  margin-top: 18px;
  color: var(--muted);
  font-size: .96rem;
}
.proof-list {
  display: grid;
  gap: 10px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
  color: var(--soft);
}
.proof-list li {
  position: relative;
  padding-left: 24px;
  font-weight: 700;
  max-width: 650px;
}
.proof-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .55em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--primary);
}
.screens {
  position: relative;
  min-height: 640px;
  isolation: isolate;
}
.screens::before {
  content: "";
  position: absolute;
  inset: 44px 2% auto auto;
  width: min(88%, 560px);
  height: 520px;
  border: 1px solid rgba(255, 247, 242, .08);
  border-radius: 8px;
  background:
    linear-gradient(90deg, transparent 49%, rgba(255, 90, 50, .14) 50%, transparent 51%),
    linear-gradient(0deg, transparent 49%, rgba(255, 247, 242, .08) 50%, transparent 51%),
    linear-gradient(135deg, rgba(39, 36, 47, .9), rgba(20, 17, 22, .92));
  background-size: 72px 72px, 72px 72px, auto;
  box-shadow: 0 34px 90px rgba(0, 0, 0, .32);
  transform: rotate(1.5deg);
}
.phone {
  position: absolute;
  width: min(34vw, 265px);
  max-height: 590px;
  border: 9px solid #0c0a0f;
  border-radius: 32px;
  overflow: hidden;
  background: #0f0d12;
  box-shadow: 0 34px 80px rgba(0, 0, 0, .5);
}
.phone img {
  display: block;
  width: 100%;
  height: auto;
  min-height: 100%;
  object-fit: cover;
  object-position: top center;
}
.phone.primary {
  right: 40%;
  top: 12px;
  z-index: 3;
}
.phone.secondary-shot {
  right: 6%;
  top: 88px;
  z-index: 2;
}
.phone.tertiary {
  right: 28%;
  top: 252px;
  z-index: 1;
  opacity: .92;
}
.sections {
  padding: 56px clamp(18px, 5vw, 72px) 76px;
}
.sections.compact {
  padding-top: 36px;
  padding-bottom: 36px;
}
.section-title {
  max-width: 820px;
  margin-bottom: 26px;
}
.section-title h2 {
  margin: 0 0 12px;
  font-size: clamp(2rem, 5vw, 3.35rem);
  line-height: 1.05;
  overflow-wrap: anywhere;
}
.section-title p {
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
}
.grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.value-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.feature,
article {
  border: 1px solid rgba(255, 247, 242, .12);
  border-radius: 8px;
  background: rgba(31, 28, 36, .78);
  box-shadow: 0 18px 48px rgba(0, 0, 0, .14);
}
.feature {
  min-height: 220px;
  padding: 22px;
}
.feature-badge {
  width: 46px;
  height: 40px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--primary), #bd4a32);
  color: #fff;
  font-weight: 900;
  font-size: .82rem;
}
.feature h3 {
  margin: 0 0 8px;
  font-size: 1.22rem;
  line-height: 1.18;
}
.feature p,
article p,
article li {
  color: var(--muted);
  overflow-wrap: anywhere;
}
.feature-showcase {
  padding-top: 44px;
  background:
    linear-gradient(180deg, rgba(255, 247, 242, .02), rgba(255, 90, 50, .04));
}
.difference-section {
  background:
    linear-gradient(180deg, rgba(255, 90, 50, .06), rgba(255, 247, 242, .02));
}
.difference-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.difference-card {
  min-height: 236px;
  padding: 22px;
  border-color: rgba(255, 200, 87, .18);
  background:
    linear-gradient(145deg, rgba(255, 247, 242, .075), rgba(31, 28, 36, .82)),
    rgba(31, 28, 36, .78);
}
.difference-kicker {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255, 90, 50, .16);
  color: #ffd8cd;
  font-size: .78rem;
  font-weight: 900;
}
.difference-card h3 {
  margin: 0 0 8px;
  font-size: 1.2rem;
  line-height: 1.18;
}
.difference-card p {
  margin: 0;
  color: var(--muted);
}
.capability-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.capability-card {
  min-height: 245px;
  padding: 20px;
  position: relative;
  overflow: hidden;
}
.capability-card::after {
  content: "";
  position: absolute;
  inset: auto -40px -54px auto;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(255, 90, 50, .12);
  pointer-events: none;
}
.capability-card.highlight {
  grid-column: span 2;
  background:
    linear-gradient(135deg, rgba(255, 90, 50, .22), rgba(31, 28, 36, .9)),
    rgba(31, 28, 36, .78);
}
.capability-icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
  border-radius: 12px;
  background: rgba(255, 247, 242, .09);
  font-size: 1.28rem;
}
.capability-card h3 {
  margin: 0 0 8px;
  color: var(--text);
  font-size: 1.12rem;
  line-height: 1.18;
}
.capability-card p {
  margin: 0;
  color: var(--muted);
}
.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.step {
  min-height: 245px;
  padding: 22px;
}
.step-kicker {
  display: inline-flex;
  margin-bottom: 20px;
  padding: 5px 9px;
  border-radius: 8px;
  background: rgba(255, 90, 50, .14);
  color: #ffb6a4;
  font-size: .75rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.step h3 {
  margin: 0 0 8px;
  font-size: 1.18rem;
  line-height: 1.18;
}
.step p {
  margin: 0;
}
.screenshot-section {
  background:
    linear-gradient(180deg, rgba(255, 247, 242, .035), rgba(255, 90, 50, .035));
  border-top: 1px solid rgba(255, 247, 242, .08);
  border-bottom: 1px solid rgba(255, 247, 242, .08);
}
.screenshot-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
  margin-top: 40px;
}
.shot {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #0f0d12;
  box-shadow: 0 22px 54px rgba(0, 0, 0, .28);
}
.shot img {
  display: block;
  width: 100%;
  aspect-ratio: 390 / 844;
  object-fit: cover;
  object-position: top center;
}
.shot figcaption {
  padding: 12px 14px 14px;
  color: var(--text);
  font-size: .9rem;
  font-weight: 800;
  line-height: 1.25;
  min-height: 56px;
}
.band {
  margin-top: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: 28px;
  align-items: center;
  padding: 28px;
  border: 1px solid rgba(255, 90, 50, .28);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(132, 55, 38, .9), rgba(31, 28, 36, .96)),
    radial-gradient(circle at 20% 10%, rgba(255, 200, 87, .22), transparent 30%);
}
.band h2 {
  margin: 0 0 12px;
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.08;
  overflow-wrap: anywhere;
}
.band p { color: rgba(255, 247, 242, .82); }
.status-board {
  display: grid;
  gap: 10px;
}
.status-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 12px;
  border-radius: 8px;
  background: rgba(255, 247, 242, .1);
  font-weight: 700;
}
.security-section {
  padding-bottom: 46px;
}
.safety-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}
.safety-card {
  padding: 22px;
}
.safety-card h3 {
  margin: 0 0 8px;
  color: var(--text);
}
.safety-card p {
  margin: 0;
}
.advice-section {
  padding-top: 34px;
}
.advice-list {
  display: grid;
  gap: 12px;
}
.advice-list article {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding: 18px;
}
.advice-list span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: rgba(255, 90, 50, .16);
  color: #ffb6a4;
  font-weight: 900;
}
.advice-list p {
  margin: 0;
  color: var(--soft);
  font-weight: 700;
}
.final-cta {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
  padding-top: 64px;
}
.final-cta h2 {
  margin: 0 0 12px;
  font-size: clamp(2rem, 5vw, 3.35rem);
  line-height: 1.05;
}
.final-cta p {
  margin: 0 auto;
  max-width: 720px;
  color: var(--muted);
  font-size: 1.08rem;
}
.actions.centered {
  justify-content: center;
}
main.legal {
  max-width: 980px;
  margin: 0 auto;
  padding: 32px 16px 58px;
}
main.legal article {
  padding: clamp(20px, 4vw, 34px);
}
main.legal .brand-title {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  color: var(--text);
  font-weight: 800;
  text-transform: none;
  letter-spacing: 0;
  font-size: 1.08rem;
}
main.legal .brand-title img {
  width: 42px;
  height: 42px;
  border-radius: 10px;
}
main.legal .updated {
  margin: 0 0 24px;
  color: var(--muted);
  font-weight: 700;
}
main.legal .notice {
  margin-top: 18px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 90, 50, .36);
  border-radius: 8px;
  background: rgba(150, 0, 18, .12);
  color: var(--text);
}
main.legal h1 {
  font-size: clamp(2.35rem, 8vw, 4.8rem);
  line-height: .95;
  margin-bottom: 16px;
}
main.legal h2 {
  margin: 34px 0 10px;
  font-size: 1.28rem;
}
main.legal ul,
main.legal ol {
  padding-left: 1.25rem;
}
footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px;
  padding: 26px clamp(18px, 5vw, 72px);
  border-top: 1px solid rgba(255, 247, 242, .1);
  color: var(--muted);
  background: rgba(15, 13, 18, .86);
}
footer div:last-child {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 16px;
}
footer a {
  color: var(--muted);
  text-decoration: none;
}
footer a:hover { color: var(--text); }
@media (max-width: 940px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .screens {
    min-height: 620px;
    max-width: 720px;
    width: 100%;
    margin: 0 auto;
  }
  .phone { width: min(36vw, 245px); }
  .phone.primary { left: 4%; right: auto; }
  .phone.secondary-shot { right: 4%; }
  .phone.tertiary { left: 32%; right: auto; }
  .grid,
  .value-grid,
  .difference-grid,
  .capability-grid,
  .steps,
  .safety-grid,
  .screenshot-strip,
  .band {
    grid-template-columns: 1fr;
  }
  .capability-card.highlight {
    grid-column: auto;
  }
  .screenshot-strip {
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 860px) {
  :root {
    --header-content-height: 64px;
    --safe-top: env(safe-area-inset-top, 0px);
  }
  .site-header {
    padding: var(--safe-top) 16px 0;
    align-items: center;
  }
  .burger {
    display: flex;
    order: 3;
  }
  .nav {
    position: absolute;
    top: calc(100% + 8px);
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px;
    border: 1px solid rgba(255, 247, 242, .12);
    border-radius: 12px;
    background: rgba(20, 17, 22, .98);
    box-shadow: 0 24px 60px rgba(0, 0, 0, .42);
  }
  .nav a {
    padding: 12px 14px;
    border-radius: 8px;
    color: var(--text);
  }
  .nav a:hover {
    background: rgba(255, 247, 242, .08);
  }
  .menu-toggle:checked ~ .nav {
    display: flex;
  }
}
@media (max-width: 620px) {
  .actions { flex-direction: column; }
  .button { width: 100%; }
  .screens {
    min-height: auto;
    overflow: visible;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    align-items: start;
  }
  .screens::before {
    display: none;
  }
  .phone {
    position: static;
    width: 100%;
    max-width: none;
    max-height: 390px;
    border-width: 6px;
    border-radius: 24px;
  }
  .phone.tertiary { display: none; }
  .hero-claim {
    font-size: clamp(1.55rem, 8vw, 2.3rem);
  }
  .proof-list li {
    padding-left: 20px;
  }
  .advice-list article {
    grid-template-columns: 1fr;
  }
  .capability-card {
    min-height: auto;
  }
  .difference-card {
    min-height: auto;
  }
  .status-row {
    align-items: flex-start;
    flex-direction: column;
  }
  .sections {
    padding-left: 16px;
    padding-right: 16px;
  }
  footer {
    flex-direction: column;
  }
}
@media (max-width: 390px) {
  .screens {
    grid-template-columns: 1fr;
  }
  .phone.secondary-shot {
    display: none;
  }
}
