:root {
  --ink: #171f28;
  --slate: #3e4b52;
  --sage: #6b826c;
  --gold: #ab8b48;
  --paper: #f4efe5;
  --paper-2: #eee7da;
  --white: #fffdf7;
  --line: rgba(23,31,40,.12);
  --shadow: 0 30px 80px rgba(23,31,40,.18);
}

* { 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:
    radial-gradient(circle at 88% 10%, rgba(171,139,72,.13), transparent 26rem),
    radial-gradient(circle at 12% 72%, rgba(107,130,108,.16), transparent 34rem),
    linear-gradient(180deg, var(--paper), var(--paper-2));
  line-height: 1.5;
}

body:before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .28;
  background-image:
    linear-gradient(115deg, rgba(255,255,255,.32), transparent 35%),
    radial-gradient(rgba(23,31,40,.12) .6px, transparent .7px);
  background-size: 100% 100%, 18px 18px;
  z-index: -1;
}

a { color: inherit; text-decoration: none; }
img, video { max-width: 100%; display: block; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1rem clamp(1.25rem, 4vw, 4rem);
  background: rgba(244,239,229,.82);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}

.brand, .footer-brand {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  font-weight: 800;
  letter-spacing: -.02em;
}

.brand-icon {
  width: 2.15rem;
  height: 2.15rem;
  border-radius: .7rem;
}

nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  font-size: .95rem;
  color: var(--slate);
}

.nav-cta {
  padding: .55rem .9rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  background: rgba(255,253,247,.6);
}

.hero {
  min-height: calc(100vh - 70px);
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(320px, 1.05fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 5rem);
  padding: clamp(4rem, 7vw, 7rem) clamp(1.25rem, 5vw, 5rem);
  overflow: hidden;
}

.eyebrow {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .78rem;
  font-weight: 800;
  margin: 0 0 .85rem;
}

h1, h2, h3, p { margin-top: 0; }
h1 {
  font-size: clamp(3.8rem, 8vw, 7.8rem);
  line-height: .94;
  letter-spacing: -0.02em;
  margin-bottom: 1.4rem;
}
h2 {
  font-size: clamp(2.25rem, 4.6vw, 4.4rem);
  line-height: 1;
  letter-spacing: -0.015em;
  margin-bottom: 1rem;
}
h3 {
  font-size: 1.45rem;
  letter-spacing: -.03em;
  margin-bottom: .65rem;
}
.lede {
  font-size: clamp(1.2rem, 2vw, 1.65rem);
  color: var(--slate);
  max-width: 42rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .85rem;
  margin-top: 2rem;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.25rem;
  padding: .9rem 1.3rem;
  border-radius: 999px;
  font-weight: 800;
}
.button.primary {
  background: var(--ink);
  color: var(--white);
  box-shadow: 0 12px 30px rgba(23,31,40,.2);
}
.button.secondary {
  border: 1px solid var(--line);
  background: rgba(255,253,247,.58);
}

.note {
  margin-top: 1rem;
  color: rgba(62,75,82,.8);
  font-size: .95rem;
}

.hero-visual {
  position: relative;
  min-height: 760px;
}
.phone {
  position: absolute;
  border-radius: 2.3rem;
  box-shadow: var(--shadow);
}
.phone-main {
  width: min(54vw, 390px);
  right: 14%;
  top: 2%;
  transform: rotate(-4deg);
}
.phone-secondary {
  width: min(48vw, 350px);
  right: 42%;
  top: 25%;
  transform: rotate(5deg);
}

.section-heading {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 2.25rem;
  padding: 0 1.25rem;
}
.section-heading p:last-child {
  color: var(--slate);
  font-size: 1.15rem;
}

.steps, .video-section, .feature, .privacy, .final-cta {
  padding: clamp(4rem, 7vw, 7rem) clamp(1.25rem, 5vw, 5rem);
}

.step-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
.step-grid article, .privacy, .final-cta, .video-card {
  background: rgba(255,253,247,.62);
  border: 1px solid var(--line);
  border-radius: 2rem;
  box-shadow: 0 22px 70px rgba(23,31,40,.08);
}
.step-grid article {
  padding: 1.55rem;
}
.step-number {
  color: var(--gold);
  font-weight: 900;
  letter-spacing: .1em;
  font-size: .8rem;
}
.step-grid p, .feature-copy p, .privacy p, .final-cta p, .video-copy p {
  color: var(--slate);
}

.video-card {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, .85fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  padding: clamp(1rem, 2vw, 1.5rem);
  align-items: center;
}
.video-wrap {
  border-radius: 1.6rem;
  overflow: hidden;
  background: var(--ink);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.14);
}
.video-wrap video {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center top;
}
.video-copy {
  padding: clamp(1rem, 3vw, 2.5rem);
}

.feature.split {
  display: grid;
  grid-template-columns: minmax(280px, .8fr) minmax(0, 1.2fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.feature.reverse {
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, .8fr);
}
.feature.reverse .feature-copy { order: 2; }
.device-landscape {
  border-radius: 1.6rem;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255,255,255,.5);
}

.privacy {
  display: grid;
  grid-template-columns: minmax(260px, .8fr) minmax(0, 1.2fr);
  gap: 2rem;
  align-items: start;
}
.privacy p {
  font-size: 1.08rem;
}

.final-cta {
  text-align: center;
  margin: 0 clamp(1.25rem, 5vw, 5rem) 5rem;
}
.final-cta h2 {
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}
.final-cta p {
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1.6rem;
}

footer {
  border-top: 1px solid var(--line);
  padding: 2rem clamp(1.25rem, 5vw, 5rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  color: var(--slate);
}
.footer-links {
  display: flex;
  gap: 1rem;
}

@media (max-width: 900px) {
  nav { display: none; }
  .hero {
    grid-template-columns: 1fr;
    padding-top: 3rem;
  }
  .hero-visual {
    min-height: 620px;
  }
  .phone-main { right: 8%; width: 330px; }
  .phone-secondary { right: 42%; width: 300px; }
  .step-grid, .video-card, .feature.split, .feature.reverse, .privacy {
    grid-template-columns: 1fr;
  }
  .feature.reverse .feature-copy { order: 0; }
}

@media (max-width: 560px) {
  h1 { font-size: 4.1rem; }
  .hero-visual { min-height: 540px; }
  .phone-main { right: -2%; width: 290px; }
  .phone-secondary { right: 35%; width: 260px; }
  .hero-actions { flex-direction: column; }
  .button { width: 100%; }
}

.legal {
  max-width: 820px;
  margin: 0 auto;
  padding: clamp(4rem, 8vw, 7rem) 1.5rem;
}
.legal h1 {
  font-size: clamp(3rem, 7vw, 5rem);
}
.legal p {
  color: var(--slate);
  font-size: 1.1rem;
}
.legal a {
  color: var(--ink);
  font-weight: 800;
  text-decoration: underline;
}


/* Refined headline spacing */
h1, h2 {
  text-wrap: balance;
  font-kerning: normal;
}


.video-feature {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: center;
}

.video-card-secondary {
  max-width: 760px;
  margin-inline: auto;
}

.video-card-secondary video {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 28px;
  object-fit: cover;
  box-shadow: 0 28px 80px rgba(28, 36, 42, 0.22);
  background: #0f1418;
}

@media (max-width: 820px) {
  .video-feature {
    grid-template-columns: 1fr;
  }
}
