:root {
  --black: #080807;
  --ink: #111318;
  --panel: #151619;
  --panel-2: #1f2428;
  --gold: #f0c56d;
  --gold-deep: #b9852c;
  --cream: #fff8e8;
  --muted: #bfc4c9;
  --line: rgba(255, 255, 255, 0.14);
  --teal: #25d0b2;
  --copper: #d07a45;
  --steel: #344854;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
  --radius: 8px;
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--cream);
  background: var(--black);
  line-height: 1.5;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

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

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

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 1000;
  padding: 0.65rem 0.8rem;
  color: var(--black);
  background: var(--gold);
  transform: translateY(-180%);
  border-radius: 6px;
}

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

.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;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 1rem;
  align-items: center;
  padding: 0.75rem clamp(1rem, 3vw, 3rem);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(8, 8, 7, 0.84);
  backdrop-filter: blur(18px);
}

.site-header.is-scrolled {
  background: rgba(8, 8, 7, 0.94);
}

.brand {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 0.8rem;
}

.brand-logo {
  width: 3.25rem;
  height: 3.25rem;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid rgba(240, 197, 109, 0.28);
  box-shadow: 0 0 0 4px rgba(240, 197, 109, 0.08);
}

.brand-copy {
  display: grid;
  min-width: 0;
}

.brand-name {
  font-size: 1rem;
  font-weight: 800;
}

.brand-tag {
  overflow: hidden;
  color: var(--muted);
  font-size: 0.78rem;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.site-nav a {
  padding: 0.65rem 0.75rem;
  color: #e8e4d8;
  border-radius: 6px;
  font-size: 0.92rem;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a[aria-current="page"] {
  color: var(--black);
  background: var(--gold);
}

.header-portal,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  min-height: 2.8rem;
  padding: 0.78rem 1rem;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 800;
  line-height: 1.1;
  text-align: center;
  overflow-wrap: anywhere;
}

.header-portal {
  color: var(--black);
  background: var(--gold);
  box-shadow: 0 10px 30px rgba(240, 197, 109, 0.2);
}

.nav-toggle {
  display: none;
  width: 2.8rem;
  height: 2.8rem;
  place-items: center;
  padding: 0.6rem;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.06);
}

.nav-toggle span {
  display: block;
  width: 1.2rem;
  height: 2px;
  margin: 3px auto;
  background: var(--cream);
}

.hero {
  position: relative;
  min-height: min(78vh, calc(100vh - 6rem));
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 8, 7, 0.94) 0%, rgba(8, 8, 7, 0.78) 44%, rgba(8, 8, 7, 0.34) 72%),
    url("cat-hero.webp") center right / cover no-repeat;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 7rem;
  background: linear-gradient(0deg, var(--black), transparent);
  pointer-events: none;
}

.hero-shell {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: min(78vh, calc(100vh - 6rem));
  grid-template-columns: minmax(0, 1fr) minmax(9rem, 15rem) minmax(18rem, 23rem);
  grid-template-areas:
    "copy mascot portal"
    "actions mascot portal";
  gap: clamp(1.25rem, 3vw, 3rem);
  align-items: center;
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  padding: clamp(3.2rem, 6vw, 5rem) 0 3.4rem;
}

.hero-copy {
  grid-area: copy;
  max-width: 38rem;
  transform: translateY(1.6rem);
}

.hero-mascot {
  grid-area: mascot;
  display: grid;
  position: relative;
  align-self: center;
  justify-self: center;
  place-items: center;
  pointer-events: auto;
  transform: translate(0.35rem, -10.2rem);
  z-index: 1;
}

.hero-copy,
.portal-panel {
  position: relative;
  z-index: 1;
}

.eyebrow {
  margin: 0 0 0.7rem;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 10ch;
  margin-bottom: 1rem;
  color: #fffefa;
  font-size: 4.8rem;
  line-height: 0.94;
}

h2 {
  color: #fffefa;
  font-size: clamp(2rem, 2.8rem, 2.8rem);
  line-height: 1.04;
}

h3 {
  color: #fffefa;
  font-size: 1.1rem;
}

.hero-lede {
  max-width: 40rem;
  color: #e0e3df;
  font-size: 1.18rem;
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.55rem;
  max-width: 40rem;
  margin-top: 1.35rem;
}

.hero-proof span {
  display: grid;
  min-height: 4.25rem;
  align-content: center;
  gap: 0.16rem;
  padding: 0.75rem;
  border: 1px solid rgba(240, 197, 109, 0.22);
  border-radius: 6px;
  color: var(--muted);
  background:
    linear-gradient(90deg, rgba(240, 197, 109, 0.1), rgba(255, 255, 255, 0.04)),
    rgba(8, 8, 7, 0.5);
  font-size: 0.8rem;
}

.hero-proof strong {
  display: block;
  color: var(--gold);
  font-size: 0.82rem;
}

.hero-actions {
  grid-area: actions;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 0.35rem;
}

.button-primary {
  color: var(--black);
  background: var(--gold);
  box-shadow: 0 18px 40px rgba(240, 197, 109, 0.2);
}

.button-ghost {
  color: var(--cream);
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.07);
}

.button-outline {
  color: var(--cream);
  border-color: rgba(240, 197, 109, 0.42);
  background: rgba(240, 197, 109, 0.08);
}

.button:hover,
.button:focus-visible,
.header-portal:hover,
.header-portal:focus-visible {
  transform: translateY(-1px);
}

.portal-panel {
  grid-area: portal;
  padding: 1.2rem;
  border: 1px solid rgba(240, 197, 109, 0.24);
  border-radius: var(--radius);
  background: rgba(13, 14, 15, 0.86);
  box-shadow: var(--shadow);
}

.panel-topline {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 1rem;
  color: var(--muted);
  font-size: 0.84rem;
}

.status-dot {
  width: 0.65rem;
  height: 0.65rem;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 4px rgba(37, 208, 178, 0.16);
}

.portal-panel h2 {
  margin-bottom: 1rem;
  font-size: 1.55rem;
}

.portal-actions {
  display: grid;
  gap: 0.7rem;
}

.portal-actions a {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.8rem;
  align-items: center;
  padding: 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.05);
}

.portal-actions span {
  color: var(--muted);
  font-size: 0.82rem;
}

.portal-actions strong {
  color: var(--gold);
  font-size: 0.9rem;
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  padding: 1rem;
  border-bottom: 1px solid var(--line);
  background: #0e1011;
}

.trust-strip span {
  padding: 0.5rem 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  color: #e7e0d0;
  font-size: 0.85rem;
}

.booking-preview {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(23rem, 0.58fr);
  gap: clamp(2rem, 6vw, 6rem);
  align-items: center;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(rgba(255, 255, 255, 0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.022) 1px, transparent 1px),
    #0b0d0e;
  background-size: 38px 38px;
}

.booking-preview-copy > p:not(.eyebrow) {
  max-width: 46rem;
  color: var(--muted);
}

.booking-preview-schedule {
  overflow: hidden;
  border: 1px solid rgba(240, 197, 109, 0.28);
  border-radius: var(--radius);
  background: #101214;
  box-shadow: var(--shadow);
}

.booking-preview-head,
.booking-preview-schedule > a {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 0.8rem;
  align-items: center;
  min-height: 4.4rem;
  padding: 0.8rem 0.9rem;
  border-bottom: 1px solid var(--line);
}

.booking-preview-head {
  grid-template-columns: auto minmax(0, 1fr) auto;
  min-height: 3.6rem;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.04);
  font-size: 0.76rem;
}

.booking-preview-head > span {
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 4px rgba(37, 208, 178, 0.1);
}

.booking-preview-head small,
.booking-preview-schedule > a small {
  color: var(--teal);
  font-weight: 900;
}

.booking-preview-schedule > a:last-child {
  border-bottom: 0;
}

.booking-preview-schedule > a:hover,
.booking-preview-schedule > a:focus-visible {
  color: var(--black);
  background: var(--gold);
}

.booking-preview-schedule > a:hover small,
.booking-preview-schedule > a:focus-visible small {
  color: #23443e;
}

.booking-preview-schedule > a span {
  min-width: 0;
  overflow-wrap: anywhere;
  font-weight: 850;
}

.booking-preview-schedule > a strong {
  color: var(--gold);
  font-size: 0.86rem;
}

.booking-preview-schedule > a:hover strong,
.booking-preview-schedule > a:focus-visible strong {
  color: var(--black);
}

.quote-launcher {
  display: grid;
  grid-template-columns: minmax(0, 0.62fr) minmax(28rem, 0.9fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
  border-bottom: 1px solid var(--line);
}

.quote-launcher-copy {
  position: sticky;
  top: 6rem;
}

.quote-launcher-copy p:not(.eyebrow),
.quote-launcher-card small {
  color: var(--muted);
}

.quote-launcher-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

.quote-launcher-card {
  display: grid;
  min-height: 10.5rem;
  align-content: space-between;
  gap: 0.65rem;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at top right, rgba(37, 208, 178, 0.12), transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.035)),
    #101214;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.22);
  transform: rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
  transition:
    border-color 180ms ease,
    transform 180ms ease,
    background 180ms ease;
}

.quote-launcher-card:hover,
.quote-launcher-card:focus-visible {
  border-color: rgba(240, 197, 109, 0.5);
  background:
    radial-gradient(circle at top right, rgba(37, 208, 178, 0.18), transparent 44%),
    linear-gradient(180deg, rgba(240, 197, 109, 0.13), rgba(255, 255, 255, 0.04)),
    #121517;
}

.quote-launcher-card.is-featured {
  border-color: rgba(240, 197, 109, 0.46);
  background:
    radial-gradient(circle at top right, rgba(240, 197, 109, 0.22), transparent 48%),
    linear-gradient(145deg, rgba(240, 197, 109, 0.18), rgba(37, 208, 178, 0.08)),
    #111315;
}

.quote-launcher-card span {
  display: inline-flex;
  width: 2.2rem;
  height: 2.2rem;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--black);
  background: var(--gold);
  font-weight: 900;
  font-size: 0.78rem;
}

.quote-launcher-card strong {
  color: #fffefa;
  font-size: 1.22rem;
  line-height: 1.15;
}

.quote-launcher-card small {
  font-size: 0.9rem;
  line-height: 1.35;
}

.proof-section {
  display: grid;
  grid-template-columns: minmax(0, 0.64fr) minmax(22rem, 0.86fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
  border-bottom: 1px solid var(--line);
}

.proof-copy p:not(.eyebrow),
.proof-card p,
.quote-copy p,
.legal-hero p,
.legal-copy p,
.trust-card p {
  color: var(--muted);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.proof-card {
  display: grid;
  min-height: 13.5rem;
  align-content: space-between;
  gap: 1rem;
  padding: 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(240, 197, 109, 0.1), rgba(255, 255, 255, 0.035)),
    #101214;
  transform: rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
  transition:
    border-color 180ms ease,
    transform 180ms ease,
    background 180ms ease;
}

.proof-card:hover {
  border-color: rgba(240, 197, 109, 0.44);
}

.proof-card span,
.quote-proof span,
.trust-card span,
.legal-callout span {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.proof-card strong {
  color: #fffefa;
  font-size: 1.2rem;
  line-height: 1.18;
}

.section {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  padding: clamp(4rem, 7vw, 6rem) 0;
}

html.has-reveal [data-reveal] {
  opacity: 0;
  transform: translateY(1.1rem);
  transition:
    opacity 620ms ease,
    transform 620ms ease;
  transition-delay: var(--reveal-delay, 0ms);
}

html.has-reveal [data-reveal].is-revealed {
  opacity: 1;
  transform: translateY(0);
}

.command-section {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(20rem, 0.72fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.command-copy p:not(.eyebrow),
.intelligence-copy p {
  color: var(--muted);
}

.command-board {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
  perspective: 900px;
}

.command-tile {
  display: grid;
  min-height: 10.5rem;
  align-content: space-between;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(240, 197, 109, 0.1), rgba(255, 255, 255, 0.035)),
    #101214;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.24);
  transform: rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
  transition:
    border-color 180ms ease,
    transform 180ms ease,
    background 180ms ease;
}

.command-tile:hover {
  border-color: rgba(240, 197, 109, 0.44);
}

.command-tile span {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.command-tile strong {
  color: #fffefa;
  font-size: 1.05rem;
  line-height: 1.2;
}

.tile-meter {
  height: 0.42rem;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.tile-meter i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--gold), var(--teal));
  box-shadow: 0 0 18px rgba(37, 208, 178, 0.2);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(16rem, 0.55fr);
  gap: 2rem;
  align-items: end;
  margin-bottom: 2rem;
}

.section-heading p:not(.eyebrow),
.split-copy p,
.billing-band p,
.mascot-copy p {
  color: var(--muted);
}

.section-heading.compact {
  display: block;
  max-width: 48rem;
}

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

.service-card {
  display: grid;
  min-height: 15rem;
  align-content: start;
  padding: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.035));
  transform: rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
  transition:
    border-color 180ms ease,
    transform 180ms ease,
    background 180ms ease;
}

.service-card:hover {
  border-color: rgba(240, 197, 109, 0.42);
  background: linear-gradient(180deg, rgba(240, 197, 109, 0.12), rgba(255, 255, 255, 0.035));
}

.service-card svg {
  width: 2.4rem;
  height: 2.4rem;
  margin-bottom: 1.1rem;
  fill: none;
  stroke: var(--gold);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card p,
.workflow-step p,
.signal-stack span {
  color: var(--muted);
}

.service-card a {
  align-self: end;
  justify-self: start;
  margin-top: 0.8rem;
  color: var(--gold);
  font-weight: 900;
  font-size: 0.9rem;
}

.service-card a::after {
  content: " ->";
}

.service-card a:hover,
.service-card a:focus-visible {
  color: #fffefa;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(18rem, 0.58fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.feature-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.4rem;
}

.feature-list span {
  padding: 0.55rem 0.7rem;
  border: 1px solid rgba(37, 208, 178, 0.32);
  border-radius: 999px;
  color: #dffcf7;
  background: rgba(37, 208, 178, 0.08);
  font-size: 0.86rem;
}

.section-actions,
.service-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.signal-stack {
  display: grid;
  gap: 0.8rem;
}

.signal-stack div {
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(240, 197, 109, 0.1), rgba(52, 72, 84, 0.36));
}

.signal-stack strong,
.signal-stack span {
  display: block;
}

.signal-stack strong {
  margin-bottom: 0.35rem;
  color: var(--gold);
}

.portal-section {
  padding-bottom: 3.5rem;
}

.intelligence-section {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(18rem, 0.58fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.intelligence-visual {
  position: relative;
  min-height: 24rem;
  overflow: hidden;
  border: 1px solid rgba(240, 197, 109, 0.24);
  border-radius: var(--radius);
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    #0c0f10;
  background-size: 38px 38px;
  box-shadow: var(--shadow);
}

.intelligence-visual canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.network-readout {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  display: grid;
  gap: 0.25rem;
  padding: 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 6px;
  background: rgba(8, 8, 7, 0.74);
  backdrop-filter: blur(12px);
}

.network-readout span {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.network-readout strong {
  color: #fffefa;
  font-size: 1rem;
  line-height: 1.25;
}

.workflow {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

.workflow-step {
  min-height: 13rem;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: #111417;
  transform: rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
  transition:
    border-color 180ms ease,
    transform 180ms ease,
    background 180ms ease;
}

.workflow-step:hover {
  border-color: rgba(240, 197, 109, 0.42);
  background: #15191c;
}

.workflow-step span {
  display: inline-flex;
  width: 2rem;
  height: 2rem;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  border-radius: 50%;
  color: var(--black);
  background: var(--gold);
  font-weight: 900;
  font-size: 0.8rem;
}

.billing-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 2rem;
  align-items: center;
  padding: 2rem;
  border: 1px solid rgba(240, 197, 109, 0.28);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(240, 197, 109, 0.15), rgba(37, 208, 178, 0.08)),
    #111315;
}

.billing-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  justify-content: flex-end;
}

.billing-page {
  background:
    linear-gradient(140deg, rgba(240, 197, 109, 0.08), transparent 38%),
    linear-gradient(220deg, rgba(37, 208, 178, 0.05), transparent 42%),
    var(--black);
}

.billing-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(20rem, 0.65fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  width: min(1180px, calc(100% - 2rem));
  min-height: calc(100vh - 5rem);
  margin: 0 auto;
  padding: clamp(4rem, 7vw, 6rem) 0;
}

.billing-hero h1 {
  max-width: 11ch;
}

.billing-hero-copy .hero-actions {
  margin-top: 1.5rem;
}

.billing-tool {
  padding: 1.2rem;
  border: 1px solid rgba(240, 197, 109, 0.28);
  border-radius: var(--radius);
  background: rgba(13, 14, 15, 0.9);
  box-shadow: var(--shadow);
}

.billing-tool h2 {
  margin-bottom: 1rem;
  font-size: 1.55rem;
}

.invoice-form {
  display: grid;
  gap: 0.9rem;
}

.form-field {
  display: grid;
  gap: 0.42rem;
  color: #e8e4d8;
  font-weight: 800;
}

.form-field input {
  width: 100%;
  min-height: 3rem;
  padding: 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 6px;
  color: var(--cream);
  background: rgba(255, 255, 255, 0.07);
  font: inherit;
  font-weight: 600;
}

.form-field input:focus {
  outline: 2px solid rgba(240, 197, 109, 0.52);
  outline-offset: 2px;
}

.form-message {
  min-height: 1.3rem;
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.form-message:not(:empty) {
  padding: 0.72rem 0.82rem;
  border: 1px solid rgba(37, 208, 178, 0.26);
  border-radius: 6px;
  color: #dffcf7;
  background: rgba(37, 208, 178, 0.09);
}

.form-message.is-error {
  color: #ffb1a8;
}

.form-message.is-error:not(:empty) {
  border-color: rgba(255, 177, 168, 0.28);
  background: rgba(255, 99, 82, 0.09);
}

.billing-result {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 0.8rem;
  align-items: center;
  margin-top: 1rem;
  padding: 0.85rem;
  border: 1px solid rgba(37, 208, 178, 0.32);
  border-radius: 6px;
  color: #dffcf7;
  background: rgba(37, 208, 178, 0.08);
}

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

.billing-link-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
  padding-top: 1rem;
}

.billing-link-card {
  display: grid;
  gap: 0.4rem;
  min-height: 12rem;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.035));
  transform: rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
  transition:
    border-color 180ms ease,
    transform 180ms ease,
    background 180ms ease;
}

.billing-link-card:hover,
.billing-link-card:focus-visible,
.billing-link-card.is-highlighted {
  border-color: rgba(240, 197, 109, 0.5);
  background: linear-gradient(180deg, rgba(240, 197, 109, 0.13), rgba(255, 255, 255, 0.035));
}

.button.is-highlighted {
  box-shadow:
    0 18px 40px rgba(240, 197, 109, 0.2),
    0 0 0 3px rgba(240, 197, 109, 0.22);
}

.billing-link-card span {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

.billing-link-card strong {
  color: #fffefa;
  font-size: 1.2rem;
}

.billing-link-card small {
  color: var(--muted);
  font-size: 0.92rem;
}

.payment-flow {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(22rem, 0.9fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.payment-flow-copy p,
.payment-rail small {
  color: var(--muted);
}

.payment-rail {
  display: grid;
  gap: 0.75rem;
}

.payment-rail a {
  display: grid;
  grid-template-columns: 2.6rem minmax(0, 0.85fr) minmax(10rem, 1fr);
  gap: 0.85rem;
  align-items: center;
  min-height: 5.4rem;
  padding: 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: linear-gradient(90deg, rgba(240, 197, 109, 0.11), rgba(255, 255, 255, 0.04));
}

.payment-rail a:hover,
.payment-rail a:focus-visible {
  border-color: rgba(240, 197, 109, 0.46);
}

.payment-rail span {
  display: inline-flex;
  width: 2.2rem;
  height: 2.2rem;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--black);
  background: var(--gold);
  font-weight: 900;
  font-size: 0.78rem;
}

.payment-rail strong {
  color: #fffefa;
}

.billing-guardrail {
  display: grid;
  grid-template-columns: minmax(0, 0.65fr) minmax(18rem, 0.75fr);
  gap: 2rem;
  align-items: center;
  padding: 2rem;
  border: 1px solid rgba(240, 197, 109, 0.28);
  border-radius: var(--radius);
  background: #111315;
}

.billing-guardrail p:last-child {
  margin: 0;
  color: var(--muted);
}

.billing-promise {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
  padding-top: 0;
}

.billing-promise article {
  display: grid;
  gap: 0.55rem;
  min-height: 9rem;
  padding: 1rem;
  border: 1px solid rgba(37, 208, 178, 0.26);
  border-radius: var(--radius);
  background: rgba(37, 208, 178, 0.07);
}

.billing-promise span {
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.billing-promise strong {
  color: #fffefa;
  font-size: 1.05rem;
  line-height: 1.2;
}

.service-page {
  background:
    linear-gradient(140deg, rgba(240, 197, 109, 0.08), transparent 34%),
    linear-gradient(230deg, rgba(37, 208, 178, 0.055), transparent 42%),
    var(--black);
}

.page-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(20rem, 0.7fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  width: min(1180px, calc(100% - 2rem));
  min-height: calc(100vh - 5rem);
  margin: 0 auto;
  padding: clamp(4rem, 7vw, 6rem) 0;
}

.page-hero-copy {
  max-width: 47rem;
}

.page-hero-copy h1 {
  max-width: 11ch;
}

.page-hero-copy p:not(.eyebrow),
.service-detail-copy p,
.catalog-card p,
.capability-card p,
.process-line p,
.support-copy p {
  color: var(--muted);
}

.page-hero-visual {
  position: relative;
  display: grid;
  min-height: 32rem;
  align-content: center;
  justify-items: center;
  overflow: hidden;
  border: 1px solid rgba(240, 197, 109, 0.24);
  border-radius: var(--radius);
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(240, 197, 109, 0.12), rgba(37, 208, 178, 0.05)),
    #0c0f10;
  background-size: 42px 42px, 42px 42px, auto, auto;
  box-shadow: var(--shadow);
}

.cat-stage-service {
  width: min(21rem, 64%);
  z-index: 1;
  transform: translateY(-5.2rem);
}

.voice-console {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  display: grid;
  gap: 0.58rem;
}

.voice-console div {
  display: grid;
  gap: 0.15rem;
  padding: 0.72rem 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 6px;
  background: rgba(8, 8, 7, 0.72);
  backdrop-filter: blur(12px);
}

.voice-console span,
.service-metrics span,
.catalog-card span,
.capability-card span,
.process-line span,
.support-result span {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

.voice-console strong {
  color: #fffefa;
  font-size: 0.95rem;
}

.service-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 0 0 1rem;
}

.service-metrics div {
  min-height: 10rem;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(240, 197, 109, 0.11), rgba(255, 255, 255, 0.035)),
    #111315;
}

.service-metrics strong,
.service-metrics p {
  display: block;
}

.service-metrics strong {
  margin: 0.65rem 0 0.35rem;
  color: #fffefa;
  font-size: 1.2rem;
}

.service-metrics p {
  margin: 0;
  color: var(--muted);
}

.voip-pricing {
  display: grid;
  gap: 1.2rem;
}

.voip-package-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.85rem;
}

.voip-package-card {
  display: grid;
  gap: 0.7rem;
  min-height: 13rem;
  padding: 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.035));
}

.voip-package-card-feature {
  border-color: rgba(240, 197, 109, 0.4);
  background:
    linear-gradient(135deg, rgba(240, 197, 109, 0.18), rgba(37, 208, 178, 0.08)),
    #111315;
}

.voip-package-card span {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.voip-package-card strong {
  color: #fffefa;
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  line-height: 1.08;
}

.voip-package-card p {
  margin: 0;
  color: var(--muted);
}

.service-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.68fr) minmax(22rem, 0.82fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.capability-grid,
.catalog-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.capability-card,
.catalog-card {
  display: grid;
  gap: 0.65rem;
  min-height: 13rem;
  padding: 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.035));
  transform: rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
  transition:
    border-color 180ms ease,
    transform 180ms ease,
    background 180ms ease;
}

.catalog-card {
  min-height: 16rem;
}

.catalog-card:hover,
.catalog-card:focus-visible,
.capability-card:hover,
.capability-card:focus-visible {
  border-color: rgba(240, 197, 109, 0.48);
  background: linear-gradient(180deg, rgba(240, 197, 109, 0.13), rgba(255, 255, 255, 0.035));
}

.catalog-card-feature {
  background:
    linear-gradient(135deg, rgba(240, 197, 109, 0.16), rgba(37, 208, 178, 0.08)),
    #111315;
}

.catalog-card h2,
.capability-card h3 {
  margin-bottom: 0;
}

.catalog-card h2 {
  font-size: 1.65rem;
  line-height: 1.08;
}

.catalog-card strong {
  align-self: end;
  color: var(--gold);
}

.voip-flow {
  border-bottom: 1px solid var(--line);
}

.process-line {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.8rem;
}

.process-line article {
  min-height: 12rem;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: #111417;
}

.service-radar {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
  align-self: stretch;
  padding: 1rem;
  border: 1px solid rgba(240, 197, 109, 0.24);
  border-radius: var(--radius);
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    #0c0f10;
  background-size: 38px 38px;
  box-shadow: var(--shadow);
}

.service-radar span {
  display: grid;
  min-height: 6.8rem;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 6px;
  color: #fffefa;
  background:
    linear-gradient(135deg, rgba(240, 197, 109, 0.12), rgba(37, 208, 178, 0.08)),
    rgba(8, 8, 7, 0.48);
  font-weight: 900;
}

.support-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.68fr) minmax(22rem, 0.82fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
  width: min(1180px, calc(100% - 2rem));
  min-height: calc(100vh - 5rem);
  margin: 0 auto;
  padding: clamp(4rem, 7vw, 6rem) 0;
}

.support-copy h1 {
  max-width: 11ch;
}

.support-signal {
  display: grid;
  gap: 0.25rem;
  margin-top: 1.6rem;
  padding: 1rem;
  border: 1px solid rgba(37, 208, 178, 0.28);
  border-radius: var(--radius);
  background: rgba(37, 208, 178, 0.08);
}

.support-signal span {
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.support-signal strong {
  overflow-wrap: anywhere;
  color: #dffcf7;
}

.support-panel {
  padding: 1.15rem;
  border: 1px solid rgba(240, 197, 109, 0.28);
  border-radius: var(--radius);
  background: rgba(13, 14, 15, 0.9);
  box-shadow: var(--shadow);
}

.support-form {
  display: grid;
  gap: 0.9rem;
}

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

.form-field select,
.form-field input,
.form-field textarea {
  width: 100%;
  min-width: 0;
  min-height: 3rem;
  padding: 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 6px;
  color: var(--cream);
  background: rgba(255, 255, 255, 0.07);
  font: inherit;
  font-weight: 600;
}

.form-field select {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.form-field select option {
  color: var(--cream);
  background: var(--panel);
}

.form-field textarea {
  resize: vertical;
}

.form-field select:focus,
.form-field textarea:focus {
  outline: 2px solid rgba(240, 197, 109, 0.52);
  outline-offset: 2px;
}

.check-field {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  min-height: 4.35rem;
  padding: 0.75rem 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 6px;
  color: #e8e4d8;
  background: rgba(255, 255, 255, 0.055);
}

.check-field input {
  width: 1.1rem;
  height: 1.1rem;
  min-height: 1.1rem;
  accent-color: var(--gold);
}

.choice-grid input {
  min-height: 1.05rem;
}

.support-actions,
.support-result-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.support-result {
  display: grid;
  gap: 1rem;
  margin-top: 1rem;
  padding: 1rem;
  border: 1px solid rgba(37, 208, 178, 0.32);
  border-radius: 6px;
  background: rgba(37, 208, 178, 0.08);
}

.support-result strong,
.support-result p {
  display: block;
}

.support-result strong {
  margin: 0.3rem 0 0.25rem;
  color: #fffefa;
  font-size: 1.1rem;
}

.support-result p {
  margin: 0;
  color: #dffcf7;
}

.quote-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.58fr) minmax(24rem, 0.92fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
  width: min(1180px, calc(100% - 2rem));
  min-height: calc(100vh - 5rem);
  margin: 0 auto;
  padding: clamp(5.75rem, 8vw, 7.25rem) 0 clamp(4rem, 7vw, 6rem);
}

.quote-copy h1 {
  max-width: 10ch;
}

.quote-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.5rem;
}

.quote-proof span {
  padding: 0.55rem 0.7rem;
  border: 1px solid rgba(240, 197, 109, 0.28);
  border-radius: 999px;
  background: rgba(240, 197, 109, 0.08);
}

.quote-panel {
  scroll-margin-top: 6rem;
  padding: 1.15rem;
  border: 1px solid rgba(240, 197, 109, 0.28);
  border-radius: var(--radius);
  background: rgba(13, 14, 15, 0.9);
  box-shadow: var(--shadow);
}

.quote-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.5rem;
  margin-bottom: 0.65rem;
}

.quote-steps button {
  min-height: 2.6rem;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 6px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.05);
  font: inherit;
  font-weight: 900;
}

.quote-steps button.is-active {
  color: var(--black);
  border-color: transparent;
  background: var(--gold);
}

.quote-progress {
  height: 0.35rem;
  margin-bottom: 1rem;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.quote-progress::before {
  content: "";
  display: block;
  width: var(--quote-progress, 33.33%);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--gold), var(--teal));
  transition: width 220ms ease;
}

.quote-step-status {
  margin: -0.25rem 0 1rem;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.quote-step {
  display: grid;
  gap: 0.9rem;
  scroll-margin-top: 5.5rem;
}

.voip-estimator {
  display: grid;
  gap: 0.9rem;
  padding: 1rem;
  border: 1px solid rgba(37, 208, 178, 0.28);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(37, 208, 178, 0.1), rgba(240, 197, 109, 0.08)),
    rgba(255, 255, 255, 0.045);
}

.voip-estimator[hidden] {
  display: none;
}

.voip-estimator-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(12rem, 0.62fr);
  gap: 1rem;
  align-items: start;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.voip-estimator-head span,
.voip-estimate-output span {
  display: block;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.voip-estimator-head strong {
  display: block;
  margin-top: 0.25rem;
  color: #fffefa;
  font-size: 1.1rem;
  line-height: 1.2;
}

.voip-estimator-head small {
  color: var(--muted);
  line-height: 1.45;
}

.voip-estimate-output {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.65rem;
}

.voip-estimate-output div {
  min-height: 5rem;
  padding: 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 6px;
  background: rgba(5, 5, 5, 0.42);
}

.voip-estimate-output strong {
  display: block;
  margin-top: 0.45rem;
  color: #fffefa;
  font-size: clamp(1.1rem, 2vw, 1.55rem);
  line-height: 1.05;
}

.voip-estimate-lines {
  display: grid;
  gap: 0.35rem;
  margin: 0;
  padding-left: 1rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.m365-plan-grid,
.product-note-grid {
  display: grid;
  gap: 0.65rem;
}

.m365-plan-control {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(5.5rem, 7rem);
  gap: 0.75rem;
  align-items: center;
  min-height: 5rem;
  padding: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 6px;
  background: rgba(5, 5, 5, 0.32);
}

.m365-plan-control strong,
.m365-plan-control small,
.m365-plan-control em {
  display: block;
}

.m365-plan-control strong {
  color: #fffefa;
  line-height: 1.15;
}

.m365-plan-control small {
  margin-top: 0.25rem;
  color: var(--muted);
}

.m365-plan-control em {
  margin-top: 0.35rem;
  color: var(--gold);
  font-style: normal;
  font-weight: 900;
}

.m365-plan-control input {
  width: 100%;
}

.product-catalog-note {
  margin: 0;
  color: var(--gold);
  font-weight: 800;
}

.product-config-group {
  display: grid;
  gap: 0.65rem;
  padding: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 6px;
  background: rgba(5, 5, 5, 0.28);
}

.product-group-head {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  align-items: center;
  justify-content: space-between;
}

.product-group-head span,
.product-group-head small {
  display: block;
}

.product-group-head span {
  color: #fffefa;
  font-weight: 900;
}

.product-group-head small {
  color: var(--muted);
  font-size: 0.82rem;
}

.product-add,
.product-remove {
  min-height: 2.3rem;
  border: 1px solid rgba(240, 197, 109, 0.34);
  border-radius: 6px;
  color: var(--gold);
  background: rgba(240, 197, 109, 0.08);
  font-weight: 900;
}

.product-add {
  padding: 0.55rem 0.75rem;
}

.product-remove {
  padding: 0.55rem 0.7rem;
}

.product-rows {
  display: grid;
  gap: 0.55rem;
}

.product-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(4.8rem, 6rem) auto;
  gap: 0.55rem;
  align-items: center;
}

.product-row:has(input[type="hidden"]) {
  grid-template-columns: minmax(0, 1fr);
}

.product-row select,
.product-row input {
  width: 100%;
  min-width: 0;
  min-height: 3rem;
}

.product-row select {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
}

.choice-grid label {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  min-height: 3.35rem;
  padding: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 6px;
  color: #e8e4d8;
  background: rgba(255, 255, 255, 0.055);
  font-weight: 800;
}

.choice-grid input {
  width: 1.05rem;
  height: 1.05rem;
  accent-color: var(--gold);
}

.quote-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.button[disabled] {
  cursor: progress;
  opacity: 0.68;
}

.legal-page {
  background:
    linear-gradient(140deg, rgba(240, 197, 109, 0.08), transparent 36%),
    linear-gradient(220deg, rgba(37, 208, 178, 0.05), transparent 44%),
    var(--black);
}

.legal-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(20rem, 0.56fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  padding: clamp(4rem, 7vw, 6rem) 0 2rem;
}

.legal-hero h1 {
  max-width: 11ch;
}

.legal-callout {
  display: grid;
  gap: 0.6rem;
  padding: 1.25rem;
  border: 1px solid rgba(37, 208, 178, 0.32);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(37, 208, 178, 0.12), rgba(240, 197, 109, 0.08)),
    #111315;
  box-shadow: var(--shadow);
}

.legal-callout strong {
  color: #fffefa;
  font-size: 1.35rem;
  line-height: 1.15;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.trust-card {
  min-height: 14rem;
  padding: 1.15rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.035));
}

.trust-card h2 {
  margin: 0.6rem 0 0.7rem;
  font-size: 1.55rem;
}

.legal-copy {
  border-top: 1px solid var(--line);
}

.legal-copy h2 {
  margin-bottom: 1.2rem;
}

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

.legal-columns p {
  margin: 0;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
}

.mascot-section {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(18rem, 0.55fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.cat-stage {
  position: relative;
  width: 12rem;
  aspect-ratio: 1;
  isolation: isolate;
  cursor: pointer;
  pointer-events: auto;
  touch-action: manipulation;
}

.cat-stage::before {
  content: "";
  position: absolute;
  inset: 9%;
  border: 1px solid rgba(240, 197, 109, 0.18);
  border-top-color: rgba(37, 208, 178, 0.38);
  border-radius: 50%;
  opacity: 0;
  transform: rotate(0deg);
  transition: opacity 220ms ease;
  pointer-events: none;
}

.cat-stage::after {
  content: "click";
  position: absolute;
  left: 50%;
  bottom: 7%;
  z-index: 2;
  padding: 0.22rem 0.46rem;
  border: 1px solid rgba(240, 197, 109, 0.28);
  border-radius: 999px;
  color: rgba(255, 248, 232, 0.78);
  background: rgba(8, 8, 7, 0.56);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transform: translate(-50%, 0.35rem);
  opacity: 0;
  transition: opacity 180ms ease, transform 180ms ease;
  pointer-events: none;
}

.cat-stage:hover::after,
.cat-stage:focus-visible::after {
  opacity: 1;
  transform: translate(-50%, 0);
}

.cat-stage.is-loading::before {
  opacity: 0.75;
  animation: mascot-ready-ring 1.3s linear infinite;
}

.cat-stage.is-ready::before {
  opacity: 0;
}

.cat-stage:focus-visible {
  outline: 2px solid rgba(240, 197, 109, 0.78);
  outline-offset: 0.45rem;
}

.cat-stage-hero {
  width: clamp(11.5rem, 17vw, 17.5rem);
  margin: 0;
}

.cat-stage-large {
  width: min(31rem, 100%);
  justify-self: end;
}

.cat-canvas {
  display: block;
  width: 100%;
  height: 100%;
  filter:
    drop-shadow(0 20px 22px rgba(0, 0, 0, 0.38))
    drop-shadow(0 0 18px rgba(240, 197, 109, 0.16));
}

.cat-stage.is-reacting .cat-canvas {
  filter:
    drop-shadow(0 24px 26px rgba(0, 0, 0, 0.44))
    drop-shadow(0 0 28px rgba(240, 197, 109, 0.26));
}

.cat-stage.is-reacting::after {
  opacity: 0;
  transform: translate(-50%, 0.35rem);
}

@keyframes mascot-ready-ring {
  to {
    transform: rotate(360deg);
  }
}

.booking-page {
  background:
    linear-gradient(rgba(255, 255, 255, 0.024) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.024) 1px, transparent 1px),
    var(--black);
  background-size: 42px 42px;
}

.booking-hero {
  position: relative;
  min-height: 38rem;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.booking-hero-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 8, 7, 0.98) 0%, rgba(8, 8, 7, 0.84) 48%, rgba(8, 8, 7, 0.32) 100%),
    url("cat-hero.webp") center 43% / cover no-repeat;
  filter: saturate(0.78) contrast(1.08);
}

.booking-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 8rem;
  background: linear-gradient(0deg, var(--black), transparent);
  pointer-events: none;
}

.booking-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(18rem, 0.45fr);
  grid-template-areas:
    "copy visual"
    "rules rules";
  gap: 1.5rem clamp(2rem, 7vw, 7rem);
  align-items: center;
  width: min(1320px, calc(100% - 2rem));
  min-height: 38rem;
  margin: 0 auto;
  padding: clamp(4rem, 7vw, 6.5rem) 0 3.5rem;
}

.booking-hero-copy {
  grid-area: copy;
}

.booking-hero-copy h1 {
  max-width: 10ch;
  margin-bottom: 1rem;
  font-size: clamp(3.4rem, 7vw, 6.6rem);
  line-height: 0.93;
}

.booking-hero-copy > p:not(.eyebrow) {
  max-width: 45rem;
  margin: 0;
  color: #e4e1d8;
  font-size: clamp(1.02rem, 1.5vw, 1.2rem);
}

.booking-live {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.05rem 0.65rem;
  align-items: center;
  width: min(31rem, 100%);
  margin-top: 1.5rem;
  padding: 0.8rem 0.9rem;
  border: 1px solid rgba(240, 197, 109, 0.28);
  border-radius: 6px;
  background: rgba(8, 8, 7, 0.66);
  backdrop-filter: blur(12px);
}

.booking-live > span,
.booking-summary-topline > span {
  grid-row: 1 / 3;
  width: 0.68rem;
  height: 0.68rem;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 5px rgba(240, 197, 109, 0.12);
}

.booking-live.is-live {
  border-color: rgba(37, 208, 178, 0.34);
}

.booking-live.is-live > span,
.booking-summary-topline > span {
  background: var(--teal);
  box-shadow: 0 0 0 5px rgba(37, 208, 178, 0.12);
}

.booking-live.is-error {
  border-color: rgba(208, 122, 69, 0.5);
}

.booking-live.is-error > span {
  background: var(--copper);
  box-shadow: 0 0 0 5px rgba(208, 122, 69, 0.14);
}

.booking-live strong {
  color: #fffefa;
}

.booking-live small {
  color: var(--muted);
}

.booking-hero-visual {
  position: relative;
  grid-area: visual;
  display: grid;
  min-height: 21rem;
  place-items: center;
}

.booking-cat {
  position: relative;
  z-index: 2;
  width: min(22rem, 28vw);
  aspect-ratio: 1;
  filter: drop-shadow(0 26px 34px rgba(0, 0, 0, 0.52));
}

.booking-orbit {
  position: absolute;
  width: min(23rem, 30vw);
  aspect-ratio: 1;
  border: 1px solid rgba(240, 197, 109, 0.23);
  border-radius: 50%;
  box-shadow:
    inset 0 0 0 2.8rem rgba(8, 8, 7, 0.12),
    0 0 70px rgba(240, 197, 109, 0.08);
  animation: booking-orbit-turn 24s linear infinite;
}

.booking-orbit::before,
.booking-orbit::after {
  content: "";
  position: absolute;
  inset: 12%;
  border: 1px dashed rgba(37, 208, 178, 0.25);
  border-radius: 50%;
}

.booking-orbit::after {
  inset: 29%;
  border-style: solid;
  border-color: rgba(255, 255, 255, 0.13);
}

.booking-orbit i {
  position: absolute;
  width: 1.6rem;
  height: 0.25rem;
  border-radius: 2px;
  background: var(--gold);
  box-shadow: 0 0 16px rgba(240, 197, 109, 0.5);
}

.booking-orbit i:nth-child(1) {
  top: 4%;
  left: 47%;
}

.booking-orbit i:nth-child(2) {
  right: -1%;
  bottom: 31%;
  background: var(--teal);
  transform: rotate(62deg);
}

.booking-orbit i:nth-child(3) {
  left: 3%;
  bottom: 20%;
  transform: rotate(-46deg);
}

@keyframes booking-orbit-turn {
  to { transform: rotate(360deg); }
}

.booking-rule-strip {
  position: relative;
  z-index: 2;
  grid-area: rules;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

.booking-rule-strip span {
  display: grid;
  gap: 0.15rem;
  min-height: 5rem;
  align-content: center;
  padding: 0.9rem 1rem;
  color: var(--muted);
  background: rgba(8, 8, 7, 0.9);
  font-size: 0.9rem;
}

.booking-rule-strip strong {
  color: var(--gold);
  font-size: 0.75rem;
  text-transform: uppercase;
}

.booking-workspace {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(19rem, 24rem);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
  width: min(1320px, calc(100% - 2rem));
  margin: 0 auto;
  padding: clamp(4rem, 7vw, 7rem) 0;
}

.booking-flow {
  min-width: 0;
}

.booking-section {
  padding: 0 0 clamp(4rem, 7vw, 6rem);
}

.booking-section + .booking-section {
  padding-top: clamp(3.5rem, 6vw, 5rem);
  border-top: 1px solid var(--line);
}

.booking-section-heading {
  display: grid;
  grid-template-columns: 3rem minmax(0, 1fr);
  gap: 1rem;
  align-items: start;
  margin-bottom: 1.5rem;
}

.booking-section-heading > span {
  display: grid;
  width: 3rem;
  height: 3rem;
  place-items: center;
  border: 1px solid rgba(240, 197, 109, 0.4);
  border-radius: 6px;
  color: var(--gold);
  background: rgba(240, 197, 109, 0.07);
  font-weight: 900;
}

.booking-section-heading .eyebrow {
  margin-bottom: 0.35rem;
}

.booking-section-heading h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.4rem);
}

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

.booking-service {
  position: relative;
  display: grid;
  min-width: 0;
  min-height: 12rem;
  align-content: start;
  gap: 0.35rem;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--cream);
  background: rgba(21, 22, 25, 0.84);
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.booking-service:hover,
.booking-service:focus-visible {
  border-color: rgba(240, 197, 109, 0.58);
  transform: translateY(-2px);
}

.booking-service.is-selected {
  border-color: var(--gold);
  background:
    linear-gradient(135deg, rgba(240, 197, 109, 0.16), rgba(37, 208, 178, 0.07)),
    rgba(21, 22, 25, 0.96);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.28);
}

.booking-service-index {
  width: max-content;
  margin-bottom: 1.1rem;
  padding: 0.28rem 0.42rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 4px;
  color: var(--teal);
  background: rgba(37, 208, 178, 0.07);
  font-size: 0.68rem;
  font-weight: 900;
}

.booking-service strong {
  color: #fffefa;
  font-size: 1.18rem;
}

.booking-service small {
  color: var(--gold);
  font-weight: 900;
}

.booking-service p {
  margin: 0.2rem 0 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.booking-calendar-panel {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(13, 14, 15, 0.92);
  box-shadow: var(--shadow);
}

.booking-calendar-panel[aria-busy="true"] {
  opacity: 0.72;
}

.booking-calendar-toolbar {
  display: grid;
  grid-template-columns: 3rem minmax(0, 1fr) 3rem;
  gap: 0.8rem;
  align-items: center;
  min-height: 4.5rem;
  padding: 0.75rem;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.035);
}

.booking-calendar-toolbar > strong {
  text-align: center;
  font-size: 1.1rem;
}

.calendar-arrow {
  width: 3rem;
  height: 3rem;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--cream);
  background: rgba(255, 255, 255, 0.06);
  font: inherit;
  font-size: 1.2rem;
  cursor: pointer;
}

.calendar-arrow:hover:not(:disabled),
.calendar-arrow:focus-visible:not(:disabled) {
  color: var(--black);
  background: var(--gold);
}

.calendar-arrow:disabled {
  opacity: 0.32;
  cursor: not-allowed;
}

.booking-weekdays,
.booking-calendar {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
}

.booking-weekdays {
  border-bottom: 1px solid var(--line);
}

.booking-weekdays span {
  padding: 0.55rem 0.2rem;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.booking-calendar {
  gap: 1px;
  padding: 1px;
  background: rgba(255, 255, 255, 0.08);
}

.booking-day,
.booking-day-spacer {
  min-width: 0;
  aspect-ratio: 1.06;
}

.booking-day {
  display: grid;
  align-content: space-between;
  min-height: 4.8rem;
  padding: 0.55rem;
  border: 0;
  color: var(--cream);
  background: #151619;
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.booking-day:hover:not(:disabled),
.booking-day:focus-visible:not(:disabled) {
  background: #24272a;
  box-shadow: inset 0 0 0 2px var(--gold);
}

.booking-day.is-selected {
  color: var(--black);
  background: var(--gold);
}

.booking-day strong {
  font-size: 1rem;
}

.booking-day small {
  color: var(--teal);
  font-size: 0.66rem;
  font-weight: 900;
}

.booking-day.is-selected small {
  color: #23443e;
}

.booking-day:disabled {
  color: rgba(255, 255, 255, 0.26);
  background: #0d0e0f;
  cursor: not-allowed;
}

.booking-day:disabled small {
  color: rgba(255, 255, 255, 0.22);
}

.booking-calendar-message {
  min-height: 3rem;
  padding: 0.8rem 1rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.88rem;
}

.booking-calendar-message.is-error,
.booking-form-message.is-error {
  color: #ffd5c5;
  background: rgba(208, 122, 69, 0.1);
}

.booking-slot-area {
  display: grid;
  grid-template-columns: minmax(12rem, 0.36fr) minmax(0, 0.64fr);
  gap: 1.2rem;
  align-items: center;
  margin-top: 1rem;
  padding: 1rem;
  border: 1px solid rgba(37, 208, 178, 0.28);
  border-radius: var(--radius);
  background: rgba(37, 208, 178, 0.06);
}

.booking-slot-area .eyebrow,
.booking-slot-area h3 {
  margin: 0;
}

.booking-slot-area h3 {
  margin-top: 0.2rem;
  font-size: 1.15rem;
}

.booking-slots {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
}

.booking-slot {
  display: grid;
  min-height: 4rem;
  align-content: center;
  gap: 0.12rem;
  padding: 0.65rem 0.75rem;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--cream);
  background: rgba(8, 8, 7, 0.7);
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.booking-slot span {
  color: var(--teal);
  font-size: 0.72rem;
  font-weight: 900;
}

.booking-slot:hover:not(:disabled),
.booking-slot:focus-visible:not(:disabled),
.booking-slot.is-selected {
  border-color: var(--gold);
  background: rgba(240, 197, 109, 0.12);
}

.booking-slot:disabled {
  opacity: 0.38;
  cursor: not-allowed;
}

.booking-form {
  display: grid;
  gap: 0.9rem;
}

.booking-form .form-field > span {
  display: block;
  margin-bottom: 0.4rem;
  color: #ece8dd;
  font-size: 0.86rem;
  font-weight: 800;
}

.booking-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.booking-consent {
  min-height: auto;
}

.booking-submit {
  width: 100%;
  min-height: 3.4rem;
}

.booking-submit.is-loading {
  color: var(--black);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.24), transparent 45%, rgba(255, 255, 255, 0.24)),
    var(--gold);
  background-size: 220% 100%;
  animation: booking-submit-scan 1.1s linear infinite;
}

@keyframes booking-submit-scan {
  to { background-position: -220% 0; }
}

.booking-form-message {
  min-height: 0;
  margin: 0;
  padding: 0;
}

.booking-form-message:not(:empty) {
  padding: 0.75rem;
  border: 1px solid rgba(208, 122, 69, 0.34);
  border-radius: 6px;
}

.booking-form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
  text-align: center;
}

.booking-summary {
  position: sticky;
  top: 6.2rem;
  display: grid;
  gap: 1rem;
  min-width: 0;
  padding: 1rem;
  border: 1px solid rgba(240, 197, 109, 0.31);
  border-radius: var(--radius);
  background:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    rgba(12, 15, 16, 0.96);
  background-size: 32px 32px;
  box-shadow: var(--shadow);
}

.booking-summary-topline {
  display: flex;
  gap: 0.65rem;
  align-items: center;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.booking-summary h2 {
  margin: 0;
  font-size: 1.8rem;
}

.booking-summary-state {
  display: grid;
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--line);
}

.booking-summary-state > div {
  display: grid;
  gap: 0.18rem;
  min-height: 4.2rem;
  align-content: center;
  padding: 0.75rem;
  background: #151619;
}

.booking-summary-state small {
  color: var(--muted);
}

.booking-summary-state strong {
  color: #fffefa;
  overflow-wrap: anywhere;
}

.booking-sync-line {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 0.55rem;
  align-items: center;
  padding: 0.65rem 0.7rem;
  border: 1px solid rgba(37, 208, 178, 0.22);
  border-radius: 6px;
  color: var(--muted);
  background: rgba(37, 208, 178, 0.06);
  font-size: 0.76rem;
}

.booking-sync-line i {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 12px rgba(37, 208, 178, 0.65);
}

.booking-sync-line strong {
  color: var(--teal);
}

.booking-summary > p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.booking-summary.is-confirmed > h2,
.booking-summary.is-confirmed > .booking-summary-state,
.booking-summary.is-confirmed > p {
  display: none;
}

.booking-success {
  display: grid;
  gap: 0.8rem;
  padding-top: 0.4rem;
}

.booking-success-mark {
  display: grid;
  width: 3.2rem;
  height: 3.2rem;
  place-items: center;
  border: 1px solid rgba(37, 208, 178, 0.45);
  border-radius: 50%;
  color: #08110f;
  background: var(--teal);
  font-size: 0.78rem;
  font-weight: 1000;
  box-shadow: 0 0 0 8px rgba(37, 208, 178, 0.08);
}

.booking-success .eyebrow,
.booking-success h2,
.booking-success p {
  margin: 0;
}

.booking-success > strong {
  color: var(--gold);
}

.booking-success > small {
  color: var(--muted);
  overflow-wrap: anywhere;
}

.booking-success-actions {
  display: grid;
  gap: 0.6rem;
  margin-top: 0.5rem;
}

.booking-assurance {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(1320px, calc(100% - 2rem));
  margin: 0 auto clamp(4rem, 8vw, 7rem);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.booking-assurance > div {
  display: grid;
  gap: 0.45rem;
  min-height: 12rem;
  align-content: start;
  padding: 1.2rem;
  border-right: 1px solid var(--line);
  background: rgba(21, 22, 25, 0.78);
}

.booking-assurance > div:last-child {
  border-right: 0;
}

.booking-assurance span {
  color: var(--teal);
  font-size: 0.72rem;
  font-weight: 900;
}

.booking-assurance strong {
  color: #fffefa;
  font-size: 1.1rem;
}

.booking-assurance p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1.5rem;
  align-items: center;
  padding: 2rem clamp(1rem, 3vw, 3rem);
  border-top: 1px solid var(--line);
  background: #050505;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.footer-brand img {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 8px;
}

.footer-brand strong,
.footer-brand span {
  display: block;
}

.footer-brand span,
.copyright {
  color: var(--muted);
  font-size: 0.86rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: flex-end;
}

.footer-links a {
  color: var(--gold);
}

.copyright {
  grid-column: 1 / -1;
  margin: 0;
}

@media (max-width: 1200px) {
  .hero-shell {
    grid-template-columns: minmax(0, 1fr);
    grid-template-areas:
      "copy"
      "mascot"
      "actions"
      "portal";
    justify-items: center;
    text-align: center;
  }

  .hero-copy {
    max-width: 50rem;
    transform: none;
  }

  .hero-lede {
    margin-inline: auto;
  }

  .hero-proof {
    margin-inline: auto;
  }

  .hero-actions {
    justify-content: center;
    margin-top: 0;
  }

  .hero-mascot {
    position: relative;
    top: auto;
    left: auto;
    margin: -1.8rem 0 -1.4rem;
    transform: translateY(-2.4rem);
  }

  .cat-stage-hero {
    width: min(14rem, 38vw);
  }

  .portal-panel {
    width: min(34rem, 100%);
  }

  h1 {
    font-size: 4.2rem;
  }
}

@media (min-width: 961px) and (max-width: 1200px) {
  .hero-shell {
    grid-template-columns: minmax(0, 1fr) minmax(11rem, 13rem) minmax(17rem, 21rem);
    grid-template-areas:
      "copy mascot portal"
      "actions mascot portal";
    gap: clamp(1rem, 2vw, 1.6rem);
    align-items: center;
    justify-items: stretch;
    min-height: calc(100vh - 5rem);
    padding: clamp(2.4rem, 4vw, 3.25rem) 0 2.4rem;
    text-align: left;
  }

  .hero-copy {
    max-width: 34rem;
  }

  .hero-copy h1 {
    max-width: 9ch;
    font-size: clamp(3.3rem, 5vw, 4rem);
  }

  .hero-lede {
    max-width: 34rem;
    margin-inline: 0;
    font-size: 1.05rem;
  }

  .hero-proof {
    max-width: 34rem;
    margin-inline: 0;
  }

  .hero-mascot {
    align-self: center;
    margin: 0;
    transform: translateY(-0.8rem);
  }

  .cat-stage-hero {
    width: min(12.8rem, 18vw);
  }

  .hero-actions {
    justify-content: flex-start;
    margin-top: -0.2rem;
  }

  .portal-panel {
    width: auto;
  }
}

@media (max-width: 960px) {
  .site-header {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: 4.8rem 0 auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    border-bottom: 1px solid var(--line);
    background: rgba(8, 8, 7, 0.98);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 1rem;
  }

  .header-portal {
    display: none;
  }

  .hero-shell,
  .section-heading,
  .page-hero,
  .proof-section,
  .payment-flow,
  .quote-shell,
  .legal-hero,
  .support-shell,
  .booking-preview,
  .quote-launcher,
  .service-detail-grid,
  .command-section,
  .split-section,
  .intelligence-section,
  .mascot-section,
  .billing-band,
  .billing-hero,
  .billing-guardrail {
    grid-template-columns: 1fr;
  }

  .hero-mascot {
    position: relative;
    top: auto;
    left: auto;
    justify-self: center;
    margin: 0.5rem 0;
    transform: none;
  }

  .cat-stage-hero {
    width: min(16rem, 58vw);
  }

  .portal-panel {
    max-width: 34rem;
  }

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

  .quote-launcher-copy {
    position: static;
  }

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

  .service-metrics,
  .voip-package-grid,
  .process-line {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

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

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

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

  .billing-actions {
    justify-content: flex-start;
  }

  .cat-stage-large {
    justify-self: start;
  }

  .page-hero-visual {
    min-height: 29rem;
  }

  .support-copy h1,
  .page-hero-copy h1 {
    max-width: 12ch;
  }

  h1 {
    font-size: 3.8rem;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding-inline: 0.8rem;
  }

  .brand-logo {
    width: 2.75rem;
    height: 2.75rem;
  }

  .brand-tag {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  .hero-media {
    background:
      linear-gradient(180deg, rgba(8, 8, 7, 0.9) 0%, rgba(8, 8, 7, 0.76) 52%, rgba(8, 8, 7, 0.95) 100%),
      url("cat-hero.webp") center top / cover no-repeat;
  }

  .hero-shell {
    min-height: auto;
    grid-template-columns: minmax(0, 1fr);
    width: 100%;
    max-width: none;
    padding: 4.6rem 1rem 2.2rem;
    gap: 0.75rem;
    overflow: hidden;
    justify-items: stretch;
  }

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

  .hero-proof,
  .hero .portal-panel {
    display: none;
  }

  .hero-copy,
  .hero-lede,
  .hero-proof,
  .hero-mascot,
  .hero-actions,
  .portal-panel {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .hero-copy,
  .portal-panel {
    justify-self: stretch;
  }

  .hero-copy {
    display: grid;
    justify-items: center;
    max-width: calc(100vw - 2rem);
    margin-inline: auto;
  }

  .eyebrow,
  .hero-lede {
    overflow-wrap: anywhere;
  }

  .eyebrow {
    width: min(20rem, calc(100vw - 2rem));
    max-width: 100%;
    margin-inline: auto;
    font-size: 0.68rem;
    line-height: 1.22;
  }

  h1 {
    max-width: min(8.2ch, calc(100vw - 2rem));
    margin-inline: auto;
    font-size: 2.9rem;
  }

  h2 {
    font-size: 2rem;
  }

  .hero-lede {
    max-width: min(21rem, calc(100vw - 2rem));
    margin-inline: auto;
    font-size: 1rem;
  }

  .hero-proof {
    max-width: min(21.5rem, calc(100vw - 2rem));
    margin-inline: auto;
  }

  .hero-proof span {
    min-height: 3.9rem;
    padding: 0.65rem;
  }

  .hero-mascot {
    margin: 0.2rem 0 -0.55rem;
    transform: none;
  }

  .cat-stage-hero {
    width: min(11.5rem, 52vw);
  }

  .button,
  .hero-actions,
  .billing-actions {
    width: 100%;
  }

  .hero-actions {
    max-width: min(21.5rem, calc(100vw - 2rem));
    margin-inline: auto;
    justify-self: center;
  }

  .service-grid,
  .service-metrics,
  .voip-package-grid,
  .capability-grid,
  .catalog-grid,
  .quote-launcher-grid,
  .proof-grid,
  .choice-grid,
  .trust-grid,
  .billing-promise,
  .voip-estimator-head,
  .voip-estimate-output,
  .m365-plan-control,
  .product-row,
  .process-line,
  .form-row,
  .service-radar,
  .workflow,
  .billing-link-grid {
    grid-template-columns: 1fr;
  }

  .booking-preview-schedule {
    width: 100%;
  }

  .booking-preview-head,
  .booking-preview-schedule > a {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .booking-preview-head > span,
  .booking-preview-schedule > a small {
    display: none;
  }

  .quote-launcher {
    gap: 1.4rem;
  }

  .quote-launcher-card {
    min-height: 9rem;
  }

  .page-hero,
  .support-shell,
  .quote-shell,
  .legal-hero {
    width: 100%;
    min-height: auto;
    padding: 4rem 1rem;
  }

  .page-hero-copy,
  .support-copy {
    display: grid;
    justify-items: start;
    max-width: calc(100vw - 2rem);
  }

  .page-hero-copy h1,
  .support-copy h1 {
    max-width: 8.2ch;
    margin-inline: 0;
  }

  .service-actions,
  .section-actions,
  .support-actions,
  .support-result-actions {
    width: 100%;
  }

  .service-actions .button,
  .section-actions .button,
  .support-actions .button,
  .support-result-actions .button {
    width: 100%;
  }

  .service-metrics {
    width: 100%;
    padding-inline: 1rem;
  }

  .page-hero-visual {
    min-height: 27rem;
  }

  .cat-stage-service {
    width: min(16rem, 62vw);
    transform: translateY(-1.4rem);
  }

  .catalog-card,
  .capability-card,
  .process-line article {
    min-height: auto;
  }

  .intelligence-visual {
    min-height: 19rem;
  }

  .portal-actions a {
    grid-template-columns: 1fr;
  }

  .billing-band,
  .billing-tool,
  .billing-guardrail,
  .quote-panel {
    padding: 1.2rem;
  }

  .proof-section,
  .legal-copy {
    width: 100%;
    padding-inline: 1rem;
  }

  .quote-steps {
    grid-template-columns: 1fr;
  }

  .billing-link-grid,
  .billing-result {
    grid-template-columns: 1fr;
  }

  .payment-rail a {
    grid-template-columns: 2.4rem minmax(0, 1fr);
  }

  .payment-rail small {
    grid-column: 2;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-height: 720px) and (min-width: 761px) {
  .quote-shell {
    min-height: auto;
    padding: 2rem 0;
  }

  .quote-panel {
    padding: 1rem;
  }

  .quote-steps button {
    min-height: 2.35rem;
  }

  .quote-progress {
    margin-bottom: 0.75rem;
  }

  .quote-step-status {
    margin-bottom: 0.7rem;
  }

  .quote-step {
    gap: 0.65rem;
  }

  .choice-grid label {
    min-height: 2.9rem;
    padding: 0.55rem;
  }
}

@media (max-width: 960px) {
  .booking-hero-inner {
    grid-template-columns: 1fr;
    grid-template-areas:
      "copy"
      "visual"
      "rules";
    gap: 0.5rem;
    text-align: center;
  }

  .booking-hero-copy h1,
  .booking-hero-copy > p,
  .booking-live {
    margin-inline: auto;
  }

  .booking-hero-copy h1 {
    max-width: 12ch;
  }

  .booking-hero-visual {
    min-height: 16rem;
  }

  .booking-cat {
    width: min(18rem, 42vw);
  }

  .booking-orbit {
    width: min(19rem, 46vw);
  }

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

  .booking-summary {
    position: static;
  }

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

  .booking-assurance > div {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .booking-assurance > div:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 640px) {
  .booking-hero,
  .booking-hero-inner {
    min-height: auto;
  }

  .booking-hero-media {
    background:
      linear-gradient(180deg, rgba(8, 8, 7, 0.92), rgba(8, 8, 7, 0.74) 52%, rgba(8, 8, 7, 0.97)),
      url("cat-hero.webp") center top / cover no-repeat;
  }

  .booking-hero-inner {
    width: 100%;
    padding: 4rem 1rem 2.5rem;
  }

  .booking-hero-copy h1 {
    max-width: 9ch;
    font-size: 2.85rem;
  }

  .booking-hero-copy > p:not(.eyebrow) {
    font-size: 0.98rem;
  }

  .booking-live {
    text-align: left;
  }

  .booking-hero-visual {
    min-height: 12.5rem;
  }

  .booking-cat {
    width: min(13.5rem, 58vw);
  }

  .booking-orbit {
    width: min(14.5rem, 64vw);
  }

  .booking-rule-strip,
  .booking-service-grid,
  .booking-slot-area,
  .booking-slots {
    grid-template-columns: 1fr;
  }

  .booking-rule-strip span {
    min-height: 4.3rem;
  }

  .booking-workspace,
  .booking-assurance {
    width: 100%;
  }

  .booking-workspace {
    gap: 2.2rem;
    padding: 3rem 1rem;
  }

  .booking-section-heading {
    grid-template-columns: 2.6rem minmax(0, 1fr);
    gap: 0.75rem;
  }

  .booking-section-heading > span {
    width: 2.6rem;
    height: 2.6rem;
  }

  .booking-section-heading h2 {
    font-size: 1.85rem;
  }

  .booking-service {
    min-height: 10rem;
  }

  .booking-calendar-toolbar {
    grid-template-columns: 2.65rem minmax(0, 1fr) 2.65rem;
    padding-inline: 0.5rem;
  }

  .calendar-arrow {
    width: 2.65rem;
    height: 2.65rem;
  }

  .booking-calendar-toolbar > strong {
    font-size: 0.95rem;
  }

  .booking-day,
  .booking-day-spacer {
    aspect-ratio: 0.8;
  }

  .booking-day {
    min-height: 4rem;
    padding: 0.38rem;
  }

  .booking-day small {
    font-size: 0.58rem;
  }

  .booking-slot-area {
    align-items: stretch;
  }

  .booking-summary {
    top: auto;
  }

  .booking-assurance {
    margin-bottom: 3rem;
    border-inline: 0;
    border-radius: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .booking-orbit,
  .booking-submit.is-loading {
    animation: none;
  }
  html {
    scroll-behavior: auto;
  }

  .button,
  .header-portal,
  [data-reveal],
  .service-card,
  .workflow-step,
  .command-tile,
  .billing-link-card,
  .catalog-card,
  .capability-card,
  .proof-card,
  .cat-stage::before,
  .cat-stage::after {
    transition: none;
    animation: none;
  }

  html.has-reveal [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
