/* 6-С brand layer — typography, hero identity, motion, a11y */

:root {
  --brand: #13c6c7;
  --brand-hot: #25e2d8;
  --brand-deep: #031321;
  --brand-ink: #f7fbff;
  --brand-mist: #9db0c1;
  --brand-glow: rgba(37, 226, 216, 0.22);
  --font-display: "Fraunces", "Literata", "Iowan Old Style", Georgia, serif;
  --font-sans: "Manrope", "Onest", "Segoe UI", sans-serif;
  --serif: var(--font-display);
  --sans: var(--font-sans);
  --motion-rise: 680ms cubic-bezier(0.22, 1, 0.36, 1);
  --motion-soft: 420ms ease;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  background:
    radial-gradient(ellipse 90% 55% at 12% -10%, rgba(19, 102, 133, 0.28), transparent 55%),
    radial-gradient(ellipse 70% 45% at 100% 0%, rgba(19, 198, 199, 0.1), transparent 42%),
    var(--bg, #031321);
}

.logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.45rem, 1.1rem + 0.9vw, 1.85rem);
  letter-spacing: -0.03em;
  line-height: 1;
  white-space: nowrap;
}

.logo span,
.brand-mark > span:last-of-type,
.brand-hero span {
  color: var(--brand-hot);
}

.brand-mark .brand-mark-lead {
  color: var(--brand-ink);
}

.brand-mark {
  display: flex;
  width: 100%;
  align-items: baseline;
  gap: 0.05em;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(3.4rem, 8vw, 6.2rem);
  line-height: 0.9;
  letter-spacing: -0.055em;
  color: var(--brand-ink);
  text-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  margin: 10px 0 4px;
}

.brand-mark .brand-dot {
  width: 0.18em;
  height: 0.18em;
  border-radius: 50%;
  margin-left: 0.12em;
  align-self: flex-start;
  margin-top: 0.28em;
  background: var(--brand-hot);
  box-shadow: 0 0 24px var(--brand-glow);
}

.hero {
  isolation: isolate;
  min-height: min(92vh, 760px);
  background:
    radial-gradient(circle at 32% 18%, rgba(17, 102, 133, 0.32), transparent 40%),
    linear-gradient(118deg, #02111d 0%, #041a2c 52%, #0a2c3c 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: auto -8% -18% auto;
  width: min(52vw, 560px);
  height: min(52vw, 560px);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37, 226, 216, 0.16), transparent 68%);
  z-index: 1;
  pointer-events: none;
  animation: brand-orbit 14s ease-in-out infinite alternate;
}

.hero-media {
  animation: brand-media-in 1.1s var(--motion-rise) both;
}

.hero-content {
  width: min(100%, 720px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-content > .eyebrow {
  display: inline-flex;
}

.hero-content > * {
  animation: brand-rise var(--motion-rise) forwards;
}

.hero-content > *:nth-child(1) { animation-delay: 40ms; }
.hero-content > *:nth-child(2) { animation-delay: 120ms; }
.hero-content > *:nth-child(3) { animation-delay: 200ms; }
.hero-content > *:nth-child(4) { animation-delay: 280ms; }
.hero-content > *:nth-child(5) { animation-delay: 360ms; }

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 1.4rem + 2.6vw, 3.35rem);
  line-height: 1.05;
  letter-spacing: -0.035em;
  margin: 18px 0 16px;
  max-width: 14ch;
}

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

.hero-copy {
  max-width: 36ch;
}

.search-panel {
  animation: brand-rise var(--motion-rise) 320ms both;
}

.btn-primary {
  position: relative;
  overflow: hidden;
}

.btn-primary::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 20%, rgba(255, 255, 255, 0.28), transparent 80%);
  transform: translateX(-120%);
  transition: transform 0.7s ease;
}

.btn-primary:hover::after {
  transform: translateX(120%);
}

.service-card,
.dark-card,
.review-card,
.step-card,
.provider-mini,
.pricing-card,
.process-item,
.catalog-card {
  transition: transform var(--motion-soft), border-color var(--motion-soft), box-shadow var(--motion-soft);
}

.service-card:hover,
.dark-card:hover,
.review-card:hover,
.catalog-card:hover,
.pricing-card:hover {
  transform: translateY(-3px);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity var(--motion-rise), transform var(--motion-rise);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.page-hero {
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  right: -120px;
  top: -140px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37, 226, 216, 0.14), transparent 70%);
  pointer-events: none;
}

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

.brand-pillar {
  padding: 20px 22px;
  border-radius: 18px;
  border: 1px solid rgba(154, 205, 232, 0.16);
  background: rgba(5, 25, 40, 0.72);
}

.brand-pillar b {
  display: block;
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin-bottom: 8px;
}

.brand-pillar span {
  color: var(--brand-mist);
  font-size: 0.92rem;
  line-height: 1.45;
}

.six-c-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 28px 0;
}

.six-c-item {
  padding: 18px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid var(--line, rgba(160, 200, 225, 0.16));
}

.six-c-item strong {
  display: block;
  color: var(--brand-hot);
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.six-c-item p {
  margin: 0;
  color: #b7c8d6;
  font-size: 0.95rem;
}

.marketing-shell .prose-card {
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 0;
}

.marketing-shell .pricing-grid,
.marketing-shell .process-timeline,
.marketing-shell .review-grid {
  margin-top: 8px;
}

.site-footer-brand p {
  max-width: 34ch;
  line-height: 1.55;
}

@keyframes brand-rise {
  from {
    opacity: 0.35;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes brand-media-in {
  from {
    opacity: 0;
    transform: scale(1.04);
  }
  to {
    opacity: 0.95;
    transform: none;
  }
}

@keyframes brand-orbit {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-24px, 18px, 0);
  }
}

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

  .brand-mark {
    font-size: clamp(2.8rem, 14vw, 4.4rem);
  }

  .hero h1 {
    max-width: none;
  }

  .brand-pillars,
  .six-c-grid {
    grid-template-columns: 1fr;
  }
}

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

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* Commerce shell — catalogue / order / auth */
.commerce-shell .catalog-card-rich {
  display: grid;
  gap: 0;
  overflow: hidden;
  padding: 0;
}
.commerce-shell .catalog-card-rich > div {
  padding: 22px;
}
.commerce-shell .catalog-card-rich img {
  margin: 0;
  border-radius: 0;
  height: 200px;
}
.catalog-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 12px 0 18px;
}
.catalog-meta span {
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(37, 226, 216, 0.1);
  color: #9ee9e4;
}
.span-full {
  grid-column: 1 / -1;
}
.service-detail-media {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 16px;
  margin-bottom: 18px;
}
.commerce-filter {
  margin-top: 24px;
  flex-wrap: wrap;
}
.commerce-filter .input {
  min-width: 140px;
  background: #081d2f;
  border: 1px solid rgba(125, 194, 203, 0.27);
  color: #eaf6f8;
}
.order-progress {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin: 22px 0 28px;
  max-width: 720px;
}
.order-progress .progress-step {
  text-align: left;
  color: #7f96a7;
  font-size: 12px;
  font-weight: 700;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(154, 205, 232, 0.12);
}
.order-progress .progress-step.active {
  color: #031522;
  background: linear-gradient(135deg, #25e2d8, #0cb5c2);
  border-color: transparent;
}
.order-progress .progress-step:before,
.order-progress .progress-step:after {
  display: none;
}
.auth-card .muted {
  margin-top: 0;
  margin-bottom: 18px;
}
@media (max-width: 780px) {
  .order-progress {
    grid-template-columns: 1fr 1fr;
  }
}

/* Social auth */
.social-auth-stack{display:grid;gap:10px;margin:8px 0 18px}
.social-auth-stack.compact{margin:12px 0}
a.btn.social-btn{
  width:100%;
  min-height:48px;
  border-radius:12px;
  font-weight:800;
  justify-content:center;
  border:0;
  box-shadow:0 10px 24px rgba(0,0,0,.18);
}
a.btn.social-yandex{background:#fc3f1d;color:#fff}
a.btn.social-yandex:hover{filter:brightness(1.05);transform:translateY(-1px);color:#fff}
a.btn.social-vk{background:#0077ff;color:#fff}
a.btn.social-vk:hover{filter:brightness(1.05);transform:translateY(-1px);color:#fff}
.social-linked-list{list-style:none;padding:0;margin:0 0 16px;display:grid;gap:10px}
.social-linked-list li{display:grid;gap:2px;padding:10px 0;border-bottom:1px solid color-mix(in srgb,currentColor 12%,transparent)}
.social-linked-list small{opacity:.72}
.auth-divider{display:flex;align-items:center;gap:12px;margin:4px 0 18px;color:#8da5b6;font-size:12px;text-transform:uppercase;letter-spacing:.08em}
.auth-divider:before,.auth-divider:after{content:"";flex:1;height:1px;background:rgba(154,205,232,.18)}
.billing-steps{margin:0;padding-left:1.2rem;display:grid;gap:10px;color:#b9cad7;line-height:1.45}
.is-selected-plan{border-color:rgba(37,226,216,.45)!important;box-shadow:0 0 0 1px rgba(37,226,216,.25)}
.pricing-card .big-price small{font-size:.45em;margin-left:4px;opacity:.7}

/* Hero booking desk + sheets */
.visually-hidden{
  position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);border:0;
}
.hero-booking{
  width:min(100%,720px);
  margin-top:8px;
  animation:brand-rise var(--motion-rise) 360ms both;
}
.hero-booking-grid{
  display:grid;
  grid-template-columns:minmax(0,1.15fr) minmax(0,1.05fr) minmax(0,1.15fr) auto;
  gap:10px;
  padding:12px;
  border-radius:22px;
  background:linear-gradient(145deg,rgba(6,28,44,.88),rgba(4,22,36,.92));
  border:1px solid rgba(154,205,232,.22);
  box-shadow:0 24px 60px rgba(0,8,18,.35);
  backdrop-filter:blur(18px);
}
.hero-picker{
  appearance:none;
  border:1px solid rgba(154,205,232,.16);
  background:rgba(255,255,255,.04);
  color:#e8f4fb;
  border-radius:16px;
  min-height:74px;
  padding:12px 40px 12px 16px;
  text-align:left;
  position:relative;
  cursor:pointer;
  transition:border-color .2s ease, background .2s ease, transform .2s ease;
}
.hero-picker:hover:not(:disabled),
.hero-picker:focus-visible{
  border-color:rgba(37,226,216,.45);
  background:rgba(37,226,216,.08);
  outline:none;
}
.hero-picker:disabled{opacity:.45;cursor:not-allowed}
.hero-picker-label{
  display:block;
  font-size:11px;
  letter-spacing:.12em;
  text-transform:uppercase;
  color:#8fb0c4;
  font-weight:700;
  margin-bottom:6px;
}
.hero-picker-value{
  display:-webkit-box;
  -webkit-box-orient:vertical;
  -webkit-line-clamp:2;
  line-clamp:2;
  overflow:hidden;
  font-family:var(--font-display, var(--serif));
  font-size:clamp(.92rem, .82rem + .35vw, 1.02rem);
  line-height:1.2;
  font-weight:700;
  color:#f3fbff;
  white-space:normal;
  word-break:break-word;
}
.hero-picker-chevron{
  position:absolute;right:16px;top:50%;width:8px;height:8px;
  border-right:2px solid #7fd7d0;border-bottom:2px solid #7fd7d0;
  transform:translateY(-60%) rotate(45deg);
}
.hero-booking-submit{
  min-width:168px;
  min-height:74px;
  border-radius:16px;
  font-weight:800;
}
.booking-layer{
  position:fixed;inset:0;z-index:80;
  display:grid;justify-items:end;align-items:stretch;
}
.booking-layer[hidden]{display:none}
.booking-scrim{
  position:absolute;inset:0;border:0;padding:0;
  background:rgba(1,12,22,.58);
  backdrop-filter:blur(4px);
  cursor:pointer;
}
.booking-sheet{
  position:relative;z-index:1;
  width:min(460px,100vw);
  height:100%;
  display:flex;flex-direction:column;
  background:linear-gradient(165deg,#071b2c 0%,#0a2438 55%,#082032 100%);
  border-left:1px solid rgba(154,205,232,.18);
  box-shadow:-24px 0 80px rgba(0,0,0,.35);
  color:#e7f3fa;
  transform:translateX(18px);
  opacity:0;
  transition:transform .28s ease, opacity .28s ease;
}
.booking-layer.is-open .booking-sheet:not([hidden]){
  transform:none;opacity:1;
}
.booking-sheet[hidden]{display:none}
.booking-sheet-head{
  display:flex;justify-content:space-between;align-items:flex-start;gap:16px;
  padding:28px 24px 18px;
  border-bottom:1px solid rgba(154,205,232,.12);
}
.booking-sheet-head h2{
  margin:8px 0 0;
  font:700 clamp(28px,4vw,36px)/1.05 var(--font-display, var(--serif));
  letter-spacing:-.03em;
}
.booking-close{
  width:42px;height:42px;border-radius:12px;border:1px solid rgba(154,205,232,.18);
  background:rgba(255,255,255,.04);color:#dff7f4;font-size:24px;line-height:1;cursor:pointer;
}
.booking-sheet-body{
  padding:20px 24px 28px;
  overflow:auto;
  display:grid;gap:16px;
  align-content:start;
}
.booking-search input{
  width:100%;min-height:48px;border-radius:14px;border:1px solid rgba(154,205,232,.18);
  background:rgba(255,255,255,.04);color:#eef8ff;padding:0 16px;
}
.booking-option-list{display:grid;gap:8px}
.booking-option{
  appearance:none;width:100%;text-align:left;cursor:pointer;
  border-radius:16px;border:1px solid rgba(154,205,232,.14);
  background:rgba(255,255,255,.035);color:inherit;padding:14px 16px;
  display:grid;gap:4px;transition:border-color .2s ease, background .2s ease, transform .2s ease;
}
.booking-option:hover,.booking-option.is-selected{
  border-color:rgba(37,226,216,.42);
  background:rgba(37,226,216,.1);
  transform:translateY(-1px);
}
.booking-option b{font-size:1.02rem}
.booking-option span{color:#91adbf;font-size:.9rem}
.booking-service-grid{display:grid;gap:10px}
.booking-service-card{
  appearance:none;width:100%;text-align:left;cursor:pointer;
  border-radius:18px;border:1px solid rgba(154,205,232,.14);
  background:linear-gradient(145deg,rgba(255,255,255,.05),rgba(255,255,255,.02));
  color:inherit;padding:16px 18px;display:grid;gap:6px;
  transition:border-color .2s ease, transform .2s ease, background .2s ease;
}
.booking-service-card:hover,.booking-service-card.is-selected{
  border-color:rgba(37,226,216,.45);
  background:linear-gradient(145deg,rgba(37,226,216,.14),rgba(255,255,255,.03));
  transform:translateY(-1px);
}
.booking-service-kicker{
  color:#7fd7d0;font-size:11px;letter-spacing:.12em;text-transform:uppercase;font-weight:800;
}
.booking-service-card b{
  font-family:var(--font-display, var(--serif));
  font-size:1.2rem;letter-spacing:-.02em;
}
.booking-service-card span:last-child{color:#93adbf;font-size:.92rem;line-height:1.4}
.brand-calendar{
  border-radius:20px;border:1px solid rgba(154,205,232,.14);
  background:rgba(255,255,255,.03);padding:16px;
}
.brand-calendar-nav{
  display:flex;align-items:center;justify-content:space-between;gap:12px;margin-bottom:14px;
}
.brand-calendar-nav h3{
  margin:0;font:700 1.15rem/1.2 var(--font-display, var(--serif));letter-spacing:-.02em;
}
.brand-calendar-nav-btn{
  width:40px;height:40px;border-radius:12px;border:1px solid rgba(154,205,232,.16);
  background:rgba(255,255,255,.04);color:#dff7f4;font-size:22px;cursor:pointer;
}
.brand-calendar-weekdays,
.brand-calendar-grid{
  display:grid;grid-template-columns:repeat(7,minmax(0,1fr));gap:6px;
}
.brand-calendar-weekdays span{
  text-align:center;font-size:11px;color:#7f9cb0;font-weight:700;letter-spacing:.08em;text-transform:uppercase;
}
.brand-calendar-day{
  appearance:none;border:0;border-radius:12px;min-height:44px;
  background:transparent;color:#d7e8f2;font-weight:700;cursor:pointer;
  transition:background .18s ease, color .18s ease, transform .18s ease;
}
.brand-calendar-day.is-muted{opacity:.28;pointer-events:none}
.brand-calendar-day.is-today{box-shadow:inset 0 0 0 1px rgba(37,226,216,.45)}
.brand-calendar-day:hover:not(:disabled){background:rgba(37,226,216,.12)}
.brand-calendar-day.is-selected{
  background:linear-gradient(135deg,#25e2d8,#0cb5c2);
  color:#032027;
  transform:translateY(-1px);
}
.brand-time-block{display:grid;gap:10px}
.brand-time-label{
  margin:0;font-size:11px;letter-spacing:.12em;text-transform:uppercase;color:#8fb0c4;font-weight:800;
}
.brand-time-chips{display:flex;flex-wrap:wrap;gap:8px}
.brand-time-chip{
  appearance:none;min-height:40px;padding:0 14px;border-radius:999px;cursor:pointer;
  border:1px solid rgba(154,205,232,.18);background:rgba(255,255,255,.04);color:#e8f4fb;font-weight:700;
}
.brand-time-chip.is-selected{
  background:linear-gradient(135deg,#25e2d8,#0cb5c2);color:#032027;border-color:transparent;
}
body.booking-open{overflow:hidden}

@media (max-width:980px){
  .hero-booking-grid{grid-template-columns:1fr 1fr}
  .hero-booking-submit{grid-column:1/-1;min-height:56px}
}
@media (max-width:780px){
  .hero-booking-grid{grid-template-columns:1fr;padding:10px}
  .hero-picker,.hero-booking-submit{min-height:64px}
  .booking-sheet{
    width:100vw;
    border-left:0;
    border-radius:22px 22px 0 0;
    height:min(92vh,100%);
    align-self:end;
    transform:translateY(24px);
  }
  .booking-layer.is-open .booking-sheet:not([hidden]){transform:none}
  .booking-layer{align-items:end}
}

/* Catalog filters + apply / review desks */
.premium-filter{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr)) auto;
  gap:12px;
  align-items:end;
}
.premium-filter .filter-field{
  display:grid;
  gap:6px;
}
.premium-filter .filter-field > span{
  font-size:11px;
  letter-spacing:.12em;
  text-transform:uppercase;
  color:#8fb0c4;
  font-weight:700;
}
.premium-filter .btn{min-height:48px;align-self:end}
.filter-summary{margin-top:14px}
.provider-meta-chips,
.service-chip-row{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-top:10px;
}
.provider-meta-chips span,
.service-chip{
  display:inline-flex;
  align-items:center;
  min-height:28px;
  padding:0 10px;
  border-radius:999px;
  border:1px solid rgba(154,205,232,.16);
  background:rgba(255,255,255,.04);
  color:#c7d9e6;
  font-size:.82rem;
  font-weight:600;
}
a.service-chip.link{text-decoration:none;transition:border-color .2s ease,color .2s ease}
a.service-chip.link:hover{border-color:rgba(37,226,216,.45);color:#eafcff}
.apply-form .choice-block ul,
.review-form ul{
  list-style:none;
  margin:0;
  padding:0;
  display:flex;
  flex-wrap:wrap;
  gap:8px;
}
.apply-form .choice-block li label,
.apply-form .choice-block label{
  display:inline-flex;
  gap:8px;
  align-items:center;
  min-height:36px;
  padding:6px 12px;
  border-radius:12px;
  border:1px solid rgba(154,205,232,.16);
  background:rgba(255,255,255,.03);
}
.apply-form .check-inline{
  display:flex;
  gap:10px;
  align-items:flex-start;
}
.apply-benefits{margin-top:22px}
.review-form .rating-field select{
  max-width:140px;
  font-size:1.1rem;
  font-weight:800;
}
@media (max-width:980px){
  .premium-filter{grid-template-columns:1fr 1fr}
  .premium-filter .btn{grid-column:1/-1}
}
@media (max-width:640px){
  .premium-filter{grid-template-columns:1fr}
}

/* Cosmetic hardening: dark commerce surfaces, header, native controls */
.header-inner{
  gap:clamp(12px, 2vw, 28px);
}
.header-actions{
  flex-wrap:nowrap;
  align-items:center;
}
.header-actions .btn-ghost.btn-sm{
  opacity:.9;
}
@media (max-width:1200px){
  .header-actions a[href*="register"]{display:none}
}
.commerce-shell .form-card,
.marketing-shell .form-card,
.page-hero .form-card{
  background:linear-gradient(155deg,rgba(13,43,64,.98),rgba(7,28,45,.98));
  color:#eaf6f8;
  border:1px solid rgba(104,197,205,.2);
  box-shadow:0 24px 60px rgba(0,0,0,.2);
}
.commerce-shell .form-card h1,
.commerce-shell .form-card h2,
.commerce-shell .form-card h3,
.page-hero .form-card h1,
.page-hero .form-card h2,
.page-hero .form-card h3{
  color:#f7fbff;
}
.commerce-shell .form-card .muted,
.page-hero .form-card .muted,
.commerce-shell .form-card small,
.page-hero .form-card small{
  color:#8da7b8;
}
.commerce-shell .form-card label,
.page-hero .form-card label{
  color:#dcecf2;
}
.commerce-shell .input,
.commerce-shell select,
.commerce-shell textarea,
.commerce-shell input[type=date],
.commerce-shell input[type=time],
.commerce-shell input[type=text],
.commerce-shell input[type=email],
.commerce-shell input[type=password],
.commerce-shell input[type=number],
.page-hero .input,
.page-hero select,
.page-hero textarea,
.page-hero input[type=date],
.page-hero input[type=time]{
  color-scheme:dark;
  background:#081d2f;
  border:1px solid rgba(125,194,203,.27);
  color:#eaf6f8;
  border-radius:12px;
}
.commerce-shell input[type=date]::-webkit-calendar-picker-indicator,
.commerce-shell input[type=time]::-webkit-calendar-picker-indicator,
.page-hero input[type=date]::-webkit-calendar-picker-indicator,
.page-hero input[type=time]::-webkit-calendar-picker-indicator{
  filter:invert(.85);
  opacity:.8;
  cursor:pointer;
}
.marketing-shell .pricing-card{
  background:linear-gradient(155deg,rgba(12,38,57,.96),rgba(6,24,40,.98));
  color:#eaf6f8;
  border:1px solid rgba(104,197,205,.18);
  box-shadow:0 18px 48px rgba(0,8,18,.22);
}
.marketing-shell .pricing-card .kicker{color:var(--brand-hot)}
.marketing-shell .pricing-card li{color:#b7c8d6}
.marketing-shell .pricing-card.featured{
  background:linear-gradient(160deg,#08283d,#071b2c);
  border-color:rgba(37,226,216,.28);
  transform:translateY(-6px);
}
.marketing-shell .catalog-card{
  background:linear-gradient(155deg,rgba(12,38,57,.96),rgba(6,24,40,.98));
  color:#eaf6f8;
  border:1px solid rgba(104,197,205,.18);
}
.marketing-shell .catalog-card p{color:#9db0c1}
.provider-card h2,
.provider-card p,
.provider-card small{color:inherit}
.provider-card p{color:#9db0c1}
.provider-card small{color:#7f96a7}
.quality-step,
.surface-note,
.form-card .premium-details{
  background:rgba(255,255,255,.04);
  border-color:rgba(154,205,232,.14);
  color:#dcecf2;
}
.quality-step span,
.surface-note p{color:#8da7b8}
.offer-row{border-bottom-color:rgba(255,255,255,.08)}
.detail-list dt{color:#7f9baa}
.detail-list dd{color:#f0f7fb}
.empty-state{
  background:rgba(7,29,45,.52);
  border-color:rgba(120,190,203,.25);
  color:#9db0c1;
}
.auth-card h1{
  font-family:var(--font-display);
  font-size:clamp(2rem, 1.5rem + 1.4vw, 2.6rem);
  margin:8px 0 18px;
}
.auth-card p a{color:var(--brand-hot);font-weight:700}
.form-grid.one{grid-template-columns:1fr}
.form-card .stack-md{margin-top:4px}
.section-head-spaced{margin-top:48px}
.section-head-spaced + .pricing-grid,
.section-head-spaced + .cards-grid{margin-top:8px}
.flash.warning{
  background:rgba(255,194,74,.12);
  color:#ffd27d;
  border-color:rgba(255,194,74,.28);
}
@media (prefers-reduced-motion: reduce){
  .hero-content > *,
  .hero-media,
  .hero-booking,
  .reveal{
    animation:none !important;
    opacity:1 !important;
    transform:none !important;
  }
}
