:root {
  color-scheme: dark;
  --bg: #08090b;
  --panel: #12161a;
  --panel-2: #171d22;
  --text: #f7f7f4;
  --muted: #abb3bc;
  --line: rgba(255, 255, 255, 0.12);
  --orange: #ff6b00;
  --amber: #ffb21d;
  --green: #39d07a;
  --blue: #56a3ff;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 16% 20%, rgba(255, 107, 0, 0.18), transparent 28%),
    radial-gradient(circle at 82% 16%, rgba(86, 163, 255, 0.15), transparent 24%),
    linear-gradient(180deg, #111417 0%, var(--bg) 44%, #050607 100%);
  color: var(--text);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px max(24px, calc((100vw - 1160px) / 2));
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(8, 9, 11, 0.78);
  backdrop-filter: blur(18px);
}

.brand,
nav,
.hero-actions,
.score-row,
footer {
  display: flex;
  align-items: center;
}

.brand {
  gap: 12px;
  font-weight: 900;
  font-size: 20px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--orange), var(--amber));
  color: #111;
  box-shadow: 0 14px 30px rgba(255, 107, 0, 0.28);
}

nav {
  gap: 22px;
  color: var(--muted);
  font-weight: 700;
}

nav a:hover,
.text-link {
  color: var(--orange);
}

main {
  overflow: hidden;
}

.hero,
.section {
  width: min(1160px, calc(100% - 48px));
  margin: 0 auto;
}

.hero {
  min-height: 720px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: 56px;
  align-items: center;
  padding: 74px 0 64px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--orange);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 13px;
}

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

h1 {
  max-width: 780px;
  margin-bottom: 22px;
  font-size: clamp(48px, 7vw, 86px);
  line-height: 0.96;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 9px;
  font-size: 24px;
}

.lede {
  max-width: 650px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: 21px;
  line-height: 1.55;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  border-radius: 12px;
  padding: 0 20px;
  font-weight: 900;
}

.button.primary {
  background: linear-gradient(135deg, var(--orange), #ff8f1f);
  color: #130a03;
}

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

.device-stack {
  position: relative;
  min-height: 520px;
}

.phone-card {
  position: absolute;
  width: 292px;
  min-height: 520px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 36px;
  background: linear-gradient(145deg, rgba(31, 38, 44, 0.95), rgba(8, 10, 12, 0.96));
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.48);
}

.phone-card.front {
  right: 86px;
  top: 0;
  z-index: 2;
}

.phone-card.back {
  right: 0;
  top: 72px;
  transform: rotate(7deg);
  opacity: 0.72;
}

.phone-top {
  width: 96px;
  height: 28px;
  margin: 0 auto 44px;
  border-radius: 20px;
  background: #000;
}

.tag,
.status,
.price-pill {
  display: inline-flex;
  margin-bottom: 12px;
  border-radius: 999px;
  padding: 7px 11px;
  background: rgba(255, 107, 0, 0.14);
  color: var(--orange);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.price-pill {
  margin: 16px 0 0;
  color: #140800;
  background: linear-gradient(135deg, var(--orange), var(--amber));
}

.phone-card p,
.app-card p,
.steps p,
.contact p,
.signup small,
footer {
  color: var(--muted);
  line-height: 1.55;
}

.score-row {
  gap: 14px;
  margin: 26px 0;
  padding: 16px;
  border-radius: 18px;
  background: rgba(57, 208, 122, 0.12);
}

.score-row strong {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 16px;
  background: rgba(57, 208, 122, 0.32);
  font-size: 28px;
}

.score-row span {
  color: #d7efe0;
  font-weight: 800;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.chips span {
  border-radius: 999px;
  padding: 8px 10px;
  background: rgba(255, 255, 255, 0.08);
  color: #d7dce2;
  font-size: 13px;
}

.phone-card ul {
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.phone-card li {
  margin-bottom: 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px;
  color: var(--muted);
}

.section {
  padding: 74px 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 30px;
}

.app-grid {
  display: grid;
  grid-template-columns: 1.15fr repeat(2, 0.85fr);
  gap: 18px;
}

.app-card,
.steps article,
.contact,
.signup {
  border: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(23, 29, 34, 0.92), rgba(13, 16, 19, 0.92));
}

.app-card {
  display: grid;
  align-content: start;
  gap: 20px;
  min-height: 360px;
  border-radius: 18px;
  padding: 24px;
}

.app-card.featured {
  background:
    linear-gradient(145deg, rgba(255, 107, 0, 0.14), transparent 55%),
    linear-gradient(145deg, rgba(23, 29, 34, 0.96), rgba(9, 11, 13, 0.96));
}

.app-card.muted {
  opacity: 0.82;
}

.app-icon {
  display: grid;
  place-items: center;
  width: 74px;
  height: 74px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--orange), var(--amber));
  color: #161006;
  font-size: 34px;
  font-weight: 900;
}

.mini-price {
  display: grid;
  gap: 3px;
  width: fit-content;
  border: 1px solid rgba(255, 107, 0, 0.3);
  border-radius: 14px;
  padding: 10px 12px;
  background: rgba(255, 107, 0, 0.1);
}

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

.mini-price span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.pricing-section {
  padding-top: 30px;
}

.pricing-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  border: 1px solid rgba(255, 107, 0, 0.28);
  border-radius: 22px;
  padding: 30px;
  background:
    linear-gradient(135deg, rgba(255, 107, 0, 0.16), transparent 46%),
    linear-gradient(145deg, rgba(23, 29, 34, 0.96), rgba(9, 11, 13, 0.96));
}

.pricing-card h3 {
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1;
}

.price-lockup {
  display: grid;
  place-items: center;
  min-width: 210px;
  min-height: 210px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.06);
}

.price-lockup strong {
  font-size: 72px;
  line-height: 0.9;
}

.price-lockup span {
  color: var(--muted);
  font-weight: 900;
  text-transform: uppercase;
}

.price-lockup b {
  color: var(--orange);
  font-size: 22px;
}

.text-link {
  align-self: end;
  font-weight: 900;
}

.split {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 44px;
  align-items: start;
}

.steps {
  display: grid;
  gap: 14px;
}

.steps article {
  border-radius: 16px;
  padding: 22px;
}

.steps span {
  color: var(--orange);
  font-weight: 900;
}

.contact {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 28px;
  align-items: center;
  margin-bottom: 60px;
  border-radius: 22px;
  padding: 30px;
}

.signup {
  border-radius: 16px;
  padding: 18px;
}

.signup label {
  display: block;
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.signup div {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}

input,
button {
  font: inherit;
}

input {
  width: 100%;
  min-height: 50px;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0 14px;
  outline: 0;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
}

button {
  border: 0;
  border-radius: 12px;
  padding: 0 16px;
  background: var(--orange);
  color: #160b02;
  font-weight: 900;
  cursor: pointer;
}

.signup small {
  display: block;
  margin-top: 10px;
}

footer {
  justify-content: space-between;
  gap: 18px;
  width: min(1160px, calc(100% - 48px));
  margin: 0 auto;
  padding: 26px 0 40px;
  border-top: 1px solid var(--line);
}

footer span:first-child {
  color: var(--text);
  font-weight: 900;
}

.footer-links {
  flex-wrap: wrap;
  justify-content: flex-end;
}

.policy-page {
  width: min(920px, calc(100% - 48px));
  margin: 0 auto;
  padding: 72px 0;
}

.policy-hero {
  margin-bottom: 28px;
}

.policy-hero h1 {
  max-width: 100%;
  font-size: clamp(44px, 7vw, 74px);
}

.policy-card {
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: clamp(22px, 4vw, 40px);
  background: linear-gradient(145deg, rgba(23, 29, 34, 0.94), rgba(9, 11, 13, 0.94));
}

.policy-card h2 {
  margin-top: 30px;
  font-size: 26px;
}

.policy-card h2:first-child {
  margin-top: 0;
}

.policy-card p {
  color: var(--muted);
  line-height: 1.7;
}

@media (max-width: 900px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero,
  .split,
  .contact,
  .app-grid,
  .pricing-card {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 0;
    padding-top: 46px;
  }

  .device-stack {
    min-height: 560px;
  }

  .phone-card.front {
    left: 0;
    right: auto;
  }

  .phone-card.back {
    right: 0;
  }
}

@media (max-width: 560px) {
  .site-header,
  .hero,
  .section,
  footer {
    width: auto;
  }

  .hero,
  .section,
  footer {
    margin-inline: 18px;
  }

  nav {
    width: 100%;
    justify-content: space-between;
    gap: 10px;
    font-size: 13px;
  }

  h1 {
    font-size: 45px;
  }

  h2 {
    font-size: 34px;
  }

  .lede {
    font-size: 18px;
  }

  .device-stack {
    min-height: 470px;
  }

  .phone-card {
    width: 236px;
    min-height: 430px;
    padding: 20px;
    border-radius: 28px;
  }

  .phone-card.front {
    left: 0;
  }

  .phone-card.back {
    right: -22px;
  }

  .signup div {
    grid-template-columns: 1fr;
  }

  .price-lockup {
    min-width: 100%;
  }

  button {
    min-height: 50px;
  }

  footer {
    display: grid;
    gap: 8px;
  }

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