:root {
  --bg: #fff6f8;
  --bg-strong: #ffdee0;
  --surface: rgba(255, 255, 255, 0.72);
  --surface-strong: rgba(255, 255, 255, 0.9);
  --surface-contrast: #2f151e;
  --card-bg: linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(255, 255, 255, 0.62));
  --accent-card-bg: linear-gradient(180deg, rgba(255, 45, 85, 0.12), rgba(255, 255, 255, 0.86));
  --muted-card-bg: linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(255, 222, 224, 0.36));
  --pill-bg: rgba(255, 255, 255, 0.46);
  --control-bg: rgba(255, 255, 255, 0.58);
  --picker-bg: #fffafb;
  --picker-input-bg: #ffffff;
  --picker-row-bg: rgba(255, 45, 85, 0.06);
  --header-bg: rgba(255, 222, 224, 0.9);
  --header-line: rgba(255, 45, 85, 0.08);
  --phone-shell: #32141f;
  --phone-screen-bg: radial-gradient(circle at top right, rgba(255, 45, 85, 0.18), transparent 42%),
    linear-gradient(180deg, #ffdee0 0%, #ffffff 100%);
  --screen-card-bg: rgba(255, 255, 255, 0.7);
  --spotlight-bg: radial-gradient(circle at top, rgba(255, 45, 85, 0.12), transparent 48%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(255, 222, 224, 0.78));
  --text: #14090d;
  --muted: #7b6870;
  --line: rgba(255, 45, 85, 0.15);
  --line-strong: rgba(255, 45, 85, 0.26);
  --accent: #ff2d55;
  --accent-deep: #d81f49;
  --accent-soft: rgba(255, 45, 85, 0.15);
  --accent-wash: rgba(255, 45, 85, 0.08);
  --rose: #ffdee0;
  --gold: #f4c87d;
  --shadow: 0 22px 60px rgba(255, 45, 85, 0.12);
  --shadow-soft: 0 14px 34px rgba(255, 45, 85, 0.1);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: min(1180px, calc(100vw - 32px));
}

body[data-theme="dark"] {
  --bg: #0b0b10;
  --bg-strong: #2a0f1a;
  --surface: rgba(29, 29, 38, 0.72);
  --surface-strong: rgba(29, 29, 38, 0.94);
  --surface-contrast: #fff4f7;
  --card-bg: linear-gradient(180deg, rgba(29, 29, 38, 0.96), rgba(17, 17, 25, 0.9));
  --accent-card-bg: linear-gradient(180deg, rgba(255, 45, 85, 0.2), rgba(29, 29, 38, 0.92));
  --muted-card-bg: linear-gradient(180deg, rgba(29, 29, 38, 0.95), rgba(42, 15, 26, 0.76));
  --pill-bg: rgba(255, 255, 255, 0.07);
  --control-bg: rgba(255, 255, 255, 0.08);
  --picker-bg: #17131a;
  --picker-input-bg: #221a23;
  --picker-row-bg: rgba(255, 255, 255, 0.08);
  --header-bg: rgba(11, 11, 16, 0.86);
  --header-line: rgba(255, 255, 255, 0.08);
  --phone-shell: #08080c;
  --phone-screen-bg: radial-gradient(circle at top right, rgba(255, 45, 85, 0.24), transparent 42%),
    linear-gradient(180deg, #2a0f1a 0%, #111119 100%);
  --screen-card-bg: rgba(255, 255, 255, 0.08);
  --spotlight-bg: radial-gradient(circle at top, rgba(255, 45, 85, 0.18), transparent 48%),
    linear-gradient(180deg, rgba(29, 29, 38, 0.88), rgba(42, 15, 26, 0.64));
  --text: #fff5f8;
  --muted: #cdbfc6;
  --line: rgba(255, 255, 255, 0.11);
  --line-strong: rgba(255, 255, 255, 0.2);
  --accent: #ff2d55;
  --accent-deep: #ff6f91;
  --accent-soft: rgba(255, 45, 85, 0.24);
  --accent-wash: rgba(255, 45, 85, 0.16);
  --rose: #2a0f1a;
  --gold: #f7cf88;
  --shadow: 0 22px 60px rgba(0, 0, 0, 0.34);
  --shadow-soft: 0 14px 34px rgba(0, 0, 0, 0.28);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Space Grotesk", system-ui, sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #ffdee0 0%, #fff7f8 34%, #ffffff 100%);
  transition: color 180ms ease, background 180ms ease;
}

body[data-theme="dark"] {
  background: linear-gradient(180deg, #2a0f1a 0%, #0b0b10 52%, #0b0b10 100%);
}

.page-noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.12;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 22px 22px;
  mask-image: radial-gradient(circle at center, black 45%, transparent 100%);
}

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

.container {
  width: var(--container);
  margin: 0 auto;
}

.section {
  padding: 44px 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  padding: 18px 0;
  backdrop-filter: blur(14px);
  background: var(--header-bg);
  border-bottom: 1px solid var(--header-line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 1.08rem;
  font-weight: 700;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  object-fit: cover;
  box-shadow: var(--shadow-soft);
}

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

.lang-switch {
  position: relative;
}

body.lang-sheet-open {
  overflow: hidden;
}

body.lang-sheet-open .site-header {
  backdrop-filter: none;
}

.header-social-link,
.theme-toggle,
.lang-toggle,
.legal-return {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border: 1px solid var(--line);
  background: var(--control-bg);
  color: var(--text);
  font: inherit;
  font-weight: 700;
  box-shadow: var(--shadow-soft);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease;
}

.header-social-link,
.theme-toggle {
  width: 46px;
  height: 46px;
  padding: 0;
  border-radius: 999px;
}

.header-social-link:hover,
.theme-toggle:hover,
.lang-toggle:hover,
.legal-return:hover {
  transform: translateY(-1px);
  border-color: var(--line-strong);
}

.header-social-icon {
  display: block;
  width: 20px;
  height: 20px;
}

.theme-toggle {
  cursor: pointer;
}

.theme-toggle-icon {
  line-height: 1;
  font-size: 1.08rem;
}

.lang-toggle {
  gap: 8px;
  padding: 0 14px;
  border-radius: 999px;
  cursor: pointer;
  opacity: 1;
}

.lang-toggle:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.lang-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  width: min(320px, calc(100vw - 32px));
  max-height: min(520px, calc(100dvh - 104px));
  display: none;
  gap: 6px;
  padding: 8px;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--picker-bg);
  box-shadow: 0 24px 70px rgba(47, 21, 30, 0.22);
  z-index: 30;
  scrollbar-width: thin;
  scrollbar-color: var(--line-strong) transparent;
}

.lang-switch.is-open .lang-menu {
  display: grid;
}

.lang-menu-grabber {
  display: none;
}

.lang-sheet-header {
  display: none;
}

.lang-search-wrap {
  position: sticky;
  top: -8px;
  z-index: 1;
  margin: -8px -8px 2px;
  padding: 8px;
  background: var(--picker-bg);
}

.lang-search {
  width: 100%;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  appearance: none;
  background: var(--picker-input-bg);
  color: var(--text);
  font: inherit;
  font-size: 0.92rem;
  outline: none;
}

.lang-search::placeholder {
  color: var(--muted);
}

.lang-search:focus {
  border-color: var(--line-strong);
  box-shadow: 0 0 0 3px var(--accent-wash);
}

.lang-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid transparent;
  border-radius: 14px;
  color: var(--text);
  font-size: 0.92rem;
  outline: none;
}

.lang-option:hover,
.lang-option:focus-visible {
  background: var(--picker-row-bg);
}

.lang-option:focus-visible {
  border-color: var(--line-strong);
  box-shadow: 0 0 0 3px var(--accent-wash);
}

.lang-option[hidden] {
  display: none;
}

.lang-option-main {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.lang-option-check {
  opacity: 0;
  color: var(--accent);
  font-weight: 700;
}

.lang-option.is-active {
  border-color: var(--line-strong);
  background: var(--picker-row-bg);
  font-weight: 700;
}

.lang-option.is-active .lang-option-check {
  opacity: 1;
}

.lang-empty {
  margin: 6px 4px 8px;
  padding: 14px 12px;
  color: var(--muted);
  font-size: 0.92rem;
  text-align: center;
}

.lang-toggle-icon {
  color: var(--accent-deep);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
}

.lang-toggle-text {
  font-size: 0.9rem;
}

.legal-return {
  padding: 0 16px;
  border-radius: 999px;
  font-size: 0.92rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.96rem;
  font-weight: 700;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  color: white;
  background: linear-gradient(135deg, var(--accent) 0%, #ff5d7a 100%);
  box-shadow: 0 16px 30px rgba(255, 45, 85, 0.24);
}

.btn-secondary,
.btn-ghost {
  color: var(--text);
  border-color: var(--line);
  background: var(--control-bg);
}

.btn-large {
  min-height: 54px;
  padding: 0 22px;
}

.hero {
  padding-top: 42px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  gap: 34px;
  align-items: start;
}

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

.hero-copy h1,
.section-heading h2,
.benefit-copy h2,
.fit-card h2,
.start-copy h2 {
  margin: 0;
  font-family: "Fraunces", Georgia, serif;
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: 0;
}

.hero-copy h1 {
  font-size: 5.7rem;
  max-width: 11ch;
}

.hero-statement {
  max-width: 13ch;
  margin: 14px 0 0;
  font-family: "Fraunces", Georgia, serif;
  font-size: 3.9rem;
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: 0;
  color: var(--accent-deep);
}

.hero-copy h1 span {
  color: var(--accent-deep);
}

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

.lead,
.supporting-copy,
.section-intro,
.scene-copy p,
.problem-card p,
.step-copy,
.step-benefit,
.benefit-card p,
.spotlight-copy p,
.shot-copy,
.shot-meta,
.start-copy p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.65;
}

.lead {
  max-width: 56ch;
  margin: 26px 0 0;
}

.supporting-copy {
  max-width: 52ch;
  margin: 18px 0 0;
}

.hero-actions-large {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 28px;
}

.store-actions {
  gap: 16px;
}

.app-store-badge-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 13px;
  transition:
    transform 180ms ease,
    filter 180ms ease;
}

.app-store-badge-link:hover {
  transform: translateY(-1px);
  filter: saturate(1.08);
}

.app-store-badge {
  display: block;
  width: 180px;
  height: auto;
}

.microcopy {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 0.93rem;
}

.proof-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.proof-pills li,
.trust-row span {
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--pill-bg);
  color: var(--text);
  font-size: 0.9rem;
}

.scene-card,
.problem-card,
.step-card,
.benefit-card,
.spotlight-card,
.quote-card,
.shot-card,
.fit-card,
.pricing-card,
.start-card {
  border: 1px solid var(--line);
  background: var(--card-bg);
  box-shadow: var(--shadow);
}

.scene-card {
  position: relative;
  overflow: hidden;
  padding: 28px;
  border-radius: var(--radius-xl);
}

.scene-card::after {
  content: "";
  position: absolute;
  inset: auto -40px -60px auto;
  width: 180px;
  height: 180px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255, 45, 85, 0.24), transparent 68%);
}

.scene-copy {
  max-width: 46ch;
}

.scene-label,
.scene-copy h2,
.note-card-label,
.screen-title,
.screen-card-title,
.card-index,
.spotlight-tag,
.shot-number,
.step-badge {
  margin: 0;
}

.scene-label,
.note-card-label,
.spotlight-tag,
.shot-number {
  color: var(--accent-deep);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.spotlight-tag {
  display: none;
}

.scene-copy h2 {
  margin-top: 12px;
  font-size: clamp(1.5rem, 2.8vw, 2.2rem);
  line-height: 1.08;
}

.hero-stack {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 320px) minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  margin-top: 28px;
}

.hero-photo-card {
  overflow: hidden;
  margin: 28px 0 0;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: var(--surface-strong);
  box-shadow: 0 28px 70px rgba(255, 45, 85, 0.18);
}

.hero-photo-card::after {
  content: none;
}

.hero-photo-card img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.hero-photo-card figcaption {
  margin: 0;
  padding: 14px 18px 16px;
  border-top: 1px solid var(--line);
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.35;
}

.hero-proof-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 16px;
}

.note-card {
  padding: 18px;
  border-radius: 22px;
  background: var(--surface-strong);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.note-card strong {
  display: block;
  margin-top: 10px;
  font-size: 1rem;
  line-height: 1.45;
}

.note-card-accent {
  background: var(--accent-card-bg);
}

.phone-mock {
  position: relative;
  padding: 14px;
  border-radius: 34px;
  background: var(--phone-shell);
  box-shadow: 0 18px 48px rgba(255, 45, 85, 0.24);
}

.phone-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 8px 10px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.74rem;
}

.phone-island {
  width: 80px;
  height: 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
}

.phone-screen {
  min-height: 470px;
  padding: 24px 18px 20px;
  border-radius: 24px;
  background: var(--phone-screen-bg);
}

.screen-title {
  font-size: 1.55rem;
  font-weight: 700;
}

.screen-card {
  margin-top: 22px;
  padding: 18px;
  border-radius: 20px;
  background: var(--screen-card-bg);
  box-shadow: var(--shadow-soft);
}

.screen-card-title {
  font-size: 1.05rem;
  font-weight: 700;
}

.screen-card-copy {
  margin: 8px 0 0;
  color: var(--muted);
}

.screen-action {
  margin-top: 24px;
  display: grid;
  place-items: center;
  min-height: 58px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), #ff5d7a);
  color: white;
  font-weight: 700;
  box-shadow: 0 14px 28px rgba(255, 45, 85, 0.24);
}

.screen-meter {
  margin-top: 22px;
  display: flex;
  justify-content: space-between;
  gap: 10px;
  color: var(--muted);
  font-size: 0.92rem;
}

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

.section-heading h2,
.benefit-copy h2,
.fit-card h2,
.start-copy h2 {
  font-size: 3.35rem;
}

.section-intro {
  margin: 18px 0 0;
  max-width: 58ch;
}

.problem-grid,
.steps-grid,
.benefit-grid,
.shots-grid {
  display: grid;
  gap: 18px;
}

.problem-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 28px;
}

.problem-card,
.step-card,
.benefit-card,
.shot-card {
  padding: 24px;
  border-radius: var(--radius-lg);
}

.card-index {
  color: var(--accent-deep);
  font-size: 0.86rem;
  font-weight: 700;
}

.problem-card h3,
.step-card h3,
.benefit-card h3,
.spotlight-copy h3,
.shot-card h3,
.quote-card p,
.fit-card ul,
.start-copy h2 {
  margin-top: 12px;
}

.problem-card h3,
.step-card h3,
.benefit-card h3,
.spotlight-copy h3,
.shot-card h3 {
  font-size: 1.4rem;
  line-height: 1.18;
}

.steps-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 28px;
}

.step-badge {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  color: white;
  background: linear-gradient(135deg, var(--accent), #ff5d7a);
  box-shadow: var(--shadow-soft);
  font-weight: 700;
}

.step-benefit {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.benefit-section {
  overflow: hidden;
}

.app-proof-section {
  overflow: hidden;
}

.app-proof-layout {
  display: grid;
  gap: 28px;
}

.screenshots-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  align-items: start;
}

.screenshot-card {
  margin: 0;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background:
    radial-gradient(circle at top, var(--accent-wash), transparent 42%),
    var(--card-bg);
  box-shadow: var(--shadow);
}

.screenshot-card img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 22px;
  background: var(--phone-shell);
  box-shadow: var(--shadow-soft);
}

.screenshot-card figcaption {
  padding: 12px 6px 2px;
  color: var(--text);
  font-size: 0.92rem;
  font-weight: 700;
  text-align: center;
}

.benefit-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: 20px;
  align-items: start;
}

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

.benefit-card {
  min-height: 220px;
  background:
    radial-gradient(circle at top right, var(--accent-wash), transparent 40%),
    var(--card-bg);
}

.spotlight-list {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

.spotlight-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 240px;
  gap: 18px;
  padding: 24px;
  border-radius: var(--radius-lg);
}

.spotlight-card-photo {
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 1.18fr);
  align-items: center;
}

.spotlight-card-photo:nth-child(even) {
  grid-template-columns: minmax(360px, 1.18fr) minmax(0, 0.82fr);
}

.spotlight-card-photo:nth-child(even) .spotlight-copy {
  order: 2;
}

.spotlight-card-photo:nth-child(even) .spotlight-photo {
  order: 1;
}

.spotlight-visual {
  display: grid;
  place-items: center;
  padding: 22px;
  border-radius: 22px;
  background: var(--spotlight-bg);
  border: 1px solid var(--line);
}

.mini-phone {
  width: 100%;
  padding: 20px 16px;
  border-radius: 24px;
  background: var(--phone-shell);
  color: white;
  box-shadow: 0 18px 32px rgba(255, 45, 85, 0.2);
}

.mini-phone span {
  display: block;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.8rem;
}

.mini-phone strong {
  display: block;
  margin-top: 16px;
  font-size: 1.05rem;
  line-height: 1.35;
}

.spotlight-photo {
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: var(--surface-strong);
  box-shadow: var(--shadow);
}

.spotlight-photo::after {
  content: none;
}

.spotlight-photo img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.spotlight-photo figcaption {
  margin: 0;
  padding: 13px 16px 15px;
  border-top: 1px solid var(--line);
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.35;
}

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

.quote-grid .section-heading {
  grid-column: 1 / -1;
}

.quote-card {
  margin: 0;
  padding: 30px;
  border-radius: var(--radius-lg);
}

.rating-stars {
  margin-bottom: 14px;
  color: #f6b400;
  font-size: 1.08rem;
  letter-spacing: 0.08em;
  line-height: 1;
  text-shadow: 0 2px 10px rgba(246, 180, 0, 0.25);
}

.quote-card p {
  font-size: 1.32rem;
  line-height: 1.45;
}

.quote-card footer {
  margin-top: 18px;
  color: var(--muted);
  font-size: 0.95rem;
  font-style: normal;
}

.shots-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 28px;
}

.shot-card {
  min-height: 290px;
}

.shot-meta {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

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

.fit-card {
  padding: 28px;
  border-radius: var(--radius-lg);
}

.fit-card ul {
  padding-left: 22px;
  color: var(--muted);
  line-height: 1.8;
}

.fit-card-muted {
  background: var(--muted-card-bg);
}

.pricing-card {
  display: grid;
  gap: 24px;
  padding: 34px;
  border-radius: var(--radius-xl);
}

.pricing-copy h2 {
  margin: 10px 0 0;
  font-size: 2.85rem;
}

.pricing-copy p:not(.eyebrow) {
  max-width: 54ch;
  color: var(--muted);
}

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

.price-card {
  position: relative;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface-strong);
}

.price-card-highlight {
  border: 2px solid var(--accent);
  background: var(--accent-card-bg);
  box-shadow: 0 24px 60px rgba(236, 64, 122, 0.22);
}

.price-badge,
.price-label,
.price-amount,
.price-note {
  margin: 0;
}

.price-badge {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 14px;
  padding: 7px 11px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.price-label {
  color: var(--accent-deep);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.price-amount {
  margin-top: 12px;
  font-size: clamp(2.1rem, 5vw, 3.1rem);
  font-weight: 700;
  line-height: 1;
}

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

.price-note {
  margin-top: 14px;
  color: var(--muted);
}

.start-card {
  padding: 34px;
  border-radius: var(--radius-xl);
}

.start-section .start-card {
  display: grid;
  gap: 26px;
}

.start-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
}

.start-note {
  margin: 0;
  max-width: 42ch;
  color: var(--muted);
}

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

.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: 22px;
  align-items: start;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--card-bg);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 20px 22px;
  color: var(--text);
  font-size: 1.05rem;
  font-weight: 700;
}

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

.faq-item summary::after {
  content: "+";
  float: right;
  color: var(--accent-deep);
  font-size: 1.25rem;
  line-height: 1;
}

.faq-item[open] summary::after {
  content: "-";
}

.faq-item p {
  margin: 0;
  padding: 0 22px 20px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.65;
}

.contact-section {
  padding-top: 18px;
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.48fr);
  gap: 24px;
  align-items: center;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(135deg, var(--surface-strong), transparent 72%),
    radial-gradient(circle at right, var(--accent-wash), transparent 42%),
    var(--card-bg);
  box-shadow: var(--shadow);
}

.contact-copy {
  max-width: 58ch;
}

.contact-copy h2 {
  margin: 10px 0 0;
  font-size: clamp(2rem, 4vw, 3.05rem);
  line-height: 1.02;
}

.contact-copy p {
  margin: 16px 0 0;
  color: var(--muted);
}

.contact-action {
  display: grid;
  gap: 12px;
  justify-items: stretch;
}

.contact-action p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  text-align: center;
}

.contact-mail {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 74px;
  padding: 14px 16px;
  border: 1px solid var(--line-strong);
  border-radius: 24px;
  background: var(--surface-strong);
  box-shadow: var(--shadow-soft);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.contact-mail:hover {
  transform: translateY(-2px);
  border-color: var(--accent);
  box-shadow: 0 18px 38px rgba(255, 45, 85, 0.18);
}

.contact-mail-icon {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
  border-radius: 16px;
  color: white;
  background: linear-gradient(135deg, var(--accent), #ff6f91);
  font-weight: 700;
  box-shadow: var(--shadow-soft);
}

.contact-mail-label,
.contact-mail-address {
  display: block;
}

.contact-mail-label {
  color: var(--text);
  font-weight: 700;
}

.contact-mail-address {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.94rem;
}

.site-footer {
  padding: 34px 0 44px;
  color: var(--muted);
  font-size: 0.95rem;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: var(--text);
  font-weight: 700;
  border-bottom: 1px solid var(--line-strong);
}

.site-footer a:hover {
  color: var(--accent-deep);
}

.legal-page {
  padding: 42px 0 74px;
}

.legal-article {
  max-width: 900px;
  margin: 0 auto;
  padding: 38px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: var(--card-bg);
  box-shadow: var(--shadow);
}

.legal-article h1 {
  margin: 0 0 24px;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(2.4rem, 6vw, 4.4rem);
  line-height: 0.98;
}

.legal-article h2 {
  margin: 0 0 12px;
  color: var(--text);
  font-size: 1.18rem;
  line-height: 1.25;
}

.legal-article p,
.legal-article li {
  color: var(--muted);
  line-height: 1.72;
}

.legal-article a {
  color: var(--accent-deep);
  font-weight: 700;
}

.legal-section {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.legal-section:first-of-type {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}

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

@supports (animation-timeline: view()) {
  .reveal {
    animation: reveal-in both;
    animation-timeline: view();
    animation-range: entry 0% cover 24%;
  }
}

@keyframes reveal-in {
  from {
    opacity: 0.001;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1100px) {
  .hero-copy h1 {
    font-size: 4.6rem;
  }

  .hero-statement {
    font-size: 3.1rem;
  }

  .section-heading h2,
  .benefit-copy h2,
  .fit-card h2,
  .start-copy h2 {
    font-size: 2.85rem;
  }

  .hero-grid,
  .benefit-layout,
  .spotlight-card {
    grid-template-columns: 1fr;
  }

  .spotlight-card-photo {
    grid-template-columns: 1fr;
  }

  .spotlight-card-photo:nth-child(even) {
    grid-template-columns: 1fr;
  }

  .spotlight-card-photo:nth-child(even) .spotlight-copy,
  .spotlight-card-photo:nth-child(even) .spotlight-photo {
    order: initial;
  }

  .hero-stack,
  .hero-proof-row {
    grid-template-columns: 1fr;
  }

  .problem-grid,
  .steps-grid,
  .benefit-grid,
  .screenshots-grid,
  .pricing-grid,
  .quote-grid,
  .shots-grid,
  .fit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px), (hover: none) and (pointer: coarse) {
  .lang-switch.is-open::before {
    content: "";
    position: fixed;
    inset: 0;
    min-height: 100dvh;
    z-index: 998;
    background: rgba(20, 9, 13, 0.38);
    backdrop-filter: blur(14px) saturate(1.08);
  }

  .lang-menu {
    --lang-sheet-top: max(10px, env(safe-area-inset-top));
    --lang-sheet-right: max(10px, env(safe-area-inset-right));
    --lang-sheet-bottom: max(10px, env(safe-area-inset-bottom));
    --lang-sheet-left: max(10px, env(safe-area-inset-left));

    position: fixed;
    top: var(--lang-sheet-top);
    right: var(--lang-sheet-right);
    bottom: var(--lang-sheet-bottom);
    left: var(--lang-sheet-left);
    z-index: 999;
    width: auto;
    height: calc(100dvh - var(--lang-sheet-top) - var(--lang-sheet-bottom));
    max-height: calc(100dvh - var(--lang-sheet-top) - var(--lang-sheet-bottom));
    align-content: start;
    gap: 8px;
    padding: 14px 14px 16px;
    border-radius: 28px;
    background: var(--picker-bg);
    background: color-mix(in srgb, var(--picker-bg) 96%, transparent);
    box-shadow: 0 28px 90px rgba(20, 9, 13, 0.32);
  }

  .lang-menu-grabber {
    display: block;
    width: 42px;
    height: 5px;
    margin: 0 auto 4px;
    border-radius: 999px;
    background: var(--line-strong);
  }

  .lang-sheet-header {
    display: flex;
    position: sticky;
    top: -14px;
    z-index: 3;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin: -4px -2px 2px;
    padding: 8px 2px 12px;
    background: var(--picker-bg);
    background: color-mix(in srgb, var(--picker-bg) 96%, transparent);
  }

  .lang-sheet-title {
    margin: 0;
    color: var(--text);
    font-size: 1rem;
    font-weight: 800;
  }

  .lang-sheet-close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border: 1px solid var(--line);
    border-radius: 999px;
    appearance: none;
    background: var(--control-bg);
    color: var(--text);
    font: inherit;
    font-size: 1.35rem;
    line-height: 1;
    cursor: pointer;
  }

  .lang-search-wrap {
    top: 44px;
    z-index: 2;
    margin: 0 0 6px;
    padding: 4px 0 10px;
    border-bottom: 1px solid var(--line);
    background: var(--picker-bg);
    background: color-mix(in srgb, var(--picker-bg) 96%, transparent);
  }

  .lang-search {
    min-height: 48px;
    border-radius: 18px;
    font-size: 1rem;
  }

  .lang-option {
    min-height: 50px;
    padding: 12px 14px;
    font-size: 1rem;
  }
}

@media (max-width: 760px) {
  .section {
    padding: 34px 0;
  }

  .site-header {
    padding: calc(10px + env(safe-area-inset-top)) 0 10px;
  }

  .header-inner {
    align-items: center;
    flex-direction: row;
  }

  .header-actions {
    align-items: center;
    flex-direction: row;
    gap: 7px;
  }

  .header-actions .btn-secondary {
    display: none;
  }

  .header-actions .btn-primary {
    display: none;
  }

  .header-social-link,
  .theme-toggle,
  .lang-toggle {
    width: 42px;
    height: 42px;
    min-height: 42px;
    padding: 0;
  }

  .lang-toggle-text,
  .legal-return {
    display: none;
  }

  .brand {
    gap: 9px;
    font-size: 1rem;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
    border-radius: 12px;
  }

  .hero-actions-large,
  .start-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions-large .btn,
  .start-actions .btn {
    width: 100%;
  }

  .app-store-badge-link {
    width: 100%;
  }

  .app-store-badge {
    width: min(220px, 100%);
  }

  .hero {
    padding-top: 28px;
  }

  .hero-copy h1 {
    font-size: 3.18rem;
    max-width: 100%;
  }

  .hero-statement {
    max-width: 100%;
    font-size: 2.75rem;
  }

  .phone-screen {
    min-height: 380px;
  }

  .problem-grid,
  .steps-grid,
  .benefit-grid,
  .screenshots-grid,
  .pricing-grid,
  .quote-grid,
  .shots-grid,
  .fit-grid {
    grid-template-columns: 1fr;
  }

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

  .contact-panel {
    grid-template-columns: 1fr;
    padding: 22px;
  }

  .contact-action p {
    text-align: left;
  }

  .screenshot-card {
    max-width: 310px;
    margin: 0 auto;
  }

  .spotlight-card,
  .start-card,
  .scene-card,
  .problem-card,
  .step-card,
  .benefit-card,
  .quote-card,
  .shot-card,
  .fit-card {
    padding: 22px;
  }

  .section-heading h2,
  .benefit-copy h2,
  .fit-card h2,
  .start-copy h2 {
    font-size: 2.2rem;
  }

  .proof-pills li,
  .trust-row span {
    width: 100%;
    text-align: center;
  }

  .legal-article {
    padding: 24px;
  }

  .site-footer {
    padding-bottom: 34px;
    text-align: center;
  }
}
