:root {
  --paper: #f4efe5;
  --paper-deep: #ebe2d4;
  --surface: #fffaf0;
  --ink: #201c17;
  --ink-soft: #62594d;
  --ink-faint: #9a8f80;
  --rule: rgba(32, 28, 23, 0.14);
  --coral: #ef6d58;
  --coral-deep: #dc503a;
  --sage: #82a783;
  --mint: #6aa486;
  --lavender: #9383b7;
  --sky: #7eaec5;
  --blue: #527fa3;
  --black: #080706;
  --white: #fffdf8;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  overflow-x: hidden;
  background:
    linear-gradient(rgba(32, 28, 23, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(32, 28, 23, 0.035) 1px, transparent 1px),
    var(--paper);
  background-size: 42px 42px;
  color: var(--ink);
  font: 16px/1.55 ui-sans-serif, -apple-system, BlinkMacSystemFont, "SF Pro Text", "Helvetica Neue", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

a:hover {
  text-decoration: underline;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.2em;
}

p {
  margin: 0;
}

.site-nav {
  width: min(var(--max), calc(100% - 40px));
  margin: 18px auto 0;
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  position: relative;
  z-index: 10;
}

.site-nav--over {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.brand {
  width: 118px;
  flex: 0 0 auto;
}

.brand img,
.site-footer img {
  width: 100%;
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 6px;
  border: 1px solid rgba(255, 253, 248, 0.52);
  background: rgba(255, 250, 240, 0.68);
  backdrop-filter: blur(18px);
}

.nav-links a,
.nav-action {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.nav-action {
  color: var(--white);
  background: var(--black);
  border: 1px solid var(--black);
}

.hero {
  min-height: 82svh;
  max-height: 860px;
  position: relative;
  display: grid;
  align-items: end;
  overflow: hidden;
  border-bottom: 1px solid var(--rule);
  isolation: isolate;
}

.hero__image,
.hero__shade {
  position: absolute;
  inset: 0;
}

.hero__image {
  background-image: url("assets/onboarding-panorama.jpg");
  background-size: cover;
  background-position: center;
  z-index: -2;
}

.hero__shade {
  background:
    linear-gradient(90deg, rgba(244, 239, 229, 0.94) 0%, rgba(244, 239, 229, 0.78) 36%, rgba(244, 239, 229, 0.22) 68%, rgba(244, 239, 229, 0.58) 100%),
    linear-gradient(0deg, rgba(244, 239, 229, 0.94) 0%, rgba(244, 239, 229, 0.42) 34%, rgba(244, 239, 229, 0.68) 100%);
  z-index: -1;
}

.hero__content {
  width: min(720px, calc(100% - 40px));
  margin: 0 auto;
  padding: 140px 0 86px;
  justify-self: start;
  transform: translateX(max(20px, calc((100vw - var(--max)) / 2)));
}

.eyebrow {
  margin-bottom: 14px;
  color: var(--coral-deep);
  font-size: 12px;
  line-height: 1.2;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

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

h1,
h2 {
  font-family: ui-serif, "New York", Georgia, "Times New Roman", serif;
}

h1 {
  font-size: clamp(72px, 16vw, 184px);
  font-weight: 700;
  color: var(--coral-deep);
}

h2 {
  max-width: 820px;
  font-size: clamp(40px, 7vw, 84px);
  font-weight: 760;
}

h3 {
  font-size: 17px;
  font-weight: 900;
}

.hero__tagline {
  margin-top: 6px;
  font-family: ui-serif, "New York", Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 6vw, 68px);
  line-height: 1.02;
  font-weight: 760;
}

.hero__copy {
  max-width: 550px;
  margin-top: 22px;
  color: var(--ink-soft);
  font-size: clamp(17px, 2vw, 21px);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid currentColor;
  font-size: 14px;
  font-weight: 900;
}

.button--dark {
  color: var(--white);
  background: var(--black);
}

.button--light {
  color: var(--ink);
  background: rgba(255, 250, 240, 0.62);
  backdrop-filter: blur(14px);
}

.hero__badge {
  position: absolute;
  right: max(20px, calc((100vw - var(--max)) / 2));
  bottom: 32px;
  width: min(210px, calc(100% - 40px));
  padding: 14px;
  border: 1px solid rgba(32, 28, 23, 0.16);
  background: rgba(255, 250, 240, 0.74);
  backdrop-filter: blur(18px);
}

.hero__badge span,
.legal-meta,
.site-footer,
.back-link {
  color: var(--ink-faint);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero__badge strong {
  display: block;
  margin-top: 4px;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.2;
}

.section-grid,
.feature,
.privacy-band,
.gallery,
.proof-strip,
.site-footer {
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(280px, 0.72fr);
  gap: clamp(28px, 6vw, 90px);
  align-items: start;
}

.intro {
  padding: clamp(58px, 9vw, 110px) 0 34px;
}

.intro__copy {
  color: var(--ink-soft);
  font-size: clamp(17px, 2vw, 21px);
}

.intro__copy p + p {
  margin-top: 18px;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 46px;
  border: 1px solid var(--rule);
  background: var(--rule);
}

.proof-strip article {
  min-height: 172px;
  padding: 22px;
  background: rgba(255, 250, 240, 0.68);
}

.proof-strip p {
  margin-top: 12px;
  color: var(--ink-soft);
}

.marker {
  width: 28px;
  height: 8px;
  display: block;
  margin-bottom: 24px;
  background: var(--coral);
}

.marker--sage {
  background: var(--sage);
}

.marker--lavender {
  background: var(--lavender);
}

.marker--blue {
  background: var(--blue);
}

.feature {
  min-height: 720px;
  display: grid;
  grid-template-columns: minmax(260px, 390px) minmax(0, 1fr);
  gap: clamp(32px, 8vw, 118px);
  align-items: center;
  padding: clamp(70px, 11vw, 140px) 0 0;
}

.feature--left {
  grid-template-columns: minmax(0, 1fr) minmax(260px, 390px);
}

.feature--left .feature__media {
  order: 2;
}

.feature__media {
  position: relative;
}

.feature__media::before {
  content: "";
  position: absolute;
  inset: 24px -18px -18px 18px;
  border: 1px solid var(--rule);
  background: rgba(255, 250, 240, 0.46);
  z-index: -1;
}

.feature__media img,
.privacy-band img,
.screenshot-rail img {
  border: 1px solid rgba(32, 28, 23, 0.12);
  box-shadow: 0 24px 64px rgba(32, 28, 23, 0.12);
}

.feature__media img {
  width: min(100%, 390px);
}

.feature__text p:not(.eyebrow) {
  max-width: 560px;
  margin-top: 24px;
  color: var(--ink-soft);
  font-size: clamp(17px, 2vw, 21px);
}

.privacy-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 360px);
  gap: clamp(28px, 6vw, 84px);
  align-items: center;
  margin-top: clamp(78px, 12vw, 150px);
  padding: clamp(34px, 6vw, 64px);
  border: 1px solid var(--rule);
  background:
    linear-gradient(135deg, rgba(239, 109, 88, 0.18), rgba(126, 174, 197, 0.16)),
    rgba(255, 250, 240, 0.64);
}

.privacy-band__panel h2 {
  max-width: 760px;
}

.privacy-band__panel p:not(.eyebrow) {
  max-width: 680px;
  margin-top: 22px;
  color: var(--ink-soft);
  font-size: clamp(17px, 2vw, 21px);
}

.privacy-band img {
  width: 100%;
}

.text-link {
  display: inline-flex;
  margin-top: 26px;
  color: var(--coral-deep);
  font-weight: 900;
}

.gallery {
  padding: clamp(76px, 12vw, 150px) 0 0;
}

.section-heading {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.screenshot-rail {
  max-width: 100%;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(232px, 304px);
  gap: 22px;
  margin-top: 34px;
  padding: 8px 0 34px;
  overflow-x: auto;
  contain: paint;
  scrollbar-color: var(--coral) transparent;
  scroll-snap-type: x proximity;
}

.screenshot-rail img {
  width: 100%;
  scroll-snap-align: start;
}

.developer-note {
  margin-top: clamp(52px, 9vw, 110px);
  padding: clamp(42px, 7vw, 78px) 0 clamp(72px, 11vw, 130px);
  border-top: 1px solid var(--rule);
}

.developer-note__copy {
  color: var(--ink-soft);
  font-size: clamp(17px, 2vw, 20px);
}

.developer-note__copy a {
  color: var(--coral-deep);
  font-weight: 900;
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.legal-links a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--rule);
  padding: 0 14px;
  background: rgba(255, 250, 240, 0.62);
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  padding: 30px 0 42px;
  border-top: 1px solid var(--rule);
}

.site-footer div {
  max-width: 430px;
}

.site-footer img {
  width: 105px;
  margin-bottom: 14px;
}

.site-footer p {
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px 20px;
}

.legal-page .site-nav {
  margin-top: 20px;
}

.legal-shell {
  width: min(820px, calc(100% - 40px));
  margin: 60px auto 110px;
  padding: clamp(30px, 6vw, 60px);
  border: 1px solid var(--rule);
  background: rgba(255, 250, 240, 0.72);
}

.back-link {
  display: inline-flex;
  margin-bottom: 32px;
  color: var(--ink-soft);
}

.legal-shell h1 {
  max-width: 760px;
  margin-top: 6px;
  color: var(--ink);
  font-size: clamp(46px, 9vw, 82px);
}

.legal-shell h2 {
  margin-top: 46px;
  font-family: ui-sans-serif, -apple-system, BlinkMacSystemFont, "SF Pro Text", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(24px, 4vw, 34px);
  line-height: 1.05;
}

.legal-shell h3 {
  margin-top: 28px;
}

.legal-shell p,
.legal-shell li {
  color: var(--ink-soft);
  font-size: 17px;
}

.legal-shell p {
  margin-top: 14px;
}

.legal-shell ul {
  margin: 14px 0 0;
  padding-left: 22px;
}

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

.legal-shell a {
  color: var(--coral-deep);
  font-weight: 800;
}

.legal-meta {
  margin-top: 18px;
}

.contact-panel {
  margin-top: 28px;
  padding: 20px;
  border: 1px solid var(--rule);
  background: var(--paper);
}

.identity-list {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.identity-list p {
  margin: 0;
}

.identity-list strong {
  color: var(--ink);
}

.redirect {
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 24px;
}

.redirect main {
  width: min(520px, 100%);
  padding: 28px;
  border: 1px solid var(--rule);
  background: var(--surface);
}

@media (max-width: 880px) {
  .site-nav {
    width: min(100% - 28px, var(--max));
  }

  .nav-links {
    display: none;
  }

  .hero {
    min-height: 80svh;
  }

  .hero__content {
    width: min(100% - 32px, 720px);
    padding: 112px 0 84px;
    transform: none;
  }

  .hero__badge {
    display: none;
  }

  .section-grid,
  .feature,
  .feature--left,
  .privacy-band {
    grid-template-columns: 1fr;
  }

  .proof-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .feature {
    min-height: auto;
  }

  .feature--left .feature__media {
    order: 0;
  }

  .feature__media img {
    width: min(100%, 340px);
  }

  .privacy-band img {
    width: min(100%, 320px);
  }

  .site-footer {
    flex-direction: column;
  }

  .site-footer nav {
    justify-content: flex-start;
  }
}

@media (max-width: 560px) {
  body {
    background-size: 34px 34px;
  }

  .site-nav {
    min-height: 48px;
    margin-top: 12px;
  }

  .brand {
    width: 98px;
  }

  .nav-action {
    min-height: 36px;
    padding: 0 12px;
    font-size: 12px;
  }

  .hero {
    min-height: 78svh;
  }

  .hero__shade {
    background:
      linear-gradient(0deg, rgba(244, 239, 229, 0.96) 0%, rgba(244, 239, 229, 0.66) 42%, rgba(244, 239, 229, 0.44) 100%),
      linear-gradient(90deg, rgba(244, 239, 229, 0.95), rgba(244, 239, 229, 0.36));
  }

  .hero__content {
    padding-bottom: 46px;
  }

  .hero__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .section-grid,
  .feature,
  .privacy-band,
  .gallery,
  .proof-strip,
  .site-footer,
  .legal-shell {
    width: min(100% - 28px, var(--max));
  }

  .proof-strip {
    grid-template-columns: 1fr;
  }

  .proof-strip article {
    min-height: 140px;
  }

  .privacy-band {
    padding: 24px;
  }

  .screenshot-rail {
    grid-auto-columns: minmax(210px, 72vw);
  }

  .legal-shell {
    margin-top: 38px;
    padding: 24px;
  }
}

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