:root {
  color-scheme: dark;
  --bg: #030603;
  --bg-soft: #081108;
  --surface: #121412;
  --surface-2: #1a1d1a;
  --line: #303530;
  --text: #f5f7f3;
  --muted: #a8aba7;
  --muted-2: #d5d9d0;
  --green: #32d45c;
  --green-strong: #4bff75;
  --blue: #5aaeff;
  --yellow: #ffd514;
  --orange: #ff9f16;
  --red: #ff453f;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
  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-width: 320px;
  background:
    radial-gradient(circle at 12% 8%, rgba(50, 212, 92, 0.16), transparent 28rem),
    linear-gradient(180deg, var(--bg-soft), var(--bg) 24rem);
  color: var(--text);
  line-height: 1.6;
}

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

a {
  color: inherit;
}

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

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 0;
}

.brand,
.site-nav,
.site-footer nav {
  display: flex;
  align-items: center;
}

.brand {
  gap: 12px;
  color: var(--text);
  font-size: 1.25rem;
  font-weight: 800;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(75, 255, 117, 0.42);
  border-radius: 8px;
  background: rgba(50, 212, 92, 0.14);
  color: var(--green-strong);
}

.site-nav,
.site-footer nav {
  gap: 18px;
  color: var(--muted-2);
  font-weight: 700;
}

.site-nav a,
.site-footer a {
  text-decoration: none;
}

.site-nav a:hover,
.site-footer a:hover,
.policy-content a,
.contact-panel a {
  color: var(--green-strong);
}

.hero,
.section,
.privacy-band,
.content-page,
.policy-page {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 1.05fr);
  gap: 48px;
  align-items: center;
  min-height: 76vh;
  padding: 40px 0 56px;
}

.hero-copy {
  max-width: 620px;
}

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

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

h1 {
  margin-bottom: 22px;
  font-size: 5.4rem;
  line-height: 0.96;
}

h2 {
  margin-bottom: 16px;
  font-size: 3.25rem;
  line-height: 1.02;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.25rem;
  line-height: 1.2;
}

.hero-text,
.section-heading p,
.split-section p,
.privacy-band p,
.page-hero p,
.policy-content p,
.support-card p,
.contact-panel p {
  color: var(--muted-2);
  font-size: 1.06rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 32px 0;
}

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

.button.primary {
  border-color: rgba(75, 255, 117, 0.72);
  background: var(--green);
  color: #061006;
}

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

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

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

.stat-row div,
.feature-card,
.support-card,
.contact-panel,
.policy-content {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(18, 20, 18, 0.86);
}

.stat-row div {
  padding: 16px;
}

.stat-row dt {
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
}

.stat-row dd {
  margin: 4px 0 0;
  font-size: 1.08rem;
  font-weight: 900;
}

.hero-media,
.screenshot-pair,
.gallery {
  display: grid;
  gap: 18px;
}

.hero-media {
  grid-template-columns: 1fr 0.72fr;
  align-items: end;
}

.phone-shot {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  background: #000;
  box-shadow: var(--shadow);
}

.primary-shot {
  align-self: center;
}

.hero-media .phone-shot {
  width: auto;
  max-height: 68vh;
  justify-self: center;
}

.offset-shot {
  margin-bottom: -44px;
  opacity: 0.86;
}

.section {
  padding: 74px 0;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 32px;
}

.feature-grid,
.support-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.feature-card,
.support-card,
.contact-panel {
  padding: 24px;
}

.feature-card p,
.support-card p,
.contact-panel p,
.policy-content p {
  margin-bottom: 0;
}

.feature-card:nth-child(1) {
  border-color: rgba(50, 212, 92, 0.5);
}

.feature-card:nth-child(2) {
  border-color: rgba(90, 174, 255, 0.32);
}

.feature-card:nth-child(3) {
  border-color: rgba(255, 213, 20, 0.28);
}

.feature-card:nth-child(4) {
  border-color: rgba(255, 159, 22, 0.28);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 1.18fr);
  gap: 42px;
  align-items: center;
}

.check-list {
  display: grid;
  gap: 10px;
  margin: 28px 0 0;
  padding: 0;
  color: var(--muted-2);
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 26px;
}

.check-list li::before {
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green-strong);
  content: "";
}

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

.privacy-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border: 1px solid rgba(75, 255, 117, 0.32);
  border-radius: 8px;
  padding: 32px;
  background: linear-gradient(135deg, rgba(50, 212, 92, 0.14), rgba(18, 20, 18, 0.86));
}

.privacy-band div {
  max-width: 760px;
}

.gallery-section {
  padding-bottom: 96px;
}

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

.content-page,
.policy-page {
  padding: 46px 0 82px;
}

.page-hero {
  max-width: 780px;
  margin-bottom: 34px;
}

.page-hero h1 {
  font-size: 4.4rem;
}

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

.contact-panel {
  margin-top: 16px;
}

.policy-content {
  max-width: 860px;
  padding: 34px;
}

.policy-content h2 {
  margin-top: 36px;
  font-size: 1.45rem;
}

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

.policy-content ul {
  color: var(--muted-2);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid var(--line);
  padding: 28px 0 36px;
  color: var(--muted);
}

.site-footer p {
  margin: 0;
}

@media (max-width: 940px) {
  .hero,
  .split-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 32px;
  }

  .hero-copy {
    max-width: none;
  }

  h1 {
    font-size: 4.2rem;
  }

  h2 {
    font-size: 2.7rem;
  }

  .page-hero h1 {
    font-size: 3.8rem;
  }

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

  .hero-media {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 720px;
  }

  .hero-media .phone-shot {
    max-height: 62vh;
  }

  .offset-shot {
    margin-bottom: 0;
  }
}

@media (max-width: 640px) {
  .site-header,
  .site-footer,
  .hero,
  .section,
  .privacy-band,
  .content-page,
  .policy-page {
    width: min(100% - 24px, 1120px);
  }

  .site-header,
  .site-footer,
  .privacy-band {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-nav,
  .site-footer nav {
    width: 100%;
    justify-content: space-between;
  }

  .hero {
    gap: 32px;
    padding-bottom: 50px;
  }

  h1,
  .page-hero h1 {
    font-size: 2.8rem;
    line-height: 1;
  }

  h2 {
    font-size: 2.15rem;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .stat-row,
  .feature-grid,
  .support-grid,
  .hero-media,
  .screenshot-pair,
  .gallery {
    grid-template-columns: 1fr;
  }

  .hero-media .offset-shot {
    display: none;
  }

  .hero-media .phone-shot {
    max-height: 54vh;
  }

  .stat-row div {
    padding: 14px;
  }

  .section {
    padding: 52px 0;
  }

  .feature-card,
  .support-card,
  .contact-panel,
  .policy-content,
  .privacy-band {
    padding: 22px;
  }

  .phone-shot {
    max-width: 360px;
    margin: 0 auto;
    border-radius: 22px;
  }
}
