:root {
  --paper: #fbf8f4;
  --paper-deep: #f4ede7;
  --paper-soft: #f8f3ee;
  --ink: #1f1c1a;
  --muted: #716d69;
  --taupe: #a99180;
  --taupe-deep: #735e51;
  --taupe-light: #ddcec3;
  --line: rgba(58, 48, 42, 0.13);
  --white: #fffdfb;
  --success: #48604e;
  --warning: #8c5e2f;
  --radius-sm: 18px;
  --radius: 28px;
  --radius-lg: 42px;
  --shadow: 0 24px 80px rgba(67, 50, 39, 0.11);
  --shadow-soft: 0 14px 42px rgba(67, 50, 39, 0.07);
  --serif: Iowan Old Style, Baskerville, "Times New Roman", serif;
  --sans: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", sans-serif;
  --content: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 84% 4%, rgba(221, 206, 195, 0.28), transparent 24rem),
    var(--paper);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid rgba(115, 94, 81, 0.38);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 999;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--ink);
  color: white;
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(calc(100% - 40px), var(--content));
  margin-inline: auto;
}

.narrow {
  width: min(calc(100% - 40px), 820px);
  margin-inline: auto;
}

.section {
  padding: 112px 0;
}

.section.compact {
  padding: 80px 0;
}

.section.tint {
  background: var(--paper-deep);
}

.section.dark {
  color: white;
  background: var(--ink);
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--taupe-deep);
  font-size: 0.77rem;
  font-weight: 700;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

.dark .eyebrow {
  color: var(--taupe-light);
}

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

h1,
h2,
h3 {
  text-wrap: balance;
}

h1,
h2 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1.03;
}

h1 {
  margin-bottom: 26px;
  font-size: clamp(3.4rem, 7.7vw, 7.2rem);
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(2.6rem, 5.2vw, 4.8rem);
}

h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
  line-height: 1.3;
}

.lead {
  max-width: 720px;
  color: var(--muted);
  font-size: clamp(1.08rem, 2vw, 1.35rem);
  line-height: 1.6;
}

.dark .lead {
  color: rgba(255, 255, 255, 0.72);
}

.header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid transparent;
  background: rgba(251, 248, 244, 0.84);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.header.scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 8px 30px rgba(58, 42, 32, 0.04);
}

.nav {
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--serif);
  font-size: 1.45rem;
  letter-spacing: -0.03em;
  line-height: 1;
}

.brand-mark {
  display: grid;
  width: 37px;
  height: 37px;
  place-items: center;
  overflow: hidden;
  border-radius: 11px;
  box-shadow: 0 6px 18px rgba(70, 52, 41, 0.11);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.nav-link {
  padding: 10px 13px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.91rem;
  font-weight: 560;
  transition: color 180ms ease, background 180ms ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--ink);
  background: rgba(169, 145, 128, 0.12);
}

.nav-link.mobile-cta {
  display: none;
}

.nav-cta,
.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 21px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 650;
  line-height: 1.2;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.nav-cta,
.button.primary {
  background: var(--ink);
  color: white;
  box-shadow: 0 11px 28px rgba(31, 28, 26, 0.14);
}

.nav-cta:hover,
.button:hover {
  transform: translateY(-2px);
}

.button.primary:hover {
  box-shadow: 0 16px 36px rgba(31, 28, 26, 0.18);
}

.button.secondary {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.58);
  color: var(--ink);
}

.button.light {
  background: white;
  color: var(--ink);
}

.button.ghost-light {
  border-color: rgba(255, 255, 255, 0.24);
  color: white;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.6);
  color: var(--ink);
  cursor: pointer;
}

.menu-lines,
.menu-lines::before,
.menu-lines::after {
  width: 20px;
  height: 1.5px;
  background: currentColor;
  content: "";
  transition: transform 180ms ease;
}

.menu-lines {
  position: relative;
}

.menu-lines::before,
.menu-lines::after {
  position: absolute;
  left: 0;
}

.menu-lines::before {
  top: -6px;
}

.menu-lines::after {
  top: 6px;
}

.menu-open .menu-lines {
  background: transparent;
}

.menu-open .menu-lines::before {
  top: 0;
  transform: rotate(45deg);
}

.menu-open .menu-lines::after {
  top: 0;
  transform: rotate(-45deg);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 88px 0 118px;
}

.hero::after {
  position: absolute;
  z-index: -1;
  right: -13rem;
  bottom: -8rem;
  width: 36rem;
  height: 36rem;
  border-radius: 50%;
  background: rgba(221, 206, 195, 0.34);
  content: "";
  filter: blur(1px);
}

.hero-grid {
  display: grid;
  align-items: center;
  gap: clamp(50px, 8vw, 110px);
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.72fr);
}

.hero-copy .lead {
  max-width: 640px;
}

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

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.trust-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.48);
  color: var(--taupe-deep);
  font-size: 0.85rem;
  font-weight: 650;
}

.trust-chip::before {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--taupe);
  content: "";
}

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

.phone-stage::before {
  position: absolute;
  width: 92%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: linear-gradient(145deg, #ebdfd6, #f8f4ef);
  box-shadow: inset 0 0 0 1px rgba(95, 75, 62, 0.06);
  content: "";
}

.device {
  position: relative;
  z-index: 1;
  width: min(330px, 78vw);
  padding: 10px;
  border: 1px solid rgba(20, 18, 17, 0.38);
  border-radius: 50px;
  background: #211f1e;
  box-shadow: 0 40px 90px rgba(48, 36, 29, 0.27), inset 0 0 0 2px rgba(255, 255, 255, 0.13);
}

.device::before {
  position: absolute;
  z-index: 3;
  top: 19px;
  left: 50%;
  width: 88px;
  height: 24px;
  border-radius: 999px;
  background: #111;
  content: "";
  transform: translateX(-50%);
}

.device-screen {
  overflow: hidden;
  border-radius: 40px;
  background: var(--paper);
}

.device-screen img {
  width: 100%;
  height: auto;
}

.floating-note {
  position: absolute;
  z-index: 2;
  right: -10px;
  bottom: 64px;
  width: 192px;
  padding: 17px 18px;
  border: 1px solid rgba(73, 58, 48, 0.1);
  border-radius: 20px;
  background: rgba(255, 253, 251, 0.88);
  box-shadow: var(--shadow-soft);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  color: var(--taupe-deep);
  font-size: 0.82rem;
  font-weight: 650;
  line-height: 1.45;
}

.floating-note strong {
  display: block;
  margin-bottom: 3px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.22rem;
  font-weight: 400;
}

.proof-bar {
  border-block: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.3);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.proof-item {
  padding: 30px 24px;
  text-align: center;
}

.proof-item + .proof-item {
  border-left: 1px solid var(--line);
}

.proof-item strong {
  display: block;
  margin-bottom: 3px;
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 400;
}

.proof-item span {
  color: var(--muted);
  font-size: 0.87rem;
}

.split {
  display: grid;
  align-items: center;
  gap: clamp(48px, 8vw, 110px);
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.split.reverse .split-media {
  order: 2;
}

.story-quote {
  position: relative;
  padding: 46px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.58);
  box-shadow: var(--shadow-soft);
}

.story-quote::before {
  display: block;
  height: 38px;
  color: var(--taupe-light);
  content: "“";
  font-family: var(--serif);
  font-size: 5rem;
  line-height: 0.8;
}

.story-quote blockquote {
  margin: 18px 0 16px;
  font-family: var(--serif);
  font-size: clamp(1.7rem, 3vw, 2.7rem);
  line-height: 1.25;
}

.story-quote p {
  margin: 0;
  color: var(--taupe-deep);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.section-heading {
  display: flex;
  margin-bottom: 46px;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
}

.section-heading h2 {
  max-width: 760px;
  margin-bottom: 0;
}

.section-heading .lead {
  max-width: 440px;
  margin-bottom: 6px;
  font-size: 1rem;
}

.feature-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(12, 1fr);
}

.feature-card {
  position: relative;
  min-height: 310px;
  overflow: hidden;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.58);
  box-shadow: var(--shadow-soft);
}

.feature-card.large {
  grid-column: span 7;
}

.feature-card.medium {
  grid-column: span 5;
}

.feature-card.third {
  min-height: 270px;
  grid-column: span 4;
}

.feature-card.accent {
  color: white;
  background: var(--taupe-deep);
}

.feature-card.accent p {
  color: rgba(255, 255, 255, 0.75);
}

.feature-card h3 {
  max-width: 420px;
  font-family: var(--serif);
  font-size: clamp(1.65rem, 3vw, 2.5rem);
  font-weight: 400;
}

.feature-card p {
  max-width: 450px;
  color: var(--muted);
}

.feature-icon {
  display: grid;
  width: 54px;
  height: 54px;
  margin-bottom: 30px;
  place-items: center;
  border-radius: 17px;
  background: var(--paper-deep);
  color: var(--taupe-deep);
  font-family: var(--serif);
  font-size: 1.45rem;
}

.accent .feature-icon {
  background: rgba(255, 255, 255, 0.13);
  color: white;
}

.mini-phone {
  position: absolute;
  right: 28px;
  bottom: -110px;
  width: 190px;
  padding: 6px;
  border-radius: 28px;
  background: #262321;
  box-shadow: 0 20px 45px rgba(42, 31, 25, 0.24);
  transform: rotate(3deg);
}

.mini-phone img {
  border-radius: 23px;
}

.privacy-panel {
  display: grid;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--ink);
  color: white;
  grid-template-columns: 1.05fr 0.95fr;
}

.privacy-copy {
  padding: clamp(42px, 7vw, 84px);
}

.privacy-copy h2 {
  max-width: 650px;
}

.privacy-copy p {
  max-width: 660px;
  color: rgba(255, 255, 255, 0.68);
}

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

.privacy-list li {
  display: flex;
  align-items: flex-start;
  gap: 13px;
}

.privacy-list li::before {
  display: grid;
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.13);
  color: var(--taupe-light);
  content: "✓";
  font-size: 0.72rem;
  font-weight: 800;
}

.privacy-aside {
  display: grid;
  padding: clamp(36px, 6vw, 70px);
  align-content: center;
  background: linear-gradient(145deg, #8f7665, #6e594d);
}

.privacy-stat {
  padding: 24px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.privacy-stat:last-child {
  border-bottom: 0;
}

.privacy-stat strong {
  display: block;
  font-family: var(--serif);
  font-size: 2.15rem;
  font-weight: 400;
}

.privacy-stat span {
  color: rgba(255, 255, 255, 0.69);
  font-size: 0.9rem;
}

.pricing-card {
  display: grid;
  padding: clamp(36px, 7vw, 76px);
  align-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.62);
  box-shadow: var(--shadow-soft);
  gap: 50px;
  grid-template-columns: 1fr auto;
}

.pricing-card h2 {
  max-width: 700px;
  margin-bottom: 16px;
}

.pricing-card p {
  max-width: 670px;
  margin-bottom: 0;
  color: var(--muted);
}

.price-note {
  min-width: 260px;
  padding: 26px;
  border-radius: var(--radius);
  background: var(--paper-deep);
  text-align: center;
}

.price-note strong {
  display: block;
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 400;
}

.price-note span {
  color: var(--muted);
  font-size: 0.86rem;
}

.store-badge {
  display: inline-flex;
  min-width: 230px;
  min-height: 70px;
  align-items: center;
  justify-content: center;
  gap: 13px;
  padding: 12px 20px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 15px;
  background: #090909;
  color: white;
  cursor: pointer;
  text-align: left;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.store-badge:hover {
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.2);
  transform: translateY(-2px);
}

.store-app-icon {
  display: block;
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 10px;
  background: var(--paper);
}

.store-app-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.store-text small,
.store-text strong {
  display: block;
}

.store-text small {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.store-text strong {
  font-size: 1.08rem;
  font-weight: 650;
}

.page-hero {
  padding: 100px 0 86px;
  text-align: center;
}

.page-hero h1 {
  max-width: 940px;
  margin-inline: auto;
}

.page-hero .lead {
  margin-inline: auto;
}

.subnav {
  display: flex;
  margin-top: 34px;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
}

.subnav a {
  padding: 9px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--taupe-deep);
  font-size: 0.88rem;
  font-weight: 650;
}

.showcase-row {
  display: grid;
  padding: 90px 0;
  align-items: center;
  border-bottom: 1px solid var(--line);
  gap: clamp(45px, 8vw, 110px);
  grid-template-columns: 0.85fr 1.15fr;
}

.showcase-row:nth-child(even) {
  grid-template-columns: 1.15fr 0.85fr;
}

.showcase-row:nth-child(even) .showcase-visual {
  order: 2;
}

.showcase-row:last-child {
  border-bottom: 0;
}

.showcase-visual {
  display: grid;
  min-height: 590px;
  place-items: center;
  border-radius: var(--radius-lg);
  background: var(--paper-deep);
}

.personal-visual {
  position: relative;
  overflow: hidden;
}

.personal-note {
  right: 18px;
  bottom: 34px;
}

.voice-phone {
  right: 22px;
  bottom: -135px;
  width: 155px;
  transform: rotate(-3deg);
}

.showcase-visual .device {
  width: min(280px, 72vw);
}

.device-pair-stage {
  min-height: 620px;
  overflow: visible;
  border-radius: 0;
  background: transparent;
}

.device-pair {
  position: relative;
  width: min(430px, calc(100% - 24px));
  height: 590px;
}

.device-pair .device {
  position: absolute;
  margin: 0;
}

.device-pair .primary-device {
  z-index: 1;
  top: 18px;
  right: 4px;
  width: min(255px, 62%);
  transform: rotate(2deg);
}

.device-pair .secondary-device {
  z-index: 2;
  bottom: 18px;
  left: 4px;
  width: min(210px, 51%);
  box-shadow: 0 34px 78px rgba(48, 36, 29, 0.34), inset 0 0 0 2px rgba(255, 255, 255, 0.13);
  transform: rotate(-3deg);
}

.secondary-device::before {
  top: 16px;
  width: 66px;
  height: 19px;
}

.secondary-device .device-screen {
  border-radius: 34px;
}

.dark-device {
  background: #080808;
  border-color: #242221;
  box-shadow: 0 34px 78px rgba(18, 15, 13, 0.42) !important;
}

.dark-device .device-screen {
  outline: 0;
  background: #0d0c0c;
  box-shadow: none;
}

.showcase-row.polaroid-showcase:nth-child(even) {
  gap: clamp(42px, 5vw, 72px);
  grid-template-columns: minmax(320px, 0.68fr) minmax(560px, 1.32fr);
}

.polaroid-showcase .showcase-visual {
  order: 2;
}

.polaroid-pair {
  display: grid;
  width: min(640px, 100%);
  height: auto;
  padding-bottom: 48px;
  align-items: end;
  gap: 22px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.polaroid-pair .device,
.polaroid-pair .primary-device,
.polaroid-pair .secondary-device {
  position: relative;
  inset: auto;
  width: 100%;
  transform: none;
}

.polaroid-pair .device-screen {
  display: grid;
  overflow: hidden;
  aspect-ratio: 760 / 1647;
  place-items: center;
}

.polaroid-pair .device-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.polaroid-pair .saved-device .device-screen {
  background: #f1ece7;
}

.polaroid-pair .saved-device .device-screen img {
  object-fit: contain;
}

.device-label {
  position: absolute;
  z-index: 4;
  bottom: -42px;
  left: 50%;
  width: max-content;
  max-width: 180px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 253, 251, 0.94);
  box-shadow: var(--shadow-soft);
  color: var(--taupe-deep);
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  transform: translateX(-50%);
}

.showcase-copy h2 {
  font-size: clamp(2.4rem, 4.5vw, 4.2rem);
}

.showcase-copy p {
  color: var(--muted);
}

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

.check-list li {
  display: flex;
  gap: 11px;
}

.check-list li::before {
  color: var(--taupe-deep);
  content: "—";
  font-weight: 700;
}

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

.value-card {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.58);
}

.value-card .number {
  display: grid;
  width: 45px;
  height: 45px;
  margin-bottom: 44px;
  place-items: center;
  border-radius: 50%;
  background: var(--paper-deep);
  color: var(--taupe-deep);
  font-family: var(--serif);
}

.value-card h3 {
  font-family: var(--serif);
  font-size: 1.65rem;
  font-weight: 400;
}

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

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-question {
  display: flex;
  width: 100%;
  padding: 24px 0;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  text-align: left;
  font-weight: 650;
}

.faq-question::after {
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  color: var(--taupe-deep);
  content: "+";
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1;
  text-align: center;
  transition: transform 180ms ease;
}

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

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 240ms ease;
}

.faq-answer > div {
  overflow: hidden;
}

.faq-answer p {
  max-width: 760px;
  padding: 0 0 24px;
  margin-bottom: 0;
  color: var(--muted);
}

.faq-item.open .faq-answer {
  grid-template-rows: 1fr;
}

.about-identity {
  margin-top: 0;
  margin-bottom: 0;
}

.about-identity img {
  width: 100%;
  height: auto;
}

.prose {
  font-size: 1.08rem;
}

.prose h2 {
  margin-top: 70px;
  font-size: clamp(2.2rem, 4vw, 3.6rem);
}

.prose h3 {
  margin-top: 42px;
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 400;
}

.prose p,
.prose li {
  color: #4d4946;
}

.prose a {
  color: var(--taupe-deep);
  text-decoration: underline;
  text-decoration-color: var(--taupe-light);
  text-underline-offset: 4px;
}

.prose ul {
  padding-left: 1.25rem;
}

.legal-hero {
  padding: 76px 0 48px;
}

.legal-hero h1 {
  margin-bottom: 18px;
  font-size: clamp(3rem, 7vw, 6rem);
}

.legal-meta {
  color: var(--muted);
  font-size: 0.88rem;
}

.placeholder-warning {
  margin: 18px 0 42px;
  padding: 20px 22px;
  border: 1px solid rgba(140, 94, 47, 0.3);
  border-radius: var(--radius-sm);
  background: #fff5e9;
  color: #69441f;
}

.placeholder-warning strong {
  display: block;
  margin-bottom: 4px;
}

.placeholder {
  display: inline-block;
  padding: 1px 7px;
  border-radius: 5px;
  background: #fff0dc;
  color: #7d4f23;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.9em;
}

.legal-card {
  margin: 26px 0;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.56);
}

.legal-card p:last-child {
  margin-bottom: 0;
}

.legal-toc {
  display: grid;
  margin: 28px 0 54px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--paper-soft);
  gap: 7px;
}

.legal-toc a {
  color: var(--taupe-deep);
  font-weight: 600;
}

.support-panel {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.58);
  box-shadow: var(--shadow-soft);
  grid-template-columns: 0.9fr 1.1fr;
}

.support-intro,
.support-contact-card {
  padding: clamp(38px, 6vw, 72px);
}

.support-intro h2 {
  max-width: 520px;
}

.support-intro > p:not(.eyebrow) {
  max-width: 560px;
  color: var(--muted);
}

.support-contact-card {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  background: var(--paper-deep);
}

.support-contact-card h3 {
  margin-bottom: 14px;
  font-family: var(--serif);
  font-size: clamp(1.9rem, 3.4vw, 3rem);
  font-weight: 400;
}

.support-contact-card p {
  max-width: 520px;
  color: var(--muted);
}

.support-email {
  display: inline-block;
  margin: 8px 0 22px;
  color: var(--taupe-deep);
  font-family: var(--serif);
  font-size: clamp(1.35rem, 3vw, 2.15rem);
  line-height: 1.2;
  text-decoration: underline;
  text-decoration-color: var(--taupe-light);
  text-underline-offset: 7px;
}

.support-note {
  margin: 24px 0 0;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.88rem;
}

.cta-panel {
  display: grid;
  padding: clamp(44px, 8vw, 88px);
  align-items: center;
  border-radius: var(--radius-lg);
  background: var(--taupe-deep);
  color: white;
  gap: 50px;
  grid-template-columns: 1fr auto;
}

.cta-panel h2 {
  max-width: 700px;
  margin-bottom: 14px;
}

.cta-panel p {
  max-width: 650px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.74);
}

.footer {
  padding: 74px 0 28px;
  border-top: 1px solid var(--line);
  background: var(--paper-soft);
}

.footer-grid {
  display: grid;
  margin-bottom: 58px;
  gap: 44px;
  grid-template-columns: 1.4fr repeat(3, 0.7fr);
}

.footer-intro {
  max-width: 350px;
}

.footer-intro p {
  margin-top: 18px;
  color: var(--muted);
}

.footer h3 {
  margin-bottom: 16px;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: 9px;
}

.footer-links a {
  color: var(--muted);
  font-size: 0.93rem;
}

.footer-links a:hover {
  color: var(--ink);
}

.footer-bottom {
  display: flex;
  padding-top: 24px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.8rem;
}

.footer-note {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-note::before {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--success);
  content: "";
}

.coming-soon-dialog {
  width: min(calc(100% - 36px), 480px);
  padding: 0;
  border: 0;
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 30px 100px rgba(31, 28, 26, 0.32);
}

.coming-soon-dialog::backdrop {
  background: rgba(31, 28, 26, 0.42);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
}

.dialog-content {
  padding: 38px;
  text-align: center;
}

.dialog-content img {
  width: 76px;
  height: 76px;
  margin: 0 auto 22px;
  border-radius: 20px;
}

.dialog-content h2 {
  margin-bottom: 12px;
  font-size: 2.2rem;
}

.dialog-content p {
  color: var(--muted);
}

.reveal {
  opacity: 1;
  transform: none;
}

.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.js .reveal.visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 980px) {
  .nav-links,
  .nav > .nav-cta {
    display: none;
  }

  .menu-toggle {
    display: grid;
  }

  .nav-links.open {
    position: fixed;
    top: 78px;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    padding: 38px 20px 60px;
    align-items: stretch;
    flex-direction: column;
    gap: 4px;
    background: var(--paper);
  }

  .nav-links.open .nav-link {
    padding: 17px 18px;
    font-family: var(--serif);
    font-size: 1.8rem;
    font-weight: 400;
  }

  .nav-links.open .mobile-cta {
    display: inline-flex;
    margin-top: 20px;
    font-family: var(--sans);
    font-size: 1rem;
    font-weight: 650;
  }

  .hero-grid,
  .split,
  .privacy-panel,
  .support-panel,
  .showcase-row,
  .showcase-row:nth-child(even) {
    grid-template-columns: 1fr;
  }

  .showcase-row.polaroid-showcase:nth-child(even) {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: 760px;
  }

  .phone-stage {
    min-height: 600px;
  }

  .split.reverse .split-media,
  .showcase-row:nth-child(even) .showcase-visual {
    order: initial;
  }

  .feature-card.large,
  .feature-card.medium {
    grid-column: span 6;
  }

  .feature-card.third {
    grid-column: span 6;
  }

  .pricing-card,
  .cta-panel {
    align-items: start;
    grid-template-columns: 1fr;
  }

  .price-note {
    width: 100%;
  }

  .footer-grid {
    grid-template-columns: 1.4fr repeat(2, 0.8fr);
  }
}

@media (max-width: 720px) {
  body {
    font-size: 16px;
  }

  .container,
  .narrow {
    width: min(calc(100% - 28px), var(--content));
  }

  .section {
    padding: 78px 0;
  }

  .section.compact {
    padding: 58px 0;
  }

  .hero {
    padding: 62px 0 80px;
  }

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

  .page-hero h1,
  .legal-hero h1 {
    font-size: clamp(3.1rem, 14vw, 4.6rem);
  }

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

  .proof-item:nth-child(3) {
    border-left: 0;
  }

  .proof-item:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }

  .section-heading {
    align-items: start;
    flex-direction: column;
    gap: 14px;
  }

  .feature-card.large,
  .feature-card.medium,
  .feature-card.third {
    grid-column: 1 / -1;
  }

  .feature-card {
    min-height: 280px;
    padding: 28px;
  }

  .mini-phone {
    right: 20px;
    width: 145px;
  }

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

  .showcase-row {
    padding: 64px 0;
  }

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

  .polaroid-pair {
    width: min(650px, 100%);
  }

  .story-quote {
    padding: 34px 28px;
  }

  .floating-note {
    right: 0;
    bottom: 20px;
  }

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

  .footer-intro {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 600px) {
  .polaroid-showcase .showcase-visual {
    min-height: auto;
  }

  .polaroid-pair {
    width: min(330px, 86vw);
    padding: 10px 0 48px;
    gap: 76px;
    grid-template-columns: 1fr;
  }
}

@media (max-width: 440px) {
  .proof-item {
    padding-inline: 12px;
  }

  .actions .button {
    width: 100%;
  }

  .phone-stage {
    min-height: 580px;
  }

  .device {
    width: min(300px, 85vw);
  }

  .device-pair {
    width: min(390px, calc(100% - 4px));
  }

  .polaroid-pair .primary-device,
  .polaroid-pair .secondary-device {
    width: 100%;
  }

  .device-label {
    max-width: 145px;
    font-size: 0.66rem;
  }

  .floating-note {
    width: 160px;
  }

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

  .footer-intro {
    grid-column: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .js .reveal {
    opacity: 1;
    transform: none;
  }
}
