:root {
  --ink: #070707;
  --charcoal: #171717;
  --muted: #5f6368;
  --line: #e6e0d8;
  --paper: #fffaf3;
  --white: #ffffff;
  --coffee: #9a6a2f;
  --coffee-dark: #5d3f1d;
  --mint: #d9eee6;
  --amber: #f2c36b;
  --shadow: 0 22px 70px rgba(7, 7, 7, .12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(7, 7, 7, .08);
}

.nav {
  max-width: 1180px;
  margin: 0 auto;
  padding: 14px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  letter-spacing: 0;
}

.brand img {
  width: 50px;
  height: 50px;
  border-radius: 10px;
  object-fit: cover;
  border: 1px solid rgba(7, 7, 7, .08);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
  color: #262626;
  font-size: 14px;
  font-weight: 700;
}

.nav-links a {
  padding: 8px 0;
}

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

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  background: var(--white);
  width: 44px;
  height: 44px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 900;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 12px 18px;
  border-radius: 8px;
  font-weight: 800;
  border: 1px solid transparent;
  cursor: pointer;
}

.btn.primary {
  color: var(--white);
  background: var(--ink);
  box-shadow: 0 14px 30px rgba(7, 7, 7, .2);
}

.btn.secondary {
  color: var(--ink);
  background: var(--paper);
  border-color: var(--line);
}

.btn.store {
  background: var(--ink);
  color: var(--white);
  min-width: 172px;
}

.btn.play {
  background: var(--coffee-dark);
  color: var(--white);
  min-width: 172px;
}

.section {
  padding: 88px 22px;
}

.section.alt {
  background: var(--paper);
}

.section.dark {
  color: var(--white);
  background: var(--ink);
}

.wrap {
  max-width: 1180px;
  margin: 0 auto;
}

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

.dark .eyebrow {
  color: var(--amber);
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(44px, 7vw, 82px);
  max-width: 880px;
}

h2 {
  font-size: clamp(30px, 4vw, 52px);
  max-width: 820px;
}

h3 {
  font-size: 22px;
}

.lead {
  margin: 22px 0 0;
  max-width: 690px;
  color: #393939;
  font-size: 19px;
}

.dark .lead {
  color: #e8e0d7;
}

.hero {
  min-height: calc(100vh - 79px);
  padding: 72px 22px 42px;
  background:
    linear-gradient(118deg, rgba(255, 250, 243, .95) 0%, rgba(255, 255, 255, .8) 45%, rgba(217, 238, 230, .68) 100%);
  overflow: hidden;
}

.hero-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, .95fr);
  gap: 52px;
  align-items: center;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

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

.trust-strip {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 640px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .78);
  border-radius: 8px;
  overflow: hidden;
}

.trust-strip div {
  padding: 16px;
  border-right: 1px solid var(--line);
}

.trust-strip div:last-child {
  border-right: 0;
}

.trust-strip strong {
  display: block;
  font-size: 23px;
}

.trust-strip span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.hero-visual {
  position: relative;
}

.hero-photo {
  height: min(68vh, 640px);
  min-height: 460px;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: var(--shadow);
  filter: saturate(.92) contrast(1.04);
}

.metric-panel {
  position: absolute;
  left: -34px;
  bottom: 34px;
  width: min(330px, 78%);
  background: rgba(255, 255, 255, .93);
  border: 1px solid rgba(7, 7, 7, .09);
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 20px 60px rgba(7, 7, 7, .18);
}

.metric-panel .row,
.data-card .row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  font-weight: 800;
}

.metric-panel .row:last-child,
.data-card .row:last-child {
  border-bottom: 0;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.pill,
.tag {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: #353535;
  font-size: 13px;
  font-weight: 800;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  gap: 58px;
  align-items: center;
}

.feature-lanes {
  display: grid;
  gap: 18px;
}

.lane,
.card,
.legal-block,
.contact-card,
.download-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 34px rgba(7, 7, 7, .06);
}

.lane {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 18px;
  padding: 20px;
}

.icon {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: var(--ink);
  color: var(--white);
  display: grid;
  place-items: center;
  font-weight: 900;
}

.data-card {
  padding: 26px;
  background: var(--ink);
  color: var(--white);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.data-card .row {
  border-color: rgba(255, 255, 255, .16);
}

.data-card small {
  color: #d8d0c7;
}

.bar {
  height: 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .14);
  overflow: hidden;
  margin: 18px 0 6px;
}

.bar span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--amber), var(--mint));
}

.grid-3,
.grid-2,
.grid-4 {
  display: grid;
  gap: 18px;
}

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

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

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

.card {
  padding: 24px;
}

.card p,
.lane p,
.download-card p,
.legal-block p,
.contact-card p {
  color: var(--muted);
}

.steps {
  counter-reset: step;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}

.step {
  position: relative;
  padding: 24px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 8px;
}

.step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  display: block;
  color: var(--amber);
  font-weight: 900;
  margin-bottom: 18px;
}

.quote {
  border-left: 5px solid var(--coffee);
  padding: 24px;
  background: var(--paper);
  border-radius: 0 8px 8px 0;
}

.cta-band {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  padding: 34px;
  border-radius: 8px;
  background: var(--ink);
  color: var(--white);
}

.page-hero {
  padding: 86px 22px 58px;
  background: var(--paper);
}

.page-hero .wrap {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr);
  gap: 44px;
  align-items: center;
}

.page-hero.no-image .wrap {
  display: block;
}

.page-hero img,
.content-photo {
  width: 100%;
  height: 430px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 30px;
}

.proof div {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.legal-shell {
  max-width: 920px;
  margin: 0 auto;
}

.legal-meta {
  display: inline-flex;
  margin-top: 24px;
  padding: 12px 16px;
  border-radius: 8px;
  background: var(--ink);
  color: var(--white);
  font-weight: 800;
}

.legal-block {
  padding: 28px;
  margin-top: 18px;
}

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

.notice {
  padding: 20px;
  border-radius: 8px;
  background: #fff3d6;
  border: 1px solid #efd18c;
  font-weight: 700;
}

.form {
  display: grid;
  gap: 15px;
}

.field {
  display: grid;
  gap: 7px;
}

.field label {
  font-weight: 800;
  font-size: 14px;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 13px 14px;
  font: inherit;
  background: #fffefa;
}

textarea {
  min-height: 150px;
  resize: vertical;
}

.check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--muted);
  font-size: 14px;
}

.check input {
  width: auto;
  margin-top: 6px;
}

.form-status {
  min-height: 24px;
  font-weight: 800;
}

.device-panel {
  position: relative;
  padding: 18px;
  border-radius: 8px;
  background: var(--ink);
  box-shadow: var(--shadow);
}

.device-panel img {
  height: 440px;
  width: 100%;
  object-fit: cover;
  border-radius: 8px;
  opacity: .86;
}

.device-screen {
  position: absolute;
  right: 34px;
  bottom: 34px;
  width: min(300px, 70%);
  padding: 22px;
  border-radius: 8px;
  background: rgba(255, 255, 255, .94);
  border: 1px solid var(--line);
}

.footer {
  padding: 38px 22px;
  background: var(--ink);
  color: var(--white);
}

.footer .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  flex-wrap: wrap;
}

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  color: #e7dfd6;
  font-size: 14px;
}

.mobile-only-page .section {
  padding: 42px 18px;
}

.mobile-only-page .wrap {
  max-width: 640px;
}

@media (max-width: 920px) {
  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 78px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    padding: 14px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

  .nav-links.open {
    display: flex;
  }

  .hero-grid,
  .split,
  .page-hero .wrap,
  .cta-band {
    grid-template-columns: 1fr;
  }

  .hero-photo {
    height: 480px;
  }

  .grid-3,
  .grid-4,
  .steps,
  .proof {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .section {
    padding: 62px 18px;
  }

  .hero {
    min-height: auto;
    padding: 52px 18px 36px;
  }

  .trust-strip,
  .grid-2,
  .grid-3,
  .grid-4,
  .steps,
  .proof {
    grid-template-columns: 1fr;
  }

  .hero-photo,
  .page-hero img,
  .content-photo,
  .device-panel img {
    height: 330px;
  }

  .metric-panel,
  .device-screen {
    position: static;
    width: auto;
    margin-top: 14px;
  }

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

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