:root {
  --paper: #fbf6ef;
  --founders-background: #fbf7f0;
  --paper-deep: #f4e9de;
  --card: #fffdfa;
  --ink: #352d2a;
  --muted: #70645f;
  --line: #e7d9cd;
  --coral: #e85f79;
  --coral-dark: #c94763;
  --coral-soft: #f8dfe4;
  --sage: #dcebe2;
  --sage-soft: #eef4ed;
  --green: #276655;
  --green-mid: #4ea98b;
  --green-light: #cfe8dd;
  --gold: #e9a72f;
  --red: #cd4c43;
  --shadow: 0 24px 70px rgba(77, 55, 45, 0.13);
  --shadow-soft: 0 16px 45px rgba(77, 55, 45, 0.09);
  --display: "Fredoka", ui-rounded, "Arial Rounded MT Bold", sans-serif;
  --body: "Nunito", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  overflow-x: hidden;
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

img {
  height: auto;
}

.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
  pointer-events: none;
}

a {
  color: inherit;
}

button,
input,
textarea {
  font: inherit;
}

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

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

h1,
h2,
h3 {
  font-family: var(--display);
  text-wrap: balance;
}

h1 {
  margin-bottom: 26px;
  font-size: clamp(3.5rem, 6vw, 5.65rem);
  font-weight: 600;
  line-height: 0.99;
  letter-spacing: -0.045em;
}

h2 {
  margin-bottom: 24px;
  font-size: clamp(2.55rem, 4.2vw, 4.45rem);
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: -0.037em;
}

h3 {
  font-size: 1.25rem;
  line-height: 1.25;
}

h1 em,
h2 em {
  color: var(--coral);
  font-style: normal;
}

::selection {
  color: var(--ink);
  background: var(--coral-soft);
}

:focus-visible {
  outline: 3px solid rgba(232, 95, 121, 0.55);
  outline-offset: 4px;
}

.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;
}

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

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

.container {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.narrow {
  width: min(860px, 100%);
  text-align: center;
}

.section-pad {
  padding: 128px 0;
}

.section-kicker,
.eyebrow {
  margin-bottom: 19px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: 0.115em;
  text-transform: uppercase;
}

.section-kicker-light {
  color: #aed5c5;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  color: white;
  background: var(--coral);
  border: 0;
  border-radius: 999px;
  box-shadow: 0 13px 28px rgba(194, 63, 89, 0.19);
  font-family: var(--display);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  transition: background 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.button:hover {
  background: var(--coral-dark);
  box-shadow: 0 16px 32px rgba(194, 63, 89, 0.25);
  transform: translateY(-2px);
}

.button-small {
  min-height: 43px;
  padding: 11px 18px;
  font-size: 0.91rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
}

.text-link span {
  color: var(--coral);
  font-size: 1.15em;
  transition: transform 160ms ease;
}

.text-link:hover span {
  transform: translateY(3px);
}

/* Header */
.site-header {
  position: relative;
  z-index: 100;
  height: 86px;
  background: rgba(251, 246, 239, 0.88);
  border-bottom: 1px solid rgba(231, 217, 205, 0.65);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.site-header.is-sticky {
  position: sticky;
  top: 0;
}

.header-inner {
  display: grid;
  height: 100%;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

.brand {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  text-decoration: none;
}

.brand img {
  width: 104px;
  height: 50px;
  object-fit: contain;
}

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

.site-nav a {
  position: relative;
  color: #5d514c;
  font-size: 0.91rem;
  font-weight: 800;
  text-decoration: none;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 2px;
  background: var(--coral);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 160ms ease;
}

.site-nav a:hover::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 17px;
}

.language-picker {
  position: relative;
}

.language-picker-trigger {
  display: inline-flex;
  min-width: 76px;
  height: 44px;
  padding: 0 11px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--green);
  background: rgba(255, 253, 250, 0.68);
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: 0 4px 14px rgba(77, 55, 45, 0.04);
  cursor: pointer;
  font-size: 0.79rem;
  font-weight: 800;
  list-style: none;
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.language-picker-trigger::-webkit-details-marker {
  display: none;
}

.language-picker-trigger:hover,
.language-picker[open] .language-picker-trigger {
  background: white;
  border-color: #b9d2c8;
  box-shadow: 0 8px 22px rgba(77, 55, 45, 0.1);
  transform: translateY(-1px);
}

.language-picker-trigger:focus-visible {
  outline: 3px solid rgba(232, 95, 121, 0.32);
  outline-offset: 3px;
}

.language-picker-globe,
.language-picker-chevron {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.language-picker-chevron {
  width: 12px;
  height: 12px;
  transition: transform 220ms cubic-bezier(0.22, 1, 0.36, 1);
}

.language-picker[open] .language-picker-chevron {
  transform: rotate(180deg);
}

.language-links {
  position: absolute;
  z-index: 10;
  top: calc(100% + 11px);
  right: 0;
  display: grid;
  width: min(238px, calc(100vw - 34px));
  padding: 8px;
  gap: 3px;
  background: rgba(255, 253, 250, 0.97);
  border: 1px solid rgba(222, 207, 195, 0.92);
  border-radius: 18px;
  box-shadow: 0 22px 55px rgba(77, 55, 45, 0.18), 0 4px 12px rgba(77, 55, 45, 0.07);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transform-origin: top right;
  animation: language-picker-in 180ms cubic-bezier(0.22, 1, 0.36, 1);
}

.language-links::before {
  position: absolute;
  top: -6px;
  right: 26px;
  width: 11px;
  height: 11px;
  background: #fffdfa;
  border-top: 1px solid rgba(222, 207, 195, 0.92);
  border-left: 1px solid rgba(222, 207, 195, 0.92);
  content: "";
  transform: rotate(45deg);
}

.language-link {
  position: relative;
  display: inline-flex;
  width: 100%;
  min-height: 50px;
  padding: 0 13px;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  color: var(--muted);
  border-radius: 12px;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: color 160ms ease, background 160ms ease, transform 160ms ease;
}

.language-link::before {
  margin-right: auto;
  color: var(--ink);
  content: attr(aria-label);
  font-size: 0.94rem;
  font-weight: 700;
  letter-spacing: 0;
}

.language-link:hover {
  color: var(--green);
  background: var(--sage-soft);
  transform: translateX(2px);
}

.language-link:focus-visible {
  outline: 3px solid rgba(232, 95, 121, 0.28);
  outline-offset: -2px;
}

.language-link[aria-current="page"] {
  color: var(--green);
  background: var(--sage);
}

.language-link[aria-current="page"]::after {
  display: inline-flex;
  width: 20px;
  height: 20px;
  align-items: center;
  justify-content: center;
  color: white;
  background: var(--green);
  border-radius: 50%;
  content: "✓";
  font-size: 0.72rem;
  letter-spacing: 0;
}

@keyframes language-picker-in {
  from {
    opacity: 0;
    transform: translateY(-7px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  padding: 12px 10px;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.menu-button > span:not(.sr-only) {
  display: block;
  width: 23px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 180ms ease;
}

/* Hero */
.hero-section {
  position: relative;
  overflow: hidden;
  padding: 72px 0 0;
}

.hero-wash {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.hero-wash-one {
  top: -310px;
  right: -260px;
  width: 760px;
  height: 760px;
  background: rgba(190, 219, 202, 0.36);
}

.hero-wash-two {
  top: 330px;
  left: -190px;
  width: 370px;
  height: 370px;
  background: rgba(247, 212, 200, 0.5);
}

.hero-grid {
  position: relative;
  display: grid;
  min-height: 690px;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  gap: 38px;
}

.hero-copy {
  position: relative;
  z-index: 4;
  padding: 45px 0 100px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
}

.eyebrow span {
  display: inline-block;
  width: 10px;
  height: 10px;
  background: var(--coral);
  border-radius: 50%;
  box-shadow: 0 0 0 5px var(--coral-soft);
}

.hero-intro {
  max-width: 570px;
  margin-bottom: 32px;
  color: var(--muted);
  font-size: 1.24rem;
  line-height: 1.58;
}

.button-row {
  display: flex;
  align-items: center;
  gap: 26px;
}

.hero-note {
  max-width: 540px;
  margin: 25px 0 0;
  color: #8d7d75;
  font-size: 0.82rem;
  line-height: 1.5;
}

.hero-visual {
  position: relative;
  align-self: stretch;
  min-height: 750px;
}

.phone {
  filter: drop-shadow(0 24px 35px rgba(63, 45, 38, 0.18));
  user-select: none;
}

.phone-halo {
  position: absolute;
  top: 59px;
  left: 50%;
  width: 510px;
  height: 510px;
  background: #f0e2d6;
  border-radius: 49% 51% 42% 58% / 58% 41% 59% 42%;
  transform: translateX(-47%) rotate(7deg);
}

.phone-hero {
  position: absolute;
  z-index: 2;
  top: 6px;
  left: 50%;
  width: min(445px, 79%);
  transform: translateX(-45%) rotate(1.2deg);
}

.paper-note {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 17px;
  background: rgba(255, 253, 250, 0.96);
  border: 1px solid rgba(226, 209, 197, 0.9);
  border-radius: 17px;
  box-shadow: var(--shadow-soft);
  line-height: 1.15;
}

.paper-note strong,
.paper-note small {
  display: block;
}

.paper-note strong {
  font-family: var(--display);
  font-size: 0.94rem;
  font-weight: 500;
}

.paper-note small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 700;
}

.paper-note-progress {
  top: 255px;
  left: -8px;
}

.note-ring {
  display: grid;
  width: 43px;
  height: 43px;
  place-items: center;
  border: 6px solid var(--coral);
  border-right-color: #f2dfd7;
  border-radius: 50%;
  font-family: var(--display);
  font-size: 0.88rem;
}

.paper-note-personal {
  right: -4px;
  bottom: 106px;
}

.note-icon {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  color: white;
  background: var(--green-mid);
  border-radius: 12px;
  font-weight: 800;
}

.reassurance {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: -4px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
}

.reassurance > div {
  position: relative;
  display: grid;
  min-height: 112px;
  grid-template-columns: 44px 1fr;
  grid-template-rows: auto auto;
  align-content: center;
  padding: 24px 34px;
}

.reassurance > div + div::before {
  position: absolute;
  top: 23px;
  bottom: 23px;
  left: 0;
  width: 1px;
  background: var(--line);
  content: "";
}

.reassurance-icon {
  display: grid;
  width: 33px;
  height: 33px;
  grid-row: 1 / 3;
  align-self: center;
  place-items: center;
  color: var(--green);
  background: var(--sage);
  border-radius: 10px;
}

.reassurance-icon svg,
.context-grid span svg,
.search-symbol svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.reassurance > div:nth-child(1) .reassurance-icon {
  color: #d84f70;
  background: #fbe5e9;
}

.reassurance > div:nth-child(2) .reassurance-icon {
  color: #39856f;
  background: #dceee7;
}

.reassurance > div:nth-child(3) .reassurance-icon {
  color: #a96e19;
  background: #f8ebcf;
}

.reassurance strong,
.reassurance small {
  display: block;
}

.reassurance strong {
  font-family: var(--display);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.3;
}

.reassurance small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.79rem;
  line-height: 1.35;
}

/* Editorial introduction */
.editorial-intro {
  position: relative;
}

.editorial-intro::before {
  position: absolute;
  top: 92px;
  left: 50%;
  width: 43px;
  height: 3px;
  background: var(--coral);
  border-radius: 4px;
  content: "";
  transform: translateX(-50%);
}

.editorial-intro .section-kicker {
  margin-top: 18px;
}

.editorial-intro p:last-child {
  max-width: 760px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 1.21rem;
  line-height: 1.75;
}

/* Feature sections */
.feature-section {
  position: relative;
  overflow: hidden;
  padding: 138px 0;
  background: #fffdfa;
}

.feature-section-sage {
  background: var(--sage-soft);
}

.feature-grid {
  display: grid;
  grid-template-columns: 1fr 0.92fr;
  align-items: center;
  gap: 85px;
}

.feature-grid-reverse {
  grid-template-columns: 0.92fr 1fr;
}

.feature-copy {
  max-width: 525px;
}

.feature-copy .lead {
  margin-bottom: 35px;
  color: var(--muted);
  font-size: 1.18rem;
}

.feature-visual {
  position: relative;
  min-height: 680px;
}

.soft-shape {
  position: absolute;
  top: 30px;
  left: 50%;
  width: 480px;
  height: 560px;
  border-radius: 46% 54% 62% 38% / 43% 47% 53% 57%;
  transform: translateX(-50%) rotate(-6deg);
}

.soft-shape-peach {
  background: #f4ded2;
}

.soft-shape-green {
  background: #dce9df;
  transform: translateX(-50%) rotate(6deg);
}

.phone-feature {
  position: absolute;
  z-index: 2;
  top: -25px;
  left: 50%;
  width: min(370px, 75%);
  transform: translateX(-50%);
}

.feature-visual-left .phone-feature {
  transform: translateX(-52%) rotate(-1.5deg);
}

.feature-visual-right .phone-feature {
  transform: translateX(-48%) rotate(1.5deg);
}

.feature-stamp {
  position: absolute;
  z-index: 3;
  right: 9px;
  bottom: 78px;
  display: grid;
  width: 132px;
  height: 132px;
  place-content: center;
  color: white;
  background: var(--coral);
  border: 8px solid rgba(255, 253, 250, 0.8);
  border-radius: 50%;
  text-align: center;
  transform: rotate(5deg);
}

.feature-stamp span,
.feature-stamp small {
  font-size: 0.7rem;
  font-weight: 800;
  line-height: 1.2;
}

.feature-stamp strong {
  font-family: var(--display);
  font-size: 1.55rem;
  font-weight: 500;
  line-height: 1.15;
}

html:lang(de) .feature-stamp > span,
html:lang(de) .feature-stamp small,
html:lang(fr) .feature-stamp > span,
html:lang(fr) .feature-stamp small {
  font-size: 0.64rem;
}

html:lang(de) .feature-stamp strong,
html:lang(fr) .feature-stamp strong {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 0.16rem;
  line-height: 1;
}

html:lang(de) .feature-stamp strong b,
html:lang(de) .feature-stamp strong span,
html:lang(fr) .feature-stamp strong b,
html:lang(fr) .feature-stamp strong span {
  display: block;
}

html:lang(de) .feature-stamp strong b,
html:lang(fr) .feature-stamp strong b {
  font-weight: 500;
}

html:lang(de) .feature-stamp strong span,
html:lang(fr) .feature-stamp strong span {
  font-family: var(--display);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.05;
}

.plain-steps {
  padding: 0;
  margin: 0;
  list-style: none;
}

.plain-steps li {
  display: grid;
  grid-template-columns: 45px 1fr;
  gap: 18px;
  padding: 21px 0;
  border-top: 1px solid var(--line);
}

.plain-steps li:last-child {
  border-bottom: 1px solid var(--line);
}

.plain-steps li > span {
  padding-top: 3px;
  color: var(--coral);
  font-family: var(--display);
  font-size: 0.85rem;
  font-weight: 600;
}

.plain-steps strong {
  display: block;
  margin-bottom: 4px;
  font-family: var(--display);
  font-size: 1.08rem;
  font-weight: 500;
}

.plain-steps p {
  margin: 0;
  color: var(--muted);
  font-size: 0.91rem;
  line-height: 1.55;
}

.verdict-cards {
  display: grid;
  gap: 10px;
  margin: 34px 0 26px;
}

.verdict-card {
  display: grid;
  min-height: 76px;
  grid-template-columns: 44px 1fr auto;
  align-items: center;
  gap: 13px;
  padding: 11px 14px;
  background: rgba(255, 253, 250, 0.9);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 9px 26px rgba(61, 47, 39, 0.07);
}

.verdict-symbol {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 13px;
}

.verdict-symbol svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.verdict-safe .verdict-symbol {
  color: #438f74;
  background: #dceee7;
}

.verdict-caution .verdict-symbol {
  color: #bd7b17;
  background: #f9edd3;
}

.verdict-avoid .verdict-symbol {
  color: #ca594f;
  background: #f9e1de;
}

.verdict-food small,
.verdict-food strong {
  display: block;
}

.verdict-food small {
  margin-bottom: 1px;
  color: var(--muted);
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.verdict-food strong {
  font-family: var(--display);
  font-size: 0.98rem;
  font-weight: 500;
  line-height: 1.25;
}

.verdict-action {
  padding: 7px 10px;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 800;
  white-space: nowrap;
}

.verdict-safe .verdict-action {
  color: #347760;
  background: #e7f3ee;
}

.verdict-caution .verdict-action {
  color: #9e6715;
  background: #fbf0da;
}

.verdict-avoid .verdict-action {
  color: #ae4d45;
  background: #fbe8e5;
}

.quiet-note {
  padding-left: 18px;
  margin: 0;
  color: #7d7069;
  border-left: 3px solid var(--green-light);
  font-size: 0.87rem;
  line-height: 1.6;
}

.search-card {
  position: absolute;
  z-index: 3;
  right: -3px;
  bottom: 84px;
  display: grid;
  min-width: 305px;
  grid-template-columns: 42px 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  background: rgba(255, 253, 250, 0.97);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
  line-height: 1.2;
}

.search-symbol {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: var(--green);
  background: var(--sage);
  border-radius: 11px;
}

.search-card small,
.search-card strong {
  display: block;
}

.search-card small {
  margin-bottom: 3px;
  color: var(--muted);
  font-size: 0.68rem;
}

.search-card strong {
  font-family: var(--display);
  font-size: 0.86rem;
  font-weight: 500;
}

.search-card b {
  color: #b77b17;
  font-size: 0.73rem;
}

/* Personalization */
.personal-section {
  overflow: hidden;
  background: #f4e7dd;
}

.personal-grid {
  display: grid;
  grid-template-columns: 0.93fr 1.07fr;
  align-items: center;
  gap: 70px;
}

.personal-copy > p:not(.section-kicker) {
  max-width: 540px;
  color: var(--muted);
  font-size: 1.1rem;
}

.context-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  margin-top: 37px;
  overflow: hidden;
  background: #dccdc1;
  border: 1px solid #dccdc1;
  border-radius: 20px;
}

.context-grid > div {
  min-height: 177px;
  padding: 23px;
  background: rgba(255, 253, 250, 0.72);
}

.context-grid span,
.context-grid strong,
.context-grid small {
  display: block;
}

.context-grid span {
  display: grid;
  width: 34px;
  height: 34px;
  margin-bottom: 13px;
  place-items: center;
  color: var(--green);
  background: var(--sage);
  border-radius: 10px;
}

.context-grid > div:nth-child(1) span {
  color: #c64e6b;
  background: #f9e2e7;
}

.context-grid > div:nth-child(2) span {
  color: #39856f;
  background: #dceee7;
}

.context-grid > div:nth-child(3) span {
  color: #9c6a24;
  background: #f6e9d0;
}

.context-grid > div:nth-child(4) span {
  color: #8a6498;
  background: #eee3f1;
}

.context-grid strong {
  margin-bottom: 6px;
  font-family: var(--display);
  font-size: 0.94rem;
  font-weight: 500;
  line-height: 1.3;
}

.context-grid small {
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.45;
}

.phone-pair {
  position: relative;
  min-height: 750px;
}

.phone-pair::before {
  position: absolute;
  top: 30px;
  left: 50%;
  width: 490px;
  height: 620px;
  background: rgba(255, 253, 250, 0.55);
  border-radius: 50% 50% 40% 60% / 47% 42% 58% 53%;
  content: "";
  transform: translateX(-50%) rotate(-4deg);
}

.phone-pair .phone {
  position: absolute;
  width: 315px;
}

.phone-pair-back {
  z-index: 1;
  top: 28px;
  right: 0;
  transform: rotate(6deg);
}

.phone-pair-front {
  z-index: 2;
  bottom: -80px;
  left: 10px;
  transform: rotate(-5deg);
}

.phone-single .phone-pair-back {
  top: 18px;
  right: auto;
  left: 50%;
  transform: translateX(-50%) rotate(2deg);
}

.personal-float {
  position: absolute;
  z-index: 3;
  display: grid;
  min-width: 190px;
  grid-template-columns: 38px 1fr;
  align-items: center;
  gap: 10px;
  padding: 11px 14px;
  background: rgba(255, 253, 250, 0.96);
  border: 1px solid var(--line);
  border-radius: 17px;
  box-shadow: var(--shadow-soft);
}

.personal-float > span {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  color: var(--green);
  background: var(--sage);
  border-radius: 11px;
}

.personal-float svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.personal-float strong,
.personal-float small {
  display: block;
}

.personal-float strong {
  font-family: var(--display);
  font-size: 0.84rem;
  font-weight: 500;
  line-height: 1.25;
}

.personal-float small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.66rem;
  line-height: 1.35;
}

.personal-float-top {
  top: 130px;
  right: -12px;
}

.personal-float-bottom {
  bottom: 88px;
  left: -14px;
}

/* Approach */
.approach-section {
  padding: 128px 0 0;
  color: #f7f2eb;
  background: var(--green);
}

.approach-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 100px;
}

.approach-heading {
  position: sticky;
  top: 126px;
  align-self: start;
}

.approach-heading h2 {
  color: white;
}

.approach-heading > p:last-child {
  color: #cae0d7;
  font-size: 1.08rem;
}

.principles article {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 24px;
  padding: 30px 0;
  border-top: 1px solid rgba(207, 232, 221, 0.24);
}

.principles article:last-child {
  border-bottom: 1px solid rgba(207, 232, 221, 0.24);
}

.principles article > span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--green);
  background: #cae4d8;
  border-radius: 50%;
  font-family: var(--display);
  font-weight: 600;
}

.principles h3 {
  margin-bottom: 7px;
  color: white;
  font-weight: 500;
}

.principles p {
  margin: 0;
  color: #c8ddd4;
  font-size: 0.92rem;
}

.availability-banner {
  display: grid;
  grid-template-columns: 0.4fr 1.6fr;
  gap: 45px;
  align-items: center;
  margin-top: 90px;
  padding: 31px 0;
  color: var(--ink);
  background: #e9c9ad;
  box-shadow: 50vw 0 #e9c9ad, -50vw 0 #e9c9ad;
}

.availability-banner strong {
  font-family: var(--display);
  font-size: 1.08rem;
  font-weight: 500;
}

.availability-banner p {
  margin: 0;
  color: #5f514a;
  font-size: 0.91rem;
}

.availability-banner a {
  color: var(--green);
  font-weight: 800;
  text-underline-offset: 3px;
}

/* Regions */
.regions-section {
  background: var(--paper);
}

.regions-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 100px;
}

.regions-grid > div:last-child > p {
  margin-bottom: 34px;
  color: var(--muted);
  font-size: 1.1rem;
}

.region-list {
  display: grid;
  padding: 0;
  margin: 0;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  list-style: none;
}

.region-list li {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 13px 16px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 13px;
  font-size: 0.89rem;
  font-weight: 800;
}

.region-list span {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  color: var(--green);
  background: var(--sage);
  border-radius: 50%;
  font-size: 0.68rem;
}

.region-list .region-more {
  color: #347760;
  background: linear-gradient(135deg, #edf7f2, #f8f3ec);
  border-color: #afd1c3;
  border-style: dashed;
}

.region-more span {
  color: white;
  background: var(--green-mid);
  font-size: 1rem;
}

.region-more div {
  display: grid;
  gap: 1px;
}

.region-more strong {
  font-family: var(--display);
  font-size: 0.94rem;
  font-weight: 500;
}

.region-more small {
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 700;
}

/* FAQ */
.faq-section {
  background: #fffdfa;
  border-top: 1px solid var(--line);
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 100px;
}

.faq-heading {
  position: sticky;
  top: 126px;
  align-self: start;
}

.faq-heading > p:last-child {
  color: var(--muted);
  font-size: 0.94rem;
}

.faq-heading a {
  color: var(--green);
  font-weight: 800;
  text-decoration-color: #9bc6b7;
  text-underline-offset: 3px;
}

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

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

.faq-list summary {
  display: grid;
  grid-template-columns: 1fr 34px;
  align-items: center;
  gap: 20px;
  padding: 24px 0;
  font-family: var(--display);
  font-size: 1.12rem;
  font-weight: 500;
  line-height: 1.35;
  list-style: none;
  cursor: pointer;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary span {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  color: var(--green);
  background: var(--sage);
  border-radius: 50%;
  font-family: var(--body);
  font-size: 1.2rem;
  transition: transform 180ms ease;
}

.faq-list details[open] summary span {
  transform: rotate(45deg);
}

.faq-list details p {
  max-width: 620px;
  padding: 0 54px 25px 0;
  margin: 0;
  color: var(--muted);
  font-size: 0.93rem;
}

/* Signup */
.signup-section {
  position: relative;
  overflow: hidden;
  padding: 108px 0;
  background: #f1ddd0;
}

.signup-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 90px;
}

.signup-grid h2 {
  margin-bottom: 17px;
}

.signup-grid > div:first-child > p:last-child {
  max-width: 470px;
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.signup-leaf {
  position: absolute;
  right: -40px;
  bottom: -70px;
  width: 250px;
  color: #8eb8a7;
  opacity: 0.58;
  transform: rotate(11deg);
}

.signup-leaf path {
  fill: rgba(174, 205, 191, 0.42);
  stroke: currentColor;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.signup-form {
  display: flex;
  gap: 8px;
  padding: 7px 7px 7px 20px;
  background: var(--card);
  border: 1px solid #dac8ba;
  border-radius: 999px;
  box-shadow: var(--shadow-soft);
}

.signup-form input {
  min-width: 0;
  flex: 1;
  color: var(--ink);
  background: transparent;
  border: 0;
  outline: 0;
  font-size: 1rem;
  font-weight: 700;
}

.signup-form input::placeholder {
  color: #a7978e;
}

.signup-form button {
  padding: 13px 23px;
  color: white;
  background: var(--coral);
  border: 0;
  border-radius: 999px;
  font-family: var(--display);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 160ms ease, transform 160ms ease;
}

.signup-form button:hover {
  background: var(--coral-dark);
}

.signup-form button:active {
  transform: scale(0.98);
}

.signup-form button:disabled {
  opacity: 0.7;
  cursor: wait;
}

.signup-note,
.signup-alt {
  color: #88776e;
  font-size: 0.77rem;
  line-height: 1.45;
}

.signup-note {
  margin: 11px 4px 0;
}

.signup-alt {
  margin: 7px 4px 0;
}

.signup-alt a,
.success a {
  color: var(--green);
  font-weight: 800;
  text-underline-offset: 3px;
}

.success {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  align-items: start;
  padding: 21px;
  background: var(--card);
  border: 1px solid #b8d3c7;
  border-radius: 19px;
  box-shadow: var(--shadow-soft);
}

.success[hidden] {
  display: none;
}

.success-check {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  color: white;
  background: var(--green-mid);
  border-radius: 50%;
  font-size: 1.2rem;
  font-weight: 800;
}

.success strong {
  display: block;
  font-family: var(--display);
  font-size: 1.12rem;
  font-weight: 500;
}

.success p {
  margin: 4px 0 6px;
  color: var(--muted);
  font-size: 0.87rem;
}

.success a {
  font-size: 0.82rem;
}

/* Footer */
.site-footer {
  padding: 68px 0 25px;
  color: #dbebe4;
  background: #1e4e42;
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  padding-bottom: 54px;
}

.footer-brand img {
  filter: brightness(0) invert(1);
  opacity: 0.94;
}

.footer-main > div:first-child p {
  max-width: 360px;
  margin: 12px 0 0;
  color: #a9cec0;
  font-size: 0.92rem;
}

.footer-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.footer-links strong,
.footer-links a {
  display: block;
}

.footer-links strong {
  margin-bottom: 11px;
  color: white;
  font-family: var(--display);
  font-size: 0.92rem;
  font-weight: 500;
}

.footer-links a {
  width: fit-content;
  margin: 7px 0;
  color: #b7d4c8;
  font-size: 0.83rem;
  text-decoration: none;
}

.footer-links a:hover {
  color: white;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 22px;
  color: #92b7a9;
  border-top: 1px solid rgba(199, 225, 215, 0.18);
  font-size: 0.73rem;
}

/* Feedback form */
.feedback-page {
  background: var(--paper);
}

.feedback-main {
  position: relative;
  overflow: hidden;
  padding: 75px 0 110px;
}

.feedback-header-inner {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: space-between;
}

.back-link {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 800;
  text-decoration: none;
}

.back-link:hover {
  color: var(--green);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.feedback-main::before {
  position: absolute;
  top: -220px;
  right: -200px;
  width: 560px;
  height: 560px;
  background: rgba(190, 219, 202, 0.35);
  border-radius: 50%;
  content: "";
}

.feedback-wrap {
  position: relative;
  width: min(720px, calc(100% - 48px));
  margin-inline: auto;
}

.feedback-intro {
  margin-bottom: 48px;
  text-align: center;
}

.feedback-intro h1 {
  font-size: clamp(2.75rem, 6vw, 4.75rem);
}

.feedback-intro > p:last-child {
  max-width: 620px;
  margin-inline: auto;
  color: var(--muted);
  font-size: 1.08rem;
}

.ideas-form {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding: 42px;
  background: rgba(255, 253, 250, 0.94);
  border: 1px solid var(--line);
  border-radius: 26px;
  box-shadow: var(--shadow-soft);
}

.ideas-form[hidden] {
  display: none;
}

.q {
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0;
}

.q-label {
  display: block;
  margin-bottom: 12px;
  font-family: var(--display);
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 1.35;
}

.q-hint {
  color: #92827a;
  font-family: var(--body);
  font-size: 0.74rem;
  font-weight: 700;
}

.choices {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.choice {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 12px 14px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 13px;
  color: #594e49;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 150ms ease, border-color 150ms ease;
}

.choice:hover {
  background: white;
  border-color: #c8b3a4;
}

.choice input {
  width: 18px;
  height: 18px;
  flex: none;
  accent-color: var(--coral);
}

.choice:has(input:checked) {
  background: #fff8f8;
  border-color: var(--coral);
}

.ideas-form input[type="text"],
.ideas-form input[type="email"],
.ideas-form textarea {
  width: 100%;
  padding: 13px 15px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 13px;
  outline: 0;
  font-size: 0.93rem;
  font-weight: 600;
  resize: vertical;
  transition: background 150ms ease, border-color 150ms ease, box-shadow 150ms ease;
}

.ideas-form input:focus,
.ideas-form textarea:focus {
  background: white;
  border-color: var(--coral);
  box-shadow: 0 0 0 3px rgba(232, 95, 121, 0.12);
}

.btn-send {
  align-self: flex-start;
  min-height: 52px;
  padding: 13px 25px;
  color: white;
  background: var(--coral);
  border: 0;
  border-radius: 999px;
  font-family: var(--display);
  font-size: 0.96rem;
  font-weight: 600;
  cursor: pointer;
}

.btn-send:hover {
  background: var(--coral-dark);
}

.btn-send:disabled {
  opacity: 0.7;
  cursor: wait;
}

.ideas-note {
  margin: -15px 0 0;
  color: #8e7d75;
  font-size: 0.76rem;
}

.feedback-success {
  max-width: 620px;
  margin: 0 auto;
}

.compact-footer {
  padding-top: 25px;
}

/* Privacy policy */
.privacy-page {
  background: var(--paper);
}

.privacy-header-inner {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: space-between;
}

.privacy-header-actions {
  display: flex;
  align-items: center;
  gap: 22px;
}

.privacy-main {
  position: relative;
}

.privacy-hero {
  position: relative;
  overflow: hidden;
  padding: 105px 0 168px;
  text-align: center;
}

.privacy-wash {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.privacy-wash-sage {
  top: -320px;
  right: -180px;
  width: 690px;
  height: 690px;
  background: rgba(190, 219, 202, 0.42);
}

.privacy-wash-peach {
  bottom: -300px;
  left: -170px;
  width: 560px;
  height: 560px;
  background: rgba(245, 213, 201, 0.55);
}

.privacy-hero-copy {
  position: relative;
  z-index: 1;
  width: min(820px, calc(100% - 48px));
}

.privacy-hero h1 {
  margin-bottom: 24px;
  font-size: clamp(3.4rem, 6.4vw, 5.8rem);
}

.privacy-hero-copy > p:not(.section-kicker, .privacy-updated) {
  max-width: 680px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 1.16rem;
}

.privacy-updated {
  display: inline-flex;
  margin: 30px 0 0;
  padding: 8px 14px;
  color: var(--green);
  background: rgba(255, 253, 250, 0.72);
  border: 1px solid rgba(39, 102, 85, 0.14);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
}

.privacy-content {
  position: relative;
  z-index: 2;
  padding: 0 0 120px;
}

.privacy-highlights {
  display: grid;
  margin-top: -78px;
  margin-bottom: 72px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.privacy-highlights article {
  display: flex;
  min-width: 0;
  align-items: flex-start;
  gap: 15px;
  padding: 25px;
  background: rgba(255, 253, 250, 0.96);
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: var(--shadow-soft);
}

.privacy-highlights h2 {
  margin-bottom: 5px;
  font-size: 1.04rem;
  font-weight: 600;
  letter-spacing: -0.015em;
}

.privacy-highlights p {
  margin: 0;
  color: var(--muted);
  font-size: 0.79rem;
  line-height: 1.55;
}

.privacy-highlight-icon {
  display: inline-flex;
  width: 40px;
  height: 40px;
  flex: none;
  align-items: center;
  justify-content: center;
  color: white;
  background: var(--coral);
  border-radius: 13px;
  font-family: var(--display);
  font-size: 1.08rem;
  font-weight: 600;
}

.privacy-highlight-icon-sage {
  background: var(--green-mid);
}

.privacy-highlight-icon-gold {
  background: var(--gold);
}

.privacy-layout {
  display: grid;
  grid-template-columns: 220px minmax(0, 800px);
  justify-content: center;
  align-items: start;
  gap: 56px;
}

.privacy-nav {
  position: sticky;
  top: 112px;
  display: flex;
  padding: 20px 0;
  flex-direction: column;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.privacy-nav strong {
  margin-bottom: 10px;
  color: var(--green);
  font-family: var(--display);
  font-size: 0.84rem;
  font-weight: 600;
}

.privacy-nav a {
  padding: 5px 0;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  text-decoration: none;
}

.privacy-nav a:hover {
  color: var(--coral-dark);
}

.privacy-policy {
  min-width: 0;
  padding: 10px 54px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: var(--shadow-soft);
}

.privacy-section {
  padding: 49px 0;
  scroll-margin-top: 106px;
}

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

.privacy-section-number {
  margin-bottom: 8px;
  color: var(--coral);
  font-family: var(--display);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.privacy-section h2 {
  margin-bottom: 20px;
  font-size: clamp(1.8rem, 3vw, 2.45rem);
  font-weight: 500;
  letter-spacing: -0.025em;
}

.privacy-section p {
  color: #5f534e;
  font-size: 0.95rem;
}

.privacy-section p:last-child {
  margin-bottom: 0;
}

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

.privacy-service-list li {
  display: grid;
  padding: 15px 0;
  grid-template-columns: 112px 1fr auto;
  align-items: baseline;
  gap: 14px;
  border-top: 1px solid var(--line);
}

.privacy-service-list li:last-child {
  border-bottom: 1px solid var(--line);
}

.privacy-service-list strong {
  color: var(--ink);
  font-family: var(--display);
  font-size: 0.88rem;
  font-weight: 600;
}

.privacy-service-list span,
.privacy-service-list a {
  color: var(--muted);
  font-size: 0.74rem;
  line-height: 1.5;
}

.privacy-service-list a {
  color: var(--green);
  font-weight: 800;
  text-underline-offset: 3px;
}

.privacy-contact {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.privacy-contact h2 {
  margin-bottom: 8px;
}

.privacy-contact p {
  margin-bottom: 0;
}

.privacy-contact .button {
  flex: none;
  font-size: 0.88rem;
}

.privacy-footer-bottom a {
  color: #b7d4c8;
  text-underline-offset: 3px;
}

/* Reveal */
.reveal-enabled [data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 600ms ease, transform 600ms cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-enabled [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 1040px) {
  .header-inner {
    grid-template-columns: 1fr auto auto;
  }

  .menu-button {
    display: block;
    grid-column: 3;
    grid-row: 1;
    margin-left: 8px;
  }

  .header-actions {
    grid-column: 2;
    grid-row: 1;
    margin-right: 0;
  }

  .site-nav {
    position: fixed;
    top: 86px;
    right: 0;
    left: 0;
    display: none;
    height: calc(100vh - 86px);
    padding: 46px 24px;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: var(--paper);
    border-top: 1px solid var(--line);
  }

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

  .site-nav a {
    width: 100%;
    padding: 17px 0;
    border-bottom: 1px solid var(--line);
    font-family: var(--display);
    font-size: 1.3rem;
    font-weight: 500;
  }

  .menu-button[aria-expanded="true"] > span:nth-child(2) {
    transform: translateY(3.5px) rotate(45deg);
  }

  .menu-button[aria-expanded="true"] > span:nth-child(3) {
    transform: translateY(-3.5px) rotate(-45deg);
  }

  .hero-grid {
    grid-template-columns: 0.9fr 1.1fr;
  }

  .phone-hero {
    width: min(410px, 84%);
  }

  .paper-note-progress {
    left: -20px;
  }

  .paper-note-personal {
    right: -15px;
  }

  .feature-grid,
  .feature-grid-reverse,
  .personal-grid {
    gap: 45px;
  }

  .feature-stamp {
    right: -8px;
  }

  .search-card {
    right: -18px;
  }

  .approach-grid,
  .regions-grid,
  .faq-grid {
    gap: 60px;
  }
}

@media (max-width: 820px) {
  .section-pad,
  .feature-section,
  .approach-section {
    padding-top: 95px;
    padding-bottom: 95px;
  }

  .hero-section {
    padding-top: 35px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-copy {
    padding-bottom: 5px;
  }

  .eyebrow,
  .button-row {
    justify-content: center;
  }

  .hero-intro,
  .hero-note {
    margin-right: auto;
    margin-left: auto;
  }

  .hero-visual {
    width: min(650px, 100%);
    min-height: 710px;
    margin: 0 auto;
  }

  .phone-hero {
    width: 430px;
    transform: translateX(-50%);
  }

  .paper-note-progress {
    left: 2%;
  }

  .paper-note-personal {
    right: 2%;
  }

  .reassurance {
    grid-template-columns: 1fr;
    margin-top: 0;
  }

  .reassurance > div {
    min-height: 98px;
  }

  .reassurance > div + div::before {
    top: 0;
    right: 28px;
    bottom: auto;
    left: 28px;
    width: auto;
    height: 1px;
  }

  .feature-grid,
  .feature-grid-reverse,
  .personal-grid,
  .approach-grid,
  .regions-grid,
  .faq-grid,
  .signup-grid {
    grid-template-columns: 1fr;
  }

  .feature-copy {
    max-width: 620px;
    margin: 0 auto;
  }

  .feature-grid .feature-copy {
    order: 1;
  }

  .feature-grid .feature-visual {
    order: 2;
  }

  .feature-visual {
    width: min(620px, 100%);
    min-height: 650px;
    margin: 0 auto;
  }

  .feature-stamp {
    right: 9%;
  }

  .search-card {
    right: 5%;
  }

  .personal-copy {
    max-width: 660px;
    margin: 0 auto;
  }

  .phone-pair {
    width: min(600px, 100%);
    margin: 0 auto;
  }

  .approach-heading,
  .faq-heading {
    position: static;
  }

  .availability-banner {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .regions-grid,
  .faq-grid {
    gap: 42px;
  }

  .signup-grid {
    gap: 42px;
  }

  .privacy-highlights {
    width: min(680px, 100%);
    margin-right: auto;
    margin-left: auto;
    grid-template-columns: 1fr;
  }

  .privacy-layout {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .privacy-nav {
    display: none;
  }

  .privacy-policy {
    width: min(800px, 100%);
    margin-inline: auto;
  }
}

@media (max-width: 600px) {
  html {
    scroll-padding-top: 76px;
  }

  body {
    font-size: 16px;
  }

  .paper-note,
  .feature-stamp,
  .search-card,
  .personal-float {
    display: none;
  }

  h1 {
    font-size: clamp(3rem, 14vw, 4rem);
  }

  h2 {
    font-size: clamp(2.3rem, 11vw, 3.2rem);
  }

  .container,
  .feedback-wrap {
    width: min(100% - 34px, 1180px);
  }

  .site-header {
    height: 76px;
  }

  .brand img {
    width: 92px;
    height: 45px;
  }

  .site-nav {
    top: 76px;
    height: calc(100vh - 76px);
  }

  .header-actions .button {
    display: none;
  }

  .header-actions {
    margin-right: 0;
  }

  .language-picker-trigger {
    min-width: 72px;
  }

  .feedback-header-inner .language-links {
    right: auto;
    left: 50%;
    margin-left: -119px;
    transform-origin: top center;
  }

  .feedback-header-inner .language-links::before {
    right: auto;
    left: calc(50% - 5.5px);
  }

  .hero-section {
    padding-top: 30px;
  }

  .hero-grid {
    gap: 18px;
  }

  .hero-copy {
    padding-top: 32px;
  }

  .hero-intro {
    font-size: 1.08rem;
  }

  .button-row {
    flex-direction: column;
    gap: 17px;
  }

  .hero-note {
    margin-top: 22px;
  }

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

  .phone-halo {
    top: 60px;
    width: 380px;
    height: 410px;
  }

  .phone-hero {
    top: 30px;
    width: min(360px, 88%);
  }

  .paper-note {
    padding: 10px 12px;
  }

  .paper-note strong {
    font-size: 0.78rem;
  }

  .paper-note small {
    font-size: 0.58rem;
  }

  .paper-note-progress {
    top: 220px;
    left: -3px;
  }

  .note-ring {
    width: 36px;
    height: 36px;
    border-width: 5px;
    font-size: 0.72rem;
  }

  .paper-note-personal {
    right: -2px;
    bottom: 68px;
  }

  .note-icon {
    width: 34px;
    height: 34px;
  }

  .reassurance > div {
    padding: 20px 23px;
  }

  .editorial-intro::before {
    top: 66px;
  }

  .feature-section {
    padding-top: 84px;
    padding-bottom: 84px;
  }

  .feature-visual {
    min-height: 700px;
  }

  .soft-shape {
    width: 360px;
    height: 480px;
  }

  .phone-feature {
    width: min(325px, 78%);
  }

  .feature-stamp {
    right: 1%;
    bottom: 30px;
    width: 110px;
    height: 110px;
  }

  .feature-stamp strong {
    font-size: 1.3rem;
  }

  .search-card {
    right: -3px;
    bottom: 36px;
    min-width: 270px;
  }

  .verdict-card {
    grid-template-columns: 42px 1fr;
    padding: 12px;
  }

  .verdict-action {
    grid-column: 2;
    justify-self: start;
    margin-top: -8px;
  }

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

  .context-grid > div {
    min-height: 0;
  }

  .phone-pair {
    min-height: 620px;
  }

  .phone-pair .phone {
    width: 265px;
  }

  .phone-pair-back {
    right: -25px;
  }

  .phone-pair-front {
    left: -25px;
  }

  .approach-section {
    padding-top: 85px;
  }

  .principles article {
    grid-template-columns: 42px 1fr;
    gap: 16px;
  }

  .principles article > span {
    width: 36px;
    height: 36px;
  }

  .availability-banner {
    margin-top: 60px;
  }

  .region-list {
    grid-template-columns: 1fr;
  }

  .faq-list summary {
    font-size: 1rem;
  }

  .signup-section {
    padding: 82px 0;
  }

  .signup-form {
    padding: 12px;
    flex-direction: column;
    border-radius: 18px;
  }

  .signup-form input {
    padding: 8px 5px;
    text-align: center;
  }

  .signup-form button {
    min-height: 48px;
  }

  .signup-note,
  .signup-alt {
    text-align: center;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 5px;
  }

  .ideas-form {
    padding: 25px 18px;
    border-radius: 20px;
  }

  .feedback-main {
    padding-top: 50px;
  }

  .feedback-header-inner .header-actions {
    margin-right: 0;
  }

  .back-link {
    font-size: 0.78rem;
  }

  .btn-send {
    width: 100%;
  }

  .privacy-header-actions .button {
    display: none;
  }

  .privacy-hero {
    padding: 74px 0 132px;
  }

  .privacy-hero-copy {
    width: min(100% - 34px, 820px);
  }

  .privacy-hero h1 {
    font-size: clamp(3rem, 15vw, 4.2rem);
  }

  .privacy-hero-copy > p:not(.section-kicker, .privacy-updated) {
    font-size: 1rem;
  }

  .privacy-content {
    padding-bottom: 76px;
  }

  .privacy-highlights {
    margin-top: -70px;
    margin-bottom: 42px;
  }

  .privacy-highlights article {
    padding: 20px;
  }

  .privacy-policy {
    padding: 6px 21px;
    border-radius: 21px;
  }

  .privacy-section {
    padding: 38px 0;
  }

  .privacy-section h2 {
    font-size: 1.75rem;
  }

  .privacy-section p {
    font-size: 0.91rem;
  }

  .privacy-service-list li {
    grid-template-columns: 1fr;
    gap: 3px;
  }

  .privacy-service-list a {
    margin-top: 4px;
  }

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

  .privacy-contact .button {
    width: 100%;
  }

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

@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;
  }
}

/* Press kit */
.press-page {
  background: #fbf7f0;
}

.press-page .header-inner {
  grid-template-columns: 1fr auto;
}

.press-hero {
  position: relative;
  overflow: hidden;
  padding: 92px 0 112px;
}

.press-wash {
  position: absolute;
  top: -310px;
  right: -210px;
  width: 760px;
  height: 760px;
  background: radial-gradient(circle, rgba(220, 235, 226, 0.95) 0%, rgba(220, 235, 226, 0) 69%);
  pointer-events: none;
}

.press-hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  align-items: center;
  gap: 88px;
}

.press-hero-copy h1 {
  max-width: 800px;
  margin-bottom: 25px;
  font-family: var(--display);
  font-size: clamp(3.55rem, 6vw, 6rem);
  font-weight: 600;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.press-hero-copy h1 em {
  color: var(--coral);
  font-style: normal;
}

.press-hero-copy > p:not(.eyebrow) {
  max-width: 680px;
  margin-bottom: 34px;
  color: var(--muted);
  font-size: 1.17rem;
}

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

.press-download-size {
  margin-left: 7px;
  font-family: var(--body);
  font-size: 0.78em;
  font-weight: 800;
  opacity: 0.78;
}

.press-icon-wrap {
  position: relative;
  width: min(100%, 330px);
  aspect-ratio: 1;
  justify-self: end;
}

.press-icon-wrap::before {
  position: absolute;
  top: 17%;
  right: 14%;
  width: 46%;
  height: 46%;
  background: rgba(232, 95, 121, 0.16);
  border-radius: 50%;
  content: "";
}

.press-icon-wrap img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 43%;
  filter: drop-shadow(0 22px 30px rgba(65, 52, 46, 0.16));
  transform: translate(-50%, -50%);
}

.press-facts {
  padding: 100px 0 108px;
  background: var(--green);
  color: white;
}

.press-facts-heading {
  margin-bottom: 42px;
}

.press-facts .section-kicker,
.press-facts h2 {
  color: white;
}

.press-updated {
  margin: 0 0 5px;
  color: #dbeae4;
  font-size: 0.88rem;
  font-weight: 700;
}

.press-fact-grid {
  display: grid;
  margin: 0;
  grid-template-columns: repeat(4, 1fr);
  border-left: 1px solid rgba(255, 255, 255, 0.2);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.press-fact-grid > div {
  min-height: 126px;
  padding: 23px 25px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.press-fact-grid dt {
  margin-bottom: 11px;
  color: #b8d9cd;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.press-fact-grid dd {
  margin: 0;
  font-family: var(--display);
  font-size: 1.15rem;
  font-weight: 600;
  line-height: 1.25;
}

.press-fact-grid a {
  color: white;
  text-underline-offset: 4px;
}

.press-contents {
  padding: 100px 0 112px;
  background: #fffdfa;
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
}

.press-heading {
  max-width: 720px;
  margin-bottom: 42px;
}

.press-heading h2,
.press-contact h2 {
  margin-bottom: 0;
  font-family: var(--display);
  font-size: clamp(2.35rem, 4vw, 3.55rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.04;
}

.press-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.press-cards article {
  display: flex;
  min-height: 330px;
  flex-direction: column;
  padding: 32px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 26px;
}

.press-card-number {
  margin-bottom: 28px;
  color: var(--coral);
  font-family: var(--display);
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.press-cards h3 {
  margin-bottom: 10px;
  font-family: var(--display);
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.15;
}

.press-card-copy {
  margin-bottom: 24px;
}

.press-cards p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

.press-cards a,
.press-meta {
  margin-top: auto;
  color: var(--green);
  font-size: 0.88rem;
  font-weight: 800;
}

.press-cards a {
  text-underline-offset: 3px;
}

.press-founders {
  padding: 112px 0;
  background: var(--founders-background);
}

.press-founders-grid {
  display: grid;
  grid-template-columns: minmax(240px, 0.7fr) minmax(0, 1.3fr);
  align-items: center;
  gap: 86px;
}

.press-founders-grid > div:last-child {
  max-width: 680px;
}

.press-founders h2,
.press-qa h2 {
  margin-bottom: 18px;
  font-family: var(--display);
  font-size: clamp(2.35rem, 4vw, 3.55rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.04;
}

.press-founders-lead {
  margin-bottom: 16px;
  color: var(--ink);
  font-family: var(--display);
  font-size: 1.28rem;
  font-weight: 600;
}

.press-founders-grid > div:last-child > p:not(.section-kicker, .press-founders-lead) {
  margin-bottom: 17px;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.7;
}

.press-founders-grid > div:last-child > p a {
  color: var(--green);
  font-weight: 800;
  text-underline-offset: 3px;
}

.press-founder-portraits {
  position: relative;
  min-height: 300px;
}

.press-founder-portraits::before {
  position: absolute;
  top: 22px;
  left: 42px;
  width: 220px;
  height: 220px;
  background: var(--sage);
  border-radius: 50%;
  content: "";
}

.press-founder-portraits figure {
  position: absolute;
  width: 108px;
  height: 108px;
  margin: 0;
  border: 8px solid var(--founders-background);
  border-radius: 50%;
  box-shadow: 0 16px 36px rgba(65, 52, 46, 0.16);
  overflow: hidden;
}

.press-founder-portraits figure:first-child {
  top: 76px;
  left: 22px;
}

.press-founder-portraits figure:last-child {
  top: 132px;
  left: 126px;
}

.press-founder-portraits img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.press-qa {
  padding: 108px 0 112px;
  background: #fffdfa;
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
}

.press-qa-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.press-qa-grid article {
  padding: 30px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 24px;
}

.press-qa-grid h3 {
  margin-bottom: 14px;
  font-family: var(--display);
  font-size: 1.35rem;
  font-weight: 600;
  line-height: 1.2;
}

.press-qa-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.6;
}

.press-sourcing {
  display: grid;
  margin-top: 24px;
  padding: 28px 30px;
  grid-template-columns: 190px 1fr;
  gap: 28px;
  background: var(--sage);
  border-radius: 22px;
}

.press-sourcing .section-kicker,
.press-sourcing p {
  margin: 0;
}

.press-sourcing p:last-child {
  color: #49655c;
  font-size: 0.92rem;
  line-height: 1.58;
}

.press-preview {
  padding: 112px 0 124px;
}

.press-heading-row {
  display: flex;
  max-width: none;
  align-items: end;
  justify-content: space-between;
  gap: 38px;
}

.button-secondary {
  flex: 0 0 auto;
  color: var(--green);
  background: transparent;
  border: 1.5px solid var(--green);
  box-shadow: none;
}

.button-secondary:hover {
  color: white;
  background: var(--green);
  box-shadow: none;
}

.press-screenshots {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.press-screenshots img {
  width: 100%;
  border: 1px solid rgba(53, 45, 42, 0.08);
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
}

.press-contact {
  padding: 0 0 112px;
}

.press-contact-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  padding: 58px 64px;
  color: white;
  background: var(--green);
  border-radius: 32px;
  box-shadow: 0 28px 70px rgba(39, 102, 85, 0.2);
}

.press-contact-card > div {
  max-width: 720px;
}

.press-contact h2 {
  margin-bottom: 14px;
}

.press-contact p:last-child {
  margin-bottom: 0;
  color: #dbeae4;
}

.button-light {
  flex: 0 0 auto;
  color: var(--green);
  background: white;
  box-shadow: none;
}

.button-light:hover {
  color: var(--green);
  background: #f7eee5;
  box-shadow: none;
}

@media (max-width: 900px) {
  .press-hero-grid {
    grid-template-columns: minmax(0, 1fr) 220px;
    gap: 45px;
  }

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

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

  .press-founders-grid {
    grid-template-columns: 220px minmax(0, 1fr);
    gap: 48px;
  }

  .press-cards article {
    min-height: 300px;
  }

  .press-card-number {
    margin-bottom: 28px;
  }

  .press-contact-card {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 650px) {
  .press-hero {
    padding: 58px 0 74px;
  }

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

  .press-hero-copy h1 {
    font-size: clamp(3rem, 14vw, 4.25rem);
  }

  .press-icon-wrap {
    display: none;
  }

  .press-contents,
  .press-preview,
  .press-facts,
  .press-founders,
  .press-qa {
    padding: 76px 0 84px;
  }

  .press-fact-grid,
  .press-qa-grid,
  .press-sourcing {
    grid-template-columns: 1fr;
  }

  .press-fact-grid > div {
    min-height: 0;
  }

  .press-founders-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .press-cards {
    grid-template-columns: 1fr;
  }

  .press-founder-portraits {
    min-height: 250px;
  }

  .press-sourcing {
    gap: 10px;
  }

  .press-heading-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .press-screenshots {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .press-contact {
    padding-bottom: 76px;
  }

  .press-contact-card {
    padding: 38px 28px;
    border-radius: 24px;
  }

  .press-contact-card .button {
    width: 100%;
    font-size: 0.9rem;
  }
}
