:root {
  color-scheme: dark;
  --bg: #060706;
  --panel: #101411;
  --panel-strong: #171d19;
  --text: #f3f2ea;
  --muted: #a9afa5;
  --line: rgba(243, 242, 234, 0.14);
  --green: #78e08f;
  --mint: #b7f7d4;
  --amber: #ffd166;
  --red: #ff6b6b;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
  font-family: "Avenir Next", "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 82% 8%, rgba(120, 224, 143, 0.18), transparent 32rem),
    linear-gradient(145deg, #060706 0%, #0d120e 44%, #050505 100%);
  color: var(--text);
}

a {
  color: inherit;
}

.shell {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(20px);
  background: rgba(6, 7, 6, 0.78);
  border-bottom: 1px solid var(--line);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0;
}

.mark {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  color: #071008;
  background: linear-gradient(135deg, var(--green), var(--mint));
  border-radius: 8px;
  box-shadow: 0 0 0 6px rgba(120, 224, 143, 0.08);
}

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

.nav-links a {
  text-decoration: none;
}

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

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  align-items: center;
  gap: 56px;
  min-height: calc(100vh - 72px);
  padding: 48px 0 44px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--green);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  max-width: 690px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 6.1vw, 82px);
  line-height: 0.94;
  letter-spacing: 0;
}

.lead {
  max-width: 620px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: clamp(17px, 1.55vw, 20px);
  line-height: 1.5;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  text-decoration: none;
  font-weight: 800;
}

.button.primary {
  color: #071008;
  background: var(--green);
  border-color: var(--green);
}

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

.store-note {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.phone {
  position: relative;
  max-width: 390px;
  margin-left: auto;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 42px;
  background: linear-gradient(160deg, #191f1b, #050605);
  box-shadow: var(--shadow);
}

.screen {
  overflow: hidden;
  min-height: 690px;
  padding: 28px 20px;
  border-radius: 30px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.04), transparent 22%),
    #080908;
}

.status {
  display: flex;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  font-weight: 700;
}

.phone-title {
  margin-top: 30px;
}

.phone-title strong {
  display: block;
  font-size: 31px;
  line-height: 1.05;
}

.phone-title span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  line-height: 1.4;
}

.photo-stack {
  position: relative;
  height: 330px;
  margin: 34px 0 26px;
}

.photo-card {
  position: absolute;
  inset: 0;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 18px;
  border-radius: 22px;
  background:
    linear-gradient(180deg, transparent 30%, rgba(0, 0, 0, 0.72)),
    linear-gradient(135deg, #274236, #b9c58d 48%, #3b6f70);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.38);
}

.photo-card img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, transparent 28%, rgba(0, 0, 0, 0.74));
}

.photo-card:nth-child(2) {
  transform: rotate(-7deg) translate(-18px, 10px);
  opacity: 0.64;
}

.photo-card:nth-child(3) {
  transform: rotate(8deg) translate(18px, 18px);
  opacity: 0.48;
}

.photo-card:first-child {
  z-index: 2;
}

.badge-row {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.badge {
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.42);
  color: white;
  font-size: 12px;
  font-weight: 800;
}

.decision-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.decision {
  padding: 16px;
  border-radius: 16px;
  text-align: center;
  font-weight: 900;
}

.decision.keep {
  background: rgba(120, 224, 143, 0.16);
  color: var(--green);
}

.decision.delete {
  background: rgba(255, 107, 107, 0.14);
  color: var(--red);
}

.section {
  padding: 84px 0;
  border-top: 1px solid var(--line);
}

.section h2,
.legal h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(36px, 5vw, 66px);
  line-height: 0.98;
  letter-spacing: 0;
}

.section-intro {
  max-width: 700px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
}

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

.feature {
  min-height: 230px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
}

.feature strong {
  display: block;
  margin: 16px 0 10px;
  font-size: 21px;
}

.feature p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: #071008;
  background: var(--amber);
  border-radius: 8px;
  font-weight: 900;
}

.privacy-band {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 34px;
  align-items: start;
  padding: 34px;
  border: 1px solid rgba(120, 224, 143, 0.28);
  border-radius: 8px;
  background: rgba(120, 224, 143, 0.08);
}

.privacy-band ul {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
}

.privacy-band li::before {
  content: "+";
  margin-right: 10px;
  color: var(--green);
  font-weight: 900;
}

.legal {
  max-width: 860px;
  padding: 64px 0 96px;
}

.legal .updated {
  margin: 16px 0 36px;
  color: var(--muted);
}

.legal h2 {
  margin: 36px 0 12px;
  font-size: 25px;
}

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

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

.footer {
  padding: 36px 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

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

@media (max-width: 860px) {
  .nav {
    align-items: flex-start;
    flex-direction: column;
    padding: 16px 0;
  }

  .nav-links {
    flex-wrap: wrap;
  }

  .hero,
  .privacy-band {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 42px;
  }

  h1 {
    font-size: clamp(40px, 12vw, 66px);
  }

  .phone {
    margin: 0 auto;
  }

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

@media (max-width: 480px) {
  .screen {
    min-height: 590px;
  }

  .photo-stack {
    height: 260px;
  }

  .nav-links {
    font-size: 13px;
    gap: 12px;
  }
}
