:root {
  --app-black: #050504;
  --control-black: #0a0907;
  --surface: #18150f;
  --elevated: #221d14;
  --yellow: #ffd130;
  --yellow-pressed: #e6b800;
  --stroke: #6e5917;
  --text: #fff6e2;
  --muted: #c9bea6;
  --soft: #8f8062;
  --danger: #ff4747;
}

* {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  background: var(--app-black);
}

body {
  margin: 0;
  background: linear-gradient(180deg, #070604 0%, var(--app-black) 34rem);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.62;
  font-size: 16px;
}

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

a:hover {
  color: var(--yellow-pressed);
}

.page {
  width: min(980px, 100%);
  margin: 0 auto;
  padding: 24px 20px 48px;
}

.legal-page {
  width: min(780px, 100%);
}

.product-page {
  width: min(1120px, 100%);
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 0 22px;
}

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

.mark {
  display: block;
  width: 36px;
  height: 36px;
  flex: 0 0 auto;
  border-radius: 10px;
  background: var(--app-black);
  object-fit: cover;
  box-shadow: 0 0 24px rgba(255, 209, 48, 0.18);
}

.brand span:last-child {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.nav {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 14px;
  font-weight: 750;
}

.nav a {
  color: var(--muted);
}

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

.hero {
  display: block;
  max-width: 760px;
  min-height: min(520px, calc(100vh - 86px));
  padding: 72px 0 44px;
}

.product-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 380px);
  align-items: center;
  gap: 42px;
  max-width: none;
  min-height: min(660px, calc(100vh - 84px));
  padding: 46px 0 36px;
}

.hero-copy {
  min-width: 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 14px;
  color: var(--yellow);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0;
}

.eyebrow::before {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--yellow);
  content: "";
  box-shadow: 0 0 18px rgba(255, 209, 48, 0.38);
}

h1 {
  margin: 0;
  color: var(--yellow);
  font-size: clamp(42px, 8vw, 76px);
  line-height: 0.98;
  letter-spacing: 0;
}

.legal-title {
  padding: 10px 0 18px;
  border-bottom: 1px solid rgba(255, 209, 48, 0.25);
}

.legal-title h1 {
  color: var(--text);
  font-size: clamp(28px, 6vw, 36px);
  line-height: 1.04;
}

.updated {
  margin: 10px 0 0;
  color: var(--soft);
  font-size: 14px;
  font-weight: 700;
}

.lead {
  max-width: 650px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.trust-line {
  display: inline-flex;
  margin: 24px 0 0;
  padding: 9px 12px;
  border: 1px solid rgba(255, 209, 48, 0.28);
  border-radius: 8px;
  color: var(--text);
  background: rgba(24, 21, 15, 0.82);
  font-size: 14px;
  font-weight: 800;
}

.hero-media {
  width: min(100%, 315px);
  justify-self: end;
}

.product-video {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1170 / 2532;
  border: 1px solid rgba(255, 209, 48, 0.34);
  border-radius: 28px;
  background: var(--control-black);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.34);
  object-fit: contain;
  object-position: center;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid rgba(255, 209, 48, 0.72);
  border-radius: 999px;
  background: var(--yellow);
  color: var(--app-black);
  font-weight: 850;
}

.button.secondary {
  background: rgba(255, 209, 48, 0.06);
  color: var(--text);
}

.button:hover {
  background: var(--yellow-pressed);
  color: var(--app-black);
}

.button.secondary:hover {
  background: rgba(255, 209, 48, 0.12);
  color: var(--yellow);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 16px;
}

.feature-card {
  padding: 18px;
  border: 1px solid rgba(110, 89, 23, 0.78);
  border-radius: 8px;
  background: rgba(24, 21, 15, 0.9);
}

.feature-card h2 {
  margin: 0 0 8px;
  color: var(--yellow);
  font-size: 18px;
  line-height: 1.25;
  letter-spacing: 0;
}

.feature-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.showcase {
  margin-top: 54px;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 20px;
}

.section-heading h2 {
  margin: 0;
  color: var(--text);
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.08;
  letter-spacing: 0;
}

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

.comparison-set {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  min-width: 0;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.phone-shot {
  min-width: 0;
  margin: 0;
}

.phone-shot img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1170 / 2532;
  border: 1px solid rgba(255, 209, 48, 0.24);
  border-radius: 18px;
  background: var(--control-black);
  object-fit: cover;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.24);
}

.photo-shot img {
  aspect-ratio: 2 / 3;
}

.phone-shot figcaption {
  margin-top: 8px;
  color: var(--soft);
  font-size: 13px;
  font-weight: 800;
  text-align: center;
}

.section-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 8px;
}

.section {
  margin-top: 18px;
  padding: 20px;
  border: 1px solid rgba(110, 89, 23, 0.82);
  border-radius: 18px;
  background: rgba(24, 21, 15, 0.94);
}

.section.notice {
  border-color: rgba(255, 209, 48, 0.55);
  background: rgba(34, 29, 20, 0.96);
}

.legal-page .section {
  margin-top: 0;
  padding: 22px 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.legal-page .section.notice {
  margin: 20px 0 0;
  padding: 16px 18px;
  border: 1px solid rgba(255, 209, 48, 0.55);
  border-radius: 14px;
  background: rgba(34, 29, 20, 0.96);
}

.section h2 {
  margin: 0 0 10px;
  color: var(--yellow);
  font-size: 19px;
  line-height: 1.25;
  letter-spacing: 0;
}

.section p {
  margin: 0 0 12px;
  color: var(--muted);
}

.section p:last-child {
  margin-bottom: 0;
}

.section ul {
  margin: 10px 0 0;
  padding-left: 20px;
  color: var(--muted);
}

.section li {
  margin: 8px 0;
}

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

.footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 34px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 209, 48, 0.18);
  color: var(--soft);
  font-size: 14px;
}

.legal-footer {
  justify-content: flex-start;
  margin-top: 24px;
}

@media (max-width: 900px) {
  .page {
    padding: 18px 16px 38px;
  }

  .site-header {
    align-items: flex-start;
  }

  .nav {
    flex-wrap: wrap;
    justify-content: flex-end;
    row-gap: 6px;
  }

  .hero {
    min-height: auto;
    padding: 44px 0 30px;
  }

  .product-hero {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 34px 0 28px;
  }

  .hero-media {
    width: min(100%, 210px);
    justify-self: center;
  }

  .lead {
    font-size: 16px;
  }

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

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

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

  .process-shot img {
    aspect-ratio: 1170 / 2100;
    object-position: center 45%;
  }

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

@media (max-width: 560px) {
  h1 {
    font-size: clamp(40px, 13vw, 58px);
  }

  .legal-title {
    padding-inline: 56px;
    text-align: center;
  }

  .legal-title h1 {
    font-size: clamp(24px, 7.5vw, 30px);
  }

  .product-page h1 {
    font-size: clamp(36px, 11vw, 46px);
  }

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

  .comparison-set {
    gap: 10px;
  }

  .phone-shot img {
    border-radius: 12px;
  }

  .product-video {
    border-radius: 20px;
  }

  .hero-media {
    width: min(100%, 190px);
  }
}
