:root {
  color-scheme: light;
  --paper: #dededb;
  --paper-soft: #eeeeea;
  --ink: #282827;
  --ink-soft: #555552;
  --muted: #777772;
  --line: #c5c5bf;
  --accent: #1E7A5C;
  --accent-dark: #1E7A5C;
  --green: #258862;
  --white: #ffffff;
  --shadow: 0 28px 80px rgba(32, 32, 28, 0.18);
  --radius: 8px;
  --container: 1120px;
  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;
  max-width: 100vw;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 18% 10%, rgba(198, 148, 24, 0.12), transparent 26rem),
    linear-gradient(180deg, #f4f4f0 0%, #e8e8e3 48%, #f7f7f4 100%);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
  text-decoration-color: rgba(40, 40, 39, 0.28);
  text-underline-offset: 0.18em;
}

a:hover {
  text-decoration-color: currentColor;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(198, 148, 24, 0.9);
  outline-offset: 4px;
}

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

.site-header,
.section,
.site-footer {
  padding-inline: clamp(20px, 5vw, 56px);
}

.nav {
  width: min(100%, var(--container));
  min-height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 44px;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-decoration: none;
}

.brand img {
  width: 36px;
  height: 36px;
  border-radius: 8px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2.4vw, 28px);
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.nav-links a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.hero {
  width: min(calc(100% - clamp(40px, 10vw, 112px)), var(--container));
  min-height: calc(100svh - 76px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
  gap: clamp(36px, 7vw, 92px);
  align-items: center;
  padding-top: clamp(16px, 3vw, 36px);
  padding-bottom: clamp(52px, 8vw, 92px);
}

.hero.section {
  padding-inline: 0;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--accent-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 780px;
  font-size: clamp(4.4rem, 16vw, 10.5rem);
  font-weight: 900;
}

h2 {
  font-size: clamp(2.4rem, 7vw, 5.2rem);
  font-weight: 900;
}

h3 {
  font-size: 1.1rem;
  font-weight: 850;
}

.lede {
  max-width: 620px;
  margin: 24px 0 0;
  color: var(--ink-soft);
  font-size: clamp(1.1rem, 2.4vw, 1.45rem);
  line-height: 1.45;
}

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

.button {
  font: inherit;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  padding: 0 22px;
  border: 1px solid transparent;
  font-weight: 750;
  text-decoration: none;
  cursor: pointer;
}

.button.primary {
  background: var(--green);
  color: var(--white);
  box-shadow: 0 12px 30px rgba(37, 136, 98, 0.22);
}

.button.secondary {
  border-color: rgba(40, 40, 39, 0.18);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.34);
}

.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
  font-size: 0.93rem;
}

.hero-facts li {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(40, 40, 39, 0.13);
  border-radius: 999px;
  padding: 0 13px;
  background: rgba(255, 255, 255, 0.28);
}

.phone-stage {
  min-height: 760px;
  display: grid;
  place-items: center;
  align-self: end;
}

.phone-shell {
  width: min(100%, 365px);
  aspect-ratio: 1179 / 2556;
  padding: 10px;
  border-radius: 58px;
  background: #101011;
  position: relative;
  box-shadow: var(--shadow), inset 0 0 0 2px #333335;
}

.phone-shell::before,
.phone-shell::after {
  content: "";
  position: absolute;
  left: -2px;
  width: 2px;
  border-radius: 2px;
  background: #19191a;
}

.phone-shell::before {
  top: 24%;
  height: 7%;
}

.phone-shell::after {
  top: 34%;
  height: 12%;
}

.phone-screen {
  height: 100%;
  border-radius: 48px;
  overflow: hidden;
  background: var(--paper);
  position: relative;
}

.screen-rail {
  height: 100%;
}

.screen-shot {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (prefers-reduced-motion: no-preference) {
  .screen-rail {
    animation: screen-cycle 18s cubic-bezier(0.4, 0, 0.2, 1) infinite;
  }
}

@keyframes screen-cycle {
  0%, 20% {
    transform: translateY(0);
  }
  25%, 45% {
    transform: translateY(-100%);
  }
  50%, 70% {
    transform: translateY(-200%);
  }
  75%, 95% {
    transform: translateY(-300%);
  }
  100% {
    transform: translateY(0);
  }
}

.section {
  padding-top: clamp(64px, 10vw, 120px);
  padding-bottom: clamp(64px, 10vw, 120px);
}

.section-inner {
  width: min(100%, var(--container));
  margin: 0 auto;
}

.section-heading {
  max-width: 780px;
}

.section-heading p {
  max-width: 680px;
  margin: 18px 0 0;
  color: var(--ink-soft);
  font-size: 1.1rem;
  line-height: 1.55;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 44px;
  border: 1px solid var(--line);
  background: var(--line);
}

.feature {
  min-height: 220px;
  padding: 28px;
  background: rgba(247, 247, 244, 0.82);
}

.feature p,
.answer p,
.page-copy p,
.contact-card p {
  color: var(--ink-soft);
  line-height: 1.6;
}

.feature p {
  margin: 12px 0 0;
}

.answer-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 42px;
}

.answer,
.contact-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  background: rgba(255, 255, 255, 0.45);
}

.answer p {
  margin-bottom: 0;
}

.privacy-band {
  background: var(--ink);
  color: #f5f3ed;
}

.privacy-band .section-heading p,
.privacy-band .answer p {
  color: rgba(245, 243, 237, 0.76);
}

.privacy-band .answer {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.13);
}

.page-main {
  width: min(100%, 820px);
  margin: 0 auto;
  padding: clamp(52px, 8vw, 92px) clamp(20px, 5vw, 56px) clamp(72px, 10vw, 120px);
}

.page-main h1 {
  font-size: clamp(3rem, 7vw, 4.8rem);
  line-height: 1.0;
  letter-spacing: -0.02em;
}

.page-copy {
  margin-top: 32px;
}

.page-copy h2 {
  margin-top: 42px;
  font-size: clamp(1.7rem, 4vw, 2.6rem);
}

.page-copy p,
.page-copy li {
  color: var(--ink-soft);
  line-height: 1.7;
}

.page-copy ul {
  padding-left: 1.2rem;
}

.contact-card {
  margin-top: 28px;
}

.site-footer {
  border-top: 1px solid var(--line);
}

.footer-inner {
  width: min(100%, var(--container));
  min-height: 120px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: var(--muted);
  font-size: 0.92rem;
}

.footer-links {
  display: flex;
  gap: 18px;
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .phone-stage {
    min-height: 620px;
    align-self: center;
  }

  .phone-shell {
    width: min(78vw, 330px);
  }

  .feature-grid,
  .answer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .site-header,
  .section,
  .site-footer {
    padding-inline: 20px;
  }

  .nav {
    min-height: 68px;
    width: min(100%, 335px);
    max-width: 335px;
    margin: 0 auto;
    gap: 10px;
  }

  .brand span {
    display: none;
  }

  .nav-links {
    flex: 1;
    justify-content: flex-end;
    min-width: 0;
    gap: 9px;
    font-size: 0.82rem;
  }

  .nav-links a {
    min-height: 40px;
  }

  .hero {
    width: min(100%, 335px);
    max-width: 335px;
    margin: 0 auto;
    text-align: center;
  }

  .hero.section {
    padding-top: 28px;
    padding-bottom: 36px;
  }

  .lede {
    max-width: 100%;
    margin-top: 18px;
    margin-left: auto;
    margin-right: auto;
  }

  h1 {
    font-size: clamp(3.2rem, 19vw, 5rem);
  }

  .hero-actions {
    flex-direction: column;
    margin-top: 24px;
  }

  .hero-facts {
    justify-content: center;
    margin-top: 22px;
  }

  .button {
    width: 100%;
    max-width: 100%;
  }

  .phone-stage {
    min-height: 440px;
    width: 100%;
    overflow: hidden;
  }

  .phone-shell {
    width: min(66vw, 248px);
    max-width: 100%;
    padding: 8px;
    border-radius: 46px;
  }

  .phone-screen {
    border-radius: 38px;
  }

  .feature,
  .answer,
  .contact-card {
    padding: 20px;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding-block: 28px;
  }
}
