:root {
  --bg: #130f0d;
  --bg-soft: #1b1411;
  --surface: #241916;
  --surface-2: #33231e;
  --border: #4a332c;
  --border-mute: #32241f;
  --text: #fff7ed;
  --text-dim: #e8cfc1;
  --mute: #b99585;
  --faint: #85675b;
  --red: #f97373;
  --red-deep: #7f1d1d;
  --green: #8bd8a6;
  --blue: #78b7ff;
  --amber: #f5bd73;
  --red-dim: rgba(249, 115, 115, 0.14);
  --green-dim: rgba(139, 216, 166, 0.14);
  --max: 1140px;
  --sans: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --mono: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}
html,
body {
  margin: 0;
  padding: 0;
}
html {
  background: var(--bg);
}
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img {
  max-width: 100%;
  display: block;
}
a {
  color: var(--red);
  text-decoration: none;
}
a:hover {
  color: #ff9a9a;
}
p {
  margin: 0 0 14px;
  color: var(--text-dim);
}
h1,
h2,
h3,
h4 {
  color: var(--text);
  font-family: var(--sans);
  letter-spacing: 0;
  margin: 0;
}
h1 {
  font-size: clamp(40px, 5vw, 68px);
  font-weight: 800;
  line-height: 1.05;
}
h2 {
  font-size: clamp(28px, 3.4vw, 44px);
  font-weight: 750;
  line-height: 1.1;
}
h3 {
  font-size: clamp(22px, 2.4vw, 32px);
  font-weight: 750;
  line-height: 1.2;
}
h4 {
  font-size: 18px;
  font-weight: 650;
}
em {
  color: var(--text);
  font-style: normal;
  font-weight: 650;
}

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 28px;
}
.mono {
  font-family: var(--mono);
  font-size: 0.92em;
}
.kicker {
  color: var(--red);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  margin: 0 0 14px;
  text-transform: uppercase;
}
.body-l {
  font-size: 18px;
  line-height: 1.65;
}
.section-h {
  max-width: 760px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(19, 15, 13, 0.82);
  backdrop-filter: saturate(160%) blur(12px);
  -webkit-backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid var(--border-mute);
}
.nav {
  align-items: center;
  display: flex;
  justify-content: space-between;
  padding-bottom: 14px;
  padding-top: 14px;
}
.brand {
  align-items: center;
  color: var(--text);
  display: inline-flex;
  font-weight: 750;
  gap: 10px;
}
.brand img {
  border-radius: 7px;
}
.site-header nav {
  display: flex;
  gap: 22px;
}
.site-header nav a {
  color: var(--mute);
  font-size: 14px;
  font-weight: 550;
}
.site-header nav a:hover,
.site-header nav a[aria-current='page'] {
  color: var(--text);
}

.hero {
  overflow: hidden;
  padding: 80px 0 96px;
  position: relative;
}
.hero::before {
  background:
    radial-gradient(900px 520px at 10% 18%, rgba(249, 115, 115, 0.13), transparent 64%),
    radial-gradient(760px 520px at 84% 92%, rgba(139, 216, 166, 0.08), transparent 60%);
  content: '';
  inset: 0;
  pointer-events: none;
  position: absolute;
}
.hero-grid {
  align-items: center;
  display: grid;
  gap: 60px;
  grid-template-columns: 1.1fr 1fr;
  position: relative;
}
.hero-copy {
  max-width: 600px;
}
.hero-icon {
  border-radius: 22px;
  box-shadow:
    0 30px 60px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(255, 255, 255, 0.05);
  margin-bottom: 28px;
}
.lead {
  color: var(--text-dim);
  font-size: 19px;
  line-height: 1.6;
  margin: 22px 0 28px;
  max-width: 560px;
}
.cta-row {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 26px;
}
.badge-play {
  align-items: center;
  background: #fff;
  border: 1px solid transparent;
  border-radius: 10px;
  color: #111;
  display: inline-flex;
  gap: 12px;
  padding: 12px 22px 12px 18px;
  transition:
    box-shadow 0.12s ease,
    transform 0.12s ease;
}
.badge-play:hover {
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.34);
  color: #111;
  transform: translateY(-1px);
}
.badge-play small {
  color: #444;
  display: block;
  font-size: 10px;
  font-weight: 550;
  letter-spacing: 0.08em;
  line-height: 1.1;
}
.badge-play strong {
  display: block;
  font-size: 19px;
  font-weight: 650;
  line-height: 1.15;
}
.badge-play.big {
  padding: 14px 26px 14px 20px;
}
.badge-play.big strong {
  font-size: 22px;
}
.cta-secondary {
  color: var(--mute);
  font-size: 14px;
  font-weight: 600;
}
.cta-secondary:hover {
  color: var(--text);
}
.hero-bullets {
  color: var(--text-dim);
  display: flex;
  flex-wrap: wrap;
  font-size: 14px;
  gap: 8px 22px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.hero-bullets li {
  align-items: center;
  display: inline-flex;
  gap: 8px;
}
.dot {
  border-radius: 50%;
  display: inline-block;
  height: 8px;
  width: 8px;
}
.dot-red {
  background: var(--red);
  box-shadow: 0 0 12px rgba(249, 115, 115, 0.45);
}
.dot-green {
  background: var(--green);
  box-shadow: 0 0 12px rgba(139, 216, 166, 0.42);
}
.dot-blue {
  background: var(--blue);
  box-shadow: 0 0 12px rgba(120, 183, 255, 0.42);
}

.phone {
  background: linear-gradient(180deg, #3f2b25, #17110f);
  border-radius: 36px;
  box-shadow:
    0 50px 100px rgba(0, 0, 0, 0.5),
    0 10px 30px rgba(0, 0, 0, 0.34),
    inset 0 0 0 1px rgba(255, 255, 255, 0.05);
  min-height: 560px;
  padding: 6px;
  position: relative;
  width: 100%;
}
.phone img {
  border-radius: 30px;
  display: block;
  height: auto;
  min-height: 548px;
  object-fit: cover;
  position: relative;
  width: 100%;
  z-index: 2;
}
.phone-tilt-r {
  transform: rotate(2deg);
}
.phone-tilt-l {
  transform: rotate(-2deg);
}
.hero-phone-stack {
  height: 640px;
  position: relative;
}
.hero-phone-stack .phone {
  position: absolute;
  width: 290px;
}
.phone-back {
  filter: saturate(0.82);
  opacity: 0.64;
  right: 0;
  top: 20px;
  transform: rotate(8deg);
}
.phone-front {
  left: 0;
  top: 0;
  transform: rotate(-3deg);
  z-index: 2;
}

.story {
  background: var(--bg-soft);
  border-top: 1px solid var(--border-mute);
  padding: 70px 0 54px;
}
.story h2 {
  margin-bottom: 24px;
  max-width: 880px;
}
.story p {
  max-width: 780px;
}

.features {
  background:
    radial-gradient(700px 420px at 92% 0%, rgba(249, 115, 115, 0.07), transparent 62%),
    var(--bg-soft);
  padding: 80px 0 60px;
}
.features .section-h {
  margin-bottom: 60px;
}
.feature {
  align-items: center;
  border-top: 1px solid var(--border-mute);
  display: grid;
  gap: 70px;
  grid-template-columns: 1.05fr 0.95fr;
  padding: 50px 0;
}
.feature:first-of-type {
  border-top: 0;
  padding-top: 0;
}
.feature.reverse {
  direction: rtl;
}
.feature.reverse > * {
  direction: ltr;
}
.feature-copy {
  max-width: 560px;
}
.feature-num {
  color: var(--red);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  margin-bottom: 12px;
}
.feature-copy h3 {
  margin-bottom: 16px;
}
.feature-copy p {
  margin-bottom: 18px;
}
.check-list,
.steps {
  display: flex;
  flex-direction: column;
  gap: 10px;
  list-style: none;
  margin: 22px 0 0;
  padding: 0;
}
.check-list li {
  color: var(--text-dim);
  padding-left: 24px;
  position: relative;
}
.check-list li::before {
  border-bottom: 2px solid var(--green);
  border-left: 2px solid var(--green);
  content: '';
  height: 6px;
  left: 0;
  position: absolute;
  top: 9px;
  transform: rotate(-45deg);
  width: 12px;
}
.steps li {
  align-items: flex-start;
  color: var(--text-dim);
  display: flex;
  gap: 12px;
}
.steps span {
  align-items: center;
  background: var(--red-dim);
  border-radius: 50%;
  color: var(--red);
  display: inline-flex;
  flex: 0 0 auto;
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 800;
  height: 26px;
  justify-content: center;
  width: 26px;
}
.feature-shot {
  align-items: center;
  display: flex;
  justify-content: center;
  margin: 0;
}
.feature-shot .phone {
  width: 320px;
}

.privacy {
  background: var(--bg);
  border-top: 1px solid var(--border-mute);
  padding: 90px 0;
}
.privacy-grid {
  align-items: start;
  display: grid;
  gap: 60px;
  grid-template-columns: 1.1fr 0.9fr;
}
.privacy-list {
  display: grid;
  gap: 12px 28px;
  grid-template-columns: 1fr 1fr;
  list-style: none;
  margin: 0;
  padding: 0;
}
.privacy-list li {
  align-items: center;
  color: var(--text-dim);
  display: flex;
  font-size: 15px;
  gap: 10px;
}
.px {
  align-items: center;
  background: var(--green-dim);
  border-radius: 50%;
  color: var(--green);
  display: inline-flex;
  flex-shrink: 0;
  font-size: 13px;
  font-weight: 800;
  height: 22px;
  justify-content: center;
  width: 22px;
}
.link-arrow {
  font-weight: 700;
}

.cta-final {
  border-top: 1px solid var(--border-mute);
  overflow: hidden;
  padding: 110px 0;
  position: relative;
  text-align: center;
}
.cta-final::before {
  background: radial-gradient(620px 380px at 50% 0%, rgba(249, 115, 115, 0.12), transparent 62%);
  content: '';
  inset: 0;
  pointer-events: none;
  position: absolute;
}
.cta-final h2 {
  margin: 0 auto 36px;
  max-width: 720px;
  position: relative;
}
.cta-final .badge-play,
.cta-final .package {
  position: relative;
}
.cta-final .package {
  color: var(--mute);
  font-size: 13px;
  margin-top: 22px;
}

footer {
  background: var(--bg);
  border-top: 1px solid var(--border-mute);
  padding: 32px 0;
}
.foot {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: space-between;
}
.foot-brand {
  align-items: center;
  color: var(--text);
  display: inline-flex;
  font-weight: 750;
  gap: 10px;
}
.foot-brand img {
  border-radius: 6px;
}
.foot-nav {
  display: flex;
  gap: 22px;
}
.foot-nav a {
  color: var(--mute);
  font-size: 14px;
}
.foot-nav a:hover {
  color: var(--text);
}
.copy {
  color: var(--faint);
  font-size: 12px;
  margin: 0;
}

.legal {
  padding: 60px 0 100px;
}
.legal .wrap {
  max-width: 840px;
}
.legal h1 {
  font-size: 40px;
  margin-bottom: 10px;
}
.legal .effective {
  color: var(--mute);
  font-family: var(--mono);
  font-size: 13px;
  margin-bottom: 36px;
}
.legal h2 {
  border-top: 1px solid var(--border-mute);
  font-size: 22px;
  margin-bottom: 14px;
  margin-top: 40px;
  padding-top: 24px;
}
.legal h2:first-of-type {
  border-top: 0;
  padding-top: 0;
}
.legal p,
.legal li {
  color: var(--text-dim);
  font-size: 16px;
  line-height: 1.7;
}
.legal ul {
  padding-left: 22px;
}
.legal li {
  margin-bottom: 6px;
}
.legal .callout {
  background: var(--surface);
  border: 1px solid var(--border-mute);
  border-left: 3px solid var(--red);
  border-radius: 8px;
  margin: 24px 0;
  padding: 18px 20px;
}
.legal .callout p:last-child {
  margin-bottom: 0;
}
.legal .back {
  color: var(--mute);
  display: inline-flex;
  font-size: 14px;
  margin-bottom: 28px;
}
.legal .back:hover {
  color: var(--text);
}

@media (max-width: 1000px) {
  .hero {
    padding: 60px 0 70px;
  }
  .hero-grid {
    gap: 40px;
    grid-template-columns: 1fr;
  }
  .hero-phone-stack {
    height: 560px;
    margin: 0 auto;
    max-width: 520px;
  }
  .feature {
    gap: 30px;
    grid-template-columns: 1fr;
    padding: 40px 0;
  }
  .feature.reverse {
    direction: ltr;
  }
  .feature-shot {
    order: -1;
  }
  .privacy-grid {
    gap: 36px;
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  body {
    font-size: 16px;
  }
  .wrap {
    padding: 0 20px;
  }
  .site-header nav {
    display: none;
  }
  .hero {
    padding: 40px 0 60px;
  }
  .hero-phone-stack {
    height: 460px;
  }
  .hero-phone-stack .phone {
    min-height: 450px;
    width: 230px;
  }
  .hero-phone-stack .phone img {
    min-height: 438px;
  }
  .feature-shot .phone {
    min-height: 500px;
    width: 280px;
  }
  .feature-shot .phone img {
    min-height: 488px;
  }
  .privacy-list {
    grid-template-columns: 1fr;
  }
  .cta-final {
    padding: 70px 0;
  }
  .foot {
    align-items: flex-start;
    flex-direction: column;
  }
}
