:root {
  --bg: #f4f7f6;
  --surface: #ffffff;
  --surface-strong: #102333;
  --text: #17202c;
  --muted: #566273;
  --line: #dce5e2;
  --brand: #0e6b5c;
  --brand-strong: #0a574a;
  --accent: #c8912d;
  --soft: #e8f2ef;
  --ink: #0c1722;
  --max-width: 1180px;
  --radius-xl: 24px;
  --radius-lg: 18px;
  --radius-md: 12px;
  --shadow: 0 18px 44px rgba(20, 39, 55, 0.09);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  background:
    linear-gradient(180deg, #fcfdfc 0%, #f3f7f6 46%, #eef3f4 100%);
  color: var(--text);
  overflow-x: hidden;
}

body.download-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 18% 14%, rgba(14, 107, 92, 0.12), transparent 32%),
    linear-gradient(180deg, #fbfcfb 0%, #eef5f2 100%);
}

html,
body {
  max-width: 100%;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: 12px;
  z-index: 200;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  color: var(--brand-strong);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  transform: translateY(-140%);
  transition: transform 0.18s ease;
}

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

main [id] {
  scroll-margin-top: 110px;
}

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 3px solid rgba(217, 163, 26, 0.85);
  outline-offset: 3px;
}

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

.container {
  width: min(100% - 32px, var(--max-width));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(248, 251, 250, 0.9);
  border-bottom: 1px solid rgba(220, 229, 226, 0.85);
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 82px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-weight: 800;
  font-size: 1.2rem;
}

.brand__mark {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: #eef6f3;
  padding: 8px;
  box-shadow: var(--shadow);
}

.nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px;
}

.nav a {
  color: var(--muted);
  font-weight: 600;
  white-space: nowrap;
  flex: 0 0 auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 700;
  border: 1px solid transparent;
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease;
  cursor: pointer;
}

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

.btn--primary {
  color: white;
  background: linear-gradient(135deg, var(--brand) 0%, #1d8e79 100%);
}

.btn--secondary {
  background: white;
  border-color: var(--line);
}

.download-shell {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
}

.download-card {
  width: min(100%, 520px);
  display: grid;
  gap: 18px;
  justify-items: start;
  padding: clamp(26px, 6vw, 44px);
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 26px 70px rgba(20, 39, 55, 0.14);
}

.download-card__icon {
  width: 78px;
  height: 78px;
  border-radius: 22px;
  border: 1px solid var(--line);
}

.download-card h1 {
  max-width: 100%;
  font-size: clamp(2rem, 7vw, 4rem);
  line-height: 1.04;
}

.download-card p {
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.6;
}

.download-card__stores {
  width: 100%;
  margin-top: 4px;
}

.store-links.download-card__stores a {
  display: flex;
  width: auto;
  min-width: 0;
  min-height: 0;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  border-radius: 12px;
  background: transparent;
}

.download-card__store-badge {
  display: block;
  width: auto;
  max-width: 100%;
  height: 56px;
}

.download-card__web {
  width: 100%;
}

.home-hero {
  padding: 42px 0 22px;
}

.home-hero--product {
  min-height: calc(100vh - 82px);
  display: flex;
  align-items: center;
  padding: 36px 0 18px;
}

.home-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
  gap: 24px;
  align-items: stretch;
}

.home-hero__copy {
  display: flex;
  min-height: min(680px, calc(100vh - 124px));
  flex-direction: column;
  justify-content: center;
  padding: clamp(24px, 5vw, 58px) 0;
}

.home-hero h1 {
  max-width: 10.5ch;
  font-size: clamp(3rem, 6.2vw, 5.4rem);
  letter-spacing: 0;
}

.home-hero--product .lead {
  max-width: 47ch;
  font-size: clamp(1.08rem, 1.8vw, 1.34rem);
  color: #3f4c59;
}

.search-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  width: min(100%, 760px);
  margin-top: 28px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow);
}

.search-panel__input {
  min-width: 0;
  min-height: 54px;
  padding: 0 18px;
  border: 0;
  background: transparent;
  color: var(--text);
  font: inherit;
  font-size: 16px;
}

.search-panel--home {
  max-width: 720px;
}

.quick-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.quick-categories a {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--brand-strong);
  font-weight: 700;
}

.home-live {
  display: flex;
  min-height: min(680px, calc(100vh - 124px));
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(22px, 4vw, 34px);
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(13, 39, 52, 0.94), rgba(12, 91, 79, 0.95)),
    url("snipio_feature_graphic_1024x500.png") center/cover;
  color: white;
  box-shadow: 0 24px 60px rgba(10, 36, 48, 0.2);
  overflow: hidden;
}

.home-live .badge {
  background: rgba(255, 255, 255, 0.14);
  color: white;
}

.home-live__top {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.home-live__top h2 {
  max-width: 10ch;
}

.home-live__mark {
  width: 74px;
  height: 74px;
  object-fit: contain;
  flex: 0 0 auto;
}

.home-live__list {
  display: grid;
  gap: 12px;
  margin: 24px 0;
}

.mini-salon {
  display: grid;
  gap: 6px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.11);
  color: white;
}

.mini-salon span {
  color: rgba(255, 255, 255, 0.78);
}

.home-live__actions {
  display: grid;
  gap: 10px;
}

.home-live__actions .btn--secondary {
  background: rgba(255, 255, 255, 0.92);
}

.product-showcase {
  position: relative;
  min-height: min(720px, calc(100vh - 120px));
  display: grid;
  align-content: center;
  isolation: isolate;
}

.product-showcase::before {
  content: "";
  position: absolute;
  inset: 10% -4% 0 16%;
  z-index: -1;
  border-radius: 36px;
  background:
    linear-gradient(135deg, rgba(14, 107, 92, 0.18), rgba(200, 145, 45, 0.12)),
    #ffffff;
  border: 1px solid rgba(220, 229, 226, 0.9);
  box-shadow: 0 26px 70px rgba(20, 39, 55, 0.13);
}

.phone-stack {
  position: relative;
  min-height: 580px;
}

.phone-shot {
  position: absolute;
  width: min(56vw, 320px);
  max-width: 76%;
  border-radius: 34px;
  border: 10px solid #101820;
  background: #101820;
  box-shadow: 0 26px 70px rgba(12, 23, 34, 0.22);
}

.phone-shot--main {
  left: 10%;
  top: 0;
  z-index: 2;
}

.phone-shot--side {
  right: 4%;
  top: 70px;
  z-index: 1;
  transform: scale(0.88);
  opacity: 0.96;
}

.showcase-card {
  position: absolute;
  left: 0;
  right: 26px;
  bottom: 18px;
  z-index: 3;
  display: grid;
  gap: 10px;
  padding: 14px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.showcase-card .mini-salon {
  color: var(--text);
  background: #f7faf9;
  border-color: var(--line);
}

.showcase-card .mini-salon span {
  color: var(--muted);
}

.hero__actions--compact {
  margin-top: 18px;
}

.store-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.store-links a {
  display: inline-grid;
  min-width: 154px;
  min-height: 58px;
  align-content: center;
  gap: 2px;
  padding: 9px 16px;
  border-radius: 16px;
  background: #101820;
  color: #ffffff;
  border: 1px solid rgba(16, 24, 32, 0.2);
}

.store-links span {
  font-size: 0.76rem;
  opacity: 0.76;
}

.store-links strong {
  font-size: 1.04rem;
}

.store-links--dark a {
  background: rgba(255, 255, 255, 0.96);
  color: #101820;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.78);
}

.proof-strip--calm {
  margin-top: 8px;
  background: #ffffff;
}

.proof-strip article {
  display: grid;
  gap: 6px;
  padding: 16px;
  border-radius: 16px;
  background: #ffffff;
}

.proof-strip span {
  color: var(--muted);
  line-height: 1.45;
}

.section--tight {
  padding-top: 8px;
}

.section__head--center {
  align-items: center;
}

.section-card--strong {
  background: linear-gradient(180deg, #ffffff, #edf6f3);
}

.cta__split {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
}

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

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

.app-home-card {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  min-width: 0;
  padding: 16px;
  border-radius: 24px;
  background: #ffffff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.app-home-card img {
  width: 120px;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  object-position: top;
  border-radius: 22px;
  border: 5px solid #101820;
  background: #101820;
}

.app-home-card span {
  display: inline-flex;
  margin-bottom: 8px;
  color: var(--brand-strong);
  font-weight: 800;
}

.app-home-card strong {
  display: block;
  font-size: 1.24rem;
}

.app-home-card p {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.5;
}

.app-download-band {
  margin: 18px 0;
  padding: 0;
}

.app-download-band__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 34px;
  border-radius: 28px;
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(16, 35, 51, 0.98), rgba(14, 107, 92, 0.94)),
    url("assets/website/customer-feature.png") center/cover;
}

.app-download-band h2 {
  max-width: 17ch;
}

.app-download-band p {
  max-width: 48ch;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.6;
}

.app-download-band .badge {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.14);
}

.split-band {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 18px;
}

.quiet-panel {
  padding: 28px;
  border-radius: 24px;
  background: #ffffff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.quiet-panel--customer {
  background: linear-gradient(180deg, #ffffff, #edf6f3);
}

.quiet-panel p {
  color: var(--muted);
  line-height: 1.6;
}

.plan-card {
  display: flex;
  min-width: 0;
  min-height: 100%;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: #ffffff;
  box-shadow: var(--shadow);
}

.plan-card--featured {
  border-color: rgba(14, 107, 92, 0.38);
  background: linear-gradient(180deg, #ffffff, #eef8f5);
}

.plan-card__price {
  font-size: 2rem;
  font-weight: 800;
  color: var(--brand-strong);
}

.salon-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  gap: 24px;
  align-items: center;
  padding: 36px 0 18px;
}

.salon-hero__copy {
  padding: clamp(22px, 5vw, 44px) 0;
}

.salon-hero h1 {
  max-width: 12.5ch;
  font-size: clamp(2.8rem, 6vw, 5.2rem);
}

.business-preview {
  min-width: 0;
  padding: 18px;
  border-radius: 30px;
  background: #ffffff;
  border: 1px solid var(--line);
  box-shadow: 0 26px 70px rgba(20, 39, 55, 0.13);
}

.business-preview__bar,
.business-preview__toolbar,
.business-preview__stats {
  display: flex;
  align-items: center;
  gap: 10px;
}

.business-preview__bar {
  padding: 0 0 14px;
}

.business-preview__bar span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #ff6b6b;
}

.business-preview__bar span:nth-child(2) {
  background: #f4c542;
}

.business-preview__bar span:nth-child(3) {
  background: #38b87c;
}

.business-preview__toolbar {
  justify-content: space-between;
  padding: 12px 14px;
  border-radius: 18px;
  background: #f7faf9;
  color: var(--muted);
  font-weight: 800;
}

.business-preview__toolbar strong {
  color: var(--text);
}

.business-preview__toolbar span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid var(--line);
}

.schedule-board {
  display: grid;
  grid-template-columns: 58px repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 16px;
  padding: 16px;
  border-radius: 22px;
  background:
    repeating-linear-gradient(180deg, #ffffff 0, #ffffff 49px, #eef2f1 50px),
    #ffffff;
  border: 1px solid var(--line);
}

.schedule-time {
  color: var(--muted);
  font-weight: 800;
  font-size: 0.9rem;
  padding-top: 10px;
}

.schedule-item {
  display: grid;
  gap: 4px;
  min-height: 92px;
  align-content: start;
  padding: 14px;
  border-radius: 16px;
  color: #102333;
}

.schedule-item span {
  color: rgba(16, 35, 51, 0.72);
}

.schedule-item--mint {
  background: #6dd6c7;
}

.schedule-item--gold {
  background: #f7bd65;
}

.schedule-item--blue {
  background: #99d8ef;
}

.schedule-item--rose {
  background: #f28ab5;
}

.business-preview__stats {
  justify-content: space-between;
  margin-top: 14px;
  color: var(--muted);
}

.business-preview__stats span {
  display: grid;
  gap: 2px;
  min-width: 0;
  padding: 12px;
  border-radius: 16px;
  background: #f7faf9;
  border: 1px solid var(--line);
}

.business-preview__stats strong {
  color: var(--text);
  font-size: 1.22rem;
}

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

.feature-row article {
  display: grid;
  gap: 8px;
  padding: 20px;
  border-radius: 22px;
  background: #ffffff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.feature-row span {
  color: var(--accent);
  font-weight: 900;
}

.feature-row strong {
  font-size: 1.2rem;
}

.feature-row p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.plan-grid--pricing {
  align-items: stretch;
}

.plan-card--pricing {
  border-radius: 18px;
}

.plan-card__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.plan-card__price span {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.25;
}

.notice--plain {
  margin-top: 18px;
  background: #ffffff;
  border: 1px solid var(--line);
}

.plan-card ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.55;
}

.hero {
  padding: 54px 0 24px;
}

.breadcrumbs {
  padding: 22px 0 0;
}

.breadcrumbs__list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
  font-size: 0.95rem;
}

.breadcrumbs__list li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.breadcrumbs__list li:not(:last-child)::after {
  content: "/";
  color: rgba(91, 101, 115, 0.7);
}

.breadcrumbs__list a {
  font-weight: 600;
}

.breadcrumbs__list [aria-current="page"] {
  color: var(--text);
  font-weight: 700;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 28px;
  align-items: stretch;
}

.hero__content,
.hero__panel,
.section-card,
.timeline,
.cta {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(220, 229, 226, 0.9);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

.hero__content {
  padding: 42px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(14, 107, 92, 0.09);
  color: var(--brand-strong);
  font-weight: 700;
  font-size: 0.95rem;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.05;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(2.8rem, 6vw, 4.8rem);
  max-width: 12ch;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

.lead {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.65;
  max-width: 60ch;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 30px;
}

.stat {
  padding: 16px;
  border-radius: var(--radius-lg);
  background: #eef6f3;
}

.stat strong {
  display: block;
  font-size: 1.3rem;
  margin-bottom: 4px;
}

.stat span {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.45;
}

.hero__panel {
  padding: 30px;
  color: white;
  background:
    linear-gradient(180deg, rgba(10, 30, 46, 0.92) 0%, rgba(14, 107, 92, 0.95) 100%),
    radial-gradient(circle at top right, rgba(217, 163, 26, 0.3), transparent 30%);
  overflow: hidden;
}

.hero__panel h3 {
  font-size: 1.6rem;
}

.hero__panel p {
  margin: 12px 0 0;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.88);
}

.pill-list,
.check-list {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.pill-list span,
.check-list li {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.1);
}

.section {
  padding: 28px 0;
}

.section__head {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 20px;
}

.section__head p {
  margin: 0;
  max-width: 56ch;
  color: var(--muted);
  line-height: 1.6;
}

.grid-3,
.grid-2 {
  display: grid;
  gap: 18px;
}

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

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

.section-card {
  padding: 24px;
  min-width: 0;
}

.section-card h3 {
  font-size: 1.35rem;
}

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

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  padding: 10px 12px;
  border-radius: 999px;
  background: var(--soft);
  color: var(--brand-strong);
  font-weight: 700;
  font-size: 0.92rem;
}

.steps {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.step {
  padding: 16px;
  border-radius: var(--radius-lg);
  background: #eef6f3;
}

.step strong {
  display: block;
  margin-bottom: 6px;
}

.timeline {
  padding: 28px;
}

.timeline ol {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 14px;
}

.timeline li {
  padding-left: 6px;
  line-height: 1.6;
}

.cta {
  padding: 34px;
  margin: 28px 0 48px;
  background:
    linear-gradient(180deg, rgba(255, 253, 249, 0.95), rgba(245, 238, 228, 0.95));
}

.cta p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.6;
  max-width: 60ch;
}

.cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 22px;
}

.footer {
  padding: 0 0 42px;
}

.footer__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

code {
  overflow-wrap: anywhere;
}

.legal-page {
  padding: 46px 0 56px;
}

.legal-card {
  padding: 34px;
  border-radius: var(--radius-xl);
  background: rgba(255, 253, 249, 0.95);
  border: 1px solid rgba(231, 223, 211, 0.8);
  box-shadow: var(--shadow);
}

.legal-card h1 {
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  max-width: none;
}

.legal-card h2 {
  margin-top: 28px;
  font-size: 1.45rem;
}

.legal-card p,
.legal-card li {
  margin: 12px 0 0;
  line-height: 1.7;
  color: var(--muted);
}

.legal-card ul {
  padding-left: 20px;
}

.toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 18px 0 0;
}

.toolbar > * {
  flex: 1 1 240px;
  min-width: 0;
}

.input {
  width: 100%;
  min-height: 54px;
  padding: 0 16px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: white;
  color: var(--text);
  font: inherit;
  font-size: 16px;
}

.input::placeholder {
  color: #7a8491;
}

.split-hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 18px;
}

.split-hero > *,
.grid-2 > *,
.grid-3 > *,
.status-grid > *,
.fit-grid > *,
.booking-grid > *,
.booking-grid--summary > * {
  min-width: 0;
}

.meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.meta-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 999px;
  background: var(--soft);
  color: var(--brand-strong);
  font-weight: 700;
  font-size: 0.92rem;
  max-width: 100%;
}

.salon-grid {
  display: grid;
  gap: 18px;
}

.salon-card {
  padding: 24px;
  border-radius: var(--radius-xl);
  background: rgba(255, 253, 249, 0.95);
  border: 1px solid rgba(231, 223, 211, 0.8);
  box-shadow: var(--shadow);
  min-width: 0;
}

.salon-card--market {
  display: grid;
  grid-template-columns: minmax(220px, 0.42fr) minmax(0, 1fr);
  gap: 20px;
  padding: 16px;
  background: #ffffff;
  border-color: var(--line);
}

.salon-card__body {
  min-width: 0;
  padding: 8px 8px 8px 0;
}

.salon-card__media {
  min-width: 0;
  min-height: 100%;
  border-radius: 22px;
  overflow: hidden;
  background: #f1f6f4;
}

.salon-card__media > img,
.salon-card__image-fallback {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
}

.salon-card__image-fallback {
  display: grid;
  place-items: center;
  align-content: center;
  gap: 14px;
  color: var(--brand-strong);
  font-weight: 900;
  background:
    linear-gradient(135deg, rgba(14, 107, 92, 0.12), rgba(200, 145, 45, 0.1)),
    #f7faf9;
}

.salon-card__image-fallback img {
  width: 86px;
}

.salon-card__top {
  display: flex;
  flex-wrap: wrap;
  align-items: start;
  justify-content: space-between;
  gap: 14px;
}

.salon-card p {
  color: var(--muted);
  line-height: 1.6;
}

.salon-card--market h3 {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
}

.salon-card__service-preview {
  display: grid;
  gap: 8px;
  margin-top: 16px;
  padding: 16px;
  border-radius: 18px;
  background: #f7faf9;
  border: 1px solid var(--line);
}

.salon-card__service-preview span {
  color: var(--muted);
  line-height: 1.5;
}

.salon-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.salon-card__actions .btn {
  flex: 1 1 220px;
}

.notice {
  padding: 16px 18px;
  border-radius: 18px;
  background: #f7f0e6;
  color: var(--muted);
  line-height: 1.6;
}

.list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

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

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

.status-card {
  padding: 24px;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(231, 223, 211, 0.9);
  background: rgba(255, 253, 249, 0.95);
  box-shadow: var(--shadow);
}

.status-card--live {
  background: linear-gradient(180deg, rgba(14, 107, 92, 0.08), rgba(255, 253, 249, 0.95));
}

.status-card--next {
  background: linear-gradient(180deg, rgba(217, 163, 26, 0.08), rgba(255, 253, 249, 0.95));
}

.status-card h3 {
  font-size: 1.35rem;
}

.status-card p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

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

.fit-card {
  padding: 22px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: #fbfdfc;
}

.fit-card h3 {
  font-size: 1.15rem;
}

.fit-card p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.list__item {
  padding: 14px 16px;
  border-radius: 18px;
  background: #f5f8f7;
  min-width: 0;
}

.review {
  padding: 16px;
  border-radius: 18px;
  background: #f5f8f7;
}

.review strong {
  display: block;
  margin-bottom: 8px;
}

.small {
  color: var(--muted);
  font-size: 0.94rem;
}

.empty-state {
  padding: 28px;
  border-radius: 24px;
  border: 1px dashed var(--line);
  text-align: center;
  color: var(--muted);
  background: rgba(255, 253, 249, 0.72);
}

.booking-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 18px;
}

.booking-grid--summary {
  grid-template-columns: 1fr 0.8fr;
}

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

.booking-service-list,
.slot-list,
.form-grid,
.summary-list {
  display: grid;
  gap: 14px;
}

.booking-service {
  display: flex;
  width: 100%;
  align-items: start;
  justify-content: space-between;
  gap: 16px;
  padding: 18px;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: #fbfdfc;
  color: var(--text);
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.booking-service:hover,
.slot-button:hover {
  transform: translateY(-1px);
}

.booking-service--selected {
  border-color: rgba(14, 107, 92, 0.5);
  background: rgba(14, 107, 92, 0.08);
}

.booking-service strong,
.slot-day__head strong {
  display: block;
  margin-bottom: 6px;
}

.booking-service span,
.slot-day__head span,
.field span {
  color: var(--muted);
}

.booking-service__meta {
  display: grid;
  gap: 8px;
  text-align: right;
  font-weight: 700;
  color: var(--brand-strong);
}

.choice-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.slot-day {
  padding: 18px;
  border-radius: 22px;
  background: #fbfdfc;
  border: 1px solid var(--line);
}

.slot-day__head {
  margin-bottom: 14px;
}

.slot-button {
  min-width: 92px;
  min-height: 48px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: white;
  color: var(--text);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.slot-button--selected {
  color: white;
  border-color: transparent;
  background: linear-gradient(135deg, var(--brand) 0%, #1d8e79 100%);
}

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

.booking-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.contact-form {
  display: grid;
  gap: 16px;
  margin-top: 22px;
}

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

.input--textarea {
  min-height: 148px;
  padding: 14px 16px;
  resize: vertical;
}

.summary-row {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 16px;
  border-radius: 18px;
  background: #f9f7f3;
}

.summary-row--stack {
  display: grid;
}

.summary-row span {
  color: var(--muted);
}

.summary-row strong {
  text-align: right;
}

.status-banner {
  padding: 14px 16px;
  border-radius: 18px;
  line-height: 1.6;
  overflow-wrap: anywhere;
}

.status-banner--info {
  background: rgba(14, 107, 92, 0.08);
  color: var(--brand-strong);
}

.status-banner--success {
  background: rgba(36, 145, 92, 0.12);
  color: #1e6b47;
}

.status-banner--error {
  background: rgba(180, 54, 54, 0.1);
  color: #8d2424;
}

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

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

  .btn:hover,
  .booking-service:hover,
  .slot-button:hover,
  .skip-link:focus,
  .skip-link:focus-visible {
    transform: none;
  }
}

@media (max-width: 980px) {
  .split-hero {
    grid-template-columns: 1fr;
  }

  .booking-grid,
  .booking-grid--summary,
  .form-grid--two,
  .status-grid,
  .fit-grid,
  .home-hero__grid,
  .proof-strip,
  .plan-grid,
  .app-card-grid,
  .split-band,
  .salon-hero,
  .feature-row {
    grid-template-columns: 1fr;
  }

  .home-hero__copy,
  .home-live {
    min-height: auto;
  }

  .home-hero--product {
    min-height: auto;
  }

  .product-showcase {
    min-height: 620px;
  }

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

@media (max-width: 980px) {
  .hero__grid,
  .grid-3,
  .grid-2 {
    grid-template-columns: 1fr;
  }

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

  .salon-card--market {
    grid-template-columns: 1fr;
  }

  .salon-card__body {
    padding: 4px;
  }

  .topbar__inner {
    min-height: auto;
    padding: 14px 0;
    align-items: flex-start;
    flex-direction: column;
  }

  .nav {
    width: 100%;
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x proximity;
    padding-bottom: 4px;
    scrollbar-width: thin;
    -webkit-overflow-scrolling: touch;
  }

  .nav a {
    scroll-snap-align: start;
  }
}

@media (max-width: 760px) {
  .toolbar > * {
    flex-basis: 100%;
  }

  .salon-card__top,
  .summary-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .salon-card__actions .btn {
    flex-basis: 100%;
  }

  .hero__actions,
  .salon-card__actions,
  .booking-actions {
    align-items: stretch;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 20px, var(--max-width));
  }

  .hero {
    padding-top: 32px;
  }

  .hero__content h1 {
    max-width: 100% !important;
    font-size: 2.35rem !important;
    line-height: 1.08;
  }

  .section__head h2,
  .cta h2 {
    font-size: 1.85rem;
    line-height: 1.12;
  }

  .hero__content,
  .hero__panel,
  .section-card,
  .timeline,
  .cta,
  .legal-card {
    padding: 22px;
    border-radius: 24px;
  }

  .nav {
    width: 100%;
    justify-content: flex-start;
    gap: 10px;
    padding-bottom: 2px;
    scrollbar-width: none;
  }

  .nav::-webkit-scrollbar {
    display: none;
  }

  .nav a {
    padding: 10px 0;
    font-size: 0.98rem;
  }

  .hero__actions,
  .cta__actions {
    flex-direction: column;
  }

  .app-download-band__inner {
    align-items: flex-start;
    flex-direction: column;
    padding: 24px;
    border-radius: 24px;
  }

  .app-home-card {
    grid-template-columns: 96px minmax(0, 1fr);
  }

  .app-home-card img {
    width: 96px;
  }

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

  .phone-stack {
    min-height: 470px;
  }

  .phone-shot {
    width: min(62vw, 260px);
    border-width: 7px;
    border-radius: 28px;
  }

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

  .business-preview__toolbar {
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .search-panel {
    grid-template-columns: 1fr;
    border-radius: 24px;
  }

  .home-hero h1 {
    font-size: clamp(2.55rem, 12vw, 3.45rem);
  }

  .salon-hero h1 {
    font-size: clamp(2.35rem, 10.8vw, 3.1rem);
    max-width: 100%;
  }

  .home-live__top {
    flex-direction: column-reverse;
  }

  .btn {
    width: 100%;
  }

  .store-links,
  .store-links a {
    width: 100%;
  }

  .schedule-board {
    grid-template-columns: 1fr;
  }

  .schedule-time {
    padding-top: 0;
  }

  .business-preview__stats {
    display: grid;
    grid-template-columns: 1fr;
  }

  .booking-service {
    grid-template-columns: 1fr;
    display: grid;
  }

  .booking-service__meta,
  .summary-row strong {
    text-align: left;
  }

  .booking-service__meta {
    justify-items: start;
  }

  .booking-actions {
    flex-direction: column;
  }

  .meta-row {
    flex-direction: column;
    align-items: stretch;
  }

  .section__head,
  .footer__inner {
    align-items: flex-start;
  }

  .meta-chip,
  .list__item,
  .review,
  .summary-row,
  .status-banner,
  .step,
  .stat,
  .slot-day,
  .section-card,
  .fit-card,
  .status-card,
  .salon-card {
    overflow-wrap: anywhere;
  }

  .slot-button {
    flex: 1 1 calc(50% - 10px);
  }

  .brand {
    width: 100%;
  }
}

@media (max-width: 420px) {
  .container {
    width: min(100% - 16px, var(--max-width));
  }

  .hero__content,
  .hero__panel,
  .section-card,
  .timeline,
  .cta,
  .legal-card {
    padding: 18px;
    border-radius: 20px;
  }

  .slot-button {
    flex-basis: 100%;
  }
}
