/* WhatToCook marketing site — cream-first, Hostinger-static */
:root {
  --primary: #2f5d50;
  --primary-soft: #e8f0ec;
  --accent: #e8a87c;
  --accent-deep: #d4896a;
  --cream: #f7f4ef;
  --cream-deep: #efe8de;
  --surface: #fffcf8;
  --text: #1c2b27;
  --muted: #5c6b66;
  --line: #d9e3de;
  --shadow: 0 18px 50px rgba(47, 93, 80, 0.12);
  --radius: 20px;
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Manrope", system-ui, sans-serif;
}

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

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

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--cream);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--primary);
}

.skip {
  position: absolute;
  left: -999px;
  top: 0;
}
.skip:focus {
  left: 12px;
  top: 12px;
  z-index: 100;
  background: #fff;
  padding: 8px 12px;
}

/* —— Header —— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(12px);
  background: rgba(247, 244, 239, 0.88);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.site-header.is-scrolled {
  border-bottom-color: var(--line);
  background: rgba(247, 244, 239, 0.96);
}

.header-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 14px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  text-decoration: none;
  color: var(--primary);
  gap: 4px;
}
.brand-mark {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.45rem;
  letter-spacing: 0.04em;
  line-height: 1;
}
.brand-underline {
  width: 2.6rem;
  height: 3px;
  border-radius: 99px;
  background: var(--accent);
  transform-origin: left center;
  animation: underline-draw 1.1s ease 0.2s both;
}

@keyframes underline-draw {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.nav a {
  text-decoration: none;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 500;
}
.nav a:hover {
  color: var(--primary);
}
.lang-pill {
  display: inline-flex;
  align-items: stretch;
  border: 1px solid var(--line);
  border-radius: 999px;
  overflow: hidden;
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1;
  height: 32px;
}
.lang-pill span,
.lang-pill a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  height: 100%;
  text-decoration: none;
  color: var(--muted);
  box-sizing: border-box;
}
.lang-pill .on {
  background: var(--primary);
  color: #fff;
}
.lang-pill .soon {
  opacity: 0.55;
  cursor: default;
}

/* —— Hero —— */
.hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.hero-wash {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 55% at 15% 10%, rgba(232, 240, 236, 0.95), transparent 60%),
    radial-gradient(ellipse 50% 45% at 90% 20%, rgba(232, 168, 124, 0.18), transparent 55%),
    linear-gradient(180deg, var(--cream) 0%, var(--cream-deep) 100%);
  z-index: -2;
}

.bubbles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  overflow: hidden;
}
.bubble {
  position: absolute;
  bottom: -40px;
  border-radius: 50%;
  background: rgba(47, 93, 80, 0.12);
  border: 1.5px solid rgba(47, 93, 80, 0.18);
  animation: rise linear infinite;
}
.bubble.warm {
  background: rgba(232, 168, 124, 0.2);
  border-color: rgba(232, 168, 124, 0.35);
}
.bubble:nth-child(1) {
  left: 8%;
  width: 14px;
  height: 14px;
  animation-duration: 11s;
  animation-delay: 0s;
}
.bubble:nth-child(2) {
  left: 22%;
  width: 8px;
  height: 8px;
  animation-duration: 14s;
  animation-delay: 2s;
}
.bubble:nth-child(3) {
  left: 48%;
  width: 18px;
  height: 18px;
  animation-duration: 12s;
  animation-delay: 1s;
}
.bubble:nth-child(4) {
  left: 68%;
  width: 10px;
  height: 10px;
  animation-duration: 16s;
  animation-delay: 3.5s;
}
.bubble:nth-child(5) {
  left: 82%;
  width: 22px;
  height: 22px;
  animation-duration: 13s;
  animation-delay: 0.8s;
}
.bubble:nth-child(6) {
  left: 35%;
  width: 12px;
  height: 12px;
  animation-duration: 15s;
  animation-delay: 5s;
}

@keyframes rise {
  0% {
    transform: translateY(0) scale(1);
    opacity: 0;
  }
  12% {
    opacity: 0.85;
  }
  100% {
    transform: translateY(-110vh) scale(1.15);
    opacity: 0;
  }
}

.hero-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 48px 22px 64px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}
.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--line);
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 600;
}
.chip.accent {
  background: rgba(232, 168, 124, 0.22);
  border-color: rgba(232, 168, 124, 0.45);
  color: #8a4f2f;
}
.chip .lucide {
  width: 14px;
  height: 14px;
}

.hero h1 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.35rem, 5vw, 3.35rem);
  line-height: 1.08;
  color: var(--primary);
  margin: 0 0 14px;
  max-width: 14ch;
}
.hero-lead {
  margin: 0 0 26px;
  color: var(--muted);
  font-size: 1.08rem;
  max-width: 34ch;
}

.waitlist-block {
  max-width: 400px;
}
.coming-soon-chip {
  display: inline-flex;
  align-items: center;
  margin: 0 0 14px;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #8a4f2f;
  background: rgba(232, 168, 124, 0.22);
  border: 1px solid rgba(232, 168, 124, 0.4);
}
.waitlist-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}
.btn-waitlist {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 0;
  border-radius: 999px;
  padding: 14px 22px;
  font: inherit;
  font-weight: 700;
  font-size: 1rem;
  background: var(--primary);
  color: #fff;
  cursor: pointer;
  box-shadow: 0 10px 28px rgba(47, 93, 80, 0.22);
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}
.btn-waitlist svg {
  width: 18px;
  height: 18px;
  transition: transform 0.25s ease;
}
.btn-waitlist:hover {
  background: #274f44;
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(47, 93, 80, 0.28);
}
.btn-waitlist:hover svg {
  transform: translateX(3px);
}
.btn-waitlist[aria-expanded="true"] {
  background: transparent;
  color: var(--primary);
  box-shadow: none;
  border: 1.5px solid var(--line);
  padding: 12px 20px;
}
.btn-waitlist[aria-expanded="true"]:hover {
  background: var(--primary-soft);
  transform: none;
  box-shadow: none;
}
.btn-waitlist[aria-expanded="true"] svg {
  transform: rotate(90deg);
}

.waitlist-panel {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  margin-top: 0;
  pointer-events: none;
  transition: grid-template-rows 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.35s ease,
    margin-top 0.35s ease;
}
.waitlist-panel.is-open {
  grid-template-rows: 1fr;
  opacity: 1;
  margin-top: 16px;
  pointer-events: auto;
}
.waitlist-panel > .waitlist-form {
  overflow: hidden;
  min-height: 0;
}
.waitlist-form {
  position: relative;
  padding: 4px 2px 0;
}
.waitlist-fields {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-bottom: 14px;
}
.waitlist-form .field label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 6px;
}
.waitlist-form input {
  width: 100%;
  border: 0;
  border-bottom: 1.5px solid var(--line);
  border-radius: 0;
  padding: 10px 2px 12px;
  font: inherit;
  font-size: 1rem;
  background: transparent;
  color: var(--text);
  transition: border-color 0.2s ease;
}
.waitlist-form input::placeholder {
  color: #9aa8a2;
}
.waitlist-form input:focus {
  outline: none;
  border-bottom-color: var(--accent);
}
.btn-waitlist-submit {
  width: 100%;
  border: 0;
  border-radius: 999px;
  padding: 13px 18px;
  font: inherit;
  font-weight: 700;
  background: var(--accent);
  color: #1c2b27;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease;
}
.btn-waitlist-submit:hover {
  background: #f0b892;
  transform: translateY(-1px);
}
.waitlist-note {
  margin: 12px 0 0;
  font-size: 0.78rem;
  color: var(--muted);
}
.hp {
  position: absolute !important;
  left: -9999px !important;
  height: 0 !important;
  width: 0 !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.store-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}
.store-badge {
  display: inline-flex;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.store-badge:hover {
  transform: translateY(-2px);
}
.store-badge img,
.store-badge svg {
  height: 48px;
  width: auto;
}
.store-note {
  margin-top: 14px;
  font-size: 0.82rem;
  color: var(--muted);
}

/* Phone mock — stylized Results (more “idea rich” than empty home) */
.phone-stage {
  display: flex;
  justify-content: center;
  animation: phone-float 5.5s ease-in-out infinite;
}
@keyframes phone-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.phone {
  width: min(290px, 86vw);
  background: #1c2b27;
  border-radius: 36px;
  padding: 12px;
  box-shadow: var(--shadow), 0 0 0 1px rgba(28, 43, 39, 0.2);
  cursor: default;
  user-select: none;
}
.phone-notch {
  width: 96px;
  height: 22px;
  background: #111;
  border-radius: 0 0 14px 14px;
  margin: 0 auto 10px;
}
.phone-screen {
  background: linear-gradient(180deg, #e8f0ec, var(--cream));
  border-radius: 26px;
  padding: 18px 14px 16px;
  min-height: 460px;
  cursor: default;
}
.phone-top {
  font-family: var(--font-display);
  color: var(--primary);
  font-size: 1.15rem;
  margin-bottom: 6px;
}
.phone-sub {
  font-size: 0.72rem;
  color: var(--muted);
  margin-bottom: 12px;
}
.phone-fact {
  background: var(--surface);
  border-radius: 14px;
  padding: 10px 12px;
  font-size: 0.72rem;
  color: var(--muted);
  margin-bottom: 12px;
  border: 1px solid var(--line);
}
.phone-fact strong {
  color: var(--primary);
  display: block;
  margin-bottom: 4px;
  font-size: 0.7rem;
}
.meal {
  background: var(--surface);
  border-radius: 16px;
  padding: 12px;
  margin-bottom: 10px;
  border: 1px solid var(--line);
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 10px;
  align-items: center;
}
.meal-emoji {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-size: 1.25rem;
  background: var(--primary-soft);
}
.meal:nth-child(2) .meal-emoji {
  background: rgba(232, 168, 124, 0.28);
}
.meal-name {
  font-weight: 600;
  font-size: 0.82rem;
  color: var(--text);
  line-height: 1.2;
}
.meal-meta {
  font-size: 0.68rem;
  color: var(--muted);
  line-height: 1.25;
  margin-top: 2px;
}
.phone-cta {
  margin-top: 8px;
  background: var(--primary);
  color: #fff;
  text-align: center;
  border-radius: 14px;
  padding: 12px;
  font-weight: 600;
  font-size: 0.82rem;
}

/* Sections */
.section {
  max-width: 1080px;
  margin: 0 auto;
  padding: 56px 22px;
}
.section-kicker {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-deep);
  margin: 0 0 8px;
}
.section h2 {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  color: var(--primary);
  margin: 0 0 12px;
  line-height: 1.15;
}
.section-lead {
  color: var(--muted);
  max-width: 46ch;
  margin: 0 0 28px;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.problem {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 20px;
}
.problem-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: var(--primary-soft);
  color: var(--primary);
  margin-bottom: 14px;
}
.problem:nth-child(2) .problem-icon {
  background: rgba(232, 168, 124, 0.25);
  color: var(--accent-deep);
}
.problem h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
}
.problem p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.feature-list {
  display: grid;
  gap: 14px;
}
.feature {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  align-items: start;
  padding: 16px 18px;
  border-radius: var(--radius);
  background: linear-gradient(90deg, var(--surface), transparent);
  border: 1px solid var(--line);
}
.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: var(--primary);
  color: #fff;
}
.feature:nth-child(even) .feature-icon {
  background: var(--accent);
  color: var(--text);
}
.feature h3 {
  margin: 0 0 4px;
  font-size: 1.02rem;
}
.feature p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.compare {
  margin-top: 28px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.compare-head {
  padding: 18px 20px 8px;
}
.compare-head h3 {
  margin: 0 0 4px;
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--primary);
}
.compare-head p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}
.compare table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
}
.compare th,
.compare td {
  padding: 12px 16px;
  text-align: left;
  border-top: 1px solid var(--line);
  vertical-align: top;
}
.compare th {
  background: var(--primary-soft);
  color: var(--primary);
  font-weight: 600;
}
.compare th:first-child {
  width: 46%;
}
.compare td:nth-child(2),
.compare th:nth-child(2),
.compare td:nth-child(3),
.compare th:nth-child(3) {
  width: 27%;
  text-align: center;
}
.compare .tick {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--primary-soft);
  color: var(--primary);
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1;
}
.compare .dash {
  color: var(--muted);
  font-size: 1.15rem;
  font-weight: 500;
  letter-spacing: 0.04em;
}

.shots {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.shot {
  background: var(--surface);
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  min-height: 220px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
}
.shot::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 30%, rgba(47, 93, 80, 0.12), transparent 45%),
    radial-gradient(circle at 70% 60%, rgba(232, 168, 124, 0.2), transparent 40%);
}
.shot span {
  position: relative;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary);
}
.shot small {
  position: relative;
  color: var(--muted);
  font-size: 0.78rem;
}

.how-flow {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 12px 10px;
  align-items: stretch;
  width: 100%;
}
.how-step {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px 22px;
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  min-width: 0;
}
.how-step-num {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-weight: 700;
  font-size: 0.92rem;
  margin-bottom: 14px;
  flex-shrink: 0;
}
.how-once {
  border-color: rgba(232, 168, 124, 0.55);
  background: linear-gradient(180deg, rgba(232, 168, 124, 0.14), var(--surface));
  padding-right: 88px;
}
.how-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #8a4f2f;
  background: rgba(232, 168, 124, 0.32);
  border-radius: 999px;
  padding: 4px 9px;
  line-height: 1.2;
}
.how-step h3 {
  margin: 0 0 8px;
  font-size: 1.08rem;
  line-height: 1.3;
}
.how-step p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.5;
}
.how-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  opacity: 0.45;
  align-self: center;
}
.how-arrow svg {
  width: 26px;
  height: 26px;
}

.faq {
  display: grid;
  gap: 10px;
}
details.faq-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 14px 18px;
}
details.faq-item summary {
  cursor: pointer;
  font-weight: 600;
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
}
details.faq-item summary::-webkit-details-marker {
  display: none;
}
details.faq-item summary::after {
  content: "+";
  color: var(--primary);
  font-size: 1.2rem;
  font-weight: 500;
}
details.faq-item[open] summary::after {
  content: "–";
}
details.faq-item p {
  margin: 10px 0 2px;
  color: var(--muted);
  font-size: 0.95rem;
}

.author-wrap {
  max-width: 560px;
  margin: 0 auto;
}
.author-slot {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  border: 0;
  background: transparent;
  padding: 0;
}
.author-photo {
  width: 112px;
  height: 112px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 20%;
  background: var(--primary-soft);
  border: 3px solid rgba(232, 168, 124, 0.55);
}
.author-bubble {
  width: 100%;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 22px 22px 22px 8px;
  padding: 22px 24px;
  box-shadow: 0 10px 28px rgba(47, 93, 80, 0.08);
}
.author-copy {
  color: var(--text);
  font-size: 0.96rem;
  line-height: 1.55;
}
.author-copy p {
  margin: 0 0 12px;
  color: var(--muted);
}
.author-copy p:last-child {
  margin-bottom: 0;
}
.author-copy .hi {
  color: var(--primary);
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin-bottom: 14px;
}
.heart-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.35em;
  height: 1.35em;
  color: #e8a87c;
  vertical-align: -0.22em;
  margin-left: 3px;
  flex-shrink: 0;
}
.heart-icon svg {
  width: 1.35em !important;
  height: 1.35em !important;
  fill: currentColor !important;
  stroke: currentColor !important;
  stroke-width: 1.75 !important;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 28px;
  align-items: stretch;
}
.contact-aside {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  min-height: 100%;
}
.contact-aside p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}
.contact-aside .email-line {
  font-size: 1.05rem;
  color: var(--text);
}
.contact-aside .email-line a {
  font-weight: 600;
}
.contact-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
}
.contact-card label {
  display: block;
  font-size: 0.82rem;
  color: var(--muted);
  margin-bottom: 6px;
  font-weight: 500;
}
.contact-card input,
.contact-card textarea {
  width: 100%;
  margin-bottom: 12px;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--line);
  font: inherit;
  background: #fff;
  color: var(--text);
}
.contact-card textarea {
  min-height: 120px;
  resize: vertical;
}
.contact-card button {
  width: 100%;
  border: 0;
  border-radius: 14px;
  padding: 14px;
  font: inherit;
  font-weight: 600;
  background: var(--primary);
  color: #fff;
  cursor: pointer;
}
.contact-card button:hover {
  filter: brightness(1.05);
}
.form-status {
  margin-top: 10px;
  font-size: 0.88rem;
  color: var(--muted);
  min-height: 1.2em;
}
.form-status.ok {
  color: var(--primary);
}
.form-status.err {
  color: #a33;
}
.mailto-fallback {
  margin-top: 10px;
  font-size: 0.88rem;
}

/* Footer */
.site-footer {
  margin-top: 24px;
  background: var(--primary);
  color: rgba(247, 244, 239, 0.9);
  padding: 48px 22px 32px;
}
.footer-inner {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 40px 48px;
  align-items: start;
}
.footer-brand .brand-mark {
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.04em;
}
.footer-brand .brand-underline {
  display: block;
  width: 2.4rem;
  height: 3px;
  border-radius: 99px;
  background: var(--accent);
  margin: 8px 0 14px;
}
.footer-brand p {
  margin: 0;
  max-width: 34ch;
  font-size: 0.92rem;
  line-height: 1.5;
  color: rgba(247, 244, 239, 0.82);
}
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding-top: 4px;
}
.site-footer .footer-legal {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 22px;
  margin-bottom: 16px;
}
.site-footer .footer-legal a {
  display: inline !important;
  width: auto;
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  margin: 0;
  border-bottom: 2px solid transparent;
  padding-bottom: 2px;
  transition: color 0.15s ease, border-color 0.15s ease;
  line-height: 1.3;
  white-space: nowrap;
}
.site-footer .footer-legal a:hover,
.site-footer .footer-legal a:focus-visible {
  color: var(--accent) !important;
  border-bottom-color: var(--accent);
  text-decoration: none !important;
}
.socials {
  display: flex;
  gap: 12px;
  margin-top: 6px;
}
.socials a {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.12);
  display: grid;
  place-items: center;
  color: #fff;
  text-decoration: none;
}
.socials a:hover {
  background: rgba(255, 255, 255, 0.2);
}
.socials svg {
  width: 18px;
  height: 18px;
}
/* Lucide icons are stroke-based; don't fill them solid */
.socials a svg:not(.icon-fill) {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.socials svg.icon-fill {
  fill: currentColor;
  stroke: none;
}
.footer-bottom {
  max-width: 1080px;
  margin: 28px auto 0;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
}
.love {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: #fff;
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.love .heart-icon {
  color: #e8a87c;
  width: 1.4em;
  height: 1.4em;
  margin-left: 4px;
}
.love .heart-icon svg {
  width: 1.4em !important;
  height: 1.4em !important;
  fill: currentColor !important;
  stroke: currentColor !important;
  stroke-width: 1.75 !important;
}
.footer-meta {
  font-size: 0.8rem;
  opacity: 0.75;
  margin: 0;
}
.footer-stores-label {
  margin: 18px 0 8px;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
}
.footer-waitlist-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 4px;
  padding: 11px 18px;
  border-radius: 999px;
  background: var(--accent);
  color: #1c2b27 !important;
  font-weight: 700;
  font-size: 0.92rem;
  text-decoration: none !important;
  transition: transform 0.15s ease, background 0.15s ease;
}
.footer-waitlist-cta:hover {
  background: #f0b892;
  transform: translateY(-1px);
}
.footer-stores {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-top: 14px;
}
.footer-stores .store-badge img {
  height: 40px;
  width: auto;
  filter: none;
}

@media (max-width: 860px) {
  .hero-inner {
    grid-template-columns: 1fr;
    padding-top: 28px;
    padding-bottom: 40px;
    gap: 28px;
  }
  .hero h1 {
    max-width: none;
  }
  .waitlist-fields {
    grid-template-columns: 1fr;
  }
  .store-row {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
  }
  .store-badge img,
  .store-badge svg {
    height: 44px;
  }
  .problem-grid,
  .shots,
  .contact-grid,
  .footer-inner {
    grid-template-columns: 1fr;
  }
  .how-flow {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .how-arrow {
    transform: rotate(90deg);
    min-height: 20px;
    opacity: 0.4;
  }
  .how-badge {
    top: 12px;
    right: 12px;
  }
  .author-slot {
    align-items: center;
  }
  .compare td:nth-child(2),
  .compare th:nth-child(2),
  .compare td:nth-child(3),
  .compare th:nth-child(3) {
    width: auto;
  }
  .nav .hide-sm {
    display: none;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
  .footer-stores {
    justify-content: flex-start;
  }
}

/* Legal pages */
.legal-page {
  max-width: 720px;
  margin: 0 auto;
  padding: 40px 22px 80px;
}
.legal-page h1 {
  font-family: var(--font-display);
  color: var(--primary);
  font-size: 2rem;
}
.legal-page pre {
  white-space: pre-wrap;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.6;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 22px;
}
