:root {
  --ink: #101316;
  --ink-soft: #343b42;
  --muted: #6b737b;
  --line: #dce3e8;
  --paper: #f7f9fa;
  --white: #ffffff;
  --accent: #b8ff3c;
  --accent-dark: #76a900;
  --dark: #0a0d10;
  --radius-xl: 32px;
  --radius-lg: 22px;
  --radius: 14px;
  --shadow: 0 24px 70px rgba(16, 19, 22, 0.12);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

img {
  max-width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 52px);
  background: rgba(247, 249, 250, 0.88);
  border-bottom: 1px solid rgba(16, 19, 22, 0.08);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--accent);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.08);
}

.brand-text {
  font-size: 1.1rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2vw, 26px);
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.site-nav a:hover {
  color: var(--ink);
}

.nav-cta,
.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  min-height: 46px;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid var(--ink);
  font-weight: 700;
  cursor: pointer;
}

.nav-cta,
.btn.primary {
  background: var(--ink);
  color: var(--white);
}

.btn.primary:hover,
.nav-cta:hover {
  background: #000;
}

.btn.ghost {
  background: transparent;
  color: var(--ink);
}

.btn.full {
  width: 100%;
}

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 999px;
  padding: 9px 14px;
}

.hero,
.page-hero,
.section,
.cta-strip,
.footer-grid,
.footer-bottom {
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
}

.hero {
  min-height: 690px;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
  gap: 44px;
  align-items: center;
  padding: 88px 0 56px;
}

.hero-copy h1,
.page-hero h1 {
  margin: 0;
  max-width: 920px;
  font-size: clamp(3.1rem, 8vw, 7.25rem);
  line-height: 0.88;
  letter-spacing: -0.085em;
}

.hero-lede,
.page-hero p {
  max-width: 720px;
  color: var(--ink-soft);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--accent-dark);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.74rem;
  font-weight: 900;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.hero-panel {
  position: relative;
  min-height: 480px;
  border-radius: var(--radius-xl);
  padding: 28px;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 30% 20%, rgba(184, 255, 60, 0.42), transparent 28%),
    radial-gradient(circle at 82% 68%, rgba(255, 255, 255, 0.16), transparent 30%),
    linear-gradient(135deg, #101316, #1f2931 52%, #0b0e11);
  box-shadow: var(--shadow);
}

.hero-panel::before {
  content: '';
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 26px;
}

.signal-card,
.mini-metrics {
  position: relative;
  z-index: 1;
}

.main-card {
  margin-top: 210px;
  padding: 24px;
  border-radius: 24px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(12px);
}

.main-card span,
.mini-metrics span {
  display: block;
  color: rgba(255,255,255,0.68);
  font-size: 0.85rem;
}

.main-card strong {
  display: block;
  margin-top: 8px;
  font-size: 2.4rem;
  letter-spacing: -0.06em;
  line-height: 0.95;
}

.mini-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 12px;
}

.mini-metrics div {
  min-height: 100px;
  padding: 16px;
  border-radius: 18px;
  background: rgba(255,255,255,0.09);
}

.mini-metrics strong {
  display: block;
  font-size: 1.4rem;
}

.ticker {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding: 18px max(20px, calc((100vw - var(--max)) / 2));
  background: var(--dark);
  color: var(--white);
  scrollbar-width: none;
}

.ticker span {
  flex: 0 0 auto;
  padding: 10px 18px;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 999px;
  color: rgba(255,255,255,0.82);
}

.section {
  padding: 84px 0;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 0.55fr);
  gap: 40px;
  align-items: end;
  margin-bottom: 32px;
}

.section h2,
.cta-strip h2,
.footer-grid h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 0.95;
  letter-spacing: -0.07em;
}

.section-head p:not(.eyebrow),
.wide-card p,
.service-card p,
.package-card p,
.cta-strip p,
.footer-grid .muted,
.muted {
  color: var(--muted);
}

.card-grid {
  display: grid;
  gap: 20px;
}

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

.service-card,
.wide-card,
.package-card,
.booking-form,
.booking-summary,
.payment-summary,
.payment-card,
.prose,
.admin-section {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: 0 18px 50px rgba(16, 19, 22, 0.05);
}

.service-card {
  min-height: 330px;
  display: flex;
  flex-direction: column;
  padding: 28px;
}

.service-card h3 {
  margin: 0;
  font-size: 1.75rem;
  line-height: 1;
  letter-spacing: -0.05em;
}

.service-card a {
  margin-top: auto;
  font-weight: 800;
}

.center-action {
  margin-top: 28px;
  text-align: center;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(0, 1fr);
  gap: 52px;
}

.steps {
  display: grid;
  gap: 14px;
}

.steps div {
  padding: 24px;
  border-radius: 20px;
  background: var(--white);
  border: 1px solid var(--line);
}

.steps span {
  color: var(--accent-dark);
  font-weight: 900;
}

.steps h3,
.work-grid strong {
  margin: 8px 0 6px;
  font-size: 1.25rem;
}

.work-band {
  padding: 54px;
  border-radius: var(--radius-xl);
  background: var(--dark);
  color: var(--white);
}

.work-band .eyebrow {
  color: var(--accent);
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 32px;
}

.work-grid div {
  padding: 20px;
  border-radius: 18px;
  background: rgba(255,255,255,0.08);
}

.work-grid p {
  color: rgba(255,255,255,0.72);
}

.cta-strip {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  margin-bottom: 84px;
  padding: 42px;
  border-radius: var(--radius-xl);
  background: var(--accent);
}

.page-hero {
  padding: 92px 0 42px;
}

.page-hero.compact {
  min-height: auto;
}

.page-hero.compact h1 {
  font-size: clamp(2.8rem, 6.5vw, 6rem);
}

.services-list {
  display: grid;
  gap: 20px;
}

.wide-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 36px;
  padding: 32px;
}

.wide-card h2 {
  font-size: clamp(2rem, 3.4vw, 3.4rem);
}

.outcome-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
}

.outcome-list li {
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--paper);
  font-weight: 700;
  font-size: 0.9rem;
}

.outcome-list.large {
  display: grid;
}

.package-line {
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.package-line strong,
.package-line span {
  display: block;
}

.package-line span {
  color: var(--muted);
}

.card-actions {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

.service-split {
  align-items: start;
}

.package-stack {
  display: grid;
  gap: 16px;
}

.package-card {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 18px;
  align-items: center;
  padding: 24px;
}

.package-card h3 {
  margin: 0 0 8px;
  font-size: 1.5rem;
  letter-spacing: -0.04em;
}

.package-card span {
  color: var(--muted);
}

.booking-layout,
.checkout-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 28px;
  align-items: start;
}

.booking-form,
.booking-summary,
.payment-summary,
.payment-card,
.prose,
.admin-section {
  padding: 30px;
}

.form-row {
  display: grid;
  gap: 14px;
}

.form-row.two {
  grid-template-columns: repeat(2, 1fr);
}

.form-row.three {
  grid-template-columns: repeat(3, 1fr);
}

label {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
  color: var(--ink);
  font: inherit;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus,
.hosted-field.focused {
  outline: 3px solid rgba(184, 255, 60, 0.55);
  border-color: var(--ink);
}

.checkbox-line {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-weight: 600;
  color: var(--ink-soft);
}

.checkbox-line input {
  width: auto;
  min-height: auto;
  margin-top: 5px;
}

.booking-summary,
.payment-summary {
  position: sticky;
  top: 94px;
}

.summary-price {
  margin: 18px 0;
  font-size: 3rem;
  font-weight: 900;
  letter-spacing: -0.07em;
}

.hosted-field-wrap label {
  margin-bottom: 8px;
}

.hosted-field {
  min-height: 54px;
  padding: 15px 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
}

.card-form .form-row {
  margin-bottom: 12px;
}

.payment-message {
  min-height: 28px;
  margin: 12px 0;
  color: var(--muted);
}

.payment-message.error {
  color: #a21d1d;
}

.alert {
  padding: 18px;
  border-radius: 16px;
  border: 1px solid var(--line);
}

.alert.error {
  border-color: #f1b0b0;
  background: #fff2f2;
}

.payment-summary dl {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.payment-summary div,
.status-grid div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.payment-summary dt,
.status-grid span {
  color: var(--muted);
}

.payment-summary dd {
  margin: 0;
  font-weight: 800;
  text-align: right;
}

.success-panel {
  min-height: 55vh;
}

.status-grid {
  display: grid;
  gap: 8px;
  max-width: 680px;
  margin: 24px 0;
}

.prose {
  max-width: 900px;
}

.prose h2 {
  margin-top: 32px;
  font-size: 2rem;
}

.site-footer {
  margin-top: 40px;
  padding: 64px 0 28px;
  background: var(--dark);
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 0.65fr);
  gap: 48px;
}

.footer-grid .eyebrow {
  color: var(--accent);
}

.footer-grid a {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.contact-form {
  padding: 24px;
  border-radius: 24px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
}

.contact-form input,
.contact-form textarea {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.18);
  color: var(--white);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255,255,255,0.48);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.62);
}

.table-wrap {
  max-width: 100%;
  overflow-x: auto;
  margin-bottom: 42px;
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
}

th,
td {
  padding: 12px;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
  text-align: left;
}

th {
  white-space: nowrap;
  color: var(--muted);
}

code {
  padding: 2px 6px;
  border-radius: 6px;
  background: rgba(16, 19, 22, 0.07);
  font-size: 0.9em;
}

@media (max-width: 940px) {
  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    display: none;
    position: absolute;
    inset: 74px 18px auto 18px;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    border-radius: 20px;
    background: var(--white);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
  }

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

  .hero,
  .section-head,
  .split,
  .wide-card,
  .booking-layout,
  .checkout-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 60px;
  }

  .hero-panel {
    min-height: 360px;
  }

  .main-card {
    margin-top: 110px;
  }

  .card-grid.three,
  .work-grid {
    grid-template-columns: 1fr;
  }

  .booking-summary,
  .payment-summary {
    position: static;
  }
}

@media (max-width: 680px) {
  .hero,
  .page-hero,
  .section,
  .cta-strip,
  .footer-grid,
  .footer-bottom {
    width: min(100% - 28px, var(--max));
  }

  .hero-copy h1,
  .page-hero.compact h1 {
    font-size: clamp(2.7rem, 16vw, 4.8rem);
  }

  .form-row.two,
  .form-row.three,
  .package-card {
    grid-template-columns: 1fr;
  }

  .mini-metrics,
  .footer-bottom,
  .cta-strip {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: stretch;
  }

  .work-band,
  .cta-strip,
  .booking-form,
  .booking-summary,
  .payment-summary,
  .payment-card,
  .prose,
  .admin-section {
    padding: 24px;
  }
}
