@font-face {
  font-family: "Manrope";
  src: url("/assets/fonts/Manrope-Variable.ttf") format("truetype-variations");
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
}

@font-face {
  font-family: "Fraunces";
  src: url("/assets/fonts/Fraunces-Variable.ttf") format("truetype-variations");
  font-style: normal;
  font-weight: 300 900;
  font-display: swap;
}

@font-face {
  font-family: "Fraunces";
  src: url("/assets/fonts/Fraunces-Italic-Variable.ttf") format("truetype-variations");
  font-style: italic;
  font-weight: 300 900;
  font-display: swap;
}

:root {
  --cherry: #b30b3f;
  --cherry-dark: #780524;
  --cherry-bright: #f20a46;
  --blush: #ffe8ed;
  --blush-soft: #fff4f5;
  --cream: #fffaf5;
  --paper: #fffdfc;
  --ink: #211c1e;
  --ink-soft: #665b5e;
  --leaf: #2d8b2a;
  --leaf-dark: #075d2b;
  --line: #f0dadd;
  --white: #fff;
  --shadow-soft: 0 24px 70px rgba(91, 6, 35, 0.1);
  --shadow-card: 0 16px 44px rgba(58, 18, 31, 0.08);
  --radius-xl: 38px;
  --radius-lg: 28px;
  --radius-md: 20px;
  --container: 1200px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--cream);
  color: var(--ink);
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open,
body.dialog-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
}

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

button,
summary {
  font: inherit;
}

button {
  color: inherit;
}

::selection {
  background: var(--blush);
  color: var(--cherry-dark);
}

.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;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 12px 18px;
  border-radius: 12px;
  background: var(--ink);
  color: var(--white);
  text-decoration: none;
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

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

.site-shell {
  overflow: clip;
}

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

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  padding: 16px 0;
  transition: padding 220ms ease, background 220ms ease, border-color 220ms ease,
    box-shadow 220ms ease;
}

.site-header.is-scrolled {
  padding: 10px 0;
  border-bottom: 1px solid rgba(240, 218, 221, 0.72);
  background: rgba(255, 250, 245, 0.88);
  box-shadow: 0 12px 40px rgba(68, 19, 34, 0.05);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

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

.brand {
  display: inline-flex;
  width: 178px;
  flex: 0 0 auto;
  align-items: center;
  text-decoration: none;
}

.brand img {
  width: 100%;
  height: auto;
}

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

.site-nav > a:not(.button) {
  position: relative;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 650;
  text-decoration: none;
  transition: color 180ms ease;
}

.site-nav > a:not(.button)::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 1.5px;
  background: var(--cherry);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.site-nav > a:not(.button):hover,
.site-nav > a:not(.button):focus-visible {
  color: var(--cherry-dark);
}

.site-nav > a:not(.button):hover::after,
.site-nav > a:not(.button):focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.76);
  cursor: pointer;
}

.menu-toggle > span:not(.sr-only) {
  display: block;
  width: 19px;
  height: 1.5px;
  margin: 5px auto;
  background: var(--ink);
  transition: transform 180ms ease;
}

.button {
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 750;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button:disabled {
  cursor: wait;
  opacity: 0.7;
  transform: none;
}

.button-primary {
  background: linear-gradient(135deg, var(--cherry-bright), var(--cherry-dark));
  color: var(--white);
  box-shadow: 0 13px 28px rgba(179, 11, 63, 0.24);
}

.button-primary:hover,
.button-primary:focus-visible {
  box-shadow: 0 17px 34px rgba(179, 11, 63, 0.3);
}

.button-small {
  min-height: 44px;
  padding: 12px 19px;
  background: var(--ink);
  color: var(--white);
  font-size: 13px;
}

.button-light {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  backdrop-filter: blur(10px);
}

.button-white {
  background: var(--white);
  color: var(--cherry-dark);
  box-shadow: 0 16px 36px rgba(40, 0, 13, 0.17);
}

.text-link {
  position: relative;
  color: var(--cherry-dark);
  font-size: 14px;
  font-weight: 750;
  text-underline-offset: 5px;
  text-decoration-color: rgba(120, 5, 36, 0.34);
}

.text-link:hover,
.text-link:focus-visible {
  text-decoration-color: currentColor;
}

.link-button {
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.hero {
  position: relative;
  min-height: 100vh;
  padding: 158px 0 50px;
  background:
    linear-gradient(90deg, rgba(255, 250, 245, 0.98) 0%, rgba(255, 250, 245, 0.92) 38%, rgba(255, 250, 245, 0.35) 72%, rgba(255, 250, 245, 0.05) 100%),
    var(--cream);
}

.hero::before {
  position: absolute;
  top: 80px;
  left: -80px;
  width: 360px;
  height: 360px;
  border: 1px solid rgba(179, 11, 63, 0.08);
  border-radius: 50%;
  content: "";
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  pointer-events: none;
}

.hero-glow-one {
  top: -130px;
  right: 10%;
  width: 460px;
  height: 460px;
  background: radial-gradient(circle, rgba(255, 190, 205, 0.44), rgba(255, 232, 237, 0));
}

.hero-glow-two {
  bottom: 80px;
  left: 25%;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(45, 139, 42, 0.11), rgba(45, 139, 42, 0));
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 650px;
  grid-template-columns: minmax(0, 0.86fr) minmax(500px, 1.14fr);
  align-items: center;
  gap: 60px;
}

.eyebrow,
.kicker {
  margin: 0 0 22px;
  color: var(--cherry);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 13px;
  border: 1px solid rgba(179, 11, 63, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.64);
  box-shadow: 0 8px 24px rgba(120, 5, 36, 0.05);
  letter-spacing: 0.1em;
}

.eyebrow-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--leaf);
  box-shadow: 0 0 0 5px rgba(45, 139, 42, 0.1);
}

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

h1,
h2 {
  font-family: "Fraunces", Georgia, serif;
  letter-spacing: -0.045em;
}

h1 {
  max-width: 650px;
  margin-bottom: 26px;
  font-size: clamp(4.1rem, 7vw, 7rem);
  font-weight: 660;
  line-height: 0.88;
}

h1 em {
  display: block;
  color: var(--cherry);
  font-weight: 460;
}

.hero-intro {
  max-width: 600px;
  margin-bottom: 10px;
  color: var(--ink-soft);
  font-size: clamp(1.05rem, 1.35vw, 1.2rem);
  line-height: 1.65;
}

.hero-location {
  margin-bottom: 31px;
  color: var(--cherry-dark);
  font-size: 12px;
  font-weight: 780;
  letter-spacing: 0.05em;
}

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

.hero-note {
  display: flex;
  margin-top: 25px;
  flex-wrap: wrap;
  gap: 10px 20px;
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 650;
}

.hero-note span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.hero-note svg {
  width: 17px;
  fill: none;
  stroke: var(--leaf-dark);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.platform-access {
  max-width: 520px;
  margin-top: 30px;
}

.platform-access > p {
  margin-bottom: 12px;
  color: var(--ink-soft);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.platform-buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 11px;
}

.platform-button {
  display: flex;
  min-height: 72px;
  padding: 12px 17px;
  border: 1px solid rgba(33, 28, 30, 0.12);
  border-radius: 18px;
  align-items: center;
  gap: 13px;
  background: var(--white);
  box-shadow: 0 12px 30px rgba(58, 18, 31, 0.08);
  text-align: left;
  cursor: pointer;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.platform-button:hover,
.platform-button:focus-visible {
  border-color: rgba(179, 11, 63, 0.32);
  box-shadow: 0 17px 35px rgba(58, 18, 31, 0.13);
  transform: translateY(-2px);
}

.platform-button-ios {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--white);
}

.platform-button > svg {
  width: 31px;
  height: 31px;
  flex: 0 0 auto;
}

.platform-button-ios > svg {
  fill: currentColor;
}

.platform-button-android > svg {
  fill: none;
  stroke: var(--leaf-dark);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.platform-button-android circle {
  fill: var(--leaf-dark);
  stroke: none;
}

.platform-button small,
.platform-button strong {
  display: block;
}

.platform-button small {
  margin-bottom: 2px;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.1em;
  line-height: 1.2;
  text-transform: uppercase;
  opacity: 0.64;
}

.platform-button strong {
  font-size: 18px;
  line-height: 1.2;
}

.platform-caption {
  display: block;
  margin-top: 10px;
  color: var(--ink-soft);
  font-size: 10px;
  line-height: 1.45;
}

.hero-actions-secondary {
  margin-top: 18px;
}

.hero-visual {
  position: relative;
  min-height: 660px;
}

.image-frame {
  position: absolute;
  inset: 0 -12vw 0 0;
  overflow: hidden;
  border-radius: 220px 0 0 220px;
  box-shadow: var(--shadow-soft);
}

.image-frame picture,
.image-frame img {
  width: 100%;
  height: 100%;
}

.image-frame img {
  object-fit: cover;
  object-position: 58% center;
}

.image-wash {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 250, 245, 0.42), transparent 28%),
    linear-gradient(0deg, rgba(50, 3, 20, 0.18), transparent 36%);
}

.floating-card {
  position: absolute;
  z-index: 2;
  display: flex;
  min-width: 230px;
  align-items: center;
  gap: 13px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.66);
  border-radius: 18px;
  background: rgba(255, 253, 252, 0.88);
  box-shadow: 0 18px 50px rgba(47, 8, 22, 0.18);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  animation: float-card 5s ease-in-out infinite;
}

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

.floating-card strong {
  margin-bottom: 2px;
  color: var(--ink);
  font-size: 12px;
}

.floating-card small {
  color: var(--ink-soft);
  font-size: 10px;
}

.floating-card-top {
  top: 72px;
  left: -26px;
}

.floating-card-bottom {
  right: -14px;
  bottom: 62px;
  animation-delay: -2s;
}

.mini-icon {
  display: grid;
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 12px;
  background: var(--blush);
}

.mini-icon svg {
  width: 18px;
  fill: rgba(179, 11, 63, 0.08);
  stroke: var(--cherry);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.avatar-stack {
  display: flex;
  width: 62px;
  flex: 0 0 auto;
}

.avatar-stack i {
  width: 29px;
  height: 29px;
  margin-right: -10px;
  border: 2px solid var(--paper);
  border-radius: 50%;
  background: linear-gradient(145deg, #f7a5b9, #9c0936);
}

.avatar-stack i:nth-child(2) {
  background: linear-gradient(145deg, #cfb9f7, #57407d);
}

.avatar-stack i:nth-child(3) {
  background: linear-gradient(145deg, #a6d5a6, #245f2d);
}

@keyframes float-card {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

.trust-strip {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 82px;
  margin-top: 52px;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.trust-strip p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.trust-strip div {
  display: flex;
  align-items: center;
  gap: 23px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 670;
}

.trust-strip i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--cherry);
}

.section {
  padding: 130px 0;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 66px;
  text-align: center;
}

.section-heading h2,
.steps-copy h2,
.safety-copy h2,
.local-copy h2,
.closing-inner h2 {
  margin-bottom: 22px;
  font-size: clamp(2.8rem, 5vw, 5rem);
  font-weight: 580;
  line-height: 0.98;
}

.section-heading > p:last-child,
.steps-copy > p,
.local-copy > p,
.closing-inner > p {
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.7;
}

.approach {
  background: var(--paper);
}

.bento-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 22px;
}

.bento-card {
  position: relative;
  display: flex;
  min-height: 540px;
  overflow: hidden;
  flex-direction: column;
  justify-content: space-between;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: var(--cream);
  box-shadow: var(--shadow-card);
}

.bento-card::after {
  position: absolute;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.75), rgba(255, 255, 255, 0));
  content: "";
  pointer-events: none;
}

.bento-feature {
  grid-row: span 2;
  background: linear-gradient(150deg, #780524 0%, #b30b3f 62%, #dc315f 100%);
  color: var(--white);
}

.bento-feature::after {
  top: -80px;
  left: -60px;
}

.bento-quiet,
.bento-mutual {
  min-height: 370px;
}

.bento-quiet {
  background: linear-gradient(145deg, #f5ede5, #fffaf5);
}

.bento-mutual {
  grid-column: 2;
  background: linear-gradient(145deg, #edf5ea, #f9fdf7);
}

.card-number {
  position: relative;
  z-index: 2;
  align-self: flex-end;
  color: currentColor;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  opacity: 0.62;
}

.card-copy {
  position: relative;
  z-index: 2;
  max-width: 520px;
}

.card-label {
  margin-bottom: 10px;
  color: var(--cherry);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.bento-feature .card-label {
  color: #ffccd9;
}

.card-copy h3 {
  margin-bottom: 13px;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(2rem, 3vw, 3.2rem);
  font-weight: 560;
  letter-spacing: -0.04em;
  line-height: 1.02;
}

.card-copy > p:last-child {
  max-width: 510px;
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.7;
}

.bento-feature .card-copy > p:last-child {
  color: rgba(255, 255, 255, 0.76);
}

.intent-orbit {
  position: relative;
  width: min(92%, 500px);
  aspect-ratio: 1;
  margin: 10px auto 28px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
}

.intent-orbit::before,
.intent-orbit::after {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  content: "";
}

.intent-orbit::before {
  inset: 16%;
}

.intent-orbit::after {
  inset: 34%;
}

.orbit-centre {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: 112px;
  height: 112px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.13);
  box-shadow: 0 20px 70px rgba(36, 0, 12, 0.2);
  transform: translate(-50%, -50%);
  backdrop-filter: blur(8px);
}

.orbit-centre img {
  width: 78px;
}

.orbit {
  position: absolute;
  z-index: 2;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.13);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  backdrop-filter: blur(8px);
}

.orbit-one {
  top: 16%;
  left: 8%;
}

.orbit-two {
  top: 34%;
  right: -2%;
}

.orbit-three {
  bottom: 10%;
  left: 21%;
}

.daily-preview {
  display: grid;
  margin: 2px 10px 34px;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.daily-topline {
  display: flex;
  grid-column: 1 / -1;
  align-items: center;
  justify-content: space-between;
  color: var(--ink-soft);
  font-size: 9px;
  font-weight: 750;
}

.profile-silhouette {
  position: relative;
  height: 118px;
  overflow: hidden;
  border-radius: 48px 48px 16px 16px;
  background: linear-gradient(160deg, #f7bfd0, #b30b3f);
}

.profile-silhouette::before,
.profile-silhouette::after {
  position: absolute;
  left: 50%;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.56);
  content: "";
  transform: translateX(-50%);
}

.profile-silhouette::before {
  top: 24px;
  width: 38px;
  height: 38px;
}

.profile-silhouette::after {
  bottom: -30px;
  width: 96px;
  height: 78px;
}

.profile-two {
  background: linear-gradient(160deg, #e9d9ff, #65478d);
  transform: translateY(11px);
}

.profile-three {
  background: linear-gradient(160deg, #cbe8c6, #2d8b2a);
}

.profile-four {
  background: linear-gradient(160deg, #ffe2b8, #9f4e24);
  transform: translateY(11px);
}

.mutual-visual {
  display: flex;
  margin: 8px 8px 30px;
  align-items: center;
  justify-content: center;
}

.mutual-person {
  display: grid;
  width: 88px;
  height: 88px;
  flex: 0 0 auto;
  place-items: center;
  border: 5px solid rgba(255, 255, 255, 0.85);
  border-radius: 50%;
  background: linear-gradient(145deg, #f8b3c5, #9e0b39);
  box-shadow: 0 12px 30px rgba(37, 81, 36, 0.12);
  color: var(--white);
  font-size: 16px;
  font-weight: 800;
}

.person-b {
  background: linear-gradient(145deg, #8dc98a, #165a26);
}

.mutual-line {
  display: flex;
  min-width: 105px;
  align-items: center;
  color: var(--leaf-dark);
  font-size: 9px;
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
}

.mutual-line i {
  height: 1px;
  flex: 1;
  background: rgba(7, 93, 43, 0.26);
}

.mutual-line b {
  padding: 0 8px;
  font-weight: inherit;
}

.steps {
  background: var(--cream);
}

.steps-layout {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  align-items: start;
  gap: 110px;
}

.steps-copy {
  position: sticky;
  top: 140px;
}

.steps-copy h2 {
  max-width: 490px;
}

.steps-copy > p {
  max-width: 490px;
  margin-bottom: 24px;
}

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

.step-list li {
  display: grid;
  min-height: 178px;
  padding: 34px 0;
  border-top: 1px solid var(--line);
  grid-template-columns: 62px 1fr;
  gap: 16px;
}

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

.step-list > li > span {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 50%;
  background: var(--blush);
  color: var(--cherry);
  font-size: 10px;
  font-weight: 800;
}

.step-list h3 {
  margin-bottom: 9px;
  color: var(--ink);
  font-family: "Fraunces", Georgia, serif;
  font-size: 27px;
  font-weight: 580;
  letter-spacing: -0.025em;
  line-height: 1.12;
}

.step-list p {
  max-width: 570px;
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 14px;
}

.safety {
  position: relative;
  overflow: hidden;
  background: #2a0613;
  color: var(--white);
}

.safety::before {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.08) 0.6px, transparent 0.6px);
  background-size: 13px 13px;
  content: "";
  mask-image: linear-gradient(90deg, black, transparent 55%);
  opacity: 0.32;
}

.safety-glow {
  position: absolute;
  top: -290px;
  left: -160px;
  width: 680px;
  height: 680px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(242, 10, 70, 0.33), rgba(242, 10, 70, 0));
}

.safety-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  align-items: center;
  gap: 96px;
}

.kicker-light {
  color: #ffb8ca;
}

.safety-copy h2 {
  color: var(--white);
}

.safety-copy > p {
  max-width: 530px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 17px;
  line-height: 1.7;
}

.safety-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.safety-card {
  min-height: 225px;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
}

.safety-icon {
  display: grid;
  width: 46px;
  height: 46px;
  margin-bottom: 29px;
  place-items: center;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.1);
  color: #ff9ab3;
}

.safety-icon svg {
  width: 23px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.safety-card h3 {
  margin-bottom: 7px;
  font-family: "Fraunces", Georgia, serif;
  font-size: 23px;
  font-weight: 560;
  letter-spacing: -0.02em;
}

.safety-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.61);
  font-size: 12px;
  line-height: 1.6;
}

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

.local-card {
  position: relative;
  display: grid;
  min-height: 590px;
  overflow: hidden;
  padding: 74px;
  border: 1px solid var(--line);
  border-radius: 48px;
  background: linear-gradient(135deg, #fff2f4 0%, #f9eee7 100%);
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  box-shadow: var(--shadow-card);
}

.local-copy {
  position: relative;
  z-index: 2;
}

.local-copy > p {
  max-width: 600px;
  margin-bottom: 28px;
}

.local-copy > .community-promise {
  color: var(--cherry-dark);
  font-weight: 750;
}

.local-art {
  position: absolute;
  top: 50%;
  right: -20px;
  width: 44%;
  aspect-ratio: 1.15;
  transform: translateY(-50%);
}

.map-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid rgba(179, 11, 63, 0.13);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.ring-one {
  width: 92%;
  height: 92%;
}

.ring-two {
  width: 68%;
  height: 68%;
}

.ring-three {
  width: 43%;
  height: 43%;
}

.map-pin {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  display: grid;
  width: 86px;
  height: 86px;
  place-items: center;
  border-radius: 50% 50% 50% 8px;
  background: linear-gradient(145deg, var(--cherry-bright), var(--cherry-dark));
  box-shadow: 0 22px 50px rgba(179, 11, 63, 0.28);
  transform: translate(-50%, -58%) rotate(-45deg);
}

.map-pin span {
  width: 28px;
  height: 28px;
  border: 7px solid var(--white);
  border-radius: 50%;
  transform: rotate(45deg);
}

.place-label {
  position: absolute;
  z-index: 4;
  padding: 10px 15px;
  border: 1px solid rgba(179, 11, 63, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 12px 30px rgba(120, 5, 36, 0.09);
  color: var(--cherry-dark);
  font-size: 10px;
  font-weight: 750;
  backdrop-filter: blur(8px);
}

.place-community {
  top: 19%;
  left: 5%;
}

.place-distance {
  right: 8%;
  bottom: 20%;
}

.river-line {
  position: absolute;
  z-index: 1;
  inset: 0;
  width: 100%;
  height: 100%;
  fill: none;
  stroke: rgba(45, 139, 42, 0.22);
  stroke-linecap: round;
  stroke-width: 11;
}

.faq-section {
  background: var(--cream);
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  align-items: start;
  gap: 100px;
}

.section-heading-left {
  margin: 0;
  text-align: left;
}

.section-heading-left h2 {
  font-size: clamp(2.8rem, 4.4vw, 4.3rem);
}

.section-heading-left a {
  color: var(--cherry);
  text-underline-offset: 4px;
}

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

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

.faq-list summary {
  position: relative;
  display: flex;
  min-height: 88px;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  color: var(--ink);
  font-family: "Fraunces", Georgia, serif;
  font-size: 22px;
  font-weight: 560;
  line-height: 1.2;
  cursor: pointer;
  list-style: none;
}

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

.faq-list summary span {
  position: relative;
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.faq-list summary span::before,
.faq-list summary span::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 1px;
  background: var(--cherry);
  content: "";
  transform: translate(-50%, -50%);
  transition: transform 180ms ease;
}

.faq-list summary span::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-list details[open] summary span::after {
  transform: translate(-50%, -50%) rotate(0);
}

.faq-list details p {
  max-width: 660px;
  margin: -5px 50px 28px 0;
  color: var(--ink-soft);
  font-size: 14px;
}

.closing-cta {
  position: relative;
  overflow: hidden;
  padding: 120px 0;
  background: linear-gradient(135deg, #f20a46, #95042f 58%, #4e031b);
  color: var(--white);
}

.closing-cta::before,
.closing-cta::after {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  content: "";
}

.closing-cta::before {
  top: -230px;
  left: -80px;
  width: 520px;
  height: 520px;
}

.closing-cta::after {
  right: -170px;
  bottom: -270px;
  width: 640px;
  height: 640px;
}

.closing-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  flex-direction: column;
  text-align: center;
}

.closing-inner > img {
  width: 118px;
  margin-bottom: 18px;
  filter: drop-shadow(0 18px 26px rgba(62, 0, 19, 0.2));
}

.closing-inner h2 {
  margin-bottom: 13px;
  color: var(--white);
  font-size: clamp(4rem, 8vw, 7.4rem);
}

.closing-inner > p {
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.74);
}

.site-footer {
  padding: 72px 0 26px;
  background: #1d1719;
  color: var(--white);
}

.access-dialog {
  width: min(calc(100% - 32px), 660px);
  max-height: min(880px, calc(100dvh - 32px));
  padding: 0;
  overflow: auto;
  border: 0;
  border-radius: 32px;
  background: var(--paper);
  color: var(--ink);
  box-shadow: 0 34px 100px rgba(42, 6, 19, 0.35);
}

.access-dialog::backdrop {
  background: rgba(33, 10, 18, 0.65);
  backdrop-filter: blur(9px);
  -webkit-backdrop-filter: blur(9px);
}

.access-dialog[open] {
  animation: dialog-in 240ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

@keyframes dialog-in {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.985);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.access-dialog-panel {
  position: relative;
  padding: 42px;
}

.dialog-close {
  position: absolute;
  z-index: 2;
  top: 20px;
  right: 20px;
  display: grid;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 14px;
  place-items: center;
  background: rgba(255, 255, 255, 0.84);
  cursor: pointer;
}

.dialog-close svg {
  width: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 1.8;
}

.dialog-brand {
  display: grid;
  width: 68px;
  height: 68px;
  margin-bottom: 25px;
  overflow: hidden;
  place-items: center;
  border-radius: 21px;
  background: linear-gradient(145deg, var(--blush), var(--white));
  box-shadow: 0 12px 32px rgba(179, 11, 63, 0.13);
}

.dialog-brand img {
  width: 55px;
  height: auto;
}

.dialog-copy .kicker {
  margin-bottom: 11px;
}

.dialog-copy h2 {
  max-width: 520px;
  margin-bottom: 13px;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(2.5rem, 7vw, 4.1rem);
  font-weight: 580;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.dialog-copy > p:last-child {
  max-width: 540px;
  margin-bottom: 29px;
  color: var(--ink-soft);
  font-size: 14px;
}

.access-form {
  display: grid;
  gap: 21px;
}

.access-form[hidden],
.access-success[hidden] {
  display: none;
}

.form-field label,
.platform-choice legend {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 780;
}

.form-field input {
  width: 100%;
  min-height: 56px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 15px;
  outline: none;
  background: var(--white);
  color: var(--ink);
  font: inherit;
  font-size: 15px;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.form-field input:focus {
  border-color: rgba(179, 11, 63, 0.58);
  box-shadow: 0 0 0 4px rgba(179, 11, 63, 0.1);
}

.form-field input:user-invalid {
  border-color: #b42318;
}

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

.platform-choice > div {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 11px;
}

.platform-choice label {
  position: relative;
  display: flex;
  min-height: 72px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 17px;
  align-items: center;
  gap: 12px;
  background: var(--white);
  cursor: pointer;
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.platform-choice label:has(input:checked) {
  border-color: var(--cherry);
  background: var(--blush-soft);
  box-shadow: 0 0 0 3px rgba(179, 11, 63, 0.08);
}

.platform-choice label:has(input:focus-visible) {
  outline: 3px solid rgba(242, 10, 70, 0.46);
  outline-offset: 3px;
}

.platform-choice input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.choice-icon {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 13px;
  background: var(--cream);
}

.choice-icon svg {
  width: 23px;
  height: 23px;
}

.choice-icon-ios svg {
  fill: var(--ink);
}

.choice-icon-android svg {
  fill: none;
  stroke: var(--leaf-dark);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.choice-icon-android circle {
  fill: var(--leaf-dark);
  stroke: none;
}

.platform-choice strong,
.platform-choice small {
  display: block;
}

.platform-choice strong {
  font-size: 14px;
}

.platform-choice small {
  color: var(--ink-soft);
  font-size: 10px;
}

.eligibility-check {
  position: relative;
  display: grid;
  align-items: start;
  grid-template-columns: 24px 1fr;
  gap: 11px;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.55;
  cursor: pointer;
}

.eligibility-check input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.eligibility-check > span:first-of-type {
  display: grid;
  width: 23px;
  height: 23px;
  margin-top: 1px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--white);
  transition: border-color 180ms ease, background 180ms ease;
}

.eligibility-check svg {
  width: 15px;
  fill: none;
  stroke: transparent;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.2;
}

.eligibility-check input:checked + span {
  border-color: var(--cherry);
  background: var(--cherry);
}

.eligibility-check input:checked + span svg {
  stroke: var(--white);
}

.eligibility-check input:focus-visible + span {
  outline: 3px solid rgba(242, 10, 70, 0.46);
  outline-offset: 3px;
}

.form-trap {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-privacy {
  margin: -4px 0 0;
  color: var(--ink-soft);
  font-size: 11px;
  line-height: 1.55;
}

.form-privacy a {
  color: var(--cherry-dark);
  font-weight: 700;
  text-underline-offset: 3px;
}

.form-submit {
  width: 100%;
}

.submit-spinner {
  display: none;
  width: 17px;
  height: 17px;
  border: 2px solid rgba(255, 255, 255, 0.38);
  border-top-color: var(--white);
  border-radius: 50%;
  animation: spinner 700ms linear infinite;
}

.access-form.is-submitting .submit-spinner {
  display: block;
}

@keyframes spinner {
  to {
    transform: rotate(360deg);
  }
}

.form-status {
  min-height: 20px;
  margin: -8px 0 0;
  color: #9b1c1c;
  font-size: 12px;
  line-height: 1.5;
}

.form-status a {
  font-weight: 750;
  text-underline-offset: 3px;
}

.access-success {
  padding: 24px 0 10px;
  text-align: center;
}

.success-icon {
  display: grid;
  width: 72px;
  height: 72px;
  margin: 0 auto 22px;
  place-items: center;
  border-radius: 50%;
  background: #eaf6e8;
  color: var(--leaf-dark);
}

.success-icon svg {
  width: 34px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.access-success h3 {
  margin-bottom: 10px;
  font-family: "Fraunces", Georgia, serif;
  font-size: 36px;
  font-weight: 580;
  letter-spacing: -0.035em;
}

.access-success p {
  max-width: 420px;
  margin: 0 auto 26px;
  color: var(--ink-soft);
  font-size: 14px;
}

.not-found {
  display: flex;
  width: min(calc(100% - 32px), 720px);
  min-height: 100vh;
  margin-inline: auto;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
}

.not-found > img {
  width: 120px;
  margin-bottom: 20px;
}

.not-found h1 {
  margin-bottom: 18px;
  font-size: clamp(3.2rem, 10vw, 6.5rem);
}

.not-found > p:not(.kicker) {
  margin-bottom: 28px;
  color: var(--ink-soft);
}

.footer-top {
  display: flex;
  padding-bottom: 60px;
  align-items: flex-start;
  justify-content: space-between;
  gap: 60px;
}

.footer-brand .brand {
  width: 190px;
  padding: 7px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.94);
}

.footer-brand > p {
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.48);
  font-size: 13px;
}

.footer-links {
  display: flex;
  gap: 90px;
}

.footer-links > div {
  display: flex;
  min-width: 140px;
  flex-direction: column;
  gap: 10px;
}

.footer-links p {
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.36);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer-links a,
.footer-links button,
.footer-bottom a {
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.72);
  font-family: inherit;
  font-size: 12px;
  text-align: left;
  text-decoration: none;
  cursor: pointer;
}

.footer-links a:hover,
.footer-links a:focus-visible,
.footer-links button:hover,
.footer-links button:focus-visible,
.footer-bottom a:hover,
.footer-bottom a:focus-visible {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.footer-bottom {
  display: flex;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.4);
  font-size: 11px;
}

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

.js .reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 720ms cubic-bezier(0.2, 0.8, 0.2, 1),
    transform 720ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

:focus-visible {
  outline: 3px solid rgba(242, 10, 70, 0.46);
  outline-offset: 4px;
}

@media (max-width: 1100px) {
  .hero-grid {
    grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
    gap: 38px;
  }

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

  .floating-card-bottom {
    right: 0;
  }

  .safety-grid,
  .faq-grid {
    gap: 62px;
  }

  .local-card {
    padding: 60px;
  }
}

@media (max-width: 920px) {
  .site-nav {
    position: fixed;
    top: 78px;
    right: 18px;
    left: 18px;
    display: none;
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: rgba(255, 253, 252, 0.98);
    box-shadow: var(--shadow-soft);
    flex-direction: column;
    align-items: stretch;
    gap: 19px;
    backdrop-filter: blur(18px);
  }

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

  .site-nav .button {
    margin-top: 5px;
  }

  .menu-toggle {
    display: block;
  }

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

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

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

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 56px;
  }

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

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

  .image-frame {
    inset: 0;
    border-radius: 180px 180px 34px 34px;
  }

  .trust-strip {
    align-items: flex-start;
    flex-direction: column;
    padding: 25px 0;
  }

  .trust-strip div {
    width: 100%;
    flex-wrap: wrap;
  }

  .steps-layout,
  .safety-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .steps-copy {
    position: static;
  }

  .safety-grid {
    gap: 56px;
  }

  .faq-grid {
    gap: 50px;
  }

  .local-card {
    min-height: 0;
    padding-bottom: 310px;
    grid-template-columns: 1fr;
    align-items: start;
  }

  .local-copy {
    max-width: 560px;
  }

  .local-art {
    top: auto;
    right: 4%;
    bottom: -110px;
    width: 58%;
    transform: none;
  }
}

@media (max-width: 700px) {
  .container {
    width: min(calc(100% - 32px), var(--container));
  }

  .brand {
    width: 153px;
  }

  .hero {
    padding: 120px 0 30px;
  }

  h1 {
    font-size: clamp(3.65rem, 18vw, 5.6rem);
  }

  .hero-intro {
    font-size: 15px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 16px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-actions .text-link {
    align-self: center;
  }

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

  .platform-access {
    max-width: none;
  }

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

  .image-frame {
    border-radius: 120px 120px 26px 26px;
  }

  .image-frame img {
    object-position: 67% center;
  }

  .floating-card {
    min-width: 195px;
    padding: 11px 13px;
  }

  .floating-card-top {
    top: 30px;
    left: -5px;
  }

  .floating-card-bottom {
    right: -4px;
    bottom: 24px;
  }

  .trust-strip div {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .trust-strip i {
    display: none;
  }

  .section {
    padding: 88px 0;
  }

  .section-heading {
    margin-bottom: 42px;
  }

  .section-heading h2,
  .steps-copy h2,
  .safety-copy h2,
  .local-copy h2 {
    font-size: clamp(2.7rem, 13vw, 4.1rem);
  }

  .section-heading > p:last-child,
  .steps-copy > p,
  .safety-copy > p,
  .local-copy > p {
    font-size: 15px;
  }

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

  .bento-card,
  .bento-feature,
  .bento-quiet,
  .bento-mutual {
    min-height: 480px;
    grid-column: auto;
    grid-row: auto;
  }

  .bento-quiet,
  .bento-mutual {
    min-height: 380px;
  }

  .bento-card {
    padding: 25px;
    border-radius: 29px;
  }

  .intent-orbit {
    width: 96%;
  }

  .orbit-centre {
    width: 88px;
    height: 88px;
  }

  .orbit-centre img {
    width: 61px;
  }

  .daily-preview {
    margin-inline: 0;
  }

  .profile-silhouette {
    height: 105px;
  }

  .mutual-person {
    width: 75px;
    height: 75px;
  }

  .mutual-line {
    min-width: 82px;
  }

  .steps-layout {
    gap: 48px;
  }

  .step-list li {
    grid-template-columns: 48px 1fr;
  }

  .step-list h3 {
    font-size: 23px;
  }

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

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

  .local-card {
    min-height: 0;
    padding: 38px 28px 310px;
    border-radius: 30px;
  }

  .local-art {
    right: -16%;
    bottom: -50px;
    width: 110%;
  }

  .place-community {
    left: 16%;
  }

  .place-distance {
    right: 13%;
  }

  .faq-list summary {
    min-height: 82px;
    font-size: 19px;
  }

  .closing-cta {
    padding: 88px 0;
  }

  .closing-inner h2 {
    font-size: clamp(3.9rem, 20vw, 6rem);
  }

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

  .footer-links {
    width: 100%;
    gap: 35px;
  }

  .footer-links > div {
    flex: 1;
  }

  .access-dialog {
    width: min(calc(100% - 16px), 660px);
    max-height: calc(100dvh - 16px);
    border-radius: 26px;
  }

  .access-dialog-panel {
    padding: 34px 22px 26px;
  }

  .dialog-close {
    top: 14px;
    right: 14px;
  }

  .dialog-brand {
    width: 58px;
    height: 58px;
    margin-bottom: 21px;
  }

  .dialog-brand img {
    width: 47px;
  }

  .dialog-copy h2 {
    padding-right: 20px;
  }
}

@media (max-width: 390px) {
  .platform-buttons,
  .platform-choice > div {
    grid-template-columns: 1fr;
  }

  .platform-button {
    min-height: 66px;
  }

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

  .floating-card-top {
    left: -11px;
  }

  .floating-card-bottom {
    right: -11px;
  }

  .profile-silhouette {
    height: 90px;
  }

  .mutual-line {
    min-width: 68px;
  }

  .mutual-line b {
    padding: 0 4px;
    font-size: 8px;
  }
}

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

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

  .access-dialog[open] {
    animation: none;
  }
}
/* The compatibility guide shares the existing type and spacing system. */
.compatibility-section { background: #fff5ef; }
.compatibility-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; }
.compatibility-card { padding: clamp(24px, 4vw, 40px); border: 1px solid #eadbd4; border-radius: 24px; background: #fffaf5; }
.compatibility-card h3 { margin: 16px 0; font-family: "Fraunces", Georgia, serif; font-size: clamp(24px, 3vw, 30px); line-height: 1.2; }
.compatibility-card p { margin: 12px 0 0; line-height: 1.8; }
@media (max-width: 700px) { .compatibility-grid { grid-template-columns: 1fr; gap: 16px; } }
