:root {
  color-scheme: light;
  --bg: #F6F1E9;
  --bg-deep: #ECE2D3;
  --surface: #FFFBF3;
  --surface-warm: #FBF1DD;
  --ink: #3E2B1F;
  --ink-soft: #694F3F;
  --ink-muted: #746057;
  --coral: #A84F39;
  --coral-bright: #EA8F72;
  --sage: #65764F;
  --sage-bright: #A9B894;
  --rose: #9F5F59;
  --gold: #8A651C;
  --gold-soft: #E8D3A1;
  --table: #181512;
  --table-soft: #2E231A;
  --line: color-mix(in oklab, var(--ink) 10%, transparent);
  --shadow: 0 28px 70px -34px rgba(62, 43, 31, .42);
  --shadow-tight: 0 16px 42px -24px rgba(62, 43, 31, .40);
  --radius-card: 28px;
  --radius-soft: 22px;
  --radius-pill: 999px;
  --serif: "Fraunces", Georgia, "Times New Roman", serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "SF Pro Text", "Helvetica Neue", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100dvh;
  color: var(--ink);
  background:
    radial-gradient(circle at 16% 10%, rgba(232, 211, 161, .38), transparent 28rem),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-deep) 100%);
  font-family: var(--sans);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
  height: auto;
}

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

a:hover {
  text-decoration: underline;
}

h1,
h2,
h3,
p,
dl,
dd,
figure {
  margin: 0;
}

h1,
h2,
h3 {
  font-family: var(--serif);
  line-height: .96;
  letter-spacing: 0;
}

h1 {
  max-width: 12ch;
  font-size: clamp(4.6rem, 7vw, 7.35rem);
  font-weight: 700;
}

h2 {
  font-size: clamp(3rem, 7vw, 7.25rem);
  font-weight: 700;
}

h3 {
  font-size: clamp(1.55rem, 2vw, 2.1rem);
  font-weight: 650;
}

p {
  color: var(--ink-soft);
}

.wrap {
  width: min(100% - 40px, 1180px);
  margin-inline: auto;
}

.skip {
  position: absolute;
  top: 12px;
  left: -999px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: 10px;
  background: var(--ink);
  color: var(--bg);
  font-weight: 700;
}

.skip:focus {
  left: 12px;
}

:focus-visible {
  outline: 3px solid var(--coral);
  outline-offset: 4px;
}

.site-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--line);
  background: color-mix(in oklab, var(--bg) 84%, transparent);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
}

.nav-inner {
  display: flex;
  align-items: center;
  gap: 22px;
  min-height: 72px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.12rem;
  font-weight: 700;
  white-space: nowrap;
}

.brand:hover {
  text-decoration: none;
}

.brand-icon {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  box-shadow: 0 8px 18px -12px rgba(62, 43, 31, .55);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}

.nav-links a,
.nav-cta {
  border-radius: var(--radius-pill);
  padding: 9px 13px;
  color: var(--ink-soft);
  font-size: .93rem;
  font-weight: 650;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  background: color-mix(in oklab, var(--surface) 76%, transparent);
  color: var(--ink);
  text-decoration: none;
}

.nav-cta {
  background: var(--ink);
  color: var(--bg);
  box-shadow: var(--shadow-tight);
}

.nav-cta:hover {
  text-decoration: none;
  transform: translateY(-1px);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 14px 20px;
  border-radius: var(--radius-pill);
  font-size: .98rem;
  font-weight: 750;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.button svg {
  width: 21px;
  height: 21px;
}

.button.primary {
  background: var(--ink);
  color: var(--bg);
  box-shadow: var(--shadow-tight);
}

.button.quiet {
  border: 1px solid var(--line);
  background: color-mix(in oklab, var(--surface) 72%, transparent);
  color: var(--ink);
}

.button:hover {
  text-decoration: none;
  transform: translateY(-2px);
}

.section {
  padding-block: clamp(74px, 9vw, 142px);
}

.eyebrow,
.brand-kicker {
  color: var(--coral);
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.brand-kicker {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.brand-kicker span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
}

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

.section-heading h2 {
  margin-top: 16px;
}

.section-heading p:last-child {
  max-width: 60ch;
  margin-top: 22px;
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
}

.section-heading.narrow {
  max-width: 720px;
}

.hero {
  position: relative;
  min-height: calc(100dvh - 72px);
  padding-block: clamp(52px, 7vw, 92px) 0;
  overflow: hidden;
}

.hero-orbs {
  position: absolute;
  inset: auto 0 -18vw;
  z-index: -1;
  display: flex;
  justify-content: center;
  gap: min(8vw, 72px);
  opacity: .58;
  pointer-events: none;
}

.hero-orbs span {
  width: clamp(260px, 42vw, 620px);
  aspect-ratio: 1;
  border-radius: 50% 50% 42% 42%;
  background: linear-gradient(145deg, rgba(232, 211, 161, .78), rgba(232, 211, 161, .28));
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, .62fr);
  gap: clamp(38px, 7vw, 96px);
  align-items: end;
}

.hero-copy {
  align-self: center;
  padding-bottom: clamp(28px, 5vw, 72px);
}

.hero-copy .brand-kicker {
  margin-bottom: 24px;
}

.hero-lede {
  max-width: 620px;
  margin-top: 28px;
  font-size: clamp(1.18rem, 2vw, 1.58rem);
}

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

.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 36px;
}

.hero-facts div {
  min-width: 116px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: color-mix(in oklab, var(--surface) 62%, transparent);
}

.hero-facts dt {
  color: var(--ink);
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}

.hero-facts dd {
  margin-top: 5px;
  color: var(--ink-muted);
  font-size: .88rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.hero-device {
  display: flex;
  justify-content: center;
  align-self: end;
}

.device-frame {
  position: relative;
  width: min(100%, 390px);
  max-height: min(78dvh, 760px);
  overflow: hidden;
  border: 10px solid #111;
  border-bottom-width: 0;
  border-radius: 54px 54px 0 0;
  background: #111;
  box-shadow: 0 36px 80px -34px rgba(24, 21, 18, .78);
}

.device-frame::before {
  content: "";
  position: absolute;
  top: 16px;
  left: 50%;
  z-index: 1;
  width: 112px;
  height: 32px;
  border-radius: 18px;
  background: #050505;
  transform: translateX(-50%);
}

.device-frame img {
  width: 100%;
  object-fit: cover;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 42px;
}

.steps article {
  min-height: 260px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background: color-mix(in oklab, var(--surface) 74%, transparent);
  box-shadow: var(--shadow-tight);
}

.steps span {
  display: inline-flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  margin-bottom: 38px;
  border-radius: 16px;
  background: color-mix(in oklab, var(--coral) 14%, var(--surface));
  color: var(--coral);
  font-weight: 800;
}

.steps p {
  margin-top: 16px;
  font-size: 1.04rem;
}

.inside {
  padding-bottom: clamp(54px, 6vw, 82px);
}

.inside-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .62fr);
  gap: clamp(36px, 6vw, 76px);
  align-items: start;
}

.inside-list {
  display: grid;
  gap: 14px;
  padding-top: 10px;
}

.inside-list article {
  display: grid;
  gap: 8px;
  padding: 20px;
  border-radius: 20px;
  background: color-mix(in oklab, var(--surface) 76%, transparent);
  border: 1px solid var(--line);
}

.inside-list strong {
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.25rem;
}

.inside-list span {
  color: var(--ink-soft);
}

.screenshot-rail {
  display: flex;
  gap: 18px;
  width: min(100% - 40px, 1320px);
  margin: 58px auto 0;
  overflow-x: auto;
  padding: 4px 4px 26px;
  scroll-snap-type: x mandatory;
}

.screenshot-rail figure {
  flex: 0 0 clamp(238px, 27vw, 360px);
  scroll-snap-align: center;
  border-radius: 28px;
  overflow: hidden;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.screenshot-rail img {
  width: 100%;
}

.privacy-band {
  color: #F6E9D5;
  background:
    radial-gradient(circle at 14% 18%, rgba(234, 143, 114, .18), transparent 32rem),
    radial-gradient(circle at 80% 82%, rgba(169, 184, 148, .16), transparent 28rem),
    linear-gradient(180deg, #181512, #211A15);
}

.privacy-band .eyebrow,
.privacy-band h2 {
  color: #F6E9D5;
}

.privacy-band p,
.privacy-list {
  color: #CFB59A;
}

.privacy-grid {
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(300px, .62fr);
  gap: clamp(40px, 7vw, 92px);
  align-items: center;
}

.privacy-grid p {
  max-width: 64ch;
  margin-top: 24px;
  font-size: clamp(1.05rem, 1.6vw, 1.24rem);
}

.privacy-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.privacy-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 18px 0;
  border-bottom: 1px solid rgba(246, 233, 213, .14);
  font-size: 1.05rem;
}

.privacy-list span {
  flex: 0 0 10px;
  width: 10px;
  height: 10px;
  margin-top: .45em;
  border-radius: 50%;
  background: var(--coral-bright);
  box-shadow: 0 0 0 5px rgba(234, 143, 114, .12);
}

.proof-grid {
  display: grid;
  grid-template-columns: minmax(220px, .44fr) minmax(0, .86fr) minmax(180px, .34fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
}

.proof-card {
  overflow: hidden;
  border: 10px solid #111;
  border-radius: 42px;
  background: #111;
  box-shadow: var(--shadow);
}

.proof-card img {
  width: 100%;
}

.proof-card.small {
  align-self: end;
  opacity: .92;
}

.proof-copy p {
  max-width: 56ch;
  margin-top: 24px;
  font-size: clamp(1.05rem, 1.5vw, 1.24rem);
}

.final-cta {
  padding-top: 0;
}

.final-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: clamp(30px, 6vw, 64px);
  border: 1px solid var(--line);
  border-radius: 34px;
  background:
    radial-gradient(circle at 90% 10%, rgba(168, 79, 57, .11), transparent 24rem),
    color-mix(in oklab, var(--surface) 82%, transparent);
  box-shadow: var(--shadow-tight);
}

.final-panel h2 {
  max-width: 760px;
  margin-top: 16px;
  font-size: clamp(3rem, 7vw, 6.8rem);
}

.final-panel p:last-child {
  margin-top: 18px;
  font-size: 1.08rem;
}

.site-footer {
  padding-block: 54px 70px;
  color: var(--ink-muted);
}

.footer-inner {
  display: grid;
  gap: 22px;
  border-top: 1px solid var(--line);
  padding-top: 28px;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.site-footer a {
  color: var(--ink-soft);
}

.site-footer p {
  font-size: .88rem;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(76px, 11vw, 150px) clamp(48px, 6vw, 76px);
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: auto -8vw -18vw;
  z-index: -1;
  height: clamp(220px, 38vw, 520px);
  background:
    radial-gradient(circle at 38% 50%, rgba(232, 211, 161, .56), transparent 34%),
    radial-gradient(circle at 62% 50%, rgba(232, 211, 161, .56), transparent 34%);
}

.page-hero h1 {
  max-width: 12ch;
  margin-top: 20px;
  font-size: clamp(4rem, 10vw, 9rem);
}

.page-hero p {
  max-width: 680px;
  margin-top: 24px;
  font-size: clamp(1.1rem, 1.8vw, 1.32rem);
}

.prose {
  max-width: 800px;
  margin: 0 auto clamp(72px, 10vw, 130px);
  padding: clamp(28px, 6vw, 58px);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background: color-mix(in oklab, var(--surface) 82%, transparent);
  box-shadow: var(--shadow-tight);
}

.prose h2 {
  margin-top: 36px;
  font-size: clamp(2rem, 4vw, 3.5rem);
}

.prose h2:first-child,
.prose .effective + h2 {
  margin-top: 0;
}

.prose h3 {
  margin-top: 30px;
  font-size: 1.28rem;
  line-height: 1.15;
}

.prose p,
.prose li {
  color: var(--ink-soft);
  font-size: 1.04rem;
  line-height: 1.65;
}

.prose p {
  margin-top: 12px;
}

.prose ul {
  margin: 14px 0 0;
  padding-left: 1.2rem;
}

.prose li + li {
  margin-top: 8px;
}

.prose a {
  color: var(--coral);
  font-weight: 700;
}

.prose hr {
  height: 1px;
  margin: 40px 0 28px;
  border: 0;
  background: var(--line);
}

.effective {
  display: inline-block;
  margin-bottom: 28px;
  color: var(--ink-muted);
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink-soft);
  font-weight: 750;
}

.back svg {
  width: 16px;
  height: 16px;
}

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

  .nav-cta {
    margin-left: auto;
  }

  .hero-grid,
  .inside-grid,
  .privacy-grid,
  .proof-grid,
  .final-panel {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    padding-bottom: 0;
  }

  .hero-device {
    margin-top: 8px;
  }

  .device-frame {
    width: min(84vw, 360px);
    max-height: 560px;
  }

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

  .proof-card.large,
  .proof-card.small {
    max-width: 330px;
  }

  .proof-card.small {
    justify-self: end;
  }

  .final-panel .button {
    justify-self: start;
  }
}

@media (max-width: 560px) {
  .wrap {
    width: min(100% - 28px, 1180px);
  }

  .site-nav .brand span {
    display: none;
  }

  .nav-inner {
    min-height: 64px;
  }

  .nav-cta {
    padding-inline: 14px;
  }

  .hero {
    min-height: auto;
    padding-top: 48px;
  }

  h1 {
    font-size: clamp(3.35rem, 14vw, 4.65rem);
  }

  h2,
  .final-panel h2,
  .page-hero h1 {
    font-size: clamp(2.75rem, 12vw, 4.2rem);
  }

  .hero-actions,
  .hero-facts {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .hero-facts {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .hero-facts div {
    min-width: 0;
    padding: 13px 10px;
  }

  .hero-facts dt {
    font-size: 1.55rem;
  }

  .hero-facts dd {
    font-size: .72rem;
  }

  .device-frame {
    width: min(92vw, 330px);
    max-height: 470px;
    border-width: 8px;
    border-bottom-width: 0;
    border-radius: 42px 42px 0 0;
  }

  .steps article {
    min-height: 0;
  }

  .screenshot-rail {
    width: min(100% - 20px, 1320px);
    gap: 12px;
  }

  .screenshot-rail figure {
    flex-basis: 78vw;
  }

  .proof-card.large,
  .proof-card.small {
    max-width: 285px;
  }

  .final-panel {
    padding: 26px;
    border-radius: 26px;
  }

  .site-footer nav {
    display: grid;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
