:root {
  --bg: #060706;
  --bg-elevated: #0d100f;
  --panel: #101513;
  --panel-strong: #171d1a;
  --text: #f3f0e8;
  --muted: #a7aca4;
  --quiet: #70776f;
  --line: rgba(243, 240, 232, 0.13);
  --line-strong: rgba(243, 240, 232, 0.24);
  --acid: #03396c;
  --rust: #1966b0;
  --steel: #8da6a1;
  --shadow: 0 24px 90px rgba(0, 0, 0, 0.45);
  --font-display: "Bahnschrift", "DIN Condensed", "Franklin Gothic Condensed", sans-serif;
  --font-body: "Aptos", "Segoe UI", sans-serif;
  --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --section-rotator-title-size: clamp(40px, 6.4vw, 96px);
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--text);
  font-family: var(--font-body);
  background: #05080b;
  overflow-x: hidden;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: 0;
  display: block;
  pointer-events: none;
  content: "";
  background-image: url("assets/stx-bg-texture.png");
  background-repeat: repeat;
  background-size: 1440px auto;
  opacity: 0.42;
}

body::after {
  display: none;
}

main {
  position: relative;
  z-index: 1;
}

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

.ambient {
  display: none;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}


.site-header {
  position: fixed;
  top: 0;
  left: 50%;
  z-index: 50;
  display: grid;
  grid-template-columns: minmax(190px, 1fr) auto minmax(130px, 1fr);
  align-items: center;
  width: min(1800px, calc(100% - clamp(36px, 8vw, 128px)));
  min-height: 98px;
  padding: 0;
  border-bottom: 0;
  background: transparent;
  box-shadow: none;
  transform: translateX(-50%);
}

.site-header::before {
  position: absolute;
  inset: 0 calc((100vw - 100%) / -2);
  z-index: -1;
  content: "";
  border-bottom: 1px solid var(--line);
  background: rgba(5, 8, 11, 0.86);
  backdrop-filter: blur(18px);
}

.site-header.is-scrolled {
  border-color: rgba(3, 57, 108, 0.48);
}

.site-header.is-scrolled::before {
  border-color: rgba(3, 57, 108, 0.48);
  background: rgba(5, 8, 11, 0.94);
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  gap: 16px;
  width: fit-content;
  min-width: 0;
  pointer-events: none;
}

.brand-mark {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  color: var(--acid);
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 800;
}

.brand-mark,
.brand-copy {
  pointer-events: auto;
}

.site-logo {
  display: block;
  width: 48px;
  height: 48px;
  color: var(--text);
}

.site-logo rect {
  color: var(--rust);
}

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

.brand-copy strong {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 0;
  text-transform: uppercase;
}

.nav-mount {
  grid-column: 2 / 4;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
  justify-self: end;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 34px);
  justify-self: end;
}

.site-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 68px;
  padding: 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
  transition:
    color 180ms ease,
    transform 180ms ease;
}

.nav-link-label {
  display: block;
}

.nav-link-desc {
  display: none;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 6px;
  left: 0;
  height: 1px;
  content: "";
  background: var(--acid);
  opacity: 0;
  transform: scaleX(0.35);
  transform-origin: left center;
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a.is-active {
  color: var(--text);
  outline: none;
  transform: translateY(-1px);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.site-nav a.is-active::after {
  opacity: 1;
  transform: scaleX(1);
}

.nav-action {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: end;
  gap: 12px;
  min-height: 44px;
  padding: 0 18px 0 20px;
  border: 1px solid rgba(25, 102, 176, 0.85);
  border-radius: 6px;
  color: var(--text);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  background: var(--rust);
  box-shadow: 0 0 0 1px rgba(243, 240, 232, 0.04), 0 14px 38px rgba(25, 102, 176, 0.24);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.nav-action span:last-child {
  display: block;
  width: 10px;
  height: 10px;
  min-width: 10px;
  min-height: 10px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  color: currentColor;
  background: transparent;
  transform: rotate(45deg);
  transition: transform 180ms ease;
}

.nav-action:hover,
.nav-action:focus-visible {
  border-color: rgba(243, 240, 232, 0.36);
  color: var(--text);
  background: #1f78c9;
  box-shadow: 0 0 0 1px rgba(243, 240, 232, 0.08), 0 18px 48px rgba(25, 102, 176, 0.34);
  outline: none;
  transform: translateY(-1px);
}

.nav-action:hover span:last-child,
.nav-action:focus-visible span:last-child {
  transform: translateX(2px) rotate(45deg);
}

.nav-toggle {
  display: none;
}


.dream-hero {
  --mx: 0.5;
  --my: 0.5;
  --hero-max: min(1280px, 100%);
  --hero-mobile-word-slot: auto;
  --scene-tint:      oklch(42% 0.14 240 / 0.38);
  --scene-tint-soft: oklch(42% 0.14 240 / 0.14);
  --scene-accent:    oklch(58% 0.18 240);
  position: relative;
  display: grid;
  grid-template-rows: 1fr auto;
  align-items: center;
  height: 100svh;
  min-height: 100svh;
  padding: 0 clamp(18px, 4vw, 64px);
  isolation: isolate;
  overflow: hidden;
}

.dream-hero.is-scene-sklep {
  --scene-tint:      oklch(56% 0.12 52 / 0.34);
  --scene-tint-soft: oklch(56% 0.12 52 / 0.12);
  --scene-accent:    oklch(64% 0.14 52);
}

.dream-hero.is-scene-system {
  --scene-tint:      oklch(50% 0.10 210 / 0.34);
  --scene-tint-soft: oklch(50% 0.10 210 / 0.12);
  --scene-accent:    oklch(62% 0.12 210);
}


.hero-canvas {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-canvas-glow,
.hero-canvas-noise {
  position: absolute;
  inset: -8%;
  display: block;
  pointer-events: none;
  will-change: transform, opacity;
}

.hero-canvas-glow {
  background:
    radial-gradient(52% 62% at 6% 14%, var(--scene-tint) 0%, transparent 62%),
    radial-gradient(36% 44% at 90% 86%, var(--scene-tint-soft) 0%, transparent 70%);
  transform: translate3d(calc((var(--mx) - 0.5) * 38px), calc((var(--my) - 0.5) * 26px), 0);
  animation: hero-glow-pulse 10s ease-in-out infinite;
  transition: background 700ms var(--ease-out-quart);
  filter: blur(3px);
}

.hero-canvas-noise {
  background-image: url("assets/stx-bg-texture.png");
  background-repeat: repeat;
  background-size: 480px auto;
  opacity: 0.06;
  mix-blend-mode: overlay;
  transform: translate3d(calc((var(--mx) - 0.5) * 6px), calc((var(--my) - 0.5) * 6px), 0);
}

@keyframes hero-glow-pulse {
  0%, 100% { opacity: 0.72; }
  50%       { opacity: 1;    }
}


.dream-shell {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  text-align: center;
  width: var(--hero-max);
  margin: 0 auto;
  padding-top: clamp(110px, 12vh, 156px);
  gap: clamp(18px, 2.2vw, 28px);
}


.dream-kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.dream-kicker-brand {
  color: var(--text);
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 0.04em;
}

.dream-kicker-sep {
  display: block;
  width: 26px;
  height: 1px;
  background: var(--scene-accent);
  opacity: 0.65;
  transition: background 600ms var(--ease-out-quart);
  flex-shrink: 0;
}

.dream-kicker-sub {
  color: var(--steel);
}


.dream-title {
  display: grid;
  justify-items: stretch;
  width: var(--dream-title-width, max-content);
  max-width: 100%;
  gap: 0;
  text-align: left;
  line-height: 0.84;
  margin: 0;
}

.dream-title-line {
  display: inline-flex;
  align-items: baseline;
  justify-content: flex-start;
  white-space: nowrap;
}

.dream-title-line-main {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: baseline;
  column-gap: clamp(20px, 3vw, 72px);
  width: 100%;
  font-size: clamp(48px, 6.2vw, 112px);
}

.dream-title-line-strong {
  width: 100%;
  margin-top: 0.16em;
  font-size: clamp(72px, 10.6vw, 186px);
  letter-spacing: -0.01em;
}

.dream-title-lock {
  display: inline-block;
}

.word-rotator {
  display: inline-grid;
  inline-size: max-content;
  justify-self: end;
  justify-items: end;
  color: var(--scene-accent);
  overflow: visible;
  text-align: right;
  transform: translateX(var(--word-align-x, 0px));
  transition: color 480ms var(--ease-out-quart);
}

.word-rotator span {
  display: inline-block;
  padding-bottom: 0.06em;
  white-space: nowrap;
  transition:
    opacity 220ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 220ms cubic-bezier(0.22, 1, 0.36, 1);
}

.word-rotator span.is-swapping {
  opacity: 0;
  transform: translateY(0.12em);
}


.dream-lead {
  max-width: 48ch;
  margin: 0;
  color: oklch(78% 0.015 150);
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.6;
  letter-spacing: 0.01em;
}


.dream-controls {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(100%, 720px);
  gap: 10px;
}

.dream-chip {
  display: grid;
  width: 100%;
  gap: 4px;
  min-height: 60px;
  padding: 10px 16px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--text);
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 900;
  line-height: 1;
  text-align: left;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  background: transparent;
  cursor: pointer;
  transition:
    border-color 200ms var(--ease-out-quart),
    background   200ms var(--ease-out-quart),
    transform    200ms var(--ease-out-quart);
}

.dream-chip span {
  color: var(--quiet);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.3;
  text-transform: none;
  letter-spacing: 0;
}

.dream-chip:hover,
.dream-chip:focus-visible {
  border-color: oklch(58% 0.16 240 / 0.7);
  background: oklch(58% 0.16 240 / 0.09);
  outline: none;
  transform: translateY(-2px);
}

.dream-chip.is-active {
  border-color: oklch(58% 0.16 240 / 0.72);
  background: oklch(58% 0.16 240 / 0.12);
}

.dream-chip.is-active span {
  color: var(--steel);
}


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


.hero-scope {
  position: relative;
  z-index: 1;
  width: var(--hero-max);
  margin: clamp(24px, 3.4vw, 46px) auto 0;
  padding: clamp(18px, 2.2vw, 28px) 0 clamp(24px, 3.2vw, 42px);
  border-top: 1px solid oklch(88% 0.008 150 / 0.14);
}

.scope-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  padding: 0;
}

.scope-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-right: clamp(20px, 2.4vw, 40px);
}

.scope-row + .scope-row {
  padding-left: clamp(20px, 2.4vw, 40px);
  padding-right: clamp(20px, 2.4vw, 40px);
  border-left: 1px solid oklch(88% 0.008 150 / 0.1);
}

.scope-row:last-child {
  padding-right: 0;
}

.scope-body {
  display: grid;
  gap: 6px;
  min-width: 0;
}

.scope-row dt {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(13px, 1.05vw, 15px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text);
}

.scope-num {
  color: var(--scene-accent);
  font-size: clamp(24px, 2.4vw, 36px);
  font-weight: 900;
  line-height: 0.85;
  letter-spacing: -0.02em;
  transition: color 480ms var(--ease-out-quart);
  flex-shrink: 0;
}

.scope-row dd {
  margin: 0;
  color: oklch(60% 0.012 150);
  font-size: 13px;
  line-height: 1.55;
}


.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-width: 174px;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 900;
  cursor: pointer;
  overflow: hidden;
  transition:
    transform 200ms var(--ease-out-quart),
    border-color 200ms var(--ease-out-quart),
    background 200ms var(--ease-out-quart);
}

.button-primary {
  color: var(--text);
  background: var(--rust);
}

.button-primary span {
  width: 12px;
  height: 12px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: translateX(0) rotate(45deg);
  transition:
    transform 220ms var(--ease-out-quart),
    opacity 220ms var(--ease-out-quart);
}

.button-primary:hover span,
.button-primary:focus-visible span {
  opacity: 0.9;
  transform: translateX(4px) rotate(45deg);
}

.button-secondary {
  border: 1px solid var(--line-strong);
  color: var(--text);
  background: transparent;
}

.button:hover,
.button:focus-visible {
  border-color: rgba(3, 57, 108, 0.72);
  outline: none;
  transform: translateY(-2px);
}



.hero {
  min-height: 100vh;
  padding: 174px 18px 52px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: clamp(30px, 5vw, 72px);
  align-items: center;
  width: min(1800px, 100%);
  min-height: calc(100vh - 206px);
  margin: 0 auto;
}

.hero-content {
  display: grid;
  align-content: center;
  gap: 26px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  max-width: 590px;
  margin: 0;
  color: var(--steel);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.5;
  text-transform: uppercase;
}

.eyebrow span {
  flex: 0 0 auto;
  width: 42px;
  height: 1px;
  background: var(--acid);
  box-shadow: 0 0 24px rgba(3, 57, 108, 0.75);
}

h1 {
  max-width: 720px;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(76px, 15vw, 178px);
  font-stretch: condensed;
  font-weight: 900;
  line-height: 0.82;
  letter-spacing: 0;
  text-transform: uppercase;
}

.section-kicker {
  margin: 0 0 16px;
  color: var(--rust);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.process-section {
  position: relative;
  z-index: 1;
  padding: clamp(74px, 8vw, 120px) 18px clamp(72px, 8vw, 118px);
  background:
    linear-gradient(180deg, rgba(5, 8, 11, 0), rgba(5, 8, 11, 0.72) 18%, rgba(5, 8, 11, 0.92)),
    radial-gradient(55% 90% at 18% 16%, rgba(25, 102, 176, 0.18), transparent 72%);
}

.process-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.65fr);
  gap: clamp(28px, 5vw, 78px);
  width: min(1180px, 100%);
  margin: 0 auto;
}

.process-heading h2 {
  max-width: 760px;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(46px, 6.4vw, 106px);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: 0;
  text-transform: uppercase;
}

.process-intro {
  align-self: end;
  max-width: 470px;
  margin: 0;
  color: #c7cbc2;
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.55;
}

.process-steps {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  padding: 34px 0 0;
  margin: clamp(22px, 3vw, 42px) 0 0;
  border-top: 1px solid rgba(243, 240, 232, 0.18);
  list-style: none;
}

.process-steps li {
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 18px;
  min-height: 238px;
  padding: 0 clamp(18px, 2vw, 28px) 0 0;
  scroll-margin-top: 130px;
}

.process-steps li + li {
  padding-left: clamp(18px, 2vw, 28px);
  border-left: 1px solid rgba(243, 240, 232, 0.12);
}

.process-steps li::before {
  position: absolute;
  top: -39px;
  left: 0;
  width: 9px;
  height: 9px;
  content: "";
  background: var(--rust);
  box-shadow: 0 0 22px rgba(25, 102, 176, 0.82);
  transform: rotate(45deg);
}

.process-steps li + li::before {
  left: clamp(18px, 2vw, 28px);
}

.process-steps span {
  color: var(--rust);
  font-family: var(--font-display);
  font-size: clamp(40px, 4vw, 64px);
  font-weight: 900;
  line-height: 0.85;
}

.process-steps strong {
  display: block;
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-size: clamp(18px, 1.5vw, 24px);
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.process-steps p {
  margin: 0;
  color: #8f9891;
  font-size: 14px;
  line-height: 1.55;
}

.hero-lead {
  max-width: 670px;
  margin: 0;
  color: #c7cbc2;
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 16px 0 0;
}

.hero-metrics div {
  min-height: 112px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
}

.hero-metrics dt {
  margin: 0 0 10px;
  color: var(--text);
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-metrics dd {
  margin: 0;
  color: var(--quiet);
  font-size: 13px;
  line-height: 1.4;
}

.hero-stage {
  position: relative;
  min-width: 0;
}

.stage-shell {
  position: relative;
  min-height: 650px;
  padding: 12px;
  border: 1px solid rgba(243, 240, 232, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(243, 240, 232, 0.1), transparent 18%),
    linear-gradient(315deg, rgba(3, 57, 108, 0.28), transparent 24%),
    var(--bg-elevated);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.stage-shell::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(120deg, transparent 0 44%, rgba(255, 255, 255, 0.08) 46%, transparent 48%),
    repeating-linear-gradient(
      0deg,
      rgba(255, 255, 255, 0.035) 0,
      rgba(255, 255, 255, 0.035) 1px,
      transparent 1px,
      transparent 18px
    );
  opacity: 0.5;
  pointer-events: none;
}

.stage-topbar,
.stage-layout,
.floating-ticket {
  position: relative;
}

.stage-topbar {
  z-index: 1;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  min-height: 54px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 7px;
  color: var(--muted);
  background: rgba(6, 7, 6, 0.56);
}

.stage-topbar p,
.stage-topbar span {
  margin: 0;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.stage-topbar span:last-child {
  color: var(--acid);
}

.stage-lights {
  display: flex;
  gap: 6px;
}

.stage-lights span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--quiet);
}

.stage-lights span:first-child { background: var(--rust); }
.stage-lights span:nth-child(2) { background: var(--steel); }
.stage-lights span:last-child { background: var(--acid); }

.stage-layout {
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(190px, 0.58fr);
  grid-template-rows: 1fr auto;
  gap: 12px;
  min-height: 560px;
  padding-top: 12px;
}

.feature-card,
.price-card,
.timeline-card,
.floating-ticket {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(15, 20, 18, 0.86);
  backdrop-filter: blur(16px);
}

.project-card {
  display: grid;
  grid-row: span 2;
  grid-template-rows: auto auto 1fr auto;
  gap: 18px;
  min-height: 100%;
  padding: clamp(18px, 3vw, 28px);
}

.card-kicker {
  margin: 0;
  color: var(--acid);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.project-card h2 {
  max-width: 360px;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 62px);
  font-weight: 900;
  line-height: 0.92;
  letter-spacing: 0;
  text-transform: uppercase;
}

.project-visual {
  position: relative;
  min-height: 250px;
  border: 1px solid rgba(243, 240, 232, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(3, 57, 108, 0.3), transparent 30%),
    linear-gradient(315deg, rgba(25, 102, 176, 0.22), transparent 36%),
    repeating-linear-gradient(
      -45deg,
      rgba(243, 240, 232, 0.07) 0,
      rgba(243, 240, 232, 0.07) 1px,
      transparent 1px,
      transparent 13px
    ),
    #111612;
  overflow: hidden;
}

.project-visual::before {
  position: absolute;
  inset: 24px;
  content: "";
  border: 1px solid rgba(3, 57, 108, 0.58);
  border-radius: 7px;
  background:
    linear-gradient(90deg, rgba(3, 57, 108, 0.34) 0 22%, transparent 22%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.11) 0 1px, transparent 1px 42px);
  background-size: 100% 100%, 100% 42px;
}

.project-art {
  position: absolute;
  inset: 18px;
  width: calc(100% - 36px);
  height: calc(100% - 36px);
  object-fit: cover;
  border-radius: 8px;
  opacity: 0.82;
  mix-blend-mode: screen;
}

.project-visual::after {
  position: absolute;
  right: 32px;
  bottom: 30px;
  width: min(42%, 190px);
  height: 46%;
  content: "";
  border: 1px solid rgba(243, 240, 232, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(rgba(243, 240, 232, 0.1), rgba(243, 240, 232, 0.01)),
    #080a09;
  box-shadow: -22px 22px 0 rgba(3, 57, 108, 0.2);
}

.project-visual span {
  position: absolute;
  left: 34px;
  display: block;
  height: 12px;
  border-radius: 999px;
  background: rgba(243, 240, 232, 0.22);
}

.project-visual span:first-child { top: 42px; width: 35%; }
.project-visual span:nth-child(2) { top: 68px; width: 55%; }
.project-visual span:last-child { bottom: 42px; width: 28%; background: var(--acid); }

.project-card footer {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  color: var(--muted);
  font-size: 13px;
}

.project-card footer strong {
  color: var(--acid);
  font-family: var(--font-display);
  font-size: 24px;
}

.pricing-stack { display: grid; gap: 12px; }

.price-card {
  display: grid;
  gap: 8px;
  min-height: 136px;
  padding: 18px;
}

.price-card-active {
  border-color: rgba(3, 57, 108, 0.72);
  background:
    linear-gradient(135deg, rgba(3, 57, 108, 0.34), rgba(15, 20, 18, 0.9) 45%),
    var(--panel);
}

.price-card span { color: var(--steel); font-size: 12px; font-weight: 900; text-transform: uppercase; }
.price-card strong { font-family: var(--font-display); font-size: clamp(28px, 4vw, 40px); line-height: 0.9; text-transform: uppercase; }
.price-card small { color: var(--quiet); font-size: 12px; line-height: 1.35; }

.timeline-card { padding: 18px; }
.timeline-card ol { display: grid; gap: 13px; padding: 0; margin: 16px 0 0; list-style: none; }
.timeline-card li { display: flex; gap: 10px; align-items: center; color: var(--muted); font-size: 13px; line-height: 1.35; }
.timeline-card li span { display: grid; flex: 0 0 auto; width: 31px; height: 31px; place-items: center; border: 1px solid rgba(243, 240, 232, 0.14); border-radius: 6px; color: var(--acid); font-size: 11px; font-weight: 900; }

.floating-ticket {
  position: absolute;
  right: -24px;
  bottom: 54px;
  z-index: 2;
  display: grid;
  gap: 6px;
  width: min(260px, 42vw);
  min-height: 104px;
  padding: 18px;
  border-color: rgba(25, 102, 176, 0.58);
  background:
    linear-gradient(135deg, rgba(25, 102, 176, 0.28), rgba(15, 20, 18, 0.88) 52%),
    var(--panel);
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.42);
}

.floating-ticket span { color: var(--rust); font-size: 11px; font-weight: 900; text-transform: uppercase; }
.floating-ticket strong { font-family: var(--font-display); font-size: 26px; line-height: 0.98; text-transform: uppercase; }

.next-band {
  width: min(1800px, calc(100% - 36px));
  min-height: 140px;
  margin: 0 auto 40px;
  padding: 32px;
  border-top: 1px solid var(--line);
  color: var(--quiet);
}

.next-band p {
  max-width: 690px;
  margin: 0;
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.5;
}


.manifest {
  position: relative;
  z-index: 1;
  padding: clamp(72px, 9vw, 132px) clamp(18px, 4vw, 64px) clamp(64px, 8vw, 120px);
  border-top: 1px solid var(--line);
  isolation: isolate;
  overflow: hidden;
}

.manifest::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 2;
  width: min(1800px, calc(100% - clamp(36px, 8vw, 128px)));
  height: 1px;
  background: transparent;
  transform: translateX(-50%);
}

.manifest::after {
  display: none;
}

.manifest-shell {
  position: relative;
  z-index: 1;
  width: min(1800px, 100%);
  margin: 0 auto;
}

.manifest-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(20px, 3vw, 36px);
  margin-bottom: clamp(56px, 8vw, 112px);
}

.manifest-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin: 0;
  color: var(--steel);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.manifest-eyebrow-mark {
  display: inline-block;
  width: 10px;
  height: 10px;
  background: var(--rust);
  transform: rotate(45deg);
}

.manifest-title {
  display: grid;
  margin: 0;
  color: var(--text);
  font-family: var(--font-display);
  font-size: var(--section-rotator-title-size);
  font-weight: 900;
  line-height: 0.92;
  letter-spacing: -0.015em;
  text-transform: uppercase;
}

.manifest-title > span {
  display: block;
}

.manifest-title > span + span {
  margin-top: 0.08em;
}

.manifest-rotator {
  display: inline-block;
  color: oklch(58% 0.18 240);
}

.manifest-rotator > span {
  display: inline-block;
  white-space: nowrap;
  transition:
    opacity 220ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 220ms cubic-bezier(0.22, 1, 0.36, 1);
}

.manifest-rotator > span.is-swapping {
  opacity: 0;
  transform: translateY(0.12em);
}

.manifest-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 1.6vw, 28px);
  padding: 0;
  margin: 0;
  list-style: none;
}

.manifest-item {
  --accent: oklch(58% 0.18 240);
  position: relative;
  display: grid;
  grid-template-rows: auto auto 1fr;
  gap: 18px;
  padding: clamp(28px, 3vw, 44px) clamp(24px, 2.4vw, 36px) clamp(32px, 3.2vw, 48px);
  border: 1px solid var(--line);
  background: linear-gradient(180deg, oklch(20% 0.01 240 / 0.18), oklch(12% 0.008 240 / 0.32));
  overflow: hidden;
  isolation: isolate;
  box-shadow:
    0 0 0 0 oklch(58% 0.18 240 / 0),
    0 0 0 0 oklch(58% 0.18 240 / 0) inset;
  transition:
    transform 700ms cubic-bezier(0.22, 1, 0.36, 1),
    border-color 700ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 700ms cubic-bezier(0.22, 1, 0.36, 1),
    background 700ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.manifest-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 600ms var(--ease-out-expo);
}

.manifest-glow {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(120% 80% at 0% 0%, oklch(58% 0.18 240 / 0.18), transparent 60%);
  opacity: 0;
  transition: opacity 480ms var(--ease-out-quart);
  pointer-events: none;
}

.manifest-item:hover,
.manifest-item:focus-within {
  border-color: oklch(58% 0.18 240 / 0.55);
  transform: translateY(-8px);
  background: linear-gradient(180deg, oklch(22% 0.012 240 / 0.28), oklch(13% 0.009 240 / 0.42));
  box-shadow:
    0 24px 48px -24px oklch(58% 0.18 240 / 0.45),
    0 1px 0 0 oklch(58% 0.18 240 / 0.18) inset;
}

.manifest-item:hover::before,
.manifest-item:focus-within::before {
  width: 100%;
}

.manifest-item:hover .manifest-glow,
.manifest-item:focus-within .manifest-glow {
  opacity: 1;
}

.manifest-item:hover .manifest-num,
.manifest-item:focus-within .manifest-num {
  color: var(--accent);
  -webkit-text-stroke-color: transparent;
}

.manifest-num {
  align-self: start;
  color: transparent;
  font-family: var(--font-display);
  font-size: clamp(56px, 6vw, 88px);
  font-weight: 900;
  line-height: 0.85;
  letter-spacing: -0.04em;
  -webkit-text-stroke: 1px oklch(58% 0.18 240 / 0.45);
  user-select: none;
  transition:
    color 480ms var(--ease-out-quart),
    -webkit-text-stroke-color 480ms var(--ease-out-quart);
}

.manifest-headline {
  margin: 0;
  display: grid;
  gap: 8px;
}

.manifest-keyword {
  font-family: var(--font-display);
  font-size: clamp(28px, 2.6vw, 38px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.012em;
  text-transform: uppercase;
  color: var(--text);
}

.manifest-keyword-sub {
  position: relative;
  padding-left: 22px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
}

.manifest-keyword-sub::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 14px;
  height: 1px;
  background: var(--accent);
}

.manifest-body {
  margin: 0;
  align-self: start;
  color: oklch(76% 0.012 150);
  font-size: 15px;
  line-height: 1.65;
  letter-spacing: 0.005em;
}

.manifest-foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: clamp(40px, 5vw, 72px);
  margin-top: clamp(20px, 2vw, 32px);
}

.manifest-foot-line {
  margin: 0;
  color: var(--steel);
  font-family: var(--font-display);
  font-size: clamp(18px, 1.5vw, 22px);
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.manifest-foot-link {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  padding: 4px 16px 4px 0;
  color: var(--text);
  font-family: var(--font-display);
  font-size: clamp(14px, 1.1vw, 16px);
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--line-strong);
  transition:
    border-color 220ms var(--ease-out-quart),
    color 220ms var(--ease-out-quart);
}

.manifest-foot-arrow {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform 220ms var(--ease-out-quart);
}

.manifest-foot-link:hover,
.manifest-foot-link:focus-visible {
  color: var(--text);
  border-color: var(--rust);
  outline: none;
}

.manifest-foot-link.scroll-load-text.is-loaded {
  clip-path: inset(-12px -24px -12px 0);
}

.manifest-foot-link:hover .manifest-foot-arrow,
.manifest-foot-link:focus-visible .manifest-foot-arrow {
  transform: translateX(4px) rotate(45deg);
}

@media (min-width: 701px) and (max-width: 900px) {
  .manifest-list {
    grid-template-columns: 1fr;
    gap: 0;
    border-top: 1px solid var(--line);
  }

  .manifest-item {
    grid-template-columns: 64px minmax(0, 1fr);
    grid-template-rows: auto auto;
    gap: 8px 26px;
    padding: 22px 0;
    border: 0;
    border-bottom: 1px solid var(--line);
    background: transparent;
    box-shadow: none;
    overflow: visible;
  }

  .manifest-item::before,
  .manifest-glow {
    display: none;
  }

  .manifest-num {
    grid-row: 1 / span 2;
    grid-column: 1;
    align-self: center;
    font-size: 44px;
  }

  .manifest-headline {
    grid-column: 2;
    gap: 6px;
  }

  .manifest-keyword {
    font-size: 26px;
  }

  .manifest-keyword-sub {
    padding-left: 18px;
    font-size: 10px;
    letter-spacing: 0.08em;
  }

  .manifest-keyword-sub::before {
    width: 12px;
  }

  .manifest-body {
    grid-column: 2;
    font-size: 14px;
    line-height: 1.6;
  }
}


.proof {
  --accent: oklch(58% 0.18 240);
  position: relative;
  z-index: 1;
  padding: clamp(72px, 9vw, 132px) clamp(18px, 4vw, 64px) clamp(72px, 10vw, 140px);
  isolation: isolate;
  overflow: hidden;
}

.proof::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: min(1800px, calc(100% - clamp(36px, 8vw, 128px)));
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line), transparent);
  transform: translateX(-50%);
}

.proof-shell {
  width: min(1800px, 100%);
  margin: 0 auto;
}

.proof-head {
  display: grid;
  gap: clamp(20px, 3vw, 36px);
  margin-bottom: clamp(48px, 6vw, 88px);
}

.proof-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin: 0;
  color: var(--steel);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.proof-eyebrow-mark {
  display: inline-block;
  width: 10px;
  height: 10px;
  background: var(--accent);
  transform: rotate(45deg);
}

.proof-title {
  display: grid;
  margin: 0;
  color: var(--text);
  font-family: var(--font-display);
  font-size: var(--section-rotator-title-size);
  font-weight: 900;
  line-height: 0.94;
  letter-spacing: -0.018em;
  text-transform: uppercase;
}

.proof-title > span {
  display: block;
}

.proof-rotator {
  display: inline-block;
  color: var(--accent);
}

.proof-rotator > span {
  display: inline-block;
  white-space: nowrap;
  transition:
    opacity 220ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 220ms cubic-bezier(0.22, 1, 0.36, 1);
}

.proof-rotator > span.is-swapping {
  opacity: 0;
  transform: translateY(0.12em);
}

.proof-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  grid-template-rows: 1fr 1fr;
  gap: clamp(16px, 1.6vw, 24px);
}

.proof-case {
  position: relative;
  display: grid;
  grid-template-rows: minmax(180px, 38%) 1fr;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, oklch(20% 0.01 240 / 0.18), oklch(12% 0.008 240 / 0.32));
  color: inherit;
  text-decoration: none;
  overflow: hidden;
  isolation: isolate;
  transition:
    transform 480ms var(--ease-out-quart),
    border-color 480ms var(--ease-out-quart);
}

.proof-case-feature {
  grid-row: 1 / span 2;
  grid-template-rows: minmax(280px, 52%) 1fr;
}

.proof-case::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 600ms var(--ease-out-expo);
}

.proof-case:hover,
.proof-case:focus-visible {
  outline: none;
  border-color: oklch(58% 0.18 240 / 0.4);
  transform: translateY(-4px);
}

.proof-case:hover::before,
.proof-case:focus-visible::before {
  width: 100%;
}

.proof-case-visual {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(120% 80% at 100% 0%, oklch(42% 0.14 240 / 0.18) 0%, transparent 60%),
    linear-gradient(135deg, oklch(18% 0.01 240) 0%, oklch(10% 0.006 240) 100%);
  border-bottom: 1px solid var(--line);
}

.proof-case-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, transparent 38%, rgba(5, 8, 11, 0.42) 100%),
    radial-gradient(80% 80% at 0% 100%, rgba(5, 8, 11, 0.62), transparent 66%);
}

.proof-case-image {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.04) brightness(0.88);
  transform: scale(1.012);
  transition:
    filter 600ms var(--ease-out-quart),
    transform 800ms var(--ease-out-quart);
}

.proof-visual-grid {
  position: absolute;
  inset: 0;
  z-index: 2;
  background-image:
    linear-gradient(oklch(58% 0.18 240 / 0.08) 1px, transparent 1px),
    linear-gradient(90deg, oklch(58% 0.18 240 / 0.08) 1px, transparent 1px);
  background-size: clamp(28px, 3vw, 44px) clamp(28px, 3vw, 44px);
  mask-image: radial-gradient(120% 100% at 0% 100%, #000 0%, transparent 75%);
  opacity: 0.7;
  transition: opacity 600ms var(--ease-out-quart);
}

.proof-visual-pulse {
  position: absolute;
  inset: 14% 14% auto auto;
  z-index: 3;
  width: clamp(80px, 10vw, 150px);
  height: clamp(80px, 10vw, 150px);
  border: 1px solid oklch(58% 0.18 240 / 0.4);
  border-radius: 50%;
  background: radial-gradient(circle, oklch(58% 0.18 240 / 0.18) 0%, transparent 60%);
  filter: blur(0.5px);
  animation: proof-pulse 4.8s ease-in-out infinite;
}

.proof-visual-mark {
  position: absolute;
  bottom: clamp(16px, 2.4vw, 28px);
  left: clamp(20px, 2.6vw, 32px);
  z-index: 4;
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 900;
  line-height: 0.85;
  letter-spacing: -0.04em;
  color: transparent;
  -webkit-text-stroke: 1px oklch(58% 0.18 240 / 0.55);
  user-select: none;
}

.proof-case:hover .proof-visual-grid,
.proof-case:focus-visible .proof-visual-grid {
  opacity: 1;
}

.proof-case:hover .proof-case-image,
.proof-case:focus-visible .proof-case-image {
  filter: saturate(1) contrast(1.08) brightness(0.96);
  transform: scale(1.045);
}

.proof-case-body {
  display: grid;
  grid-template-rows: auto auto auto 1fr auto;
  gap: clamp(12px, 1.4vw, 20px);
  padding: clamp(22px, 2.6vw, 36px) clamp(22px, 2.4vw, 36px) clamp(22px, 2.6vw, 32px);
}

.proof-case-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 0;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--steel);
}

.proof-case-year {
  color: var(--quiet);
  letter-spacing: 0.04em;
}

.proof-case-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(26px, 2.6vw, 38px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.018em;
  text-transform: uppercase;
  color: var(--text);
}

.proof-case-feature .proof-case-title {
  font-size: clamp(34px, 3.4vw, 52px);
}

.proof-case-summary {
  margin: 0;
  color: oklch(76% 0.012 150);
  font-size: 14px;
  line-height: 1.6;
  letter-spacing: 0.005em;
}

.proof-case-feature .proof-case-summary {
  font-size: 15px;
  max-width: 52ch;
}

.proof-case-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(8px, 1vw, 16px);
  padding: 24px 0 0;
  margin: 16px 0 0;
  border-top: 1px solid var(--line);
}

.proof-case-stats-compact {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.proof-case-stats > div {
  display: grid;
  grid-template-rows: minmax(34px, auto) minmax(34px, auto);
  align-content: start;
  gap: 10px;
}

.proof-case-stats dt {
  display: flex;
  align-items: flex-start;
  font-family: var(--font-display);
  font-size: clamp(20px, 1.8vw, 28px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.012em;
  color: var(--accent);
}

.proof-case-stats dd {
  display: flex;
  align-items: flex-start;
  margin: 0;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--steel);
  line-height: 1.3;
}

.proof-case-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 4px;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text);
}

.proof-case-arrow {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform 220ms var(--ease-out-quart);
}

.proof-case:hover .proof-case-arrow,
.proof-case:focus-visible .proof-case-arrow {
  transform: translateX(4px) rotate(45deg);
}

.proof-foot {
  display: flex;
  justify-content: flex-end;
  padding-top: clamp(28px, 3.6vw, 48px);
}

.proof-foot-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 6px 0;
  color: var(--text);
  font-family: var(--font-display);
  font-size: clamp(13px, 1.05vw, 15px);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--line-strong);
  transition:
    border-color 220ms var(--ease-out-quart),
    color 220ms var(--ease-out-quart);
}

.proof-foot-arrow {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform 220ms var(--ease-out-quart);
}

.proof-foot-link:hover,
.proof-foot-link:focus-visible {
  border-color: var(--accent);
  outline: none;
}

.proof-foot-link:hover .proof-foot-arrow,
.proof-foot-link:focus-visible .proof-foot-arrow {
  transform: translateX(4px) rotate(45deg);
}

@keyframes proof-pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.08);
    opacity: 0.6;
  }
}

@media (min-width: 981px) and (max-width: 1100px) {
  .proof-grid {
    gap: 14px;
  }

  .proof-case {
    grid-template-rows: minmax(140px, 32%) 1fr;
  }

  .proof-case-feature {
    grid-template-rows: minmax(200px, 44%) 1fr;
  }

  .proof-case-body {
    gap: 10px;
    padding: 20px 22px;
  }

  .proof-case-title {
    font-size: 22px;
  }

  .proof-case-feature .proof-case-title {
    font-size: 28px;
  }

  .proof-case-summary {
    font-size: 13px;
    line-height: 1.55;
  }

  .proof-case-stats dt {
    font-size: 22px;
  }

  .proof-case-stats dd {
    font-size: 11px;
  }

  .proof-visual-mark {
    font-size: 44px;
  }

  .proof-visual-pulse {
    width: 88px;
    height: 88px;
  }
}



.testimonials {
  --accent: oklch(58% 0.18 240);
  position: relative;
  z-index: 1;
  padding: clamp(72px, 9vw, 132px) clamp(18px, 4vw, 64px);
}

.testimonials-shell {
  width: min(1800px, 100%);
  margin: 0 auto;
}

.testimonials-head {
  margin-bottom: clamp(40px, 5vw, 72px);
}

.testimonials-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 16px;
  color: var(--steel);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.testimonials-eyebrow-mark {
  display: inline-block;
  width: 9px;
  height: 9px;
  background: var(--accent);
  transform: rotate(45deg);
}

.testimonials-title {
  margin: 0;
  color: var(--text);
  font-family: var(--font-display);
  font-size: var(--section-rotator-title-size);
  font-weight: 900;
  line-height: 0.94;
  letter-spacing: -0.018em;
  text-transform: uppercase;
}

.testimonials-rotator {
  display: inline-block;
  color: var(--accent);
}

.testimonials-rotator > span {
  display: inline-block;
  white-space: nowrap;
  transition:
    opacity 220ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 220ms cubic-bezier(0.22, 1, 0.36, 1);
}

.testimonials-rotator > span.is-swapping {
  opacity: 0;
  transform: translateY(0.12em);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2vw, 28px);
}

.testimonial-card--wide {
  grid-column: span 2;
}

.testimonial-card {
  position: relative;
  display: grid;
  align-content: space-between;
  gap: 28px;
  margin: 0;
  padding: clamp(24px, 3vw, 36px);
  border: 1px solid var(--line);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.02);
}

.testimonial-quote-mark {
  position: absolute;
  top: 20px;
  right: 28px;
  font-size: 72px;
  line-height: 1;
  color: var(--line);
  font-family: Georgia, serif;
  user-select: none;
  pointer-events: none;
}

.testimonial-body {
  margin: 0;
}

.testimonial-body p {
  margin: 0;
  color: var(--text);
  font-size: clamp(15px, 1.4vw, 17px);
  line-height: 1.65;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.testimonial-name {
  color: var(--text);
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.testimonial-role {
  color: var(--muted);
  font-size: 13px;
}

@media (min-width: 701px) and (max-width: 900px) {
  .testimonial-card {
    gap: 16px;
    padding: 20px 22px;
  }

  .testimonial-body p {
    font-size: 14px;
    line-height: 1.55;
  }

  .testimonial-author {
    padding-top: 12px;
    gap: 2px;
  }

  .testimonial-name {
    font-size: 13px;
  }

  .testimonial-role {
    font-size: 12px;
  }

  .testimonial-quote-mark {
    top: 14px;
    right: 18px;
    font-size: 44px;
  }
}

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

  .testimonial-card--wide {
    grid-column: auto;
  }
}

@media (min-width: 901px) and (max-width: 1200px) {
  .testimonials-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
  }

  .testimonial-card:last-child {
    grid-column: auto;
    max-width: none;
  }

  .testimonial-card {
    gap: 20px;
    padding: 22px 22px 20px;
  }

  .testimonial-quote-mark {
    top: 14px;
    right: 18px;
    font-size: 52px;
  }

  .testimonial-body p {
    font-size: 14px;
    line-height: 1.56;
  }

  .testimonial-author {
    padding-top: 14px;
  }
}


.packages {
  --accent: oklch(58% 0.18 240);
  position: relative;
  z-index: 1;
  padding: clamp(72px, 9vw, 132px) clamp(18px, 4vw, 64px) clamp(72px, 10vw, 140px);
  isolation: isolate;
  overflow: hidden;
}

.packages::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: min(1800px, calc(100% - clamp(36px, 8vw, 128px)));
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line), transparent);
  transform: translateX(-50%);
}

.packages-shell {
  width: min(1800px, 100%);
  margin: 0 auto;
}

.packages-head {
  display: grid;
  gap: clamp(20px, 3vw, 36px);
  margin-bottom: clamp(48px, 6vw, 88px);
  max-width: 64ch;
}

.packages-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin: 0;
  color: var(--steel);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.packages-eyebrow-mark {
  display: inline-block;
  width: 10px;
  height: 10px;
  background: var(--accent);
  transform: rotate(45deg);
}

.packages-title {
  display: grid;
  margin: 0;
  color: var(--text);
  font-family: var(--font-display);
  font-size: var(--section-rotator-title-size);
  font-weight: 900;
  line-height: 0.94;
  letter-spacing: -0.018em;
  text-transform: uppercase;
}

.packages-title > span {
  display: block;
  width: max-content;
  max-width: 100%;
  white-space: nowrap;
}

.packages-rotator {
  display: inline-block;
  color: var(--accent);
}

.packages-rotator > span {
  display: inline-block;
  white-space: nowrap;
  transition:
    opacity 220ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 220ms cubic-bezier(0.22, 1, 0.36, 1);
}

.packages-rotator > span.is-swapping {
  opacity: 0;
  transform: translateY(0.12em);
}

.packages-lead {
  margin: 0;
  max-width: 52ch;
  color: oklch(78% 0.012 150);
  font-size: clamp(15px, 1.2vw, 18px);
  line-height: 1.6;
  letter-spacing: 0.005em;
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 1.6vw, 24px);
}

.packages-tile {
  position: relative;
  display: grid;
  grid-template-rows: auto auto auto 1fr auto;
  gap: clamp(16px, 1.6vw, 22px);
  padding: clamp(28px, 3vw, 44px) clamp(24px, 2.4vw, 36px) clamp(28px, 3vw, 40px);
  border: 1px solid var(--line);
  background: linear-gradient(180deg, oklch(20% 0.01 240 / 0.18), oklch(12% 0.008 240 / 0.32));
  color: inherit;
  text-decoration: none;
  overflow: hidden;
  isolation: isolate;
  transition:
    transform 480ms var(--ease-out-quart),
    border-color 480ms var(--ease-out-quart);
}

.packages-tile::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 600ms var(--ease-out-expo);
}

.packages-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(120% 80% at 100% 0%, oklch(58% 0.18 240 / 0.12), transparent 60%);
  opacity: 0;
  transition: opacity 480ms var(--ease-out-quart);
  pointer-events: none;
}

.packages-tile:hover,
.packages-tile:focus-visible {
  outline: none;
  border-color: oklch(58% 0.18 240 / 0.4);
  transform: translateY(-4px);
}

.packages-tile:hover::before,
.packages-tile:focus-visible::before {
  width: 100%;
}

.packages-tile:hover::after,
.packages-tile:focus-visible::after {
  opacity: 1;
}

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

.packages-tile-num {
  font-family: var(--font-display);
  font-size: clamp(40px, 4.4vw, 64px);
  font-weight: 900;
  line-height: 0.85;
  letter-spacing: -0.04em;
  color: oklch(58% 0.18 240 / 0.18);
  text-shadow: 0 0 24px oklch(58% 0.18 240 / 0.22);
  -webkit-text-stroke: 1px oklch(62% 0.2 240 / 0.82);
  user-select: none;
  transition:
    color 480ms var(--ease-out-quart),
    text-shadow 480ms var(--ease-out-quart),
    -webkit-text-stroke-color 480ms var(--ease-out-quart);
}

.packages-tile:hover .packages-tile-num,
.packages-tile:focus-visible .packages-tile-num {
  color: var(--accent);
  text-shadow: 0 0 30px oklch(58% 0.18 240 / 0.34);
  -webkit-text-stroke-color: transparent;
}

.packages-tile-tag {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--steel);
  text-align: right;
}

.packages-tile-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(34px, 3.4vw, 52px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.018em;
  text-transform: uppercase;
  color: var(--text);
}

.packages-tile-summary {
  margin: 0;
  color: oklch(76% 0.012 150);
  font-size: 14px;
  line-height: 1.6;
  letter-spacing: 0.005em;
}

.packages-tile-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.packages-tile-list li {
  position: relative;
  padding-left: 22px;
  font-size: 13px;
  line-height: 1.5;
  color: oklch(82% 0.012 150);
}

.packages-tile-list li::before {
  content: "";
  position: absolute;
  top: 0.55em;
  left: 0;
  width: 12px;
  height: 1px;
  background: var(--accent);
}

.packages-tile-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding-top: 18px;
  margin-top: 4px;
  border-top: 1px solid var(--line);
}

.packages-tile-meta {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text);
}

.packages-tile-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--steel);
  transition: color 220ms var(--ease-out-quart);
}

.packages-tile-arrow {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform 220ms var(--ease-out-quart);
}

.packages-tile:hover .packages-tile-cta,
.packages-tile:focus-visible .packages-tile-cta {
  color: var(--text);
}

.packages-tile:hover .packages-tile-arrow,
.packages-tile:focus-visible .packages-tile-arrow {
  transform: translateX(4px) rotate(45deg);
}

.packages-foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: clamp(36px, 4.8vw, 64px);
}

.packages-foot-line {
  margin: 0;
  color: var(--steel);
  font-family: var(--font-display);
  font-size: clamp(16px, 1.4vw, 20px);
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.packages-foot-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 6px 0;
  color: var(--text);
  font-family: var(--font-display);
  font-size: clamp(13px, 1.05vw, 15px);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--line-strong);
  transition:
    border-color 220ms var(--ease-out-quart),
    color 220ms var(--ease-out-quart);
}

.packages-foot-arrow {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform 220ms var(--ease-out-quart);
}

.packages-foot-link:hover,
.packages-foot-link:focus-visible {
  border-color: var(--accent);
  outline: none;
}

.packages-foot-link:hover .packages-foot-arrow,
.packages-foot-link:focus-visible .packages-foot-arrow {
  transform: translateX(4px) rotate(45deg);
}


.partner-band {
  position: relative;
  z-index: 1;
  padding: 32px clamp(18px, 4vw, 64px) 36px;
  text-align: center;
}

.partner-band-shell {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.partner-eyebrow {
  margin: 0;
  font-family: var(--font-body);
  font-size: clamp(12px, 1vw, 14px);
  font-weight: 500;
  letter-spacing: 0.3em;
  text-indent: 0.3em;
  text-transform: uppercase;
  color: var(--quiet);
  transform: translateX(-0.7em);
}

.partner-logo {
  display: inline-block;
  text-decoration: none;
}

.partner-logo-glow {
  display: none;
}

.partner-logo-img {
  display: block;
  width: 140px;
  height: 140px;
  object-fit: contain;
  transition: transform 400ms ease-in-out;
}

.partner-logo:hover .partner-logo-img {
  transform: rotate(6deg);
}

.partner-tagline {
  margin: 0;
  font-size: clamp(13px, 1.1vw, 15px);
  font-style: italic;
  color: var(--quiet);
}


.pkg-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--quiet);
}

.pkg-eyebrow-mark {
  display: block;
  width: 8px;
  height: 8px;
  flex-shrink: 0;
  background: oklch(58% 0.18 240);
  transform: rotate(45deg);
}

.pkg-hero {
  padding: clamp(100px, 14vw, 160px) clamp(18px, 4vw, 64px) clamp(56px, 7vw, 96px);
  text-align: center;
  overflow: hidden;
}

.pkg-hero-shell {
  width: min(1800px, 100%);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.pkg-hero-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(40px, 8.4vw, 112px);
  font-weight: 900;
  line-height: 0.92;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  text-align: center;
  color: var(--text);
  max-width: 100%;
}

.pkg-hero-line {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: center;
  width: 100%;
  max-width: 100%;
}

.pkg-hero-line-main {
  font-size: clamp(44px, 6.2vw, 112px);
}

.pkg-hero-line-strong {
  gap: 0.18em;
  margin-top: 0.12em;
  font-size: clamp(54px, 7.6vw, 132px);
}

.pkg-hero-rotator {
  display: inline-block;
  text-align: center;
  white-space: nowrap;
  color: oklch(58% 0.18 240);
  transition: width 360ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: width;
}

.pkg-hero-rotator > span {
  display: inline-block;
  transition:
    opacity 220ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 220ms cubic-bezier(0.22, 1, 0.36, 1);
}

.pkg-hero-rotator > span.is-swapping {
  opacity: 0;
  transform: translateY(0.12em);
}

.pkg-hero-lead {
  margin: 0;
  font-size: clamp(15px, 1.3vw, 18px);
  line-height: 1.6;
  color: var(--muted);
  max-width: 52ch;
}

.pkg-jumps {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 8px;
}

.pkg-jump {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  border: 1px solid var(--line-strong);
  border-radius: 4px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 180ms ease, border-color 180ms ease;
}

.pkg-jump:hover {
  color: var(--text);
  border-color: oklch(58% 0.18 240 / 0.5);
}

.pkg-jump-rush {
  color: oklch(68% 0.22 28);
  border-color: oklch(68% 0.22 28 / 0.55);
}

.pkg-jump-rush:hover {
  color: oklch(72% 0.24 28);
  border-color: oklch(72% 0.24 28 / 0.8);
}

.pkg-mini-head {
  display: grid;
  gap: 14px;
  max-width: 70ch;
}

.pkg-mini-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(32px, 4.4vw, 62px);
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--text);
}

#pkg-included-title {
  font-size: clamp(40px, 5.8vw, 88px);
  letter-spacing: 0;
}

.pkg-mini-desc {
  margin: 0;
  max-width: 64ch;
  color: var(--muted);
  font-size: clamp(14px, 1.1vw, 16px);
  line-height: 1.6;
}

.pkg-included,
.pkg-compare,
.pkg-faq {
  padding: clamp(56px, 7vw, 96px) clamp(18px, 4vw, 64px);
  border-top: 1px solid var(--line);
  scroll-margin-top: 80px;
}

.pkg-included-shell,
.pkg-compare-shell,
.pkg-faq-shell {
  width: min(1800px, 100%);
  margin: 0 auto;
  display: grid;
  gap: clamp(28px, 4vw, 54px);
}

.pkg-included-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  padding: 0;
  margin: 0;
  list-style: none;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.pkg-included-grid li {
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 220px;
  padding: clamp(22px, 2.4vw, 36px);
  border-right: 1px solid var(--line);
}

.pkg-included-grid li:last-child {
  border-right: 0;
}

.pkg-included-kicker {
  color: oklch(58% 0.18 240);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.pkg-included-grid strong {
  color: var(--text);
  font-family: var(--font-display);
  font-size: clamp(18px, 1.5vw, 24px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}

.pkg-included-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.pkg-rush {
  --rush-accent: oklch(62% 0.22 28);
  --rush-ink: oklch(92% 0.012 40);
  position: relative;
  padding: clamp(44px, 6vw, 80px) clamp(18px, 4vw, 64px);
  border-top: 1px solid oklch(62% 0.22 28 / 0.45);
  border-bottom: 1px solid oklch(62% 0.22 28 / 0.45);
  scroll-margin-top: 80px;
  color: var(--rush-ink);
  background:
    radial-gradient(70% 100% at 0% 50%, oklch(45% 0.18 28 / 0.32) 0%, transparent 62%),
    radial-gradient(55% 80% at 100% 50%, oklch(45% 0.16 28 / 0.18) 0%, transparent 68%),
    linear-gradient(180deg, oklch(16% 0.05 28) 0%, oklch(11% 0.03 28) 100%);
  isolation: isolate;
  overflow: hidden;
}

.pkg-rush::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("assets/stx-bg-texture.png");
  background-repeat: repeat;
  background-size: 480px auto;
  opacity: 0.05;
  mix-blend-mode: overlay;
  pointer-events: none;
  z-index: 0;
}

.pkg-rush-shell {
  position: relative;
  z-index: 1;
  width: min(1800px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(160px, 0.3fr) minmax(420px, 1fr) minmax(320px, 0.58fr) auto;
  align-items: center;
  gap: clamp(22px, 4vw, 72px);
}

.pkg-rush-kicker,
.pkg-rush-terms span {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.pkg-rush-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  padding: 6px 12px;
  color: oklch(98% 0.005 40);
  background: oklch(62% 0.22 28 / 0.92);
  border: 1px solid oklch(72% 0.22 28 / 0.7);
  width: max-content;
  letter-spacing: 0.16em;
}

.pkg-rush-main {
  display: grid;
  gap: 8px;
}

.pkg-rush-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(34px, 4.8vw, 72px);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.pkg-rush-lead {
  max-width: 58ch;
  margin: 0;
  font-size: clamp(14px, 1.05vw, 16px);
  font-weight: 650;
  line-height: 1.5;
  color: oklch(86% 0.02 30);
}

.pkg-rush-terms {
  display: grid;
  gap: 8px;
}

.pkg-rush-terms span {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10px 12px;
  border: 1px solid oklch(72% 0.22 28 / 0.45);
  background: oklch(8% 0.02 28 / 0.55);
  color: oklch(94% 0.02 35);
}

.pkg-rush-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid var(--rush-accent);
  color: oklch(88% 0.04 35);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
  transition:
    background 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.pkg-rush-link:hover,
.pkg-rush-link:focus-visible {
  color: var(--rush-ink);
  background: oklch(62% 0.22 28 / 0.14);
  outline: none;
  transform: translateY(-1px);
}

.pkg-rush-link span {
  width: 9px;
  height: 9px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
}

@media (min-width: 901px) and (max-width: 1100px) {
  .pkg-rush {
    padding: 48px clamp(28px, 5vw, 52px);
  }

  .pkg-rush-shell {
    grid-template-columns: minmax(150px, 0.38fr) minmax(0, 1fr) minmax(320px, 0.78fr);
    gap: 22px 26px;
  }

  .pkg-rush-kicker {
    grid-row: 1 / 3;
    justify-self: center;
    align-self: center;
  }

  .pkg-rush-main {
    grid-column: 2;
    grid-row: 1;
  }

  .pkg-rush-title {
    font-size: clamp(42px, 4.6vw, 54px);
  }

  .pkg-rush-lead {
    max-width: 48ch;
    font-size: 14px;
  }

  .pkg-rush-terms {
    grid-column: 3;
    grid-row: 1 / 3;
    justify-self: center;
    align-self: center;
    width: min(100%, 296px);
    gap: 8px;
  }

  .pkg-rush-kicker,
  .pkg-rush-terms span {
    font-size: 11px;
    line-height: 1.2;
  }

  .pkg-rush-terms span {
    padding: 9px 10px;
  }

  .pkg-rush-link {
    grid-column: 2;
    grid-row: 2;
    justify-self: start;
    min-height: 42px;
    padding: 0 16px;
    font-size: 12px;
  }
}

.pkg-section {
  padding: clamp(56px, 8vw, 112px) clamp(18px, 4vw, 64px);
  border-top: 1px solid var(--line);
  scroll-margin-top: 80px;
}

.pkg-section-shell {
  width: min(1800px, 100%);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: clamp(32px, 4vw, 56px);
}

.pkg-section-head {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto auto;
  column-gap: 28px;
  row-gap: 10px;
  align-items: start;
}

.pkg-section-num {
  grid-row: 1 / 4;
  font-family: var(--font-display);
  font-size: clamp(64px, 7vw, 96px);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -0.03em;
  color: transparent;
  -webkit-text-stroke: 1.5px oklch(58% 0.18 240 / 0.5);
  user-select: none;
  align-self: center;
}

.pkg-section-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--text);
}

.pkg-section-desc {
  margin: 0;
  font-size: clamp(14px, 1.2vw, 16px);
  line-height: 1.6;
  color: var(--muted);
  max-width: 58ch;
}

.pkg-cards {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--line);
}

.pkg-card {
  display: grid;
  grid-template-columns: minmax(320px, 0.42fr) minmax(0, 1fr) minmax(240px, 0.32fr);
  align-items: stretch;
  border-bottom: 1px solid var(--line);
  background: transparent;
  transition: background 200ms ease;
}

.pkg-card:hover {
  background: oklch(58% 0.18 240 / 0.03);
}

.pkg-card-featured {
  background: oklch(58% 0.18 240 / 0.05);
  box-shadow: inset 0 0 0 1px oklch(58% 0.18 240 / 0.24);
}

.pkg-card-featured:hover {
  background: oklch(58% 0.18 240 / 0.08);
}

.pkg-card-head {
  padding: 36px;
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
}

.pkg-card-name {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--text);
}

.pkg-card-tagline {
  margin: 0;
  font-size: 13px;
  color: var(--quiet);
}

.pkg-card-fit {
  max-width: 32ch;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.pkg-card-features {
  list-style: none;
  margin: 0;
  padding: 36px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 32px;
  align-content: center;
  border-right: 1px solid var(--line);
}

.pkg-card-features li {
  display: flex;
  align-items: baseline;
  gap: 10px;
  font-size: clamp(13px, 1vw, 14px);
  color: var(--muted);
  line-height: 1.4;
}

.pkg-card-features li::before {
  content: "";
  flex-shrink: 0;
  width: 5px;
  height: 5px;
  background: oklch(58% 0.18 240);
  transform: rotate(45deg);
  margin-top: 3px;
}

.pkg-card-foot {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 16px;
  padding: 36px;
}

.pkg-card-pricing {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.pkg-card-price {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.2vw, 30px);
  font-weight: 900;
  color: oklch(58% 0.18 240);
  letter-spacing: -0.02em;
  line-height: 1;
}

.pkg-card-time {
  font-size: 12px;
  color: var(--quiet);
  letter-spacing: 0.05em;
}

@media (min-width: 981px) and (max-width: 1100px) {
  .pkg-section {
    padding: 56px clamp(18px, 4vw, 64px);
  }

  .pkg-section-shell {
    gap: 28px;
  }

  .pkg-section-head {
    column-gap: 20px;
  }

  .pkg-section-num {
    font-size: 56px;
  }

  .pkg-section-title {
    font-size: 44px;
  }

  .pkg-section-desc {
    font-size: 14px;
    line-height: 1.55;
  }

  .pkg-card {
    grid-template-columns: minmax(220px, 0.4fr) minmax(0, 1fr) minmax(180px, 0.3fr);
  }

  .pkg-card-head,
  .pkg-card-features,
  .pkg-card-foot {
    padding: 22px;
  }

  .pkg-card-features {
    gap: 8px 20px;
  }

  .pkg-card-foot {
    gap: 12px;
  }

  .pkg-card-name {
    font-size: 26px;
  }

  .pkg-card-fit {
    margin-top: 8px;
    font-size: 12px;
    line-height: 1.45;
  }

  .pkg-card-features li {
    font-size: 13px;
    line-height: 1.4;
  }

  .pkg-card-price {
    font-size: 24px;
  }

  .pkg-card-foot .button {
    width: 100%;
    min-width: 0;
    padding: 0 14px;
    min-height: 44px;
    font-size: 13px;
  }
}

.pkg-system-body {
  display: grid;
  grid-template-columns: 1fr 220px;
  gap: 0;
  border-top: 1px solid var(--line);
}

.pkg-system-caps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--line);
}

.pkg-system-caps li {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 32px;
  align-items: baseline;
  padding: 22px 36px 22px 0;
  border-bottom: 1px solid var(--line);
  transition: background 180ms ease;
}

.pkg-system-caps li:hover {
  background: oklch(58% 0.18 240 / 0.03);
}

.pkg-system-cap-label {
  font-family: var(--font-display);
  font-size: clamp(14px, 1.2vw, 16px);
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text);
  flex-shrink: 0;
}

.pkg-system-caps li p {
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
  color: var(--muted);
}

.pkg-system-cta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 20px;
  padding: 0 0 0 36px;
}

.pkg-system-cta-note {
  margin: 0;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}

.pkg-system-examples {
  display: grid;
  padding-top: clamp(14px, 1.6vw, 22px);
}

.pkg-system-example-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 1.6vw, 24px);
}

.pkg-system-tile {
  position: relative;
  display: grid;
  grid-template-rows: auto auto 1fr;
  align-content: start;
  gap: clamp(16px, 1.6vw, 22px);
  min-height: 320px;
  padding: clamp(28px, 3vw, 44px) clamp(24px, 2.4vw, 36px) clamp(28px, 3vw, 40px);
  overflow: hidden;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, oklch(20% 0.01 240 / 0.18), oklch(12% 0.008 240 / 0.32));
  isolation: isolate;
  transition:
    transform 480ms var(--ease-out-quart),
    border-color 480ms var(--ease-out-quart);
}

.pkg-system-tile::before {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  content: "";
  width: 0;
  height: 2px;
  background: oklch(58% 0.18 240);
  transition: width 600ms var(--ease-out-expo);
}

.pkg-system-tile::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background: radial-gradient(120% 80% at 100% 0%, oklch(58% 0.18 240 / 0.12), transparent 60%);
  opacity: 0;
  transition: opacity 480ms var(--ease-out-quart);
  pointer-events: none;
}

.pkg-system-tile:hover {
  border-color: oklch(58% 0.18 240 / 0.4);
  transform: translateY(-4px);
}

.pkg-system-tile:hover::before {
  width: 100%;
}

.pkg-system-tile:hover::after {
  opacity: 1;
}

.pkg-system-tile span {
  color: oklch(58% 0.18 240);
  font-family: var(--font-display);
  font-size: clamp(40px, 4.4vw, 64px);
  font-weight: 900;
  line-height: 0.85;
  letter-spacing: -0.04em;
  color: oklch(58% 0.18 240 / 0.18);
  text-shadow: 0 0 24px oklch(58% 0.18 240 / 0.22);
  -webkit-text-stroke: 1px oklch(62% 0.2 240 / 0.82);
  user-select: none;
  transition:
    color 480ms var(--ease-out-quart),
    text-shadow 480ms var(--ease-out-quart),
    -webkit-text-stroke-color 480ms var(--ease-out-quart);
}

.pkg-system-tile:hover span {
  color: oklch(58% 0.18 240);
  text-shadow: 0 0 30px oklch(58% 0.18 240 / 0.34);
  -webkit-text-stroke-color: transparent;
}

.pkg-system-tile h3 {
  margin: 0;
  color: var(--text);
  font-family: var(--font-display);
  font-size: clamp(30px, 3vw, 46px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.018em;
  text-transform: uppercase;
}

.pkg-system-tile p {
  max-width: 42ch;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

@media (min-width: 981px) and (max-width: 1100px) {
  .pkg-system-body {
    grid-template-columns: 1fr 200px;
  }

  .pkg-system-caps li {
    grid-template-columns: 180px 1fr;
    gap: 20px;
    padding: 16px 22px 16px 0;
  }

  .pkg-system-cap-label {
    font-size: 13px;
  }

  .pkg-system-caps li p {
    font-size: 12px;
    line-height: 1.45;
  }

  .pkg-system-cta {
    gap: 14px;
    padding-left: 22px;
  }

  .pkg-system-cta-note {
    font-size: 12px;
    line-height: 1.5;
  }

  .pkg-system-tile {
    min-height: 240px;
    padding: 22px 20px;
    gap: 14px;
  }

  .pkg-system-tile span {
    font-size: 38px;
  }

  .pkg-system-tile h3 {
    font-size: 26px;
  }

  .pkg-system-tile p {
    font-size: 13px;
    line-height: 1.5;
  }
}

.pkg-compare-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.pkg-compare-item {
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 230px;
  padding: clamp(22px, 2.5vw, 38px);
  border-right: 1px solid var(--line);
  background: oklch(18% 0.01 240 / 0.16);
}

.pkg-compare-item:last-child {
  border-right: 0;
}

.pkg-compare-label {
  color: oklch(58% 0.18 240);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.pkg-compare-item h3 {
  margin: 0;
  color: var(--text);
  font-family: var(--font-display);
  font-size: clamp(24px, 2.4vw, 38px);
  font-weight: 900;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.pkg-compare-item p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.pkg-compare-item ul {
  display: grid;
  gap: 8px;
  margin: 6px 0 0;
  padding: 0;
  list-style: none;
}

.pkg-compare-item li {
  display: flex;
  align-items: baseline;
  gap: 9px;
  color: oklch(82% 0.01 150);
  font-size: 13px;
  line-height: 1.35;
}

.pkg-compare-item li::before {
  content: "";
  flex: 0 0 auto;
  width: 5px;
  height: 5px;
  margin-top: 3px;
  background: oklch(58% 0.18 240);
  transform: rotate(45deg);
}

.pkg-hosting {
  padding: clamp(56px, 8vw, 112px) clamp(18px, 4vw, 64px) clamp(24px, 3.5vw, 44px);
  border-top: 1px solid var(--line);
  scroll-margin-top: 80px;
}

.pkg-hosting-shell {
  width: min(1800px, 100%);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: clamp(32px, 4vw, 56px);
}

.pkg-hosting-head {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto auto;
  column-gap: 28px;
  row-gap: 10px;
  align-items: start;
}

.pkg-hosting-cards {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--line);
}

.pkg-hosting-card {
  display: grid;
  grid-template-columns: 260px 1fr 200px;
  align-items: center;
  gap: 0;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  transition: background 180ms ease;
}

.pkg-hosting-card:hover {
  background: oklch(58% 0.18 240 / 0.03);
}

.pkg-hosting-num {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
  color: oklch(58% 0.18 240);
  display: none;
}

.pkg-hosting-name {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 900;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--text);
  padding-right: 36px;
  border-right: 1px solid var(--line);
}

.pkg-hosting-desc {
  margin: 0;
  font-size: 13px;
  line-height: 1.6;
  color: var(--muted);
  padding: 0 36px;
  border-right: 1px solid var(--line);
}

.pkg-hosting-price {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(18px, 1.8vw, 24px);
  font-weight: 900;
  color: oklch(58% 0.18 240);
  padding-left: 36px;
}

.pkg-hosting-price span {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 400;
  color: var(--quiet);
}

@media (min-width: 981px) and (max-width: 1100px) {
  .pkg-hosting {
    padding: 48px clamp(18px, 4vw, 64px) 24px;
  }

  .pkg-hosting-shell {
    gap: 24px;
  }

  .pkg-hosting-head {
    column-gap: 20px;
  }

  .pkg-hosting-card {
    grid-template-columns: 200px 1fr 160px;
    padding: 18px 0;
  }

  .pkg-hosting-name {
    font-size: 22px;
    padding-right: 22px;
  }

  .pkg-hosting-desc {
    padding: 0 22px;
    font-size: 12px;
    line-height: 1.5;
  }

  .pkg-hosting-price {
    padding-left: 22px;
    font-size: 20px;
  }

  .pkg-hosting-price span {
    font-size: 11px;
  }
}

.pkg-useme-band {
  margin: 0 clamp(18px, 4vw, 64px) 0;
  border-top: 1px solid var(--line);
  padding: 20px 0;
}

.pkg-useme-shell {
  width: min(1800px, 100%);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 12px;
}

.page-packages .cta-final-shell {
  width: min(1800px, 100%);
}

.page-packages .site-footer-nav {
  width: min(1800px, 100%);
}

.privacy-hero {
  position: relative;
  z-index: 2;
  padding-bottom: clamp(52px, 6vw, 88px);
}

.privacy-section {
  position: relative;
  z-index: 1;
  padding: clamp(34px, 5vw, 76px) clamp(18px, 4vw, 64px) clamp(82px, 9vw, 142px);
  border-top: 1px solid var(--line);
}

.privacy-shell {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(34px, 5vw, 88px);
  width: min(1800px, 100%);
  margin: 0 auto;
}

.privacy-aside {
  position: sticky;
  top: 118px;
  align-self: start;
  display: grid;
  gap: 18px;
}

.privacy-summary {
  display: grid;
  padding: 0;
  margin: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.privacy-summary li {
  display: grid;
  gap: 7px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.privacy-summary span {
  color: var(--quiet);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.privacy-summary strong,
.privacy-summary a {
  color: var(--text);
  font-family: var(--font-display);
  font-size: clamp(18px, 1.6vw, 26px);
  font-weight: 800;
  line-height: 1.08;
  text-transform: uppercase;
}

.privacy-summary a {
  width: fit-content;
  transition: color 180ms ease;
}

.privacy-summary a:hover,
.privacy-summary a:focus-visible {
  color: oklch(58% 0.18 240);
  outline: none;
}

.privacy-note {
  margin: 0;
  color: var(--quiet);
  font-size: 13px;
  line-height: 1.6;
}

.privacy-content {
  display: grid;
  gap: clamp(18px, 2vw, 26px);
  min-width: 0;
}

.privacy-content-head {
  display: grid;
  gap: 16px;
  padding-bottom: clamp(22px, 3vw, 34px);
  border-bottom: 1px solid var(--line-strong);
}

.privacy-content-head h2 {
  max-width: 100%;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(32px, 3.65vw, 66px);
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: 0;
  text-transform: uppercase;
}

.privacy-content-head h2 span {
  display: block;
  max-width: 100%;
}

.privacy-content-head h2 span span {
  display: inline;
}

.privacy-content-head p,
.privacy-block p {
  margin: 0;
  color: #c7cbc2;
  font-size: clamp(15px, 1.1vw, 18px);
  line-height: 1.72;
}

.privacy-content-head p {
  max-width: 68ch;
}

.privacy-block-body {
  display: grid;
  gap: 14px;
  min-width: 0;
}

.privacy-block-body ul {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.privacy-block-body li {
  position: relative;
  padding-left: 18px;
  color: #c7cbc2;
  font-size: clamp(15px, 1.05vw, 17px);
  line-height: 1.64;
}

.privacy-block-body li::before {
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 6px;
  height: 6px;
  content: "";
  background: oklch(58% 0.18 240);
  transform: rotate(45deg);
}

.privacy-block {
  display: grid;
  grid-template-columns: minmax(150px, 0.32fr) minmax(0, 0.68fr);
  gap: clamp(18px, 3vw, 44px);
  padding: clamp(22px, 3vw, 34px) 0;
  border-bottom: 1px solid var(--line);
}

.privacy-block h3 {
  margin: 0;
  color: var(--text);
  font-family: var(--font-display);
  font-size: clamp(22px, 2.2vw, 36px);
  font-weight: 850;
  line-height: 1;
  text-transform: uppercase;
}

.privacy-block a {
  color: var(--text);
  text-decoration: underline;
  text-decoration-color: rgba(25, 102, 176, 0.72);
  text-underline-offset: 0.18em;
}

@media (max-width: 980px) {
  .privacy-shell {
    grid-template-columns: 1fr;
  }

  .privacy-aside {
    position: static;
  }

  .privacy-summary {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-left: 1px solid var(--line);
  }

  .privacy-summary li {
    padding: 16px;
    border-right: 1px solid var(--line);
  }
}

@media (max-width: 680px) {
  .page-privacy .privacy-hero {
    min-height: 356px;
    display: flex;
    align-items: flex-end;
    padding: 104px 16px 74px;
  }

  .page-privacy .pkg-hero-shell {
    gap: 14px;
  }

  .page-privacy .pkg-eyebrow {
    justify-content: center;
    gap: 9px;
    font-size: 10px;
    letter-spacing: 0.16em;
  }

  .page-privacy .pkg-hero-title {
    line-height: 0.96;
  }

  .page-privacy .pkg-hero-line:first-child {
    font-size: clamp(34px, 9.8vw, 44px);
  }

  .page-privacy .pkg-hero-line:last-child {
    margin-top: 0.03em;
    font-size: clamp(43px, 12.2vw, 56px);
  }

  .page-privacy .pkg-hero-lead {
    max-width: 35ch;
    font-size: 13.25px;
    line-height: 1.52;
  }

  .privacy-section {
    padding: 54px 16px 72px;
  }

  .privacy-shell {
    gap: 28px;
  }

  .privacy-aside {
    gap: 14px;
  }

  .privacy-summary,
  .privacy-block {
    grid-template-columns: 1fr;
  }

  .privacy-summary li {
    gap: 6px;
    padding: 13px 14px;
  }

  .privacy-summary span {
    font-size: 10px;
    letter-spacing: 0.16em;
  }

  .privacy-summary strong,
  .privacy-summary a {
    font-size: clamp(15px, 4.65vw, 18px);
    line-height: 1.06;
  }

  .privacy-note {
    font-size: 12px;
    line-height: 1.55;
  }

  .privacy-content-head h2 {
    max-width: 100%;
    font-size: clamp(28px, 8.4vw, 44px);
  }

  .privacy-block {
    gap: 12px;
  }
}

.pkg-useme-icon {
  flex-shrink: 0;
  color: oklch(58% 0.18 240);
  opacity: 0.7;
}

.pkg-useme-text {
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
  color: var(--quiet);
}

.pkg-useme-link {
  color: oklch(58% 0.18 240);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.pkg-useme-link:hover {
  opacity: 0.8;
}

.pkg-faq-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.pkg-faq-item {
  display: grid;
  gap: 12px;
  min-height: 190px;
  padding: clamp(22px, 2.4vw, 36px);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.pkg-faq-item:nth-child(2n) {
  border-right: 0;
}

.pkg-faq-item:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.pkg-faq-item h3 {
  margin: 0;
  color: var(--text);
  font-family: var(--font-display);
  font-size: clamp(19px, 1.7vw, 26px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}

.pkg-faq-item p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

@media (min-width: 901px) and (max-width: 1100px) {
  .pkg-faq {
    padding: 56px clamp(28px, 5vw, 52px);
    scroll-margin-top: 132px;
  }

  .pkg-faq-shell {
    gap: 30px;
  }

  .pkg-faq .pkg-mini-head {
    max-width: 58ch;
    gap: 12px;
  }

  .pkg-faq .pkg-mini-title {
    font-size: clamp(40px, 4.4vw, 50px);
    line-height: 0.96;
  }

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

  .pkg-faq-item {
    gap: 8px;
    min-height: 0;
    padding: 22px 24px;
  }

  .pkg-faq-item h3 {
    font-size: 19px;
    line-height: 1.08;
  }

  .pkg-faq-item p {
    font-size: 13.5px;
    line-height: 1.5;
  }
}

@media (max-width: 900px) {
  .pkg-hero-line-main {
    font-size: clamp(36px, 6.2vw, 56px);
  }

  .pkg-hero-line-strong {
    font-size: clamp(42px, 7.6vw, 68px);
  }

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

  .pkg-included-grid li:nth-child(2n),
  .pkg-compare-item:nth-child(2n) {
    border-right: 0;
  }

  .pkg-included-grid li:nth-child(-n + 2),
  .pkg-compare-item:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .pkg-system-examples {
    grid-template-columns: 1fr;
  }

  .pkg-system-example-list {
    grid-template-columns: 1fr;
  }

  .pkg-system-tile {
    min-height: 240px;
  }

  .pkg-rush-shell {
    grid-template-columns: 1fr;
  }

  .pkg-rush-terms {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
  }

  .pkg-rush {
    padding: 40px 16px 36px;
  }

  .pkg-rush-shell {
    gap: 14px;
  }

  .pkg-rush-kicker,
  .pkg-rush-terms span {
    font-size: 10px;
    letter-spacing: 0.12em;
  }

  .pkg-rush-main {
    gap: 6px;
  }

  .pkg-rush-title {
    font-size: clamp(28px, 8.7vw, 36px);
    line-height: 0.96;
  }

  .pkg-rush-lead {
    font-size: 13px;
    line-height: 1.5;
  }

  .pkg-rush-terms span {
    padding: 8px 10px;
  }

  .pkg-rush-link {
    width: auto;
    min-height: 42px;
    padding: 0 16px;
    font-size: 12px;
  }

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

  .pkg-card-head {
    padding: 28px 20px 20px;
    border-right: none;
    border-bottom: 1px solid var(--line);
  }

  .pkg-card-features {
    padding: 24px 20px;
    grid-template-columns: 1fr;
    border-right: none;
    border-bottom: 1px solid var(--line);
  }

  .pkg-card-foot {
    padding: 24px 20px;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .pkg-system-body {
    grid-template-columns: 1fr;
  }

  .pkg-system-caps {
    border-right: none;
    border-bottom: 1px solid var(--line);
  }

  .pkg-system-caps li {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 20px 0;
  }

  .pkg-system-cta {
    padding: 28px 0 0;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .pkg-hosting-card {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 24px 0;
  }

  .pkg-hosting-name,
  .pkg-hosting-desc {
    padding: 0;
    border: none;
  }

  .pkg-hosting-price {
    padding: 0;
  }
}

@media (min-width: 601px) and (max-width: 900px) {
  .pkg-hero {
    padding: 152px clamp(28px, 4vw, 40px) 64px;
  }


  .pkg-hero-shell {
    gap: 22px;
  }

  .pkg-hero-title {
    width: 100%;
    font-size: clamp(48px, 6.6vw, 58px);
    line-height: 0.94;
  }

  .pkg-hero-line {
    flex-wrap: nowrap;
    white-space: nowrap;
  }

  .pkg-hero-line:last-child {
    margin-top: 0.02em;
    letter-spacing: -0.03em;
  }

  .pkg-hero-lead {
    max-width: 48ch;
    font-size: 14px;
    line-height: 1.55;
  }

  .pkg-jumps {
    gap: 8px;
    margin-top: 4px;
  }

  .pkg-jump {
    padding: 7px 12px;
    font-size: 10px;
    letter-spacing: 0.08em;
  }

  .pkg-rush {
    padding: 48px clamp(28px, 4vw, 40px) 42px;
  }

  .pkg-rush-shell {
    grid-template-columns: minmax(0, 1fr);
    gap: 14px;
  }

  .pkg-rush-kicker {
    grid-row: auto;
    justify-self: start;
    align-self: auto;
    font-size: 10px;
    letter-spacing: 0.12em;
  }

  .pkg-rush-main {
    grid-column: auto;
    grid-row: auto;
    gap: 6px;
    max-width: 56ch;
  }

  .pkg-rush-title {
    font-size: clamp(38px, 5.6vw, 46px);
    line-height: 0.96;
  }

  .pkg-rush-lead {
    max-width: 48ch;
    font-size: 13px;
    line-height: 1.5;
  }

  .pkg-rush-terms {
    grid-column: auto;
    grid-row: auto;
    justify-self: stretch;
    align-self: auto;
    width: 100%;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
  }

  .pkg-rush-terms span {
    padding: 9px 10px;
    font-size: 10px;
    line-height: 1.18;
    letter-spacing: 0.1em;
  }

  .pkg-rush-link {
    grid-column: auto;
    grid-row: auto;
    justify-self: start;
    width: auto;
    min-width: 190px;
    min-height: 42px;
    padding: 0 18px;
    font-size: 12px;
  }

  .pkg-included {
    padding: 58px clamp(28px, 4vw, 40px) 54px;
  }

  .pkg-included-shell {
    gap: 30px;
  }

  .pkg-included .pkg-mini-head {
    gap: 12px;
    max-width: 58ch;
  }

  #pkg-included-title {
    font-size: clamp(42px, 5.6vw, 50px);
    line-height: 0.96;
  }

  .pkg-included .pkg-mini-desc {
    max-width: 52ch;
    font-size: 14px;
    line-height: 1.52;
  }

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

  .pkg-included-grid li {
    gap: 8px;
    min-height: 0;
    padding: 22px 24px;
  }

  .pkg-included-grid li:nth-child(2n) {
    border-right: 0;
  }

  .pkg-included-grid li:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .pkg-included-kicker {
    font-size: 11px;
  }

  .pkg-included-grid strong {
    font-size: 18px;
    line-height: 1.08;
  }

  .pkg-included-grid p {
    font-size: 13.25px;
    line-height: 1.5;
  }

  .pkg-section {
    padding: 58px clamp(28px, 4vw, 40px);
  }

  .pkg-section-shell {
    gap: 28px;
  }

  .pkg-section-head {
    grid-template-columns: 64px minmax(0, 1fr);
    column-gap: 18px;
    row-gap: 8px;
  }

  .pkg-section-num {
    font-size: 54px;
  }

  .pkg-section-title {
    font-size: clamp(40px, 5.4vw, 48px);
    line-height: 0.96;
  }

  .pkg-section-desc {
    max-width: 48ch;
    font-size: 14px;
    line-height: 1.52;
  }

  .pkg-cards {
    gap: 14px;
    border-top: 0;
  }

  .pkg-card,
  .pkg-card-featured {
    grid-template-columns: 1fr;
    border: 1px solid var(--line);
  }

  .pkg-card-featured {
    box-shadow: inset 0 0 0 1px oklch(58% 0.18 240 / 0.24);
  }

  .pkg-card-head {
    gap: 6px;
    padding: 20px 22px 16px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .pkg-card-name {
    font-size: clamp(30px, 4.4vw, 36px);
    line-height: 0.96;
  }

  .pkg-card-tagline {
    font-size: 13px;
    line-height: 1.25;
  }

  .pkg-card-fit {
    display: -webkit-box;
    max-width: none;
    margin-top: 6px;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    font-size: 13px;
    line-height: 1.42;
  }

  .pkg-card-features {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 7px;
    padding: 14px 22px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .pkg-card-features li {
    display: block;
    padding: 6px 8px;
    border: 1px solid oklch(58% 0.18 240 / 0.18);
    background: oklch(58% 0.18 240 / 0.045);
    color: var(--steel);
    font-size: 10px;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: 0.025em;
    text-transform: uppercase;
  }

  .pkg-card-features li::before {
    display: none;
  }

  .pkg-card-foot {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 14px 22px 16px;
  }

  .pkg-card-pricing {
    min-width: 0;
  }

  .pkg-card-price {
    font-size: 24px;
  }

  .pkg-card-time {
    font-size: 11px;
  }

  .pkg-card-foot .button {
    flex: 0 0 auto;
    width: auto;
    min-height: 42px;
    padding: 0 14px;
    font-size: 11px;
    letter-spacing: 0.055em;
  }

  .pkg-card-foot .button span {
    width: 8px;
    height: 8px;
  }

  .pkg-system-body {
    grid-template-columns: 1fr;
    gap: 0;
    border-top: 1px solid var(--line);
  }

  .pkg-system-caps {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    padding: 14px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .pkg-system-caps li {
    grid-template-columns: 1fr;
    gap: 5px;
    min-height: 94px;
    padding: 11px 12px;
    border: 1px solid oklch(58% 0.18 240 / 0.18);
    background: oklch(58% 0.18 240 / 0.045);
  }

  .pkg-system-cap-label {
    font-size: 11px;
    line-height: 1.12;
    letter-spacing: 0.04em;
  }

  .pkg-system-caps li p {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    font-size: 11px;
    line-height: 1.32;
  }

  .pkg-system-cta {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 16px;
    padding: 14px 0 0;
  }

  .pkg-system-cta-note {
    max-width: 26ch;
    font-size: 13px;
    line-height: 1.35;
  }

  .pkg-system-cta .button {
    flex: 0 0 auto;
    width: auto;
    min-height: 42px;
    padding: 0 14px;
    font-size: 11px;
    letter-spacing: 0.055em;
  }

  .pkg-system-cta .button span {
    width: 8px;
    height: 8px;
  }

  .pkg-system-examples {
    padding-top: 0;
  }

  .pkg-system-example-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
  }

  .pkg-system-tile {
    gap: 8px;
    min-height: 184px;
    padding: 16px 14px;
  }

  .pkg-system-tile span {
    font-size: 32px;
    line-height: 0.9;
    text-shadow: 0 0 16px oklch(58% 0.18 240 / 0.16);
  }

  .pkg-system-tile h3 {
    font-size: clamp(21px, 3vw, 24px);
    line-height: 0.98;
  }

  .pkg-system-tile p {
    display: -webkit-box;
    max-width: none;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    font-size: 12px;
    line-height: 1.4;
  }

  .pkg-compare {
    padding: 58px clamp(28px, 4vw, 40px) 54px;
  }

  .pkg-compare-shell {
    gap: 28px;
  }

  .pkg-compare .pkg-mini-head {
    gap: 12px;
    max-width: 58ch;
  }

  .pkg-compare .pkg-mini-title {
    font-size: clamp(38px, 5.2vw, 46px);
    line-height: 0.96;
  }

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

  .pkg-compare-item {
    gap: 8px;
    min-height: 0;
    padding: 20px 22px;
    background: oklch(18% 0.01 240 / 0.16);
  }

  .pkg-compare-item:nth-child(2n) {
    border-right: 0;
  }

  .pkg-compare-item:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .pkg-compare-label {
    font-size: 10px;
    letter-spacing: 0.12em;
  }

  .pkg-compare-item h3 {
    font-size: 24px;
    line-height: 1;
  }

  .pkg-compare-item p {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    font-size: 13px;
    line-height: 1.42;
  }

  .pkg-compare-item ul {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 2px;
  }

  .pkg-compare-item li {
    display: block;
    padding: 5px 7px;
    border: 1px solid oklch(58% 0.18 240 / 0.18);
    background: oklch(58% 0.18 240 / 0.045);
    color: var(--steel);
    font-size: 9px;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: 0.025em;
    text-transform: uppercase;
  }

  .pkg-compare-item li::before {
    display: none;
  }

  .pkg-hosting {
    padding: 58px clamp(28px, 4vw, 40px) 48px;
  }

  .pkg-hosting-shell {
    gap: 28px;
  }

  .pkg-hosting-head {
    grid-template-columns: 64px minmax(0, 1fr);
    column-gap: 18px;
    row-gap: 8px;
  }

  .pkg-hosting-cards {
    gap: 10px;
    border-top: 0;
  }

  .pkg-hosting-card {
    grid-template-columns: 42px minmax(0, 1fr) auto;
    grid-template-rows: auto auto;
    gap: 5px 14px;
    padding: 16px 18px;
    border: 1px solid var(--line);
    background: linear-gradient(180deg, oklch(20% 0.01 240 / 0.16), oklch(12% 0.008 240 / 0.26));
  }

  .pkg-hosting-num {
    display: block;
    grid-row: 1 / span 2;
    align-self: center;
    font-size: 30px;
    line-height: 0.9;
    letter-spacing: -0.02em;
    color: oklch(58% 0.18 240 / 0.18);
    -webkit-text-stroke: 1px oklch(62% 0.2 240 / 0.62);
  }

  .pkg-hosting-name {
    padding: 0;
    border: 0;
    font-size: 22px;
    line-height: 0.98;
  }

  .pkg-hosting-desc {
    display: -webkit-box;
    grid-column: 2;
    padding: 0;
    overflow: hidden;
    border: 0;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    font-size: 12.5px;
    line-height: 1.4;
  }

  .pkg-hosting-price {
    grid-row: 1 / span 2;
    grid-column: 3;
    align-self: center;
    min-width: 128px;
    padding: 0;
    font-size: 20px;
    line-height: 1;
    text-align: right;
  }

  .pkg-hosting-price span {
    display: block;
    margin-top: 3px;
    font-size: 10px;
  }

  .pkg-faq {
    padding: 58px clamp(28px, 4vw, 40px) 54px;
    scroll-margin-top: 132px;
  }

  .pkg-faq-shell {
    gap: 28px;
  }

  .pkg-faq .pkg-mini-head {
    gap: 12px;
    max-width: 58ch;
  }

  .pkg-faq .pkg-mini-title {
    font-size: clamp(38px, 5.2vw, 46px);
    line-height: 0.96;
  }

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

  .pkg-faq-item {
    gap: 8px;
    min-height: 0;
    padding: 20px 22px;
  }

  .pkg-faq-item:nth-child(2n) {
    border-right: 0;
  }

  .pkg-faq-item:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .pkg-faq-item h3 {
    font-size: 19px;
    line-height: 1.08;
  }

  .pkg-faq-item p {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    font-size: 13px;
    line-height: 1.42;
  }
}

@media (max-width: 600px) {
  .pkg-rush-terms {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .pkg-hero {
    padding: 100px 12px 56px;
  }

  .pkg-hero-shell {
    gap: 22px;
  }

  .pkg-eyebrow {
    gap: 9px;
    font-size: 10px;
    letter-spacing: 0.16em;
  }

  .pkg-eyebrow-mark {
    width: 8px;
    height: 8px;
  }

  .pkg-hero-title {
    width: 100%;
    line-height: 0.94;
  }

  .pkg-hero-line {
    flex-wrap: nowrap;
    white-space: nowrap;
  }

  .pkg-hero-line:first-child {
    font-size: clamp(32px, 9.3vw, 44px);
  }

  .pkg-hero-line:last-child {
    margin-top: 0.02em;
    font-size: clamp(46px, 13.8vw, 66px);
    letter-spacing: -0.03em;
  }

  .pkg-hero-line-main {
    font-size: clamp(28px, 8.2vw, 36px);
  }

  .pkg-hero-line-strong {
    font-size: clamp(34px, 10.6vw, 48px);
  }

  .pkg-hero-lead {
    font-size: 13px;
    line-height: 1.5;
  }

  .pkg-jumps {
    gap: 8px;
    margin-top: 6px;
  }

  .pkg-jump {
    padding: 7px 12px;
    font-size: 10px;
    letter-spacing: 0.08em;
  }

  .pkg-included {
    padding: 50px 16px 48px;
  }

  .pkg-included-shell {
    gap: 22px;
  }

  .pkg-included .pkg-mini-head {
    gap: 12px;
    max-width: 100%;
  }

  #pkg-included-title {
    font-size: clamp(30px, 8.7vw, 40px);
    line-height: 0.96;
  }

  .pkg-included .pkg-mini-desc {
    max-width: 44ch;
    font-size: 13px;
    line-height: 1.5;
  }

  .pkg-included-grid,
  .pkg-compare-grid,
  .pkg-faq-list {
    grid-template-columns: 1fr;
  }

  .pkg-included-grid li,
  .pkg-compare-item,
  .pkg-faq-item,
  .pkg-faq-item:nth-child(2n) {
    border-right: 0;
  }

  .pkg-included-grid li,
  .pkg-compare-item,
  .pkg-faq-item,
  .pkg-faq-item:nth-last-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .pkg-included-grid li:last-child,
  .pkg-compare-item:last-child,
  .pkg-faq-item:last-child {
    border-bottom: 0;
  }

  .pkg-compare {
    padding: 48px 16px 40px;
  }

  .pkg-compare-shell {
    gap: 22px;
  }

  .pkg-mini-head {
    gap: 10px;
  }

  .pkg-mini-title {
    font-size: clamp(30px, 8.7vw, 40px);
    line-height: 0.96;
  }

  .pkg-mini-desc {
    font-size: 13px;
    line-height: 1.5;
  }

  .pkg-compare-item {
    gap: 8px;
    min-height: 0;
    padding: 18px 0;
    background: transparent;
  }

  .pkg-compare-label {
    font-size: 10px;
    letter-spacing: 0.12em;
  }

  .pkg-compare-item h3 {
    font-size: 20px;
  }

  .pkg-compare-item p {
    font-size: 13px;
    line-height: 1.5;
  }

  .pkg-compare-item ul {
    gap: 5px;
    margin-top: 2px;
  }

  .pkg-compare-item li {
    font-size: 12px;
    line-height: 1.35;
    gap: 8px;
  }

  .pkg-faq {
    padding: 48px 16px 40px;
  }

  .pkg-faq-shell {
    gap: 22px;
  }

  .pkg-faq-item {
    gap: 6px;
    min-height: 0;
    padding: 16px 0;
  }

  .pkg-faq-item h3 {
    font-size: 16px;
    line-height: 1.2;
  }

  .pkg-faq-item p {
    font-size: 13px;
    line-height: 1.5;
  }

  .pkg-included-grid li {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 4px 14px;
    min-height: 0;
    padding: 14px 0;
  }

  .pkg-included-kicker {
    grid-row: 1 / span 2;
    align-self: center;
    font-size: 24px;
    line-height: 0.9;
    letter-spacing: -0.02em;
    color: oklch(58% 0.18 240 / 0.18);
    -webkit-text-stroke: 1px oklch(62% 0.2 240 / 0.62);
  }

  .pkg-included-grid strong {
    font-size: clamp(15px, 4.4vw, 17px);
    line-height: 1.05;
    letter-spacing: 0;
  }

  .pkg-included-grid p {
    font-size: 12px;
    line-height: 1.45;
  }

  .pkg-section-head,
  .pkg-hosting-head {
    grid-template-columns: 1fr;
  }

  .pkg-section {
    padding: 50px 16px;
  }

  .pkg-section-shell {
    gap: 22px;
  }

  .pkg-section-head {
    row-gap: 8px;
  }

  .pkg-section-num {
    display: none;
  }

  .pkg-section-title {
    font-size: clamp(30px, 8.7vw, 40px);
    line-height: 0.96;
  }

  .pkg-section-desc {
    max-width: 44ch;
    font-size: 13px;
    line-height: 1.5;
  }

  .pkg-cards {
    gap: 12px;
    border-top: 0;
  }

  .pkg-card,
  .pkg-card-featured {
    border: 1px solid var(--line);
  }

  .pkg-card-featured {
    box-shadow: inset 0 0 0 1px oklch(58% 0.18 240 / 0.24);
  }

  .pkg-card-head {
    gap: 5px;
    padding: 15px 14px 12px;
    border-bottom: 1px solid var(--line);
  }

  .pkg-card-name {
    font-size: clamp(23px, 6.8vw, 29px);
    line-height: 0.96;
  }

  .pkg-card-tagline {
    font-size: 12px;
    line-height: 1.25;
  }

  .pkg-card-fit {
    display: -webkit-box;
    max-width: none;
    margin-top: 5px;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    font-size: 12px;
    line-height: 1.4;
  }

  .pkg-card-features {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
    padding: 12px 14px;
    border-bottom: 1px solid var(--line);
  }

  .pkg-card-features li {
    display: block;
    padding: 5px 6px;
    border: 1px solid oklch(58% 0.18 240 / 0.18);
    background: oklch(58% 0.18 240 / 0.045);
    color: var(--steel);
    font-size: 8.5px;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: 0.02em;
    text-transform: uppercase;
  }

  .pkg-card-features li::before {
    display: none;
  }

  .pkg-card-foot {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 14px 14px;
  }

  .pkg-card-pricing {
    min-width: 0;
  }

  .pkg-card-price {
    font-size: 20px;
  }

  .pkg-card-time {
    font-size: 10px;
  }

  .pkg-card-foot .button {
    flex: 0 0 auto;
    width: auto;
    min-height: 42px;
    padding: 0 11px;
    font-size: 10px;
    letter-spacing: 0.055em;
  }

  .pkg-card-foot .button span {
    width: 8px;
    height: 8px;
  }

  .pkg-system-caps {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
    border-right: 0;
    border-bottom: 0;
  }

  .pkg-system-body {
    gap: 0;
    border-top: 1px solid var(--line);
  }

  .pkg-system-caps li {
    grid-template-columns: 1fr;
    gap: 4px;
    min-height: 82px;
    padding: 8px 7px;
    border: 1px solid oklch(58% 0.18 240 / 0.18);
    background: oklch(58% 0.18 240 / 0.045);
  }

  .pkg-system-cap-label {
    font-size: 10px;
    line-height: 1.1;
    letter-spacing: 0.035em;
    color: var(--text);
  }

  .pkg-system-caps li p {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    font-size: 10px;
    line-height: 1.3;
  }

  .pkg-system-cta {
    display: grid;
    grid-template-columns: minmax(0, 86px) minmax(0, 1fr);
    flex-direction: row;
    align-items: center;
    gap: 12px;
    padding: 13px 0 0;
  }

  .pkg-system-cta-note {
    max-width: 15ch;
    font-size: 12px;
    line-height: 1.35;
  }

  .pkg-system-cta .button {
    flex: 0 0 auto;
    width: 100%;
    min-width: 0;
    min-height: 42px;
    padding: 0 11px;
    font-size: 10px;
    letter-spacing: 0.055em;
  }

  .pkg-system-cta .button span {
    width: 8px;
    height: 8px;
  }

  .pkg-system-examples {
    padding-top: 0;
  }

  .pkg-system-example-list {
    gap: 10px;
  }

  .pkg-system-tile {
    grid-template-columns: 42px minmax(0, 1fr);
    grid-template-rows: auto auto;
    gap: 4px 12px;
    min-height: 0;
    padding: 14px 13px;
  }

  .pkg-system-tile span {
    grid-row: 1 / span 2;
    align-self: center;
    font-size: 24px;
    line-height: 0.9;
    text-shadow: 0 0 16px oklch(58% 0.18 240 / 0.16);
  }

  .pkg-system-tile h3 {
    font-size: clamp(18px, 5.2vw, 22px);
    line-height: 0.98;
  }

  .pkg-system-tile p {
    display: -webkit-box;
    max-width: none;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    font-size: 12px;
    line-height: 1.4;
  }

  .pkg-card-foot {
    flex-direction: row;
    align-items: center;
  }

  .pkg-card-foot .button {
    width: auto;
  }

  .pkg-hosting {
    padding: 50px 16px 42px;
  }

  .pkg-hosting-shell {
    gap: 22px;
  }

  .pkg-hosting-cards {
    gap: 10px;
    border-top: 0;
  }

  .pkg-hosting-card {
    grid-template-columns: 34px minmax(0, 1fr);
    grid-template-rows: auto auto auto;
    gap: 4px 12px;
    padding: 13px;
    border: 1px solid var(--line);
    background: linear-gradient(180deg, oklch(20% 0.01 240 / 0.16), oklch(12% 0.008 240 / 0.26));
  }

  .pkg-hosting-num {
    display: block;
    grid-row: 1 / span 3;
    align-self: center;
    font-size: 24px;
    line-height: 0.9;
    letter-spacing: -0.02em;
    color: oklch(58% 0.18 240 / 0.18);
    -webkit-text-stroke: 1px oklch(62% 0.2 240 / 0.62);
  }

  .pkg-hosting-name {
    padding: 0;
    border: 0;
    font-size: clamp(18px, 5.2vw, 22px);
    line-height: 0.98;
  }

  .pkg-hosting-desc {
    display: -webkit-box;
    padding: 0;
    overflow: hidden;
    border: 0;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    font-size: 12px;
    line-height: 1.4;
  }

  .pkg-hosting-price {
    padding: 0;
    font-size: 18px;
    line-height: 1;
  }

  .pkg-hosting-price span {
    font-size: 10px;
  }
}


.site-footer {
  position: relative;
  z-index: 1;
  width: 100%;
  margin: 0;
  border-top: 0;
  background: transparent;
}

.site-footer::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  border-top: 1px solid var(--line);
  background: rgba(5, 8, 11, 0.9);
}

.site-footer-shell {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(420px, 1.1fr);
  align-items: start;
  column-gap: clamp(32px, 6vw, 96px);
  row-gap: 36px;
  width: min(1800px, calc(100% - clamp(36px, 8vw, 128px)));
  margin: 0 auto;
  padding: 32px 0 24px;
}

.site-footer-brand {
  display: grid;
  gap: 12px;
  align-content: start;
  max-width: 420px;
}

.site-footer-brand .brand {
  pointer-events: auto;
}

.site-footer-brand-mark {
  width: 48px;
  height: 48px;
}

.site-footer-logo {
  width: 42px;
  height: 42px;
}

.site-footer-copy {
  max-width: 360px;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.45;
}

.site-footer-social {
  display: flex;
  gap: 8px;
  margin-top: 4px;
}

.site-footer-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--muted);
  transition:
    color 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.site-footer-social-link:hover,
.site-footer-social-link:focus-visible {
  color: var(--text);
  border-color: var(--steel);
  background: rgba(255, 255, 255, 0.04);
  outline: none;
}

.site-footer-nav {
  display: grid;
  grid-template-columns: repeat(3, minmax(120px, 1fr));
  gap: clamp(24px, 4vw, 72px);
  justify-self: end;
  width: min(780px, 100%);
}

.site-footer-group {
  display: grid;
  align-content: start;
  gap: 12px;
}

.site-footer-heading {
  margin: 0;
  color: var(--steel);
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.site-footer-list {
  display: grid;
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.site-footer-list a,
.site-footer-list span {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.35;
}

.site-footer-list a {
  transition:
    color 180ms ease,
    transform 180ms ease;
}

.site-footer-list a:hover,
.site-footer-list a:focus-visible {
  color: var(--text);
  outline: none;
  transform: translateX(3px);
}

.site-footer-meta {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px 24px;
  padding-top: 16px;
  margin: 0;
  border-top: 1px solid var(--line);
  color: var(--quiet);
  font-size: 13px;
  line-height: 1.4;
}

.site-footer-legal {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px 20px;
}

.site-footer-legal a,
.site-footer-cookie-btn {
  color: var(--quiet);
  font-size: 13px;
  line-height: 1.4;
  text-decoration: none;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font-family: inherit;
  transition: color 180ms ease;
}

.site-footer-legal a:hover,
.site-footer-legal a:focus-visible,
.site-footer-cookie-btn:hover,
.site-footer-cookie-btn:focus-visible {
  color: var(--text);
  outline: none;
}


.process {
  --accent: oklch(58% 0.18 240);
  position: relative;
  z-index: 1;
  padding: clamp(72px, 9vw, 132px) clamp(18px, 4vw, 64px) clamp(72px, 10vw, 140px);
  isolation: isolate;
}

.process::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: min(1800px, calc(100% - clamp(36px, 8vw, 128px)));
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line), transparent);
  transform: translateX(-50%);
}

.process-shell {
  width: min(1800px, 100%);
  margin: 0 auto;
}

.process-head {
  display: grid;
  gap: clamp(20px, 3vw, 36px);
  margin-bottom: clamp(56px, 7vw, 96px);
  max-width: 64ch;
}

.process-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin: 0;
  color: var(--steel);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.process-eyebrow-mark {
  display: inline-block;
  width: 10px;
  height: 10px;
  background: var(--accent);
  transform: rotate(45deg);
}

.process-title {
  display: grid;
  margin: 0;
  color: var(--text);
  font-family: var(--font-display);
  font-size: var(--section-rotator-title-size);
  font-weight: 900;
  line-height: 0.94;
  letter-spacing: -0.018em;
  text-transform: uppercase;
}

.process-title > span {
  display: block;
  width: max-content;
  max-width: 100%;
  white-space: nowrap;
}

.process-rotator {
  display: inline-block;
  color: var(--accent);
}

.process-rotator > span {
  display: inline-block;
  white-space: nowrap;
  transition:
    opacity 220ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 220ms cubic-bezier(0.22, 1, 0.36, 1);
}

.process-rotator > span.is-swapping {
  opacity: 0;
  transform: translateY(0.12em);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.process-steps .process-step {
  position: relative;
  display: grid;
  gap: clamp(16px, 1.8vw, 24px);
  padding: clamp(44px, 4.4vw, 64px) clamp(20px, 2.4vw, 36px) clamp(28px, 3vw, 40px) 0;
  border-right: 1px solid var(--line);
  min-height: 0;
}

.process-steps .process-step:first-child {
  padding-left: 0;
}

.process-steps .process-step:last-child {
  border-right: 0;
  padding-right: 0;
}

.process-steps .process-step + .process-step {
  padding-left: clamp(20px, 2.4vw, 36px);
}

.process-step-num {
  font-family: var(--font-display);
  font-size: clamp(36px, 3.8vw, 58px);
  font-weight: 900;
  line-height: 0.85;
  letter-spacing: -0.04em;
  color: oklch(58% 0.18 240 / 0.16);
  -webkit-text-stroke: 1px oklch(62% 0.2 240 / 0.5);
  user-select: none;
  transition:
    color 360ms var(--ease-out-quart),
    -webkit-text-stroke-color 360ms var(--ease-out-quart);
}

.process-step:hover .process-step-num {
  color: var(--accent);
  -webkit-text-stroke-color: transparent;
}

.process-step-body {
  display: grid;
  gap: 10px;
}

.process-step-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(18px, 1.6vw, 24px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--text);
}

.process-step-desc {
  margin: 0;
  color: oklch(76% 0.012 150);
  font-size: clamp(13px, 1vw, 15px);
  line-height: 1.6;
}

@media (min-width: 981px) and (max-width: 1100px) {
  .process {
    padding: 64px clamp(18px, 4vw, 64px) 64px;
  }

  .process-head {
    margin-bottom: 24px;
    gap: 14px;
  }

  .process-steps .process-step {
    padding: 32px clamp(14px, 1.8vw, 22px) 24px 0;
    gap: 14px;
  }

  .process-steps .process-step + .process-step {
    padding-left: clamp(14px, 1.8vw, 22px);
  }

  .process-step-num {
    font-size: 38px;
  }

  .process-step-title {
    font-size: 17px;
  }

  .process-step-desc {
    font-size: 13px;
    line-height: 1.55;
  }
}


.cta-final {
  --accent: oklch(58% 0.18 240);
  position: relative;
  z-index: 1;
  padding: clamp(44px, 5.8vw, 74px) clamp(18px, 4vw, 64px);
  text-align: center;
  isolation: isolate;
  overflow: hidden;
}

.cta-final::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: min(1800px, calc(100% - clamp(36px, 8vw, 128px)));
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line), transparent);
  transform: translateX(-50%);
}

.cta-final-glow {
  position: absolute;
  inset: -20%;
  pointer-events: none;
  background:
    radial-gradient(60% 70% at 50% 60%, oklch(42% 0.14 240 / 0.28) 0%, transparent 65%),
    radial-gradient(40% 50% at 50% 50%, oklch(38% 0.12 240 / 0.14) 0%, transparent 70%);
  animation: cta-pulse 8s ease-in-out infinite;
  filter: blur(2px);
}

@keyframes cta-pulse {
  0%, 100% { opacity: 0.7; }
  50%       { opacity: 1;   }
}

.cta-final-shell {
  position: relative;
  z-index: 1;
  width: min(1280px, 100%);
  margin: 0 auto;
  display: grid;
  justify-items: center;
  gap: clamp(12px, 1.4vw, 18px);
}

.cta-final-eyebrow {
  position: relative;
  display: inline-block;
  align-items: center;
  margin: 0;
  color: var(--steel);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-indent: 0.18em;
  text-transform: uppercase;
  transform: translateX(-0.7em);
}

.cta-final-eyebrow-mark {
  position: absolute;
  display: block;
  top: 50%;
  right: calc(100% + 14px);
  width: 10px;
  height: 10px;
  background: var(--accent);
  transform: translateY(-50%) rotate(45deg);
}

.cta-final-title {
  display: grid;
  margin: 0;
  font-family: var(--font-display);
  font-size: var(--section-rotator-title-size);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--text);
  text-align: center;
}

.cta-final-title > span {
  display: block;
}

.cta-final-rotator {
  display: inline-block;
  color: var(--accent);
}

.cta-final-rotator > span {
  display: inline-block;
  white-space: nowrap;
  transition:
    opacity 220ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 220ms cubic-bezier(0.22, 1, 0.36, 1);
}

.cta-final-rotator > span.is-swapping {
  opacity: 0;
  transform: translateY(0.12em);
}

.cta-final-lead {
  margin: 0;
  max-width: 40ch;
  color: oklch(76% 0.012 150);
  font-size: clamp(14px, 1.05vw, 17px);
  line-height: 1.5;
  letter-spacing: 0.005em;
}

.cta-final-btn {
  margin-top: clamp(4px, 0.7vw, 10px);
  min-width: 188px;
  min-height: 46px;
  padding-top: 3px;
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 0.06em;
  box-shadow: 0 0 0 1px rgba(243, 240, 232, 0.06), 0 18px 48px oklch(42% 0.14 240 / 0.32);
}


.faq {
  --accent: oklch(58% 0.18 240);
  position: relative;
  z-index: 1;
  padding: clamp(72px, 9vw, 132px) clamp(18px, 4vw, 64px) clamp(72px, 10vw, 140px);
  isolation: isolate;
}

.faq::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: min(1800px, calc(100% - clamp(36px, 8vw, 128px)));
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line), transparent);
  transform: translateX(-50%);
}

.faq-shell {
  width: min(1800px, 100%);
  margin: 0 auto;
}

.faq-head {
  display: grid;
  gap: clamp(20px, 3vw, 36px);
  margin-bottom: clamp(48px, 6vw, 80px);
  max-width: 64ch;
}

.faq-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin: 0;
  color: var(--steel);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.faq-eyebrow-mark {
  display: inline-block;
  width: 10px;
  height: 10px;
  background: var(--accent);
  transform: rotate(45deg);
}

.faq-title {
  display: grid;
  margin: 0;
  color: var(--text);
  font-family: var(--font-display);
  font-size: var(--section-rotator-title-size);
  font-weight: 900;
  line-height: 0.94;
  letter-spacing: -0.018em;
  text-transform: uppercase;
}

.faq-title > span {
  display: block;
  width: max-content;
  max-width: 100%;
  white-space: nowrap;
}

.faq-rotator {
  display: inline-block;
  color: var(--accent);
}

.faq-rotator > span {
  display: inline-block;
  white-space: nowrap;
  transition:
    opacity 220ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 220ms cubic-bezier(0.22, 1, 0.36, 1);
}

.faq-rotator > span.is-swapping {
  opacity: 0;
  transform: translateY(0.12em);
}

.faq-list {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item dt {
  margin: 0;
}

.faq-toggle {
  display: grid;
  grid-template-columns: clamp(40px, 4vw, 56px) 1fr auto;
  align-items: center;
  gap: clamp(16px, 2vw, 28px);
  width: 100%;
  padding: clamp(20px, 2.4vw, 28px) 0;
  border: 0;
  background: transparent;
  color: var(--text);
  cursor: pointer;
  text-align: left;
}

.faq-toggle:hover .faq-q-text,
.faq-toggle:focus-visible .faq-q-text {
  color: var(--text);
}

.faq-toggle:hover .faq-num,
.faq-toggle[aria-expanded="true"] .faq-num {
  color: var(--accent);
  -webkit-text-stroke-color: transparent;
}

.faq-toggle:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
  border-radius: 2px;
}

.faq-num {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.2vw, 32px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.02em;
  color: oklch(58% 0.18 240 / 0.18);
  -webkit-text-stroke: 1px oklch(62% 0.2 240 / 0.55);
  transition:
    color 220ms ease,
    -webkit-text-stroke-color 220ms ease;
  user-select: none;
}

.faq-q-text {
  font-family: var(--font-display);
  font-size: clamp(18px, 1.8vw, 26px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: oklch(88% 0.01 150);
  transition: color 180ms ease;
}

.faq-icon {
  position: relative;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: var(--muted);
  transition:
    transform 280ms var(--ease-out-quart),
    opacity 280ms ease;
}

.faq-icon::before {
  width: 14px;
  height: 1.5px;
  transform: translate(-50%, -50%);
}

.faq-icon::after {
  width: 1.5px;
  height: 14px;
  transform: translate(-50%, -50%);
}

.faq-toggle[aria-expanded="true"] .faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}

.faq-a {
  display: grid;
  grid-template-rows: 0fr;
  margin: 0;
  transition: grid-template-rows 360ms var(--ease-out-quart);
}

.faq-a.is-open {
  grid-template-rows: 1fr;
}

.faq-a-inner {
  overflow: hidden;
  min-height: 0;
}

.faq-a p {
  margin: 0;
  padding: 0 0 clamp(20px, 2.4vw, 32px) calc(clamp(40px, 4vw, 56px) + clamp(16px, 2vw, 28px));
  color: oklch(76% 0.012 150);
  font-size: clamp(14px, 1.1vw, 16px);
  line-height: 1.7;
  max-width: 72ch;
}

.faq-a p strong {
  color: var(--text);
  font-weight: 700;
}

.faq-foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: clamp(36px, 4.8vw, 64px);
}

.faq-foot-line {
  margin: 0;
  color: var(--steel);
  font-family: var(--font-display);
  font-size: clamp(16px, 1.4vw, 20px);
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.faq-foot-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 6px 0;
  color: var(--text);
  font-family: var(--font-display);
  font-size: clamp(13px, 1.05vw, 15px);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--line-strong);
  transition:
    border-color 220ms var(--ease-out-quart),
    color 220ms var(--ease-out-quart);
}

.faq-foot-arrow {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform 220ms var(--ease-out-quart);
}

.faq-foot-link:hover,
.faq-foot-link:focus-visible {
  border-color: var(--accent);
  outline: none;
}

.faq-foot-link:hover .faq-foot-arrow,
.faq-foot-link:focus-visible .faq-foot-arrow {
  transform: translateX(4px) rotate(45deg);
}


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

  .dream-hero {
    height: auto;
    min-height: 100svh;
  }

  .nav-mount {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 45;
    display: grid;
    grid-template-rows: auto auto auto;
    align-content: center;
    justify-content: stretch;
    justify-items: center;
    row-gap: 10px;
    width: 100%;
    min-height: 100dvh;
    max-height: 100dvh;
    padding: clamp(86px, 12svh, 104px) clamp(18px, 6vw, 32px) max(28px, env(safe-area-inset-bottom));
    background:
      radial-gradient(120% 80% at 100% 0%, rgba(25, 102, 176, 0.2) 0%, transparent 60%),
      linear-gradient(180deg, rgba(5, 8, 11, 0.985) 0%, rgba(5, 8, 11, 0.995) 100%);
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
    border-bottom: 1px solid rgba(243, 240, 232, 0.08);
    transform: translateY(-101%);
    transition: transform 420ms cubic-bezier(0.2, 0.7, 0.2, 1);
    pointer-events: none;
    overflow-y: auto;
    overscroll-behavior: contain;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.45);
  }

  .nav-mount::before {
    content: "";
    grid-row: 1;
    justify-self: center;
    width: 64px;
    height: 2px;
    margin: 0 auto 6px;
    background: linear-gradient(90deg, transparent, var(--rust), transparent);
    opacity: 0;
    transform: translateY(-6px);
    transition: opacity 320ms ease 160ms, transform 320ms ease 160ms;
  }

  .nav-mount.is-open {
    transform: translateY(0);
    pointer-events: auto;
  }

  .nav-mount.is-open::before {
    opacity: 1;
    transform: translateY(0);
  }

  .site-nav {
    grid-row: 2;
    display: grid;
    align-items: center;
    justify-self: center;
    width: min(312px, 100%);
    gap: 6px;
    margin: 0 auto;
    padding: 0;
  }

  .site-nav a {
    flex-direction: column;
    justify-content: center;
    min-height: 54px;
    width: 100%;
    padding: 8px 18px;
    border: 1px solid transparent;
    border-radius: 8px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 1.8px;
    text-align: center;
    background: rgba(243, 240, 232, 0.018);
    opacity: 0;
    transform: translateY(-10px);
    transition:
      background 180ms ease,
      border-color 180ms ease,
      color 180ms ease,
      opacity 280ms ease,
      transform 360ms cubic-bezier(0.2, 0.7, 0.2, 1);
  }

  .site-nav a.is-active {
    border-color: rgba(25, 102, 176, 0.34);
    color: var(--text);
    background: rgba(25, 102, 176, 0.08);
  }

  .site-nav a:hover,
  .site-nav a:focus-visible {
    border-color: rgba(243, 240, 232, 0.16);
    color: var(--text);
    background: rgba(243, 240, 232, 0.045);
    transform: none;
  }

  .nav-link-desc {
    display: block;
    max-width: 25ch;
    margin-top: 3px;
    color: rgba(167, 172, 164, 0.78);
    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: 0;
    text-transform: none;
  }

  .site-nav a::before {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -2px;
    width: 0;
    height: 2px;
    background: var(--rust);
    opacity: 0;
    transform: translateX(-50%);
    transition: width 220ms ease, opacity 220ms ease;
  }

  .site-nav a::after {
    display: none;
  }

  .site-nav a.is-active::before,
  .site-nav a:hover::before,
  .site-nav a:focus-visible::before {
    width: 34px;
    opacity: 1;
  }

  .nav-mount.is-open .site-nav a {
    opacity: 1;
    transform: translateY(0);
  }

  .nav-mount.is-open .site-nav a:nth-child(1) { transition-delay: 80ms; }
  .nav-mount.is-open .site-nav a:nth-child(2) { transition-delay: 130ms; }
  .nav-mount.is-open .site-nav a:nth-child(3) { transition-delay: 180ms; }
  .nav-mount.is-open .site-nav a:nth-child(4) { transition-delay: 230ms; }
  .nav-mount.is-open .site-nav a:nth-child(5) { transition-delay: 280ms; }
  .nav-mount.is-open .site-nav a:nth-child(6) { transition-delay: 330ms; }

  .nav-toggle {
    position: relative;
    display: inline-grid;
    justify-self: end;
    width: 48px;
    height: 48px;
    place-items: center;
    padding: 0;
    border: 1px solid rgba(243, 240, 232, 0.1);
    border-radius: 10px;
    background: rgba(5, 8, 11, 0.4);
    z-index: 60;
    transition: border-color 200ms ease, background 200ms ease;
  }

  .nav-toggle:hover,
  .nav-toggle[aria-expanded="true"] {
    border-color: rgba(243, 240, 232, 0.25);
    background: rgba(25, 102, 176, 0.18);
  }

  .nav-toggle-line {
    position: absolute;
    left: 50%;
    width: 22px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transform-origin: center;
    transform: translateX(-50%);
    transition: transform 280ms cubic-bezier(0.2, 0.7, 0.2, 1), opacity 200ms ease, top 280ms cubic-bezier(0.2, 0.7, 0.2, 1);
  }

  .nav-toggle-line:nth-child(1) { top: 16px; }
  .nav-toggle-line:nth-child(2) { top: 23px; }
  .nav-toggle-line:nth-child(3) { top: 30px; }

  .nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(1) {
    top: 23px;
    transform: translateX(-50%) rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(2) {
    opacity: 0;
    transform: translateX(-50%) scaleX(0);
  }

  .nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(3) {
    top: 23px;
    transform: translateX(-50%) rotate(-45deg);
  }

  .nav-mount .nav-action {
    grid-row: 3;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    justify-self: center;
    gap: 14px;
    min-height: 54px;
    width: min(220px, 100%);
    margin-top: 12px;
    padding: 0 18px;
    color: var(--text);
    font-size: 12px;
    letter-spacing: 0.7px;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 320ms ease, transform 360ms cubic-bezier(0.2, 0.7, 0.2, 1);
  }

  .nav-mount.is-open .nav-action {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 380ms;
  }

  body.has-nav-open {
    overflow: hidden;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .hero-content {
    padding-top: 18px;
  }

  .hero-stage {
    max-width: 720px;
  }

  .scope-list {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .scope-row,
  .scope-row + .scope-row {
    padding: 0;
    border-left: none;
    padding-bottom: 20px;
    border-bottom: 1px solid oklch(88% 0.008 150 / 0.1);
  }

  .scope-row:last-child {
    padding-bottom: 0;
    border-bottom: none;
  }

  .scope-row dd {
    padding-left: 0;
  }

  .scope-row {
    align-items: flex-start;
  }

  .production-shell {
    grid-template-columns: 1fr;
  }

  .production-copy p:last-child {
    max-width: 620px;
  }

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

  .process-intro {
    align-self: start;
    max-width: 680px;
  }

  .process-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 42px;
  }

  .process-steps li:nth-child(odd) {
    padding-left: 0;
    border-left: 0;
  }

  .process-steps li:nth-child(odd)::before {
    left: 0;
  }

  .manifest-list {
    grid-template-columns: 1fr;
  }

  .proof-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .proof-case-feature {
    grid-row: auto;
    grid-template-rows: minmax(220px, 38%) 1fr;
  }

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

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

  .process-step {
    padding-right: clamp(20px, 2.4vw, 36px);
  }

  .process-step:nth-child(even) {
    border-right: 0;
  }

  .process-step:nth-child(odd) {
    padding-left: 0;
  }

  .process-step:nth-child(3),
  .process-step:nth-child(4),
  .process-step:nth-child(5) {
    border-top: 1px solid var(--line);
  }

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

  .site-footer-nav {
    justify-self: start;
    width: 100%;
    max-width: 760px;
  }
}

@media (min-width: 701px) and (max-width: 900px) {
  .process {
    padding: 56px clamp(18px, 4vw, 64px);
  }

  .process-head {
    margin-bottom: 22px;
    gap: 14px;
  }

  .process-title {
    display: block;
    font-size: 40px;
    line-height: 0.96;
  }

  .process-title > span {
    display: inline;
    width: auto;
    white-space: normal;
  }

  .process-title > span:first-child::after {
    content: " ";
  }

  .process-steps {
    grid-template-columns: 1fr;
    row-gap: 0;
    padding: 0;
    border-top: 0;
  }

  .process-steps .process-step,
  .process-steps .process-step + .process-step {
    grid-template-columns: 48px minmax(0, 1fr);
    align-items: center;
    gap: 2px 18px;
    min-height: 68px;
    padding: 18px 0;
    border: 0;
    border-top: 1px solid var(--line);
  }

  .process-steps .process-step:first-child {
    border-top: 0;
    padding-left: 0;
  }

  .process-steps .process-step:last-child {
    padding-right: 0;
  }

  .process-steps .process-step:nth-child(odd),
  .process-steps .process-step:nth-child(even) {
    border-right: 0;
    border-left: 0;
  }

  .process-step-num {
    grid-row: 1 / span 2;
    grid-column: 1;
    align-self: center;
    font-size: 30px;
  }

  .process-step-body {
    grid-column: 2;
    gap: 2px;
  }

  .process-step-title {
    font-size: 16px;
  }

  .process-step-desc {
    font-size: 13px;
    line-height: 1.5;
  }
}

@media (min-width: 541px) and (max-width: 900px) {
  :root {
    --section-rotator-title-size: clamp(40px, 5.4vw, 46px);
  }

  .proof-grid {
    gap: 14px;
  }

  .proof .proof-case,
  .proof .proof-case-feature {
    grid-template-columns: minmax(190px, 32%) minmax(0, 1fr);
    grid-template-rows: auto;
    min-height: 238px;
  }

  .proof .proof-case-visual {
    min-height: 100%;
    border-right: 1px solid var(--line);
    border-bottom: 0;
  }

  .proof .proof-case-visual::after {
    background:
      linear-gradient(90deg, transparent 34%, rgba(5, 8, 11, 0.5) 100%),
      radial-gradient(90% 70% at 0% 100%, rgba(5, 8, 11, 0.66), transparent 68%);
  }

  .proof .proof-case-image {
    object-position: 52% center;
  }

  .proof .proof-visual-grid {
    background-size: 28px 28px;
    opacity: 0.52;
  }

  .proof .proof-visual-pulse {
    display: none;
  }

  .proof .proof-visual-mark {
    bottom: 16px;
    left: 14px;
    font-size: 38px;
  }

  .proof .proof-case-body {
    grid-template-rows: auto auto auto auto;
    gap: 10px;
    padding: 18px 18px 16px;
  }

  .proof .proof-case-meta {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
    font-size: 10px;
    line-height: 1.25;
    letter-spacing: 0.06em;
  }

  .proof .proof-case-title,
  .proof .proof-case-feature .proof-case-title {
    font-size: clamp(28px, 4.2vw, 34px);
    line-height: 0.96;
  }

  .proof .proof-case-summary,
  .proof .proof-case-feature .proof-case-summary {
    display: -webkit-box;
    max-width: none;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    font-size: 13px;
    line-height: 1.45;
  }

  .proof .proof-case-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    padding: 2px 0 0;
    margin: 0;
    border-top: 0;
  }

  .proof .proof-case-stats > div {
    display: inline-flex;
    align-items: baseline;
    min-width: 0;
    gap: 6px;
    padding: 6px 8px;
    border: 1px solid oklch(58% 0.18 240 / 0.18);
    background: oklch(58% 0.18 240 / 0.055);
  }

  .proof .proof-case-stats dt {
    display: block;
    flex: 0 0 auto;
    font-size: 15px;
    line-height: 1;
    white-space: nowrap;
  }

  .proof .proof-case-stats dd {
    display: block;
    min-width: 0;
    font-size: 8px;
    line-height: 1.15;
    letter-spacing: 0.035em;
  }

  .proof .proof-case-cta {
    display: none;
  }

  .packages {
    padding: 64px clamp(28px, 4vw, 40px) 58px;
  }

  .packages-head {
    gap: 16px;
    margin-bottom: 30px;
    max-width: 56ch;
  }

  .packages-title {
    display: block;
    font-size: var(--section-rotator-title-size);
    line-height: 0.96;
  }

  .packages-title > span {
    display: inline;
    width: auto;
    max-width: none;
    white-space: normal;
  }

  .packages-title > span:first-child::after {
    content: " ";
  }

  .packages-lead {
    max-width: 48ch;
    font-size: 14px;
    line-height: 1.52;
  }

  .packages-grid {
    gap: 14px;
  }

  .packages-tile {
    grid-template-rows: auto auto auto auto;
    gap: 11px;
    min-height: 0;
    padding: 20px 22px 18px;
  }

  .packages-tile-head {
    align-items: flex-start;
    gap: 12px;
  }

  .packages-tile-num {
    font-size: 38px;
    line-height: 0.9;
    text-shadow: 0 0 16px oklch(58% 0.18 240 / 0.16);
  }

  .packages-tile-tag {
    max-width: 22ch;
    font-size: 10px;
    line-height: 1.25;
    letter-spacing: 0.055em;
  }

  .packages-tile-title {
    font-size: clamp(30px, 4.4vw, 36px);
    line-height: 0.96;
  }

  .packages-tile-summary {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    font-size: 13px;
    line-height: 1.45;
  }

  .packages-tile-list {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
  }

  .packages-tile-list li {
    padding: 6px 8px;
    border: 1px solid oklch(58% 0.18 240 / 0.18);
    background: oklch(58% 0.18 240 / 0.045);
    color: var(--steel);
    font-size: 10px;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: 0.035em;
    text-transform: uppercase;
  }

  .packages-tile-list li::before {
    display: none;
  }

  .packages-tile-foot {
    flex-direction: row;
    align-items: center;
    gap: 12px;
    padding-top: 12px;
    margin-top: 1px;
  }

  .packages-tile-meta {
    font-size: 11px;
    line-height: 1.25;
    letter-spacing: 0.045em;
  }

  .packages-tile-cta {
    margin-left: auto;
    gap: 8px;
    font-size: 0;
  }

  .packages-tile-arrow {
    width: 10px;
    height: 10px;
  }

  .packages-foot {
    flex-direction: column;
    align-items: flex-start;
    gap: 11px;
    padding-top: 26px;
  }

  .packages-foot-line {
    font-size: 14px;
    line-height: 1.25;
  }

  .packages-foot-link {
    gap: 10px;
    font-size: 12px;
  }
}

@media (max-width: 700px) {
  .site-header {
    top: 0;
    width: 100%;
    min-height: 74px;
    padding: 0 12px;
  }

  .site-header::before {
    inset: 0;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .site-logo {
    width: 36px;
    height: 36px;
  }

  .brand-copy strong {
    font-size: 16px;
  }

  .brand {
    gap: 10px;
  }

  .nav-toggle {
    width: 44px;
    height: 44px;
    border-radius: 9px;
  }

  .nav-toggle-line {
    width: 20px;
  }

  .nav-toggle-line:nth-child(1) { top: 15px; }
  .nav-toggle-line:nth-child(2) { top: 21px; }
  .nav-toggle-line:nth-child(3) { top: 27px; }

  .nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(1),
  .nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(3) {
    top: 21px;
  }

  .nav-mount {
    padding: clamp(78px, 11svh, 92px) 16px max(24px, env(safe-area-inset-bottom));
    row-gap: 8px;
  }

  .nav-mount::before {
    width: 54px;
    margin-bottom: 4px;
  }

  .site-nav {
    width: min(300px, 100%);
  }

  .site-nav a {
    min-height: 52px;
    padding: 7px 14px;
    font-size: 11px;
    letter-spacing: 1.6px;
  }

  .nav-link-desc {
    max-width: 24ch;
    font-size: 9.5px;
  }

  .site-nav a::before {
    bottom: -2px;
  }

  .site-nav a.is-active::before,
  .site-nav a:hover::before,
  .site-nav a:focus-visible::before {
    width: 32px;
  }

  .nav-mount .nav-action {
    min-height: 48px;
    width: min(206px, 100%);
    margin-top: 10px;
    font-size: 11px;
  }

  .hero {
    min-height: auto;
    padding: 112px 10px 30px;
  }

  .dream-hero {
    width: 100%;
    max-width: none;
    margin-left: 0;
    margin-right: 0;
    padding: 0;
  }

  .hero-canvas-glow,
  .hero-canvas-noise {
    inset: 0;
  }

  .dream-shell {
    width: 100%;
    padding-right: 10px;
    padding-left: 10px;
    padding-top: 92px;
    gap: 20px;
    justify-items: center;
    text-align: center;
  }

  .dream-kicker {
    gap: 8px;
    font-size: 10px;
    letter-spacing: 0.06em;
    margin-bottom: 10px;
  }

  .dream-kicker-brand {
    font-size: 13px;
  }

  .dream-kicker-sep {
    width: 20px;
  }

  .dream-title {
    justify-items: center;
    width: 100%;
    gap: 0.14em;
    line-height: 0.94;
    text-align: center;
  }

  .dream-title-line-main,
  .dream-title-line-strong {
    justify-content: center;
    white-space: normal;
  }

  .dream-title-line-main {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: baseline;
    justify-content: center;
    gap: 0.08em;
    width: 100%;
    font-size: clamp(29px, 8.45vw, 40px);
  }

  .dream-title-line-strong {
    width: 100%;
    margin-top: 0.02em;
    font-size: clamp(43px, 13.2vw, 62px);
  }

  .word-rotator {
    min-width: var(--hero-mobile-word-slot);
    transform: none;
    justify-items: center;
    text-align: center;
  }

  .dream-lead {
    font-size: 13px;
    line-height: 1.5;
    max-width: 46ch;
    text-align: center;
  }

  .dream-controls {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: min(100%, 420px);
    gap: 7px;
    margin-top: 2px;
  }

  .dream-chip {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 6px 5px;
    font-size: 11px;
    text-align: center;
  }

  .dream-chip span {
    display: none;
  }

  .dream-actions {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px;
    margin-top: 2px;
  }

  .dream-actions .button {
    width: 100%;
    min-width: 0;
    min-height: 48px;
    padding: 0 10px;
    font-size: 11px;
  }

  .dream-actions .button-primary span {
    width: 9px;
    height: 9px;
  }

  .manifest-title {
    display: block;
    max-width: 100%;
    font-size: clamp(30px, 8.7vw, 40px);
    line-height: 0.96;
  }

  .manifest-eyebrow {
    gap: 9px;
    font-size: 10px;
    letter-spacing: 0.16em;
  }

  .manifest-eyebrow-mark {
    width: 8px;
    height: 8px;
  }

  .manifest-title > span {
    display: inline;
  }

  .manifest-title > span:first-child::after {
    content: " ";
  }

  .manifest-title > span + span {
    margin-top: 0;
  }

  .manifest-list {
    grid-template-columns: 1fr;
    gap: 0;
    border-top: 1px solid var(--line);
  }

  .manifest-item {
    grid-template-columns: 56px minmax(0, 1fr);
    grid-template-rows: auto auto;
    gap: 6px 22px;
    padding: 18px 0;
    border: 0;
    border-bottom: 1px solid var(--line);
    background: transparent;
    box-shadow: none;
    overflow: visible;
  }

  .manifest-item::before,
  .manifest-glow {
    display: none;
  }

  .manifest-num {
    grid-row: 1 / span 2;
    grid-column: 1;
    align-self: center;
    font-size: 34px;
  }

  .manifest-headline {
    grid-column: 2;
    gap: 5px;
  }

  .manifest-keyword {
    font-size: 22px;
  }

  .manifest-keyword-sub {
    padding-left: 16px;
    font-size: 9px;
    letter-spacing: 0.07em;
  }

  .manifest-keyword-sub::before {
    width: 10px;
  }

  .manifest-body {
    grid-column: 2;
    font-size: 13px;
    line-height: 1.5;
  }

  .manifest-foot {
    justify-content: center;
    gap: 10px;
    padding-top: 26px;
    margin-top: 10px;
    text-align: center;
  }

  .manifest-foot-line {
    width: 100%;
    font-size: 14px;
  }

  .manifest-foot-link {
    gap: 14px;
    padding: 2px 10px 4px;
    font-size: 12px;
  }

  .proof-eyebrow {
    gap: 9px;
    font-size: 10px;
    letter-spacing: 0.16em;
  }

  .proof-eyebrow-mark {
    width: 8px;
    height: 8px;
  }

  .proof-title {
    display: block;
    max-width: 100%;
    font-size: clamp(30px, 8.7vw, 40px);
    line-height: 0.96;
  }

  .testimonials-title {
    font-size: clamp(30px, 8.7vw, 40px);
    line-height: 0.96;
  }

  .testimonials {
    padding: 56px 16px 48px;
  }

  .testimonials-head {
    margin-bottom: 28px;
  }

  .testimonials-eyebrow {
    gap: 9px;
    margin: 0 0 12px;
    font-size: 10px;
    letter-spacing: 0.16em;
  }

  .testimonials-eyebrow-mark {
    width: 8px;
    height: 8px;
  }

  .testimonials-grid {
    gap: 12px;
  }

  .testimonial-card {
    gap: 16px;
    padding: 18px 18px 16px;
  }

  .testimonial-quote-mark {
    top: 10px;
    right: 16px;
    font-size: 44px;
  }

  .testimonial-body p {
    font-size: 14px;
    line-height: 1.5;
  }

  .testimonial-author {
    padding-top: 12px;
    gap: 2px;
  }

  .testimonial-name {
    font-size: 13px;
  }

  .testimonial-role {
    font-size: 12px;
  }

  .proof-title > span {
    display: inline;
  }

  .proof-title > span:first-child::after {
    content: " ";
  }

  .hero-scope {
    padding-top: 20px;
    padding-right: 18px;
    padding-bottom: 40px;
    padding-left: 18px;
    margin-top: 32px;
  }

  .scope-list {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .scope-row,
  .scope-row + .scope-row {
    padding: 0 0 16px;
    border-left: none;
    border-bottom: 1px solid oklch(88% 0.008 150 / 0.1);
  }

  .scope-row:last-child {
    padding-bottom: 0;
    border-bottom: none;
  }

  .scope-row dd {
    padding-left: 0;
  }

  .scope-row {
    align-items: flex-start;
  }

  .production-section {
    padding: 58px 12px 76px;
  }

  .production-copy h2 {
    font-size: clamp(42px, 14vw, 72px);
    line-height: 0.94;
  }

  .production-track li {
    grid-template-columns: 64px minmax(0, 1fr);
    padding: 20px 0;
  }

  .process-section {
    padding: 58px 12px 72px;
  }

  .process-heading h2 {
    font-size: clamp(38px, 13vw, 68px);
    line-height: 0.94;
  }

  .process-intro {
    font-size: 16px;
  }

  .process-steps {
    grid-template-columns: 1fr;
    gap: 0;
    padding-top: 26px;
  }

  .process-steps li,
  .process-steps li + li {
    min-height: auto;
    padding: 0 0 30px 34px;
    border-left: 1px solid rgba(243, 240, 232, 0.14);
  }

  .process-steps li:last-child {
    padding-bottom: 0;
  }

  .process-steps li::before,
  .process-steps li + li::before,
  .process-steps li:nth-child(odd)::before {
    top: 0;
    left: -5px;
  }

  .process-steps span {
    font-size: 42px;
  }

  h1 {
    font-size: clamp(64px, 25vw, 104px);
  }

  .hero-lead {
    font-size: 17px;
  }

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

  .hero-metrics {
    grid-template-columns: 1fr;
  }

  .stage-shell {
    min-height: auto;
  }

  .stage-topbar {
    grid-template-columns: auto 1fr;
  }

  .stage-topbar span:last-child {
    display: none;
  }

  .stage-layout {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .project-card {
    min-height: 560px;
  }

  .pricing-stack {
    grid-template-columns: 1fr;
  }

  .floating-ticket {
    right: 12px;
    bottom: -32px;
    width: calc(100% - 24px);
  }

  .next-band {
    width: calc(100% - 20px);
    margin-top: 42px;
    padding: 24px 0;
  }

  .manifest {
    padding: 72px 16px 56px;
  }

  .manifest-head {
    margin-bottom: 40px;
  }

  .manifest-item {
    padding: 24px 22px 28px;
  }

  .manifest-num {
    font-size: clamp(48px, 14vw, 72px);
  }

  .manifest-keyword {
    font-size: clamp(28px, 8vw, 36px);
  }

  .manifest-foot {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding-top: 26px;
    margin-top: 10px;
    text-align: center;
  }

  .proof {
    padding: 64px 16px 56px;
  }

  .proof-head {
    margin-bottom: 32px;
  }

  .proof-case-feature .proof-case-title {
    font-size: clamp(28px, 8vw, 38px);
  }

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

  .proof-case-stats > div {
    grid-template-rows: minmax(30px, auto) minmax(30px, auto);
  }

  .proof-foot {
    justify-content: flex-start;
  }

  .packages {
    padding: 58px 16px 50px;
  }

  .process {
    padding: 56px 16px 48px;
  }

  .process-shell {
    display: block;
  }

  .process-head {
    gap: 14px;
    margin-bottom: 20px;
    max-width: 100%;
  }

  .process-eyebrow {
    gap: 9px;
    font-size: 10px;
    letter-spacing: 0.16em;
  }

  .process-eyebrow-mark {
    width: 8px;
    height: 8px;
  }

  .process-title {
    display: block;
    font-size: clamp(30px, 8.7vw, 40px);
    line-height: 0.96;
  }

  .process-title > span {
    display: inline;
    width: auto;
    white-space: normal;
  }

  .process-title > span:first-child::after {
    content: " ";
  }

  .process-steps {
    grid-template-columns: 1fr;
    padding: 0;
    border-top: 0;
  }

  .process-steps li::before,
  .process-steps li + li::before {
    display: none;
  }

  .process-steps .process-step,
  .process-steps .process-step + .process-step {
    grid-template-columns: 44px minmax(0, 1fr);
    align-items: center;
    gap: 6px 16px;
    padding: 16px 0;
    border: 0;
    border-top: 1px solid var(--line);
  }

  .process-steps .process-step:first-child {
    border-top: 0;
    padding-top: 4px;
  }

  .process-steps .process-step:last-child {
    padding-right: 0;
    padding-bottom: 4px;
  }

  .process-step-num {
    grid-row: 1 / span 2;
    grid-column: 1;
    align-self: center;
    font-size: 30px;
  }

  .process-step-body {
    grid-column: 2;
    gap: 4px;
  }

  .process-step-title {
    font-size: 16px;
  }

  .process-step-desc {
    font-size: 13px;
    line-height: 1.5;
  }

  .cta-final {
    padding: 56px 16px 48px;
  }

  .cta-final-shell {
    gap: 10px;
  }

  .cta-final-eyebrow {
    gap: 9px;
    font-size: 10px;
    letter-spacing: 0.16em;
  }

  .cta-final-eyebrow-mark {
    width: 8px;
    height: 8px;
  }

  .cta-final-title {
    font-size: clamp(30px, 8.7vw, 40px);
    line-height: 0.96;
  }

  .cta-final-lead {
    font-size: 13px;
    line-height: 1.5;
  }

  .cta-final-btn {
    width: auto;
    margin-top: 8px;
    min-width: 168px;
    min-height: 42px;
    padding: 0 20px;
    font-size: 13px;
  }

  .packages-head {
    gap: 14px;
    margin-bottom: 24px;
    max-width: 100%;
  }

  .packages-eyebrow {
    gap: 9px;
    font-size: 10px;
    letter-spacing: 0.16em;
  }

  .packages-eyebrow-mark {
    width: 8px;
    height: 8px;
  }

  .packages-title {
    display: block;
    font-size: clamp(30px, 8.7vw, 40px);
    line-height: 0.96;
  }

  .packages-title > span {
    display: inline;
    width: auto;
    max-width: none;
    white-space: normal;
  }

  .packages-title > span:first-child::after {
    content: " ";
  }

  .packages-lead {
    max-width: 44ch;
    font-size: 13px;
    line-height: 1.5;
  }

  .packages-grid {
    gap: 12px;
  }

  .packages-tile {
    grid-template-rows: auto auto auto auto;
    gap: 9px;
    min-height: 0;
    padding: 15px 14px 14px;
  }

  .packages-tile-head {
    align-items: flex-start;
    gap: 10px;
  }

  .packages-tile-num {
    font-size: 30px;
    line-height: 0.9;
    text-shadow: 0 0 16px oklch(58% 0.18 240 / 0.16);
  }

  .packages-tile-tag {
    max-width: 18ch;
    font-size: 9px;
    line-height: 1.25;
    letter-spacing: 0.055em;
  }

  .packages-tile-title {
    font-size: clamp(24px, 7vw, 30px);
    line-height: 0.96;
  }

  .packages-tile-summary {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    font-size: 12px;
    line-height: 1.45;
  }

  .packages-tile-list {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
  }

  .packages-tile-list li {
    padding: 5px 7px;
    border: 1px solid oklch(58% 0.18 240 / 0.18);
    background: oklch(58% 0.18 240 / 0.045);
    color: var(--steel);
    font-size: 9px;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: 0.035em;
    text-transform: uppercase;
  }

  .packages-tile-list li::before {
    display: none;
  }

  .packages-tile-foot {
    flex-direction: row;
    align-items: center;
    gap: 10px;
    padding-top: 10px;
    margin-top: 1px;
  }

  .packages-tile-meta {
    font-size: 10px;
    line-height: 1.25;
    letter-spacing: 0.045em;
  }

  .packages-tile-cta {
    margin-left: auto;
    gap: 7px;
    font-size: 0;
  }

  .packages-tile-arrow {
    width: 9px;
    height: 9px;
  }

  .packages-foot {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding-top: 24px;
  }

  .packages-foot-line {
    font-size: 13px;
    line-height: 1.25;
  }

  .packages-foot-link {
    gap: 10px;
    font-size: 12px;
  }

  .faq {
    padding: 56px 16px 48px;
  }

  .faq-head {
    gap: 14px;
    margin-bottom: 28px;
    max-width: 100%;
  }

  .faq-eyebrow {
    gap: 9px;
    font-size: 10px;
    letter-spacing: 0.16em;
  }

  .faq-eyebrow-mark {
    width: 8px;
    height: 8px;
  }

  .faq-title {
    display: block;
    font-size: clamp(30px, 8.7vw, 40px);
    line-height: 0.96;
  }

  .faq-title > span {
    display: inline;
    width: auto;
    max-width: none;
    white-space: normal;
  }

  .faq-title > span:first-child::after {
    content: " ";
  }

  .faq-toggle {
    grid-template-columns: 44px minmax(0, 1fr) 28px;
    gap: 10px;
    min-height: 64px;
    padding: 14px 0;
  }

  .faq-num {
    font-size: 25px;
    line-height: 0.9;
  }

  .faq-q-text {
    font-size: clamp(15px, 4.55vw, 18px);
    line-height: 1.05;
    letter-spacing: 0;
  }

  .faq-icon {
    justify-self: end;
    width: 22px;
    height: 22px;
  }

  .faq-icon::before {
    width: 13px;
  }

  .faq-icon::after {
    height: 13px;
  }

  .faq-a p {
    padding: 0 0 16px 54px;
    max-width: none;
    font-size: 13px;
    line-height: 1.55;
  }

  .faq-foot {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding-top: 24px;
  }

  .faq-foot-line {
    font-size: 13px;
    line-height: 1.25;
  }

  .faq-foot-link {
    gap: 10px;
    font-size: 12px;
  }

  .partner-band {
    padding: 26px 16px 30px;
  }

  .partner-band-shell {
    gap: 8px;
  }

  .partner-eyebrow {
    font-size: 10px;
    letter-spacing: 0.26em;
  }

  .partner-logo-img {
    width: 86px;
    height: 86px;
  }

  .partner-tagline {
    font-size: 12px;
  }

  .site-footer {
    width: 100%;
  }

  .site-footer-shell {
    width: min(100% - 32px, 1800px);
    min-height: 0;
    padding: 20px 0 18px;
    gap: 18px;
  }

  .site-footer-brand {
    gap: 10px;
    max-width: none;
  }

  .site-footer-brand-mark {
    width: 42px;
    height: 42px;
  }

  .site-footer-logo {
    width: 37px;
    height: 37px;
  }

  .site-footer-copy {
    max-width: 34ch;
    font-size: 13px;
    line-height: 1.45;
  }

  .site-footer-social {
    gap: 7px;
    margin-top: 0;
  }

  .site-footer-social-link {
    width: 34px;
    height: 34px;
  }

  .site-footer-nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 20px;
  }

  .site-footer-group {
    gap: 8px;
  }

  .site-footer-contact {
    grid-column: 1 / -1;
  }

  .site-footer-heading {
    font-size: 13px;
    letter-spacing: 0.075em;
  }

  .site-footer-list {
    gap: 6px;
  }

  .site-footer-list a,
  .site-footer-list span {
    font-size: 13px;
    line-height: 1.3;
  }

  .site-footer-contact .site-footer-list {
    display: grid;
    gap: 6px;
  }

  .site-footer-meta {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    padding-top: 14px;
    font-size: 11px;
  }

  .site-footer-legal {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, max-content));
    align-items: center;
    gap: 7px 18px;
  }

  .site-footer-legal a,
  .site-footer-cookie-btn {
    font-size: 11px;
    line-height: 1.25;
  }
}


@media (max-width: 540px) {
  .proof-grid {
    gap: 12px;
  }

  .proof .proof-case,
  .proof .proof-case-feature {
    grid-template-columns: minmax(94px, 31vw) minmax(0, 1fr);
    grid-template-rows: auto;
    min-height: 168px;
  }

  .proof .proof-case-visual {
    min-height: 100%;
    border-right: 1px solid var(--line);
    border-bottom: 0;
  }

  .proof .proof-case-visual::after {
    background:
      linear-gradient(90deg, transparent 32%, rgba(5, 8, 11, 0.52) 100%),
      radial-gradient(90% 70% at 0% 100%, rgba(5, 8, 11, 0.68), transparent 68%);
  }

  .proof .proof-case-image {
    object-position: 52% center;
  }

  .proof .proof-visual-grid {
    background-size: 24px 24px;
    opacity: 0.46;
  }

  .proof .proof-visual-pulse {
    display: none;
  }

  .proof .proof-visual-mark {
    bottom: 14px;
    left: 12px;
    font-size: 30px;
  }

  .proof .proof-case-body {
    grid-template-rows: auto auto auto auto;
    gap: 8px;
    padding: 14px 13px 13px;
  }

  .proof .proof-case-meta {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 8px;
    font-size: 9px;
    line-height: 1.25;
    letter-spacing: 0.055em;
  }

  .proof .proof-case-title,
  .proof .proof-case-feature .proof-case-title {
    font-size: clamp(22px, 6.6vw, 27px);
    line-height: 0.96;
  }

  .proof .proof-case-summary,
  .proof .proof-case-feature .proof-case-summary {
    display: -webkit-box;
    max-width: none;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    font-size: 12px;
    line-height: 1.45;
  }

  .proof .proof-case-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    padding: 2px 0 0;
    margin: 0;
    border-top: 0;
  }

  .proof .proof-case-stats > div {
    display: inline-flex;
    align-items: baseline;
    min-width: 0;
    gap: 5px;
    padding: 5px 7px;
    border: 1px solid oklch(58% 0.18 240 / 0.18);
    background: oklch(58% 0.18 240 / 0.055);
  }

  .proof .proof-case-stats dt {
    display: block;
    flex: 0 0 auto;
    font-size: 13px;
    line-height: 1;
    white-space: nowrap;
  }

  .proof .proof-case-stats dd {
    display: block;
    min-width: 0;
    font-size: 8px;
    line-height: 1.15;
    letter-spacing: 0.035em;
  }

  .proof .proof-case-cta {
    display: none;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .dream-shell > * {
    animation: hero-rise 680ms var(--ease-out-expo) both;
  }

  .dream-shell > *:nth-child(1) { animation-delay: 0ms; }
  .dream-shell > *:nth-child(2) { animation-delay: 60ms; }
  .dream-shell > *:nth-child(3) { animation-delay: 120ms; }
  .dream-shell > *:nth-child(4) { animation-delay: 180ms; }
  .dream-shell > *:nth-child(5) { animation-delay: 230ms; }

  .hero-scope {
    animation: hero-rise 680ms var(--ease-out-expo) 300ms both;
  }

  .hero-content > *,
  .stage-shell,
  .floating-ticket {
    animation: rise-in 700ms ease both;
  }

  .hero-content > *:nth-child(2) { animation-delay: 70ms; }
  .hero-content > *:nth-child(3) { animation-delay: 140ms; }
  .hero-content > *:nth-child(4) { animation-delay: 210ms; }
  .hero-content > *:nth-child(5) { animation-delay: 280ms; }
  .stage-shell { animation-delay: 180ms; }
  .floating-ticket { animation-delay: 420ms; }

  .project-visual::before {
    animation: scan-panel 5s ease-in-out infinite;
  }

  .scroll-load-text {
    opacity: 0;
    filter: blur(8px);
    clip-path: inset(-0.22em -0.08em 18% -0.08em);
    transition:
      opacity 760ms var(--ease-out-expo),
      filter 760ms var(--ease-out-expo),
      clip-path 760ms var(--ease-out-expo);
    transition-delay: var(--scroll-load-delay, 0ms);
    will-change: opacity, filter, clip-path;
  }

  .scroll-load-text.is-loaded {
    opacity: 1;
    filter: blur(0);
    clip-path: inset(-0.22em -0.08em -0.12em -0.08em);
  }

  .pkg-included .scroll-load-text {
    opacity: 1;
    filter: none;
    clip-path: none;
    transition: none;
    animation: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .word-rotator span,
  .dream-chip {
    transition: none;
  }
}

@keyframes hero-rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scan-panel {
  0%, 100% { transform: translateX(0); }
  50%       { transform: translateX(10px); }
}


.proj-cases {
  padding: clamp(40px, 5vw, 72px) clamp(18px, 4vw, 64px) clamp(80px, 10vw, 140px);
  border-top: 1px solid var(--line);
}

.page-projects .pkg-hero {
  min-height: 490px;
  display: flex;
  align-items: center;
  padding: 98px clamp(18px, 4vw, 64px) 0;
}

.proj-cases-shell {
  width: min(1800px, 100%);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: clamp(32px, 4vw, 56px);
}

.proj-filter {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0;
  border-bottom: 1px solid var(--line);
}

.proj-filter-tab {
  padding: 14px 22px;
  background: transparent;
  border: none;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--quiet);
  cursor: pointer;
  transition: color 180ms ease;
}

.proj-filter-tab:hover { color: var(--muted); }
.proj-filter-tab.is-active { color: var(--text); }

.proj-filter-line {
  position: absolute;
  bottom: -1px;
  height: 2px;
  background: oklch(58% 0.18 240);
  transition: left 280ms var(--ease-out-quart), width 280ms var(--ease-out-quart);
  pointer-events: none;
}

.proj-cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(4, minmax(200px, auto)) minmax(180px, auto);
  gap: clamp(14px, 1.4vw, 20px);
}

.proj-cases-grid:not(.proj-cases-grid--filtered) .proof-case-big-left {
  grid-column: 1 / 3;
  grid-row: 1 / 3;
  grid-template-rows: minmax(280px, 56%) 1fr;
}
.proj-cases-grid:not(.proj-cases-grid--filtered) [data-proj-case]:nth-child(2) { grid-column: 3; grid-row: 1; }
.proj-cases-grid:not(.proj-cases-grid--filtered) [data-proj-case]:nth-child(3) { grid-column: 3; grid-row: 2; }
.proj-cases-grid:not(.proj-cases-grid--filtered) [data-proj-case]:nth-child(4) { grid-column: 1; grid-row: 3; }
.proj-cases-grid:not(.proj-cases-grid--filtered) .proof-case-big-right {
  grid-column: 2 / 4;
  grid-row: 3 / 5;
  grid-template-rows: minmax(280px, 56%) 1fr;
}
.proj-cases-grid:not(.proj-cases-grid--filtered) [data-proj-case]:nth-child(6) { grid-column: 1; grid-row: 4; }
.proj-cases-grid:not(.proj-cases-grid--filtered) .proof-case-wide {
  grid-column: 1 / 4;
  grid-row: 5;
  grid-template-rows: minmax(200px, 48%) 1fr;
}

.proj-cases-grid--filtered {
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto;
}
.proj-cases-grid--filtered [data-proj-case] {
  grid-column: auto;
  grid-row: auto;
  grid-template-rows: minmax(180px, 38%) 1fr;
}

.proj-cases-grid.is-filtering {
  pointer-events: none;
}

[data-proj-case] {
  transition:
    opacity 280ms var(--ease-out-quart),
    transform 280ms var(--ease-out-quart);
  transition-delay: var(--proj-case-delay, 0ms);
  will-change: opacity, transform;
}

[data-proj-case].is-leaving,
[data-proj-case].is-entering {
  opacity: 0;
  transform: translateY(14px) scale(0.985);
}

[data-proj-case].is-leaving {
  pointer-events: none;
  transition-duration: 170ms;
  transform: translateY(-8px) scale(0.99);
}

[data-proj-case].is-hidden {
  display: none;
}

@media (max-width: 860px) {
  .proj-cases-grid,
  .proj-cases-grid--filtered {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .proj-cases-grid [data-proj-case] {
    grid-column: auto !important;
    grid-row: auto !important;
    grid-template-rows: minmax(180px, 38%) 1fr;
  }
  .proj-filter-tab {
    padding: 12px 14px;
    font-size: 11px;
  }
}

@media (min-width: 601px) and (max-width: 900px) {
  .page-projects .pkg-hero {
    min-height: 0;
    display: block;
    padding: 152px clamp(28px, 4vw, 40px) 64px;
  }

  .page-projects .proj-cases-grid,
  .page-projects .proj-cases-grid--filtered {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 14px;
  }

  .page-projects .proj-cases-grid [data-proj-case],
  .page-projects .proj-cases-grid--filtered [data-proj-case] {
    grid-column: auto !important;
    grid-row: auto !important;
    grid-template-columns: minmax(190px, 32%) minmax(0, 1fr);
    grid-template-rows: auto;
    min-height: 238px;
  }

  .page-projects .proj-cases-grid .proof-case-visual {
    min-height: 100%;
    border-right: 1px solid var(--line);
    border-bottom: 0;
  }

  .page-projects .proj-cases-grid .proof-case-visual::after {
    background:
      linear-gradient(90deg, transparent 34%, rgba(5, 8, 11, 0.5) 100%),
      radial-gradient(90% 70% at 0% 100%, rgba(5, 8, 11, 0.66), transparent 68%);
  }

  .page-projects .proj-cases-grid .proof-case-image {
    object-position: 52% center;
  }

  .page-projects .proj-cases-grid .proof-visual-grid {
    background-size: 28px 28px;
    opacity: 0.52;
  }

  .page-projects .proj-cases-grid .proof-visual-pulse {
    display: none;
  }

  .page-projects .proj-cases-grid .proof-visual-mark {
    bottom: 16px;
    left: 14px;
    font-size: 38px;
  }

  .page-projects .proj-cases-grid .proof-case-body {
    grid-template-rows: auto auto auto auto;
    gap: 10px;
    padding: 18px 18px 16px;
  }

  .page-projects .proj-cases-grid .proof-case-meta {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
    font-size: 10px;
    line-height: 1.25;
    letter-spacing: 0.06em;
  }

  .page-projects .proj-cases-grid .proof-case-title {
    font-size: clamp(28px, 4.2vw, 34px);
    line-height: 0.96;
  }

  .page-projects .proj-cases-grid .proof-case-summary {
    display: -webkit-box;
    max-width: none;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    font-size: 13px;
    line-height: 1.45;
  }

  .page-projects .proj-cases-grid .proof-case-cta {
    display: none;
  }
}

@media (max-width: 600px) {
  .page-projects .pkg-hero {
    min-height: 360px;
    align-items: flex-end;
    padding: 104px 16px 48px;
  }

  .page-projects .pkg-hero-shell {
    align-items: center;
    gap: 14px;
    text-align: center;
  }

  .page-projects .pkg-eyebrow {
    justify-content: center;
    gap: 9px;
    font-size: 10px;
    letter-spacing: 0.16em;
  }

  .page-projects .pkg-hero-title {
    text-align: center;
    line-height: 0.96;
  }

  .page-projects .pkg-hero-line {
    justify-content: center;
  }

  .page-projects .pkg-hero-line:first-child {
    font-size: clamp(34px, 9.8vw, 45px);
  }

  .page-projects .pkg-hero-line:last-child {
    margin-top: 0.03em;
    font-size: clamp(46px, 13.4vw, 62px);
  }

  .page-projects .pkg-hero-lead {
    max-width: 32ch;
    font-size: 13.5px;
    line-height: 1.48;
  }

  .page-projects .proj-cases {
    padding: 32px 16px 56px;
  }

  .page-projects .proj-cases-shell {
    gap: 18px;
  }

  .page-projects .proj-filter-tab {
    padding: 10px 12px;
    font-size: 10px;
    letter-spacing: 0.08em;
  }

  .page-projects .proj-cases-grid [data-proj-case],
  .page-projects .proj-cases-grid--filtered [data-proj-case] {
    grid-template-columns: minmax(94px, 31vw) minmax(0, 1fr);
    grid-template-rows: auto;
    min-height: 168px;
  }

  .page-projects .proj-cases-grid .proof-case-visual {
    min-height: 100%;
    border-right: 1px solid var(--line);
    border-bottom: 0;
  }

  .page-projects .proj-cases-grid .proof-case-visual::after {
    background:
      linear-gradient(90deg, transparent 32%, rgba(5, 8, 11, 0.52) 100%),
      radial-gradient(90% 70% at 0% 100%, rgba(5, 8, 11, 0.68), transparent 68%);
  }

  .page-projects .proj-cases-grid .proof-case-image {
    object-position: 52% center;
  }

  .page-projects .proj-cases-grid .proof-visual-pulse {
    display: none;
  }

  .page-projects .proj-cases-grid .proof-visual-mark {
    bottom: 14px;
    left: 12px;
    font-size: 30px;
  }

  .page-projects .proj-cases-grid .proof-case-body {
    grid-template-rows: auto auto auto;
    gap: 8px;
    padding: 14px 13px 13px;
  }

  .page-projects .proj-cases-grid .proof-case-meta {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 8px;
    font-size: 9px;
    line-height: 1.25;
    letter-spacing: 0.055em;
  }

  .page-projects .proj-cases-grid .proof-case-title {
    font-size: clamp(22px, 6.6vw, 27px);
    line-height: 0.96;
  }

  .page-projects .proj-cases-grid .proof-case-summary {
    display: -webkit-box;
    max-width: none;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    font-size: 12px;
    line-height: 1.45;
  }

  .page-projects .proj-cases-grid .proof-case-cta {
    display: none;
  }

  .page-projects .testimonials {
    padding: 52px 16px 50px;
  }

  .page-projects .testimonials-head {
    margin-bottom: 24px;
    text-align: center;
  }

  .page-projects .testimonials-eyebrow {
    justify-content: center;
    gap: 9px;
    margin-bottom: 12px;
    font-size: 10px;
    letter-spacing: 0.16em;
  }

  .page-projects .testimonials-title {
    font-size: clamp(30px, 8.7vw, 40px);
    line-height: 0.96;
  }

  .page-projects .testimonials-grid {
    gap: 10px;
  }

  .page-projects .testimonial-card,
  .page-projects .testimonial-card--wide {
    grid-column: auto;
    gap: 10px;
    min-height: 0;
    padding: 14px 13px 12px;
  }

  .page-projects .testimonial-quote-mark {
    top: 7px;
    right: 12px;
    font-size: 34px;
  }

  .page-projects .testimonial-body p {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    font-size: 12.5px;
    line-height: 1.45;
  }

  .page-projects .testimonial-author {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: end;
    gap: 10px;
    padding-top: 9px;
  }

  .page-projects .testimonial-name {
    font-size: 12px;
    line-height: 1.15;
  }

  .page-projects .testimonial-role {
    justify-self: end;
    max-width: 18ch;
    font-size: 10.5px;
    line-height: 1.2;
    text-align: right;
  }
}

.contact-section {
  position: relative;
  z-index: 1;
  padding: clamp(64px, 7vw, 110px) clamp(18px, 4vw, 64px) clamp(80px, 8vw, 130px);
  border-top: 1px solid var(--line);
}

.contact-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(36px, 5vw, 84px);
  width: min(1800px, 100%);
  margin: 0 auto;
}

.contact-aside {
  position: sticky;
  top: 110px;
  align-self: start;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.contact-eyebrow {
  align-self: flex-start;
}

.contact-aside-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(34px, 4.1vw, 62px);
  font-weight: 900;
  line-height: 0.94;
  letter-spacing: 0;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

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

.contact-title-rotator {
  display: inline-block;
  max-width: 100%;
  color: oklch(58% 0.18 240);
  white-space: nowrap;
  transition: width 360ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: width;
}

.contact-title-rotator > span {
  display: inline-block;
  transition:
    opacity 220ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 220ms cubic-bezier(0.22, 1, 0.36, 1);
}

.contact-title-rotator > span.is-swapping {
  opacity: 0;
  transform: translateY(0.12em);
}

.contact-aside-lead {
  max-width: 460px;
  margin: 0;
  color: #c7cbc2;
  font-size: clamp(15px, 1.15vw, 17px);
  line-height: 1.6;
}

.contact-channels {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  padding: 22px 0 0;
  margin: 14px 0 0;
  border-top: 1px solid rgba(243, 240, 232, 0.16);
  list-style: none;
}

.contact-channels li {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 16px 18px 16px 0;
  border-bottom: 1px solid rgba(243, 240, 232, 0.08);
}

.contact-channels li:nth-child(odd) {
  border-right: 1px solid rgba(243, 240, 232, 0.08);
  padding-right: 18px;
}

.contact-channels li:nth-child(even) {
  padding-left: 18px;
}

.contact-channels li:nth-last-child(-n+2) {
  border-bottom: 0;
}

.contact-channel-label {
  color: var(--quiet);
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.contact-channel-value {
  color: var(--text);
  font-family: var(--font-display);
  font-size: clamp(17px, 1.4vw, 21px);
  font-weight: 700;
  letter-spacing: 0.01em;
  text-decoration: none;
  text-transform: uppercase;
}

a.contact-channel-value {
  transition: color 180ms var(--ease-out-quart);
}

a.contact-channel-value:hover,
a.contact-channel-value:focus-visible {
  color: var(--rust);
  outline: none;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding: clamp(28px, 3vw, 44px);
  background: linear-gradient(180deg, rgba(13, 16, 15, 0.92), rgba(8, 10, 9, 0.92));
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow);
}

.contact-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.contact-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}

.contact-field-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.contact-field-hint {
  color: var(--quiet);
  font-size: 11px;
  letter-spacing: 0.18em;
}

.contact-input {
  width: 100%;
  padding: 14px 16px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.4;
  background: rgba(5, 8, 11, 0.6);
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  outline: none;
  transition:
    border-color 180ms var(--ease-out-quart),
    background 180ms var(--ease-out-quart),
    box-shadow 180ms var(--ease-out-quart);
}

.contact-input::placeholder {
  color: var(--quiet);
}

.contact-input:hover {
  border-color: rgba(243, 240, 232, 0.36);
}

.contact-input:focus,
.contact-input:focus-visible {
  border-color: var(--rust);
  background: rgba(5, 8, 11, 0.85);
  box-shadow: 0 0 0 3px rgba(25, 102, 176, 0.18);
}

.contact-input[aria-invalid="true"] {
  border-color: #d95f5f;
  box-shadow: 0 0 0 3px rgba(217, 95, 95, 0.16);
}

.contact-error {
  display: block;
  margin-top: -4px;
  color: #ffb0a8;
  font-size: 12px;
  line-height: 1.45;
}

.contact-select {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 42px;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--muted) 50%),
    linear-gradient(135deg, var(--muted) 50%, transparent 50%);
  background-position: calc(100% - 22px) 55%, calc(100% - 16px) 55%;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  background-color: rgba(5, 8, 11, 0.6);
  cursor: pointer;
}

.contact-select option {
  background: #0d100f;
  color: var(--text);
}

.contact-textarea {
  resize: vertical;
  min-height: 140px;
  font-family: var(--font-body);
}

.contact-fieldset {
  margin: 0;
  padding: 0;
  border: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-fieldset legend {
  padding: 0;
}

.contact-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.contact-chip {
  position: relative;
  cursor: pointer;
}

.contact-chip input {
  position: absolute;
  opacity: 0;
  inset: 0;
  cursor: pointer;
}

.contact-chip span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 18px;
  color: var(--muted);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: rgba(5, 8, 11, 0.5);
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  transition:
    color 180ms var(--ease-out-quart),
    border-color 180ms var(--ease-out-quart),
    background 180ms var(--ease-out-quart);
}

.contact-chip:hover span {
  color: var(--text);
  border-color: rgba(243, 240, 232, 0.4);
}

.contact-chip input:checked + span {
  color: var(--text);
  background: var(--rust);
  border-color: var(--rust);
}

.contact-chip input:focus-visible + span {
  box-shadow: 0 0 0 3px rgba(25, 102, 176, 0.32);
}

.contact-chips.is-invalid .contact-chip span {
  border-color: #d95f5f;
}

.contact-consent {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 12px;
  align-items: start;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
  cursor: pointer;
}

.contact-consent input {
  appearance: none;
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  margin: 1px 0 0;
  background: rgba(5, 8, 11, 0.7);
  border: 1px solid var(--line-strong);
  border-radius: 4px;
  cursor: pointer;
}

.contact-consent input:checked {
  background: var(--rust);
  border-color: var(--rust);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpolyline points='1.5,6 4.5,9.5 10.5,2.5' stroke='white' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: 12px 12px;
  background-position: center;
  background-repeat: no-repeat;
}

.contact-consent input:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(25, 102, 176, 0.28);
}

.contact-consent.is-invalid input {
  border-color: #d95f5f;
  box-shadow: 0 0 0 3px rgba(217, 95, 95, 0.16);
}

.contact-honey {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.contact-form-status {
  display: none;
  margin: 0;
  padding: 14px 16px;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
  background: rgba(5, 8, 11, 0.55);
}

.contact-form-status.is-visible {
  display: block;
}

.contact-form-status.is-success {
  color: #d8f5df;
  border-color: rgba(87, 176, 112, 0.52);
  background: rgba(34, 92, 52, 0.18);
}

.contact-form-status.is-error {
  color: #ffd1cc;
  border-color: rgba(217, 95, 95, 0.52);
  background: rgba(114, 40, 40, 0.18);
}

.contact-submit[disabled] {
  cursor: wait;
  opacity: 0.72;
}

.contact-form-foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  margin-top: 6px;
}

.contact-submit {
  min-width: 220px;
}

.contact-form-note {
  margin: 0;
  color: var(--quiet);
  font-size: 13px;
  line-height: 1.5;
}

@media (max-width: 960px) {
  .contact-shell {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .contact-aside {
    position: static;
  }

  .contact-aside-title {
    font-size: clamp(38px, 9vw, 72px);
    max-width: 11ch;
  }
}

@media (min-width: 621px) and (max-width: 960px) {
  .page-contact .pkg-hero {
    padding: 152px clamp(28px, 4vw, 40px) 64px;
  }

  .page-contact .pkg-hero-title {
    width: 100%;
    font-size: clamp(48px, 6.6vw, 58px);
    line-height: 0.94;
  }

  .page-contact .pkg-hero-line {
    flex-wrap: nowrap;
    white-space: nowrap;
  }

  .contact-section {
    padding: 58px clamp(28px, 4vw, 40px) 64px;
  }

  .contact-shell {
    gap: 30px;
  }

  .contact-aside {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.85fr);
    gap: 22px 32px;
  }

  .contact-eyebrow {
    grid-column: 1 / -1;
  }

  .contact-aside-title {
    max-width: none;
    font-size: clamp(38px, 5.2vw, 46px);
    line-height: 0.96;
  }

  .contact-aside-lead {
    align-self: end;
    max-width: 44ch;
    font-size: 14px;
    line-height: 1.52;
  }

  .contact-channels {
    grid-column: 1 / -1;
    padding-top: 18px;
    margin-top: 0;
  }

  .contact-channels li {
    padding: 12px 16px 12px 0;
  }

  .contact-channels li:nth-child(even) {
    padding-left: 16px;
  }

  .contact-channel-label {
    font-size: 10px;
    letter-spacing: 0.18em;
  }

  .contact-channel-value {
    font-size: 16px;
  }

  .contact-form {
    gap: 18px;
    padding: 22px;
    border-radius: 8px;
  }

  .contact-form-row {
    gap: 14px;
  }

  .contact-field-label {
    font-size: 10px;
    letter-spacing: 0.16em;
  }

  .contact-input {
    padding: 12px 14px;
    font-size: 14px;
  }

  .contact-textarea {
    min-height: 118px;
  }

  .contact-chip span {
    padding: 9px 14px;
    font-size: 10px;
    letter-spacing: 0.14em;
  }

  .contact-submit {
    min-height: 44px;
    font-size: 13px;
  }
}

@media (max-width: 620px) {
  .contact-section {
    padding: 48px 16px 56px;
  }

  .contact-shell {
    gap: 28px;
  }

  .contact-aside {
    gap: 14px;
  }

  .contact-aside-title {
    font-size: clamp(30px, 9.2vw, 40px);
    line-height: 0.96;
    max-width: none;
  }

  .contact-aside-lead {
    font-size: 13px;
    line-height: 1.5;
  }

  .contact-channels {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 16px 0 0;
    margin-top: 6px;
  }

  .contact-channels li,
  .contact-channels li:nth-child(odd),
  .contact-channels li:nth-child(even) {
    border-right: 0;
    padding: 10px 0;
  }

  .contact-channel-label {
    font-size: 9px;
    letter-spacing: 0.18em;
  }

  .contact-channel-value {
    font-size: 14px;
  }

  .contact-form {
    padding: 18px;
    gap: 16px;
  }

  .contact-form-row {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .contact-field {
    gap: 6px;
  }

  .contact-field-label {
    font-size: 10px;
    letter-spacing: 0.16em;
  }

  .contact-field-hint {
    font-size: 9px;
    letter-spacing: 0.14em;
  }

  .contact-input {
    padding: 11px 13px;
    font-size: 14px;
  }

  .contact-chips {
    gap: 6px;
  }

  .contact-chip span {
    padding: 8px 14px;
    font-size: 10px;
    letter-spacing: 0.14em;
  }

  .contact-consent {
    grid-template-columns: 18px 1fr;
    gap: 10px;
    font-size: 12px;
    line-height: 1.45;
  }

  .contact-consent input {
    width: 18px;
    height: 18px;
  }

  .contact-form-foot {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .contact-submit {
    width: 100%;
    min-width: 0;
    min-height: 44px;
    font-size: 13px;
  }

  .contact-form-note {
    font-size: 12px;
    text-align: center;
  }
}

.cookie-banner[hidden],
.cookie-modal[hidden] {
  display: none !important;
}

html.is-cookie-locked,
html.is-cookie-locked body {
  overflow: hidden;
}

.cookie-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  color: var(--muted);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.cookie-eyebrow-mark {
  width: 24px;
  height: 1px;
  background: var(--rust);
}

.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 90;
  padding: 14px 18px calc(14px + env(safe-area-inset-bottom, 0px));
  background: linear-gradient(180deg, rgba(13, 16, 15, 0.96), rgba(8, 10, 9, 0.98));
  border-top: 1px solid var(--line-strong);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  transform: translateY(110%);
  opacity: 0;
  transition:
    transform 240ms var(--ease-out-quart),
    opacity 220ms var(--ease-out-quart);
}

.cookie-banner.is-visible {
  transform: translateY(0);
  opacity: 1;
}

.cookie-banner-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(18px, 3vw, 32px);
  align-items: center;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.cookie-banner-copy {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}

.cookie-banner-text {
  margin: 0;
  color: #c7cbc2;
  font-size: 14px;
  line-height: 1.55;
}

.cookie-banner-text a {
  color: var(--text);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 160ms var(--ease-out-quart);
}

.cookie-banner-text a:hover,
.cookie-banner-text a:focus-visible {
  color: var(--rust);
  outline: none;
}

.cookie-banner-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.cookie-btn-primary,
.cookie-btn-secondary {
  min-width: 180px;
  min-height: 44px;
  font-size: 13px;
}

.cookie-link-btn {
  appearance: none;
  background: none;
  border: 0;
  padding: 6px 4px;
  margin: 0;
  color: var(--muted);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-color: rgba(243, 240, 232, 0.3);
  cursor: pointer;
  transition: color 160ms var(--ease-out-quart);
}

.cookie-link-btn:hover,
.cookie-link-btn:focus-visible {
  color: var(--text);
  text-decoration-color: var(--rust);
  outline: none;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 0;
}

.cookie-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity 220ms var(--ease-out-quart);
}

.cookie-modal.is-open .cookie-modal-backdrop {
  opacity: 1;
}

.cookie-modal-shell {
  position: relative;
  z-index: 1;
  width: min(680px, 100%);
  max-height: min(86vh, 760px);
  margin: 0;
  padding: clamp(24px, 3vw, 38px);
  background: linear-gradient(180deg, rgba(13, 16, 15, 0.98), rgba(8, 10, 9, 0.98));
  border: 1px solid var(--line-strong);
  border-bottom: 0;
  border-radius: 14px 14px 0 0;
  box-shadow: var(--shadow);
  overflow-y: auto;
  transform: translateY(40px);
  opacity: 0;
  transition:
    transform 260ms var(--ease-out-quart),
    opacity 220ms var(--ease-out-quart);
}

@media (min-width: 720px) {
  .cookie-modal {
    align-items: center;
    padding: 24px;
  }
  .cookie-modal-shell {
    border-radius: 14px;
    border-bottom: 1px solid var(--line-strong);
  }
}

.cookie-modal.is-open .cookie-modal-shell {
  transform: translateY(0);
  opacity: 1;
}

.cookie-modal-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: start;
  margin-bottom: 18px;
}

.cookie-modal-title {
  margin: 8px 0 0;
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: 0;
  text-transform: uppercase;
}

.cookie-modal-close {
  appearance: none;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: transparent;
  color: var(--text);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  transition:
    border-color 160ms var(--ease-out-quart),
    background 160ms var(--ease-out-quart);
}

.cookie-modal-close:hover,
.cookie-modal-close:focus-visible {
  border-color: var(--rust);
  background: rgba(25, 102, 176, 0.12);
  outline: none;
}

.cookie-modal-lead {
  margin: 0 0 22px;
  color: #c7cbc2;
  font-size: 14px;
  line-height: 1.6;
}

.cookie-categories {
  list-style: none;
  margin: 0 0 22px;
  padding: 0;
  border-top: 1px solid var(--line);
}

.cookie-category {
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.cookie-category-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: start;
}

.cookie-category-name {
  margin: 0 0 6px;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.cookie-category-desc {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.cookie-toggle {
  position: relative;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  flex-shrink: 0;
}

.cookie-toggle input {
  position: absolute;
  opacity: 0;
  inset: 0;
  cursor: pointer;
}

.cookie-toggle-track {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 24px;
  background: rgba(5, 8, 11, 0.7);
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  transition:
    background 180ms var(--ease-out-quart),
    border-color 180ms var(--ease-out-quart);
}

.cookie-toggle-thumb {
  position: absolute;
  top: 50%;
  left: 3px;
  width: 16px;
  height: 16px;
  background: var(--muted);
  border-radius: 50%;
  transform: translateY(-50%);
  transition:
    transform 200ms var(--ease-out-quart),
    background 180ms var(--ease-out-quart);
}

.cookie-toggle input:checked + .cookie-toggle-track {
  background: var(--rust);
  border-color: var(--rust);
}

.cookie-toggle input:checked + .cookie-toggle-track .cookie-toggle-thumb {
  transform: translate(20px, -50%);
  background: var(--text);
}

.cookie-toggle input:focus-visible + .cookie-toggle-track {
  box-shadow: 0 0 0 3px rgba(25, 102, 176, 0.3);
}

.cookie-toggle.is-locked {
  cursor: not-allowed;
}

.cookie-toggle.is-locked .cookie-toggle-track {
  opacity: 0.7;
}

.cookie-modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.cookie-modal-actions .button {
  min-height: 46px;
  font-size: 13px;
}

@media (max-width: 820px) {
  .cookie-banner-shell {
    grid-template-columns: 1fr;
  }
  .cookie-banner-actions {
    width: 100%;
  }
  .cookie-btn-primary,
  .cookie-btn-secondary {
    flex: 1 1 200px;
    min-width: 0;
  }
  .cookie-link-btn {
    margin-left: auto;
  }
}

@media (max-width: 540px) {
  .cookie-modal-actions {
    flex-direction: column-reverse;
    align-items: stretch;
  }
  .cookie-modal-actions .button {
    width: 100%;
  }
}

@media (min-width: 415px) and (max-width: 480px) {
  body {
    zoom: 1.15;
  }
}

@media (min-width: 1200px) and (max-width: 1320px) and (max-height: 760px) {
  main {
    zoom: 0.9;
  }

  .dream-hero {
    height: calc((100svh + 72px) / 0.9);
    min-height: calc((100svh + 72px) / 0.9);
  }

  .dream-title {
    min-width: calc(var(--dream-title-width, 0px) / 0.9);
  }
}

@media (min-width: 1321px) and (max-width: 1400px) and (max-height: 800px) {
  main {
    zoom: 0.9;
  }

  .dream-hero {
    height: calc((100svh + 72px) / 0.9);
    min-height: calc((100svh + 72px) / 0.9);
  }

  .dream-title {
    min-width: calc(var(--dream-title-width, 0px) / 0.9);
  }
}
