:root {
  color-scheme: dark;
  --bg: #080808;
  --bg-soft: #10100f;
  --surface: #171615;
  --surface-strong: #201f1d;
  --line: rgba(243, 199, 117, 0.28);
  --line-soft: rgba(255, 255, 255, 0.12);
  --text: #f5f2ec;
  --muted: rgba(245, 242, 236, 0.64);
  --quiet: rgba(245, 242, 236, 0.42);
  --gold: #f3c775;
  --gold-strong: #df9f3d;
  --green: #76d67c;
  --ink: #080808;
  --radius: 8px;
  --device-radius: 32px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Helvetica Neue", Arial, sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(8, 8, 8, 0.82);
  border-bottom: 1px solid var(--line-soft);
  backdrop-filter: blur(18px);
}

.nav {
  width: min(1180px, calc(100% - 32px));
  min-height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  font-size: 1.15rem;
  font-weight: 800;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--muted);
  font-size: 0.95rem;
}

.nav-links a:hover {
  color: var(--text);
}

.nav-cta,
.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  padding: 0 18px;
  font-weight: 800;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.nav-cta {
  color: var(--gold);
  background: rgba(243, 199, 117, 0.08);
  font-size: 0.9rem;
}

.button:hover,
.nav-cta:hover {
  transform: translateY(-1px);
  border-color: rgba(243, 199, 117, 0.62);
}

.button.primary {
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  border-color: var(--line-soft);
}

.hero {
  position: relative;
  min-height: 78svh;
  overflow: hidden;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--line-soft);
  background:
    radial-gradient(circle at 70% 42%, rgba(223, 159, 61, 0.22), transparent 34%),
    linear-gradient(180deg, #080808 0%, #10100f 100%);
}

.hero-image {
  position: absolute;
  top: 50%;
  right: max(24px, 8vw);
  width: min(34vw, 430px);
  height: auto;
  aspect-ratio: 760 / 1652;
  object-fit: contain;
  transform: translateY(-50%);
  opacity: 0.72;
  border-radius: var(--device-radius);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.54);
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 8, 8, 0.98) 0%, rgba(8, 8, 8, 0.84) 50%, rgba(8, 8, 8, 0.34) 100%),
    linear-gradient(180deg, rgba(8, 8, 8, 0.18) 0%, rgba(8, 8, 8, 0.08) 48%, rgba(8, 8, 8, 0.76) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 88px 0 64px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.hero h1,
.section h2,
.final-cta h2 {
  margin: 0;
  font-weight: 850;
  line-height: 1.04;
}

.hero h1 {
  max-width: 650px;
  font-size: 4.75rem;
}

.hero-copy {
  max-width: 560px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 1.2rem;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.mode-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 760px;
  margin-top: 28px;
}

.mode-strip span {
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  color: var(--muted);
  padding: 9px 12px;
  font-size: 0.92rem;
}

.section {
  padding: 96px 0;
}

.section-dark {
  background: var(--bg-soft);
}

.section-head,
.proof-grid,
.screen-grid,
.mode-grid,
.steps,
.trust-list,
.pricing-grid,
.final-cta,
.legal,
.container {
  width: min(1180px, calc(100% - 32px));
  margin-left: auto;
  margin-right: auto;
}

.section-head {
  max-width: 760px;
  text-align: center;
  margin-bottom: 48px;
}

.section-head.align-left {
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

.section h2 {
  font-size: 3.1rem;
}

.section-head p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.1rem;
  margin: 18px 0 0;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.proof-item,
.mode-card,
.steps article,
.price-card {
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
  padding: 28px;
}

.proof-kicker,
.mode-label,
.price-card span,
.steps span {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.proof-item h3,
.mode-card h3,
.steps h3,
.price-card h3 {
  margin: 16px 0 8px;
  font-size: 1.45rem;
  line-height: 1.16;
}

.proof-item p,
.mode-card p,
.steps p,
.price-card p {
  margin: 0;
  color: var(--muted);
}

.screen-section {
  background:
    linear-gradient(180deg, #080808 0%, #10100f 100%);
}

.screen-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(280px, 430px));
  align-items: start;
  justify-content: center;
  gap: 22px;
}

.device-frame {
  margin: 0;
  width: 100%;
  max-width: 430px;
  justify-self: center;
  border-radius: var(--device-radius);
  border: 1px solid var(--line);
  background: #050505;
  padding: 10px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
}

.device-frame img {
  width: 100%;
  height: auto;
  aspect-ratio: 900 / 1956;
  object-fit: contain;
  border-radius: 24px;
}

.device-frame figcaption {
  color: var(--quiet);
  font-size: 0.92rem;
  padding: 12px 6px 4px;
}

.hero-device {
  margin-top: 0;
}

.light-device {
  background: #eeece4;
  border-color: rgba(255, 255, 255, 0.38);
}

.mode-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.mode-card {
  min-height: 330px;
}

.mode-card.highlighted {
  border-color: var(--line);
  background: rgba(243, 199, 117, 0.07);
}

.mode-card ul {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
}

.mode-card li {
  padding: 9px 0;
  border-top: 1px solid var(--line-soft);
}

.setup-section {
  background: #0b0b0a;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.trust-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line-soft);
  border-left: 1px solid var(--line-soft);
}

.trust-list div {
  min-height: 190px;
  padding: 24px;
  border-right: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}

.trust-list strong {
  display: block;
  margin-bottom: 12px;
  color: var(--text);
  font-size: 1.05rem;
}

.trust-list span {
  display: block;
  color: var(--muted);
}

.pricing-section {
  background: #090909;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.price-card.recommended {
  border-color: var(--gold);
  background: rgba(243, 199, 117, 0.08);
}

.price {
  color: var(--text) !important;
  font-size: 2rem;
  font-weight: 850;
  margin: 18px 0 10px !important;
}

.final-cta {
  margin-top: 56px;
  padding-top: 48px;
  border-top: 1px solid var(--line-soft);
  text-align: center;
}

.final-cta h2 {
  font-size: 2.2rem;
  margin-bottom: 24px;
}

.site-footer {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 44px 0;
  color: var(--quiet);
  border-top: 1px solid var(--line-soft);
}

.site-footer div,
.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.site-footer strong {
  color: var(--text);
}

.site-footer a:hover {
  color: var(--text);
}

nav {
  display: flex;
}

.container {
  max-width: 860px;
}

.legal {
  max-width: 860px;
  padding: 72px 0 80px;
}

.legal .legal-intro {
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--muted);
  border-left: 3px solid var(--gold);
  padding: 12px 16px;
  margin: 8px 0 32px;
  background: rgba(243, 199, 117, 0.05);
  border-radius: 0 8px 8px 0;
}

.legal h1 {
  margin: 0 0 12px;
  font-size: 3rem;
  line-height: 1.08;
}

.legal h2 {
  margin: 42px 0 12px;
  font-size: 1.45rem;
}

.legal h3 {
  margin: 28px 0 10px;
}

.legal p,
.legal li {
  color: var(--muted);
}

.legal a,
.legal strong {
  color: var(--text);
}

.legal ul,
.legal ol {
  padding-left: 22px;
}

footer:not(.site-footer) {
  width: min(860px, calc(100% - 32px));
  margin: 0 auto;
  padding: 32px 0 48px;
  color: var(--quiet);
  border-top: 1px solid var(--line-soft);
}

footer:not(.site-footer) a {
  color: var(--muted);
}

.help-hero {
  border-bottom: 1px solid var(--line-soft);
  background: linear-gradient(180deg, rgba(16, 16, 15, 0.96) 0%, rgba(8, 8, 8, 1) 100%);
}

.help-hero-inner {
  width: min(980px, calc(100% - 32px));
  margin: 0 auto;
  padding: 86px 0 58px;
}

.help-hero h1 {
  max-width: 820px;
  margin: 0;
  font-size: 3.6rem;
  line-height: 1.04;
}

.help-hero p:not(.eyebrow) {
  max-width: 690px;
  color: var(--muted);
  font-size: 1.12rem;
}

.help-layout {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 56px 0 84px;
  display: grid;
  grid-template-columns: minmax(240px, 320px) 1fr;
  gap: 28px;
  align-items: start;
}

.help-side {
  position: sticky;
  top: 96px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(243, 199, 117, 0.06);
  padding: 24px;
}

.help-side strong {
  display: block;
  margin-bottom: 14px;
  color: var(--text);
}

.help-side ol {
  margin: 0 0 22px;
  padding-left: 21px;
  color: var(--muted);
}

.help-side li {
  padding: 5px 0;
}

.help-main {
  display: grid;
  gap: 14px;
}

.help-panel {
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
  padding: 26px;
}

.help-panel span {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 850;
}

.help-panel h2 {
  margin: 10px 0 8px;
  font-size: 1.55rem;
  line-height: 1.16;
}

.help-panel p,
.help-panel li {
  color: var(--muted);
}

.help-panel ul {
  margin: 16px 0 0;
  padding-left: 20px;
}

.help-panel li {
  padding: 4px 0;
}

.support-panel {
  border-color: var(--line);
  background: rgba(243, 199, 117, 0.07);
}

@media (max-width: 920px) {
  .nav-links {
    display: none;
  }

  .hero h1 {
    font-size: 3.4rem;
  }

  .hero-image {
    right: 3vw;
    width: min(38vw, 360px);
    opacity: 0.5;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(8, 8, 8, 0.98) 0%, rgba(8, 8, 8, 0.86) 66%, rgba(8, 8, 8, 0.46) 100%),
      linear-gradient(180deg, rgba(8, 8, 8, 0.44) 0%, rgba(8, 8, 8, 0.12) 46%, rgba(8, 8, 8, 0.92) 100%);
  }

  .section h2 {
    font-size: 2.45rem;
  }

  .proof-grid,
  .mode-grid,
  .steps,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .screen-grid {
    grid-template-columns: repeat(2, minmax(260px, 1fr));
  }

  .hero-device {
    margin-top: 0;
  }

  .trust-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .site-footer {
    flex-direction: column;
  }

  .help-hero h1 {
    font-size: 2.85rem;
  }

  .help-layout {
    grid-template-columns: 1fr;
  }

  .help-side {
    position: static;
  }
}

@media (max-width: 620px) {
  .nav {
    min-height: 66px;
  }

  .nav-cta {
    display: none;
  }

  .hero {
    min-height: auto;
    align-items: flex-start;
  }

  .hero-content {
    padding: 44px 0 56px;
  }

  .hero h1 {
    font-size: 2.55rem;
    max-width: 360px;
  }

  .hero-copy {
    font-size: 1.02rem;
    max-width: 340px;
  }

  .hero-image {
    right: -18vw;
    width: 76vw;
    opacity: 0.24;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(8, 8, 8, 0.99) 0%, rgba(8, 8, 8, 0.88) 100%),
      linear-gradient(180deg, rgba(8, 8, 8, 0.68) 0%, rgba(8, 8, 8, 0.14) 44%, rgba(8, 8, 8, 0.94) 100%);
  }

  .button {
    width: 100%;
  }

  .section {
    padding: 68px 0;
  }

  .section h2 {
    font-size: 2rem;
  }

  .screen-grid {
    grid-template-columns: 1fr;
  }

  .device-frame {
    border-radius: 24px;
  }

  .device-frame img {
    border-radius: 18px;
  }

  .trust-list {
    grid-template-columns: 1fr;
  }

  .legal h1 {
    font-size: 2.2rem;
  }

  .help-hero-inner {
    padding: 48px 0 42px;
  }

  .help-hero h1 {
    font-size: 2.2rem;
  }

  .help-layout {
    padding: 34px 0 58px;
  }

  .help-panel,
  .help-side {
    padding: 20px;
  }
}
