:root {
  color-scheme: light;
  --ink: #181615;
  --muted: #706b66;
  --line: #e7dfd7;
  --paper: #fffaf4;
  --paper-strong: #fff2e6;
  --green: #29483c;
  --rose: #c65f62;
  --gold: #d89a45;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(60, 40, 28, 0.16);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

button,
input {
  font: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
  padding: 16px clamp(20px, 5vw, 64px);
  background: rgba(255, 250, 244, 0.88);
  border-bottom: 1px solid rgba(231, 223, 215, 0.9);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 780;
  font-size: 1.08rem;
}

.brand-mark {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  box-shadow: 0 12px 28px rgba(40, 23, 14, 0.18);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-nav a {
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 680;
  padding: 10px 14px;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--ink);
  background: rgba(41, 72, 60, 0.08);
  outline: none;
}

.site-nav .nav-cta {
  color: var(--white);
  background: var(--green);
}

.site-nav .nav-cta:hover,
.site-nav .nav-cta:focus-visible {
  color: var(--white);
  background: #203b30;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: calc(100svh - 76px);
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: clamp(64px, 8vw, 120px) clamp(20px, 5vw, 64px) clamp(34px, 5vw, 56px);
  background: #1c1714;
}

.hero::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(20, 16, 13, 0.9), rgba(20, 16, 13, 0.48) 52%, rgba(20, 16, 13, 0.2)),
    linear-gradient(0deg, rgba(20, 16, 13, 0.75), rgba(20, 16, 13, 0) 36%);
}

.hero-media {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 0.9fr;
  gap: 8px;
  opacity: 0.88;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-media img:nth-child(2) {
  transform: translateY(7%);
}

.hero-copy {
  position: relative;
  z-index: 1;
  max-width: 760px;
  color: var(--white);
}

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

.hero .eyebrow {
  color: #ffd49f;
}

.hero h1 {
  margin: 0;
  font-size: clamp(4.2rem, 12vw, 9.5rem);
  line-height: 0.86;
  letter-spacing: 0;
}

.lead {
  max-width: 620px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.2rem, 2.2vw, 1.76rem);
}

.hero-actions,
.form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.hero-actions {
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 780;
  padding: 12px 20px;
}

.button.primary {
  color: var(--white);
  background: var(--rose);
  box-shadow: 0 14px 34px rgba(198, 95, 98, 0.32);
}

.button.primary:hover,
.button.primary:focus-visible {
  background: #b95055;
  outline: none;
}

.button.secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.12);
}

.button.secondary:hover,
.button.secondary:focus-visible {
  background: rgba(255, 255, 255, 0.2);
  outline: none;
}

.trust-note {
  max-width: 590px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.98rem;
}

.section,
.intro-section,
.privacy-band,
.download-section,
.faq-section,
.split-section {
  padding-inline: clamp(20px, 5vw, 64px);
}

.intro-section,
.privacy-band {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(300px, 1fr);
  gap: clamp(28px, 7vw, 92px);
  align-items: end;
  padding-block: clamp(64px, 8vw, 112px);
}

h2 {
  margin: 0;
  font-size: clamp(2.1rem, 5vw, 4.8rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h3 {
  margin: 8px 0 10px;
  font-size: 1.38rem;
  line-height: 1.12;
}

.intro-section > p,
.privacy-copy p,
.split-copy > p,
.download-section p,
.support-hero p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.4vw, 1.18rem);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  padding: 0 clamp(20px, 5vw, 64px) clamp(76px, 9vw, 124px);
}

.feature-card {
  overflow: hidden;
  min-height: 520px;
  display: grid;
  align-content: space-between;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 18px 48px rgba(60, 40, 28, 0.08);
}

.feature-card img {
  width: 100%;
  height: 330px;
  object-fit: cover;
}

.feature-card div {
  padding: 22px;
}

.feature-index {
  color: var(--gold);
  font-weight: 860;
  font-size: 0.8rem;
}

.feature-card p {
  color: var(--muted);
  margin: 0;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.92fr) minmax(320px, 1fr);
  gap: clamp(32px, 7vw, 96px);
  align-items: center;
  padding-block: clamp(72px, 9vw, 124px);
  background: #f7eee5;
}

.phone-stage {
  display: grid;
  justify-items: center;
}

.phone {
  width: min(360px, 82vw);
  padding: 12px;
  border: 1px solid rgba(24, 22, 21, 0.13);
  border-radius: 38px;
  background: #171313;
  box-shadow: var(--shadow);
}

.phone-bar {
  width: 88px;
  height: 6px;
  margin: 4px auto 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
}

.phone-screen {
  overflow: hidden;
  min-height: 590px;
  display: grid;
  align-content: end;
  border-radius: 28px;
  background: #fff6ed;
}

.phone-screen img {
  width: 100%;
  height: 350px;
  object-fit: cover;
}

.screen-panel {
  padding: 24px;
}

.screen-kicker {
  margin: 0 0 8px;
  color: var(--rose);
  font-weight: 800;
  font-size: 0.82rem;
}

.screen-panel h2 {
  font-size: 2rem;
}

.screen-panel p:last-child {
  color: var(--muted);
}

.split-copy h2 {
  margin-bottom: 24px;
}

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

.check-list li {
  position: relative;
  padding-left: 28px;
  color: #433c37;
}

.check-list li::before {
  position: absolute;
  left: 0;
  top: 2px;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  content: "";
  background: var(--green);
  box-shadow: inset 0 0 0 5px #e8f0e7;
}

.privacy-band {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.text-link {
  display: inline-flex;
  margin-top: 18px;
  color: var(--green);
  font-weight: 780;
  text-decoration: underline;
  text-underline-offset: 5px;
}

.faq-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) minmax(320px, 1fr);
  gap: clamp(28px, 7vw, 92px);
  padding-block: clamp(72px, 9vw, 124px);
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  width: 100%;
  padding: 22px;
  text-align: left;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  cursor: pointer;
}

.faq-item span {
  font-weight: 760;
  color: var(--ink);
}

.faq-item strong {
  color: var(--rose);
}

.faq-item p {
  grid-column: 1 / -1;
  display: none;
  margin: 0;
  color: var(--muted);
}

.faq-item[aria-expanded="true"] p {
  display: block;
}

.faq-item[aria-expanded="true"] strong {
  transform: rotate(45deg);
}

.download-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 1fr);
  gap: clamp(28px, 6vw, 86px);
  align-items: center;
  margin-inline: clamp(20px, 5vw, 64px);
  margin-bottom: clamp(64px, 8vw, 112px);
  padding: clamp(30px, 5vw, 58px);
  border-radius: var(--radius);
  background: var(--green);
  color: var(--white);
}

.download-section .eyebrow {
  color: #ffd49f;
}

.download-section p {
  color: rgba(255, 255, 255, 0.76);
  margin-top: 18px;
}

.release-form {
  padding: 24px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.release-form label {
  display: block;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.84);
  font-weight: 760;
}

.release-form input {
  flex: 1 1 220px;
  min-height: 48px;
  width: 100%;
  border: 0;
  border-radius: 999px;
  padding: 12px 16px;
}

.release-form input:focus {
  outline: 3px solid rgba(255, 212, 159, 0.65);
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px 28px;
  align-items: center;
  padding: 30px clamp(20px, 5vw, 64px);
  border-top: 1px solid var(--line);
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  color: var(--muted);
  font-weight: 680;
}

.site-footer p {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.simple-page {
  min-height: 100vh;
}

.static-nav {
  display: flex;
}

.legal-layout,
.support-layout {
  width: min(980px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(54px, 8vw, 96px) 0;
}

.legal-layout h1,
.support-hero h1 {
  margin: 0;
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: 0.92;
}

.updated {
  color: var(--muted);
}

.legal-layout section,
.support-grid article {
  margin-top: 34px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.legal-layout h2,
.support-grid h2 {
  margin-bottom: 12px;
  font-size: 1.48rem;
  line-height: 1.15;
}

.legal-layout p,
.support-grid p {
  color: var(--muted);
}

.legal-layout a {
  color: var(--green);
  font-weight: 760;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.support-hero {
  padding: clamp(36px, 6vw, 64px);
  border-radius: var(--radius);
  background: var(--green);
  color: var(--white);
}

.support-hero .eyebrow {
  color: #ffd49f;
}

.support-hero p {
  max-width: 640px;
  margin: 20px 0 28px;
  color: rgba(255, 255, 255, 0.76);
}

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

.support-grid article {
  margin-top: 0;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

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

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

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    border-radius: var(--radius);
  }

  .hero {
    min-height: 720px;
  }

  .hero-media {
    grid-template-columns: 1fr;
  }

  .hero-media img:nth-child(2),
  .hero-media img:nth-child(3) {
    display: none;
  }

  .intro-section,
  .privacy-band,
  .faq-section,
  .download-section,
  .split-section {
    grid-template-columns: 1fr;
  }

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

  .feature-card {
    min-height: 0;
  }

  .feature-card img {
    height: 260px;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .site-header {
    padding-inline: 16px;
  }

  .hero {
    min-height: 650px;
    padding-inline: 18px;
  }

  .hero h1 {
    font-size: 4rem;
  }

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

  .button {
    min-width: 100%;
  }

  .download-section {
    margin-inline: 18px;
  }

  .phone {
    width: 100%;
  }
}
