@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;500;700&family=Outfit:wght@400;500;600;700&family=Sora:wght@300;400;500;600&family=IBM+Plex+Mono:wght@400;500&display=swap');

:root {
  --bg: #0a1220;
  --bg-soft: #101d31;
  --panel: rgba(16, 29, 49, 0.86);
  --panel-solid: #112240;
  --text: #f4f7fb;
  --muted: #b7c3d0;
  --line: rgba(105, 183, 255, 0.18);
  --blue: #42b8ff;
  --blue-soft: #93deff;
  --cyan-head: #7fd8ff;
  --gold: #d8b04f;
  --gold-deep: #8b6a20;
  --green: #27c76f;
  --green-dark: #117743;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
  --max: 1680px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Montserrat", "Sora", Arial, Helvetica, sans-serif;
  color: var(--text);
  background:
    linear-gradient(180deg, #07101c 0%, #0a1424 42%, var(--bg) 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  opacity: 0.35;
}

body.is-locked {
  overflow: hidden;
}

a { color: var(--blue-soft); }
img { max-width: 100%; display: block; }

.shell { position: relative; z-index: 1; }
.container { width: min(100% - 32px, var(--max)); margin: 0 auto; }

.intro-screen {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at center, rgba(66, 184, 255, 0.16), transparent 28%),
    linear-gradient(180deg, #040810 0%, #09121e 100%);
  transition: opacity 1.15s ease, visibility 1.15s ease;
}

.intro-screen::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 35%, rgba(147, 222, 255, 0.2) 50%, transparent 65%);
  transform: translateX(-120%);
  animation: introSweep 2.4s ease 0.35s 1 forwards;
}

.intro-screen.is-done {
  opacity: 0;
  visibility: hidden;
}

.intro-inner {
  position: relative;
  z-index: 1;
  width: min(100%, 820px);
  padding: 24px;
  text-align: center;
}

.intro-logo {
  width: min(100%, 760px);
  margin: 0 auto 18px;
  opacity: 0;
  transform: scale(0.96);
  animation: introLogo 1.15s ease 0.2s forwards;
}

.intro-tagline {
  opacity: 0;
  color: #f7feff;
  font-size: clamp(16px, 2vw, 24px);
  font-family: "Montserrat", Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: none;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.75), 0 0 26px rgba(180, 241, 255, 0.42);
  animation: introTag 0.9s ease 1.15s forwards;
}

@keyframes introLogo {
  from { opacity: 0; transform: scale(0.96) translateY(10px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

@keyframes introTag {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes introSweep {
  from { transform: translateX(-120%); opacity: 0; }
  30% { opacity: 1; }
  to { transform: translateX(120%); opacity: 0; }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(14px);
  background: rgba(7, 16, 28, 0.78);
  border-bottom: 1px solid rgba(105, 183, 255, 0.12);
}

.header-inner {
  min-height: 108px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.floating-brand {
  display: inline-flex;
  align-items: center;
  opacity: 0;
  transform: translateY(-8px);
  pointer-events: none;
  transition: opacity 0.32s ease, transform 0.32s ease;
}

.floating-brand img {
  width: clamp(180px, 16vw, 270px);
  filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.24));
}

body.logo-docked .floating-brand {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand-integrated {
  position: relative;
  padding: 8px 10px 8px 0;
}

.brand-integrated::after {
  content: "";
  position: absolute;
  left: 18px;
  right: 8px;
  bottom: 12px;
  height: 16px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(66, 184, 255, 0.14) 0%, rgba(66, 184, 255, 0.05) 50%, transparent 78%);
  filter: blur(12px);
  opacity: 0.7;
  z-index: 0;
}

.brand-integrated img {
  position: relative;
  z-index: 1;
  width: clamp(150px, 12vw, 210px);
  opacity: 0.94;
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.16));
}

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

.site-nav a {
  text-decoration: none;
  color: var(--muted);
  font-size: 12px;
  font-family: "IBM Plex Mono", monospace;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 10px 10px;
  border-radius: 999px;
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--text);
  background: rgba(66, 184, 255, 0.08);
}

.site-nav a.availability-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 38px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(65, 220, 132, 0.5);
  background: linear-gradient(135deg, #30d97a, #1aa85c);
  color: #ffffff;
  font-size: 12px;
  font-family: "IBM Plex Mono", monospace;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
  text-decoration: none;
  -webkit-text-fill-color: #ffffff;
  box-shadow: 0 16px 34px rgba(13, 88, 48, 0.18), inset 0 1px 0 rgba(255,255,255,0.18);
  animation: availabilityChipPulse 8s ease-in-out infinite;
}

.site-nav a.availability-chip:hover,
.site-nav a.availability-chip:focus-visible,
.site-nav a.availability-chip:visited {
  color: #ffffff;
  -webkit-text-fill-color: #ffffff;
  background: linear-gradient(135deg, #30d97a, #1aa85c);
}

.availability-chip::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.95);
  flex: 0 0 auto;
}

@keyframes availabilityChipPulse {
  0%, 85%, 100% {
    transform: scale(1);
    box-shadow: 0 16px 34px rgba(13, 88, 48, 0.18), inset 0 1px 0 rgba(255,255,255,0.18);
  }
  90% {
    transform: scale(1.03);
    box-shadow: 0 22px 42px rgba(13, 88, 48, 0.25), inset 0 1px 0 rgba(255,255,255,0.22);
  }
  94% {
    transform: scale(0.995);
    box-shadow: 0 14px 30px rgba(13, 88, 48, 0.16), inset 0 1px 0 rgba(255,255,255,0.16);
  }
}


.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 184px;
  min-height: 56px;
  padding: 0 26px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.18);
  text-decoration: none;
  font-weight: 700;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 0.96rem;
  letter-spacing: 0.05em;
  color: #ffffff;
  -webkit-text-fill-color: #ffffff;
  text-shadow: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.btn:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(0,0,0,0.32); filter: saturate(1.06); }
.btn-call {
  background: linear-gradient(135deg, #30d97a, var(--green) 45%, var(--green-dark));
  color: #fff;
  box-shadow: 0 18px 34px rgba(17, 119, 67, 0.32), inset 0 1px 0 rgba(255,255,255,0.18);
}
.btn-call:hover {
  box-shadow: 0 22px 38px rgba(17, 119, 67, 0.38), inset 0 1px 0 rgba(255,255,255,0.22);
}
.btn-book {
  background: linear-gradient(135deg, var(--blue), #1473cf);
  color: #fff;
  box-shadow: 0 18px 34px rgba(20, 115, 207, 0.28), inset 0 1px 0 rgba(255,255,255,0.18);
}
.btn-ghost { border: 1px solid var(--line); color: var(--text); background: rgba(255,255,255,0.02); }
.btn-pricing,
.btn-email-accent {
  background: linear-gradient(135deg, #efcc72, var(--gold));
  color: #fff;
  box-shadow: 0 18px 34px rgba(139, 106, 32, 0.26), inset 0 1px 0 rgba(255,255,255,0.18);
}

.about-cta-row .btn {
  text-shadow: none;
}

.hero {
  padding: 68px 0 18px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(13, 24, 42, 0.22), rgba(13, 24, 42, 0)),
    linear-gradient(135deg, rgba(255,255,255,0.02), rgba(255,255,255,0));
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
  align-items: stretch;
  justify-items: center;
  position: relative;
  z-index: 1;
}

.hero-ambient {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  display: none;
}

.panel {
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.016);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(18px) saturate(114%);
  -webkit-backdrop-filter: blur(18px) saturate(114%);
}

.hero-copy,
.hero-card {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,0.09), rgba(255,255,255,0.035));
  box-shadow: 0 22px 62px rgba(0, 0, 0, 0.14);
  backdrop-filter: blur(26px) saturate(120%);
  -webkit-backdrop-filter: blur(26px) saturate(120%);
}

.hero-copy {
  padding: 8px 0 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-radius: 0;
  height: 100%;
  max-width: 1120px;
  width: 100%;
  margin: 0 auto;
}

.hero-copy-layout {
  display: block;
  width: 100%;
}

.hero-brand-lockup {
  display: grid;
  gap: 14px;
  width: min(100%, 100%);
  padding: 0;
  justify-items: start;
}

.hero-brand-logo {
  width: min(100%, 340px);
  margin: 0;
  filter: drop-shadow(0 14px 28px rgba(0, 0, 0, 0.16));
}

.hero-composition {
  display: grid;
  grid-template-columns: minmax(0, 720px) 260px;
  gap: 56px;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.hero-main {
  display: grid;
  gap: 18px;
  min-width: 0;
  max-width: 720px;
}

.hero-side {
  display: grid;
  gap: 14px;
  width: 300px;
  align-self: start;
}

.hero h1,
.page-hero h1 {
  margin: 0 0 14px;
  font-size: clamp(38px, 7vw, 72px);
  font-family: "Outfit", "Montserrat", Arial, sans-serif;
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.03em;
  color: #f7feff;
}

.hero p,
.page-hero p,
.section-copy {
  color: var(--muted);
  font-size: 18px;
  font-family: "Sora", "Montserrat", Arial, sans-serif;
  line-height: 1.75;
}

.hero-live-copy h3,
.section h2,
.profile-card h3 {
  font-family: "Montserrat", Arial, sans-serif;
}

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

.hero-grid {
  justify-items: stretch;
}

.hero-copy {
  max-width: none;
}

.hero-ambient {
  inset: -2% -1% 4%;
}

.hero-wash {
  position: absolute;
  border-radius: 999px;
  filter: blur(52px);
  opacity: 0.9;
}

.hero-wash-primary {
  width: 58%;
  height: 78%;
  left: -4%;
  top: 2%;
  background:
    radial-gradient(circle at 42% 42%, rgba(74, 141, 223, 0.3) 0%, rgba(74, 141, 223, 0.16) 32%, rgba(74, 141, 223, 0) 74%);
}

.hero-wash-secondary {
  width: 42%;
  height: 56%;
  right: 6%;
  bottom: 10%;
  background:
    radial-gradient(circle at 50% 50%, rgba(216, 176, 79, 0.16) 0%, rgba(216, 176, 79, 0.08) 34%, rgba(216, 176, 79, 0) 76%);
}

.hero-composition {
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.76fr);
  gap: clamp(32px, 4vw, 68px);
  align-items: stretch;
}

.hero-main {
  max-width: none;
  gap: 22px;
  align-content: start;
}

.hero-side {
  width: auto;
  max-width: 390px;
  justify-self: end;
  align-self: stretch;
}

.hero-copy-block {
  display: grid;
  gap: 12px;
}

.hero-main h1 {
  font-size: clamp(38px, 5.2vw, 64px);
  font-weight: 650;
  line-height: 0.9;
  letter-spacing: -0.065em;
  max-width: 9ch;
  color: #ffffff;
}

.hero-title-line {
  display: block;
}

.hero-title-line-gold {
  color: var(--gold);
}

.hero-lede {
  max-width: none;
  margin: 0;
  color: #ffffff;
  font-size: clamp(16px, 1.25vw, 18px);
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.45;
  white-space: nowrap;
  text-shadow: none;
}

.hero-action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.hero-call-shell {
  position: relative;
  min-width: 184px;
}

.hero-action-row .btn,
.hero-call-shell {
  min-width: 184px;
}

.hero-action-row .btn {
  color: #ffffff;
}

.hero-call-shell.is-idle .hero-call-cta {
  opacity: 0.18;
  pointer-events: none;
  animation: none;
}

.hero-call-help {
  position: fixed;
  left: 50%;
  top: 50%;
  display: grid;
  gap: 8px;
  width: min(92vw, 340px);
  padding: 18px 18px 16px;
  border-radius: 20px;
  border: 1px solid rgba(147, 222, 255, 0.14);
  background: linear-gradient(180deg, rgba(14, 24, 40, 0.98), rgba(9, 16, 28, 0.96));
  color: #ffffff;
  box-shadow: 0 28px 60px rgba(1, 7, 16, 0.34);
  opacity: 0;
  transform: translate(-50%, calc(-50% + 12px)) scale(0.96);
  pointer-events: none;
  transition: opacity 0.28s ease, transform 0.32s ease;
  z-index: 35;
}

body.has-idle-help::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 34;
  background: rgba(4, 9, 16, 0.62);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

body.has-idle-help .hero-call-help {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
  pointer-events: auto;
}

.hero-call-help-title {
  font-size: 11px;
  font-family: "IBM Plex Mono", monospace;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue-soft);
}

.hero-call-help-copy {
  margin: 0;
  color: rgba(235, 243, 250, 0.78);
  font-size: 14px;
  line-height: 1.55;
}

.hero-call-help-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 999px;
  background: linear-gradient(135deg, #30d97a, var(--green) 45%, var(--green-dark));
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
  line-height: 1;
  box-shadow: 0 18px 32px rgba(17, 119, 67, 0.24), inset 0 1px 0 rgba(255,255,255,0.18);
}

.hero-call-help-link:hover {
  text-decoration: none;
}

@keyframes callAttention {
  0%, 86%, 100% {
    transform: scale(1);
    box-shadow: 0 18px 34px rgba(17, 119, 67, 0.32), inset 0 1px 0 rgba(255,255,255,0.18);
  }
  90% {
    transform: scale(1.04);
    box-shadow: 0 24px 42px rgba(17, 119, 67, 0.4), inset 0 1px 0 rgba(255,255,255,0.2);
  }
  94% {
    transform: scale(0.99);
    box-shadow: 0 16px 28px rgba(17, 119, 67, 0.28), inset 0 1px 0 rgba(255,255,255,0.16);
  }
}

.hero-trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  align-items: center;
  color: rgba(233, 242, 250, 0.84);
  font-size: 12px;
  font-family: "IBM Plex Mono", monospace;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-trust-item {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  min-width: 170px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(147, 222, 255, 0.12);
  background: rgba(255,255,255,0.02);
  color: #ffffff;
  text-decoration: none;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.hero-trust-item:not(:last-child)::after {
  content: none;
}

.hero-trust-item:hover {
  transform: translateY(-1px);
  border-color: rgba(216, 176, 79, 0.24);
  background: rgba(255,255,255,0.04);
  color: #f7feff;
}

.hero-status-card {
  display: grid;
  gap: 16px;
  height: 100%;
  padding: 24px;
  border-radius: 28px;
  border: 1px solid rgba(147, 222, 255, 0.18);
  background:
    linear-gradient(180deg, rgba(14, 24, 40, 0.94), rgba(9, 16, 28, 0.9));
  box-shadow: 0 28px 60px rgba(1, 7, 16, 0.28);
}

.hero-status-card.is-closed {
  border-color: rgba(216, 176, 79, 0.24);
}

.hero-status-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.hero-card-status {
  margin-bottom: 10px;
  color: var(--blue-soft);
  font-size: 11px;
  font-family: "IBM Plex Mono", monospace;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-status-card.is-closed .hero-card-status {
  color: var(--gold);
}

.hero-card-label {
  color: var(--blue-soft);
  font-size: 11px;
  font-family: "IBM Plex Mono", monospace;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-card-heading {
  margin: 0;
  color: #f7feff;
  font-size: clamp(34px, 3.2vw, 46px);
  font-family: "Outfit", "Montserrat", Arial, sans-serif;
  font-weight: 650;
  line-height: 0.9;
  letter-spacing: -0.065em;
  max-width: 9ch;
}

.hero-card-line {
  display: block;
}

.hero-card-line-gold {
  color: var(--gold);
}

.hero-live-clock {
  min-width: 118px;
  padding: 8px 12px;
  border-radius: 16px;
  border: 1px solid rgba(147, 222, 255, 0.12);
  background: rgba(255,255,255,0.04);
  color: #f7feff;
  font-size: 15px;
  font-family: "IBM Plex Mono", monospace;
  font-weight: 600;
  text-align: center;
  white-space: nowrap;
}

.hero-status-copy {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.text-live-gold {
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 0.08em;
}

.hero-hours-card {
  display: grid;
  gap: 10px;
  padding: 18px;
  border-radius: 18px;
  border: 1px solid rgba(147, 222, 255, 0.12);
  background: rgba(255,255,255,0.025);
}

.hero-hours-list {
  display: grid;
  gap: 10px;
}

.hero-hours-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-top: 10px;
  border-top: 1px solid rgba(255,255,255,0.08);
  color: var(--muted);
  font-size: 14px;
}

.hero-hours-row:first-child {
  padding-top: 0;
  border-top: 0;
}

.hero-hours-row strong {
  color: #f7feff;
  font-weight: 700;
}

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

.hero-step-card {
  display: grid;
  gap: 14px;
  padding: 22px 20px 20px;
  border-radius: 22px;
  border: 1px solid rgba(147, 222, 255, 0.12);
  background: rgba(255,255,255,0.02);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.hero-step-card:hover {
  transform: translateY(-4px);
  border-color: rgba(216, 176, 79, 0.28);
  background: rgba(255,255,255,0.035);
  box-shadow: 0 18px 36px rgba(2, 8, 18, 0.2);
}

.hero-step-rule {
  width: 64px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold), rgba(216, 176, 79, 0));
}

.hero-step-number {
  color: rgba(216, 176, 79, 0.92);
  font-size: 12px;
  font-family: "IBM Plex Mono", monospace;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.hero-step-card strong {
  color: #f7feff;
  font-size: 21px;
  line-height: 1.15;
}

.hero-step-card span {
  color: var(--muted);
  line-height: 1.68;
}

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

.service-tile {
  padding: 14px 14px 13px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(14px) saturate(116%);
  -webkit-backdrop-filter: blur(14px) saturate(116%);
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.service-tile strong {
  display: block;
  margin-bottom: 6px;
  font-family: "Montserrat", Arial, sans-serif;
}

.service-tile span {
  color: var(--muted);
  line-height: 1.55;
  font-size: 14px;
  font-family: "Quicksand", Arial, sans-serif;
}

.service-tile:hover,
.bullet:hover,
.mini-card:hover,
.compact-step:hover {
  transform: translateY(-2px);
  border-color: rgba(147, 222, 255, 0.3);
  background: rgba(255,255,255,0.045);
}

.compact-flow {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  margin-top: 14px;
}

.compact-step {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 12px;
  align-items: center;
  padding: 11px 13px;
  border-radius: 14px;
  width: fit-content;
  min-width: 250px;
  max-width: 78%;
  background: rgba(255,255,255,0.035);
  border: 1px solid rgba(147, 222, 255, 0.12);
  backdrop-filter: blur(10px) saturate(114%);
  -webkit-backdrop-filter: blur(10px) saturate(114%);
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.compact-step strong {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(127, 216, 255, 0.12);
  color: var(--cyan-head);
}

.compact-step span {
  color: var(--muted);
  line-height: 1.5;
}

.step-list,
.bullet-list,
.faq-list {
  display: grid;
  gap: 14px;
}

.step,
.bullet,
.faq-item,
.mini-card {
  padding: 16px 16px 14px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255,255,255,0.016);
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.step strong,
.bullet strong,
.faq-item strong { display: block; margin-bottom: 6px; font-family: "Outfit", "Montserrat", Arial, sans-serif; }

.step span,
.bullet span,
.faq-item p,
.mini-card p { color: var(--muted); line-height: 1.65; margin: 0; font-family: "Quicksand", Arial, sans-serif; }

.bullet-compact {
  padding: 12px 14px 11px;
}

.bullet-compact strong {
  margin-bottom: 4px;
  font-size: 17px;
  line-height: 1.15;
}

.bullet-compact span {
  font-size: 14px;
  line-height: 1.45;
}

.payment-card {
  display: grid;
  gap: 10px;
}

.payment-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.payment-tile {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 8px 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(17, 34, 64, 0.08);
  box-shadow: 0 10px 24px rgba(5, 11, 20, 0.12);
}

.payment-brand {
  display: block;
  height: 22px;
  width: auto;
  max-width: 138px;
  object-fit: contain;
}

.payment-brand.mastercard {
  height: 26px;
}

.payment-brand.discover,
.payment-brand.applepay {
  height: 20px;
}

.payment-brand.amex {
  height: 24px;
}

.footer-card-legal {
  display: grid;
  gap: 10px;
}

.footer-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-brandline {
  display: grid;
  gap: 3px;
}

.footer-mark {
  color: rgba(244,247,251,0.78);
  font-size: 11px;
  font-family: "IBM Plex Mono", monospace;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-copy {
  color: rgba(244,247,251,0.5);
  font-size: 11px;
  line-height: 1.4;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 11px;
}

.footer-links a {
  display: inline-block;
  padding: 0;
  color: rgba(187, 208, 228, 0.62);
  text-decoration: none;
  font-family: "IBM Plex Mono", monospace;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.footer-links a:hover {
  color: rgba(233, 242, 250, 0.86);
  opacity: 1;
}

.footer-legal,
.footer-disclaimer {
  max-width: none;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(147, 222, 255, 0.06);
  background: rgba(255,255,255,0.012);
  color: rgba(244,247,251,0.54);
  line-height: 1.5;
}

.footer-legal {
  font-size: 10.5px;
  letter-spacing: 0.02em;
}

.footer-disclaimer {
  font-size: 11.5px;
}

.policy-card {
  padding: 28px;
  border-radius: 24px;
}

.policy-card h2 {
  margin: 22px 0 10px;
}

.policy-card p,
.policy-card li {
  color: var(--muted);
  line-height: 1.75;
}

.policy-card ul {
  margin: 0 0 0 18px;
  padding: 0;
}

.page-hero {
  padding: 52px 0 18px;
}

.page-hero-card {
  padding: 32px;
  border-radius: 28px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(17,34,64,0.7), rgba(10,18,32,0.78));
}

.section {
  padding: 28px 0;
}

.section-columns {
  padding-top: 4px;
}

.section-columns-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
  align-items: start;
}

.section-column {
  min-width: 0;
}

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

.section-column .bullet-list {
  align-items: start;
}

.section-column .bullet-list .bullet-compact {
  width: min(100%, 82%);
}

.section h2 {
  margin: 0 0 12px;
  font-size: clamp(24px, 3vw, 36px);
  font-family: "Outfit", "Montserrat", Arial, sans-serif;
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: #f7feff;
}

.section-columns h2 {
  font-size: clamp(22px, 2.4vw, 30px);
  letter-spacing: -0.02em;
}

.section-label {
  margin-bottom: 10px;
  color: var(--blue-soft);
  font-size: 12px;
  font-family: "IBM Plex Mono", monospace;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.section-columns .section-label {
  color: var(--cyan-head);
}

.section-columns h2 {
  color: #f7feff;
  text-shadow: none;
}

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

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

.reveal-grid > * {
  animation: softReveal 0.55s ease both;
}

.reveal-grid > *:nth-child(2) { animation-delay: 0.08s; }
.reveal-grid > *:nth-child(3) { animation-delay: 0.16s; }
.reveal-grid > *:nth-child(4) { animation-delay: 0.24s; }
.reveal-grid > *:nth-child(5) { animation-delay: 0.32s; }
.reveal-grid > *:nth-child(6) { animation-delay: 0.4s; }

@keyframes softReveal {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.about-grid {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 26px;
  align-items: start;
}

.profile-card {
  padding: 24px;
  border-radius: 24px;
  text-align: center;
}

.profile-card img {
  width: 180px;
  height: 180px;
  object-fit: cover;
  object-position: center top;
  border-radius: 50%;
  margin: 0 auto 18px;
  border: 2px solid rgba(147, 222, 255, 0.26);
}

.profile-card h3 { margin: 0 0 6px; font-size: 28px; }
.profile-card p { margin: 0 0 18px; color: var(--muted); }

.commission-card {
  margin: 0 0 18px;
  padding: 16px 18px;
  border: 1px solid rgba(147, 222, 255, 0.16);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.025));
  text-align: left;
}

.commission-kicker {
  margin-bottom: 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue-soft);
}

.commission-line {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 6px 0;
  color: var(--muted);
  font-size: 15px;
}

.commission-line strong {
  color: var(--text);
  font-weight: 700;
}

.price-card,
.contact-card,
.map-card {
  padding: 28px;
  border-radius: 24px;
}

.map-card-copy {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
}

.map-card-copy .section-copy {
  margin: 0;
}

.map-card-globe {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 88px;
  height: 88px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(216, 176, 79, 0.12), rgba(216, 176, 79, 0.03));
  border: 1px solid rgba(216, 176, 79, 0.24);
}

.map-card-globe svg {
  width: 48px;
  height: 48px;
  fill: none;
  stroke: var(--gold);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.price-big {
  font-size: clamp(52px, 8vw, 88px);
  line-height: 1;
  margin-bottom: 8px;
  color: var(--gold);
}

.price-breakdown-label {
  margin-top: 12px;
  color: rgba(228, 235, 245, 0.58);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.price-status {
  display: inline-flex;
  align-items: center;
  margin-top: 14px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(147, 222, 255, 0.22);
  background: rgba(255,255,255,0.04);
  color: var(--blue-soft);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.price-note,
.policy-copy,
.contact-copy { color: var(--muted); line-height: 1.75; }

.terms-card {
  margin-top: 20px;
  padding: 24px;
  border: 1px solid rgba(147, 222, 255, 0.16);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.025));
}

.terms-card h2 {
  margin-bottom: 10px;
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  margin: 18px 0 24px;
}

.price-table th,
.price-table td {
  padding: 14px 10px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  text-align: left;
  vertical-align: top;
}

.price-table th {
  color: var(--blue-soft);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-footer {
  padding: 24px 0 34px;
  color: rgba(244,247,251,0.52);
  font-size: 12px;
}

.footer-card {
  padding: 16px;
  border-radius: 18px;
  border: 1px solid rgba(147, 222, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(11, 20, 34, 0.76), rgba(8, 15, 27, 0.72));
  box-shadow: 0 12px 28px rgba(1, 7, 16, 0.12);
}

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

  .hero-composition {
    grid-template-columns: 1fr;
    gap: 20px;
    justify-content: stretch;
  }

  .hero-main,
  .hero-side {
    max-width: none;
    width: 100%;
  }

  .hero {
    padding: 62px 0 40px;
  }

  .hero-main h1 {
    max-width: 11ch;
    font-size: clamp(38px, 8vw, 58px);
  }

  .hero-lede {
    max-width: none;
  }

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

  .hero-action-row .btn {
    width: 100%;
  }

  .hero-call-shell {
    width: 100%;
  }

  .hero-call-help {
    width: min(calc(100vw - 28px), 340px);
  }

  .hero-trust-strip {
    gap: 8px 14px;
  }

  .hero-status-card {
    padding: 24px;
  }

  .hero-status-card-head {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-live-clock {
    width: fit-content;
  }

  .hero-steps-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .hero-copy-layout {
    display: block;
    min-height: 0;
  }

  .hero-copy,
  .hero-card,
  .panel,
  .page-hero-card,
  .price-card,
  .contact-card,
  .map-card {
    padding: 24px;
    border-radius: 22px;
  }

  .hero-copy {
    padding: 0;
    border-radius: 0;
  }

  .map-card-copy {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-card {
    padding: 14px;
    border-radius: 16px;
  }

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

  .footer-links {
    width: 100%;
  }

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

  .compact-step {
    min-width: 0;
    max-width: 100%;
  }

  .btn {
    min-height: 56px;
    padding: 0 24px;
    font-size: 0.96rem;
  }

  .site-nav {
    justify-content: flex-start;
  }

  .header-inner {
    padding: 14px 0;
    align-items: flex-start;
    flex-direction: column;
  }

  .floating-brand img {
    width: min(100%, 220px);
  }

  .brand-integrated {
    padding-right: 0;
  }

  .brand-integrated img {
    width: min(100%, 180px);
  }

}

@media (max-width: 640px) {
  .hero-main h1 {
    font-size: clamp(34px, 12vw, 48px);
  }

  .hero-ambient {
    inset: 0;
  }

  .hero-wash-primary {
    width: 92%;
    height: 54%;
    left: -16%;
    top: 2%;
  }

  .hero-wash-secondary {
    width: 74%;
    height: 34%;
    right: -14%;
    bottom: 16%;
  }

  .hero-status-card,
  .hero-step-card,
  .hero-call-help,
  .footer-legal,
  .footer-disclaimer {
    padding: 12px;
  }
}

@media (min-width: 1700px) {
  .container { width: min(100% - 64px, 1860px); }
  .hero-grid { grid-template-columns: minmax(0, 1fr); }
  .hero-copy { padding: 48px; }
  .hero-card { padding: 34px; }
  .hero-brand-logo { width: min(100%, 480px); }
  .grid-3 { grid-template-columns: repeat(3, minmax(280px, 1fr)); }
}

@media (prefers-reduced-motion: reduce) {
  .hero-eyebrow-dot,
  .hero-call-cta {
    animation: none;
  }

  .hero-call-cta,
  .hero-call-help {
    transition: none;
  }
}

.is-hidden { display: none !important; }
