:root {
  --bg: #f6f1eb;
  --surface: rgba(255, 251, 246, 0.82);
  --surface-strong: #fffaf5;
  --line: #e8ddd4;
  --text: #18131c;
  --muted: #685c45;
  --accent: #c8962d;
  --accent-deep: #8d6518;
  --plum: #6a4e1b;
  --bronze: #b8862a;
  --ink: #2a2431;
  --soft: #efe5dd;
  --shadow: 0 32px 80px rgba(83, 58, 18, 0.14);
  --radius-xl: 36px;
  --radius-lg: 28px;
  --radius-md: 20px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 10% 12%, rgba(236, 198, 124, 0.34), transparent 24%),
    radial-gradient(circle at 88% 14%, rgba(216, 173, 92, 0.28), transparent 26%),
    linear-gradient(180deg, #fffaf1 0%, #f8f0df 48%, #f2e6cd 100%);
}

a { color: inherit; text-decoration: none; }
img, video { display: block; max-width: 100%; }

.page-shell, .legal-shell {
  width: min(1240px, calc(100vw - 48px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 12px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin: 18px 0 28px;
  padding: 14px 18px;
  background: rgba(255, 251, 246, 0.8);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(232, 221, 212, 0.95);
  border-radius: 999px;
  box-shadow: 0 10px 30px rgba(67, 42, 54, 0.08);
}

.site-header--minimal {
  width: fit-content;
  justify-content: flex-start;
  padding-right: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: "Sora", sans-serif;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 10px;
}

.site-nav, .header-actions, .hero-badges, .footer-links, .hero-cta-row {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.site-nav a, .ghost-link {
  color: var(--muted);
  font-weight: 600;
}

.primary-link, .button-primary, .button-secondary, .store-card {
  border-radius: 999px;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.primary-link {
  padding: 12px 18px;
  color: #fff;
  background: linear-gradient(135deg, var(--accent) 0%, #d9ae55 100%);
  box-shadow: 0 16px 36px rgba(141, 101, 24, 0.2);
}

.button-primary {
  padding: 16px 24px;
  background: linear-gradient(135deg, var(--accent-deep) 0%, var(--accent) 100%);
  color: #fff;
  box-shadow: 0 18px 44px rgba(141, 101, 24, 0.2);
}

.button-secondary {
  padding: 16px 24px;
  background: rgba(255, 251, 246, 0.76);
  color: var(--plum);
  border: 1px solid rgba(141, 101, 24, 0.2);
}

.primary-link:hover, .button-primary:hover, .button-secondary:hover, .store-card:hover {
  transform: translateY(-1px);
}

.hero {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 46px;
  align-items: center;
  padding: 30px 0 88px;
}

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

.eyebrow {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--accent-deep);
  font-family: "Sora", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow.small { margin-bottom: 10px; font-size: 12px; }

h1, h2, h3, h4 {
  margin: 0;
  font-family: "Sora", sans-serif;
  letter-spacing: -0.05em;
}

h1 {
  font-size: clamp(46px, 5.9vw, 76px);
  line-height: 0.98;
}

h2 { font-size: clamp(32px, 4vw, 52px); line-height: 1.02; }
h3 { font-size: clamp(26px, 3vw, 34px); line-height: 1.08; }

.hero-text, .section-heading p, .feature-copy p, .cta-copy p, .faq-list p, .legal-card p, .legal-card li {
  color: var(--muted);
  font-size: 19px;
  line-height: 1.72;
}

.hero-badges {
  padding: 0;
  margin: 26px 0 0;
  list-style: none;
}

.hero-badges li {
  padding: 11px 16px;
  border-radius: 999px;
  background: rgba(255, 251, 246, 0.82);
  border: 1px solid rgba(141, 101, 24, 0.16);
  color: #5e5264;
  font-weight: 700;
}

.hero-visual {
  position: relative;
  min-height: 720px;
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  max-width: none;
  margin-left: auto;
  padding-block: 8px 24px;
}

.phone {
  position: relative;
  width: min(100%, 386px);
  margin-left: auto;
  padding: 22px;
  border-radius: 36px;
  background: rgba(255, 250, 245, 0.88);
  border: 1px solid rgba(232, 221, 212, 0.95);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.phone-glow {
  position: absolute;
  inset: 18px;
  background: radial-gradient(circle at top, rgba(182, 132, 146, 0.18), transparent 60%);
  filter: blur(22px);
  pointer-events: none;
}

.phone-topline {
  width: 94px;
  height: 7px;
  border-radius: 999px;
  margin: 0 auto 24px;
  background: rgba(141, 101, 24, 0.16);
}

.mini-date, .section-tag {
  color: #8b7d8d;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.mini-date { font-size: 13px; margin-bottom: 18px; }
.hello { font-family: "Sora", sans-serif; font-size: 32px; margin-bottom: 4px; }
.hello-sub { color: #8b7d8d; font-size: 22px; margin-bottom: 22px; }

.hero-screen {
  width: min(100%, 272px);
  margin: 0 auto 14px;
}

.device-shell {
  position: relative;
  overflow: hidden;
  padding: 10px;
  border-radius: 38px;
  background:
    linear-gradient(145deg, #58515c 0%, #28222d 22%, #110e15 58%, #403947 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    inset 0 -2px 0 rgba(0, 0, 0, 0.26),
    0 18px 36px rgba(24, 19, 28, 0.18),
    0 30px 68px rgba(24, 19, 28, 0.2);
  transform-style: preserve-3d;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.device-shell::before,
.device-shell::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.device-shell::before {
  inset: 3px;
  border-radius: 34px;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.18), transparent 16%, transparent 84%, rgba(255, 255, 255, 0.08)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 24%, transparent 76%, rgba(0, 0, 0, 0.12));
  opacity: 0.85;
}

.device-shell::after {
  top: 14px;
  left: -28%;
  width: 56%;
  height: 170%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.02) 42%, transparent 72%);
  transform: rotate(18deg);
  opacity: 0.34;
}

.device-shell--mini {
  width: min(100%, 272px);
  margin: 0 auto;
}

.device-shell--feature {
  width: min(100%, 248px);
}

.device-shell--slider {
  width: min(100%, 194px);
  margin: 8px auto 0;
}

.device-shell--wide {
  width: min(100%, 216px);
}

.device-notch {
  position: absolute;
  top: 8px;
  left: 50%;
  z-index: 2;
  width: 34%;
  height: 16px;
  border-radius: 0 0 14px 14px;
  background: #09070b;
  transform: translateX(-50%);
}

.device-screen {
  overflow: hidden;
  border-radius: 30px;
  background: #f8f5f1;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.42),
    inset 0 -1px 0 rgba(24, 19, 28, 0.06);
}

.device-screen img {
  display: block;
  width: 100%;
  height: auto;
}

.section-tag { font-weight: 700; font-size: 13px; margin: 18px 0 14px; }

.entry-card {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 18px;
  align-items: center;
  margin-bottom: 14px;
  padding: 18px;
  border-radius: 28px;
  background: rgba(255, 250, 245, 0.92);
  border: 1px solid rgba(232, 221, 212, 0.95);
}

.entry-card strong { display: block; font-size: 28px; margin-bottom: 4px; }
.entry-card span { color: var(--muted); font-size: 16px; line-height: 1.5; }

.entry-icon {
  width: 72px;
  height: 72px;
  border-radius: 22px;
  display: grid;
  place-items: center;
  font-size: 28px;
  font-weight: 800;
}

.plum { background: rgba(141, 101, 24, 0.12); color: var(--accent-deep); }
.bronze { background: rgba(175, 122, 81, 0.16); color: var(--bronze); }
.ink { background: rgba(42, 36, 49, 0.1); color: var(--ink); }

.story-card {
  position: absolute;
  left: 0;
  bottom: 28px;
  width: min(248px, 62%);
  padding: 16px;
  border-radius: 24px;
  background: rgba(255, 250, 245, 0.84);
  border: 1px solid rgba(232, 221, 212, 0.95);
  box-shadow: 0 24px 60px rgba(67, 42, 54, 0.1);
}

.story-card strong {
  display: block;
  font-size: 18px;
  margin-bottom: 6px;
  font-family: "Sora", sans-serif;
}

.story-card p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.55; }

.hero-side-card {
  position: absolute;
  z-index: 2;
  width: min(176px, 34%);
  padding: 12px;
  border-radius: 18px;
  background: rgba(255, 250, 245, 0.8);
  border: 1px solid rgba(232, 221, 212, 0.95);
  box-shadow: 0 18px 38px rgba(67, 42, 54, 0.08);
  backdrop-filter: blur(14px);
}

.hero-side-card--top {
  top: 22px;
  left: 6px;
}

.hero-side-card--bottom {
  right: 0;
  bottom: 44px;
}

.hero-side-card strong {
  display: block;
  margin-bottom: 6px;
  font-family: "Sora", sans-serif;
  font-size: 15px;
  line-height: 1.16;
}

.hero-side-card p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

section { padding: 34px 0 82px; }
.section-heading { max-width: 760px; margin-bottom: 34px; }
.section-heading.narrow { max-width: 720px; }

.flow-section {
  position: relative;
  z-index: 0;
}

.flow-section::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 40px;
  background: linear-gradient(180deg, rgba(255, 252, 248, 0.42) 0%, rgba(255, 252, 248, 0.14) 100%);
  pointer-events: none;
  z-index: -1;
}

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

.flow-card {
  padding: 24px;
  border-radius: var(--radius-lg);
  background: rgba(255, 250, 245, 0.86);
  border: 1px solid rgba(232, 221, 212, 0.95);
  box-shadow: 0 16px 38px rgba(67, 42, 54, 0.06);
  display: grid;
  gap: 10px;
}

.flow-card__index {
  color: var(--accent-deep);
  font-family: "Sora", sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.flow-card__eyebrow {
  color: var(--bronze);
  font-family: "Sora", sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.flow-card h3 {
  font-size: 24px;
  line-height: 1.12;
}

.flow-card p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.info-panel, .faq-card {
  padding: 28px;
  border-radius: var(--radius-lg);
  background: rgba(255, 250, 245, 0.82);
  border: 1px solid rgba(232, 221, 212, 0.95);
  box-shadow: 0 16px 38px rgba(67, 42, 54, 0.06);
}

.info-panel h3, .faq-card h3 { margin-bottom: 12px; font-size: 28px; }
.info-panel p, .faq-card p { margin: 0; }

.feature-stack { display: grid; gap: 26px; }

.feature-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 300px);
  justify-content: space-between;
  gap: 28px;
  align-items: center;
  padding: 0;
}

.feature-row.reverse { grid-template-columns: minmax(220px, 300px) minmax(0, 1fr); }
.feature-row.reverse .feature-copy { order: 2; }
.feature-row.reverse .feature-art { order: 1; }

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

.feature-art.visual-card {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  overflow: hidden;
  border-radius: 28px;
  max-width: 280px;
  margin-left: auto;
  background: rgba(255, 250, 245, 0.9);
  border: 1px solid rgba(232, 221, 212, 0.95);
  box-shadow: 0 18px 42px rgba(67, 42, 54, 0.08);
  perspective: 1200px;
}

.feature-row.reverse .device-shell--feature {
  transform: rotateY(-10deg) rotateZ(-3deg);
}

.feature-row.reverse .feature-art.visual-card {
  margin-left: 0;
  margin-right: auto;
}

.feature-row:not(.reverse) .device-shell--feature {
  transform: rotateY(10deg) rotateZ(3deg);
}

.hero-phone .device-shell--mini {
  transform: rotateY(8deg) rotateZ(-2deg);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    inset 0 -2px 0 rgba(0, 0, 0, 0.26),
    0 22px 40px rgba(24, 19, 28, 0.18),
    0 38px 78px rgba(24, 19, 28, 0.22);
}

.feature-art.visual-card img {
  object-fit: contain;
  object-position: center top;
}

.tinted-frame {
  background: linear-gradient(180deg, #fff7f4 0%, #f6ebe6 100%);
}

.dark-frame {
  background: linear-gradient(180deg, #f1e7de 0%, #e8d9cd 100%);
}

.slider-shell {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 16px;
  align-items: center;
}

.slider-button {
  width: 52px;
  height: 52px;
  border: 1px solid rgba(141, 101, 24, 0.2);
  border-radius: 50%;
  background: rgba(255, 250, 245, 0.88);
  color: var(--ink);
  font-size: 20px;
  cursor: pointer;
}

.slider-button:disabled {
  opacity: 0.45;
  cursor: default;
}

.mockup-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(212px, 228px);
  gap: 18px;
  overflow-x: auto;
  padding: 4px 2px 8px;
  scrollbar-width: none;
}

.mockup-track::-webkit-scrollbar { display: none; }

.mockup-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 28px;
  max-width: none;
  background: rgba(255, 250, 245, 0.92);
  border: 1px solid rgba(232, 221, 212, 0.95);
  box-shadow: 0 16px 38px rgba(67, 42, 54, 0.07);
  perspective: 1200px;
}

.mockup-card:nth-child(odd) .device-shell--slider {
  transform: rotateY(-10deg) rotateZ(-2.5deg);
}

.mockup-card:nth-child(even) .device-shell--slider {
  transform: rotateY(10deg) rotateZ(2.5deg);
}

.mockup-card:hover .device-shell--slider,
.feature-art:hover .device-shell--feature,
.hero-phone:hover .device-shell--mini {
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    inset 0 -2px 0 rgba(0, 0, 0, 0.28),
    0 26px 52px rgba(24, 19, 28, 0.2),
    0 42px 90px rgba(24, 19, 28, 0.26);
}

.mockup-card__meta {
  padding: 14px 16px 18px;
}

.mockup-card__meta strong {
  display: block;
  font-family: "Sora", sans-serif;
  font-size: 18px;
  margin-bottom: 4px;
}

.mockup-card__meta span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.cta-section {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: end;
  padding: 38px;
  border-radius: 40px;
  background: linear-gradient(180deg, rgba(255, 250, 245, 0.88) 0%, rgba(243, 235, 227, 0.9) 100%);
  border: 1px solid rgba(232, 221, 212, 0.95);
  box-shadow: var(--shadow);
}

.cta-copy {
  max-width: 680px;
}

.download-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(220px, 1fr));
  gap: 16px;
}

.waitlist-grid {
  min-width: 420px;
}

.store-card {
  display: grid;
  gap: 8px;
  min-width: 220px;
  padding: 24px 28px;
  background: rgba(255, 250, 245, 0.88);
  border: 1px solid rgba(232, 221, 212, 0.95);
  box-shadow: 0 14px 34px rgba(67, 42, 54, 0.06);
}

.store-card__kicker {
  color: var(--accent-deep);
  font-size: 12px;
  font-family: "Sora", sans-serif;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.store-card strong {
  font-size: 24px;
  font-family: "Sora", sans-serif;
}

.store-card__body {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

.disabled-card { cursor: default; }

.lead-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  padding-top: 8px;
}

.lead-copy {
  padding: 8px 0;
}

.lead-points {
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.lead-points li {
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255, 250, 245, 0.78);
  border: 1px solid rgba(232, 221, 212, 0.95);
  color: var(--muted);
  font-weight: 600;
}

.lead-form {
  padding: 24px;
  border-radius: 32px;
  background: rgba(255, 250, 245, 0.9);
  border: 1px solid rgba(232, 221, 212, 0.95);
  box-shadow: 0 18px 44px rgba(67, 42, 54, 0.06);
}

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

.form-field {
  display: grid;
  gap: 8px;
}

.form-field--full {
  grid-column: 1 / -1;
}

.form-field span {
  font-size: 13px;
  font-family: "Sora", sans-serif;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-deep);
}

.form-field input,
.form-field textarea {
  width: 100%;
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid rgba(141, 101, 24, 0.2);
  background: #fffdf9;
  color: var(--text);
  font: inherit;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: rgba(141, 101, 24, 0.46);
  box-shadow: 0 0 0 4px rgba(141, 101, 24, 0.1);
}

.phone-field {
  display: flex;
  align-items: center;
  gap: 12px;
  height: 62px;
  padding: 0 18px;
  border-radius: 20px;
  border: 1px solid rgba(214, 198, 187, 0.95);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, rgba(251, 245, 240, 0.94) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.85),
    0 10px 24px rgba(83, 52, 66, 0.04);
}

.phone-field:focus-within {
  outline: 2px solid rgba(141, 101, 24, 0.18);
  border-color: rgba(141, 101, 24, 0.34);
}

.phone-field__prefix {
  flex: 0 0 auto;
  color: var(--text);
  font-weight: 700;
  letter-spacing: 0.02em;
}

.phone-field input {
  -webkit-appearance: none;
  appearance: none;
  height: auto;
  min-width: 0;
  width: 100%;
  padding: 0;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.phone-field input:focus {
  outline: none !important;
  border: 0 !important;
  border-color: transparent !important;
  box-shadow: none !important;
  background: transparent !important;
}

.form-field textarea {
  resize: vertical;
  min-height: 148px;
}

.form-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 18px;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

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

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 30px 0 60px;
  border-top: 1px solid rgba(126, 80, 96, 0.12);
}

.footer-links a {
  color: var(--muted);
  font-weight: 600;
}

.legal-shell {
  padding: 34px 0 60px;
}

.legal-brand {
  margin-bottom: 24px;
}

.legal-card {
  padding: 30px;
  border-radius: 32px;
  background: rgba(255, 250, 245, 0.88);
  border: 1px solid rgba(232, 221, 212, 0.95);
  box-shadow: 0 18px 44px rgba(67, 42, 54, 0.06);
}

.legal-card h1 {
  font-size: clamp(36px, 5vw, 56px);
  margin-bottom: 10px;
}

.legal-card h2 {
  font-size: 26px;
  margin: 28px 0 12px;
}

.legal-card ul {
  margin: 0;
  padding-left: 22px;
}

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

.help-hero {
  padding: 26px 0 14px;
}

.help-layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 26px;
  padding-top: 10px;
}

.help-menu {
  position: sticky;
  top: 108px;
  align-self: start;
  display: grid;
  gap: 10px;
  padding: 20px;
  border-radius: 24px;
  background: rgba(255, 250, 245, 0.88);
  border: 1px solid rgba(232, 221, 212, 0.95);
  box-shadow: 0 16px 34px rgba(67, 42, 54, 0.06);
}

.help-menu h2 {
  margin: 0 0 8px;
  font-size: 24px;
}

.help-menu a {
  display: block;
  padding: 10px 12px;
  border-radius: 14px;
  color: var(--muted);
  font-weight: 700;
  border: 1px solid rgba(141, 101, 24, 0.14);
  background: rgba(255, 253, 246, 0.92);
}

.help-menu a:hover {
  border-color: rgba(141, 101, 24, 0.32);
  color: var(--accent-deep);
}

.help-content {
  display: grid;
  gap: 18px;
}

.help-media-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 12px;
}

.help-section {
  padding: 24px;
  border-radius: 24px;
  background: rgba(255, 250, 245, 0.86);
  border: 1px solid rgba(232, 221, 212, 0.95);
  box-shadow: 0 16px 34px rgba(67, 42, 54, 0.06);
}

.help-section h3 {
  font-size: 30px;
  margin-bottom: 8px;
}

.help-section p {
  margin: 0 0 12px;
  color: var(--muted);
  line-height: 1.7;
}

.help-steps {
  margin: 0;
  padding-left: 20px;
  display: grid;
  gap: 8px;
  color: #574629;
  line-height: 1.6;
}

.help-list {
  margin: 0;
  padding-left: 20px;
  display: grid;
  gap: 8px;
  color: #574629;
  line-height: 1.6;
}

.help-media {
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(232, 221, 212, 0.95);
  background: rgba(255, 255, 255, 0.7);
}

.help-media img {
  width: min(100%, 360px);
  aspect-ratio: 9 / 19.5;
  object-fit: cover;
  object-position: center top;
  border-radius: 32px;
  border: 1px solid rgba(20, 18, 14, 0.14);
  box-shadow:
    0 18px 42px rgba(20, 16, 10, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
  background: #0f0e0c;
  padding: 8px;
  margin: 12px;
}

.help-media figcaption {
  width: min(100%, 360px);
  margin: 0;
  padding: 10px 12px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
  background: rgba(255, 250, 245, 0.92);
  border-top: 1px solid rgba(232, 221, 212, 0.95);
}

.help-media--desktop img {
  width: min(100%, 1040px);
  aspect-ratio: auto;
  object-fit: contain;
  object-position: center;
  border-radius: 16px;
  background: #fff;
  padding: 0;
  margin: 10px;
  border: 1px solid rgba(148, 120, 55, 0.2);
  box-shadow: 0 14px 30px rgba(46, 33, 12, 0.14);
}

.help-media--desktop figcaption {
  width: min(100%, 1040px);
}

.help-note {
  margin: 8px 0 0;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(216, 173, 92, 0.16);
  border: 1px solid rgba(141, 101, 24, 0.2);
}

.page-shell--booking {
  padding-bottom: 42px;
}

.booking-hero {
  display: grid;
  grid-template-columns: 1fr 0.94fr;
  gap: 40px;
  align-items: center;
  padding: 34px 0 70px;
}

.booking-hero__visual {
  position: relative;
  padding: 30px 0;
}

.booking-preview-card {
  max-width: 280px;
  padding: 20px 22px;
  border-radius: 26px;
  background: rgba(255, 250, 245, 0.84);
  border: 1px solid rgba(232, 221, 212, 0.95);
  box-shadow: 0 22px 48px rgba(67, 42, 54, 0.08);
}

.booking-preview-card strong {
  display: block;
  margin-bottom: 8px;
  font-family: "Sora", sans-serif;
  font-size: 22px;
  line-height: 1.1;
}

.booking-preview-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.booking-preview-card--bottom {
  position: absolute;
  right: 0;
  bottom: 10px;
}

.device-shell--booking {
  width: min(100%, 360px);
  margin: 18px auto 0;
}

.booking-device-screen {
  background:
    radial-gradient(circle at top, rgba(181, 132, 145, 0.12), transparent 28%),
    linear-gradient(180deg, #fffaf6 0%, #f6eee8 100%);
}

.booking-phone-ui {
  padding: 26px 22px 22px;
}

.booking-phone-ui__top,
.booking-phone-ui__grid,
.booking-submit-bar,
.booking-sidebar__card,
.booking-sidebar__metric {
  display: flex;
  align-items: center;
  gap: 12px;
}

.booking-phone-ui__top {
  justify-content: space-between;
  margin-bottom: 18px;
}

.booking-phone-chip {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(126, 80, 96, 0.14);
  color: var(--accent-deep);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.booking-phone-chip--soft {
  background: rgba(42, 36, 49, 0.08);
  color: var(--ink);
}

.booking-phone-ui h2 {
  font-size: 32px;
  margin-bottom: 8px;
}

.booking-phone-ui p {
  margin: 0 0 18px;
  color: var(--muted);
  line-height: 1.65;
}

.booking-phone-ui__section {
  padding: 16px;
  border-radius: 22px;
  background: rgba(255, 250, 245, 0.88);
  border: 1px solid rgba(232, 221, 212, 0.95);
}

.booking-phone-ui__section span,
.booking-submit-bar__summary span,
.booking-sidebar__metric span,
.booking-inline-status {
  color: var(--muted);
}

.booking-phone-ui__section strong,
.booking-submit-bar__summary strong {
  display: block;
  margin-top: 6px;
  font-family: "Sora", sans-serif;
  font-size: 22px;
}

.booking-phone-ui__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 16px 0;
}

.booking-phone-ui__grid div,
.booking-day-pill,
.booking-time-pill {
  padding: 14px 12px;
  border-radius: 18px;
  background: rgba(255, 250, 245, 0.82);
  border: 1px solid rgba(232, 221, 212, 0.95);
  text-align: center;
  font-weight: 700;
}

.booking-phone-ui__summary {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 16px;
}

.booking-phone-ui__summary strong {
  font-family: "Sora", sans-serif;
  font-size: 28px;
}

.booking-phone-ui__button {
  padding: 15px 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent-deep) 0%, var(--accent) 100%);
  color: #fff;
  text-align: center;
  font-weight: 800;
}

.appointment-studio__intro {
  max-width: 760px;
  margin-bottom: 28px;
}

.appointment-studio__grid {
  display: grid;
  grid-template-columns: 0.38fr 0.62fr;
  gap: 24px;
  align-items: start;
}

.booking-sidebar,
.booking-panel {
  display: grid;
  gap: 18px;
}

.booking-sidebar__section,
.booking-sidebar__card,
.booking-panel,
.booking-panel__block {
  padding: 24px;
  border-radius: 30px;
  background: rgba(255, 250, 245, 0.9);
  border: 1px solid rgba(232, 221, 212, 0.95);
  box-shadow: 0 18px 44px rgba(67, 42, 54, 0.06);
}

.booking-sidebar__section h3,
.booking-panel__heading h3 {
  margin-bottom: 10px;
}

.booking-sidebar__section p,
.booking-benefits li,
.booking-steps li,
.booking-inline-status {
  line-height: 1.65;
}

.booking-sidebar__card {
  gap: 14px;
  flex-direction: column;
  align-items: stretch;
}

.booking-sidebar__metric {
  justify-content: space-between;
  padding: 14px 16px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.58);
}

.booking-sidebar__metric strong {
  font-family: "Sora", sans-serif;
  font-size: 18px;
}

.booking-sidebar__card--soft {
  background: linear-gradient(180deg, rgba(255, 250, 245, 0.9) 0%, rgba(241, 231, 222, 0.92) 100%);
}

.booking-benefits,
.booking-steps {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

.booking-panel {
  gap: 18px;
}

.booking-panel__block {
  box-shadow: none;
}

.booking-panel__heading {
  margin-bottom: 14px;
}

.booking-segment-tabs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.booking-segment-tab {
  padding: 14px 18px;
  border-radius: 999px;
  border: 1px solid rgba(126, 80, 96, 0.16);
  background: rgba(255, 250, 245, 0.8);
  color: var(--muted);
  font-weight: 800;
  cursor: pointer;
}

.booking-segment-tab.is-active {
  background: linear-gradient(135deg, var(--accent-deep) 0%, var(--accent) 100%);
  color: #fff;
  box-shadow: 0 16px 36px rgba(126, 80, 96, 0.18);
}

.booking-service-grid,
.booking-day-grid,
.booking-time-grid,
.booking-form-grid {
  display: grid;
  gap: 12px;
}

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

.booking-service-card {
  padding: 18px;
  border-radius: 24px;
  border: 1px solid rgba(232, 221, 212, 0.95);
  background: rgba(255, 255, 255, 0.64);
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.booking-service-card:hover {
  transform: translateY(-1px);
}

.booking-service-card.is-active {
  border-color: rgba(126, 80, 96, 0.34);
  box-shadow: 0 20px 42px rgba(126, 80, 96, 0.1);
}

.booking-service-card__top {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.booking-service-card strong,
.booking-service-card__price {
  font-family: "Sora", sans-serif;
}

.booking-service-card p {
  margin: 0 0 14px;
  color: var(--muted);
  line-height: 1.55;
}

.booking-service-card__meta {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.booking-service-card__meta span,
.booking-submit-bar__summary small {
  color: var(--muted);
}

.booking-service-card__meta span {
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(42, 36, 49, 0.05);
  font-size: 13px;
  font-weight: 700;
}

.booking-day-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.booking-time-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.booking-day-pill,
.booking-time-pill {
  cursor: pointer;
  color: var(--ink);
}

.booking-day-pill small {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-weight: 600;
}

.booking-day-pill.is-active,
.booking-time-pill.is-active {
  background: linear-gradient(135deg, var(--accent-deep) 0%, var(--accent) 100%);
  color: #fff;
  box-shadow: 0 16px 36px rgba(126, 80, 96, 0.18);
}

.booking-day-pill.is-active small {
  color: rgba(255, 255, 255, 0.78);
}

.booking-time-pill:disabled {
  cursor: not-allowed;
}

.booking-time-pill {
  position: relative;
  overflow: hidden;
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease,
    color 180ms ease,
    opacity 180ms ease;
}

.booking-time-pill.is-unavailable {
  padding-bottom: 26px;
  color: rgba(78, 67, 87, 0.58);
  background: linear-gradient(180deg, rgba(249, 245, 241, 0.96) 0%, rgba(241, 235, 230, 0.98) 100%);
  border-color: rgba(170, 144, 160, 0.22);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.88),
    0 12px 24px rgba(101, 79, 98, 0.05);
}

.booking-time-pill.is-unavailable::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: 17px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.65) 0%, rgba(255, 255, 255, 0.18) 42%, rgba(202, 185, 198, 0.14) 100%);
  pointer-events: none;
}

.booking-time-pill.is-unavailable::after {
  content: attr(data-state-label);
  position: absolute;
  left: 50%;
  bottom: 9px;
  transform: translateX(-50%);
  padding: 4px 9px;
  border-radius: 999px;
  background: rgba(128, 100, 121, 0.1);
  color: rgba(111, 81, 103, 0.88);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  line-height: 1;
  white-space: nowrap;
  pointer-events: none;
}

.booking-time-pill.is-past {
  color: rgba(99, 88, 108, 0.46);
  background: linear-gradient(180deg, rgba(246, 241, 238, 0.96) 0%, rgba(236, 230, 226, 0.98) 100%);
  border-color: rgba(176, 155, 170, 0.18);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.74),
    0 10px 20px rgba(86, 72, 84, 0.03);
}

.booking-time-pill.is-past::after {
  background: rgba(112, 101, 120, 0.08);
  color: rgba(103, 92, 112, 0.74);
}

.booking-submit-bar {
  justify-content: space-between;
  padding: 18px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 250, 245, 0.9) 0%, rgba(241, 231, 222, 0.84) 100%);
  border: 1px solid rgba(232, 221, 212, 0.95);
}

.booking-submit-bar__summary {
  display: grid;
  gap: 4px;
}

.booking-submit-button {
  border: 0;
  cursor: pointer;
}

.booking-request-form {
  display: grid;
  gap: 18px;
}

.booking-inline-status {
  margin: 0;
  font-size: 14px;
  min-height: 22px;
}

.booking-inline-status.is-error {
  color: #b33c56;
}

.booking-inline-status.is-success {
  color: #3f6f5b;
}

.booking-hero--simple {
  grid-template-columns: 0.82fr 1.18fr;
  gap: 34px;
  align-items: start;
}

.booking-hero__copy {
  max-width: 640px;
  padding-top: 18px;
}

.booking-hero__title {
  max-width: 11ch;
  font-size: clamp(34px, 4.8vw, 60px);
  line-height: 0.98;
}

.booking-hero__copy .hero-text {
  max-width: 900px;
  font-size: 18px;
  line-height: 1.68;
}

.booking-hero__panel {
  padding: 28px;
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(255, 252, 248, 0.96) 0%, rgba(249, 242, 236, 0.94) 100%);
  border: 1px solid rgba(220, 205, 194, 0.95);
  box-shadow:
    0 24px 56px rgba(67, 42, 54, 0.09),
    inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.booking-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 20px;
}

.booking-topline strong {
  display: block;
  font-family: "Sora", sans-serif;
  font-size: 28px;
  line-height: 1.05;
}

.booking-topline__meta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.booking-state-pill,
.booking-hours-pill {
  padding: 11px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(232, 221, 212, 0.95);
  font-weight: 800;
}

.booking-state-pill {
  color: var(--accent-deep);
}

.booking-state-pill.is-closed {
  color: #9d6b70;
  background: rgba(255, 245, 246, 0.92);
  border-color: rgba(216, 186, 190, 0.95);
}

.booking-hours-pill {
  color: var(--ink);
}

.booking-request-form--hero {
  gap: 16px;
}

.booking-panel__group {
  display: grid;
  gap: 10px;
}

.booking-panel__label {
  color: var(--accent-deep);
  font-family: "Sora", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.booking-select-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.booking-select-row .form-field {
  margin: 0;
}

.booking-select-row select,
.booking-select-row input {
  width: 100%;
}

.booking-request-form--hero .form-field span {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-weight: 700;
}

.booking-request-form--hero input,
.booking-request-form--hero select {
  height: 62px;
  padding: 0 18px;
  border-radius: 20px;
  border: 1px solid rgba(214, 198, 187, 0.95);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, rgba(251, 245, 240, 0.94) 100%);
  color: var(--text);
  font: inherit;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.85),
    0 10px 24px rgba(83, 58, 18, 0.04);
}

.booking-request-form--hero input:focus,
.booking-request-form--hero select:focus {
  outline: 2px solid rgba(141, 101, 24, 0.18);
  border-color: rgba(141, 101, 24, 0.34);
}

.booking-request-form--hero .phone-field input,
.booking-request-form--hero .phone-field input:focus {
  outline: none;
  border-color: transparent;
  box-shadow: none;
  background: transparent;
}

.booking-request-form--hero select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 54px;
  cursor: pointer;
  background-image:
    linear-gradient(45deg, transparent 50%, rgba(141, 101, 24, 0.78) 50%),
    linear-gradient(135deg, rgba(141, 101, 24, 0.78) 50%, transparent 50%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, rgba(251, 245, 240, 0.94) 100%);
  background-position:
    calc(100% - 28px) calc(50% - 2px),
    calc(100% - 20px) calc(50% - 2px),
    0 0;
  background-size:
    8px 8px,
    8px 8px,
    100% 100%;
  background-repeat: no-repeat;
}

.booking-request-form--hero select:hover,
.booking-request-form--hero input:hover {
  border-color: rgba(169, 133, 116, 0.42);
}

.booking-day-grid--compact {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.booking-time-grid--compact {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.booking-submit-bar--compact {
  padding: 16px 18px;
}

@media (max-width: 980px) {
  .site-header,
  .hero,
  .booking-hero,
  .flow-grid,
  .why-grid,
  .feature-row,
  .feature-row.reverse,
  .cta-section,
  .lead-section,
  .appointment-studio__grid,
  .faq-list,
  .site-footer {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: flex-start;
  }

  .site-header {
    border-radius: 28px;
    flex-wrap: wrap;
  }

  .site-nav {
    order: 3;
    width: 100%;
    justify-content: center;
  }

  .header-actions {
    margin-left: auto;
  }

  .hero {
    gap: 30px;
  }

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

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

  .booking-hero__copy {
    max-width: none;
    padding-top: 0;
  }

  .booking-hero__title {
    max-width: 13ch;
  }

  .booking-preview-card--bottom {
    position: static;
    margin-top: 18px;
  }

  .booking-service-grid,
  .booking-time-grid,
  .booking-day-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cta-section {
    padding: 28px;
  }

  .booking-select-row {
    grid-template-columns: 1fr;
  }

  .booking-submit-bar {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-visual {
    min-height: auto;
    justify-content: stretch;
    padding-bottom: 0;
  }

  .phone {
    width: 100%;
    margin-left: 0;
  }

  .hero-side-card {
    position: static;
    width: 100%;
    margin-bottom: 16px;
  }

  .story-card {
    position: static;
    width: 100%;
    margin-top: 18px;
  }

  .download-grid {
    width: 100%;
    grid-template-columns: 1fr;
  }

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

  .help-media-grid {
    grid-template-columns: 1fr;
  }

  .help-menu {
    position: static;
  }

  .waitlist-grid {
    min-width: 0;
  }

  .feature-art.visual-card {
    padding: 18px;
  }

  .device-shell--feature,
  .device-shell--wide {
    width: min(100%, 286px);
    transform: none;
  }

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

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

  .form-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .slider-button {
    display: none;
  }
}

@media (max-width: 640px) {
  .page-shell, .legal-shell {
    width: min(100vw - 24px, 100%);
  }

  .help-section {
    padding: 18px;
  }

  .help-section h3 {
    font-size: 24px;
  }

  .site-header {
    padding: 16px;
    margin-top: 12px;
    position: static;
  }

  .site-nav {
    justify-content: flex-start;
    gap: 10px 12px;
  }

  .site-nav a {
    font-size: 0.92rem;
  }

  .booking-hero {
    gap: 24px;
  }

  .booking-hero__title {
    max-width: none;
    font-size: 38px;
    line-height: 1.02;
  }

  .booking-hero__copy .hero-text {
    font-size: 17px;
  }

  .header-actions {
    width: 100%;
    justify-content: space-between;
    margin-left: 0;
  }

  h1 {
    font-size: 38px;
  }

  h2 {
    font-size: 30px;
  }

  .hero-text, .section-heading p, .feature-copy p, .cta-copy p, .faq-list p, .legal-card p, .legal-card li {
    font-size: 17px;
  }

  .entry-card {
    grid-template-columns: 58px 1fr;
    gap: 14px;
    padding: 16px;
  }

  .entry-icon {
    width: 58px;
    height: 58px;
    border-radius: 18px;
    font-size: 22px;
  }

  .entry-card strong {
    font-size: 22px;
  }

  .hello {
    font-size: 28px;
  }

  .hello-sub {
    font-size: 18px;
  }

  .hero-cta-row > * {
    flex: 1 1 100%;
    justify-content: center;
  }

  .hero-badges li {
    width: 100%;
    text-align: center;
  }

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

  .hero-screen {
    width: min(100%, 240px);
  }

  .booking-topline {
    flex-direction: column;
    align-items: flex-start;
  }

  .booking-hero__panel {
    padding: 20px;
    border-radius: 28px;
  }

  .booking-sidebar__section,
  .booking-sidebar__card,
  .booking-panel,
  .booking-panel__block {
    padding: 18px;
  }

  .lead-form {
    padding: 18px;
  }

  .lead-points li,
  .form-note {
    font-size: 14px;
  }

  .device-shell--slider {
    width: min(100%, 212px);
    transform: none;
  }

  .store-card {
    min-width: 0;
    width: 100%;
  }

  .booking-service-grid,
  .booking-day-grid,
  .booking-time-grid {
    grid-template-columns: 1fr;
  }

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

  .booking-day-grid--compact,
  .booking-time-grid--compact {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
