:root {
  color-scheme: light;
  --ink: #261f1a;
  --muted: #6f675e;
  --line: rgba(111, 103, 94, 0.2);
  --accent: #c56a3a;
  --accent-deep: #994b2b;
  --cream: #fbf4ea;
  --peach: #f3ddcf;
  --surface: rgba(255, 252, 247, 0.78);
  --serif: Georgia, "Times New Roman", serif;
  --sans: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-family: var(--sans);
  font-synthesis: none;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 78% 4%, rgba(232, 175, 145, 0.26), transparent 28rem),
    linear-gradient(180deg, #fffaf4 0%, var(--cream) 42%, #f8e9dd 100%);
  font-size: 17px;
  line-height: 1.5;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  isolation: isolate;
  z-index: 20;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(100% - 48px, 1180px);
  margin: 0 auto;
  padding: 18px 0;
}

.site-header::before {
  position: absolute;
  z-index: -1;
  inset: 0 50%;
  width: 100vw;
  border-bottom: 1px solid rgba(111, 103, 94, 0.12);
  background: rgba(255, 250, 244, 0.78);
  backdrop-filter: blur(18px);
  content: "";
  transform: translateX(-50%);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1.02rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-decoration: none;
}

.brand img {
  width: 44px;
  height: 44px;
}

.site-header nav,
footer nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.site-header nav a,
footer nav a {
  color: var(--muted);
  font-size: 1rem;
  text-decoration: none;
}

.site-header nav a:hover,
footer nav a:hover,
.text-link:hover {
  color: var(--accent-deep);
}

.header-status {
  padding: 10px 16px;
  border-radius: 999px;
  color: var(--accent-deep);
  background: rgba(197, 106, 58, 0.12);
  font-size: 0.9rem;
  font-weight: 700;
}

.section-shell {
  width: min(100% - 48px, 1180px);
  margin: 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(380px, 0.98fr);
  align-items: center;
  min-height: min(820px, calc(100vh - 76px));
  padding: 80px 0 96px;
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 650px;
}

.eyebrow {
  margin: 0 0 22px;
  color: var(--accent-deep);
  font-size: 0.84rem;
  font-weight: 750;
  letter-spacing: 0.14em;
}

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

h1,
h2 {
  font-family: var(--serif);
  font-weight: 700;
  letter-spacing: -0.045em;
}

h1 {
  max-width: 760px;
  margin-bottom: 26px;
  font-size: clamp(4rem, 8vw, 7.7rem);
  line-height: 0.88;
}

h2 {
  margin-bottom: 24px;
  font-size: clamp(3rem, 5.6vw, 5.6rem);
  line-height: 0.96;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.28rem;
}

.hero-lead {
  max-width: 560px;
  margin-bottom: 34px;
  color: var(--muted);
  font-size: clamp(1.32rem, 2vw, 1.65rem);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}

.primary-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 16px;
  color: #fffaf4;
  background: var(--ink);
  box-shadow: 0 14px 36px rgba(38, 31, 26, 0.16);
  font-size: 0.96rem;
  font-weight: 700;
}

.text-link {
  color: var(--ink);
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
}

.purchase-note {
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.55;
}

.hero-visual {
  position: relative;
  display: grid;
  min-height: 650px;
  place-items: center;
}

.warm-orbit {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
}

.warm-orbit--one {
  width: 520px;
  height: 520px;
  background: rgba(255, 252, 247, 0.6);
  box-shadow: 0 0 100px rgba(232, 175, 145, 0.24);
}

.warm-orbit--two {
  width: 390px;
  height: 390px;
  border: 1px solid rgba(197, 106, 58, 0.16);
  animation: breathe 12s ease-in-out infinite alternate;
}

.phone-shot {
  position: relative;
  overflow: hidden;
  width: min(100%, 310px);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 38px;
  background: #ead8cc;
  box-shadow:
    0 34px 70px rgba(69, 47, 37, 0.22),
    0 6px 18px rgba(69, 47, 37, 0.1);
}

.phone-shot::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.54);
  border-radius: inherit;
  content: "";
  pointer-events: none;
}

.phone-shot img {
  width: 100%;
  aspect-ratio: 1320 / 2700;
  object-fit: cover;
}

.phone-shot--hero {
  z-index: 1;
  width: min(88%, 390px);
  transform: rotate(2deg);
}

.promise {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  padding: 24px;
  border-block: 1px solid rgba(111, 103, 94, 0.12);
  background: rgba(255, 252, 247, 0.42);
}

.promise p {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.08rem;
  font-style: italic;
}

.promise span {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent);
}

.experience,
.screens,
.privacy {
  padding-top: 150px;
  padding-bottom: 150px;
}

.section-intro {
  max-width: 720px;
  margin-bottom: 70px;
}

.section-intro > p:last-child {
  max-width: 600px;
  color: var(--muted);
  font-size: 1.28rem;
  line-height: 1.7;
}

.section-intro--centered {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

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

.benefit-card {
  min-height: 250px;
  padding: 34px;
  border: 1px solid rgba(111, 103, 94, 0.14);
  border-radius: 28px;
  background: var(--surface);
  box-shadow: 0 18px 48px rgba(101, 70, 52, 0.07);
}

.benefit-card p {
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.65;
}

.benefit-number {
  display: inline-block;
  margin-bottom: 54px;
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.screens {
  width: 100%;
  max-width: none;
  padding-right: max(24px, calc((100vw - 1180px) / 2));
  padding-left: max(24px, calc((100vw - 1180px) / 2));
  background: rgba(255, 252, 247, 0.48);
}

.screen-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: start;
  gap: 28px;
  max-width: 1120px;
  margin: 0 auto;
}

.screen-card {
  margin: 0;
  text-align: center;
}

.screen-card .phone-shot {
  width: 100%;
  max-width: 330px;
  margin: 0 auto 30px;
}

.screen-card figcaption {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-style: italic;
}

.privacy-card {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 90px;
  padding: clamp(38px, 7vw, 86px);
  border: 1px solid rgba(111, 103, 94, 0.14);
  border-radius: 42px;
  background:
    radial-gradient(circle at 85% 10%, rgba(232, 175, 145, 0.23), transparent 21rem),
    rgba(255, 252, 247, 0.72);
  box-shadow: 0 30px 80px rgba(101, 70, 52, 0.1);
}

.privacy-card h2 {
  margin-bottom: 0;
  font-size: clamp(3rem, 5vw, 5rem);
}

.privacy-copy > p {
  color: var(--muted);
  font-size: 1.28rem;
  line-height: 1.75;
}

.privacy-copy ul {
  display: grid;
  gap: 13px;
  margin: 34px 0;
  padding: 0;
  list-style: none;
}

.privacy-copy li {
  position: relative;
  padding-left: 24px;
  font-size: 1.06rem;
}

.privacy-copy li::before {
  position: absolute;
  top: 0.67em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  content: "";
}

.closing {
  display: flex;
  align-items: center;
  flex-direction: column;
  padding-top: 90px;
  padding-bottom: 160px;
  text-align: center;
}

.closing img {
  margin-bottom: 28px;
}

.closing h2 {
  max-width: 760px;
}

.closing > p:not(.eyebrow) {
  margin-bottom: 30px;
  color: var(--muted);
  font-size: 1.22rem;
}

footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  width: min(100% - 48px, 1180px);
  margin: 0 auto;
  padding: 46px 0;
  border-top: 1px solid var(--line);
}

.footer-brand img {
  width: 210px;
  margin-bottom: 16px;
}

.footer-brand p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

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

.legal-shell {
  width: min(100% - 40px, 760px);
  margin: 0 auto;
  padding: 90px 0 120px;
}

.legal-shell h1 {
  margin-bottom: 14px;
  font-size: clamp(2.8rem, 8vw, 5rem);
  line-height: 0.98;
}

.legal-shell h2 {
  margin: 48px 0 12px;
  font-family: var(--sans);
  font-size: 1.1rem;
  font-weight: 750;
  letter-spacing: 0;
}

.legal-shell p,
.legal-shell li {
  color: #514a43;
  line-height: 1.75;
}

.legal-back {
  display: inline-flex;
  margin-bottom: 54px;
  color: var(--accent-deep);
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
}

.updated {
  margin-bottom: 38px;
  color: var(--muted);
  font-size: 0.86rem;
}

@keyframes breathe {
  from { transform: scale(0.96); opacity: 0.6; }
  to { transform: scale(1.05); opacity: 1; }
}

@media (max-width: 900px) {
  .site-header nav a {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 90px;
  }

  .hero-copy {
    text-align: center;
  }

  .hero-lead {
    margin-right: auto;
    margin-left: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-visual {
    min-height: 600px;
  }

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

  .benefit-card {
    min-height: auto;
  }

  .benefit-number {
    margin-bottom: 34px;
  }

  .privacy-card {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 34px;
  }
}

@media (max-width: 660px) {
  .site-header,
  .section-shell,
  footer {
    width: min(100% - 32px, 1180px);
  }

  .site-header {
    padding: 12px 0;
  }

  .header-status {
    padding: 8px 11px;
    font-size: 0.78rem;
  }

  h1 {
    font-size: clamp(3.75rem, 20vw, 5.3rem);
  }

  .hero {
    min-height: auto;
    padding: 70px 0 90px;
  }

  .hero-lead {
    font-size: 1.22rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .purchase-note {
    max-width: 300px;
    margin-right: auto;
    margin-left: auto;
  }

  .hero-visual {
    min-height: 540px;
  }

  .warm-orbit--one {
    width: 380px;
    height: 380px;
  }

  .warm-orbit--two {
    width: 300px;
    height: 300px;
  }

  .promise {
    flex-wrap: wrap;
    gap: 12px;
  }

  .experience,
  .screens,
  .privacy {
    padding-top: 96px;
    padding-bottom: 96px;
  }

  .screen-gallery {
    overflow-x: auto;
    grid-template-columns: repeat(3, minmax(235px, 78vw));
    gap: 20px;
    margin-right: -16px;
    padding: 20px 16px 46px 0;
    scroll-snap-type: x mandatory;
  }

  .screen-card {
    transform: none;
    scroll-snap-align: center;
  }

  .privacy-card {
    padding: 34px 24px;
    border-radius: 30px;
  }

  .closing {
    padding-bottom: 110px;
  }

  footer nav {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .warm-orbit--two { animation: none; }
}
