:root {
  color-scheme: dark;
  --bg: #020304;
  --bg-2: #060708;
  --panel: #08090b;
  --panel-2: #101216;
  --panel-3: #171a20;
  --line: #282b31;
  --line-strong: #d8d5cf;
  --text: #f8f7f3;
  --muted: #b9b3aa;
  --soft: #ebe7df;
  --accent: #ffffff;
  --accent-2: #f4f1eb;
  --accent-3: #071a2d;
  --accent-ink: #050607;
  --accent-glow: rgba(255, 255, 255, .14);
  --maple: #e34f35;
  --cyan: #63c7ef;
  --green: #6ec89c;
  --shadow: 0 24px 70px rgba(0, 0, 0, .46);
  --radius: 8px;
  --page-pad: clamp(16px, 2.4vw, 56px);
  --header: 72px;
  font-family: "Helvetica Neue", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  scroll-behavior: smooth;
  background: var(--bg);
  overflow-x: hidden;
  overflow-y: scroll;
  scrollbar-gutter: stable;
}

body {
  margin: 0;
  min-height: 100dvh;
  min-width: 0;
  display: flex;
  flex-direction: column;
  background:
    radial-gradient(circle at 74% 0, rgba(255, 255, 255, .08), transparent 32%),
    linear-gradient(180deg, rgba(2, 3, 4, .98), rgba(5, 6, 8, 1)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, .018) 0 1px, transparent 1px 132px),
    var(--bg);
  color: var(--text);
  line-height: 1.55;
  font-size: 16px;
  overflow-x: hidden;
}

body.menu-locked {
  overflow-x: hidden;
  overflow-y: scroll;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  color: inherit;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 1000;
  padding: 10px 14px;
  background: var(--accent);
  color: var(--accent-ink);
  border-radius: var(--radius);
  transition: top .2s ease;
}

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

.icon {
  width: 1.25rem;
  height: 1.25rem;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  color: currentColor;
}

.icon svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.icon[data-icon="maple"] svg,
.icon.maple svg {
  fill: var(--maple);
  stroke: var(--maple);
}

.icon.maple-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(2, 3, 4, .86);
  border-bottom: 1px solid rgba(255, 255, 255, .16);
  backdrop-filter: blur(20px);
}

.header-inner {
  width: 100%;
  min-height: var(--header);
  margin: 0;
  padding: 0 var(--page-pad);
  display: flex;
  align-items: center;
  gap: clamp(12px, 1.35vw, 22px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
}

.brand-mark {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 31px;
  line-height: 1;
  color: var(--text);
  background: none;
  -webkit-background-clip: initial;
  background-clip: initial;
  text-shadow: none;
}

.brand-line {
  width: 1px;
  height: 33px;
  background: var(--line-strong);
}

.brand-name {
  font-weight: 600;
  line-height: 1.15;
  font-size: 16px;
  text-transform: uppercase;
}

.mobile-break {
  display: none;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-left: auto;
}

.desktop-nav a {
  padding: 26px 7px 23px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--soft);
  border-bottom: 2px solid transparent;
  white-space: nowrap;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible,
.desktop-nav a[aria-expanded="true"],
.desktop-nav a.is-pinned {
  color: var(--accent-2);
  border-bottom-color: var(--text);
}

.site-header.mega-pinned .desktop-nav a:hover:not(.is-pinned),
.site-header.mega-pinned .desktop-nav a:focus-visible:not(.is-pinned),
.site-header.mega-pinned .desktop-nav a[aria-expanded="true"]:not(.is-pinned) {
  color: var(--soft);
  border-bottom-color: transparent;
}

.site-header:not(.mega-open) .desktop-nav a.active {
  color: var(--accent-2);
  border-bottom-color: var(--text);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: 2px;
}

.btn {
  max-width: 100%;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 11px 18px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .02);
  color: var(--text);
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
  line-height: 1.15;
  text-align: center;
  white-space: normal;
  cursor: pointer;
  transition: transform .15s ease, border-color .15s ease, background .15s ease;
}

.btn .icon {
  color: inherit;
}

.btn > span:not(.icon) {
  min-width: 0;
  max-width: 100%;
  color: inherit;
  text-align: center;
  overflow-wrap: anywhere;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
  border-color: var(--accent-3);
  background: var(--accent-3);
  color: #fff;
}

.btn-primary {
  color: var(--accent-ink);
  border-color: #fff;
  background: #fff;
  box-shadow: 0 16px 36px rgba(0, 0, 0, .24);
  text-shadow: none;
}

.btn-primary:hover,
.btn-primary:focus-visible {
  color: #fff;
  border-color: var(--accent-3);
  background: var(--accent-3);
}

.header-actions .btn {
  width: 150px;
  min-height: 42px;
  height: 44px;
  max-height: 44px;
  min-width: 0;
  max-width: 150px;
  padding: 6px 10px;
  gap: 8px;
  line-height: 1;
  font-size: 12px;
  overflow: hidden;
  text-wrap: balance;
}

.header-actions .btn .icon {
  width: 18px;
  height: 18px;
}

.header-actions .btn > span:not(.icon) {
  min-width: 0;
  width: 100%;
  overflow-wrap: break-word;
  text-align: center;
}

.header-buy,
.header-book {
  min-width: 0;
}

.btn.full,
.full {
  width: 100%;
}

.menu-toggle,
.mobile-menu-head button {
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .02);
  display: none;
  place-items: center;
  cursor: pointer;
  position: relative;
  touch-action: manipulation;
}

.menu-toggle {
  z-index: 2;
}

.header-book {
  border-color: rgba(255, 255, 255, .48);
  background: transparent;
  color: var(--accent-2);
}

@media (max-width: 1320px) {
  .header-inner {
    gap: 14px;
  }

  .brand {
    gap: 9px;
  }

  .brand-name {
    font-size: 15px;
  }

  .desktop-nav a {
    padding-left: 7px;
    padding-right: 7px;
    font-size: 13px;
  }

  .header-book {
    display: none;
  }

  .header-actions .btn {
    width: 144px;
    min-width: 0;
    max-width: 144px;
    height: 44px;
    max-height: 44px;
    padding-left: 10px;
    padding-right: 10px;
  }
}

@media (max-width: 1180px) {
  .desktop-nav,
  .mega-panel {
    display: none;
  }

  .menu-toggle,
  .mobile-menu-head button {
    display: grid;
  }

  .mobile-menu.open,
  .mobile-menu[aria-hidden="false"] {
    display: block;
  }

  .header-inner {
    padding-left: 18px;
    padding-right: 18px;
  }

  .header-actions {
    margin-left: auto;
  }

  .header-book {
    display: none;
  }
}

.mega-panel {
  position: fixed;
  left: 0;
  right: 0;
  top: var(--header-live, var(--header));
  bottom: 0;
  width: 100%;
  height: calc(100dvh - var(--header-live, var(--header)));
  transform: none;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .18s ease, visibility .18s ease;
  padding: 10px var(--page-pad) 18px;
  border-top: 1px solid rgba(255, 255, 255, .08);
  background:
    linear-gradient(180deg, rgba(2, 3, 4, .95), rgba(8, 9, 11, .9)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, .018) 0 1px, transparent 1px 110px);
  box-shadow: var(--shadow);
  overflow-x: hidden;
  overflow-y: auto;
}

.site-header.mega-open .mega-panel {
  opacity: 1;
  visibility: visible;
  transform: none;
}

.mega-hover-bridge {
  position: absolute;
  inset: 0 0 auto;
  height: 18px;
  pointer-events: auto;
  background: transparent;
}

.mega-shell {
  position: relative;
  width: min(1240px, calc(100vw - (var(--page-pad) * 2)));
  margin: 0 auto;
  min-height: min(560px, calc(100dvh - var(--header-live, var(--header)) - 28px));
  max-height: none;
  display: grid;
  grid-template-columns: minmax(220px, .32fr) minmax(0, 1fr);
  gap: 0;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(8, 9, 11, .98), rgba(2, 3, 4, .98));
  box-shadow: 0 24px 70px rgba(0, 0, 0, .52);
  overflow: hidden;
  pointer-events: auto;
}

.mega-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 3;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(216, 224, 236, .28);
  border-radius: 999px;
  background: rgba(2, 3, 4, .84);
  color: var(--soft);
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(0, 0, 0, .24);
}

.mega-close:hover,
.mega-close:focus-visible {
  color: #fff;
  border-color: rgba(216, 224, 236, .48);
  background: var(--accent-3);
}

.mega-rail {
  padding: 10px;
  border-right: 1px solid var(--line);
  display: grid;
  gap: 6px;
  align-content: start;
  overflow-y: auto;
  min-width: 0;
}

.mega-rail-item {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  padding: 10px;
  border: 1px solid transparent;
  border-radius: 6px;
  color: var(--soft);
  transition: background .15s ease, border-color .15s ease, color .15s ease;
}

.mega-rail-item .icon {
  width: 28px;
  height: 28px;
  color: var(--accent);
}

.mega-rail-item strong,
.mega-rail-item small {
  display: block;
}

.mega-rail-item strong {
  color: var(--text);
  font-size: 15px;
}

.mega-rail-item small {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

.mega-rail-item:hover,
.mega-rail-item:focus-visible,
.mega-rail-item.is-active {
  color: var(--accent-2);
  border-color: rgba(255, 255, 255, .38);
  background: rgba(255, 255, 255, .08);
}

.mega-stage {
  min-width: 0;
  padding: 16px;
  overflow-y: auto;
}

.mega-pane {
  display: none;
  gap: 16px;
  min-width: 0;
}

.mega-pane.is-active {
  display: grid;
  grid-template-rows: auto 1fr auto;
}

.mega-pane-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-right: 62px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.mega-pane-head > div {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  column-gap: 12px;
  min-width: 0;
}

.mega-pane-head .icon {
  grid-row: 1 / span 2;
  width: 42px;
  height: 42px;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, .3);
  border-radius: var(--radius);
  color: var(--soft);
  background: rgba(255, 255, 255, .06);
}

.mega-pane-head .eyebrow {
  margin: 0;
}

.mega-pane-head h2 {
  grid-column: 2;
  margin: 2px 0 0;
  font-size: clamp(22px, 2.3vw, 34px);
  line-height: 1.05;
  max-width: 820px;
}

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

.mega-link-grid a {
  min-width: 0;
  min-height: 86px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .025);
  display: grid;
  align-content: center;
  gap: 4px;
  transition: border-color .15s ease, background .15s ease, transform .15s ease;
}

.mega-link-grid a strong {
  color: var(--text);
  font-size: 16px;
}

.mega-link-grid a span {
  color: var(--muted);
  font-size: 13px;
}

.mega-link-grid a:hover,
.mega-link-grid a:focus-visible {
  border-color: rgba(255, 255, 255, .48);
  background: rgba(255, 255, 255, .08);
  transform: translateY(-1px);
}

.mega-primary:hover,
.mega-primary:focus-visible {
  color: #fff;
  border-color: var(--accent-3);
  background: var(--accent-3);
  transform: translateY(-1px);
}

.mega-primary {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  white-space: nowrap;
  padding: 13px 18px;
  border: 1px solid rgba(216, 224, 236, .46);
  border-radius: var(--radius);
  color: var(--accent-ink);
  font-weight: 900;
  background: #fff;
  box-shadow: 0 14px 28px rgba(0, 0, 0, .3);
  transition: transform .15s ease, border-color .15s ease, background .15s ease;
}

.mega-cta-bar {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px;
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
  background: rgba(255, 255, 255, .025);
}

.mega-cta-bar strong,
.mega-cta-bar span {
  display: block;
}

.mega-cta-bar strong {
  color: var(--text);
}

.mega-cta-bar span {
  color: var(--muted);
  font-size: 14px;
}

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

.mobile-menu {
  position: fixed;
  inset: 0;
  width: auto;
  height: 100dvh;
  max-width: none;
  display: none;
  background: rgba(0, 0, 0, .78);
  z-index: 250;
  overflow: hidden;
  overscroll-behavior: contain;
  pointer-events: none;
}

.mobile-menu.open,
.mobile-menu[aria-hidden="false"] {
  display: block;
  pointer-events: auto;
}

.mobile-menu-panel {
  width: 100%;
  height: 100dvh;
  min-height: 100dvh;
  max-height: none;
  margin: 0;
  padding: var(--page-pad);
  background:
    radial-gradient(circle at 85% 0, rgba(255, 255, 255, .1), transparent 28%),
    linear-gradient(145deg, rgba(12, 13, 16, .98), rgba(2, 3, 4, .98) 62%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, .018) 0 1px, transparent 1px 110px);
  box-shadow: var(--shadow);
  overflow-y: auto;
  overscroll-behavior: contain;
}

.mobile-menu-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 26px;
  padding-right: 58px;
}

.mobile-menu.open .mobile-menu-head button,
.mobile-menu[aria-hidden="false"] .mobile-menu-head button {
  position: fixed;
  top: max(16px, calc(env(safe-area-inset-top) + 14px));
  right: max(16px, calc(env(safe-area-inset-right) + 14px));
  z-index: 280;
  display: grid;
  background: rgba(2, 3, 4, .58);
  border-color: rgba(216, 224, 236, .34);
  color: var(--soft);
  box-shadow: 0 16px 38px rgba(0, 0, 0, .26);
  backdrop-filter: blur(14px);
}

.mobile-menu-copy {
  max-width: 720px;
  margin: 6px 0 24px;
  color: var(--soft);
  font-size: 20px;
  line-height: 1.35;
}

.mobile-nav-group {
  margin-top: 8px;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, .055), rgba(255, 255, 255, .018));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08);
  overflow: hidden;
}

.mobile-nav-group summary {
  list-style: none;
  cursor: pointer;
  min-height: 84px;
  display: grid;
  grid-template-columns: 56px 1fr;
  align-items: center;
  gap: 16px;
  position: relative;
  padding: 10px 18px;
}

.mobile-nav-group summary::-webkit-details-marker {
  display: none;
}

.mobile-nav-group summary::after {
  content: "⌄";
  position: absolute;
  right: 4px;
  color: var(--accent);
  font-size: 25px;
}

.mobile-nav-group[open] summary::after {
  transform: rotate(180deg);
}

.mobile-nav-group summary > .icon {
  width: 48px;
  height: 48px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: var(--radius);
  color: var(--accent);
  background: rgba(255, 255, 255, .035);
}

.mobile-menu-home {
  min-height: 84px;
  display: grid;
  grid-template-columns: 56px 1fr;
  align-items: center;
  gap: 16px;
  margin: 14px 0 8px;
  padding: 10px 18px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, .075), rgba(255, 255, 255, .025));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1);
  color: var(--text);
  font-weight: 900;
  text-transform: uppercase;
}

.mobile-menu-home > .icon {
  width: 48px;
  height: 48px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: var(--radius);
  color: var(--accent);
  background: rgba(255, 255, 255, .035);
}

.mobile-nav-group strong,
.mobile-nav-group small,
.mobile-menu-home strong,
.mobile-menu-home small {
  display: block;
}

.mobile-nav-group strong,
.mobile-menu-home strong {
  font-size: 21px;
}

.mobile-nav-group small,
.mobile-menu-home small {
  color: var(--muted);
  padding-right: 34px;
  text-transform: none;
  font-weight: 700;
}

.mobile-nav-links {
  padding: 0 18px 16px 90px;
  display: grid;
  gap: 8px;
}

.mobile-nav-links a {
  color: var(--soft);
  padding: 7px 0;
}

.mobile-nav-links .mobile-explore-link {
  margin: 0;
  padding: 7px 0;
  border: 0;
  border-radius: 0;
  color: var(--text);
  background: transparent;
  font-weight: 900;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.mobile-menu-cta {
  margin: 24px 0;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, .32);
  border-radius: var(--radius);
  display: grid;
  gap: 12px;
  background: linear-gradient(180deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .02));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08);
}

.mobile-menu .btn {
  min-height: 52px;
  border-color: rgba(255, 255, 255, .38);
  background: rgba(255, 255, 255, .03);
}

.mobile-menu .btn-primary {
  border-color: #fff;
  background: linear-gradient(180deg, #fff, #e8e4dc);
  color: #050607;
  box-shadow: 0 18px 42px rgba(0, 0, 0, .34);
}

.mobile-menu-cta strong {
  color: var(--accent-2);
  font-size: 20px;
}

.mobile-menu-cta > span {
  color: var(--muted);
}

main {
  flex: 1 0 auto;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0 var(--page-pad) 28px;
}

.hero,
.section {
  margin: 0;
}

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

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(440px, .96fr);
  gap: 42px;
  align-items: center;
}

.home-hero {
  position: relative;
  min-height: calc(100svh - var(--header));
  isolation: isolate;
  align-items: center;
  overflow: hidden;
}

.home-hero::before {
  content: "";
  position: absolute;
  inset: 0 calc(var(--page-pad) * -1) -24px;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(2, 3, 4, .96) 0%, rgba(2, 3, 4, .76) 42%, rgba(2, 3, 4, .18) 70%, rgba(2, 3, 4, .76) 100%),
    linear-gradient(180deg, rgba(2, 3, 4, .1), rgba(2, 3, 4, .46) 64%, rgba(2, 3, 4, .98) 100%),
    url("../homepage-business-owner.webp") right center / min(62vw, 1040px) auto no-repeat;
}

.home-hero::after {
  content: "";
  position: absolute;
  inset: 0 calc(var(--page-pad) * -1) -24px;
  z-index: -1;
  background:
    radial-gradient(circle at 74% 24%, rgba(255, 255, 255, .13), transparent 30%),
    linear-gradient(90deg, rgba(2, 3, 4, .62) 0%, rgba(2, 3, 4, .22) 58%, rgba(2, 3, 4, .7) 100%);
  pointer-events: none;
}

.home-hero .hero-copy {
  max-width: 780px;
  padding: clamp(38px, 5vw, 80px) 0;
}

.home-hero .hero-copy > .eyebrow,
.home-hero .hero-copy > h1,
.home-hero .hero-copy > .lead,
.home-hero .hero-copy > p:not(.eyebrow):not(.lead) {
  text-shadow: 0 2px 22px rgba(0, 0, 0, .84);
}

.home-hero .value-lock,
.home-hero .offer-grid > div {
  background: linear-gradient(180deg, rgba(255, 255, 255, .07), rgba(255, 255, 255, .018));
  backdrop-filter: blur(12px);
}

.home-hero .hero-photo {
  min-height: clamp(520px, 70svh, 780px);
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
}

.home-hero .hero-photo img,
.home-hero .hero-photo::after {
  opacity: 0;
}

.home-hero .hero-client-quote {
  top: 20%;
  right: clamp(10px, 2vw, 26px);
  width: min(360px, 36vw);
}

.home-hero .hero-photo figcaption {
  left: auto;
  right: clamp(10px, 2vw, 26px);
  bottom: 16%;
  width: min(410px, 38vw);
  border-color: rgba(255, 255, 255, .26);
  background: linear-gradient(90deg, rgba(2, 3, 4, .02), rgba(2, 3, 4, .58));
  box-shadow: none;
}

.hero-copy {
  min-width: 0;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent);
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: 0;
  font-size: 13px;
}

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

h1 {
  margin-bottom: 16px;
  font-size: clamp(48px, 5.2vw, 76px);
  line-height: .98;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 span,
h2 span,
.checkout-form h2 {
  color: var(--text);
}

h2 {
  font-size: 30px;
  line-height: 1.18;
  letter-spacing: 0;
}

h3 {
  font-size: 20px;
  line-height: 1.22;
  letter-spacing: 0;
}

h1,
h2,
.featured-direction-copy h3,
.featured-product-image figcaption strong {
  font-family: "Helvetica Neue", Inter, ui-sans-serif, system-ui, sans-serif;
  font-weight: 400;
}

.lead {
  font-size: 21px;
  line-height: 1.42;
  color: var(--soft);
  font-weight: 500;
}

.hero p:not(.eyebrow) {
  color: var(--soft);
  max-width: 720px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 28px 0 0;
}

.offer-grid {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.offer-grid > div,
.pill,
.card,
.media-strip,
.cta-band,
.checkout-steps,
.quick-stats,
.table-wrap,
.before-card,
.secure-note,
.no-monthly {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(12, 13, 16, .92), rgba(3, 4, 5, .92));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .04);
}

.offer-grid > div {
  min-height: 76px;
  display: grid;
  grid-template-columns: 34px 1fr;
  column-gap: 10px;
  align-items: center;
  padding: 12px;
}

.offer-grid .icon {
  color: var(--accent);
  width: 30px;
  height: 30px;
  grid-row: span 2;
}

.offer-grid strong,
.offer-grid span {
  display: block;
  min-width: 0;
}

.offer-grid strong {
  color: var(--text);
  line-height: 1.1;
}

.offer-grid span {
  color: var(--soft);
  font-size: 13px;
  line-height: 1.25;
}

.value-lock,
.handoff-value {
  margin: 18px 0;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .055);
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: var(--soft);
}

.value-lock .icon,
.handoff-value .icon {
  color: var(--accent);
  width: 30px;
  height: 30px;
}

.value-lock strong,
.handoff-value strong {
  display: block;
  color: var(--accent-2);
}

.device-stage {
  position: relative;
  min-height: 470px;
  display: grid;
  align-items: center;
  isolation: isolate;
}

.device-stage::before {
  content: "";
  position: absolute;
  inset: 8% 0;
  background: linear-gradient(145deg, rgba(255, 255, 255, .13), rgba(255, 255, 255, .05) 48%, transparent);
  filter: blur(24px);
  opacity: .65;
  z-index: -1;
}

.hero-photo {
  position: relative;
  min-width: 0;
  margin: 0;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 470px;
  background: #050607;
  box-shadow: var(--shadow);
}

.hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, .12), rgba(0, 0, 0, .02) 42%, rgba(0, 0, 0, .52));
  pointer-events: none;
}

.hero-photo img {
  width: 100%;
  height: 100%;
  min-height: 470px;
  object-fit: cover;
  object-position: center;
}

.hero-photo figcaption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 1;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, .34);
  border-radius: var(--radius);
  background: rgba(4, 5, 7, .82);
  backdrop-filter: blur(14px);
}

.hero-photo figcaption strong,
.hero-photo figcaption span {
  display: block;
}

.hero-photo figcaption strong {
  color: var(--text);
  font-size: 20px;
}

.hero-photo figcaption span {
  color: var(--soft);
}

.hero-client-quote {
  position: absolute;
  top: clamp(18px, 3vw, 40px);
  right: clamp(18px, 3vw, 44px);
  z-index: 2;
  width: min(280px, calc(100% - 36px));
  margin: 0;
  padding: 0;
  color: var(--text);
  text-align: left;
  text-shadow: 0 2px 18px rgba(0, 0, 0, .62);
  isolation: isolate;
}

.hero-client-quote::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: -24px;
  right: -28px;
  bottom: -22px;
  width: min(620px, 58vw);
  border-radius: 0 0 0 var(--radius);
  background: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, .58) 38%, rgba(0, 0, 0, .76) 100%);
  pointer-events: none;
}

.hero-client-quote p {
  margin: 0 0 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(21px, 2.2vw, 30px);
  line-height: 1.16;
}

.hero-client-quote cite {
  display: block;
  font-style: normal;
  color: var(--soft);
}

.hero-client-quote cite span {
  display: block;
  color: var(--muted);
}

.desktop-device {
  width: min(620px, 100%);
  justify-self: end;
  border: 12px solid #171b22;
  border-bottom-width: 34px;
  border-radius: var(--radius);
  background: #050607;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.device-browser {
  height: 24px;
  padding: 7px 10px;
  display: flex;
  gap: 6px;
  background: #0d121a;
}

.device-browser span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--line-strong);
}

.desktop-device img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: top center;
}

.phone-device {
  position: absolute;
  right: 0;
  bottom: 8px;
  width: 178px;
  border: 8px solid #14171d;
  border-radius: 28px;
  background: #071a2d;
  box-shadow: 0 18px 45px rgba(2, 14, 28, .5);
  overflow: hidden;
}

.phone-notch {
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 62px;
  height: 14px;
  background: #051525;
  border-radius: 20px;
  z-index: 2;
}

.phone-device img {
  width: 100%;
  aspect-ratio: 9 / 18;
  object-fit: cover;
  object-position: top center;
}

.media-strip {
  position: relative;
  margin: 0 0 24px;
  padding: clamp(18px, 2vw, 32px);
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(18px, 1.8vw, 28px);
  align-items: center;
  justify-items: center;
  background:
    linear-gradient(180deg, rgba(7, 8, 10, .98), rgba(2, 3, 4, .98)),
    radial-gradient(circle at 50% 0, rgba(255, 255, 255, .08), transparent 40%);
}

.as-seen-logo-card {
  width: min(100%, 1160px);
  min-width: 0;
  display: grid;
  gap: clamp(16px, 1.6vw, 24px);
  place-items: center;
}

.as-seen-logo-card > span {
  color: var(--soft);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.media-logo-grid {
  --logo-max-h: clamp(54px, 4.9vw, 82px);
  --logo-tile-h: clamp(76px, 6.4vw, 104px);
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: clamp(14px, 1.8vw, 24px);
  align-items: center;
  justify-content: center;
}

.media-logo-tile {
  width: var(--logo-tile-w, clamp(88px, 8.2vw, 126px));
  flex: 0 0 var(--logo-tile-w, clamp(88px, 8.2vw, 126px));
  max-width: 100%;
  min-width: 0;
  height: var(--logo-tile-h);
  padding: clamp(6px, .7vw, 10px);
  display: grid;
  place-items: center;
  overflow: visible;
  background: transparent;
}

.media-logo-grid img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: var(--logo-max-h);
  object-fit: contain;
  object-position: center;
  display: block;
}

.media-logo-tile.as-seen-forbes {
  --logo-tile-w: clamp(102px, 7vw, 118px);
}

.media-logo-tile.as-seen-global {
  --logo-tile-w: clamp(118px, 8vw, 132px);
}

.media-logo-tile.as-seen-toronto {
  --logo-tile-w: clamp(320px, 22vw, 340px);
}

.media-logo-tile.as-seen-ctv {
  --logo-tile-w: clamp(128px, 9vw, 150px);
}

.media-logo-tile.as-seen-montreal {
  --logo-tile-w: clamp(86px, 6vw, 98px);
}

.media-logo-tile.as-seen-bloomberg {
  --logo-tile-w: clamp(106px, 7.4vw, 120px);
}

.media-strip-stats {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 260px));
  justify-content: center;
  gap: 14px;
  margin-inline: auto;
}

.media-strip-stats .stat {
  min-height: 76px;
  padding: 12px 18px;
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: 6px;
  background: rgba(255, 255, 255, .03);
  grid-template-columns: 1fr;
  justify-content: center;
  justify-items: center;
  align-content: center;
  align-items: center;
  row-gap: 2px;
  text-align: center;
}

.media-strip-stats .stat .icon {
  justify-self: center;
  align-self: center;
  grid-row: auto;
}

.stat {
  min-width: 0;
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: center;
  column-gap: 10px;
}

.stat .icon {
  width: 38px;
  height: 38px;
  color: var(--accent);
  grid-row: span 2;
}

.stat strong,
.stat span {
  display: block;
}

.stat strong {
  font-size: 20px;
  color: var(--text);
}

.stat span {
  color: var(--soft);
  font-size: 13px;
}

.section {
  padding: 24px 0;
}

.section-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: end;
  margin-bottom: 18px;
}

.section-head.centered {
  display: block;
  text-align: center;
}

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

.card-grid.five {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

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

.card {
  padding: 20px;
  min-width: 0;
}

.feature-card {
  min-height: 185px;
}

.feature-card .icon,
.price-card > .icon,
.addon-card > .icon {
  width: 46px;
  height: 46px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, .32);
  border-radius: 50%;
  color: var(--accent);
  background: rgba(255, 255, 255, .06);
}

.feature-card h3 {
  margin: 14px 0 8px;
}

.feature-card p,
.card p,
.card li {
  color: var(--muted);
}

.two-col {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.testimonial .stars {
  color: var(--accent-2);
  letter-spacing: 0;
  margin-bottom: 8px;
}

.text-link {
  display: inline-flex;
  width: max-content;
  margin-top: 8px;
  color: var(--accent-2);
  font-weight: 900;
}

.text-link:hover,
.text-link:focus-visible {
  color: #fff;
}

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

.story-card {
  display: grid;
  gap: 14px;
}

.story-head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 6px 12px;
  align-items: end;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.story-head span,
.story-head small {
  color: var(--muted);
}

.story-head strong {
  color: var(--accent-2);
  font-size: 34px;
  line-height: 1;
  grid-row: span 2;
}

.story-solution {
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, .26);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .05);
}

.story-solution strong {
  color: var(--soft);
}

.story-card blockquote {
  margin: 0;
  padding-left: 14px;
  border-left: 2px solid var(--accent);
  color: var(--soft);
}

.success-design-showcase {
  display: grid;
  grid-template-columns: minmax(280px, .52fr) minmax(0, 1fr);
  gap: 22px;
  align-items: center;
}

.featured-product-hero {
  display: grid;
  grid-template-columns: minmax(0, .86fr) minmax(420px, 1.05fr);
  gap: 34px;
  align-items: center;
}

.featured-product-image {
  position: relative;
  min-width: 0;
  margin: 0;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  overflow: hidden;
  background: #050607;
  box-shadow: var(--shadow);
}

.featured-product-image img {
  width: 100%;
  min-height: 420px;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.featured-product-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 46%, rgba(4, 5, 7, .82));
  pointer-events: none;
}

.featured-product-image figcaption {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 1;
  padding: 14px;
  border: 1px solid rgba(217, 231, 248, .28);
  border-radius: var(--radius);
  background: rgba(4, 5, 7, .82);
  backdrop-filter: blur(14px);
}

.featured-product-image figcaption strong,
.featured-product-image figcaption span {
  display: block;
}

.featured-product-image figcaption strong {
  color: var(--accent-2);
}

.featured-product-image figcaption span {
  color: var(--soft);
}

.featured-proof-grid,
.launch-product-showcase {
  display: grid;
  grid-template-columns: minmax(280px, .62fr) minmax(0, 1fr);
  gap: 18px;
  align-items: stretch;
}

.featured-proof-grid > .card:first-child,
.launch-product-showcase > .card {
  display: grid;
  align-content: center;
}

.featured-proof-grid > .card:first-child > .icon,
.launch-product-showcase > .card > .icon {
  width: 48px;
  height: 48px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, .32);
  border-radius: 50%;
  color: var(--accent);
  background: rgba(255, 255, 255, .06);
  margin-bottom: 14px;
}

.featured-proof-image {
  padding: 0;
  overflow: hidden;
}

.featured-proof-image img,
.featured-design-strip img {
  width: 100%;
  height: 100%;
  min-height: 330px;
  object-fit: cover;
  object-position: top center;
}

.featured-design-strip {
  display: grid;
  grid-template-columns: minmax(280px, .52fr) minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(12, 13, 16, .92), rgba(3, 4, 5, .92));
  overflow: hidden;
  padding: 18px;
}

.featured-design-strip img {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #050607;
}

.featured-project-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.featured-direction-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.featured-direction-card {
  padding: 0;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(9, 10, 12, .96), rgba(2, 3, 4, .98));
  border-color: rgba(217, 231, 248, .18);
  box-shadow: 0 18px 54px rgba(1, 11, 24, .28);
}

.featured-direction-card figure {
  margin: 0;
  border-bottom: 1px solid var(--line);
  background: #050607;
}

.featured-direction-card img {
  width: 100%;
  aspect-ratio: 4 / 5.2;
  object-fit: cover;
  object-position: top center;
}

.featured-direction-copy {
  display: grid;
  gap: 8px;
  padding: 16px;
}

.featured-direction-copy > span {
  color: var(--accent);
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 2px;
}

.featured-direction-copy h3 {
  margin: 0;
  font-size: clamp(22px, 1.7vw, 30px);
  color: var(--text);
}

.featured-direction-copy p,
.featured-direction-copy small {
  margin: 0;
  color: var(--muted);
}

.featured-direction-copy small {
  line-height: 1.45;
}

.featured-direction-copy .direction-headline {
  color: var(--text);
  font-size: 18px;
  line-height: 1.25;
  font-weight: 800;
}

.featured-direction-copy strong {
  color: var(--accent-2);
  margin-top: 4px;
}

.design-board-grid {
  display: grid;
  gap: 12px;
}

.design-board-grid img {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #050607;
  box-shadow: var(--shadow);
}

.person {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: 18px;
}

.person small {
  display: block;
  color: var(--muted);
}

.avatar {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), #fff 46%, var(--cyan));
  color: #05101b;
  font-weight: 900;
}

.results-panel {
  grid-column: 1 / -1;
  border: 1px solid rgba(255, 255, 255, .42);
  border-radius: var(--radius);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  overflow: hidden;
  background: #f4f1eb;
  color: #050607;
}

.results-panel .stat {
  padding: 24px;
  border-right: 1px solid rgba(5, 6, 7, .16);
  grid-template-columns: minmax(0, 1fr);
  justify-items: center;
  align-content: center;
  row-gap: 6px;
  column-gap: 0;
  text-align: center;
}

.results-panel .stat .icon {
  grid-row: auto;
  justify-self: center;
}

.results-panel .stat strong,
.results-panel .stat > span:last-child {
  max-width: 100%;
  overflow-wrap: break-word;
}

.results-panel .stat .icon,
.results-panel .stat strong,
.results-panel .stat span {
  color: #071a2d;
}

.results-panel .stat:last-child {
  border-right: 0;
}

.cta-band {
  margin: 24px 0;
  padding: 18px;
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
}

.mock-thumbnail,
.cta-image {
  position: relative;
  min-width: 0;
  border-radius: var(--radius);
  overflow: hidden;
}

.mock-thumbnail img,
.cta-image {
  width: 100%;
  aspect-ratio: 16 / 8;
  object-fit: cover;
  object-position: top center;
}

.mock-thumbnail::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7, 26, 45, .34), transparent 52%);
  pointer-events: none;
}

.pill-row {
  margin: 12px 0 24px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.pill {
  padding: 16px 18px;
  display: flex;
  gap: 14px;
  align-items: center;
}

.pill .icon {
  width: 38px;
  height: 38px;
  color: var(--accent);
}

.pill strong,
.pill small {
  display: block;
}

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

.compact-hero {
  padding-bottom: 16px;
}

.pricing-ledger {
  position: relative;
  min-width: 0;
  align-self: stretch;
  padding: clamp(18px, 2.5vw, 30px);
  display: grid;
  align-content: center;
  gap: 16px;
  border: 1px solid rgba(216, 224, 236, .34);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(216, 224, 236, .08), transparent 34%),
    linear-gradient(180deg, rgba(13, 34, 53, .98), rgba(6, 18, 31, .98));
  box-shadow: var(--shadow);
  overflow: hidden;
}

.pricing-ledger::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, .03) 1px, transparent 1px);
  background-size: 46px 46px;
  opacity: .45;
  pointer-events: none;
}

.ledger-head,
.ledger-lines,
.ledger-footer {
  position: relative;
  z-index: 1;
}

.ledger-head {
  display: grid;
  gap: 6px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.ledger-head span,
.ledger-lines article > span {
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.ledger-head strong {
  color: var(--text);
  font-size: clamp(24px, 2.2vw, 38px);
  line-height: 1.05;
  max-width: 12ch;
}

.ledger-lines {
  display: grid;
  gap: 10px;
}

.ledger-lines article {
  min-width: 0;
  padding: 15px;
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr) auto;
  gap: 6px 12px;
  align-items: center;
  border: 1px solid rgba(216, 224, 236, .2);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .035);
}

.ledger-lines .icon {
  width: 38px;
  height: 38px;
  padding: 9px;
  grid-row: span 2;
  color: var(--accent-2);
  border: 1px solid rgba(216, 224, 236, .28);
  border-radius: 50%;
  background: rgba(142, 168, 214, .08);
}

.ledger-lines strong {
  color: var(--accent-2);
  font-size: clamp(22px, 2vw, 34px);
  line-height: 1;
  white-space: nowrap;
}

.ledger-lines small {
  grid-column: 2 / -1;
  color: var(--muted);
  line-height: 1.45;
}

.ledger-footer {
  padding: 14px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--soft);
  border: 1px solid rgba(142, 168, 214, .34);
  border-radius: var(--radius);
  background: rgba(142, 168, 214, .08);
}

.ledger-footer .icon {
  color: var(--accent-2);
  margin-top: 2px;
}

.consultation-preview {
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(190px, .72fr) minmax(0, 1fr);
  gap: 0;
  align-self: stretch;
  border: 1px solid rgba(216, 224, 236, .34);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(13, 34, 53, .98), rgba(6, 18, 31, .98));
  box-shadow: var(--shadow);
  overflow: hidden;
}

.consultation-preview figure {
  min-width: 0;
  margin: 0;
  border-right: 1px solid var(--line);
}

.consultation-preview img {
  width: 100%;
  height: 100%;
  min-height: 390px;
  object-fit: cover;
  object-position: center;
}

.consultation-preview-copy {
  min-width: 0;
  padding: clamp(18px, 2.2vw, 28px);
  display: grid;
  align-content: center;
  gap: 12px;
}

.consultation-preview-copy h2 {
  margin: 0;
  font-size: clamp(26px, 2.2vw, 40px);
  line-height: 1.05;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
  gap: clamp(12px, 1.1vw, 18px);
}

.launch-pricing-grid {
  grid-template-columns: minmax(0, min(100%, 430px));
}

.price-card {
  position: relative;
  min-width: 0;
  padding: clamp(16px, 1.3vw, 22px);
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.price-card.popular {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px rgba(126, 167, 238, .25);
}

.badge {
  position: absolute;
  top: -10px;
  left: 18px;
  background: var(--accent);
  color: var(--accent-ink);
  border-radius: 999px;
  padding: 3px 8px;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.price strong {
  font-size: clamp(30px, 1.8vw, 40px);
  line-height: 1;
}

.price span {
  color: var(--accent-2);
  font-weight: 700;
  margin-left: 4px;
}

.price-card h3 {
  font-size: clamp(19px, 1.2vw, 23px);
  line-height: 1.16;
  overflow-wrap: anywhere;
}

.price-card ul,
.included-list,
.check-list,
.value-card ul {
  padding: 0;
  margin: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.price-card ul {
  padding-bottom: clamp(12px, 1vw, 20px);
}

.price-card li,
.included-list li,
.check-list li,
.value-card li {
  display: flex;
  gap: 8px;
  align-items: flex-start;
}

.price-card li .icon,
.included-list .icon,
.check-list .icon,
.value-card .icon {
  color: var(--accent);
  width: 18px;
  height: 18px;
  margin-top: 2px;
}

.price-card .btn {
  margin-top: auto;
  min-height: 42px;
  padding: 9px 12px;
  line-height: 1.12;
  white-space: normal;
  text-align: center;
}

.price-card .btn .icon {
  width: 18px;
  height: 18px;
}

.price-card .btn span {
  min-width: 0;
  overflow-wrap: anywhere;
}

.addons-grid {
  display: grid;
  grid-template-columns: 1.25fr repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.addons-intro {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.addon-card strong {
  display: block;
  margin-top: 10px;
  color: var(--accent-2);
  font-size: 20px;
}

.table-wrap {
  position: relative;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .018);
  -webkit-overflow-scrolling: touch;
}

.table-wrap::before {
  content: "Swipe to compare all plans";
  display: none;
  position: sticky;
  left: 0;
  z-index: 2;
  padding: 9px 12px;
  color: var(--accent-2);
  background: linear-gradient(90deg, rgba(7, 26, 45, .98), rgba(7, 26, 45, .82));
  border-bottom: 1px solid var(--line);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2px;
}

table {
  width: 100%;
  min-width: 820px;
  border-collapse: collapse;
}

caption {
  text-align: left;
  padding: 16px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 900;
}

th,
td {
  border: 1px solid var(--line);
  padding: 10px 12px;
  text-align: center;
}

tbody th {
  text-align: left;
  color: var(--soft);
  font-weight: 600;
}

td {
  color: var(--accent-2);
}

.table-check {
  color: #fff;
  font-size: 18px;
  font-weight: 900;
  line-height: 1;
}

.table-empty {
  color: rgba(255, 255, 255, .62);
}

.faq-grid {
  display: grid;
  grid-template-columns: .8fr 1.6fr;
  gap: 16px;
}

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

details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(7, 21, 34, .78);
}

summary {
  cursor: pointer;
  padding: 14px 16px;
  font-weight: 800;
}

details p {
  padding: 0 16px 16px;
  margin: 0;
  color: var(--muted);
}

.process-hero .path-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 240px;
  gap: 16px;
  align-items: center;
}

.mountain-path {
  min-height: 370px;
  position: relative;
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(1, 7, 13, .1), rgba(2, 7, 12, .6)),
    linear-gradient(135deg, #0d1824, #06101a 60%, #1a2530);
  overflow: hidden;
}

.mountain-path::before {
  content: "";
  position: absolute;
  left: 8%;
  right: 4%;
  bottom: 18%;
  height: 9px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--accent), #e8f1ff, var(--accent), transparent);
  transform: rotate(-28deg);
  box-shadow: 0 0 24px rgba(126, 167, 238, .55);
}

.mountain-path span {
  position: absolute;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border: 2px solid rgba(126, 167, 238, .6);
  border-radius: 50%;
  color: var(--accent);
  background: rgba(5, 14, 24, .85);
}

.mountain-path span:nth-child(1) { left: 18%; bottom: 18%; }
.mountain-path span:nth-child(2) { left: 32%; bottom: 38%; }
.mountain-path span:nth-child(3) { left: 48%; bottom: 29%; }
.mountain-path span:nth-child(4) { left: 58%; bottom: 56%; }
.mountain-path span:nth-child(5) { left: 72%; bottom: 72%; }
.mountain-path span:nth-child(6) { left: 82%; bottom: 43%; }

.mockup-included {
  border-color: var(--accent-3);
}

.mockup-included > .icon {
  width: 56px;
  height: 56px;
  color: var(--accent);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
}

.process-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.process-detail-card {
  position: relative;
  display: grid;
  gap: 10px;
}

.process-detail-card > .icon {
  width: 44px;
  height: 44px;
  color: var(--accent);
}

.process-detail-card .eyebrow {
  margin: 0;
  font-size: 11px;
}

.process-detail-card small {
  color: var(--muted);
  line-height: 1.45;
}

.outcome-line {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding-top: 10px;
  border-top: 1px solid var(--line);
}

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

.outcome-line strong {
  color: var(--accent-2);
}

.process-atelier {
  display: grid;
  grid-template-columns: minmax(280px, .56fr) minmax(0, 1fr);
  gap: 18px;
  align-items: center;
}

.process-reference-image {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: #050b13;
  box-shadow: var(--shadow);
}

.process-reference-image img {
  width: 100%;
  object-fit: cover;
}

.process-card {
  position: relative;
  padding-top: 46px;
}

.step-num {
  position: absolute;
  top: -22px;
  left: 50%;
  transform: translateX(-50%);
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 2px solid rgba(126, 167, 238, .56);
  border-radius: 50%;
  background: var(--panel);
  color: var(--accent-2);
  font-size: 24px;
  font-weight: 900;
}

.process-card .icon {
  width: 40px;
  height: 40px;
  color: var(--soft);
}

.process-card strong {
  color: var(--accent-2);
}

.work-hero {
  padding-bottom: 10px;
}

.work-hero h1,
.generic-hero h1,
.confirmation-hero h1 {
  max-width: 1000px;
}

.work-editorial-hero {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(420px, 1fr);
  gap: clamp(22px, 4vw, 58px);
  align-items: stretch;
  padding-bottom: clamp(28px, 4vw, 54px);
}

.work-hero-copy {
  min-width: 0;
  display: grid;
  align-content: center;
  gap: 18px;
}

.work-editorial-hero .lead {
  max-width: 760px;
}

.work-index-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 10px;
}

.work-index-points article {
  min-width: 0;
  padding: 14px;
  border: 1px solid rgba(216, 224, 236, .18);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, .045), rgba(255, 255, 255, .018));
}

.work-index-points span {
  display: block;
  margin-bottom: 18px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 2px;
}

.work-index-points strong,
.work-index-points small {
  display: block;
}

.work-index-points strong {
  color: var(--text);
  font-size: 18px;
}

.work-index-points small {
  margin-top: 6px;
  color: var(--muted);
  line-height: 1.45;
}

.work-editorial-image {
  position: relative;
  min-width: 0;
  min-height: 520px;
  margin: 0;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  overflow: hidden;
  background: #061525;
  box-shadow: var(--shadow);
}

.work-editorial-image img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: center;
  display: block;
}

.work-editorial-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 17, 31, .02) 40%, rgba(6, 17, 31, .82));
  pointer-events: none;
}

.work-editorial-image figcaption {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 1;
  padding: 16px;
  border: 1px solid rgba(216, 224, 236, .24);
  border-radius: var(--radius);
  background: rgba(6, 17, 31, .76);
  backdrop-filter: blur(14px);
}

.work-editorial-image figcaption strong,
.work-editorial-image figcaption span {
  display: block;
}

.work-editorial-image figcaption strong {
  color: var(--accent-2);
}

.work-editorial-image figcaption span {
  margin-top: 4px;
  color: var(--soft);
}

.work-curation-panel {
  display: grid;
  grid-template-columns: minmax(250px, .48fr) minmax(0, 1fr);
  gap: clamp(18px, 3vw, 38px);
  align-items: start;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding-top: clamp(24px, 3vw, 42px);
  padding-bottom: clamp(24px, 3vw, 42px);
}

.work-curation-panel h2 {
  margin-bottom: 0;
}

.work-curation-list {
  min-width: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.work-curation-list article {
  min-width: 0;
  padding: 16px;
  border-left: 1px solid rgba(126, 167, 238, .45);
  background: linear-gradient(90deg, rgba(126, 167, 238, .08), rgba(255, 255, 255, .012));
}

.work-curation-list strong,
.work-curation-list span {
  display: block;
}

.work-curation-list strong {
  color: var(--text);
}

.work-curation-list span {
  margin-top: 8px;
  color: var(--muted);
  line-height: 1.5;
}

.tabs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 8px;
  scrollbar-width: thin;
}

.tabs button {
  min-width: 145px;
  padding: 12px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .02);
  color: var(--soft);
  cursor: pointer;
}

.tabs button.active {
  color: var(--accent-ink);
  border-color: var(--accent);
  background: linear-gradient(180deg, #dceaff, var(--accent));
  font-weight: 900;
}

.work-grid {
  margin-top: 10px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.project-card.hidden {
  display: none;
}

.hidden {
  display: none !important;
}

.project-art {
  position: relative;
  aspect-ratio: 16 / 9;
  padding: 12px;
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #0d1721;
  background: linear-gradient(135deg, #e8eef5, #9eb8c7);
}

.project-art-image {
  padding: 0;
  background: #071827;
}

.project-art-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.project-art-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(4, 12, 22, .08) 20%, rgba(4, 12, 22, .72) 100%);
}

.project-art-image figcaption {
  position: relative;
  z-index: 1;
  padding: 14px;
  display: grid;
  gap: 4px;
  color: #fff;
}

.project-art-image figcaption strong,
.project-art-image figcaption span {
  display: block;
}

.project-art-image figcaption strong {
  max-width: 18ch;
  font-size: clamp(13px, .9vw, 16px);
  line-height: 1.1;
}

.project-art-image figcaption span {
  max-width: 24ch;
  color: rgba(255, 255, 255, .8);
  font-size: 12px;
  line-height: 1.25;
}

.project-art-fallback {
  color: #f7faff;
  background:
    linear-gradient(180deg, rgba(4, 12, 22, .12), rgba(4, 12, 22, .72)),
    linear-gradient(135deg, #0d2b45, #244a6f 54%, #89a8c8);
}

.project-fallback-result {
  color: var(--accent-2);
  font-size: clamp(28px, 3vw, 48px);
  line-height: .95;
  letter-spacing: 0;
}

.project-art-fallback small {
  max-width: 26ch;
  color: rgba(255, 255, 255, .76);
  line-height: 1.25;
}

.project-art.motion { background: linear-gradient(135deg, #e7f1f8, #8fbfd6); }
.project-art.aesthetic { background: linear-gradient(135deg, #d8e5f4, #536f95); color: #fff; }
.project-art.interior { background: linear-gradient(135deg, #dbe4ef, #314d6a); color: #fff; }
.project-art.finance { background: linear-gradient(135deg, #10223a, #07111d); color: #fff; }
.project-art.home { background: linear-gradient(135deg, #153653, #9cb7d8); color: #fff; }
.project-art.skincare { background: linear-gradient(135deg, #eef5fb, #adc4dd); }
.project-art.recovery { background: linear-gradient(135deg, #173746, #89a98a); color: #fff; }

.mini-browser {
  height: 16px;
  display: flex;
  gap: 5px;
  margin-bottom: auto;
}

.mini-browser span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  opacity: .5;
}

.project-art h4,
.project-art p {
  margin: 0;
  max-width: 190px;
}

.project-art p {
  color: inherit;
  font-weight: 700;
  line-height: 1.2;
}

.project-art button {
  width: max-content;
  margin-top: 10px;
  border: 0;
  border-radius: 4px;
  padding: 7px 10px;
  background: var(--accent);
  color: var(--accent-ink);
  font-weight: 800;
}

.project-card h3 {
  margin: 14px 0 2px;
}

.project-card > p {
  margin-bottom: 12px;
}

.project-result {
  display: grid;
  grid-template-columns: 28px auto 1fr;
  gap: 8px;
  align-items: center;
  border-top: 1px solid var(--line);
  padding-top: 12px;
}

.project-result .icon,
.project-result strong {
  color: var(--accent);
}

.project-result span {
  color: var(--soft);
  font-size: 13px;
}

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

.before-card {
  padding: 14px;
}

.before-art {
  min-height: 116px;
  border-radius: var(--radius);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 12px;
  padding: 12px;
  background: linear-gradient(90deg, #dce8f6, #fff 45%, #0b1724 46%, #162d45);
}

.before-art span {
  padding: 5px 8px;
  border-radius: 4px;
  background: rgba(3, 16, 31, .72);
  color: #fff;
  width: max-content;
  align-self: start;
}

.before-art span:last-child {
  justify-self: end;
  background: var(--accent);
  color: var(--accent-ink);
}

.before-art strong {
  color: var(--accent);
  font-size: 34px;
}

.stack-actions {
  display: grid;
  gap: 10px;
}

.booking-layout,
.checkout-layout,
.payment-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(340px, .9fr);
  gap: 28px;
  align-items: start;
  padding: 16px 0 24px;
}

.booking-form h2,
.payment-main h2,
.checkout-form h2 {
  display: flex;
  align-items: center;
  gap: 10px;
}

.booking-form h2 .icon,
.payment-main h2 .icon {
  color: var(--accent);
}

.calendar-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1fr);
  gap: 14px;
  margin-bottom: 18px;
}

.calendar-card,
.time-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px;
}

.calendar-head {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}

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

.calendar-days button,
.time-grid button {
  min-width: 0;
  min-height: 34px;
  border: 1px solid transparent;
  border-radius: 6px;
  background: transparent;
  color: var(--soft);
  cursor: pointer;
}

.calendar-days button:nth-child(-n+7) {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  pointer-events: none;
}

.calendar-days button.selected,
.time-grid button.selected {
  background: var(--accent);
  color: var(--accent-ink);
  border-color: var(--accent-2);
  font-weight: 900;
}

.time-grid {
  margin: 14px 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.time-grid button {
  border-color: var(--line);
  background: rgba(255, 255, 255, .02);
}

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

.field {
  display: grid;
  gap: 6px;
  margin-bottom: 14px;
}

.field.full {
  grid-column: 1 / -1;
}

.field span {
  color: var(--soft);
  font-weight: 800;
  font-size: 14px;
}

.field em {
  color: var(--accent);
  font-style: normal;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  background: rgba(2, 9, 16, .72);
  color: var(--text);
  padding: 10px 12px;
  outline: none;
}

.field textarea {
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(126, 167, 238, .14);
}

.check-row {
  display: flex;
  gap: 10px;
  color: var(--muted);
  align-items: flex-start;
  margin: 8px 0 14px;
}

.check-row input {
  margin-top: 5px;
  accent-color: var(--accent);
}

.booking-side {
  display: grid;
  gap: 12px;
}

.meeting-card {
  display: grid;
  gap: 14px;
}

.meeting-step {
  display: grid;
  grid-template-columns: 42px 20px 1fr;
  gap: 10px;
  align-items: start;
}

.meeting-step .icon {
  width: 42px;
  height: 42px;
  padding: 9px;
  border: 1px solid rgba(126, 167, 238, .5);
  border-radius: 50%;
  color: var(--accent);
}

.meeting-step > span {
  color: var(--accent-2);
  font-weight: 900;
}

.meeting-step p {
  margin: 3px 0 0;
  font-size: 14px;
}

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

.quick-stats .stat {
  padding: 14px 18px;
}

.quick-stats .stat + .stat {
  border-left: 1px solid var(--line);
}

.checkout-steps {
  margin: 28px 0 10px;
  padding: 18px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.checkout-steps div {
  min-width: 0;
  display: grid;
  grid-template-columns: 46px 1fr;
  column-gap: 12px;
  align-items: center;
  position: relative;
}

.checkout-steps div:not(:last-child)::after {
  content: "";
  position: absolute;
  left: calc(100% + 4px);
  top: 23px;
  width: 60px;
  height: 1px;
  background: var(--line-strong);
}

.checkout-steps span {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 2px solid var(--line-strong);
  border-radius: 50%;
  font-weight: 900;
  grid-row: 1 / span 2;
}

.checkout-steps .active span {
  color: var(--accent-ink);
  background: var(--accent);
  border-color: var(--accent);
}

.checkout-steps strong,
.checkout-steps small {
  display: block;
  grid-column: 2;
  min-width: 0;
  max-width: 100%;
}

.checkout-steps small {
  color: var(--muted);
}

.toggle-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin: 8px 0 16px;
}

.toggle-row label,
.addon-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  cursor: pointer;
}

.toggle-row small {
  display: block;
  color: var(--muted);
}

input[type="checkbox"] {
  accent-color: var(--accent);
}

.toggle-row input,
.addon-toggle input {
  width: 46px;
  height: 24px;
  appearance: none;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: #17212d;
  position: relative;
  flex: 0 0 auto;
}

.toggle-row input::before,
.addon-toggle input::before {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #e6edf4;
  transition: transform .15s ease;
}

.toggle-row input:checked,
.addon-toggle input:checked {
  background: var(--accent);
}

.toggle-row input:checked::before,
.addon-toggle input:checked::before {
  transform: translateX(21px);
  background: var(--accent-ink);
}

.secure-note,
.no-monthly {
  padding: 14px;
  display: flex;
  gap: 12px;
  color: var(--muted);
  margin: 16px 0;
}

.secure-note .icon,
.no-monthly .icon {
  color: var(--accent);
  width: 34px;
  height: 34px;
}

.secure-note strong,
.no-monthly strong {
  display: block;
  color: var(--accent-2);
}

.launch-summary {
  position: sticky;
  top: calc(var(--header) + 18px);
}

.launch-package {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px;
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 14px;
}

.launch-package .icon {
  width: 56px;
  height: 56px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--accent);
}

.launch-package strong {
  display: block;
  color: var(--accent-2);
  font-size: 34px;
  line-height: 1;
}

.launch-package span {
  font-weight: 800;
}

.launch-package small {
  display: block;
  color: var(--muted);
}

.launch-summary h3 span {
  color: var(--accent-2);
  font-size: 16px;
  display: block;
  margin-top: 3px;
}

.launch-summary h3 {
  margin: 24px 0 12px;
}

.launch-summary .check-list {
  margin: 16px 0 22px;
}

.launch-summary .handoff-value {
  margin: 20px 0 18px;
  padding: 18px;
}

.addon-list {
  display: grid;
  gap: 12px;
  margin: 16px 0 20px;
}

.addon-option {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 10px;
  background: rgba(255, 255, 255, .018);
}

.addon-option:has([data-addon]:checked) {
  border-color: rgba(126, 167, 238, .45);
  background: rgba(126, 167, 238, .07);
}

.addon-toggle {
  min-height: 42px;
  padding: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto 46px;
  gap: 10px;
  align-items: center;
  cursor: pointer;
}

.addon-toggle span {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  min-width: 0;
}

.addon-toggle strong,
.addon-toggle em {
  display: block;
}

.addon-toggle em {
  margin-top: 2px;
  color: var(--muted);
  font-style: normal;
  font-size: 12px;
  line-height: 1.25;
}

.addon-toggle .icon {
  width: 28px;
  height: 28px;
  padding: 6px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--accent);
}

.addon-toggle small {
  margin-left: auto;
  color: var(--soft);
  font-weight: 800;
  white-space: nowrap;
}

.addon-quantity {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: minmax(0, 1fr) 88px auto;
  gap: 10px;
  align-items: center;
}

.addon-quantity label {
  color: var(--muted);
  font-size: 13px;
}

.addon-quantity input {
  width: 100%;
  min-height: 38px;
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  background: #081524;
  color: var(--text);
  padding: 7px 9px;
}

.addon-quantity input:disabled {
  opacity: .45;
}

.addon-quantity span {
  color: var(--accent-2);
  font-weight: 900;
}

.order-total,
.payment-totals {
  margin: 18px 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.order-total div,
.payment-totals div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 12px;
  border-bottom: 1px solid var(--line);
}

.order-total div:last-child,
.payment-totals div:last-child {
  border-bottom: 0;
  font-size: 20px;
}

.order-total div:last-child strong,
.payment-totals .grand strong {
  color: var(--accent-2);
  font-size: 26px;
}

.secure-line {
  display: flex;
  justify-content: center;
  gap: 8px;
  color: var(--muted);
}

.payment-head {
  padding: 40px 0 10px;
}

.payment-head .checkout-steps {
  max-width: 640px;
  padding: 0;
  border: 0;
  background: transparent;
  margin: 12px 0 20px;
}

.review-contact {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px;
  margin-bottom: 22px;
}

.review-contact span {
  color: var(--muted);
  overflow-wrap: anywhere;
}

.review-contact strong {
  display: block;
}

.payment-tabs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 14px;
}

.payment-tabs button {
  min-height: 50px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .02);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
}

.payment-tabs button.active {
  border-color: var(--accent);
  box-shadow: inset 0 0 0 1px rgba(126, 167, 238, .4);
}

.summary-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.summary-head a {
  border: 1px solid var(--accent-3);
  color: var(--accent-2);
  padding: 7px 10px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 800;
}

.summary-line {
  display: grid;
  grid-template-columns: 24px 1fr auto;
  gap: 10px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.summary-line .icon {
  color: var(--accent);
}

.summary-line small {
  display: block;
  color: var(--muted);
}

.handoff-note {
  display: flex;
  gap: 12px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  padding: 14px;
  color: var(--soft);
}

.handoff-note .icon {
  color: #8ed1ff;
}

.pay-btn {
  margin-top: 20px;
  font-size: 20px;
}

.terms {
  margin: 12px 0 18px;
  color: var(--muted);
  text-align: center;
  font-size: 13px;
}

.terms a {
  text-decoration: underline;
}

.terms-consent {
  margin: 16px 0 12px;
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  color: var(--soft);
  font-size: 14px;
  line-height: 1.45;
  text-align: left;
}

.terms-consent input {
  width: 18px;
  height: 18px;
  margin: 3px 0 0;
  accent-color: var(--accent);
}

.terms-link-button,
.terms-consent button {
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--accent);
  font-weight: 850;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
}

.modal-open {
  overflow: hidden;
}

.terms-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: clamp(14px, 3vw, 34px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease;
}

.terms-modal.open {
  opacity: 1;
  pointer-events: auto;
}

.terms-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 8, 16, .78);
  backdrop-filter: blur(16px);
}

.terms-modal-panel {
  position: relative;
  width: min(100%, 760px);
  max-height: min(82dvh, 780px);
  overflow: auto;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  padding: clamp(18px, 2.4vw, 30px);
  background: linear-gradient(180deg, rgba(13, 32, 51, .98), rgba(6, 17, 31, .98));
  box-shadow: 0 32px 110px rgba(0, 0, 0, .46);
}

.terms-modal-head {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 18px;
  margin-bottom: 14px;
}

.terms-modal-head h2 {
  margin: 0;
}

.icon-button {
  width: 44px;
  height: 44px;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .035);
  color: var(--soft);
  cursor: pointer;
}

.terms-placeholder-list {
  display: grid;
  gap: 10px;
  margin: 18px 0;
}

.terms-placeholder-list article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px;
  background: rgba(255, 255, 255, .025);
}

.terms-placeholder-list strong {
  display: block;
  color: var(--text);
  margin-bottom: 4px;
}

.terms-placeholder-list p {
  margin: 0;
  color: var(--muted);
}

.payment-badges {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  border-top: 1px solid var(--line);
  padding-top: 18px;
}

.payment-badges span {
  min-height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  text-align: center;
  color: var(--soft);
  font-weight: 800;
}

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

.next-strip h2 {
  text-align: center;
  margin-bottom: 14px;
}

.next-strip > div {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
}

.next-strip article {
  position: relative;
  min-height: 128px;
  padding: 22px 10px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  text-align: center;
}

.next-strip article > span {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--line-strong);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
}

.next-strip .icon {
  margin: 0 auto 8px;
  color: var(--accent);
}

.next-strip strong,
.next-strip small {
  display: block;
}

.next-strip small {
  color: var(--muted);
}

.generic-hero,
.confirmation-hero {
  border-bottom: 1px solid var(--line);
}

.confirmation-details {
  padding-top: 24px;
}

.thank-you-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .9fr);
  gap: 22px;
  align-items: start;
  border-color: rgba(126, 167, 238, .42);
}

.order-receipt {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.receipt-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  padding: 12px 14px;
  border-bottom: 1px solid var(--line);
}

.receipt-row:last-child {
  border-bottom: 0;
}

.receipt-row strong {
  color: var(--text);
}

.receipt-row span,
.receipt-row small {
  color: var(--muted);
}

.receipt-row.total {
  background: rgba(126, 167, 238, .1);
}

.receipt-row.total strong:last-child {
  color: var(--accent-2);
  font-size: 22px;
}

.split-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .75fr);
  gap: 18px;
  align-items: center;
}

.site-footer {
  flex-shrink: 0;
  width: 100%;
  margin: 0;
  padding: 24px var(--page-pad);
  border-top: 1px solid var(--line);
  background: #020304;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1.35fr .8fr .8fr;
  gap: 28px;
  align-items: start;
}

.footer-grid p,
.footer-grid a,
.footer-grid address {
  color: var(--muted);
}

.footer-grid address {
  font-style: normal;
  display: grid;
  gap: 8px;
}

.footer-grid address a {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.footer-grid nav {
  display: grid;
  gap: 7px;
}

.footer-grid strong {
  display: block;
  margin-bottom: 8px;
  color: var(--text);
}

.footer-grid a:hover {
  color: var(--accent-2);
}

.footer-bottom {
  margin-top: 22px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: var(--muted);
}

.canadian {
  display: flex;
  gap: 8px;
  align-items: center;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 24px;
  transform: translate(-50%, 20px);
  max-width: min(520px, calc(100vw - 32px));
  padding: 12px 16px;
  border: 1px solid var(--accent);
  border-radius: var(--radius);
  background: #081524;
  color: var(--text);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease, transform .2s ease;
  z-index: 300;
}

.toast.show {
  opacity: 1;
  transform: translate(-50%, 0);
}

@media (max-width: 1160px) {
  .desktop-nav {
    gap: 0;
  }

  .desktop-nav a {
    padding-left: 7px;
    padding-right: 7px;
    font-size: 13px;
  }

  .header-actions .btn {
    padding-left: 12px;
    padding-right: 12px;
  }

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

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

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

  .process-grid,
  .process-detail-grid,
  .next-strip > div {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    row-gap: 30px;
  }

  .process-atelier {
    grid-template-columns: 1fr;
  }

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

  .addons-intro {
    grid-column: 1 / -1;
  }

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

@media (max-width: 1080px) {
  .header-inner {
    padding: 0 18px;
  }

  .header-actions {
    margin-left: auto;
  }

  .header-book {
    display: none;
  }

  .header-actions .btn {
    width: 132px;
    min-width: 0;
    max-width: 132px;
    min-height: 42px;
    height: 44px;
    max-height: 44px;
    padding: 8px 10px;
    gap: 8px;
    line-height: 1.1;
    text-align: center;
  }

  .header-actions .btn > span:not(.icon) {
    font-size: 12px;
  }

  main,
  .site-footer {
    padding-left: 18px;
    padding-right: 18px;
  }

  .split,
  .work-editorial-hero,
  .booking-layout,
  .checkout-layout,
  .payment-layout,
  .split-panel,
  .thank-you-card {
    grid-template-columns: 1fr;
  }

  .home-hero .hero-copy {
    display: contents;
  }

  .home-hero .hero-copy > .eyebrow {
    order: 2;
  }

  .home-hero .hero-copy > h1 {
    order: 3;
  }

  .home-hero .hero-copy > .lead {
    order: 4;
  }

  .home-hero .hero-copy > p:not(.eyebrow):not(.lead) {
    order: 5;
  }

  .home-hero .hero-photo {
    order: 1;
  }

  .home-hero .hero-actions {
    order: 6;
  }

  .home-hero .value-lock {
    order: 7;
  }

  .home-hero .offer-grid {
    order: 8;
  }

  .hero {
    padding-top: 34px;
  }

  .home-hero {
    gap: 22px;
    padding-top: 14px;
  }

  h1 {
    font-size: 42px;
  }

  h2 {
    font-size: 26px;
  }

  .lead {
    font-size: 19px;
  }

  .device-stage {
    min-height: 360px;
  }

  .hero-photo,
  .hero-photo img {
    min-height: 380px;
  }

  .work-editorial-image {
    min-height: 420px;
  }

  .desktop-device {
    justify-self: center;
    width: 92%;
  }

  .phone-device {
    right: 3%;
    width: 134px;
  }

  .offer-grid,
  .form-grid,
  .toggle-row,
  .calendar-grid,
  .payment-tabs,
  .review-contact {
    grid-template-columns: 1fr;
  }

  .pill-row,
  .card-grid.three,
  .faq-grid,
  .before-grid,
  .success-grid,
  .two-col {
    grid-template-columns: 1fr;
  }

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

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

  .launch-summary {
    position: static;
  }

  .cta-band {
    grid-template-columns: 1fr;
  }

  .process-hero .path-card {
    grid-template-columns: 1fr;
  }

  .mockup-included {
    display: none;
  }

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

  .success-design-showcase {
    grid-template-columns: 1fr;
  }

  .featured-product-hero,
  .work-curation-panel,
  .featured-proof-grid,
  .featured-design-strip,
  .launch-product-showcase,
  .process-atelier,
  .consultation-preview {
    grid-template-columns: 1fr;
  }

  .consultation-preview figure {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .consultation-preview img {
    min-height: 300px;
  }

  .media-logo-grid {
    --logo-max-h: 56px;
    --logo-tile-h: 74px;
    gap: clamp(8px, 1.4vw, 16px);
  }

  .media-logo-tile {
    width: var(--logo-tile-w, clamp(72px, 8vw, 104px));
    padding: 6px;
  }

  .media-logo-tile.as-seen-toronto {
    --logo-tile-w: clamp(300px, 34vw, 340px);
  }

  .media-logo-tile.as-seen-ctv {
    --logo-tile-w: clamp(104px, 12vw, 144px);
  }

  .featured-product-image img {
    min-height: 380px;
  }

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

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

@media (max-width: 760px) {
  .work-index-points,
  .work-curation-list {
    grid-template-columns: 1fr;
  }

  .work-editorial-image {
    min-height: 360px;
  }

  .media-logo-grid {
    --logo-max-h: 52px;
    --logo-tile-h: 68px;
  }

  .media-logo-tile {
    width: var(--logo-tile-w, clamp(76px, 22vw, 116px));
    height: var(--logo-tile-h);
  }

  .media-logo-tile.as-seen-toronto {
    --logo-tile-w: clamp(280px, 48vw, 320px);
  }

  .media-logo-tile.as-seen-ctv {
    --logo-tile-w: clamp(112px, 32vw, 150px);
  }

  .media-strip-stats {
    width: 100%;
  }
}

@media (max-width: 640px) {
  :root {
    --header: 70px;
  }

  body {
    font-size: 15px;
  }

  .table-wrap::before {
    display: block;
  }

  .header-inner {
    gap: 10px;
    min-height: var(--header);
    overflow: visible;
  }

  .brand {
    gap: 8px;
    min-width: 0;
  }

  .brand-mark {
    font-size: 28px;
  }

  .brand-line {
    height: 32px;
  }

  .brand-name {
    font-size: 14px;
    min-width: 0;
    overflow: hidden;
  }

  .mobile-break {
    display: block;
  }

  .header-actions {
    gap: 8px;
    min-width: 0;
    flex: 0 0 auto;
  }

  .header-actions .btn {
    width: 112px;
    min-width: 0;
    max-width: 112px;
    min-height: 42px;
    height: 44px;
    max-height: 44px;
    padding-left: 8px;
    padding-right: 8px;
    gap: 6px;
    white-space: normal;
  }

  .header-buy .icon {
    display: none;
  }

  .header-actions .btn > span:not(.icon) {
    font-size: 10.5px;
    overflow-wrap: anywhere;
    white-space: normal;
  }

  .menu-toggle {
    width: 44px;
    height: 44px;
    border: 1px solid var(--line-strong);
  }

  main,
  .site-footer {
    padding-left: 14px;
    padding-right: 14px;
  }

  .hero {
    padding: 26px 0 18px;
    overflow: hidden;
  }

  .home-hero {
    position: relative;
    margin-left: -14px;
    margin-right: -14px;
    padding: 0 14px 20px;
    min-height: calc(100svh - var(--header));
    isolation: isolate;
  }

  .home-hero::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: min(760px, calc(100svh + 140px));
    z-index: -2;
    background:
      linear-gradient(180deg, rgba(0, 0, 0, .2) 0%, rgba(0, 0, 0, .5) 42%, rgba(2, 3, 4, .96) 92%),
      linear-gradient(90deg, rgba(2, 3, 4, .78), rgba(2, 3, 4, .34) 48%, rgba(2, 3, 4, .74)),
      url("../homepage-business-owner.webp") center top / cover no-repeat;
  }

  .home-hero::after {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: min(680px, calc(100svh + 80px));
    z-index: -1;
    background:
      radial-gradient(circle at 72% 16%, rgba(255, 255, 255, .12), transparent 32%),
      linear-gradient(90deg, rgba(2, 3, 4, .72) 0%, rgba(2, 3, 4, .42) 54%, rgba(2, 3, 4, .08) 100%);
    pointer-events: none;
  }

  .home-hero .hero-copy > .eyebrow {
    margin-top: clamp(300px, 54svh, 470px);
  }

  h1 {
    font-size: 34px;
    line-height: 1.08;
    overflow-wrap: break-word;
  }

  h2 {
    font-size: 23px;
  }

  h3 {
    font-size: 18px;
  }

  .eyebrow {
    font-size: 11px;
    letter-spacing: 2.2px;
  }

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

  .hero-actions .btn {
    width: 100%;
  }

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

  .offer-grid > div,
  .card,
  .pill,
  .btn,
  .project-card,
  .media-strip {
    min-width: 0;
  }

  .device-stage {
    min-height: 292px;
  }

  .home-hero .hero-photo {
    position: absolute;
    inset: 0 0 auto;
    height: min(760px, calc(100svh + 140px));
    min-height: 0;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    opacity: 0;
    pointer-events: none;
  }

  .home-hero .hero-photo img,
  .home-hero .hero-photo::after,
  .home-hero .hero-client-quote,
  .home-hero .hero-photo figcaption {
    display: none;
  }

  .hero-photo,
  .hero-photo img {
    min-height: 410px;
  }

  .home-hero .hero-photo,
  .home-hero .hero-photo img {
    min-height: 0;
  }

  .hero-client-quote {
    left: 12px;
    right: 12px;
    top: 12px;
    width: auto;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, .24);
    border-radius: var(--radius);
    background: rgba(4, 5, 7, .62);
    backdrop-filter: blur(10px);
  }

  .hero-client-quote::before {
    inset: -10px;
    width: auto;
    border-radius: var(--radius);
    background: linear-gradient(90deg, rgba(0, 0, 0, .72), rgba(0, 0, 0, .52));
  }

  .hero-client-quote p {
    font-size: 18px;
    line-height: 1.18;
  }

  .home-hero .hero-copy > .eyebrow,
  .home-hero .hero-copy > h1,
  .home-hero .hero-copy > .lead,
  .home-hero .hero-copy > p:not(.eyebrow):not(.lead) {
    text-shadow: 0 2px 22px rgba(0, 0, 0, .82);
  }

  .home-hero .hero-actions,
  .home-hero .value-lock,
  .home-hero .offer-grid {
    position: relative;
  }

  .work-editorial-image {
    min-height: 330px;
  }

  .work-editorial-image figcaption {
    left: 12px;
    right: 12px;
    bottom: 12px;
    padding: 12px;
  }

  .hero-photo figcaption {
    left: 12px;
    right: 12px;
    bottom: 12px;
    padding: 12px;
  }

  .featured-product-image img {
    min-height: 320px;
  }

  .featured-direction-card img {
    aspect-ratio: 4 / 5;
  }

  .featured-product-image figcaption {
    left: 12px;
    right: 12px;
    bottom: 12px;
    padding: 12px;
  }

  .desktop-device {
    width: 100%;
    border-width: 8px;
    border-bottom-width: 24px;
  }

  .phone-device {
    width: 106px;
    border-width: 6px;
    border-radius: 21px;
  }

  .media-strip {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 8px;
  }

  .media-logo-grid {
    --logo-max-h: 50px;
    --logo-tile-h: 66px;
    gap: 12px;
  }

  .media-logo-tile {
    width: var(--logo-tile-w, clamp(68px, 21vw, 106px));
    height: var(--logo-tile-h);
    padding: 6px;
  }

  .media-logo-tile.as-seen-toronto {
    --logo-tile-w: clamp(248px, 82vw, 280px);
  }

  .media-logo-tile.as-seen-ctv {
    --logo-tile-w: clamp(98px, 30vw, 136px);
  }

  .media-logo-grid img {
    max-height: var(--logo-max-h);
    height: auto;
  }

  .ledger-lines article {
    grid-template-columns: 34px minmax(0, 1fr);
  }

  .ledger-lines strong,
  .ledger-lines small {
    grid-column: 2;
  }

  .ledger-lines .icon {
    width: 32px;
    height: 32px;
    padding: 7px;
  }

  .consultation-preview img {
    min-height: 260px;
  }

  .stat {
    grid-template-columns: 34px 1fr;
  }

  .stat .icon {
    width: 30px;
    height: 30px;
  }

  .stat strong {
    font-size: 17px;
  }

  .card-grid.five,
  .pricing-grid,
  .work-grid,
  .featured-project-grid,
  .featured-direction-grid,
  .addons-grid,
  .results-panel,
  .process-grid,
  .process-detail-grid,
  .next-strip > div,
  .quick-stats,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .price-card {
    gap: 12px;
  }

  .price-card ul {
    gap: 7px;
  }

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

  .results-panel .stat,
  .quick-stats .stat {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .quick-stats .stat + .stat {
    border-left: 0;
  }

  .project-card {
    display: grid;
    grid-template-columns: minmax(130px, .85fr) 1fr;
    gap: 12px;
    align-items: center;
  }

  .project-card .project-art {
    grid-row: span 3;
  }

  .project-card h3,
  .project-card > p,
  .project-result {
    margin: 0;
  }

  .project-result {
    grid-template-columns: 22px 58px 1fr;
    padding-top: 8px;
  }

  .project-art button,
  .project-art h4 {
    display: none;
  }

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

  .checkout-steps {
    padding: 12px;
    gap: 8px;
    grid-template-columns: 1fr;
  }

  .checkout-steps div {
    grid-template-columns: 32px minmax(0, 1fr);
    column-gap: 10px;
    row-gap: 1px;
    align-items: center;
    text-align: left;
  }

  .checkout-steps div:not(:last-child)::after {
    display: none;
  }

  .checkout-steps span {
    width: 32px;
    height: 32px;
  }

  .checkout-steps strong {
    min-width: 0;
    max-width: 100%;
    font-size: 13px;
    line-height: 1.2;
    overflow-wrap: anywhere;
  }

  .checkout-steps small {
    display: block;
    font-size: 12px;
    line-height: 1.25;
  }

  .addon-toggle {
    grid-template-columns: 1fr auto 46px;
  }

  .addon-toggle small {
    margin-left: 0;
  }

  .payment-badges {
    grid-template-columns: 1fr;
  }

  .addon-quantity {
    grid-template-columns: 1fr 78px;
  }

  .addon-quantity span {
    grid-column: 1 / -1;
  }

  .mobile-menu-panel {
    padding: 26px 22px;
  }

  .mobile-menu-copy {
    font-size: 17px;
  }

  .mobile-nav-group summary {
    grid-template-columns: 48px 1fr;
  }

  .mobile-nav-group summary > .icon {
    width: 42px;
    height: 42px;
  }

  .mobile-nav-group strong {
    font-size: 19px;
  }

  .mobile-nav-links {
    padding-left: 64px;
  }

  .mobile-menu-home {
    padding-left: 64px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .media-logo-grid {
    --logo-max-h: 48px;
    --logo-tile-h: 64px;
    justify-content: center;
  }

  .media-logo-tile {
    width: var(--logo-tile-w, clamp(78px, 32vw, 118px));
  }

  .media-logo-tile.as-seen-toronto {
    --logo-tile-w: min(88vw, 280px);
  }

  .media-logo-tile.as-seen-ctv {
    --logo-tile-w: clamp(112px, 42vw, 146px);
  }
}

@media (max-width: 410px) {
  .header-actions .btn {
    width: 88px;
    min-width: 0;
    max-width: 88px;
    height: 44px;
    max-height: 44px;
    padding-left: 7px;
    padding-right: 7px;
  }

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

  .project-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .offer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 360px) {
  .brand-name {
    display: none;
  }

  .calendar-card,
  .time-card {
    padding: 10px;
  }

  .calendar-days {
    gap: 4px;
  }

  .calendar-days button,
  .time-grid button {
    padding-left: 2px;
    padding-right: 2px;
    font-size: 12px;
  }

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

/* Homepage hero zoom and compact viewport corrections. */
.home-hero {
  --home-hero-max: 1560px;
  --home-hero-bleed: min(calc((100vw - var(--home-hero-max)) / -2), calc(var(--page-pad) * -1));
  width: min(100%, var(--home-hero-max));
  max-width: var(--home-hero-max);
  margin-inline: auto;
  min-height: clamp(640px, calc(100svh - var(--header)), 880px);
  grid-template-columns: minmax(0, .92fr) minmax(400px, .78fr);
  gap: clamp(24px, 3vw, 52px);
}

.home-hero::before,
.home-hero::after {
  inset-inline: var(--home-hero-bleed);
  bottom: -18px;
}

.home-hero::before {
  background:
    linear-gradient(90deg, rgba(2, 3, 4, .97) 0%, rgba(2, 3, 4, .78) 41%, rgba(2, 3, 4, .16) 70%, rgba(2, 3, 4, .72) 100%),
    linear-gradient(180deg, rgba(2, 3, 4, .06), rgba(2, 3, 4, .42) 64%, rgba(2, 3, 4, .98) 100%),
    url("../homepage-business-owner.webp") right center / clamp(620px, 48vw, 940px) auto no-repeat;
}

.home-hero .hero-copy {
  width: 100%;
  max-width: min(760px, 100%);
  padding-block: clamp(24px, 5svh, 62px);
}

.home-hero .hero-photo {
  min-height: clamp(460px, 58svh, 720px);
}

.home-hero .hero-actions {
  min-width: 0;
}

.home-hero .hero-actions .btn {
  flex: 1 1 205px;
  min-width: 0;
}

.home-hero .hero-actions .btn > span:not(.icon),
.header-actions .btn > span:not(.icon) {
  overflow-wrap: anywhere;
  word-break: normal;
}

.home-hero .value-lock,
.home-hero .offer-grid,
.home-hero .offer-grid > div {
  min-width: 0;
}

@media (min-width: 1561px) {
  .home-hero .hero-copy {
    max-width: 740px;
  }
}

@media (max-width: 1280px) and (min-width: 1081px) {
  .home-hero {
    grid-template-columns: minmax(0, .95fr) minmax(360px, .72fr);
  }

  .home-hero::before {
    background-size: clamp(560px, 50vw, 780px) auto;
  }
}

@media (max-width: 1080px) {
  .home-hero {
    width: auto;
    max-width: none;
    min-height: 0;
    grid-template-columns: minmax(0, 1fr);
    align-items: start;
    gap: 0;
    padding-top: clamp(16px, 3svh, 34px);
  }

  .home-hero::before {
    inset: 0 calc(var(--page-pad) * -1) auto;
    height: clamp(420px, 62svh, 650px);
    background:
      linear-gradient(180deg, rgba(0, 0, 0, .08) 0%, rgba(2, 3, 4, .34) 48%, rgba(2, 3, 4, .95) 100%),
      linear-gradient(90deg, rgba(2, 3, 4, .72), rgba(2, 3, 4, .26) 55%, rgba(2, 3, 4, .52)),
      url("../homepage-business-owner.webp") center top / cover no-repeat;
  }

  .home-hero::after {
    inset: 0 calc(var(--page-pad) * -1) auto;
    height: clamp(380px, 56svh, 590px);
    background:
      radial-gradient(circle at 70% 14%, rgba(255, 255, 255, .13), transparent 32%),
      linear-gradient(90deg, rgba(2, 3, 4, .52) 0%, rgba(2, 3, 4, .2) 58%, rgba(2, 3, 4, .36) 100%);
  }

  .home-hero .hero-copy {
    display: block;
    max-width: min(760px, 100%);
    padding: 0;
  }

  .home-hero .hero-copy > .eyebrow {
    margin-top: clamp(220px, 36svh, 360px);
  }

  .home-hero .hero-photo {
    display: none;
  }

  .home-hero .value-lock,
  .home-hero .offer-grid > div {
    background: rgba(8, 9, 11, .56);
    backdrop-filter: none;
  }
}

@media (max-width: 640px) {
  .home-hero {
    width: auto;
    max-width: none;
    margin-left: -14px;
    margin-right: -14px;
    padding: 0 14px clamp(16px, 4svh, 24px);
    min-height: 0;
  }

  .home-hero::before {
    inset: 0 0 auto;
    height: clamp(330px, 48svh, 460px);
    background:
      linear-gradient(180deg, rgba(0, 0, 0, .04) 0%, rgba(2, 3, 4, .26) 48%, rgba(2, 3, 4, .96) 100%),
      linear-gradient(90deg, rgba(2, 3, 4, .62), rgba(2, 3, 4, .18) 52%, rgba(2, 3, 4, .42)),
      url("../homepage-business-owner.webp") center top / cover no-repeat;
  }

  .home-hero::after {
    inset: 0 0 auto;
    height: clamp(300px, 43svh, 420px);
    background:
      radial-gradient(circle at 74% 14%, rgba(255, 255, 255, .12), transparent 33%),
      linear-gradient(90deg, rgba(2, 3, 4, .42) 0%, rgba(2, 3, 4, .18) 58%, rgba(2, 3, 4, .18) 100%);
  }

  .home-hero .hero-copy > .eyebrow {
    margin-top: clamp(190px, 31svh, 285px);
  }

  .home-hero h1 {
    font-size: clamp(30px, 8.9vw, 36px);
  }

  .home-hero .lead {
    font-size: clamp(17px, 4.6vw, 19px);
  }

  .home-hero .hero-actions .btn {
    min-height: 46px;
    padding-inline: 12px;
  }

  .home-hero .value-lock,
  .home-hero .offer-grid > div {
    background: rgba(8, 9, 11, .48);
  }
}

@media (max-width: 410px) {
  .header-actions .btn {
    line-height: 1;
  }

  .header-actions .btn > span:not(.icon) {
    font-size: 9.5px;
  }
}

/* Dynamic consultation calendar and cancellation request polish. */
.booking-calendar .calendar-head {
  align-items: flex-start;
  gap: 12px;
}

.booking-calendar .calendar-head small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-weight: 600;
}

.booking-date-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(88px, 1fr));
  gap: 8px;
  max-height: min(460px, 58vh);
  overflow: auto;
  padding-right: 4px;
  margin-bottom: 12px;
}

.booking-date {
  min-width: 0;
  min-height: 86px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255,255,255,.035), rgba(255,255,255,.012));
  color: var(--text);
  cursor: pointer;
  display: grid;
  place-items: center;
  gap: 1px;
  padding: 9px 7px;
  text-align: center;
}

.booking-date span,
.booking-date small,
.booking-date em {
  color: var(--muted);
  font-style: normal;
  font-size: 11px;
  line-height: 1.1;
}

.booking-date strong {
  font-size: 24px;
  line-height: 1;
  font-family: var(--serif);
  font-weight: 400;
}

.booking-date.selected,
.booking-date:hover,
.time-grid button:hover {
  border-color: rgba(247, 244, 238, .72);
  background: #f7f4ee;
  color: #050506;
}

.booking-date.selected span,
.booking-date.selected small,
.booking-date.selected em,
.booking-date:hover span,
.booking-date:hover small,
.booking-date:hover em {
  color: rgba(5, 5, 6, .72);
}

.empty-state {
  grid-column: 1 / -1;
  margin: 0;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--soft);
}

.form-message {
  margin: 12px 0;
  padding: 12px 14px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .035);
  color: var(--soft);
  line-height: 1.45;
}

.form-message[data-tone="success"] {
  border-color: rgba(247, 244, 238, .55);
  color: #fff;
}

.form-message[data-tone="error"] {
  border-color: rgba(255, 125, 125, .75);
  color: #ffd9d9;
}

.form-message[data-tone="info"] {
  border-color: rgba(126, 167, 238, .5);
}

.cancellation-form {
  display: grid;
  gap: 4px;
}

.cancellation-form h2 {
  display: flex;
  align-items: center;
  gap: 10px;
}

.cancellation-form .terms {
  margin: 0;
}

@media (max-width: 640px) {
  .booking-date-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-height: none;
    overflow: visible;
    padding-right: 0;
  }

  .booking-date {
    min-height: 78px;
  }

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