:root {
  --bg: #eef4f5;
  --paper: #fbf7ef;
  --paper-2: #e2ecec;
  --ink: #0f2230;
  --ink-2: #173446;
  --soft: #5e7180;
  --line: rgba(15, 34, 48, 0.13);
  --line-dark: rgba(255, 255, 255, 0.12);
  --green: #2dd4bf;
  --green-deep: #087f7a;
  --blue: #68a7c7;
  --amber: #f3b15f;
  --clay: #e06f62;
  --coral: #e65f54;
  --mist: #d9eceb;
  --radius: 8px;
  --content: 1180px;
  --surface-glass:
    linear-gradient(145deg, rgba(255, 255, 255, 0.78), rgba(251, 247, 239, 0.54));
  --surface-dark-glass:
    linear-gradient(145deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.045));
  --highlight-top: inset 0 1px 0 rgba(255, 255, 255, 0.62);
  --shadow:
    0 1px 1px rgba(15, 34, 48, 0.06),
    0 12px 32px rgba(15, 34, 48, 0.1),
    0 28px 80px rgba(15, 34, 48, 0.15);
  --shadow-deep:
    0 1px 1px rgba(15, 34, 48, 0.08),
    0 18px 46px rgba(15, 34, 48, 0.12),
    0 42px 110px rgba(15, 34, 48, 0.18);
  --mouse-x: 50vw;
  --mouse-y: 34vh;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--ink);
  font-family: "Manrope", sans-serif;
}

body.ambient-pointer::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    radial-gradient(circle 170px at var(--mouse-x) var(--mouse-y), rgba(45, 212, 191, 0.1), rgba(104, 167, 199, 0.045) 42%, transparent 76%),
    radial-gradient(circle 520px at var(--mouse-x) var(--mouse-y), transparent 0 48%, rgba(15, 34, 48, 0.018) 100%);
  mix-blend-mode: multiply;
  opacity: 0.52;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    repeating-radial-gradient(circle at 24% 18%, rgba(15, 34, 48, 0.008) 0 1px, transparent 1px 5px),
    linear-gradient(135deg, rgba(255, 255, 255, 0.18), transparent 28%),
    radial-gradient(ellipse at center, transparent 52%, rgba(15, 34, 48, 0.045) 100%);
  opacity: 0.38;
}

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

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

a:focus-visible {
  outline: 3px solid rgba(45, 212, 191, 0.45);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  top: -60px;
  left: 18px;
  z-index: 50;
  padding: 12px 16px;
  border-radius: var(--radius);
  background: var(--ink);
  color: white;
  font-weight: 800;
}

.skip-link:focus {
  top: 18px;
}

.sentence-break {
  display: none;
}

.page-shell {
  position: relative;
  z-index: auto;
  width: min(calc(100% - 32px), var(--content));
  margin: 0 auto;
  padding: 20px 0 42px;
}

.page-shell::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 10% 6%, rgba(45, 212, 191, 0.26), transparent 24%),
    radial-gradient(circle at 88% 18%, rgba(104, 167, 199, 0.16), transparent 28%),
    linear-gradient(120deg, rgba(45, 212, 191, 0.14), transparent 38%),
    linear-gradient(320deg, rgba(230, 95, 84, 0.1), transparent 44%),
    var(--bg);
}

.top-anchor {
  display: block;
  height: 0;
}

.site-header {
  position: sticky;
  top: 14px;
  z-index: 30;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(251, 247, 239, 0.86)),
    rgba(255, 253, 248, 0.88);
  box-shadow:
    var(--highlight-top),
    0 1px 1px rgba(16, 24, 32, 0.05),
    0 18px 50px rgba(16, 24, 32, 0.12);
  backdrop-filter: blur(18px) saturate(1.08);
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease, padding 180ms ease, top 180ms ease;
}

.site-header.is-compact {
  top: 8px;
  padding: 10px 14px;
}

.site-header.header-on-dark {
  background: rgba(16, 24, 32, 0.9);
  color: #f8fbf5;
  border-color: var(--line-dark);
}

.commitment-rail {
  position: fixed;
  right: 18px;
  top: 50%;
  z-index: 20;
  display: grid;
  gap: 10px;
  transform: translateY(-50%);
}

.commitment-rail a {
  display: grid;
  grid-template-columns: 12px 1fr;
  align-items: center;
  gap: 9px;
  width: 164px;
  padding: 10px 12px;
  border: 1px solid rgba(15, 34, 48, 0.12);
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.78), rgba(251, 247, 239, 0.66)),
    rgba(251, 247, 239, 0.72);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.7),
    0 1px 1px rgba(15, 34, 48, 0.04),
    0 12px 30px rgba(15, 34, 48, 0.08);
  color: rgba(15, 34, 48, 0.68);
  font-size: 0.78rem;
  font-weight: 900;
  backdrop-filter: blur(12px);
  transition: transform 160ms ease, opacity 160ms ease, background 160ms ease, color 160ms ease, border-color 160ms ease;
}

.commitment-rail a:hover,
.commitment-rail a.is-active {
  transform: translateX(-4px);
  border-color: rgba(8, 127, 122, 0.24);
  background: rgba(251, 247, 239, 0.94);
  color: var(--ink);
}

.commitment-rail span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(15, 34, 48, 0.22);
}

.commitment-rail a.is-active span {
  background: var(--coral);
  box-shadow: 0 0 0 6px rgba(230, 95, 84, 0.12);
}

.mobile-action-bar {
  display: none;
}

.brand-lockup {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 8px;
  background: var(--ink);
  color: var(--green);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 12px 26px rgba(15, 34, 48, 0.16);
  font-family: "Archivo", sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
}

.header-on-dark .brand-mark {
  background: var(--green);
  color: var(--ink);
}

.brand-lockup strong,
h1,
h2,
h3 {
  font-family: "Archivo", sans-serif;
}

.brand-lockup strong {
  display: block;
  font-size: 1.02rem;
}

.brand-lockup small {
  color: var(--soft);
  font-weight: 700;
}

.header-on-dark .brand-lockup small {
  color: rgba(248, 251, 245, 0.68);
}

.desktop-nav {
  display: flex;
  justify-self: center;
  justify-content: center;
  width: max-content;
  max-width: 100%;
  gap: 6px;
  padding: 6px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.74), rgba(251, 247, 239, 0.58));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.74),
    0 12px 28px rgba(15, 34, 48, 0.06);
  font-weight: 800;
  color: #344352;
}

.header-on-dark .desktop-nav {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--line-dark);
  color: rgba(248, 251, 245, 0.78);
}

.desktop-nav a {
  padding: 9px 13px;
  border-radius: 999px;
  white-space: nowrap;
  transition: background 160ms ease, color 160ms ease, box-shadow 160ms ease;
}

.desktop-nav a:hover,
.desktop-nav a.is-active {
  background: rgba(45, 212, 191, 0.15);
  color: var(--green-deep);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.52);
}

.desktop-nav .nav-request {
  margin-left: 5px;
  background: rgba(45, 212, 191, 0.08);
  color: #344352;
  box-shadow: none;
}

.desktop-nav .nav-request:hover,
.desktop-nav .nav-request.is-active {
  background: rgba(45, 212, 191, 0.15);
  color: var(--green-deep);
  box-shadow: none;
}

.header-on-dark .desktop-nav a:hover,
.header-on-dark .desktop-nav a.is-active {
  color: var(--green);
  background: rgba(45, 212, 191, 0.12);
}

.header-on-dark .desktop-nav .nav-request,
.header-on-dark .desktop-nav .nav-request:hover,
.header-on-dark .desktop-nav .nav-request.is-active {
  color: var(--green);
  background: rgba(45, 212, 191, 0.12);
}

.header-cta {
  min-height: 46px;
  border-color: transparent;
  background: linear-gradient(135deg, var(--green), #7de0d6);
  color: var(--ink);
  box-shadow: 0 18px 44px rgba(8, 127, 122, 0.24);
}

.header-on-dark .header-cta {
  border-color: transparent;
  background: linear-gradient(135deg, var(--green), #7de0d6);
  color: var(--ink);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 900;
  position: relative;
  overflow: hidden;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0 32%, rgba(255, 255, 255, 0.32) 46%, transparent 62% 100%);
  transform: translateX(-120%);
  transition: transform 520ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button:active {
  transform: translateY(0);
}

.button:hover::after {
  transform: translateX(120%);
}

.button-primary {
  background: linear-gradient(135deg, var(--green), #7de0d6);
  color: var(--ink);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.42),
    0 18px 44px rgba(8, 127, 122, 0.24);
}

.button-secondary {
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.78), rgba(255, 253, 248, 0.52));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.62),
    0 12px 28px rgba(15, 34, 48, 0.06);
}

.section-band {
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 88px max(16px, calc((100vw - var(--content)) / 2)) 96px;
}

section[id] {
  scroll-margin-top: 118px;
}

.light-band {
  background:
    radial-gradient(circle at 72% 18%, rgba(255, 255, 255, 0.72), transparent 34%),
    linear-gradient(180deg, #eef4f5 0%, #eaf2f1 100%);
}

.quality-band {
  background:
    linear-gradient(180deg, #eef4f5 0%, #f6fbfb 100%);
  padding-top: 78px;
  padding-bottom: 84px;
}

.paper-band {
  background:
    radial-gradient(circle at 50% 12%, rgba(255, 255, 255, 0.78), transparent 32%),
    linear-gradient(180deg, #fbf7ef 0%, #f5efe5 100%);
}

.package-band {
  background:
    radial-gradient(circle at 88% 28%, rgba(45, 212, 191, 0.08), transparent 24%),
    linear-gradient(180deg, #fbf7ef 0%, #f4efe7 100%);
  padding-top: 78px;
  padding-bottom: 82px;
  border-top: 1px solid rgba(15, 34, 48, 0.08);
  border-bottom: 1px solid rgba(15, 34, 48, 0.08);
}

.dark-band {
  background:
    radial-gradient(circle at 12% 0%, rgba(45, 212, 191, 0.14), transparent 30%),
    linear-gradient(180deg, #0e2532 0%, #071822 100%);
  color: #f9fbf5;
}

.ink-band {
  background:
    radial-gradient(circle at 84% 12%, rgba(104, 167, 199, 0.13), transparent 28%),
    linear-gradient(180deg, #123342 0%, #0c2632 100%);
  color: #f9fbf5;
}

.builder-band {
  color: #f8fbf5;
  background:
    radial-gradient(circle at 18% 20%, rgba(45, 212, 191, 0.18), transparent 30%),
    radial-gradient(circle at 84% 76%, rgba(230, 95, 84, 0.14), transparent 26%),
    linear-gradient(145deg, #0f2230 0%, #132f3e 46%, #081720 100%);
  padding-top: 82px;
  padding-bottom: 88px;
}

.builder-band .section-heading p {
  color: rgba(248, 251, 245, 0.72);
}

.process-band {
  background:
    radial-gradient(circle at 50% 18%, rgba(255, 255, 255, 0.72), transparent 30%),
    linear-gradient(180deg, #fbf7ef 0%, #eef4f5 100%);
  border-top: 1px solid rgba(15, 34, 48, 0.08);
}

.contact-band {
  background:
    radial-gradient(circle at 16% 10%, rgba(45, 212, 191, 0.14), transparent 24%),
    linear-gradient(180deg, #dbecea 0%, #edf4f2 100%);
}

.hero {
  min-height: min(720px, calc(100vh - 118px));
  display: grid;
  grid-template-columns: minmax(420px, 0.9fr) minmax(420px, 1.1fr);
  gap: 54px;
  align-items: center;
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 7% 0 auto auto;
  z-index: -1;
  width: min(560px, 46vw);
  aspect-ratio: 1;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(45, 212, 191, 0.14), transparent 64%);
  filter: blur(14px);
}

.hero.section-band {
  padding-top: 58px;
  padding-bottom: 74px;
}

.eyebrow,
.mini-label {
  margin: 0;
  color: var(--green-deep);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
  font-weight: 900;
}

.eyebrow::after {
  content: "";
  display: inline-block;
  width: 28px;
  height: 1px;
  margin-left: 10px;
  vertical-align: middle;
  background: currentColor;
  opacity: 0.38;
}

.dark-band .eyebrow,
.ink-band .eyebrow,
.builder-band .eyebrow,
.dark-band .mini-label,
.ink-band .mini-label,
.builder-band .mini-label {
  color: var(--green);
}

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

h1 {
  max-width: 760px;
  margin-bottom: 20px;
  font-size: clamp(3rem, 4.8vw, 5.2rem);
  line-height: 0.96;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.4rem, 5vw, 5.2rem);
  line-height: 0.94;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.4rem;
  line-height: 1.05;
}

.hero-text {
  max-width: 610px;
  color: #344352;
  font-size: clamp(1.08rem, 1.35vw, 1.26rem);
  line-height: 1.48;
}

.hero-route {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  max-width: 650px;
  margin-top: 24px;
}

.hero-route span {
  display: flex;
  min-height: 48px;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border: 1px solid rgba(15, 34, 48, 0.12);
  border-radius: 999px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.82), rgba(251, 247, 239, 0.58));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.7),
    0 12px 32px rgba(16, 24, 32, 0.06);
  color: rgba(15, 34, 48, 0.76);
  font-size: 0.88rem;
  font-weight: 900;
  line-height: 1.15;
}

.hero-route strong {
  display: inline-grid;
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 999px;
  background: var(--ink);
  color: var(--green);
  font-family: "Archivo", sans-serif;
  font-size: 0.76rem;
}

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

.website-console {
  position: relative;
  border: 1px solid rgba(16, 24, 32, 0.16);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 80% 10%, rgba(45, 212, 191, 0.22), transparent 30%),
    radial-gradient(circle at 18% 82%, rgba(230, 95, 84, 0.16), transparent 26%),
    linear-gradient(145deg, #143346, #07131c);
  box-shadow: var(--shadow);
  color: #f8fbf5;
  overflow: hidden;
  transform:
    perspective(1200px)
    rotateX(calc(var(--depth-y, 0) * -2deg))
    rotateY(calc(var(--depth-x, 0) * 2deg));
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.website-console::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.14), transparent 32%),
    radial-gradient(circle at 82% 0%, rgba(255, 255, 255, 0.12), transparent 24%);
}

.website-console > * {
  position: relative;
  z-index: 1;
}

.console-top {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.console-top span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.38);
}

.console-top strong {
  margin-left: auto;
  color: rgba(248, 251, 245, 0.74);
  font-size: 0.86rem;
}

.console-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 14px;
  padding: 18px;
}

.preview-panel {
  min-height: 150px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  background: var(--surface-dark-glass);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 14px 34px rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.preview-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid transparent;
  border-radius: inherit;
  pointer-events: none;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.preview-panel:hover,
.quality-panel:hover,
.offer-stack article:hover,
.addon-list article:hover,
.process-rail article:hover,
.deliverable-panel:hover {
  transform: translateY(-4px);
}

.preview-panel.large {
  grid-row: span 2;
  min-height: 318px;
  background:
    linear-gradient(rgba(15, 34, 48, 0.08), rgba(15, 34, 48, 0.84)),
    repeating-linear-gradient(90deg, rgba(45, 212, 191, 0.18) 0 1px, transparent 1px 36px),
    repeating-linear-gradient(0deg, rgba(127, 183, 216, 0.14) 0 1px, transparent 1px 34px);
}

.preview-panel.is-stage-active {
  transform: translateY(-3px);
  box-shadow: 0 18px 48px rgba(45, 212, 191, 0.15);
}

.preview-panel.is-stage-active::before {
  border-color: rgba(45, 212, 191, 0.5);
  box-shadow: inset 0 0 0 1px rgba(45, 212, 191, 0.16);
}

.system-map {
  width: 100%;
  margin-top: 26px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.05);
}

.preview-panel.accent {
  background: rgba(45, 212, 191, 0.14);
}

.preview-panel.dark {
  background: rgba(0, 0, 0, 0.24);
}

.preview-panel small {
  display: block;
  margin-bottom: 10px;
  color: var(--green);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.preview-panel strong {
  display: block;
  margin-bottom: 10px;
  font-family: "Archivo", sans-serif;
  font-size: 1.45rem;
}

.preview-panel p {
  margin: 0;
  color: rgba(248, 251, 245, 0.72);
  line-height: 1.55;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin: -32px 0 48px;
  position: relative;
  z-index: 3;
}

.proof-strip::before {
  content: "";
  position: absolute;
  left: 24px;
  right: 24px;
  top: 50%;
  z-index: -1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(8, 127, 122, 0.2), transparent);
}

.proof-strip article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-glass);
  box-shadow:
    var(--highlight-top),
    0 18px 42px rgba(16, 24, 32, 0.08);
  backdrop-filter: blur(12px);
  position: relative;
  overflow: hidden;
}

.proof-strip article::before,
.deliverable-panel::before,
.process-rail article::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 2px;
  background: linear-gradient(90deg, var(--green), rgba(104, 167, 199, 0.28), transparent);
  opacity: 0.72;
}

.proof-strip article {
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.proof-strip article:hover {
  transform: translateY(-3px);
  border-color: rgba(8, 127, 122, 0.24);
  box-shadow: 0 24px 54px rgba(15, 34, 48, 0.1);
}

.proof-strip.reveal-item {
  opacity: 1;
  transform: none;
}

.proof-strip strong {
  display: block;
  margin-top: 10px;
  font-family: "Archivo", sans-serif;
  font-size: 1.25rem;
}

.section-heading {
  max-width: 820px;
  margin: 0 auto 42px;
  text-align: center;
}

.section-heading.align-left {
  margin: 0;
  text-align: left;
}

.section-heading p {
  color: var(--soft);
  font-size: 1.14rem;
  line-height: 1.62;
}

.dark-band .section-heading p,
.ink-band .section-heading p,
.builder-band .section-heading p {
  color: rgba(248, 251, 245, 0.72);
}

.offer-layout,
.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 26px;
  align-items: start;
}

.package-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(320px, 1.14fr);
  gap: 24px;
  align-items: stretch;
  margin-bottom: 16px;
}

.package-layout > * {
  min-width: 0;
}

.package-card {
  display: flex;
  flex-direction: column;
  min-height: 332px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.06), transparent 34%),
    radial-gradient(circle at 100% 0%, rgba(45, 212, 191, 0.16), transparent 34%),
    var(--ink);
  color: #f8fbf5;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 22px 58px rgba(16, 24, 32, 0.12);
  position: relative;
  overflow: hidden;
}

.package-card::after {
  content: "";
  position: absolute;
  inset: auto 34px 34px 34px;
  height: 1px;
  background: linear-gradient(90deg, var(--green), transparent);
  opacity: 0.4;
}

.package-card h3 {
  margin-top: 34px;
  font-size: clamp(2rem, 4vw, 3.65rem);
  line-height: 0.95;
}

.package-card p {
  max-width: 520px;
  color: rgba(248, 251, 245, 0.74);
  font-size: 1.1rem;
  line-height: 1.55;
}

.package-inclusions {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 22px;
}

.package-inclusions button {
  appearance: none;
  text-align: left;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
  color: rgba(248, 251, 245, 0.86);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease, color 160ms ease;
}

.package-inclusions button:hover,
.package-inclusions button:focus-visible,
.package-inclusions button.is-active {
  transform: translateY(-2px);
  border-color: rgba(45, 212, 191, 0.46);
  background: rgba(45, 212, 191, 0.16);
  color: #ffffff;
}

.package-visual-shell {
  position: relative;
  align-self: start;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #f8f3e9;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.72),
    0 18px 44px rgba(16, 24, 32, 0.08),
    0 42px 100px rgba(16, 24, 32, 0.08);
  aspect-ratio: 920 / 620;
}

@media (max-width: 1120px) {
  .package-layout {
    grid-template-columns: 1fr;
  }

  .package-visual-shell {
    max-width: 820px;
    margin-inline: auto;
  }
}

.package-visual {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  border: 0;
  background: #f8f3e9;
}

.compact-deliverables {
  margin-top: 14px;
}

.compact-deliverables .deliverable-panel {
  min-height: 224px;
}

.compact-deliverables .deliverable-panel h3 {
  font-size: 1.38rem;
}

.package-hotspots span {
  position: absolute;
  min-width: 14px;
  min-height: 14px;
  border: 2px solid transparent;
  border-radius: 10px;
  background: rgba(45, 212, 191, 0);
  transition: border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.package-hotspots span.is-active {
  border-color: rgba(230, 95, 84, 0.72);
  background: rgba(230, 95, 84, 0.12);
  box-shadow: 0 0 0 8px rgba(230, 95, 84, 0.08);
}

.builder-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: 34px;
  align-items: center;
}

.builder-layout .section-heading p {
  max-width: 520px;
}

.signal-board {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent 34%),
    radial-gradient(circle at 100% 0%, rgba(45, 212, 191, 0.18), transparent 30%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  color: #f8fbf5;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 32px 80px rgba(0, 0, 0, 0.22);
  transform:
    perspective(1200px)
    rotateX(calc(var(--depth-y, 0) * -1.4deg))
    rotateY(calc(var(--depth-x, 0) * 1.4deg));
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.signal-top {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  color: rgba(248, 251, 245, 0.78);
  font-weight: 900;
}

.signal-top span {
  width: 42px;
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--green), var(--coral));
}

.signal-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  grid-auto-rows: minmax(132px, auto);
  gap: 14px;
  padding: 18px;
}

.signal-card {
  position: relative;
  overflow: hidden;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  background: var(--surface-dark-glass);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.07);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.signal-card::after {
  content: "";
  position: absolute;
  inset: auto 18px 16px 18px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--green), transparent);
  opacity: 0.42;
  transform-origin: left;
  transform: scaleX(0.55);
  transition: transform 180ms ease, opacity 180ms ease;
}

.signal-card:hover {
  transform: translateY(-4px);
  border-color: rgba(45, 212, 191, 0.38);
  background: rgba(255, 255, 255, 0.09);
}

.signal-card:hover::after {
  opacity: 0.88;
  transform: scaleX(1);
}

.signal-card.tall {
  grid-row: span 2;
  min-height: 278px;
}

.signal-card.wide {
  grid-column: 1 / -1;
}

.signal-card strong {
  display: block;
  margin: 10px 0;
  font-family: "Archivo", sans-serif;
  font-size: clamp(1.4rem, 2.5vw, 2.25rem);
  line-height: 1;
}

.signal-card p {
  margin: 0;
  color: rgba(248, 251, 245, 0.7);
  line-height: 1.55;
}

.builder-comparison {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 34px;
  transform:
    perspective(1200px)
    rotateX(calc(var(--depth-y, 0) * -1deg))
    rotateY(calc(var(--depth-x, 0) * 1deg));
  transition: transform 180ms ease;
}

.builder-comparison article {
  min-height: 238px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  background: var(--surface-dark-glass);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.07);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.builder-comparison article:hover,
.builder-comparison article.is-featured {
  transform: translateY(-4px);
  border-color: rgba(45, 212, 191, 0.34);
  background: rgba(45, 212, 191, 0.1);
}

.builder-comparison strong {
  display: block;
  margin: 16px 0 12px;
  font-family: "Archivo", sans-serif;
  font-size: clamp(1.45rem, 2.4vw, 2.2rem);
  line-height: 1;
}

.builder-comparison p {
  margin: 0;
  color: rgba(248, 251, 245, 0.72);
  line-height: 1.55;
}

[data-check-hotspot="structure"] {
  left: 10.2%;
  top: 28.1%;
  width: 46.8%;
  height: 51.3%;
}

[data-check-hotspot="mobile"] {
  left: 60.7%;
  top: 28.1%;
  width: 27.2%;
  height: 51.3%;
}

[data-hotspot-area="desktop-contact"] {
  left: 13.3%;
  top: 71.3%;
  width: 15.9%;
  height: 5.2%;
  border-radius: 999px;
}

[data-hotspot-area="mobile-contact"] {
  left: 63.3%;
  top: 60.6%;
  width: 22%;
  height: 7.5%;
  border-radius: 999px;
}

[data-check-hotspot="updates"] {
  left: 64.3%;
  top: 82.9%;
  width: 16.3%;
  height: 5.5%;
  border-radius: 999px;
}

.package-hotspots [data-check-hotspot="updates"].is-active {
  border-color: rgba(8, 127, 122, 0.86);
  background: rgba(45, 212, 191, 0.2);
  box-shadow: 0 0 0 8px rgba(45, 212, 191, 0.12);
}

.offer-primary,
.contact-panel {
  padding: 34px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: var(--surface-dark-glass);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 24px 70px rgba(0, 0, 0, 0.18);
}

.offer-primary p,
.offer-primary li {
  color: rgba(248, 251, 245, 0.72);
  line-height: 1.6;
}

.offer-primary ul {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding-left: 20px;
}

.offer-stack,
.addon-list,
.quality-grid,
.process-rail,
.deliverable-grid {
  display: grid;
  gap: 14px;
}

.offer-stack article,
.addon-list article,
.quality-panel,
.process-rail article,
.deliverable-panel {
  padding: 24px;
  border-radius: var(--radius);
  transition: transform 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.offer-stack article,
.addon-list article {
  border: 1px solid var(--line-dark);
  background: var(--surface-dark-glass);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.07);
}

.addon-list article {
  position: relative;
  overflow: hidden;
}

.addon-list article::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: linear-gradient(180deg, var(--green), rgba(104, 167, 199, 0.22));
  opacity: 0.74;
}

.offer-stack span,
.process-rail span {
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  margin-bottom: 14px;
  border-radius: 999px;
  background: var(--green);
  color: var(--ink);
  font-weight: 900;
}

.offer-stack p,
.addon-list p {
  margin: 0;
  color: rgba(248, 251, 245, 0.72);
  line-height: 1.55;
}

.quality-grid,
.deliverable-grid {
  grid-template-columns: repeat(4, 1fr);
}

.quality-panel,
.process-rail article,
.deliverable-panel {
  border: 1px solid var(--line);
  background: var(--surface-glass);
  box-shadow:
    var(--highlight-top),
    0 18px 44px rgba(16, 24, 32, 0.06);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.quality-panel p,
.process-rail p,
.deliverable-panel p {
  margin: 0;
  color: var(--soft);
  line-height: 1.55;
}

.quality-icon {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 20px;
  border-radius: 8px;
  background: var(--ink);
  color: var(--green);
  font-family: "Archivo", sans-serif;
  font-weight: 900;
}

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

.process-rail {
  grid-template-columns: repeat(4, 1fr);
  position: relative;
}

.process-rail::before {
  content: "";
  position: absolute;
  left: 24px;
  right: 24px;
  top: 41px;
  height: 2px;
  background: rgba(15, 34, 48, 0.12);
}

.process-rail::after {
  content: "";
  position: absolute;
  left: 24px;
  top: 41px;
  width: calc(var(--process-progress, 0) * (100% - 48px));
  height: 2px;
  background: linear-gradient(90deg, var(--green), var(--coral));
  transition: width 260ms ease;
}

.process-rail article {
  position: relative;
  z-index: 1;
}

.process-rail article.is-current {
  border-color: rgba(8, 127, 122, 0.28);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(251, 247, 239, 0.7));
  box-shadow:
    var(--highlight-top),
    0 26px 58px rgba(15, 34, 48, 0.1);
}

.process-rail article.is-current span {
  background: var(--coral);
  color: #fffdf8;
}

.deliverable-panel {
  min-height: 278px;
  display: flex;
  flex-direction: column;
}

.deliverable-panel h3 {
  margin-top: auto;
  font-size: 1.55rem;
}

.review-band {
  padding-top: 70px;
  padding-bottom: 78px;
  background:
    radial-gradient(circle at 74% 8%, rgba(45, 212, 191, 0.12), transparent 30%),
    radial-gradient(circle at 20% 88%, rgba(104, 167, 199, 0.08), transparent 28%),
    linear-gradient(180deg, #0e2532 0%, #071822 100%);
}

.review-board {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: 22px 28px;
  align-items: center;
  padding: 28px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: var(--surface-dark-glass);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 28px 80px rgba(0, 0, 0, 0.22);
  overflow: hidden;
}

.review-board::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.09), transparent 30%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.025) 0 1px, transparent 1px 74px);
}

.review-board::after {
  content: "";
  position: absolute;
  inset: auto 34px 22px 34px;
  height: 1px;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(45, 212, 191, 0.42), transparent);
}

.review-board .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 10px;
  border: 1px solid rgba(45, 212, 191, 0.22);
  border-radius: 999px;
  background: rgba(45, 212, 191, 0.07);
}

.review-board .eyebrow::after {
  display: none;
}

.review-board > * {
  position: relative;
  z-index: 1;
}

.review-board h2 {
  max-width: 650px;
  font-size: clamp(2.3rem, 4vw, 4.15rem);
}

.review-board p {
  max-width: 640px;
  color: rgba(248, 251, 245, 0.72);
  font-size: 1.08rem;
  line-height: 1.6;
}

.review-visual {
  width: 100%;
  max-height: 330px;
  object-fit: contain;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  background: #0c131a;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 24px 60px rgba(0, 0, 0, 0.2);
  transform: translateZ(0);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.review-board:hover .review-visual {
  transform: translateY(-3px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 32px 76px rgba(0, 0, 0, 0.24);
}

.review-checks {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}

.review-actions {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
  width: fit-content;
  margin-left: auto;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.055);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 18px 44px rgba(0, 0, 0, 0.12);
}

.review-actions .button-primary {
  min-width: 170px;
}

.review-actions .button-secondary {
  color: #f8fbf5;
  border-color: var(--line-dark);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.04));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.review-checks span {
  position: relative;
  padding: 15px 18px;
  padding-left: 42px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  background: var(--surface-dark-glass);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.07);
  color: rgba(248, 251, 245, 0.84);
  font-weight: 800;
  transition: transform 160ms ease, background 160ms ease;
}

.review-checks span::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 18px;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(45, 212, 191, 0.12);
}

.review-checks span:hover {
  transform: translateY(-3px);
  background: rgba(45, 212, 191, 0.12);
  border-color: rgba(45, 212, 191, 0.24);
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 26px;
  align-items: center;
  border-color: rgba(16, 24, 32, 0.14);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 34%),
    radial-gradient(circle at 82% 0%, rgba(45, 212, 191, 0.16), transparent 26%),
    var(--ink);
  color: #f8fbf5;
  position: relative;
  overflow: hidden;
}

.contact-panel::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: calc(var(--radius) - 2px);
  pointer-events: none;
}

.contact-panel::after {
  content: "";
  position: absolute;
  right: 8%;
  top: 50%;
  width: 260px;
  aspect-ratio: 1;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(45, 212, 191, 0.18), transparent 62%);
  transform: translateY(-50%);
  pointer-events: none;
}

.contact-panel > * {
  position: relative;
  z-index: 1;
}

.contact-panel p {
  max-width: 650px;
  color: rgba(248, 251, 245, 0.74);
  line-height: 1.6;
}

.contact-panel .button-secondary {
  color: #f8fbf5;
  border-color: var(--line-dark);
  background: rgba(255, 255, 255, 0.08);
}

.site-footer {
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 66px max(16px, calc((100vw - var(--content)) / 2)) 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background:
    radial-gradient(circle at 78% 0%, rgba(230, 95, 84, 0.08), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), transparent 18%),
    radial-gradient(circle at 18% 16%, rgba(45, 212, 191, 0.13), transparent 28%),
    linear-gradient(145deg, #081720 0%, #102d3b 58%, #07131c 100%);
  color: rgba(248, 251, 245, 0.72);
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 48px;
  align-items: start;
}

.footer-brand .brand-lockup {
  width: fit-content;
  color: #f8fbf5;
}

.footer-brand .brand-mark {
  background: var(--green);
  color: var(--ink);
}

.footer-brand .brand-lockup small {
  color: rgba(248, 251, 245, 0.68);
}

.footer-brand p {
  max-width: 520px;
  margin: 24px 0 0;
  color: rgba(248, 251, 245, 0.72);
  font-size: 1.06rem;
  line-height: 1.62;
}

.footer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.footer-actions .button-secondary {
  color: #f8fbf5;
  border-color: var(--line-dark);
  background: rgba(255, 255, 255, 0.08);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.footer-links div {
  display: grid;
  align-content: start;
  gap: 12px;
}

.footer-links h2 {
  margin: 0 0 6px;
  color: var(--green);
  font-family: "Archivo", sans-serif;
  font-size: 0.78rem;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.footer-links a {
  color: rgba(248, 251, 245, 0.78);
  font-weight: 800;
  transition: color 160ms ease, transform 160ms ease;
}

.footer-links a:hover {
  color: #f8fbf5;
  transform: translateX(2px);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 48px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(248, 251, 245, 0.54);
  font-size: 0.92rem;
  font-weight: 800;
}

.compact-footer {
  padding-top: 30px;
}

.compact-footer .footer-bottom {
  margin-top: 0;
}

.compact-footer a {
  color: rgba(248, 251, 245, 0.78);
  font-weight: 900;
}

.form-page .page-shell {
  padding-bottom: 0;
}

.form-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: 34px;
  align-items: start;
  min-height: calc(100vh - 108px);
}

.form-intro {
  position: sticky;
  top: 116px;
}

.form-intro h1 {
  font-size: clamp(2.8rem, 4.6vw, 4.8rem);
}

.form-intro p {
  max-width: 590px;
  color: var(--soft);
  font-size: 1.12rem;
  line-height: 1.62;
}

.form-path {
  display: grid;
  gap: 10px;
  margin-top: 30px;
}

.form-path span {
  display: flex;
  align-items: center;
  min-height: 46px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.58);
  color: rgba(15, 34, 48, 0.72);
  font-weight: 900;
}

.brief-preview {
  margin-top: 14px;
  padding: 22px;
  border: 1px solid rgba(15, 34, 48, 0.13);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 100% 0%, rgba(45, 212, 191, 0.16), transparent 38%),
    rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 48px rgba(16, 24, 32, 0.08);
}

.brief-preview strong {
  display: block;
  margin: 10px 0;
  font-family: "Archivo", sans-serif;
  font-size: 1.34rem;
}

.brief-preview p {
  margin: 0;
  color: var(--soft);
  font-size: 1rem;
}

.intake-form {
  display: grid;
  gap: 18px;
}

.form-section,
.form-submit-panel {
  display: grid;
  gap: 16px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 48px rgba(16, 24, 32, 0.08);
}

.form-section h2 {
  margin: 8px 0 2px;
  font-size: clamp(1.85rem, 3vw, 2.8rem);
}

.form-section label {
  display: grid;
  gap: 8px;
  color: rgba(15, 34, 48, 0.76);
  font-weight: 900;
}

.form-section input,
.form-section textarea,
.form-section select {
  width: 100%;
  min-height: 48px;
  padding: 13px 14px;
  border: 1px solid rgba(15, 34, 48, 0.16);
  border-radius: var(--radius);
  background: #fffdf8;
  color: var(--ink);
  font: inherit;
  font-weight: 700;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.form-section textarea {
  min-height: 112px;
  resize: vertical;
}

.form-section input:focus,
.form-section textarea:focus,
.form-section select:focus {
  border-color: rgba(8, 127, 122, 0.46);
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(45, 212, 191, 0.14);
}

.form-submit-panel {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  background: var(--ink);
  color: #f8fbf5;
}

.form-submit-panel p {
  margin: 0;
  color: rgba(248, 251, 245, 0.76);
  line-height: 1.55;
}

.form-submit-panel strong {
  color: #f8fbf5;
}

.form-submit-panel .button-secondary {
  color: #f8fbf5;
  border-color: var(--line-dark);
  background: rgba(255, 255, 255, 0.08);
}

.slot-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.booking-calendar {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(220px, 0.8fr);
  gap: 14px;
  align-items: stretch;
}

.calendar-card,
.booking-summary {
  border: 1px solid rgba(15, 34, 48, 0.14);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.78), rgba(251, 247, 239, 0.62));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.72),
    0 14px 34px rgba(15, 34, 48, 0.07);
}

.calendar-card {
  display: grid;
  gap: 12px;
  padding: 14px;
}

.calendar-top,
.calendar-days {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
  align-items: center;
}

.calendar-top strong {
  grid-column: span 3;
  font-family: "Archivo", sans-serif;
  font-size: 1.18rem;
}

.calendar-top span {
  grid-column: span 2;
  justify-self: end;
  color: var(--green-deep);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.calendar-days span {
  display: grid;
  min-height: 30px;
  place-items: center;
  border-radius: 999px;
  background: rgba(15, 34, 48, 0.05);
  color: rgba(15, 34, 48, 0.56);
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.booking-summary {
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 18px;
  background:
    radial-gradient(circle at 100% 0%, rgba(45, 212, 191, 0.18), transparent 42%),
    linear-gradient(145deg, rgba(15, 34, 48, 0.96), rgba(23, 52, 70, 0.88));
  color: #f8fbf5;
}

.booking-summary .mini-label {
  color: var(--green);
}

.booking-summary strong {
  font-family: "Archivo", sans-serif;
  font-size: 1.28rem;
  line-height: 1.08;
}

.booking-summary p {
  margin: 0;
  color: rgba(248, 251, 245, 0.72);
  line-height: 1.5;
}

.slot-grid label {
  cursor: pointer;
}

.slot-grid input {
  position: absolute;
  width: 1px;
  min-height: 1px;
  opacity: 0;
  pointer-events: none;
}

.slot-grid span {
  display: block;
  min-height: 88px;
  padding: 16px;
  border: 1px solid rgba(15, 34, 48, 0.16);
  border-radius: var(--radius);
  background: #fffdf8;
  color: rgba(15, 34, 48, 0.74);
  font-weight: 900;
  line-height: 1.4;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.slot-grid small {
  display: block;
  margin-bottom: 8px;
  color: var(--green-deep);
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.slot-grid strong {
  color: var(--ink);
  font-family: "Archivo", sans-serif;
  font-size: 1.18rem;
}

.slot-grid input:focus-visible + span,
.slot-grid input:checked + span,
.slot-grid span:hover {
  transform: translateY(-2px);
  border-color: rgba(8, 127, 122, 0.42);
  background: rgba(45, 212, 191, 0.12);
  box-shadow: 0 14px 34px rgba(15, 34, 48, 0.08);
}

.reveal-item {
  opacity: 1;
  transform: none;
  transition: opacity 420ms ease, transform 420ms ease;
}

.has-scroll-fade .reveal-item {
  opacity: 0;
  transform: translateY(18px);
}

.reveal-item.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.hero .reveal-item {
  opacity: 1;
  transform: none;
}

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

  *,
  *::before,
  *::after {
    transition: none !important;
  }

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

  body.ambient-pointer::before {
    display: none;
  }
}

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

  .desktop-nav {
    order: 3;
    grid-column: 1 / -1;
  }

  .hero,
  .offer-layout,
  .split-section,
  .package-layout,
  .builder-layout,
  .contact-panel,
  .form-hero {
    grid-template-columns: 1fr;
  }

  .hero-route,
  .booking-calendar {
    grid-template-columns: 1fr;
  }

  .form-intro {
    position: static;
  }

  .quality-grid,
  .deliverable-grid,
  .process-rail,
  .proof-strip,
  .builder-comparison {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

  .footer-inner,
  .footer-links,
  .slot-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .commitment-rail {
    display: none;
  }
}

@media (max-width: 1599px) {
  .commitment-rail {
    display: none;
  }
}

@media (max-width: 1320px) and (min-width: 981px) {
  .commitment-rail {
    right: 0;
  }

  .commitment-rail a {
    grid-template-columns: 10px 1fr;
    width: 132px;
    min-height: 38px;
    padding: 9px 11px;
    overflow: hidden;
    gap: 8px;
    border-radius: 999px 0 0 999px;
    color: rgba(15, 34, 48, 0.72);
    transform: translateX(94px);
  }

  .commitment-rail a:hover,
  .commitment-rail a:focus-visible {
    transform: translateX(0);
  }

  .commitment-rail a.is-active {
    transform: translateX(76px);
  }

  .commitment-rail a.is-active:hover,
  .commitment-rail a.is-active:focus-visible {
    transform: translateX(0);
  }

  .commitment-rail span {
    width: 10px;
    height: 10px;
  }
}

@media (max-width: 680px) {
  section[id] {
    scroll-margin-top: 14px;
  }

  body {
    padding-bottom: 78px;
  }

  .page-shell {
    width: min(calc(100% - 22px), var(--content));
  }

  .mobile-action-bar {
    position: fixed;
    right: 11px;
    bottom: 10px;
    left: 11px;
    z-index: 35;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(0, 1fr));
    gap: 5px;
    padding: 6px;
    border: 1px solid rgba(15, 34, 48, 0.16);
    border-radius: 999px;
    background: rgba(255, 253, 248, 0.9);
    box-shadow: 0 16px 44px rgba(15, 34, 48, 0.18);
    backdrop-filter: blur(16px);
    opacity: 0;
    pointer-events: none;
    transform: translateY(78px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  body.mobile-action-visible .mobile-action-bar {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .mobile-action-bar a {
    display: flex;
    min-height: 42px;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    color: rgba(15, 34, 48, 0.72);
    font-size: 0.82rem;
    font-weight: 950;
    text-align: center;
  }

  .mobile-action-bar:not(.mobile-site-rail) a:first-child,
  .mobile-action-bar a.is-primary {
    background: linear-gradient(135deg, var(--green), #7de0d6);
    color: var(--ink);
    box-shadow: 0 10px 24px rgba(8, 127, 122, 0.18);
  }

  .site-header {
    position: relative;
    top: 8px;
    grid-template-columns: 1fr auto;
    gap: 10px;
    padding: 10px;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
    font-size: 1.08rem;
  }

  .brand-lockup {
    gap: 10px;
  }

  .brand-lockup strong {
    font-size: 0.98rem;
  }

  .brand-lockup small {
    font-size: 0.74rem;
  }

  .header-cta {
    display: inline-flex;
    min-height: 38px;
    padding: 0 12px;
    min-width: 102px;
    font-size: 0.78rem;
    white-space: nowrap;
  }

  .header-cta {
    font-size: 0;
  }

  .header-cta::before {
    content: "Review Call";
    font-size: 0.78rem;
  }

  .desktop-nav {
    display: none;
  }

  .section-band {
    padding-top: 54px;
    padding-bottom: 58px;
  }

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

  .hero.section-band {
    padding-bottom: 50px;
  }

  h1 {
    font-size: clamp(2.55rem, 11vw, 3.32rem);
    line-height: 0.98;
  }

  h2 {
    font-size: clamp(2.1rem, 11vw, 3.3rem);
  }

  .console-grid,
  .quality-grid,
  .addon-list,
  .package-inclusions,
  .signal-grid,
  .builder-comparison,
  .form-submit-panel {
    grid-template-columns: 1fr;
  }

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

  .proof-strip,
  .slot-grid,
  .form-path {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-route {
    grid-template-columns: 1fr;
    gap: 7px;
    margin-top: 20px;
  }

  .hero-route span {
    min-height: 42px;
    padding: 9px 11px;
    font-size: 0.84rem;
  }

  .signal-card.tall,
  .signal-card.wide {
    grid-column: auto;
    grid-row: auto;
    min-height: 0;
  }

  .package-card,
  .package-visual {
    min-height: 0;
  }

  .package-card,
  .offer-primary,
  .contact-panel,
  .form-section,
  .form-submit-panel,
  .brief-preview {
    padding: 20px;
  }

  .package-card h3 {
    margin-top: 18px;
  }

  .package-visual-shell {
    max-height: none;
  }

  .package-visual {
    height: 100%;
  }

  .deliverable-panel,
  .compact-deliverables .deliverable-panel,
  .quality-panel,
  .process-rail article,
  .offer-stack article,
  .addon-list article,
  .builder-comparison article {
    min-height: 0;
    padding: 18px;
  }

  .compact-deliverables .deliverable-panel,
  .process-rail article {
    padding: 16px;
  }

  .compact-deliverables .quality-icon,
  .process-rail span {
    width: 30px;
    height: 30px;
    margin-bottom: 10px;
    font-size: 0.84rem;
  }

  .compact-deliverables .deliverable-panel h3,
  .process-rail h3 {
    font-size: 1.02rem;
    line-height: 1.15;
  }

  .compact-deliverables .deliverable-panel p,
  .process-rail p {
    font-size: 0.86rem;
    line-height: 1.42;
  }

  .deliverable-panel h3 {
    margin-top: 14px;
  }

  .website-console {
    margin-top: 2px;
  }

  .console-grid {
    gap: 10px;
    padding: 14px;
  }

  .preview-panel:not(.large) {
    display: none;
  }

  .preview-panel.large {
    min-height: 0;
    padding: 16px;
  }

  .preview-panel strong {
    font-size: 1.22rem;
  }

  .system-map {
    margin-top: 16px;
  }

  .process-rail::before,
  .process-rail::after {
    display: none;
  }

  .review-board {
    grid-template-columns: 1fr;
    padding: 24px;
  }

  .review-band {
    padding-top: 54px;
    padding-bottom: 66px;
  }

  .review-visual {
    max-height: 260px;
    object-fit: cover;
  }

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

  .review-checks span {
    padding: 14px 12px 14px 34px;
    font-size: 0.88rem;
  }

  .review-checks span::before {
    left: 12px;
    top: 17px;
    width: 10px;
    height: 10px;
    box-shadow: 0 0 0 4px rgba(45, 212, 191, 0.1);
  }

  .form-hero {
    gap: 24px;
  }

  .form-intro h1 {
    font-size: clamp(2.45rem, 11vw, 3.22rem);
    line-height: 0.98;
  }

  .form-path {
    gap: 8px;
    margin-top: 20px;
  }

  .form-path span {
    min-height: 54px;
    padding: 10px;
    align-items: center;
    font-size: 0.82rem;
    line-height: 1.2;
  }

  .form-section h2 {
    font-size: clamp(1.7rem, 8vw, 2.35rem);
  }

  .form-section textarea {
    min-height: 92px;
  }

  .slot-grid span {
    min-height: 76px;
    padding: 14px;
  }

  .slot-grid strong {
    font-size: 1.02rem;
  }

  .calendar-card {
    padding: 12px;
  }

  .calendar-top {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .calendar-top strong,
  .calendar-top span {
    grid-column: auto;
    justify-self: start;
  }

  .calendar-days {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 5px;
  }

  .calendar-days span {
    min-height: 26px;
    font-size: 0.64rem;
  }

  .booking-summary {
    padding: 16px;
  }

  .footer-inner,
  .footer-links {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .preview-panel.large {
    min-height: 0;
  }

  .proof-strip {
    margin-top: -18px;
    margin-bottom: 30px;
    gap: 10px;
  }

  .proof-strip article {
    padding: 16px;
  }

  .proof-strip strong {
    font-size: 1rem;
  }

  .mini-label {
    font-size: 0.68rem;
  }
}
