:root {
  color-scheme: light;
  --coral: #f16e76;
  --coral-deep: #dc5661;
  --coral-dark: #9f303a;
  --coral-soft: #ffe9eb;
  --coral-wash: #fff5f5;
  --ink: #171416;
  --slate: #524d50;
  --muted: #777074;
  --line: rgba(62, 48, 54, 0.12);
  --canvas: #f7f5f5;
  --surface: rgba(255, 255, 255, 0.82);
  --surface-solid: #ffffff;
  --glass: rgba(255, 255, 255, 0.64);
  --shadow: 0 30px 90px rgba(78, 33, 40, 0.16);
  --shadow-small: 0 16px 42px rgba(78, 33, 40, 0.11);
  --max: 1180px;
  --radius-xl: 42px;
  --radius-lg: 30px;
  --radius-md: 22px;
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", sans-serif;
  background: var(--canvas);
  color: var(--ink);
  font-synthesis: none;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 6% 8%, rgba(241, 110, 118, 0.08), transparent 28rem),
    var(--canvas);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
}

body.legal-page,
body.support-page {
  background:
    radial-gradient(circle at 8% 0%, rgba(241, 110, 118, 0.12), transparent 30rem),
    var(--canvas);
}

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

a {
  color: var(--coral-dark);
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.22em;
}

a:hover {
  color: var(--coral-deep);
}

p {
  color: var(--slate);
}

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

button,
summary,
a {
  touch-action: manipulation;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 100;
  padding: 11px 15px;
  border-radius: 12px;
  background: var(--ink);
  color: #fff;
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(255, 255, 255, 0.42);
  background: rgba(247, 245, 245, 0.74);
  -webkit-backdrop-filter: blur(24px) saturate(1.25);
  backdrop-filter: blur(24px) saturate(1.25);
}

.nav-shell {
  width: min(calc(100% - 32px), var(--max));
  min-height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--ink);
  font-size: 1.04rem;
  font-weight: 850;
  letter-spacing: -0.02em;
  text-decoration: none;
}

.brand img {
  width: 44px;
  height: 44px;
  border-radius: 13px;
  box-shadow: 0 10px 24px rgba(206, 68, 80, 0.2);
}

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

.nav-links a {
  color: var(--slate);
  font-size: 0.91rem;
  font-weight: 720;
  text-decoration: none;
}

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

.language-link {
  min-width: 38px;
  min-height: 38px;
  display: inline-grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.6);
}

.language-switcher {
  position: relative;
  flex: 0 0 auto;
}

.language-trigger {
  min-width: 86px;
  min-height: 42px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border: 1px solid rgba(62, 48, 54, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.68);
  color: var(--slate);
  box-shadow: 0 8px 24px rgba(78, 33, 40, 0.06);
  cursor: pointer;
  list-style: none;
  transition: color 160ms ease, border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

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

.language-trigger:hover,
.language-trigger:focus-visible,
.language-switcher[open] .language-trigger {
  border-color: rgba(220, 86, 97, 0.24);
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  box-shadow: 0 12px 30px rgba(78, 33, 40, 0.1);
}

.language-trigger:focus-visible {
  outline: 3px solid rgba(241, 110, 118, 0.24);
  outline-offset: 2px;
}

.language-trigger-icon {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.65;
}

.language-trigger-label {
  font-size: 0.82rem;
  font-weight: 820;
  letter-spacing: 0.04em;
}

.language-trigger-name {
  display: none;
}

.language-trigger-chevron {
  width: 14px;
  height: 14px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
  transition: transform 160ms ease;
}

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

.language-menu {
  position: absolute;
  z-index: 4;
  top: calc(100% + 10px);
  right: 0;
  width: 204px;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.92);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 24px 60px rgba(78, 33, 40, 0.16);
  -webkit-backdrop-filter: blur(24px) saturate(1.2);
  backdrop-filter: blur(24px) saturate(1.2);
  transform-origin: top right;
  animation: language-menu-enter 150ms ease-out;
}

@keyframes language-menu-enter {
  from {
    opacity: 0;
    transform: translateY(-5px) scale(0.98);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.nav-links .language-option {
  min-height: 44px;
  display: grid;
  grid-template-columns: 32px 1fr 18px;
  align-items: center;
  gap: 8px;
  padding: 7px 9px;
  border: 0;
  border-radius: 12px;
  color: var(--slate);
  text-decoration: none;
}

.nav-links a.language-option:hover,
.nav-links a.language-option:focus-visible {
  background: var(--coral-wash);
  color: var(--ink);
}

.nav-links a.language-option:focus-visible {
  outline: 2px solid rgba(241, 110, 118, 0.28);
  outline-offset: -2px;
}

.language-option.is-current {
  background: rgba(241, 110, 118, 0.09);
  color: var(--ink);
  font-weight: 760;
}

.language-option-code {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 820;
  letter-spacing: 0.06em;
}

.language-option-name {
  font-size: 0.88rem;
  font-weight: 700;
}

.language-option-state {
  color: var(--coral-deep);
  font-size: 0.88rem;
  font-weight: 850;
  text-align: center;
}

.nav-links .nav-cta {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 10px 17px;
  border-radius: 999px;
  background: var(--coral);
  color: var(--ink);
  box-shadow: 0 12px 26px rgba(220, 86, 97, 0.25);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow-small);
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  width: 18px;
  height: 2px;
  display: block;
  margin: 0 auto;
  border-radius: 2px;
  background: var(--ink);
  transition: transform 160ms ease, opacity 160ms ease;
}

.nav-toggle span {
  position: relative;
}

.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-toggle span::before {
  top: -6px;
}

.nav-toggle span::after {
  top: 6px;
}

.nav-toggle[aria-expanded="true"] span {
  background: transparent;
}

.nav-toggle[aria-expanded="true"] span::before {
  top: 0;
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span::after {
  top: 0;
  transform: rotate(-45deg);
}

.hero {
  min-height: min(880px, calc(100svh - 76px));
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: grid;
  align-items: center;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.97) 0%, rgba(255, 244, 245, 0.92) 56%, rgba(241, 110, 118, 0.18) 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(241, 110, 118, 0.35), transparent);
}

.hero-orb {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  filter: blur(2px);
}

.orb-one {
  width: 460px;
  height: 460px;
  right: -120px;
  top: -120px;
  background: rgba(241, 110, 118, 0.25);
}

.orb-two {
  width: 280px;
  height: 280px;
  left: 40%;
  bottom: -180px;
  background: rgba(255, 255, 255, 0.9);
}

.hero-shell {
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
  padding: 78px 0 64px;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  gap: 62px;
  align-items: center;
}

.hero-copy {
  position: relative;
  z-index: 2;
  min-width: 0;
  max-width: 100%;
}

.eyebrow {
  margin: 0 0 18px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--coral-deep);
  font-size: 0.78rem;
  line-height: 1.2;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 0 0 6px rgba(241, 110, 118, 0.12);
}

.hero h1,
.section-heading h2,
.legal-hero h1,
.support-hero h1,
.final-cta h2 {
  margin: 0;
  color: var(--ink);
  font-weight: 870;
  letter-spacing: -0.055em;
}

.hero h1 {
  max-width: 690px;
  font-size: clamp(3.7rem, 6.7vw, 6.5rem);
  line-height: 0.95;
}

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

.hero-lede {
  max-width: 620px;
  margin: 28px 0 0;
  font-size: clamp(1.1rem, 1.7vw, 1.3rem);
  line-height: 1.62;
}

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

.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  border: 1px solid transparent;
  border-radius: 18px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button-primary {
  background: var(--coral);
  color: var(--ink);
  box-shadow: 0 16px 38px rgba(220, 86, 97, 0.3);
}

.button-primary:hover {
  background: var(--coral-deep);
  color: var(--ink);
  box-shadow: 0 20px 46px rgba(220, 86, 97, 0.36);
}

.button-glass {
  border-color: rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.56);
  color: var(--ink);
  box-shadow: inset 0 0 0 1px rgba(62, 48, 54, 0.05), var(--shadow-small);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}

.trust-list {
  margin: 26px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  list-style: none;
}

.trust-list li {
  padding: 9px 12px;
  border: 1px solid rgba(241, 110, 118, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.54);
  color: var(--slate);
  font-size: 0.78rem;
  font-weight: 720;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

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

.phone-preview {
  width: min(340px, 66vw);
  aspect-ratio: 1320 / 2868;
  position: relative;
  z-index: 3;
  overflow: hidden;
  margin: 0;
  border: 10px solid rgba(255, 255, 255, 0.92);
  border-radius: 54px;
  background: #f7f7f7;
  box-shadow: 0 40px 100px rgba(74, 31, 38, 0.24), inset 0 0 0 1px rgba(25, 17, 21, 0.09);
  transform: rotate(2.5deg);
}

.phone-preview::before,
.gallery-phone::before {
  content: "";
  position: absolute;
  z-index: 5;
  width: 30%;
  height: 24px;
  left: 35%;
  top: 12px;
  border-radius: 999px;
  background: #101010;
}

.phone-preview img,
.gallery-phone img {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 3;
  inset: 0;
  object-fit: cover;
  opacity: 0;
  transition: opacity 240ms ease;
}

.screenshot-slot.has-image img {
  opacity: 1;
}

.screenshot-slot.has-image .screenshot-placeholder {
  opacity: 0;
}

.screenshot-placeholder {
  position: absolute;
  inset: 0;
  padding: 62px 24px 28px;
  background: linear-gradient(180deg, #fff, #f6f4f4);
  transition: opacity 200ms ease;
}

.mock-status {
  position: absolute;
  top: 17px;
  left: 20px;
  right: 20px;
  display: flex;
  justify-content: space-between;
  color: #161616;
  font-size: 0.72rem;
  font-weight: 800;
}

.mock-title {
  margin-top: 20px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 750;
}

.mock-name {
  margin-top: 8px;
  font-size: 2.2rem;
  font-weight: 850;
  letter-spacing: -0.04em;
}

.mock-calendar {
  margin-top: 34px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 22px 15px;
  padding: 24px 18px;
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 20px 46px rgba(65, 48, 53, 0.08);
  font-size: 0.79rem;
}

.mock-calendar span {
  color: var(--muted);
}

.mock-calendar strong {
  color: var(--ink);
}

.hero-card {
  position: absolute;
  z-index: 1;
  width: 290px;
  min-height: 160px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.58);
  box-shadow: var(--shadow);
  -webkit-backdrop-filter: blur(24px);
  backdrop-filter: blur(24px);
}

.hero-card-back {
  right: -10px;
  top: 88px;
  transform: rotate(8deg);
}

.hero-card span,
.hero-card strong {
  display: block;
}

.hero-card .mini-date {
  color: var(--coral-deep);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-card strong {
  margin-top: 13px;
  font-size: 1.8rem;
}

.floating-reminder {
  position: absolute;
  z-index: 4;
  left: -8px;
  bottom: 92px;
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 14px 18px;
  border: 1px solid rgba(255, 255, 255, 0.92);
  border-radius: 21px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow-small);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
}

.floating-reminder > span {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: var(--coral-soft);
  color: var(--coral-deep);
  font-weight: 900;
}

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

.floating-reminder small {
  color: var(--muted);
  font-size: 0.7rem;
}

.floating-reminder strong {
  margin-top: 2px;
  font-size: 0.88rem;
}

.signal-strip {
  width: min(calc(100% - 32px), var(--max));
  margin: -26px auto 0;
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.68);
  box-shadow: var(--shadow-small);
  -webkit-backdrop-filter: blur(22px);
  backdrop-filter: blur(22px);
}

.signal-strip > div {
  padding: 22px 26px;
  border-right: 1px solid var(--line);
}

.signal-strip > div:last-child {
  border-right: 0;
}

.signal-strip strong,
.signal-strip span {
  display: block;
}

.signal-strip strong {
  font-size: 0.96rem;
}

.signal-strip span {
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.78rem;
}

.section,
.steps-section,
.faq-section,
.showcase-section,
.legal-shell,
.support-shell,
.final-cta,
.site-footer {
  width: min(calc(100% - 32px), var(--max));
  margin-left: auto;
  margin-right: auto;
}

.section {
  padding: 150px 0 135px;
}

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

.section-heading h2,
.final-cta h2 {
  font-size: clamp(2.75rem, 5vw, 5rem);
  line-height: 0.98;
}

.section-heading > p:last-child {
  max-width: 620px;
  margin: 24px 0 0;
  font-size: 1.08rem;
  line-height: 1.7;
}

.section-heading-center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-heading-center .eyebrow {
  justify-content: center;
}

.section-heading-center > p:last-child {
  margin-left: auto;
  margin-right: auto;
}

.feature-grid {
  margin-top: 68px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.feature-card {
  min-height: 310px;
  position: relative;
  overflow: hidden;
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.88);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-small);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.feature-card::after {
  content: "";
  width: 150px;
  height: 150px;
  position: absolute;
  right: -70px;
  bottom: -70px;
  border-radius: 50%;
  background: rgba(241, 110, 118, 0.1);
}

.feature-large {
  grid-column: span 2;
  background: linear-gradient(140deg, rgba(255, 255, 255, 0.94), rgba(255, 233, 235, 0.72));
}

.feature-wide {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 28px;
  align-items: center;
}

.feature-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 17px;
  background: var(--coral-soft);
  color: var(--coral-deep);
  font-size: 1.45rem;
  font-weight: 800;
}

.feature-card h3 {
  margin: 24px 0 0;
  font-size: 1.45rem;
  letter-spacing: -0.035em;
}

.feature-card p {
  max-width: 610px;
  margin: 12px 0 0;
  line-height: 1.65;
}

.notification-demo {
  max-width: 490px;
  margin-top: 30px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 13px;
  align-items: center;
  padding: 13px 16px;
  border: 1px solid rgba(255, 255, 255, 0.92);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 12px 34px rgba(78, 33, 40, 0.1);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}

.app-dot {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: var(--coral);
  color: var(--ink);
  font-weight: 900;
}

.notification-demo strong,
.notification-demo small {
  display: block;
}

.notification-demo small,
.notification-demo time {
  color: var(--muted);
  font-size: 0.72rem;
}

.widget-demo {
  min-height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 28px;
  border-radius: 34px;
  background: linear-gradient(145deg, #fff, #ffecef);
  box-shadow: 0 18px 48px rgba(78, 33, 40, 0.12);
}

.widget-demo small {
  color: var(--coral-deep);
  font-weight: 850;
  letter-spacing: 0.12em;
}

.widget-demo strong {
  margin-top: 15px;
  font-size: 2rem;
}

.widget-demo span {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.85rem;
}

.showcase-section {
  padding: 140px 0;
}

.screenshot-gallery {
  margin-top: 72px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.gallery-card {
  min-height: 620px;
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: end;
  gap: 20px;
  margin: 0;
  padding: 42px 36px 0;
  border: 1px solid rgba(255, 255, 255, 0.86);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 90% 10%, rgba(241, 110, 118, 0.22), transparent 45%),
    rgba(255, 255, 255, 0.7);
  box-shadow: var(--shadow-small);
  -webkit-backdrop-filter: blur(22px);
  backdrop-filter: blur(22px);
}

.gallery-card:nth-child(even) {
  background:
    radial-gradient(circle at 10% 90%, rgba(241, 110, 118, 0.18), transparent 50%),
    rgba(255, 255, 255, 0.7);
}

.gallery-copy {
  align-self: start;
  position: relative;
  z-index: 5;
}

.gallery-copy > span {
  color: var(--coral);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.15em;
}

.gallery-copy h3 {
  margin: 18px 0 0;
  font-size: clamp(1.6rem, 2.4vw, 2.25rem);
  line-height: 1.06;
  letter-spacing: -0.045em;
}

.gallery-copy p {
  margin: 14px 0 0;
  font-size: 0.93rem;
  line-height: 1.55;
}

.gallery-phone {
  width: min(290px, 100%);
  aspect-ratio: 1320 / 2868;
  position: relative;
  overflow: hidden;
  justify-self: end;
  border: 8px solid rgba(255, 255, 255, 0.95);
  border-bottom: 0;
  border-radius: 45px 45px 0 0;
  background: #f7f7f7;
  box-shadow: 0 28px 76px rgba(78, 33, 40, 0.21);
}

.gallery-phone::before {
  height: 18px;
  top: 9px;
}

.mini-mock {
  padding: 68px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.mini-mock strong {
  margin-bottom: 10px;
  font-size: 1.4rem;
}

.mini-mock span {
  padding: 14px;
  border-radius: 16px;
  background: #fff;
  color: var(--slate);
  font-size: 0.75rem;
  box-shadow: 0 9px 22px rgba(45, 33, 38, 0.06);
}

.steps-section {
  padding: 120px 0 145px;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 90px;
}

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

.steps-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 22px;
  padding: 32px 0;
  border-top: 1px solid var(--line);
}

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

.steps-list > li > span {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  background: var(--coral-soft);
  color: var(--coral-deep);
  font-weight: 850;
}

.steps-list h3 {
  margin: 0;
  font-size: 1.25rem;
}

.steps-list p {
  margin: 9px 0 0;
  line-height: 1.6;
}

.privacy-section {
  padding: 30px 16px 140px;
}

.privacy-shell {
  width: min(100%, var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr 0.92fr;
  gap: 40px;
  align-items: start;
  padding: 58px;
  border: 1px solid rgba(255, 255, 255, 0.88);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 0 0, rgba(255, 255, 255, 0.98), transparent 40%),
    linear-gradient(140deg, rgba(255, 233, 235, 0.88), rgba(255, 255, 255, 0.8));
  box-shadow: var(--shadow);
  -webkit-backdrop-filter: blur(24px);
  backdrop-filter: blur(24px);
}

.privacy-mark {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border-radius: 20px;
  background: var(--coral);
  color: var(--ink);
  font-size: 2rem;
  box-shadow: 0 16px 34px rgba(220, 86, 97, 0.27);
}

.privacy-shell h2 {
  margin: 0;
  font-size: clamp(2.2rem, 3.6vw, 3.8rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.privacy-shell p {
  line-height: 1.68;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  color: var(--coral-dark);
  font-weight: 800;
  text-decoration: none;
}

.privacy-shell ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.privacy-shell li {
  padding: 18px 0;
  border-top: 1px solid rgba(99, 57, 63, 0.13);
}

.privacy-shell li:last-child {
  border-bottom: 1px solid rgba(99, 57, 63, 0.13);
}

.privacy-shell li strong,
.privacy-shell li span {
  display: block;
}

.privacy-shell li span {
  margin-top: 6px;
  color: var(--slate);
  font-size: 0.86rem;
  line-height: 1.45;
}

.faq-section {
  padding: 20px 0 140px;
}

.faq-list {
  max-width: 870px;
  margin: 58px auto 0;
}

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

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

.faq-list summary {
  min-height: 78px;
  position: relative;
  display: flex;
  align-items: center;
  padding: 22px 54px 22px 4px;
  cursor: pointer;
  font-size: 1.12rem;
  font-weight: 780;
  list-style: none;
}

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

.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 8px;
  color: var(--coral);
  font-size: 1.7rem;
  font-weight: 400;
  transition: transform 180ms ease;
}

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

.faq-list details p {
  max-width: 740px;
  margin: -5px 0 28px;
  padding: 0 54px 0 4px;
  line-height: 1.7;
}

.final-cta {
  min-height: 360px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  margin-bottom: 48px;
  padding: 58px;
  border-radius: var(--radius-xl);
  background: #211a1d;
  box-shadow: var(--shadow);
}

.final-cta::after {
  content: "";
  width: 420px;
  height: 420px;
  position: absolute;
  right: -180px;
  bottom: -250px;
  border-radius: 50%;
  background: var(--coral);
  filter: blur(1px);
  opacity: 0.78;
}

.final-cta > * {
  position: relative;
  z-index: 2;
}

.final-cta .eyebrow,
.final-cta h2,
.final-cta p {
  color: #fff;
}

.final-cta .eyebrow::before {
  background: #fff;
  box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.12);
}

.final-cta p:last-child {
  max-width: 580px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.72);
}

.final-cta .button {
  flex: 0 0 auto;
  background: #fff;
  color: var(--coral-dark);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.24);
}

.site-footer {
  padding: 48px 0 30px;
}

.footer-main {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 28px;
  align-items: center;
  padding-bottom: 34px;
}

.footer-main > p {
  max-width: 430px;
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.5;
}

.footer-main nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
}

.footer-main nav a {
  color: var(--slate);
  font-size: 0.84rem;
  font-weight: 700;
  text-decoration: none;
}

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

.crahooli-credit {
  color: inherit;
  text-decoration: none;
  white-space: nowrap;
  transition: color 180ms ease;
}

.crahooli-credit strong {
  color: var(--slate);
  font-weight: 800;
  transition: color 180ms ease;
}

.crahooli-credit:hover,
.crahooli-credit:hover strong {
  color: var(--coral-dark);
}

/* Legal and support pages */
.legal-hero,
.support-hero {
  width: min(calc(100% - 32px), 900px);
  margin: 0 auto;
  padding: 110px 0 62px;
}

.legal-hero h1,
.support-hero h1 {
  font-size: clamp(3.2rem, 7vw, 6rem);
  line-height: 0.96;
}

.legal-hero > p:last-child,
.support-hero > p:last-of-type {
  max-width: 720px;
  margin: 26px 0 0;
  font-size: 1.12rem;
  line-height: 1.7;
}

.legal-shell,
.support-shell {
  max-width: 900px;
  padding-bottom: 120px;
}

.legal-content,
.support-card {
  padding: clamp(28px, 5vw, 64px);
  border: 1px solid rgba(255, 255, 255, 0.84);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: var(--shadow-small);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.legal-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 54px;
}

.meta-box {
  padding: 17px;
  border-radius: 17px;
  background: var(--coral-wash);
}

.meta-box span,
.meta-box strong {
  display: block;
}

.meta-box span {
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.meta-box strong {
  margin-top: 7px;
  overflow-wrap: anywhere;
  font-size: 0.86rem;
}

.legal-content h2 {
  margin: 48px 0 12px;
  font-size: 1.55rem;
  letter-spacing: -0.025em;
}

.legal-content h2:first-of-type {
  margin-top: 0;
}

.legal-content h3 {
  margin: 28px 0 10px;
  font-size: 1.05rem;
}

.legal-content p,
.legal-content li {
  color: var(--slate);
  line-height: 1.75;
}

.legal-content ul {
  padding-left: 1.25rem;
}

.legal-content a {
  overflow-wrap: anywhere;
}

.support-hero .hero-actions {
  margin-top: 28px;
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.support-card {
  padding: 32px;
}

.support-card-wide {
  grid-column: 1 / -1;
}

.support-card h2,
.support-card h3 {
  margin: 0;
  letter-spacing: -0.025em;
}

.support-card p,
.support-card li {
  line-height: 1.68;
}

.support-card ul {
  margin-bottom: 0;
  padding-left: 1.2rem;
}

.support-email {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 15px;
  font-weight: 800;
  overflow-wrap: anywhere;
}

.legal-page .site-footer,
.support-page .site-footer {
  max-width: 900px;
}

.js [data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 620ms ease, transform 620ms cubic-bezier(0.22, 1, 0.36, 1);
}

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

@media (max-width: 980px) {
  .hero {
    min-height: auto;
  }

  .hero-shell {
    grid-template-columns: 1fr;
    gap: 35px;
    padding-top: 70px;
  }

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

  .hero-product {
    min-height: 690px;
  }

  .hero-card-back {
    right: 8%;
  }

  .floating-reminder {
    left: 10%;
  }

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

  .signal-strip > div:nth-child(2) {
    border-right: 0;
  }

  .signal-strip > div:nth-child(-n+2) {
    border-bottom: 1px solid var(--line);
  }

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

  .feature-large,
  .feature-wide {
    grid-column: span 2;
  }

  .screenshot-gallery {
    grid-template-columns: 1fr;
  }

  .gallery-card {
    min-height: 670px;
  }

  .steps-section {
    grid-template-columns: 1fr;
    gap: 54px;
  }

  .privacy-shell {
    grid-template-columns: auto 1fr;
  }

  .privacy-shell ul {
    grid-column: 2;
  }

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

  .footer-main nav {
    grid-column: 1 / -1;
    justify-content: flex-start;
  }
}

@media (max-width: 760px) {
  .site-header {
    background: rgba(247, 245, 245, 0.88);
  }

  .nav-shell {
    min-height: 68px;
  }

  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    left: 16px;
    right: 16px;
    top: calc(100% + 8px);
    max-height: calc(100svh - 84px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    overflow-y: auto;
    overscroll-behavior: contain;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: var(--shadow);
    -webkit-backdrop-filter: blur(24px);
    backdrop-filter: blur(24px);
  }

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

  .nav-links a {
    min-height: 48px;
    display: flex;
    align-items: center;
    padding: 8px 12px;
    border-bottom: 1px solid var(--line);
  }

  .nav-links > .nav-cta {
    border-bottom: 0;
  }

  .nav-links .language-link {
    width: 100%;
    border: 0;
    border-radius: 0;
    background: transparent;
  }

  .nav-links .language-switcher {
    width: 100%;
    padding: 7px 0;
    border-bottom: 1px solid var(--line);
  }

  .nav-links .language-trigger {
    width: 100%;
    min-height: 48px;
    justify-content: flex-start;
    padding: 8px 12px;
    border: 0;
    border-radius: 14px;
    background: rgba(241, 110, 118, 0.06);
    box-shadow: none;
  }

  .nav-links .language-trigger-label {
    color: var(--muted);
    font-size: 0.72rem;
  }

  .nav-links .language-trigger-name {
    display: block;
    flex: 1;
    font-size: 0.9rem;
    font-weight: 740;
    text-align: left;
  }

  .nav-links .language-menu {
    position: static;
    width: 100%;
    margin-top: 6px;
    padding: 6px;
    border-color: rgba(241, 110, 118, 0.1);
    border-radius: 16px;
    background: rgba(255, 245, 245, 0.82);
    box-shadow: none;
    transform-origin: top center;
  }

  .nav-links .language-option {
    min-height: 46px;
    padding: 8px 10px;
    border: 0;
  }

  .nav-links .nav-cta {
    justify-content: center;
    margin-top: 8px;
  }

  .hero-shell {
    width: min(calc(100% - 40px), var(--max));
    padding: 58px 0 40px;
  }

  .hero-shell > * {
    min-width: 0;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(2.9rem, 13.5vw, 5.1rem);
  }

  .hero-product {
    min-height: 570px;
  }

  .phone-preview {
    width: min(300px, 72vw);
    border-width: 8px;
    border-radius: 46px;
  }

  .hero-card-back {
    width: 230px;
    right: -20px;
    top: 50px;
  }

  .floating-reminder {
    left: -5px;
    bottom: 54px;
  }

  .section {
    padding: 110px 0 100px;
  }

  .section-heading h2,
  .final-cta h2 {
    font-size: clamp(2.65rem, 12vw, 4.4rem);
  }

  .feature-grid,
  .feature-wide {
    grid-template-columns: 1fr;
  }

  .feature-large,
  .feature-wide {
    grid-column: auto;
  }

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

  .showcase-section {
    padding: 100px 0;
  }

  .screenshot-gallery {
    gap: 18px;
  }

  .gallery-card {
    min-height: 620px;
    grid-template-columns: 1fr;
    padding: 32px 28px 0;
  }

  .gallery-copy {
    max-width: 430px;
  }

  .gallery-phone {
    width: min(270px, 78%);
    justify-self: center;
  }

  .steps-section {
    padding: 90px 0 110px;
  }

  .privacy-section {
    padding-bottom: 110px;
  }

  .privacy-shell {
    grid-template-columns: 1fr;
    gap: 26px;
    padding: 34px 28px;
  }

  .privacy-shell ul {
    grid-column: auto;
  }

  .final-cta {
    min-height: 430px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 38px 30px;
  }

  .final-cta .button {
    width: 100%;
  }

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

  .footer-main nav {
    grid-column: auto;
  }

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

  .legal-hero,
  .support-hero {
    padding-top: 80px;
  }

  .legal-meta,
  .support-grid {
    grid-template-columns: 1fr;
  }

  .support-card-wide {
    grid-column: auto;
  }
}

@media (max-width: 520px) {
  .hero h1 {
    font-size: clamp(2.6rem, 12vw, 3.9rem);
    line-height: 0.98;
    letter-spacing: -0.065em;
  }

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

  .hero-actions .button {
    min-width: 0;
    padding-inline: 16px;
    white-space: normal;
    text-align: center;
  }

  .trust-list {
    display: grid;
  }

  .trust-list li {
    text-align: center;
  }

  .hero-product {
    min-height: 520px;
  }

  .phone-preview {
    width: 254px;
  }

  .hero-card-back {
    display: none;
  }

  .floating-reminder {
    left: 0;
    right: 0;
    width: min(310px, 95%);
    margin: auto;
  }

  .signal-strip {
    grid-template-columns: 1fr;
    margin-top: 20px;
  }

  .signal-strip > div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .signal-strip > div:last-child {
    border-bottom: 0;
  }

  .gallery-card {
    min-height: 570px;
  }

  .gallery-phone {
    width: 235px;
  }

  .notification-demo {
    grid-template-columns: auto 1fr;
  }

  .notification-demo time {
    display: none;
  }
}

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

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

  .js [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
