:root {
  color-scheme: light;
  --ink: #191d11;
  --muted: #434934;
  --soft: #737a62;
  --lime: #c6ff3d;
  --lime-strong: #bdf532;
  --cream: #f8fbe7;
  --paper: #fffdf5;
  --line: #d7dcc4;
  --blue: #2d5bff;
  --pink: #fc4b9b;
  --green: #567400;
  --shadow: 0 20px 50px rgba(25, 29, 17, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: "Space Grotesk", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 14px clamp(20px, 5vw, 72px);
  background: rgba(248, 251, 231, 0.92);
  border-bottom: 1px solid rgba(25, 29, 17, 0.12);
  backdrop-filter: blur(18px);
}

.brand,
.site-footer div {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
}

.brand img,
.site-footer img {
  border-radius: 8px;
}

nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px 18px;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 600;
}

nav a:hover,
nav a:focus-visible {
  color: var(--ink);
}

.hero {
  position: relative;
  display: grid;
  min-height: clamp(560px, calc(100svh - 150px), 780px);
  padding: clamp(52px, 8vw, 112px) clamp(20px, 5vw, 72px) clamp(64px, 8vw, 108px);
  overflow: hidden;
  isolation: isolate;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--ink);
}

.hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.58;
  filter: saturate(1.08);
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(25, 29, 17, 0.92), rgba(25, 29, 17, 0.7) 38%, rgba(25, 29, 17, 0.18));
}

.hero-copy {
  align-self: center;
  width: min(680px, 100%);
  color: var(--paper);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--lime);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  font-size: clamp(4.25rem, 16vw, 10rem);
  line-height: 0.88;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  max-width: 820px;
  font-size: clamp(2.1rem, 5vw, 4.8rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 10px;
  font-size: 1.15rem;
  line-height: 1.15;
  letter-spacing: 0;
}

.lead {
  max-width: 600px;
  margin: 28px 0 0;
  color: rgba(255, 253, 245, 0.9);
  font-size: clamp(1.12rem, 2vw, 1.4rem);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 700;
}

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

.button.secondary {
  border-color: rgba(255, 253, 245, 0.55);
  color: var(--paper);
}

.button.outline {
  border-color: var(--ink);
  color: var(--ink);
}

.summary {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--ink);
}

.summary div {
  min-height: 128px;
  padding: 26px clamp(18px, 3vw, 36px);
  background: var(--lime);
}

.metric {
  display: block;
  font-family: "Space Mono", monospace;
  font-size: clamp(2.1rem, 4vw, 3.5rem);
  font-weight: 700;
  line-height: 1;
}

.summary span:last-child {
  color: var(--muted);
  font-weight: 700;
}

.section {
  padding: clamp(72px, 9vw, 132px) clamp(20px, 5vw, 72px);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: clamp(36px, 6vw, 84px);
  align-items: start;
}

.section-copy p:not(.eyebrow),
.premium-copy p {
  max-width: 620px;
  color: var(--muted);
  font-size: 1.06rem;
}

.section-copy .eyebrow,
.privacy .eyebrow,
.premium .eyebrow,
.screens .eyebrow {
  color: var(--green);
}

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

.feature-grid article,
.privacy-list article {
  min-height: 180px;
  padding: 24px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(25, 29, 17, 0.06);
}

.feature-grid article:nth-child(2) {
  border-color: rgba(45, 91, 255, 0.35);
}

.feature-grid article:nth-child(3) {
  border-color: rgba(252, 75, 155, 0.35);
}

article p {
  margin: 0;
  color: var(--muted);
}

.showcase {
  padding-top: 24px;
  overflow: hidden;
  background: var(--ink);
}

.phone-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(180px, 280px));
  justify-content: center;
  gap: clamp(16px, 3vw, 34px);
}

.phone-row img,
.screen-grid img,
.premium img {
  width: 100%;
  border-radius: 28px;
  border: 8px solid #0e120a;
  box-shadow: var(--shadow);
}

.phone-row img:nth-child(2) {
  margin-top: 54px;
}

.privacy {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1.2fr);
  gap: clamp(32px, 6vw, 84px);
}

.premium {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 360px);
  gap: clamp(34px, 6vw, 84px);
  align-items: center;
  background: #eef2d7;
}

.premium img {
  justify-self: center;
  max-width: 360px;
}

.screen-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 34px);
  margin-top: 40px;
}

figure {
  margin: 0;
}

figcaption {
  margin-top: 14px;
  color: var(--muted);
  font-weight: 700;
  text-align: center;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 32px clamp(20px, 5vw, 72px);
  background: var(--ink);
  color: var(--paper);
}

.site-footer p {
  max-width: 620px;
  margin: 0;
  color: rgba(255, 253, 245, 0.76);
  text-align: right;
}

.site-footer a {
  color: var(--lime);
  font-weight: 700;
}

.legal-links {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
  background: #eef2d7;
}

.legal-links p:not(.eyebrow) {
  max-width: 680px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.06rem;
}

.legal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.legal-hero {
  padding: clamp(64px, 9vw, 118px) clamp(20px, 5vw, 72px) clamp(42px, 6vw, 72px);
  background: var(--ink);
  color: var(--paper);
}

.legal-hero h1 {
  font-size: clamp(3.2rem, 10vw, 7rem);
}

.legal-lead {
  max-width: 760px;
  margin: 24px 0 0;
  color: rgba(255, 253, 245, 0.82);
  font-size: clamp(1.06rem, 2vw, 1.3rem);
}

.legal-layout {
  display: grid;
  grid-template-columns: minmax(180px, 260px) minmax(0, 920px);
  gap: clamp(24px, 4vw, 56px);
  align-items: start;
  padding: clamp(42px, 7vw, 88px) clamp(20px, 5vw, 72px);
}

.toc {
  position: sticky;
  top: 96px;
  display: grid;
  gap: 10px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.toc p {
  margin: 0 0 4px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.toc a {
  color: var(--muted);
  font-weight: 600;
}

.toc a:hover,
.toc a:focus-visible,
.legal-card a {
  color: var(--green);
}

.legal-card {
  display: grid;
  gap: 26px;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 12px 36px rgba(25, 29, 17, 0.08);
}

.legal-card section {
  padding-bottom: 26px;
  border-bottom: 1px solid var(--line);
}

.legal-card section:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.legal-card h2 {
  margin-bottom: 14px;
  font-size: clamp(1.55rem, 3vw, 2.4rem);
  line-height: 1.05;
}

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

.legal-card p + p,
.legal-card ul + p {
  margin-top: 12px;
}

.legal-card ul {
  margin: 12px 0 0;
  padding-left: 22px;
}

.notice {
  font-weight: 700;
}

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

  nav {
    justify-content: flex-start;
  }

  .summary,
  .split,
  .privacy,
  .premium,
  .legal-links,
  .screen-grid {
    grid-template-columns: 1fr;
  }

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

  .phone-row {
    grid-template-columns: repeat(3, minmax(158px, 1fr));
    justify-content: start;
    overflow-x: auto;
    padding-bottom: 12px;
  }

  .site-footer p {
    text-align: left;
  }

  .legal-actions {
    justify-content: flex-start;
  }

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

  .toc {
    position: static;
  }
}

@media (max-width: 620px) {
  .site-header {
    position: static;
  }

  .hero {
    min-height: calc(100svh - 140px);
  }

  .hero-media::after {
    background: linear-gradient(180deg, rgba(25, 29, 17, 0.9), rgba(25, 29, 17, 0.72));
  }

  .summary,
  .feature-grid,
  .privacy-list {
    grid-template-columns: 1fr;
  }

  .summary div {
    min-height: 104px;
  }

  .button {
    width: 100%;
  }
}
