:root {
  color-scheme: dark;
  --bg: #050505;
  --panel: #121212;
  --panel-strong: #191919;
  --text: #f6f3ee;
  --muted: #a7a19a;
  --line: #303030;
  --red: #f1362f;
  --amber: #f8b84e;
  --green: #67ca7a;
  --blue: #55a7ff;
  --shadow: rgba(0, 0, 0, 0.5);
}

* {
  box-sizing: border-box;
}

html {
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", sans-serif;
  line-height: 1.5;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 50% 0%, rgba(241, 54, 47, 0.14), transparent 28rem),
    linear-gradient(180deg, #050505 0%, #0b0b0b 48%, #050505 100%);
}

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

.site-header,
.section,
.footer {
  margin: 0 auto;
  max-width: 1120px;
  padding-left: 22px;
  padding-right: 22px;
}

.site-header {
  align-items: center;
  display: flex;
  justify-content: space-between;
  padding-top: 22px;
  position: relative;
  z-index: 2;
}

.brand {
  align-items: center;
  display: inline-flex;
  gap: 10px;
  font-size: 15px;
  font-weight: 850;
  letter-spacing: 0;
  white-space: nowrap;
}

.brand img {
  border-radius: 10px;
  height: 32px;
  width: 32px;
}

.nav {
  align-items: center;
  display: flex;
  gap: 8px;
}

.nav a,
.pill,
.button-link {
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  display: inline-flex;
  font-size: 13px;
  font-weight: 800;
  min-height: 38px;
  padding: 8px 14px;
}

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

.nav a:hover,
.button-link:hover {
  border-color: #4b4b4b;
  color: var(--text);
}

.hero {
  display: grid;
  gap: 36px;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
  min-height: calc(100svh - 96px);
  padding-bottom: 48px;
  padding-top: 54px;
}

.hero-copy {
  align-self: center;
  max-width: 680px;
}

.eyebrow {
  color: var(--amber);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  margin: 0 0 16px;
  text-transform: uppercase;
}

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

h1 {
  font-size: clamp(54px, 9vw, 112px);
  letter-spacing: 0;
  line-height: 0.9;
  margin-bottom: 22px;
  max-width: 760px;
}

h2 {
  font-size: clamp(30px, 5vw, 56px);
  letter-spacing: 0;
  line-height: 1;
  margin-bottom: 16px;
}

h3 {
  font-size: 19px;
  line-height: 1.15;
  margin-bottom: 8px;
}

.lede {
  color: var(--muted);
  font-size: clamp(18px, 2.6vw, 24px);
  max-width: 620px;
}

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

.button-link.primary {
  background: var(--text);
  border-color: var(--text);
  color: #090909;
}

.button-link.secondary {
  background: rgba(255, 255, 255, 0.04);
}

.hero-visual {
  align-self: center;
  min-height: 520px;
  position: relative;
}

.phone {
  background: #050505;
  border: 1px solid #252525;
  border-radius: 38px;
  box-shadow: 0 28px 80px var(--shadow), inset 0 0 0 9px #101010;
  margin-left: auto;
  max-width: 360px;
  min-height: 640px;
  overflow: hidden;
  padding: 30px 26px;
  position: relative;
}

.phone-top {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin-bottom: 60px;
}

.phone-title,
.phone-profile {
  color: var(--muted);
  font-size: 13px;
  font-weight: 850;
}

.phone-profile {
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--text);
  padding: 7px 12px;
}

.counter {
  text-align: center;
}

.counter span {
  color: #5c5854;
  display: block;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.counter strong {
  display: block;
  font-size: 82px;
  line-height: 1;
}

.button-art {
  display: block;
  filter: drop-shadow(0 24px 28px rgba(0, 0, 0, 0.68));
  margin: 34px auto 44px;
  max-width: 100%;
  width: 310px;
}

.meter-panel {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 16px;
}

.meter-panel strong {
  display: block;
  font-size: 15px;
  margin-bottom: 12px;
}

.meter {
  display: grid;
  gap: 7px;
  margin-top: 10px;
}

.meter-label {
  align-items: center;
  color: var(--muted);
  display: flex;
  font-size: 12px;
  font-weight: 850;
  justify-content: space-between;
}

.meter-track {
  background: #202020;
  border-radius: 999px;
  height: 10px;
  overflow: hidden;
}

.meter-fill {
  background: var(--red);
  border-radius: inherit;
  height: 100%;
}

.meter-fill.green {
  background: var(--green);
}

.section {
  padding-bottom: 78px;
  padding-top: 78px;
}

.section-heading {
  max-width: 740px;
}

.section-heading p,
.feature p,
.price-card p,
.legal-body p,
.legal-body li,
.support-list li {
  color: var(--muted);
}

.feature-grid,
.price-grid,
.skin-grid {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

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

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

.skin-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.feature,
.price-card,
.skin,
.legal-body,
.support-panel {
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px;
}

.feature mark {
  background: transparent;
  color: var(--amber);
  display: block;
  font-size: 12px;
  font-weight: 950;
  margin-bottom: 20px;
}

.price {
  align-items: baseline;
  display: flex;
  gap: 6px;
  margin: 16px 0 6px;
}

.price strong {
  font-size: 44px;
  line-height: 1;
}

.price span {
  color: var(--muted);
  font-weight: 800;
}

.check-list {
  color: var(--muted);
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
}

.check-list li {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 11px 0;
}

.skin {
  min-height: 136px;
}

.swatch {
  border: 8px solid #202326;
  border-radius: 999px;
  box-shadow: inset 0 8px 14px rgba(255, 255, 255, 0.16), 0 12px 24px rgba(0, 0, 0, 0.3);
  height: 64px;
  margin-bottom: 14px;
  width: 64px;
}

.swatch.red {
  background: #f12a24;
}

.swatch.blue {
  background: #2d8cff;
  border-color: #182f57;
}

.swatch.mint {
  background: #5ff0b0;
  border-color: #1f3c34;
}

.swatch.hazard {
  background: #ffce3a;
  border-color: #242423;
}

.swatch.neon {
  background: #b968ff;
  border-color: #231236;
}

.swatch.chrome {
  background: #d9dde6;
  border-color: #12151a;
}

.legal-hero {
  padding-bottom: 32px;
  padding-top: 54px;
}

.legal-body {
  max-width: 880px;
}

.legal-body h2 {
  font-size: 26px;
  margin-top: 34px;
}

.legal-body a {
  border-bottom: 1px solid var(--line);
  color: var(--text);
}

.support-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.support-list li {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 14px 0;
}

.footer {
  align-items: center;
  border-top: 1px solid var(--line);
  color: var(--muted);
  display: flex;
  font-size: 13px;
  gap: 14px;
  justify-content: space-between;
  padding-bottom: 34px;
  padding-top: 34px;
}

.footer-links {
  display: flex;
  gap: 14px;
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 44px;
  }

  .hero-visual {
    min-height: auto;
  }

  .phone {
    margin: 0 auto;
  }

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

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

  .nav {
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .nav a {
    min-height: 34px;
    padding: 7px 10px;
  }

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

  .phone {
    border-radius: 30px;
    min-height: 560px;
    padding: 24px 20px;
  }

  .counter strong {
    font-size: 68px;
  }

  .footer {
    align-items: flex-start;
    flex-direction: column;
  }
}
