:root {
  --bg: #07100d;
  --bg-soft: #0d1914;
  --surface: #111f19;
  --surface-2: #16251f;
  --line: rgba(210, 223, 212, 0.16);
  --text: #eef4ec;
  --muted: #a9b8ac;
  --soft: #d7e4d9;
  --accent: #69c08f;
  --accent-strong: #91ddb0;
  --ink: #07100d;
  --radius: 8px;
  --radius-lg: 14px;
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--text);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

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

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

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 0 max(24px, calc((100vw - 1180px) / 2));
  border-bottom: 1px solid var(--line);
  background: rgba(7, 16, 13, 0.9);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  flex: 0 0 auto;
  font-weight: 760;
}

.brand-mark {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(145, 221, 176, 0.95), rgba(57, 117, 83, 0.9)),
    var(--accent);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.32);
}

.brand-name {
  font-size: 18px;
  letter-spacing: 0;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
  white-space: nowrap;
}

.nav a:hover,
.footer a:hover,
.trust-grid a:hover strong {
  color: var(--accent-strong);
}

.hero {
  position: relative;
  min-height: calc(100dvh - 68px);
  display: grid;
  align-items: end;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 38%;
  filter: saturate(0.92) brightness(0.7);
}

.hero-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 16, 13, 0.94), rgba(7, 16, 13, 0.64) 46%, rgba(7, 16, 13, 0.16)),
    linear-gradient(0deg, rgba(7, 16, 13, 0.86), rgba(7, 16, 13, 0.06) 70%);
}

.hero-copy {
  position: relative;
  width: min(1180px, calc(100vw - 48px));
  margin: 0 auto;
  padding: 80px 0 86px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent-strong);
  font-size: 12px;
  font-weight: 760;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  max-width: 720px;
  font-size: clamp(64px, 12vw, 156px);
  line-height: 0.84;
  letter-spacing: 0;
}

.hero p:not(.eyebrow) {
  margin: 22px 0 0;
  max-width: 520px;
  color: var(--soft);
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.28;
  overflow-wrap: break-word;
}

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

.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(238, 244, 236, 0.08);
  color: var(--text);
  font-weight: 750;
  white-space: nowrap;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button:hover {
  border-color: rgba(145, 221, 176, 0.42);
  background: rgba(238, 244, 236, 0.12);
}

.button:active {
  transform: translateY(1px);
}

.button.primary {
  border-color: transparent;
  background: var(--accent-strong);
  color: var(--ink);
}

main > section:not(.hero) {
  width: min(1180px, calc(100vw - 48px));
  margin: 0 auto;
}

.intro-band {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.9fr);
  gap: 28px;
  align-items: end;
  padding: 76px 0 46px;
}

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

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

h3 {
  margin-bottom: 10px;
  font-size: 24px;
  line-height: 1.12;
  letter-spacing: 0;
}

.intro-band p,
.preview-copy p,
.trust-copy p {
  margin-bottom: 0;
  max-width: 66ch;
  color: var(--muted);
  font-size: 17px;
}

.stat-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface);
}

.stat-strip span {
  min-height: 74px;
  display: grid;
  place-items: center;
  padding: 14px;
  border-right: 1px solid var(--line);
  color: var(--soft);
  font-weight: 750;
  text-align: center;
}

.stat-strip span:last-child {
  border-right: 0;
}

.feature-mosaic {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 14px;
  padding: 18px 0 70px;
}

.feature-panel {
  min-height: 260px;
  display: grid;
  align-content: end;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  overflow: hidden;
  padding: 24px;
}

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

.feature-panel.wide {
  grid-row: span 2;
  min-height: 640px;
  grid-template-rows: 1fr auto;
  padding: 0;
  background: var(--surface-2);
}

.feature-panel.wide div {
  padding: 28px 28px 10px;
  max-width: 620px;
}

.feature-panel.wide img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: center 34%;
  border-top: 1px solid var(--line);
}

.feature-panel.image-panel {
  padding: 0;
  min-height: 360px;
}

.feature-panel.image-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-preview {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1fr);
  gap: 48px;
  align-items: center;
  padding: 16px 0 86px;
}

.phone-shot {
  max-height: 720px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--surface);
}

.phone-shot img {
  width: 100%;
  height: 100%;
  max-height: 720px;
  object-fit: cover;
  object-position: top center;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  border-top: 1px solid var(--line);
  padding-top: 12px;
  color: var(--soft);
}

.trust-section {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 22px;
  align-items: start;
  padding: 30px 0 76px;
}

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

.trust-grid a {
  min-height: 170px;
  display: grid;
  align-content: space-between;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 18px;
}

.trust-grid strong {
  display: block;
  font-size: 18px;
}

.trust-grid span {
  color: var(--muted);
}

.footer {
  width: min(1180px, calc(100vw - 48px));
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin: 0 auto;
  padding: 28px 0 44px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

.footer span {
  color: var(--text);
  font-weight: 750;
}

.shell {
  width: min(960px, calc(100vw - 48px));
  margin: 0 auto;
}

.page {
  padding-bottom: 52px;
}

.shell.page > .topbar {
  position: static;
  width: 100%;
  padding: 18px 0;
  background: transparent;
  backdrop-filter: none;
}

.page-hero {
  padding: 58px 0 24px;
}

.page-hero h1 {
  margin: 0;
  max-width: 780px;
  font-size: clamp(42px, 7vw, 86px);
  line-height: 0.98;
  letter-spacing: 0;
}

.page-hero p {
  max-width: 72ch;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 17px;
  overflow-wrap: break-word;
}

.page-hero .meta {
  margin-top: 14px;
  color: var(--muted);
}

.page-hero .meta a,
.legal a,
.support-card a {
  color: var(--accent-strong);
}

.legal {
  display: grid;
  gap: 12px;
}

.legal section,
.support-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 22px;
}

.legal h2 {
  margin: 0 0 10px;
  font-size: 24px;
  line-height: 1.15;
}

.legal h3 {
  margin: 20px 0 8px;
  font-size: 17px;
}

.legal p,
.legal li,
.small {
  color: var(--muted);
  overflow-wrap: break-word;
}

.legal ul {
  margin: 10px 0 0 20px;
  padding: 0;
}

.small {
  font-size: 13px;
}

.support-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
}

.support-address {
  margin-top: 8px;
  font-size: clamp(28px, 5vw, 48px);
  line-height: 1.05;
  font-weight: 760;
  color: var(--accent-strong);
  overflow-wrap: anywhere;
}

@media (max-width: 920px) {
  .topbar {
    position: static;
    align-items: flex-start;
    flex-direction: column;
    padding: 18px 20px;
  }

  .nav {
    width: 100%;
    justify-content: flex-start;
    flex-wrap: wrap;
    overflow-x: visible;
    gap: 14px;
    padding-bottom: 2px;
  }

  .hero {
    min-height: 720px;
  }

  .hero-scrim {
    background:
      linear-gradient(0deg, rgba(7, 16, 13, 0.96), rgba(7, 16, 13, 0.34) 78%),
      linear-gradient(90deg, rgba(7, 16, 13, 0.88), rgba(7, 16, 13, 0.18));
  }

  .hero-copy {
    width: min(1180px, calc(100vw - 32px));
    padding: 54px 0 48px;
  }

  main > section:not(.hero),
  .footer,
  .shell {
    width: min(1180px, calc(100vw - 32px));
  }

  .intro-band,
  .feature-mosaic,
  .product-preview,
  .trust-section,
  .trust-grid,
  .support-card {
    grid-template-columns: 1fr;
  }

  .intro-band {
    padding-top: 50px;
  }

  .stat-strip {
    grid-template-columns: 1fr;
  }

  .stat-strip span {
    min-height: 56px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .stat-strip span:last-child {
    border-bottom: 0;
  }

  .feature-panel.wide {
    min-height: 560px;
  }

  .product-preview {
    gap: 26px;
  }

  .support-card .cta-row {
    justify-content: flex-start;
  }
}

@media (max-width: 560px) {
  .hero {
    min-height: 680px;
  }

  .hero h1 {
    font-size: 64px;
  }

  .hero p:not(.eyebrow) {
    font-size: 18px;
  }

  .button {
    width: 100%;
  }

  .page-hero h1 {
    font-size: 38px;
    line-height: 1.04;
  }

  .page-hero p {
    font-size: 16px;
  }

  .feature-panel {
    min-height: 220px;
    padding: 20px;
  }

  .feature-panel.wide div {
    padding: 22px 22px 8px;
  }

  .feature-panel.wide img {
    height: 330px;
  }
}
