@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;700;850;900&family=Plus+Jakarta+Sans:wght@400;500;700;800&display=swap');

:root {
  color-scheme: light;
  --bg: #fbfdff;
  --bg-strong: #ffffff;
  --soft: #f3f8fb;
  --soft-2: #edf5f8;
  --text: #0d1b2a;
  --text-2: #17283b;
  --muted: #526274;
  --border: #cfdce4;
  --line: #dfebf1;
  --accent: #007394;
  --accent-dark: #005f7e;
  --accent-soft: #dceff5;
  --signal: #c8711e;
  --signal-soft: #fff3e4;
  --success: #118a5f;
  --ink: #0a1522;
  --shadow: 0 18px 50px rgba(13, 27, 42, 0.08);
  --shadow-strong: 0 28px 70px rgba(13, 27, 42, 0.12);
  --radius: 12px;
  font-family:
    "Plus Jakarta Sans", Inter, ui-sans-serif, system-ui, sans-serif;
  --font-title: "Outfit", sans-serif;
}

:root[data-theme="dark"] {
  color-scheme: dark;
  --bg: #07111d;
  --bg-strong: #0c1826;
  --soft: #101f2e;
  --soft-2: #16283a;
  --text: #f4f8fb;
  --text-2: #d9e7ef;
  --muted: #9cafbf;
  --border: #2a4054;
  --line: #203448;
  --accent: #55c5e2;
  --accent-dark: #8adcf1;
  --accent-soft: rgba(85, 197, 226, 0.16);
  --signal: #eda653;
  --signal-soft: rgba(237, 166, 83, 0.16);
  --success: #50d49b;
  --ink: #050b13;
  --shadow: 0 22px 60px rgba(0, 0, 0, 0.28);
  --shadow-strong: 0 32px 80px rgba(0, 0, 0, 0.36);
  --font-title: "Outfit", sans-serif;
  --radius: 12px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  min-width: 320px;
  margin: 0;
  background:
    linear-gradient(180deg, rgba(251, 253, 255, 0.96), rgba(255, 255, 255, 1) 42%),
    var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  transition: background-color 300ms ease, color 300ms ease;
}

:root[data-theme="dark"] body {
  background:
    radial-gradient(circle at 82% 8%, rgba(85, 197, 226, 0.16), transparent 36%),
    radial-gradient(circle at 16% 40%, rgba(237, 166, 83, 0.09), transparent 40%),
    radial-gradient(circle at 50% 80%, rgba(17, 138, 95, 0.08), transparent 44%),
    linear-gradient(180deg, rgba(7, 17, 29, 0.98), #091523 42%, #07111d),
    var(--bg);
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(13, 27, 42, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(13, 27, 42, 0.035) 1px, transparent 1px);
  background-size: 44px 44px;
  content: "";
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.86), transparent 62%);
}

:root[data-theme="dark"] body::before {
  background-image:
    linear-gradient(rgba(154, 219, 233, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(154, 219, 233, 0.04) 1px, transparent 1px);
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.78), transparent 66%);
}

body::after {
  position: fixed;
  inset: 0;
  z-index: 28;
  pointer-events: none;
  background: rgba(10, 21, 34, 0.16);
  content: "";
  opacity: 0;
  backdrop-filter: blur(2px);
  transition: opacity 180ms ease;
}

body.menu-open {
  overflow: hidden;
}

body.menu-open::after {
  opacity: 1;
  pointer-events: auto;
}

::selection {
  background: var(--accent-soft);
  color: var(--accent-dark);
}

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

img,
svg {
  display: block;
}

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

button,
a,
summary {
  -webkit-tap-highlight-color: transparent;
}

button:focus-visible,
a:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(0, 115, 148, 0.28);
  outline-offset: 4px;
}

.scroll-progress {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 80;
  height: 3px;
  transform: scaleX(0);
  transform-origin: left;
  background: linear-gradient(90deg, var(--accent), var(--signal));
}

.action-dock {
  position: fixed;
  right: clamp(18px, 4vw, 42px);
  bottom: 22px;
  z-index: 35;
  display: flex;
  gap: 6px;
  padding: 6px;
  border: 1px solid rgba(207, 220, 228, 0.92);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(0, 115, 148, 0.08), transparent 48%),
    rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 44px rgba(13, 27, 42, 0.16);
  opacity: 0;
  pointer-events: none;
  transform: translateY(16px);
  backdrop-filter: blur(18px);
  transition:
    opacity 220ms ease,
    transform 220ms ease,
    border-color 180ms ease;
}

.action-dock.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

body.menu-open .action-dock {
  opacity: 0;
  pointer-events: none;
}

.action-dock a,
.action-dock button {
  display: inline-flex;
  min-height: 42px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 6px;
  padding: 0 14px;
  background: transparent;
  color: var(--text-2);
  font: inherit;
  font-size: 13px;
  font-weight: 850;
  transition:
    background 160ms ease,
    color 160ms ease,
    transform 160ms ease;
}

.action-dock .dock-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 10px 22px rgba(0, 115, 148, 0.18);
}

.action-dock a:hover,
.action-dock button:hover {
  transform: translateY(-1px);
}

.action-dock a:not(.dock-primary):hover,
.action-dock button:hover {
  background: var(--soft);
  color: var(--accent-dark);
}

.action-dock .dock-primary:hover {
  background: var(--accent-dark);
  color: #fff;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: 1fr auto auto auto;
  align-items: center;
  gap: 32px;
  padding: 22px clamp(20px, 6vw, 80px);
  border-bottom: 1px solid rgba(207, 220, 228, 0.85);
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(18px);
  transition:
    padding 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

:root[data-theme="dark"] .action-dock,
:root[data-theme="dark"] .site-header,
:root[data-theme="dark"] .mobile-menu {
  border-color: rgba(86, 124, 151, 0.42);
  background:
    linear-gradient(135deg, rgba(85, 197, 226, 0.1), transparent 48%),
    rgba(8, 18, 30, 0.88);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.28);
}

.action-dock,
.site-header,
.mobile-menu {
  transition: background-color 300ms ease, border-color 300ms ease, box-shadow 300ms ease, padding 180ms ease;
}

:root[data-theme="dark"] .site-header.is-scrolled {
  background:
    linear-gradient(135deg, rgba(85, 197, 226, 0.08), transparent 48%),
    rgba(8, 18, 30, 0.95);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.32);
}

.site-header.is-scrolled {
  padding-top: 15px;
  padding-bottom: 15px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 12px 30px rgba(13, 27, 42, 0.08);
}

.brand {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 12px;
  font-size: 22px;
  font-weight: 850;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  place-items: center;
  color: var(--accent);
}

.brand-mark svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.3;
}

nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--text-2);
  font-size: 15px;
  font-weight: 700;
}

nav a,
.footer-links a {
  position: relative;
  transition: color 160ms ease;
}

nav a::after,
.footer-links a::after {
  position: absolute;
  right: 0;
  bottom: -5px;
  left: 0;
  height: 2px;
  transform: scaleX(0);
  transform-origin: right;
  background: currentColor;
  content: "";
  transition: transform 180ms ease;
}

nav a:hover,
nav a.is-active,
.footer-links a:hover {
  color: var(--accent);
}

nav a:hover::after,
nav a.is-active::after,
.footer-links a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.button {
  --button-x: 0px;
  --button-y: 0px;
  --button-lift: 0px;
  --button-glow-x: 50%;
  --button-glow-y: 50%;
  position: relative;
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  isolation: isolate;
  padding: 0 26px;
  border: 1px solid var(--accent);
  border-radius: var(--radius);
  background: var(--accent);
  color: #fff;
  font-size: 15px;
  font-weight: 850;
  box-shadow: 0 10px 24px rgba(0, 115, 148, 0.2);
  transform: translate3d(var(--button-x), calc(var(--button-y) - var(--button-lift)), 0);
  transition:
    transform 160ms ease,
    background 160ms ease,
    border-color 160ms ease,
    box-shadow 160ms ease;
  will-change: transform;
}

.button::after {
  position: absolute;
  inset: 0;
  z-index: 0;
  transform: scale(0.82);
  background:
    radial-gradient(circle at var(--button-glow-x) var(--button-glow-y), rgba(255, 255, 255, 0.48), transparent 34%),
    linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.16), transparent);
  content: "";
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 220ms ease,
    transform 320ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.button:hover,
.button:focus-visible {
  --button-lift: 2px;
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  box-shadow: 0 16px 30px rgba(0, 115, 148, 0.24);
}

.button:hover::after,
.button:focus-visible::after {
  opacity: 1;
  transform: scale(1);
}

.button-secondary {
  background: #fff;
  color: var(--accent);
  box-shadow: none;
}

.button-secondary::after {
  background:
    radial-gradient(circle at var(--button-glow-x) var(--button-glow-y), rgba(0, 115, 148, 0.16), transparent 36%),
    linear-gradient(100deg, transparent, rgba(0, 115, 148, 0.08), transparent);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: var(--soft);
  color: var(--accent-dark);
}

.button-small {
  min-height: 44px;
  padding: 0 22px;
}

.theme-toggle {
  position: relative;
  display: inline-grid;
  width: 44px;
  height: 44px;
  cursor: pointer;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(0, 115, 148, 0.18);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 28% 22%, rgba(255, 255, 255, 0.9), transparent 34%),
    rgba(220, 239, 245, 0.72);
  color: var(--accent-dark);
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    background 160ms ease,
    color 160ms ease,
    box-shadow 160ms ease;
}

.theme-toggle svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.theme-toggle .theme-moon {
  opacity: 0;
  transform: translateY(5px) scale(0.82);
  transform-origin: center;
}

.theme-toggle .theme-sun,
.theme-toggle .theme-moon {
  transition:
    opacity 180ms ease,
    transform 220ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.theme-toggle:hover,
.theme-toggle:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(0, 115, 148, 0.34);
  box-shadow: 0 12px 24px rgba(0, 115, 148, 0.12);
}

:root[data-theme="dark"] .theme-toggle {
  border-color: rgba(85, 197, 226, 0.24);
  background:
    radial-gradient(circle at 70% 24%, rgba(237, 166, 83, 0.22), transparent 34%),
    rgba(17, 31, 46, 0.88);
  color: var(--accent);
}

:root[data-theme="dark"] .theme-toggle .theme-sun {
  opacity: 0;
  transform: translateY(-5px) scale(0.82);
}

:root[data-theme="dark"] .theme-toggle .theme-moon {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.mobile-theme-toggle {
  width: 100%;
  grid-template-columns: 24px 1fr;
  justify-content: start;
  gap: 10px;
  padding: 0 14px;
  color: var(--accent-dark);
  font: inherit;
  font-size: 13px;
  font-weight: 900;
}

.mobile-theme-toggle svg {
  width: 20px;
  height: 20px;
}

.mobile-theme-toggle span {
  justify-self: start;
}

.menu-toggle {
  position: relative;
  display: none;
  width: 44px;
  height: 44px;
  cursor: pointer;
  place-items: center;
  gap: 4px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-strong);
  color: var(--text);
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    box-shadow 160ms ease;
}

.menu-toggle span:not(.sr-only) {
  position: absolute;
  left: 12px;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition:
    transform 180ms ease,
    opacity 180ms ease;
}

.menu-toggle span:nth-of-type(2) {
  top: 14px;
}

.menu-toggle span:nth-of-type(3) {
  top: 21px;
}

.menu-toggle span:nth-of-type(4) {
  top: 28px;
}

.menu-toggle:hover {
  transform: translateY(-1px);
  border-color: rgba(0, 115, 148, 0.34);
  box-shadow: 0 10px 22px rgba(13, 27, 42, 0.08);
}

.menu-toggle[aria-expanded="true"] span:nth-of-type(2) {
  top: 21px;
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-of-type(3) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-of-type(4) {
  top: 21px;
  transform: rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  top: 82px;
  right: clamp(18px, 5vw, 44px);
  left: clamp(18px, 5vw, 44px);
  z-index: 29;
  display: grid;
  gap: 16px;
  max-height: calc(100dvh - 104px);
  overflow-y: auto;
  padding: 18px;
  border: 1px solid rgba(207, 220, 228, 0.95);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-strong);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-10px) scale(0.985);
  transform-origin: top right;
  backdrop-filter: blur(18px);
  overscroll-behavior: contain;
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.mobile-menu[hidden] {
  display: none;
}

.mobile-menu.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.mobile-menu nav {
  display: grid;
  gap: 4px;
}

.mobile-menu nav a {
  display: flex;
  min-height: 42px;
  align-items: center;
  border-radius: var(--radius);
  padding: 0 12px;
}

.mobile-menu nav a:hover,
.mobile-menu nav a.is-active {
  background: var(--soft);
}

.mobile-menu .button {
  width: 100%;
}

.mobile-policy-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 4px;
}

.mobile-policy-links a {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 0 11px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  transition:
    border-color 160ms ease,
    color 160ms ease,
    background 160ms ease;
}

.mobile-policy-links a:hover {
  border-color: rgba(0, 115, 148, 0.28);
  background: var(--soft);
  color: var(--accent-dark);
}

[data-hover-card] {
  --hover-x: 50%;
  --hover-y: 50%;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

[data-hover-card] > * {
  position: relative;
  z-index: 1;
}

[data-hover-card]::after {
  position: absolute;
  inset: -1px;
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(circle 220px at var(--hover-x) var(--hover-y), rgba(0, 115, 148, 0.16), transparent 72%);
  content: "";
  opacity: 0;
  transition: opacity 220ms ease;
}

:root[data-theme="dark"] [data-hover-card]::after {
  background: radial-gradient(circle 240px at var(--hover-x) var(--hover-y), rgba(85, 197, 226, 0.18), transparent 72%);
}

[data-hover-card].is-hovering::after {
  opacity: 1;
}

.delivery-board[data-hover-card]::after,
.quality-panel[data-hover-card]::after {
  background: linear-gradient(135deg, rgba(154, 219, 233, 0.2), rgba(255, 255, 255, 0.05));
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  align-items: center;
  min-height: 760px;
  column-gap: clamp(34px, 6vw, 84px);
  row-gap: 0;
  overflow: hidden;
  padding: clamp(46px, 7vw, 84px) clamp(20px, 6vw, 80px);
}

.hero::after {
  position: absolute;
  right: clamp(20px, 6vw, 80px);
  bottom: 0;
  left: clamp(20px, 6vw, 80px);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(13, 27, 42, 0.12), transparent);
  content: "";
}

.hero-copy {
  grid-column: 1;
  grid-row: 1;
  max-width: 640px;
  min-width: 0;
}

.hero-kicker {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  gap: 10px;
  padding: 0 12px;
  border: 1px solid rgba(0, 115, 148, 0.18);
  border-radius: 999px;
  background: rgba(220, 239, 245, 0.76);
  color: var(--accent-dark);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-kicker::before {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 6px rgba(17, 138, 95, 0.1);
  content: "";
}

:root[data-theme="dark"] .hero-kicker {
  border-color: rgba(85, 197, 226, 0.34);
  background: rgba(10, 21, 34, 0.78);
  color: #dff8ff;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 12px 26px rgba(0, 0, 0, 0.2);
}

:root[data-theme="dark"] .hero-kicker::before {
  box-shadow: 0 0 0 6px rgba(80, 212, 155, 0.16);
}

h1,
h2,
h3,
h4 {
  margin: 0;
  font-family: var(--font-title);
  letter-spacing: -0.02em;
}

h1 {
  max-width: 720px;
  margin-top: 18px;
  font-size: clamp(48px, 6.5vw, 76px);
  font-weight: 900;
  line-height: 0.96;
  letter-spacing: -0.03em;
  overflow-wrap: normal;
}

:root[data-theme="dark"] h1 {
  background: linear-gradient(135deg, #ffffff 10%, #d1ecf4 55%, #8adcf1 90%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-title {
  margin-top: 22px;
  color: var(--accent);
  font-family: var(--font-title);
  font-size: clamp(28px, 4vw, 43px);
  font-weight: 850;
  line-height: 1.12;
  max-width: 100%;
  overflow-wrap: anywhere;
  text-wrap: balance;
}

:root[data-theme="dark"] .hero-title {
  background: linear-gradient(135deg, var(--accent) 30%, var(--accent-dark) 90%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-text {
  max-width: 570px;
  margin-top: 20px;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.55;
  text-wrap: pretty;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 28px;
}

.hero-status {
  --hero-status-progress: 0;
  position: relative;
  display: grid;
  max-width: 610px;
  gap: 6px;
  overflow: hidden;
  isolation: isolate;
  margin-top: 22px;
  padding: 10px 12px;
  border: 1px solid rgba(207, 220, 228, 0.28);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(0, 115, 148, 0.08), transparent 45%),
    rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 42px rgba(13, 27, 42, 0.06);
  backdrop-filter: blur(20px);
}

:root[data-theme="dark"] .hero-status {
  border-color: rgba(85, 197, 226, 0.18);
  background:
    linear-gradient(135deg, rgba(85, 197, 226, 0.08), transparent 45%),
    rgba(8, 18, 30, 0.82);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.32);
}

.hero-status::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(13, 27, 42, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(13, 27, 42, 0.03) 1px, transparent 1px);
  background-size: 28px 28px;
  content: "";
  opacity: 0.48;
}

.hero-status::after {
  position: absolute;
  top: -28%;
  bottom: -28%;
  left: 0;
  width: 32%;
  transform: translateX(-130%) skewX(-12deg);
  background: linear-gradient(90deg, transparent, rgba(154, 219, 233, 0.2), rgba(200, 113, 30, 0.12), transparent);
  content: "";
  pointer-events: none;
}

.hero-status.is-visible::after,
.hero-status.is-swapping::after {
  animation: hero-status-sweep 820ms ease forwards;
}

.hero-status > * {
  position: relative;
  z-index: 1;
}

.hero-status-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  border-bottom: 1px solid rgba(207, 220, 228, 0.42);
  padding-bottom: 6px;
  gap: 16px;
}

:root[data-theme="dark"] .hero-status-top {
  border-color: rgba(255, 255, 255, 0.08);
}

.hero-status-top span {
  display: block;
  color: var(--accent-dark);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-status-top strong {
  display: block;
  margin-top: 3px;
  color: var(--text);
  font-size: 15px;
  line-height: 1.15;
}

.hero-status-top em {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 0 10px;
  border: 1px solid rgba(0, 115, 148, 0.16);
  border-radius: 999px;
  background: rgba(220, 239, 245, 0.7);
  color: var(--accent-dark);
  font-size: 11px;
  font-style: normal;
  font-weight: 900;
  white-space: nowrap;
}

.hero-status-track {
  height: 7px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(207, 220, 228, 0.76);
}

.hero-status-track span {
  display: block;
  width: 100%;
  height: 100%;
  transform: scaleX(var(--hero-status-progress));
  transform-origin: left;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--accent), var(--signal), var(--success));
  transition: transform 360ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

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

.hero-status-grid span {
  display: grid;
  min-height: 36px;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 8px;
  padding: 6px 8px;
  border: 1px solid rgba(207, 220, 228, 0.8);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--muted);
  transition:
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.hero-status-grid em {
  display: inline-grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 50%;
  background: rgba(220, 239, 245, 0.72);
  color: var(--accent-dark);
  font-size: 10px;
  font-style: normal;
  font-weight: 950;
}

.hero-status-grid strong {
  color: currentColor;
  font-size: 12px;
  line-height: 1.15;
}

.hero-status-grid span.is-hero-status-active {
  transform: translateY(-1px);
  border-color: rgba(200, 113, 30, 0.28);
  background: rgba(250, 237, 222, 0.75);
  color: var(--text);
}

.hero-status-grid span.is-hero-status-active em {
  background: linear-gradient(135deg, var(--accent), var(--signal));
  color: #fff;
  box-shadow: 0 0 0 5px rgba(200, 113, 30, 0.1);
}

.hero-status-grid span.is-hero-status-complete {
  border-color: rgba(17, 138, 95, 0.18);
  background: rgba(220, 239, 245, 0.58);
  color: var(--text-2);
}

.hero-status.is-swapping .hero-status-grid span {
  animation: hero-status-step-in 360ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.hero-status.is-swapping .hero-status-grid span:nth-child(2) {
  animation-delay: 45ms;
}

.hero-status.is-swapping .hero-status-grid span:nth-child(3) {
  animation-delay: 90ms;
}

.hero-actions + .hero-status {
  margin-top: 16px;
}

.hero-metrics {
  display: grid;
  max-width: 610px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  margin-top: 28px;
  border: 1px solid rgba(207, 220, 228, 0.28);
  border-radius: var(--radius);
  background: rgba(207, 220, 228, 0.38);
  box-shadow: 0 18px 42px rgba(13, 27, 42, 0.06);
  backdrop-filter: blur(20px);
}

:root[data-theme="dark"] .hero-metrics {
  border-color: rgba(85, 197, 226, 0.18);
  background: rgba(85, 197, 226, 0.06);
}

.hero-metrics article {
  position: relative;
  min-height: 118px;
  overflow: hidden;
  padding: 18px;
  background: rgba(255, 255, 255, 0.88);
}

:root[data-theme="dark"] .hero-metrics article {
  background: rgba(8, 18, 30, 0.82);
}

.hero-metrics article::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  transform: scaleX(0);
  transform-origin: left;
  background: linear-gradient(90deg, var(--accent), var(--signal));
  content: "";
}

.hero-metrics.is-visible article::before {
  animation: metric-line-in 720ms cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.hero-metrics.is-visible article:nth-child(2)::before {
  animation-delay: 90ms;
}

.hero-metrics.is-visible article:nth-child(3)::before {
  animation-delay: 180ms;
}

.hero-metrics span,
.hero-metrics strong,
.hero-metrics small {
  display: block;
}

.hero-metrics span {
  color: var(--accent);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-metrics strong {
  margin-top: 8px;
  color: var(--text);
  font-size: 16px;
  line-height: 1.2;
}

.hero-metrics small {
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 650;
  line-height: 1.38;
}

.trust-row {
  display: grid;
  grid-column: 1;
  grid-row: 2;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-self: start;
  gap: 20px;
  margin-top: 44px;
}

.trust-row div {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #1a2c3f;
  font-size: 14px;
  font-weight: 850;
}

.trust-row svg {
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  color: var(--accent);
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

:root[data-theme="dark"] .trust-row div {
  color: var(--text-2);
}

.hero-media {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  --media-x: 0px;
  --media-y: 0px;
  position: relative;
  grid-column: 2;
  grid-row: 1 / span 2;
  margin: 0;
  isolation: isolate;
  transform: translateY(var(--reveal-y, 0px)) rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
  transform-style: preserve-3d;
  transition: transform 180ms ease;
}

.hero-media::before {
  position: absolute;
  inset: 7% -8% -7% 8%;
  z-index: -1;
  border: 1px solid rgba(0, 115, 148, 0.08);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(220, 239, 245, 0.9), rgba(255, 255, 255, 0.25)),
    repeating-linear-gradient(90deg, rgba(0, 115, 148, 0.08) 0 1px, transparent 1px 26px);
  content: "";
}

.hero-media img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow-strong);
  transform: translate3d(var(--media-x), var(--media-y), 0) scale(1.01);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.hero-signal-card {
  position: absolute;
  top: clamp(14px, 3vw, 30px);
  left: clamp(-14px, -1.6vw, -4px);
  width: min(272px, 48%);
  overflow: hidden;
  padding: 16px;
  border: 1px solid rgba(154, 219, 233, 0.28);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(13, 27, 42, 0.92), rgba(10, 21, 34, 0.82)),
    var(--ink);
  color: #fff;
  box-shadow: 0 22px 48px rgba(10, 21, 34, 0.22);
  transform: translate3d(calc(var(--media-x) * -0.28), calc(var(--media-y) * -0.22), 0);
  transition: transform 180ms ease;
}

.hero-signal-card::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 22px 22px;
  content: "";
  opacity: 0.5;
  pointer-events: none;
}

.hero-signal-card > * {
  position: relative;
  z-index: 1;
}

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

.hero-signal-card span {
  color: rgba(255, 255, 255, 0.66);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-signal-card strong {
  margin-top: 6px;
  color: #fff;
  font-size: 16px;
  line-height: 1.2;
}

.hero-signal-meter {
  height: 6px;
  overflow: hidden;
  margin-top: 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
}

.hero-signal-meter span {
  width: 100%;
  height: 100%;
  transform: scaleX(0);
  transform-origin: left;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--accent-light), var(--signal));
  box-shadow: 0 0 20px rgba(154, 219, 233, 0.26);
}

.hero-media.is-visible .hero-signal-meter span {
  animation: signal-meter-fill 1600ms cubic-bezier(0.2, 0.8, 0.2, 1) 320ms forwards;
}

.hero-signal-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 6px;
  margin-top: 14px;
}

.hero-signal-grid em {
  display: inline-grid;
  min-height: 28px;
  place-items: center;
  border: 1px solid rgba(154, 219, 233, 0.17);
  border-radius: 6px;
  background: rgba(154, 219, 233, 0.08);
  color: rgba(255, 255, 255, 0.74);
  font-size: 11px;
  font-style: normal;
  font-weight: 850;
}

.hero-media.is-visible .hero-signal-grid em {
  animation: signal-chip-pulse 2600ms ease-in-out infinite;
}

.hero-media.is-visible .hero-signal-grid em:nth-child(2) {
  animation-delay: 180ms;
}

.hero-media.is-visible .hero-signal-grid em:nth-child(3) {
  animation-delay: 360ms;
}

.workflow-snapshot {
  --workflow-duration: 2300ms;
  position: absolute;
  right: clamp(16px, 3vw, 34px);
  bottom: -34px;
  width: min(330px, calc(100% - 36px));
  padding: 18px;
  border: 1px solid rgba(176, 199, 213, 0.96);
  border-radius: var(--radius);
  background: rgba(248, 252, 255, 0.98);
  box-shadow: 0 22px 50px rgba(13, 27, 42, 0.22);
  backdrop-filter: blur(16px);
}

.workflow-snapshot::before {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    linear-gradient(135deg, rgba(0, 115, 148, 0.08), transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.55), transparent);
  content: "";
  opacity: 0.52;
  pointer-events: none;
}

.workflow-snapshot > * {
  position: relative;
  z-index: 1;
}

.snapshot-status {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #53677a;
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
}

.snapshot-status span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 6px rgba(17, 138, 95, 0.1);
}

.workflow-timer {
  display: block;
  height: 6px;
  overflow: hidden;
  margin-top: 12px;
  border-radius: 999px;
  background: rgba(207, 220, 228, 0.58);
}

.workflow-timer span {
  display: block;
  width: 100%;
  height: 100%;
  transform: scaleX(0);
  transform-origin: left;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--accent), var(--signal));
  box-shadow: 0 0 18px rgba(0, 115, 148, 0.22);
}

.workflow-snapshot.is-advancing .workflow-timer span {
  animation: workflow-timer-fill var(--workflow-duration) linear forwards;
}

.workflow-snapshot ol {
  display: grid;
  gap: 10px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.workflow-snapshot li {
  position: relative;
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 12px;
  overflow: hidden;
  isolation: isolate;
  min-height: 42px;
  padding: 10px 8px 8px;
  border-top: 1px solid rgba(159, 187, 205, 0.78);
  border-radius: 6px;
  transition:
    background 220ms ease,
    border-color 220ms ease,
    transform 220ms ease;
}

.workflow-snapshot li::before {
  position: absolute;
  z-index: 1;
  top: -1px;
  bottom: 0;
  left: 0;
  width: 3px;
  transform: scaleY(0);
  transform-origin: top;
  background: linear-gradient(180deg, var(--accent), var(--signal));
  content: "";
  transition: transform 360ms ease;
}

.workflow-snapshot li::after {
  position: absolute;
  inset: 0;
  z-index: 0;
  transform: scaleX(0);
  transform-origin: left;
  background: linear-gradient(90deg, rgba(0, 115, 148, 0.12), rgba(200, 113, 30, 0.08), transparent);
  content: "";
  opacity: 0;
  pointer-events: none;
}

.workflow-snapshot li.is-active {
  background: rgba(220, 239, 245, 0.86);
  border-color: rgba(0, 115, 148, 0.28);
  transform: translateX(3px);
}

.workflow-snapshot li.is-active::before,
.workflow-snapshot li.is-complete::before {
  transform: scaleY(1);
}

.workflow-snapshot li.is-active::after {
  opacity: 1;
  animation: workflow-row-fill var(--workflow-duration) linear forwards;
}

.workflow-snapshot li.is-complete {
  background: rgba(234, 246, 250, 0.72);
}

.workflow-snapshot strong {
  position: relative;
  z-index: 2;
  color: #102234;
  font-size: 14px;
  line-height: 1.25;
}

.workflow-snapshot li span {
  position: relative;
  z-index: 2;
  color: #465b6d;
  font-size: 13px;
  line-height: 1.35;
}

.workflow-snapshot li.is-active strong {
  color: var(--accent-dark);
}

.workflow-snapshot li.is-active span {
  color: #345064;
  font-weight: 700;
}

.workflow-snapshot li.is-complete strong {
  color: var(--accent-dark);
}

.workflow-snapshot li.is-complete span {
  color: #345064;
  font-weight: 700;
}

@keyframes workflow-timer-fill {
  to {
    transform: scaleX(1);
  }
}

@keyframes workflow-row-fill {
  0% {
    transform: scaleX(0);
  }

  100% {
    transform: scaleX(1);
  }
}

@keyframes metric-line-in {
  to {
    transform: scaleX(1);
  }
}

@keyframes signal-meter-fill {
  to {
    transform: scaleX(0.86);
  }
}

@keyframes signal-chip-pulse {
  0%,
  100% {
    border-color: rgba(154, 219, 233, 0.17);
    background: rgba(154, 219, 233, 0.08);
  }

  45% {
    border-color: rgba(200, 113, 30, 0.36);
    background: rgba(200, 113, 30, 0.16);
  }
}

@keyframes hero-status-sweep {
  0% {
    opacity: 0;
    transform: translateX(-130%) skewX(-12deg);
  }

  18% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translateX(360%) skewX(-12deg);
  }
}

@keyframes hero-status-step-in {
  0% {
    opacity: 0.58;
    transform: translateY(7px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes proof-card-in {
  0% {
    opacity: 0;
    transform: translateY(12px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes proof-card-sheen {
  0% {
    opacity: 0;
    transform: translateX(-130%) skewX(-12deg);
  }

  18% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translateX(360%) skewX(-12deg);
  }
}

@keyframes proof-index-pop {
  0% {
    transform: scale(0.86);
    box-shadow: none;
  }

  62% {
    transform: scale(1.08);
    box-shadow:
      0 0 0 6px rgba(154, 219, 233, 0.16),
      0 0 22px rgba(0, 115, 148, 0.12);
  }

  100% {
    transform: scale(1);
    box-shadow: none;
  }
}

.proof-strip {
  display: grid;
  max-width: 1280px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin: 0 auto;
  padding: 0 clamp(20px, 6vw, 80px) clamp(42px, 5vw, 60px);
}

.proof-strip div {
  position: relative;
  display: grid;
  grid-template-columns: 40px 1fr;
  align-content: start;
  gap: 6px 14px;
  min-height: 118px;
  overflow: hidden;
  padding: 24px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.92);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.proof-strip div::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  transform: scaleX(0);
  transform-origin: left;
  background: linear-gradient(90deg, var(--accent), var(--signal));
  content: "";
  transition: transform 520ms ease;
}

.proof-strip div::after {
  position: absolute;
  top: -20%;
  bottom: -20%;
  left: 0;
  width: 32%;
  transform: translateX(-130%) skewX(-12deg);
  background: linear-gradient(90deg, transparent, rgba(154, 219, 233, 0.16), rgba(200, 113, 30, 0.09), transparent);
  content: "";
  opacity: 0;
  pointer-events: none;
}

.js-ready .proof-strip div {
  opacity: 0;
  transform: translateY(12px);
}

.js-ready .proof-strip.is-visible div {
  animation: proof-card-in 520ms cubic-bezier(0.2, 0.7, 0.2, 1) forwards;
}

.proof-strip.is-visible div::after {
  animation: proof-card-sheen 820ms 120ms ease forwards;
}

.proof-strip.is-visible .proof-index {
  animation: proof-index-pop 560ms 90ms cubic-bezier(0.2, 0.7, 0.2, 1) both;
}

.proof-strip.is-visible div:nth-child(2),
.proof-strip.is-visible div:nth-child(2)::before,
.proof-strip.is-visible div:nth-child(2)::after,
.proof-strip.is-visible div:nth-child(2) .proof-index {
  animation-delay: 80ms;
  transition-delay: 80ms;
}

.proof-strip.is-visible div:nth-child(3),
.proof-strip.is-visible div:nth-child(3)::before,
.proof-strip.is-visible div:nth-child(3)::after,
.proof-strip.is-visible div:nth-child(3) .proof-index {
  animation-delay: 160ms;
  transition-delay: 160ms;
}

.proof-strip.is-visible div:nth-child(4),
.proof-strip.is-visible div:nth-child(4)::before,
.proof-strip.is-visible div:nth-child(4)::after,
.proof-strip.is-visible div:nth-child(4) .proof-index {
  animation-delay: 240ms;
  transition-delay: 240ms;
}

.proof-strip.is-visible div::before {
  transform: scaleX(1);
}

@media (hover: hover) and (pointer: fine) {
  .proof-strip div:hover {
    transform: translateY(-2px);
    border-color: rgba(0, 115, 148, 0.2);
    box-shadow: 0 16px 36px rgba(13, 27, 42, 0.08);
  }
}

.proof-strip strong,
.proof-strip span:not(.proof-index) {
  display: block;
}

.proof-strip strong {
  align-self: center;
  color: var(--text);
  font-size: 16px;
  line-height: 1.25;
}

.proof-strip span:not(.proof-index) {
  grid-column: 2;
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.proof-index {
  display: inline-grid;
  grid-row: 1 / span 2;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(0, 115, 148, 0.16);
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent-dark);
  font-size: 12px;
  font-weight: 850;
}

.proof-strip a,
.details-list a {
  color: var(--accent);
  font-weight: 850;
}

.section {
  padding: clamp(38px, 6vw, 92px) clamp(20px, 6vw, 80px);
}

.section-soft {
  background:
    linear-gradient(180deg, rgba(243, 248, 251, 0.98), rgba(237, 245, 248, 0.98)),
    var(--soft);
}

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

h2 {
  font-family: var(--font-title);
  font-size: clamp(32px, 4vw, 42px);
  font-weight: 850;
  line-height: 1.12;
}

.section-heading p,
.contact-section p,
.delivery-copy p {
  margin-top: 12px;
  color: var(--muted);
  font-size: 19px;
}

.service-grid {
  position: relative;
  display: grid;
  max-width: 1120px;
  margin: 0 auto;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.service-item {
  --service-level: 36%;
  position: relative;
  display: flex;
  min-height: 430px;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
  padding: 42px clamp(24px, 4vw, 44px);
  text-align: center;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    transform 180ms ease,
    box-shadow 180ms ease;
}

.service-item:nth-child(2) {
  --service-level: 56%;
}

.service-item:nth-child(3) {
  --service-level: 72%;
}

.service-item:nth-child(4) {
  --service-level: 88%;
}

.service-item::before {
  position: absolute;
  z-index: 2;
  top: -1px;
  right: 20%;
  left: 20%;
  height: 3px;
  transform: scaleX(0);
  background: var(--accent);
  content: "";
  transition: transform 180ms ease;
}

.service-item::after {
  position: absolute;
  right: 22px;
  bottom: 18px;
  left: 22px;
  height: 3px;
  border-radius: 999px;
  background:
    linear-gradient(90deg, var(--accent), var(--signal)) 0 0 / var(--service-level) 100% no-repeat,
    rgba(207, 220, 228, 0.68);
  content: "";
  opacity: 0.74;
  transform: scaleX(0.72);
  transform-origin: left;
  transition:
    opacity 220ms ease,
    transform 260ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.service-item:hover,
.service-item.is-service-active {
  z-index: 1;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

:root[data-theme="dark"] .service-item:hover,
:root[data-theme="dark"] .service-item.is-service-active {
  background: rgba(12, 24, 38, 0.82);
  border-color: rgba(85, 197, 226, 0.28);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.38);
}

.service-item:hover::before,
.service-item.is-service-active::before,
.service-item:hover::after,
.service-item.is-service-active::after {
  opacity: 1;
  transform: scaleX(1);
}

.service-item + .service-item {
  border-left: 1px solid var(--border);
}

.service-item svg {
  width: 68px;
  height: 68px;
  margin: 0 auto 22px;
  color: var(--accent);
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
  transition: transform 180ms ease;
}

.service-item:hover svg,
.service-item.is-service-active svg {
  transform: translateY(-4px);
}

h3 {
  font-size: 22px;
  font-weight: 850;
  line-height: 1.2;
}

.service-item p,
.process-grid p,
.price-card p {
  margin-top: 12px;
  color: var(--muted);
}

.service-fit {
  width: 100%;
  margin-top: 18px;
  padding: 14px 0;
  border-top: 1px solid rgba(207, 220, 228, 0.86);
  border-bottom: 1px solid rgba(207, 220, 228, 0.86);
}

.service-fit span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
}

.service-fit strong {
  display: block;
  margin-top: 3px;
  color: var(--text);
  font-size: 14px;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.service-action {
  display: grid;
  gap: 12px;
  width: 100%;
  margin-top: auto;
  padding-top: 22px;
  padding-bottom: 12px;
}

.service-action span {
  color: var(--text-2);
  font-size: 13px;
  font-weight: 850;
  line-height: 1.35;
}

.service-action a {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(0, 115, 148, 0.24);
  border-radius: 6px;
  padding: 0 14px;
  background: rgba(255, 255, 255, 0.68);
  color: var(--accent-dark);
  font-size: 13px;
  font-weight: 900;
  box-shadow: 0 8px 20px rgba(13, 27, 42, 0.05);
  transition:
    background 160ms ease,
    border-color 160ms ease,
    color 160ms ease,
    transform 160ms ease,
    box-shadow 160ms ease;
}

.service-action a:hover,
.service-action a:focus-visible {
  transform: translateY(-1px);
  border-color: var(--accent);
  background: var(--accent);
  color: #fff;
  box-shadow: 0 14px 26px rgba(0, 115, 148, 0.16);
}

.delivery-section {
  display: grid;
  max-width: 1120px;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 1fr);
  align-items: center;
  gap: clamp(34px, 6vw, 72px);
  margin: 0 auto;
}

.delivery-copy {
  max-width: 520px;
}

.delivery-board {
  --delivery-progress: 0.25;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  border: 1px solid rgba(13, 27, 42, 0.12);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(0, 115, 148, 0.15), transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent 34%),
    var(--ink);
  color: #fff;
  box-shadow: var(--shadow-strong);
}

.delivery-board::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 28px 28px;
  content: "";
  opacity: 0.42;
}

.board-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  padding: 22px 24px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.board-header span {
  display: block;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
}

.board-header strong {
  display: block;
  margin-top: 4px;
  font-size: 15px;
}

.board-header em {
  display: inline-grid;
  min-height: 34px;
  place-items: center;
  padding: 0 12px;
  border: 1px solid rgba(154, 219, 233, 0.24);
  border-radius: 999px;
  background: rgba(154, 219, 233, 0.1);
  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
  font-style: normal;
  font-weight: 850;
  white-space: nowrap;
}

.delivery-progress {
  display: block;
  height: 3px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.1);
}

.delivery-progress span {
  display: block;
  width: 100%;
  height: 100%;
  transform: scaleX(var(--delivery-progress));
  transform-origin: left;
  background: linear-gradient(90deg, var(--accent-light), var(--signal));
  box-shadow: 0 0 22px rgba(154, 219, 233, 0.28);
  transition: transform 360ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.delivery-row {
  position: relative;
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  overflow: hidden;
  min-height: 84px;
  padding: 16px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition:
    background 220ms ease,
    transform 220ms ease;
}

.delivery-row::before {
  position: absolute;
  top: 12px;
  bottom: 12px;
  left: 24px;
  width: 2px;
  transform: scaleY(0);
  transform-origin: top;
  background: linear-gradient(180deg, var(--accent-light), var(--signal));
  content: "";
  opacity: 0.8;
  transition: transform 260ms ease;
}

.delivery-row::after {
  position: absolute;
  inset: 0;
  transform: translateX(-100%);
  background: linear-gradient(90deg, transparent, rgba(154, 219, 233, 0.08), transparent);
  content: "";
  opacity: 0;
  pointer-events: none;
}

.delivery-row.is-delivery-active {
  background: rgba(255, 255, 255, 0.055);
  transform: translateX(4px);
}

.delivery-row.is-delivery-active::before,
.delivery-row.is-delivery-complete::before {
  transform: scaleY(1);
}

.delivery-row.is-delivery-active::after {
  opacity: 1;
  animation: delivery-row-scan 900ms ease forwards;
}

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

.row-index {
  position: relative;
  z-index: 1;
  display: inline-grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid rgba(154, 219, 233, 0.24);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.74);
  font-size: 12px;
  font-weight: 850;
  transition:
    background 220ms ease,
    border-color 220ms ease,
    color 220ms ease,
    transform 220ms ease,
    box-shadow 220ms ease;
}

.delivery-row.is-delivery-active .row-index {
  transform: scale(1.06);
  border-color: rgba(154, 219, 233, 0.5);
  background: linear-gradient(135deg, var(--accent), var(--signal));
  color: #fff;
  box-shadow: 0 0 0 7px rgba(154, 219, 233, 0.08);
}

.delivery-row.is-delivery-complete .row-index {
  border-color: rgba(154, 219, 233, 0.42);
  background: rgba(154, 219, 233, 0.16);
  color: #fff;
}

.row-copy {
  position: relative;
  z-index: 1;
  display: grid;
  min-width: 0;
  gap: 4px;
}

.row-title {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 750;
}

.row-copy small {
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
  line-height: 1.35;
}

.row-status {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  justify-self: end;
  min-width: 112px;
  justify-content: flex-end;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  font-weight: 750;
  white-space: nowrap;
}

.row-status span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--signal);
  box-shadow: 0 0 0 5px rgba(200, 113, 30, 0.13);
}

.delivery-row.is-delivery-active .row-status span {
  background: var(--accent-light);
  box-shadow:
    0 0 0 5px rgba(154, 219, 233, 0.12),
    0 0 18px rgba(154, 219, 233, 0.26);
}

@keyframes delivery-row-scan {
  0% {
    transform: translateX(-100%);
  }

  100% {
    transform: translateX(100%);
  }
}

.showcase-section {
  display: grid;
  grid-template-columns: minmax(0, 0.62fr) minmax(0, 1fr);
  align-items: start;
  gap: clamp(36px, 6vw, 76px);
}

.showcase-copy {
  max-width: 500px;
  padding-top: clamp(24px, 4vw, 58px);
  justify-self: end;
}

.showcase-copy p {
  margin-top: 14px;
  color: var(--muted);
  font-size: 19px;
}

.showcase-shell {
  --shine-x: -140%;
  --showcase-stage-progress: 1;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-width: 0;
  max-width: 760px;
  border: 1px solid rgba(207, 220, 228, 0.28);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(0, 115, 148, 0.06), transparent 42%, rgba(200, 113, 30, 0.05)),
    rgba(255, 255, 255, 0.88);
  box-shadow:
    0 28px 74px rgba(13, 27, 42, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(24px) saturate(140%);
}

:root[data-theme="dark"] .showcase-shell {
  border-color: rgba(85, 197, 226, 0.18);
  background:
    linear-gradient(135deg, rgba(85, 197, 226, 0.08), transparent 42%, rgba(237, 166, 83, 0.05)),
    rgba(8, 18, 30, 0.88);
  box-shadow:
    0 32px 80px rgba(0, 0, 0, 0.36),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.showcase-shell::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(13, 27, 42, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(13, 27, 42, 0.045) 1px, transparent 1px);
  background-size: 34px 34px;
  content: "";
  opacity: 0.5;
}

.showcase-shell::after {
  position: absolute;
  top: -25%;
  bottom: -25%;
  left: 0;
  width: 42%;
  transform: translateX(var(--shine-x)) skewX(-14deg);
  background: linear-gradient(90deg, transparent, rgba(0, 115, 148, 0.1), transparent);
  content: "";
  pointer-events: none;
  transition: transform 180ms ease;
}

.showcase-shell.is-visible::after {
  animation: showcase-shell-sweep 1100ms 220ms ease both;
}

.showcase-tabs {
  --indicator-x: 16px;
  --indicator-y: 16px;
  --indicator-w: 0px;
  --indicator-h: 42px;
  position: relative;
  z-index: 1;
  display: flex;
  gap: 10px;
  padding: 16px;
  border-bottom: 1px solid rgba(207, 220, 228, 0.68);
  isolation: isolate;
}

.showcase-tabs::after {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  width: var(--indicator-w);
  height: var(--indicator-h);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(0, 115, 148, 0.22), transparent 38%),
    var(--ink);
  box-shadow:
    0 16px 34px rgba(10, 21, 34, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  content: "";
  opacity: 0;
  pointer-events: none;
  transform: translate3d(var(--indicator-x), var(--indicator-y), 0);
  transition:
    transform 380ms cubic-bezier(0.19, 1, 0.22, 1),
    width 380ms cubic-bezier(0.19, 1, 0.22, 1),
    height 380ms cubic-bezier(0.19, 1, 0.22, 1),
    opacity 160ms ease;
}

.js-ready .showcase-tabs::after {
  opacity: 1;
}

.showcase-shell.is-showcase-settling .showcase-tabs::after {
  animation: showcase-indicator-land 520ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.showcase-tab {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 54px;
  cursor: pointer;
  align-items: center;
  align-content: center;
  justify-content: center;
  gap: 3px;
  padding: 0 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
  color: var(--text-2);
  font: inherit;
  font-size: 14px;
  font-weight: 850;
  transition:
    transform 160ms ease,
    background 160ms ease,
    color 160ms ease,
    border-color 160ms ease,
    box-shadow 160ms ease;
}

.showcase-tab::after {
  position: absolute;
  right: 14px;
  bottom: 8px;
  left: 14px;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  border-radius: 999px;
  background: currentColor;
  content: "";
  opacity: 0.3;
  transition: transform 180ms ease;
}

.showcase-tab span,
.showcase-tab small {
  position: relative;
  z-index: 1;
  display: block;
}

.showcase-tab small {
  color: currentColor;
  font-size: 11px;
  font-weight: 750;
  opacity: 0.68;
}

.showcase-tab:hover {
  transform: translateY(-1px);
  border-color: rgba(0, 115, 148, 0.35);
}

.showcase-tab.is-previewed {
  color: #fff;
}

.showcase-tab.is-active {
  border-color: var(--ink);
  background: var(--ink);
  color: #fff;
  box-shadow: 0 12px 28px rgba(10, 21, 34, 0.18);
}

.js-ready .showcase-tab.is-active {
  border-color: transparent;
  background: transparent;
  box-shadow: none;
}

.showcase-tab.is-active::after {
  transform: scaleX(1);
}

.showcase-tab:focus-visible {
  outline: 3px solid rgba(0, 115, 148, 0.24);
  outline-offset: 3px;
}

.showcase-rail {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 0 16px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(207, 220, 228, 0.68);
}

.showcase-rail::before,
.showcase-rail::after {
  position: absolute;
  top: 26px;
  right: 11%;
  left: 11%;
  height: 2px;
  border-radius: 999px;
  content: "";
  pointer-events: none;
}

.showcase-rail::before {
  background: rgba(207, 220, 228, 0.82);
}

.showcase-rail::after {
  transform: scaleX(var(--showcase-stage-progress));
  transform-origin: left;
  background: linear-gradient(90deg, var(--accent), var(--signal));
  transition: transform 360ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.showcase-shell.is-visible .showcase-rail::after {
  animation: showcase-rail-fill 860ms 180ms cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.showcase-rail span {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
  transition: color 180ms ease;
}

.showcase-rail span::before {
  position: relative;
  z-index: 1;
  width: 14px;
  height: 14px;
  border: 2px solid var(--bg-strong);
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--signal));
  box-shadow: 0 0 0 5px rgba(220, 239, 245, 0.82);
  content: "";
  transition:
    background 220ms ease,
    box-shadow 220ms ease,
    transform 220ms ease,
    border-color 220ms ease;
}

.showcase-rail span.is-stage-complete,
.showcase-rail span.is-stage-active {
  color: var(--accent-dark);
}

.showcase-rail span.is-stage-complete::before {
  border-color: rgba(255, 255, 255, 0.92);
  background: var(--accent);
  box-shadow: 0 0 0 5px rgba(220, 239, 245, 0.9);
}

.showcase-rail span.is-stage-active::before {
  transform: scale(1.18);
  border-color: #fff;
  background: linear-gradient(135deg, var(--accent), var(--signal));
  box-shadow:
    0 0 0 6px rgba(220, 239, 245, 0.96),
    0 12px 24px rgba(0, 115, 148, 0.16);
}

.showcase-panel {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.76fr) minmax(330px, 1.08fr);
  gap: 24px;
  align-items: stretch;
  min-width: 0;
  min-height: 430px;
  padding: 26px 24px 24px;
}

.showcase-panel.is-swapping {
  animation: panel-swap 260ms ease;
}

.showcase-info {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.showcase-kind {
  display: inline-block;
  color: var(--accent);
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
}

.showcase-info h3 {
  margin-top: 10px;
  font-size: clamp(24px, 3vw, 31px);
}

.showcase-info p {
  margin-top: 12px;
  color: var(--muted);
}

.showcase-list {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.showcase-list div {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 12px;
  align-items: center;
  padding: 12px 0;
  border-top: 1px solid var(--line);
}

.showcase-panel.is-swapping .showcase-kind,
.showcase-panel.is-swapping .showcase-info h3,
.showcase-panel.is-swapping .showcase-info p,
.showcase-panel.is-swapping .showcase-list div,
.showcase-panel.is-swapping .showcase-cta {
  animation: preview-piece-in 360ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.showcase-panel.is-swapping .showcase-info h3 {
  animation-delay: 35ms;
}

.showcase-panel.is-swapping .showcase-info p {
  animation-delay: 70ms;
}

.showcase-panel.is-swapping .showcase-list div:nth-child(2) {
  animation-delay: 50ms;
}

.showcase-panel.is-swapping .showcase-list div:nth-child(3) {
  animation-delay: 90ms;
}

.showcase-list span {
  display: inline-grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent-dark);
  font-size: 12px;
  font-weight: 850;
}

.showcase-list strong {
  font-size: 15px;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.showcase-artifacts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.showcase-artifacts span {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 0 11px;
  border: 1px solid rgba(0, 115, 148, 0.16);
  border-radius: 999px;
  background: rgba(220, 239, 245, 0.64);
  color: var(--accent-dark);
  font-size: 12px;
  font-weight: 850;
}

.showcase-cta {
  display: inline-flex;
  width: max-content;
  max-width: 100%;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  margin-top: auto;
  padding: 0 16px;
  border: 1px solid rgba(0, 115, 148, 0.24);
  border-radius: var(--radius);
  background: var(--ink);
  color: #fff;
  font-size: 14px;
  font-weight: 850;
  text-decoration: none;
  transition:
    transform 160ms ease,
    background 160ms ease,
    border-color 160ms ease,
    box-shadow 160ms ease;
}

.showcase-cta:hover,
.showcase-cta:focus-visible {
  transform: translateY(-1px);
  border-color: var(--accent);
  background: var(--accent);
  box-shadow: 0 16px 28px rgba(0, 115, 148, 0.16);
}

.interface-preview {
  --preview-progress: 78%;
  --preview-accent: var(--accent);
  --preview-signal: var(--signal);
  --preview-glow: rgba(0, 115, 148, 0.22);
  position: relative;
  display: grid;
  min-width: 0;
  min-height: 344px;
  grid-template-rows: auto auto 1fr auto;
  overflow: hidden;
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 24% 18%, var(--preview-glow), transparent 30%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.06), transparent 42%),
    var(--ink);
  color: #fff;
  box-shadow: 0 18px 36px rgba(10, 21, 34, 0.22);
  transition:
    box-shadow 260ms ease,
    background 260ms ease;
}

.interface-preview::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 34px 34px;
  content: "";
  opacity: 0.58;
  pointer-events: none;
}

.interface-preview::after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 36%;
  transform: translateX(-120%) skewX(-12deg);
  background: linear-gradient(90deg, transparent, color-mix(in srgb, var(--preview-accent) 22%, transparent), transparent);
  content: "";
  opacity: 0;
  pointer-events: none;
}

.interface-preview.is-morphing::after {
  opacity: 1;
  animation: preview-scan-across 760ms ease forwards;
}

.interface-preview[data-preview-mode="rescue"] {
  --preview-accent: #c8711e;
  --preview-signal: #0b7285;
  --preview-glow: rgba(200, 113, 30, 0.24);
}

.interface-preview[data-preview-mode="automation"] {
  --preview-accent: #118a5f;
  --preview-signal: #00a6c8;
  --preview-glow: rgba(17, 138, 95, 0.24);
}

.preview-toolbar {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.preview-toolbar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--preview-accent);
  box-shadow: 0 0 0 6px color-mix(in srgb, var(--preview-accent) 20%, transparent);
  transition:
    background 220ms ease,
    box-shadow 220ms ease;
}

.preview-toolbar strong {
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
  line-height: 1.2;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.preview-stage {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin: 14px 18px 0;
}

.preview-stage::before {
  position: absolute;
  top: 13px;
  right: 10%;
  left: 10%;
  height: 2px;
  transform: scaleX(var(--showcase-stage-progress));
  transform-origin: left;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--preview-accent), var(--preview-signal));
  content: "";
  opacity: 0.7;
  transition: transform 360ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.interface-preview.is-morphing .preview-stage::before {
  animation: preview-stage-run 760ms cubic-bezier(0.2, 0.7, 0.2, 1) both;
}

.preview-stage span {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 7px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
  font-weight: 850;
  transition: color 180ms ease;
}

.preview-stage span::before {
  position: relative;
  z-index: 1;
  width: 14px;
  height: 14px;
  border: 2px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  background: var(--preview-accent);
  box-shadow: 0 0 0 5px color-mix(in srgb, var(--preview-accent) 18%, transparent);
  content: "";
  transition:
    background 220ms ease,
    box-shadow 220ms ease,
    transform 220ms ease,
    border-color 220ms ease;
}

.interface-preview.is-morphing .preview-stage span::before {
  animation: preview-stage-dot 520ms cubic-bezier(0.2, 0.7, 0.2, 1) both;
}

.interface-preview.is-morphing .preview-stage span:nth-child(2)::before {
  animation-delay: 110ms;
}

.interface-preview.is-morphing .preview-stage span:nth-child(3)::before {
  animation-delay: 220ms;
}

.preview-stage span.is-stage-complete,
.preview-stage span.is-stage-active {
  color: #fff;
}

.preview-stage span.is-stage-complete::before {
  border-color: rgba(255, 255, 255, 0.24);
  background: var(--preview-signal);
  box-shadow: 0 0 0 5px color-mix(in srgb, var(--preview-signal) 16%, transparent);
}

.preview-stage span.is-stage-active::before {
  transform: scale(1.16);
  border-color: rgba(255, 255, 255, 0.42);
  background: linear-gradient(135deg, var(--preview-accent), var(--preview-signal));
  box-shadow:
    0 0 0 6px color-mix(in srgb, var(--preview-accent) 22%, transparent),
    0 0 24px color-mix(in srgb, var(--preview-accent) 24%, transparent);
}

.preview-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  gap: 16px;
  min-width: 0;
  padding: 18px;
}

.preview-main,
.preview-side {
  min-width: 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  padding: 18px;
}

.preview-main {
  display: grid;
  align-content: start;
}

.preview-module-label {
  display: inline-flex;
  width: max-content;
  max-width: 100%;
  overflow-wrap: anywhere;
  min-height: 27px;
  align-items: center;
  margin-bottom: 16px;
  padding: 0 9px;
  border: 1px solid color-mix(in srgb, var(--preview-accent) 36%, rgba(255, 255, 255, 0.16));
  border-radius: 999px;
  background: color-mix(in srgb, var(--preview-accent) 22%, rgba(255, 255, 255, 0.08));
  color: rgba(255, 255, 255, 0.82);
  font-size: 11px;
  font-weight: 850;
  text-transform: uppercase;
}

.preview-title-line,
.preview-copy-line {
  height: 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
}

.preview-title-line {
  width: 74%;
  transition: width 260ms ease;
}

.preview-copy-line {
  width: 92%;
  margin-top: 18px;
  background: rgba(255, 255, 255, 0.28);
  transition: width 260ms ease;
}

.preview-copy-line.short {
  width: 58%;
  margin-top: 10px;
}

.interface-preview[data-preview-mode="rescue"] .preview-title-line {
  width: 62%;
}

.interface-preview[data-preview-mode="rescue"] .preview-copy-line {
  width: 78%;
}

.interface-preview[data-preview-mode="rescue"] .preview-copy-line.short {
  width: 70%;
}

.interface-preview[data-preview-mode="automation"] .preview-title-line {
  width: 84%;
}

.interface-preview[data-preview-mode="automation"] .preview-copy-line {
  width: 68%;
}

.interface-preview[data-preview-mode="automation"] .preview-copy-line.short {
  width: 86%;
}

.preview-progress {
  height: 10px;
  overflow: hidden;
  margin-top: 32px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
}

.preview-progress span {
  display: block;
  width: var(--preview-progress);
  height: 100%;
  transform-origin: left;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--preview-accent), var(--preview-signal));
  transition:
    width 320ms cubic-bezier(0.2, 0.7, 0.2, 1),
    background 220ms ease;
}

.interface-preview.is-morphing .preview-progress span {
  animation: preview-progress-run 820ms 80ms cubic-bezier(0.2, 0.7, 0.2, 1) both;
}

.preview-artifact-stack {
  display: grid;
  gap: 8px;
  margin-top: 22px;
}

.preview-artifact-stack span {
  position: relative;
  min-height: 34px;
  overflow: hidden;
  padding: 9px 11px 9px 30px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 750;
  overflow-wrap: anywhere;
}

.preview-artifact-stack span::before {
  position: absolute;
  top: 50%;
  left: 11px;
  width: 8px;
  height: 8px;
  transform: translateY(-50%);
  border-radius: 50%;
  background: var(--preview-accent);
  box-shadow: 0 0 0 5px color-mix(in srgb, var(--preview-accent) 18%, transparent);
  content: "";
}

.preview-side {
  display: grid;
  align-content: start;
  gap: 14px;
}

.preview-state {
  display: inline-flex;
  width: max-content;
  max-width: 100%;
  padding: 6px 10px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--preview-accent) 24%, rgba(255, 255, 255, 0.08));
  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
  font-weight: 850;
  transition: background 220ms ease;
}

.preview-score {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.preview-score span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  font-weight: 750;
}

.preview-score strong {
  color: #fff;
  font-size: 24px;
  font-weight: 850;
  line-height: 1;
}

.preview-bars {
  display: grid;
  gap: 9px;
}

.preview-bars span {
  height: 18px;
  width: var(--bar-width, 78%);
  transform-origin: left;
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, color-mix(in srgb, var(--preview-accent) 24%, transparent), transparent),
    rgba(255, 255, 255, 0.12);
  transition:
    width 320ms cubic-bezier(0.2, 0.7, 0.2, 1),
    background 220ms ease;
}

.interface-preview.is-morphing .preview-bars span {
  animation: preview-bar-run 560ms 140ms cubic-bezier(0.2, 0.7, 0.2, 1) both;
}

.interface-preview.is-morphing .preview-bars span:nth-child(2) {
  animation-delay: 210ms;
}

.interface-preview.is-morphing .preview-bars span:nth-child(3) {
  animation-delay: 280ms;
}

.preview-inspector {
  display: grid;
  gap: 8px;
}

.preview-inspector span {
  position: relative;
  min-height: 28px;
  padding: 7px 8px 7px 25px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
  font-weight: 750;
  line-height: 1.2;
  overflow-wrap: anywhere;
}

.preview-inspector span::before {
  position: absolute;
  top: 50%;
  left: 9px;
  width: 7px;
  height: 7px;
  transform: translateY(-50%);
  border-radius: 50%;
  background: var(--preview-accent);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--preview-accent) 18%, transparent);
  content: "";
}

.preview-bars span:nth-child(1) {
  --bar-width: 88%;
}

.preview-bars span:nth-child(2) {
  --bar-width: 68%;
}

.preview-bars span:nth-child(3) {
  --bar-width: 78%;
}

.preview-footer {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.preview-footer span {
  padding: 14px 18px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  font-weight: 750;
  overflow-wrap: anywhere;
}

.interface-preview.is-morphing .preview-main,
.interface-preview.is-morphing .preview-side,
.interface-preview.is-morphing .preview-stage span,
.interface-preview.is-morphing .preview-footer span {
  animation: preview-piece-in 360ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.showcase-panel.is-swapping .showcase-artifacts span {
  animation: preview-piece-in 360ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.interface-preview.is-morphing .preview-artifact-stack span,
.interface-preview.is-morphing .preview-inspector span {
  animation: preview-chip-settle 480ms 160ms cubic-bezier(0.2, 0.7, 0.2, 1) both;
}

.interface-preview.is-morphing .preview-side {
  animation-delay: 45ms;
}

.interface-preview.is-morphing .preview-footer span:nth-child(2) {
  animation-delay: 80ms;
}

.interface-preview.is-morphing .preview-inspector span:nth-child(2) {
  animation-delay: 230ms;
}

.interface-preview.is-morphing .preview-inspector span:nth-child(3) {
  animation-delay: 300ms;
}

.interface-preview.is-morphing .preview-artifact-stack span:nth-child(2) {
  animation-delay: 230ms;
}

@keyframes showcase-shell-sweep {
  0% {
    transform: translateX(-120%) skewX(-14deg);
  }

  100% {
    transform: translateX(285%) skewX(-14deg);
  }
}

@keyframes showcase-indicator-land {
  0% {
    filter: saturate(0.82);
    box-shadow:
      0 10px 22px rgba(10, 21, 34, 0.16),
      inset 0 1px 0 rgba(255, 255, 255, 0.08);
  }

  58% {
    filter: saturate(1.12);
    box-shadow:
      0 19px 38px rgba(10, 21, 34, 0.24),
      0 0 0 5px rgba(0, 115, 148, 0.08),
      inset 0 1px 0 rgba(255, 255, 255, 0.14);
  }

  100% {
    filter: saturate(1);
    box-shadow:
      0 16px 34px rgba(10, 21, 34, 0.2),
      inset 0 1px 0 rgba(255, 255, 255, 0.1);
  }
}

@keyframes showcase-rail-fill {
  0% {
    transform: scaleX(0);
  }

  100% {
    transform: scaleX(var(--showcase-stage-progress));
  }
}

@keyframes panel-swap {
  0% {
    opacity: 0.58;
    transform: translateY(8px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes preview-stage-run {
  0% {
    opacity: 0.28;
    transform: scaleX(0);
  }

  72% {
    opacity: 0.86;
    transform: scaleX(1.04);
  }

  100% {
    opacity: 0.7;
    transform: scaleX(1);
  }
}

@keyframes preview-stage-dot {
  0% {
    transform: scale(0.72);
    box-shadow: 0 0 0 0 color-mix(in srgb, var(--preview-accent) 0%, transparent);
  }

  64% {
    transform: scale(1.14);
    box-shadow: 0 0 0 9px color-mix(in srgb, var(--preview-accent) 22%, transparent);
  }

  100% {
    transform: scale(1);
  }
}

@keyframes preview-progress-run {
  0% {
    filter: saturate(0.7);
    transform: scaleX(0.08);
  }

  72% {
    filter: saturate(1.2);
    transform: scaleX(1.035);
  }

  100% {
    filter: saturate(1);
    transform: scaleX(1);
  }
}

@keyframes preview-bar-run {
  0% {
    opacity: 0.42;
    transform: scaleX(0.28);
  }

  100% {
    opacity: 1;
    transform: scaleX(1);
  }
}

@keyframes preview-chip-settle {
  0% {
    opacity: 0.42;
    transform: translateY(8px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes preview-piece-in {
  0% {
    opacity: 0.62;
    transform: translateY(8px) scale(0.985);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes preview-scan-across {
  0% {
    transform: translateX(-120%) skewX(-12deg);
  }

  100% {
    transform: translateX(360%) skewX(-12deg);
  }
}

.quality-section {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(360px, 0.92fr);
  align-items: start;
  gap: clamp(34px, 6vw, 72px);
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(10, 21, 34, 0.96), rgba(10, 21, 34, 1)),
    var(--ink);
  color: #fff;
}

.quality-copy {
  max-width: 540px;
}

.quality-copy p {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 19px;
}

.quality-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04)),
    rgba(255, 255, 255, 0.04);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.3);
}

.quality-panel::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 38px 38px;
  content: "";
  opacity: 0.8;
}

.quality-toolbar,
.quality-window {
  position: relative;
  z-index: 1;
}

.quality-toolbar {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 18px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.quality-toolbar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 7px rgba(17, 138, 95, 0.13);
}

.quality-toolbar strong {
  font-size: 14px;
  text-transform: uppercase;
}

.quality-toolbar em {
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
  font-style: normal;
  font-weight: 750;
}

.quality-window {
  display: grid;
  gap: 1px;
  overflow: hidden;
  padding: 12px;
}

.scan-line {
  position: absolute;
  top: 12px;
  right: 12px;
  bottom: 12px;
  left: 12px;
  z-index: 2;
  overflow: hidden;
  height: auto;
  pointer-events: none;
}

.scan-line::before {
  position: absolute;
  right: 0;
  bottom: 100%;
  left: 0;
  height: 100%;
  background:
    linear-gradient(90deg, transparent, rgba(0, 166, 200, 0.95), rgba(200, 113, 30, 0.76), transparent) 0 100% / 100% 2px no-repeat,
    linear-gradient(90deg, transparent, rgba(154, 219, 233, 0.16), rgba(200, 113, 30, 0.1), transparent) 0 calc(100% - 10px) / 100% 20px no-repeat;
  content: "";
  filter: drop-shadow(0 0 14px rgba(0, 166, 200, 0.46));
  will-change: transform, opacity;
}

.quality-panel.is-visible .scan-line::before {
  animation: scan-pass 4.8s ease-in-out infinite;
}

.quality-row {
  position: relative;
  display: grid;
  grid-template-columns: 42px 1fr auto;
  align-items: center;
  gap: 14px;
  min-height: 68px;
  overflow: hidden;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.055);
  transition:
    border-color 220ms ease,
    background 220ms ease,
    transform 220ms ease;
}

.quality-row::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent, rgba(154, 219, 233, 0.13), rgba(200, 113, 30, 0.08), transparent);
  content: "";
  opacity: 0;
  transform: translateX(-32%);
  pointer-events: none;
}

.quality-panel.is-visible .quality-row::after {
  animation: quality-row-pass 4.8s ease-in-out infinite;
}

.quality-panel.is-visible .quality-row:nth-of-type(1)::after {
  animation-delay: 0.25s;
}

.quality-panel.is-visible .quality-row:nth-of-type(2)::after {
  animation-delay: 1.1s;
}

.quality-panel.is-visible .quality-row:nth-of-type(3)::after {
  animation-delay: 1.95s;
}

.quality-panel.is-visible .quality-row:nth-of-type(4)::after {
  animation-delay: 2.8s;
}

.quality-row span {
  position: relative;
  z-index: 1;
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: rgba(220, 239, 245, 0.14);
  color: #9adbe9;
  font-size: 12px;
  font-weight: 850;
}

.quality-panel.is-visible .quality-row span {
  animation: quality-chip-pulse 4.8s ease-in-out infinite;
}

.quality-panel.is-visible .quality-row:nth-of-type(1) span {
  animation-delay: 0.25s;
}

.quality-panel.is-visible .quality-row:nth-of-type(2) span {
  animation-delay: 1.1s;
}

.quality-panel.is-visible .quality-row:nth-of-type(3) span {
  animation-delay: 1.95s;
}

.quality-panel.is-visible .quality-row:nth-of-type(4) span {
  animation-delay: 2.8s;
}

.quality-row strong {
  position: relative;
  z-index: 1;
  font-size: 16px;
}

.quality-row em {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #99e0c4;
  font-size: 13px;
  font-style: normal;
  font-weight: 850;
}

.quality-row em::before {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--success);
  content: "";
  box-shadow: 0 0 0 5px rgba(17, 138, 95, 0.13);
}

.quality-notes {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 10px;
}

.quality-notes article {
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.quality-notes span {
  color: #9adbe9;
  font-size: 13px;
  font-weight: 850;
}

.quality-notes h3 {
  margin-top: 10px;
  color: #fff;
}

.quality-notes p {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.68);
}

@keyframes scan-pass {
  0%,
  100% {
    opacity: 0;
    transform: translateY(0);
  }

  12%,
  88% {
    opacity: 1;
  }

  50% {
    transform: translateY(112%);
  }
}

@keyframes quality-row-pass {
  0%,
  18%,
  100% {
    opacity: 0;
    transform: translateX(-32%);
  }

  8% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes quality-chip-pulse {
  0%,
  18%,
  100% {
    box-shadow: none;
  }

  8% {
    box-shadow:
      0 0 0 5px rgba(154, 219, 233, 0.12),
      0 0 20px rgba(154, 219, 233, 0.2);
  }
}

.process-grid {
  --process-progress: 0;
  position: relative;
  display: grid;
  max-width: 1120px;
  margin: 0 auto;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.process-grid::before,
.process-grid::after {
  position: absolute;
  top: 32px;
  right: 11%;
  left: 11%;
  height: 3px;
  border-radius: 999px;
  content: "";
  opacity: 0;
  transition: opacity 420ms ease;
}

.process-grid::before {
  background: rgba(207, 220, 228, 0.82);
}

.process-grid::after {
  transform: scaleX(var(--process-progress));
  transform-origin: left;
  background: linear-gradient(90deg, var(--accent), var(--signal));
  box-shadow: 0 0 22px rgba(0, 115, 148, 0.18);
  transition:
    opacity 420ms ease,
    transform 220ms ease;
}

.process-grid.is-visible::before,
.process-grid.is-visible::after {
  opacity: 1;
}

.process-grid article {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 314px;
  align-content: start;
  gap: 18px;
  overflow: hidden;
  isolation: isolate;
  padding: 20px;
  border: 1px solid rgba(13, 27, 42, 0.1);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(0, 115, 148, 0.035), transparent 44%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.92)),
    #fff;
  box-shadow: 0 14px 32px rgba(13, 27, 42, 0.07);
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease,
    background 220ms ease;
}

.process-grid article::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(13, 27, 42, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(13, 27, 42, 0.03) 1px, transparent 1px);
  background-size: 28px 28px;
  content: "";
  opacity: 0.35;
}

.process-grid article::after {
  position: absolute;
  inset: 0;
  transform: translateX(-110%);
  background: linear-gradient(90deg, transparent, rgba(154, 219, 233, 0.14), rgba(200, 113, 30, 0.09), transparent);
  content: "";
  opacity: 0;
  pointer-events: none;
}

.process-grid article.is-process-active {
  transform: translateY(-6px);
  border-color: rgba(0, 115, 148, 0.28);
  background:
    linear-gradient(135deg, rgba(0, 115, 148, 0.08), rgba(200, 113, 30, 0.04) 58%, transparent),
    #fff;
  box-shadow: 0 24px 52px rgba(13, 27, 42, 0.12);
}

.process-grid article.is-process-active::after {
  opacity: 1;
  animation: process-card-sweep 900ms ease forwards;
}

.process-number {
  position: relative;
  z-index: 1;
  display: inline-grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border: 1px solid rgba(0, 115, 148, 0.18);
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent-dark);
  font-size: 15px;
  font-weight: 850;
  box-shadow: 0 0 0 10px var(--bg);
  transition:
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.process-grid article.is-process-complete .process-number {
  border-color: rgba(0, 115, 148, 0.34);
  background: var(--accent);
  color: #fff;
}

.process-grid article.is-process-active .process-number {
  transform: scale(1.08);
  border-color: rgba(200, 113, 30, 0.48);
  background: linear-gradient(135deg, var(--accent), var(--signal));
  color: #fff;
  box-shadow:
    0 0 0 10px var(--bg),
    0 16px 32px rgba(0, 115, 148, 0.24);
}

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

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

.process-card-head small {
  display: inline-grid;
  min-height: 28px;
  place-items: center;
  padding: 0 10px;
  border: 1px solid rgba(0, 115, 148, 0.14);
  border-radius: 999px;
  background: rgba(220, 239, 245, 0.58);
  color: var(--accent-dark);
  font-size: 11px;
  font-weight: 850;
  text-transform: uppercase;
}

.process-grid article.is-process-active h3 {
  color: var(--accent-dark);
}

.process-grid article p {
  margin-top: 12px;
  min-height: 78px;
  color: var(--muted);
  line-height: 1.5;
}

.process-checks {
  display: grid;
  gap: 8px;
  margin-top: 18px;
}

.process-checks span {
  position: relative;
  display: flex;
  min-height: 34px;
  align-items: center;
  gap: 9px;
  padding: 8px 10px;
  border: 1px solid rgba(207, 220, 228, 0.8);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--text-2);
  font-size: 13px;
  font-weight: 750;
  line-height: 1.25;
  transition:
    border-color 180ms ease,
    background 180ms ease,
    color 180ms ease;
}

.process-checks span::before {
  width: 8px;
  height: 8px;
  flex: 0 0 8px;
  border-radius: 50%;
  background: rgba(0, 115, 148, 0.34);
  content: "";
  transition:
    background 180ms ease,
    box-shadow 180ms ease;
}

.process-grid article.is-process-complete .process-checks span,
.process-grid article.is-process-active .process-checks span {
  border-color: rgba(0, 115, 148, 0.16);
  background: rgba(220, 239, 245, 0.54);
  color: var(--text);
}

.process-grid article.is-process-active .process-checks span::before {
  background: var(--signal);
  box-shadow: 0 0 0 5px rgba(200, 113, 30, 0.12);
}

.process-grid article:focus-visible {
  outline: 3px solid rgba(0, 115, 148, 0.24);
  outline-offset: 4px;
}

.process-focus {
  --process-focus-level: 25%;
  position: relative;
  display: grid;
  max-width: 1120px;
  margin: 26px auto 0;
  grid-template-columns: minmax(0, 0.78fr) minmax(360px, 1fr);
  gap: 22px;
  overflow: hidden;
  isolation: isolate;
  padding: 24px;
  border: 1px solid rgba(13, 27, 42, 0.12);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 18% 12%, rgba(0, 115, 148, 0.28), transparent 30%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 46%),
    var(--ink);
  color: #fff;
  box-shadow: 0 28px 68px rgba(13, 27, 42, 0.16);
}

.process-focus::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 32px 32px;
  content: "";
  opacity: 0.72;
}

.process-focus::after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 34%;
  transform: translateX(-120%) skewX(-12deg);
  background: linear-gradient(90deg, transparent, rgba(154, 219, 233, 0.16), rgba(200, 113, 30, 0.1), transparent);
  content: "";
  pointer-events: none;
}

.process-focus.is-visible::after,
.process-focus.is-swapping::after {
  animation: process-focus-scan 760ms ease forwards;
}

.process-focus > * {
  position: relative;
  z-index: 1;
}

.process-focus-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.process-focus-header span {
  color: rgba(154, 219, 233, 0.86);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.process-focus-header strong {
  display: block;
  margin-top: 7px;
  color: #fff;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1;
}

.process-focus-header em {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 0 11px;
  border: 1px solid rgba(154, 219, 233, 0.24);
  border-radius: 999px;
  background: rgba(154, 219, 233, 0.11);
  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
  font-style: normal;
  font-weight: 850;
  white-space: nowrap;
}

.process-focus p {
  align-self: end;
  color: rgba(255, 255, 255, 0.72);
  font-size: 17px;
  line-height: 1.55;
}

.process-focus-grid {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.process-focus-grid span {
  min-height: 86px;
  padding: 15px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.065);
}

.process-focus-grid em {
  display: block;
  color: rgba(154, 219, 233, 0.72);
  font-size: 11px;
  font-style: normal;
  font-weight: 850;
  text-transform: uppercase;
}

.process-focus-grid strong {
  display: block;
  margin-top: 9px;
  color: #fff;
  font-size: 15px;
  line-height: 1.25;
}

.process-focus-meter {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 14px;
}

.process-focus-meter span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.process-focus-meter em {
  display: block;
  height: 10px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
}

.process-focus-meter i {
  display: block;
  width: var(--process-focus-level);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--accent), var(--signal), var(--success));
  transition: width 300ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.process-focus-tags {
  display: flex;
  grid-column: 1 / -1;
  flex-wrap: wrap;
  gap: 8px;
}

.process-focus-tags span {
  display: inline-flex;
  min-height: 31px;
  align-items: center;
  padding: 0 11px;
  border: 1px solid rgba(154, 219, 233, 0.2);
  border-radius: 999px;
  background: rgba(154, 219, 233, 0.1);
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  font-weight: 850;
}

.process-focus.is-swapping .process-focus-grid span,
.process-focus.is-swapping .process-focus-tags span {
  animation: process-focus-piece-in 360ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.process-focus.is-swapping .process-focus-grid span:nth-child(2),
.process-focus.is-swapping .process-focus-tags span:nth-child(2) {
  animation-delay: 45ms;
}

.process-focus.is-swapping .process-focus-grid span:nth-child(3),
.process-focus.is-swapping .process-focus-tags span:nth-child(3) {
  animation-delay: 90ms;
}

@keyframes process-card-sweep {
  0% {
    transform: translateX(-110%);
  }

  100% {
    transform: translateX(110%);
  }
}

@keyframes process-focus-scan {
  0% {
    transform: translateX(-120%) skewX(-12deg);
  }

  100% {
    transform: translateX(360%) skewX(-12deg);
  }
}

@keyframes process-focus-piece-in {
  0% {
    opacity: 0.55;
    transform: translateY(8px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.pricing-grid {
  position: relative;
  display: grid;
  max-width: 1120px;
  margin: 0 auto;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
}

#pricing {
  padding-top: clamp(46px, 5vw, 64px);
}

.pricing-guide {
  --pricing-progress: 0.333;
  position: relative;
  display: grid;
  max-width: 1120px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  margin: -10px auto 26px;
  border: 1px solid rgba(13, 27, 42, 0.1);
  border-radius: var(--radius);
  background: rgba(207, 220, 228, 0.76);
  box-shadow: 0 18px 42px rgba(13, 27, 42, 0.08);
}

.pricing-guide::before,
.pricing-guide::after {
  position: absolute;
  right: 11%;
  bottom: 0;
  left: 11%;
  height: 3px;
  border-radius: 999px 999px 0 0;
  content: "";
  pointer-events: none;
}

.pricing-guide::before {
  background: rgba(207, 220, 228, 0.95);
}

.pricing-guide::after {
  transform: scaleX(var(--pricing-progress));
  transform-origin: left;
  background: linear-gradient(90deg, var(--accent), var(--signal));
  box-shadow: 0 0 22px rgba(0, 115, 148, 0.16);
  transition: transform 280ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.pricing-guide span {
  position: relative;
  display: grid;
  min-height: 78px;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 4px 12px;
  align-content: center;
  padding: 16px 18px;
  background:
    linear-gradient(135deg, rgba(0, 115, 148, 0.035), transparent 46%),
    rgba(255, 255, 255, 0.9);
  color: var(--muted);
  transition:
    background 200ms ease,
    color 200ms ease;
}

.pricing-guide small {
  display: inline-grid;
  width: 32px;
  height: 32px;
  grid-row: 1 / span 2;
  place-items: center;
  border: 1px solid rgba(0, 115, 148, 0.16);
  border-radius: 50%;
  background: rgba(220, 239, 245, 0.72);
  color: var(--accent-dark);
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
  line-height: 1;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.pricing-guide strong {
  color: var(--text);
  font-size: 15px;
  line-height: 1.2;
}

.pricing-guide em {
  color: currentColor;
  font-size: 12px;
  font-style: normal;
  font-weight: 750;
  line-height: 1.25;
}

.pricing-guide span.is-pricing-guide-active,
.pricing-guide span.is-pricing-guide-complete {
  background:
    linear-gradient(135deg, rgba(0, 115, 148, 0.08), rgba(200, 113, 30, 0.04)),
    #fff;
  color: var(--text-2);
}

.pricing-guide span.is-pricing-guide-active small,
.pricing-guide span.is-pricing-guide-complete small {
  border-color: rgba(0, 115, 148, 0.28);
  background: var(--accent);
  color: #fff;
}

.pricing-guide span.is-pricing-guide-active small {
  transform: scale(1.08);
  background: linear-gradient(135deg, var(--accent), var(--signal));
  box-shadow: 0 0 0 7px rgba(220, 239, 245, 0.72);
}

.pricing-focus {
  --pricing-focus-level: 58%;
  position: relative;
  display: grid;
  max-width: 1120px;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1fr);
  gap: 16px 22px;
  overflow: hidden;
  margin: -10px auto 28px;
  padding: 22px;
  border: 1px solid rgba(13, 27, 42, 0.12);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 10% 10%, rgba(0, 115, 148, 0.13), transparent 30%),
    linear-gradient(135deg, rgba(10, 21, 34, 0.98), rgba(13, 35, 54, 0.96));
  color: #fff;
  box-shadow:
    0 24px 58px rgba(13, 27, 42, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.pricing-focus::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 32px 32px;
  content: "";
  opacity: 0.62;
  pointer-events: none;
}

.pricing-focus::after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 28%;
  transform: translateX(-120%) skewX(-12deg);
  background: linear-gradient(90deg, transparent, rgba(154, 219, 233, 0.18), transparent);
  content: "";
  opacity: 0;
  pointer-events: none;
}

.pricing-focus.is-visible::after,
.pricing-focus.is-swapping::after {
  animation: pricing-focus-scan 760ms ease forwards;
}

.pricing-focus > * {
  position: relative;
  z-index: 1;
}

.pricing-focus-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.pricing-focus-header span {
  color: #9adbe9;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.pricing-focus-header strong {
  display: block;
  margin-top: 5px;
  color: #fff;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.05;
}

.pricing-focus-header em {
  display: inline-flex;
  min-height: 31px;
  flex: 0 0 auto;
  align-items: center;
  padding: 0 11px;
  border: 1px solid rgba(154, 219, 233, 0.2);
  border-radius: 999px;
  background: rgba(154, 219, 233, 0.1);
  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
}

.pricing-focus p {
  max-width: 520px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  line-height: 1.5;
}

.pricing-focus-stats {
  display: grid;
  grid-column: 2;
  grid-row: 1 / span 2;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  align-self: stretch;
}

.pricing-focus-stats span {
  display: grid;
  min-width: 0;
  align-content: center;
  gap: 6px;
  min-height: 92px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.06);
}

.pricing-focus-stats em {
  color: rgba(255, 255, 255, 0.58);
  font-size: 11px;
  font-style: normal;
  font-weight: 850;
  text-transform: uppercase;
}

.pricing-focus-stats strong {
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
  line-height: 1.15;
  overflow-wrap: anywhere;
}

.pricing-focus-meter {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  padding: 13px 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.055);
}

.pricing-focus-meter span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.pricing-focus-meter em {
  height: 9px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
}

.pricing-focus-meter i {
  display: block;
  width: var(--pricing-focus-level);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--accent), var(--signal));
  box-shadow: 0 0 18px rgba(154, 219, 233, 0.26);
  transition: width 320ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.pricing-focus-tags {
  display: flex;
  flex-wrap: wrap;
  grid-column: 1 / -1;
  gap: 8px;
}

.pricing-focus-tags span {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 0 11px;
  border: 1px solid rgba(154, 219, 233, 0.18);
  border-radius: 999px;
  background: rgba(154, 219, 233, 0.1);
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  font-weight: 850;
}

.pricing-focus.is-swapping .pricing-focus-stats span,
.pricing-focus.is-swapping .pricing-focus-tags span {
  animation: pricing-focus-piece-in 360ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.pricing-focus.is-swapping .pricing-focus-stats span:nth-child(2),
.pricing-focus.is-swapping .pricing-focus-tags span:nth-child(2) {
  animation-delay: 55ms;
}

.pricing-focus.is-swapping .pricing-focus-stats span:nth-child(3),
.pricing-focus.is-swapping .pricing-focus-tags span:nth-child(3) {
  animation-delay: 95ms;
}

.price-card {
  --package-level: 38%;
  position: relative;
  display: flex;
  min-height: 0;
  flex-direction: column;
  align-items: flex-start;
  overflow: hidden;
  isolation: isolate;
  padding: 24px 22px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(0, 115, 148, 0.025), transparent 36%),
    linear-gradient(135deg, rgba(0, 115, 148, 0.035), transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.92)),
    #fff;
  box-shadow: 0 12px 30px rgba(13, 27, 42, 0.07);
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease,
    background 220ms ease;
}

.price-card:nth-child(2) {
  --package-level: 58%;
}

.price-card:nth-child(3) {
  --package-level: 72%;
}

.price-card:nth-child(4) {
  --package-level: 88%;
}

.price-card::before {
  position: absolute;
  z-index: 2;
  top: 0;
  right: 0;
  left: 0;
  height: 5px;
  transform: scaleX(0);
  transform-origin: left;
  background: linear-gradient(90deg, var(--accent), var(--signal));
  content: "";
  transition: transform 220ms ease;
}

.price-card::after {
  position: absolute;
  right: 22px;
  bottom: 18px;
  left: 22px;
  height: 3px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(207, 220, 228, 0.7);
  content: "";
  opacity: 0.76;
}

.price-card:hover,
.price-card.is-price-active {
  transform: translateY(-6px);
  border-color: rgba(0, 115, 148, 0.35);
  background:
    linear-gradient(135deg, rgba(0, 115, 148, 0.07), rgba(200, 113, 30, 0.035) 58%, transparent),
    #fff;
  box-shadow: 0 28px 62px rgba(13, 27, 42, 0.14);
}

.price-card:hover::before,
.price-card.is-price-active::before {
  transform: scaleX(1);
}

.price-card > * {
  position: relative;
  z-index: 1;
}

.price-card::after {
  background:
    linear-gradient(90deg, var(--accent), var(--signal)) 0 0 / var(--package-level) 100% no-repeat,
    rgba(207, 220, 228, 0.66);
  transform: scaleX(0.52);
  transform-origin: left;
  transition:
    opacity 220ms ease,
    transform 260ms cubic-bezier(0.2, 0.8, 0.2, 1),
    background-size 260ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.price-card:hover::after,
.price-card.is-price-active::after {
  opacity: 1;
  transform: scaleX(1);
}

.price-card-featured::after {
  opacity: 0.92;
  transform: scaleX(1);
}

.price-card-featured {
  border-color: rgba(0, 115, 148, 0.34);
  box-shadow:
    0 30px 68px rgba(13, 27, 42, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.price-card-featured::before {
  transform: scaleX(1);
}

.price-kicker {
  position: relative;
  margin-bottom: 14px;
  padding-left: 14px;
  color: var(--accent-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
  text-transform: uppercase;
}

.price-kicker::before {
  position: absolute;
  top: -1px;
  bottom: -1px;
  left: 0;
  width: 3px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--accent), var(--signal));
  content: "";
}

.price-marker {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  margin: -4px 0 10px;
  border: 1px solid rgba(10, 21, 34, 0.1);
  border-radius: 999px;
  padding: 0 10px;
  background: var(--ink);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.25;
  white-space: nowrap;
  box-shadow: 0 12px 24px rgba(10, 21, 34, 0.16);
}

.price-card h3 {
  font-size: 23px;
  line-height: 1.12;
}

.price-card > p:not(.price):not(.price-note):not(.price-fit) {
  margin-top: 12px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.42;
}

.price-fit {
  width: 100%;
  margin-top: 16px;
  padding: 12px 13px;
  border: 1px solid rgba(207, 220, 228, 0.8);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.72);
  transition:
    border-color 180ms ease,
    background 180ms ease;
}

.price-card:hover .price-fit,
.price-card.is-price-active .price-fit {
  border-color: rgba(0, 115, 148, 0.18);
  background: rgba(220, 239, 245, 0.52);
}

.price-fit span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
}

.price-fit strong {
  display: block;
  margin-top: 3px;
  color: var(--text);
  font-size: 14px;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.price-features {
  display: grid;
  gap: 8px;
  width: 100%;
  margin: 14px 0 16px;
  padding: 0;
  list-style: none;
}

.price-features li {
  position: relative;
  min-height: 28px;
  padding-left: 30px;
  color: var(--text-2);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.35;
}

.price-features li::before {
  position: absolute;
  top: 1px;
  left: 0;
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  border: 1px solid rgba(0, 115, 148, 0.22);
  border-radius: 50%;
  background: rgba(220, 239, 245, 0.62);
  color: var(--accent-dark);
  content: "";
  box-shadow: 0 6px 16px rgba(0, 115, 148, 0.08);
  transition:
    background 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
}

.price-features li::after {
  position: absolute;
  top: 7px;
  left: 6px;
  width: 7px;
  height: 4px;
  border-bottom: 2px solid currentColor;
  border-left: 2px solid currentColor;
  content: "";
  transform: rotate(-45deg);
}

.price-card:hover .price-features li::before,
.price-card.is-price-active .price-features li::before {
  transform: scale(1.08);
  border-color: rgba(17, 138, 95, 0.28);
  background: rgba(17, 138, 95, 0.1);
}

.price-card .price {
  margin-top: auto;
  color: #1c2c3e;
  padding-top: 8px;
}

.price strong {
  display: block;
  margin-top: 2px;
  color: var(--text);
  font-size: 31px;
  line-height: 1;
}

.price-note {
  margin-top: 6px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.35;
}

.price-card .button {
  width: 100%;
  margin-top: 14px;
  margin-bottom: 12px;
}

.price-actions {
  display: grid;
  width: 100%;
  align-self: stretch;
  gap: 10px;
  margin-top: 14px;
  margin-bottom: 12px;
}

.price-actions .button {
  min-height: 46px;
  margin: 0;
}

.price-actions .button-secondary {
  min-height: 42px;
}

@keyframes pricing-focus-scan {
  0% {
    opacity: 0;
    transform: translateX(-120%) skewX(-12deg);
  }

  18%,
  84% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translateX(390%) skewX(-12deg);
  }
}

@keyframes pricing-focus-piece-in {
  0% {
    opacity: 0.58;
    transform: translateY(7px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.details-section {
  display: grid;
  max-width: 1120px;
  align-items: start;
  grid-template-columns: minmax(0, 0.7fr) minmax(0, 1fr);
  gap: 54px;
  margin: 0 auto;
}

.details-copy {
  position: sticky;
  top: 108px;
  align-self: start;
}

.details-copy p {
  margin-top: 14px;
  color: var(--muted);
  font-size: 19px;
}

.payment-flow {
  position: relative;
  overflow: hidden;
  margin-top: 28px;
  border: 1px solid rgba(0, 115, 148, 0.18);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 243, 228, 0.76), transparent 34%),
    linear-gradient(180deg, #ffffff, #f7fbfd);
  box-shadow: 0 18px 42px rgba(13, 27, 42, 0.09);
}

.payment-flow::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--signal), var(--accent), var(--success));
  content: "";
}

.payment-flow-header {
  display: flex;
  min-height: 58px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 18px 14px;
  border-bottom: 1px solid rgba(207, 220, 228, 0.78);
}

.payment-flow-header span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.payment-flow-header strong {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  border: 1px solid rgba(17, 138, 95, 0.22);
  border-radius: 999px;
  padding: 0 12px;
  background: rgba(17, 138, 95, 0.08);
  color: var(--success);
  font-size: 12px;
  font-weight: 900;
}

.payment-step {
  position: relative;
  display: grid;
  min-height: 86px;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 13px;
  align-items: start;
  padding: 18px;
  color: var(--muted);
  transition:
    background 240ms ease,
    color 240ms ease,
    opacity 240ms ease,
    transform 240ms ease;
}

.payment-step + .payment-step {
  border-top: 1px solid rgba(207, 220, 228, 0.72);
}

.payment-step::before {
  position: absolute;
  top: 48px;
  bottom: -22px;
  left: 37px;
  width: 2px;
  background: linear-gradient(180deg, rgba(0, 115, 148, 0.3), rgba(0, 115, 148, 0.04));
  content: "";
  transform: scaleY(0.36);
  transform-origin: top;
  transition: transform 360ms ease;
}

.payment-step:last-child::before {
  display: none;
}

.payment-step-index {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(0, 115, 148, 0.2);
  border-radius: 999px;
  background: #fff;
  color: var(--accent-dark);
  font-size: 12px;
  font-weight: 950;
  box-shadow: 0 10px 22px rgba(13, 27, 42, 0.08);
  transition:
    background 240ms ease,
    border-color 240ms ease,
    color 240ms ease,
    transform 240ms ease,
    box-shadow 240ms ease;
}

.payment-step strong {
  display: block;
  color: var(--text);
  font-size: 15px;
  line-height: 1.25;
}

.payment-step small {
  display: block;
  margin-top: 4px;
  color: inherit;
  font-size: 13px;
  font-weight: 650;
  line-height: 1.45;
}

.payment-step.is-active {
  background: rgba(0, 115, 148, 0.055);
  color: var(--text-2);
  transform: translateX(4px);
}

.payment-step.is-active::before,
.payment-step.is-complete::before {
  transform: scaleY(1);
}

.payment-step.is-active .payment-step-index {
  border-color: rgba(200, 113, 30, 0.36);
  background: var(--signal-soft);
  color: var(--signal);
  transform: scale(1.05);
  box-shadow: 0 12px 24px rgba(200, 113, 30, 0.14);
}

.payment-step.is-packet-highlight {
  background:
    linear-gradient(90deg, rgba(17, 138, 95, 0.08), transparent 72%),
    rgba(0, 115, 148, 0.055);
  animation: payment-packet-highlight 820ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.payment-step.is-packet-highlight .payment-step-index {
  border-color: rgba(17, 138, 95, 0.38);
  background: rgba(17, 138, 95, 0.12);
  color: var(--success);
  box-shadow:
    0 12px 24px rgba(17, 138, 95, 0.12),
    0 0 0 8px rgba(17, 138, 95, 0.08);
}

.payment-step.is-complete .payment-step-index {
  border-color: rgba(17, 138, 95, 0.28);
  background: rgba(17, 138, 95, 0.1);
  color: var(--success);
}

.deposit-card {
  display: grid;
  gap: 12px;
  margin-top: 18px;
  padding: 20px;
  border: 1px solid rgba(17, 138, 95, 0.22);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(17, 138, 95, 0.1), transparent 48%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 251, 253, 0.92)),
    #fff;
  box-shadow: 0 14px 34px rgba(13, 27, 42, 0.08);
}

.deposit-card span {
  color: var(--success);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.deposit-card strong {
  color: var(--text);
  font-size: clamp(23px, 4vw, 30px);
  line-height: 1.05;
}

.deposit-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.deposit-card .button {
  width: 100%;
  min-height: 48px;
  justify-content: center;
}

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

.details-list article {
  position: relative;
  overflow: hidden;
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 251, 253, 0.92)),
    #fff;
  box-shadow: 0 10px 28px rgba(13, 27, 42, 0.05);
  transition:
    border-color 180ms ease,
    transform 180ms ease,
    box-shadow 180ms ease;
}

.details-list article::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), rgba(17, 138, 95, 0.8));
  content: "";
  opacity: 0;
  transform: scaleX(0.42);
  transform-origin: left;
  transition:
    opacity 180ms ease,
    transform 220ms ease;
}

.details-list article:hover,
.details-list article.is-detail-active {
  transform: translateY(-3px);
  border-color: rgba(0, 115, 148, 0.26);
  box-shadow: 0 18px 38px rgba(13, 27, 42, 0.1);
}

.details-list article:hover::before,
.details-list article.is-detail-active::before {
  opacity: 1;
  transform: scaleX(1);
}

.details-list article:focus-visible {
  outline: 3px solid rgba(0, 115, 148, 0.24);
  outline-offset: 4px;
}

.detail-status {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  border: 1px solid rgba(0, 115, 148, 0.16);
  border-radius: 999px;
  padding: 0 10px;
  background: rgba(0, 115, 148, 0.06);
  color: var(--accent-dark);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.details-list h3 {
  margin-top: 14px;
  font-size: 18px;
}

.details-list p,
.faq-list p {
  margin-top: 10px;
  color: var(--muted);
}

.details-list article.deposit-card {
  gap: 12px;
  margin-top: 0;
  border-color: rgba(17, 138, 95, 0.24);
  background:
    linear-gradient(135deg, rgba(17, 138, 95, 0.1), transparent 48%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 251, 253, 0.92)),
    #fff;
}

.details-list article.deposit-card::before {
  opacity: 1;
  transform: scaleX(1);
  background: linear-gradient(90deg, var(--success), var(--accent));
}

.details-list article.deposit-card .detail-status {
  border-color: rgba(17, 138, 95, 0.22);
  background: rgba(17, 138, 95, 0.08);
  color: var(--success);
}

.details-list article.deposit-card h3 {
  margin-top: 0;
  font-size: clamp(23px, 2.6vw, 29px);
}

.details-list article.deposit-card p {
  margin-top: 0;
}

.details-list article.deposit-card .button {
  margin-top: 2px;
  color: #fff;
}

.details-focus {
  --detail-focus-level: 78%;
  position: relative;
  display: grid;
  grid-column: 2;
  gap: 14px;
  overflow: hidden;
  padding: 22px;
  border: 1px solid rgba(13, 27, 42, 0.12);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 13% 18%, rgba(0, 115, 148, 0.13), transparent 30%),
    linear-gradient(135deg, rgba(10, 21, 34, 0.98), rgba(13, 35, 54, 0.96));
  color: #fff;
  box-shadow:
    0 24px 58px rgba(13, 27, 42, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.details-focus::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 32px 32px;
  content: "";
  opacity: 0.62;
  pointer-events: none;
}

.details-focus::after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 30%;
  transform: translateX(-125%) skewX(-12deg);
  background: linear-gradient(90deg, transparent, rgba(154, 219, 233, 0.18), transparent);
  content: "";
  opacity: 0;
  pointer-events: none;
}

.details-focus.is-visible::after,
.details-focus.is-swapping::after {
  animation: details-focus-scan 780ms ease forwards;
}

.details-focus > * {
  position: relative;
  z-index: 1;
}

.details-focus-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.details-focus-header span {
  color: #9adbe9;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.details-focus-header strong {
  display: block;
  margin-top: 5px;
  color: #fff;
  font-size: clamp(24px, 3vw, 32px);
  line-height: 1.05;
}

.details-focus-header em {
  display: inline-flex;
  min-height: 31px;
  flex: 0 0 auto;
  align-items: center;
  padding: 0 11px;
  border: 1px solid rgba(154, 219, 233, 0.2);
  border-radius: 999px;
  background: rgba(154, 219, 233, 0.1);
  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
}

.details-focus p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  line-height: 1.5;
}

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

.details-focus-grid span {
  display: grid;
  min-width: 0;
  gap: 6px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.06);
}

.details-focus-grid em {
  color: rgba(255, 255, 255, 0.58);
  font-size: 11px;
  font-style: normal;
  font-weight: 850;
  text-transform: uppercase;
}

.details-focus-grid strong {
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  line-height: 1.2;
  overflow-wrap: anywhere;
}

.details-focus-meter {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  padding: 13px 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.055);
}

.details-focus-meter span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.details-focus-meter em {
  height: 9px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
}

.details-focus-meter i {
  display: block;
  width: var(--detail-focus-level);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--accent), var(--signal));
  box-shadow: 0 0 18px rgba(154, 219, 233, 0.26);
  transition: width 320ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.details-focus-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.details-focus-tags span {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 0 11px;
  border: 1px solid rgba(154, 219, 233, 0.18);
  border-radius: 999px;
  background: rgba(154, 219, 233, 0.1);
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  font-weight: 850;
}

.details-focus.is-swapping .details-focus-grid span,
.details-focus.is-swapping .details-focus-tags span {
  animation: details-focus-piece-in 360ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.details-focus.is-swapping .details-focus-grid span:nth-child(2),
.details-focus.is-swapping .details-focus-tags span:nth-child(2) {
  animation-delay: 55ms;
}

.details-focus.is-swapping .details-focus-grid span:nth-child(3),
.details-focus.is-swapping .details-focus-tags span:nth-child(3) {
  animation-delay: 95ms;
}

.policy-shortcuts {
  display: flex;
  grid-column: 2;
  flex-wrap: wrap;
  gap: 10px;
  align-self: start;
  padding-top: 4px;
}

.policy-shortcuts a {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0 13px;
  background: #fff;
  color: var(--text-2);
  font-size: 13px;
  font-weight: 850;
  box-shadow: 0 8px 20px rgba(13, 27, 42, 0.04);
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    color 160ms ease,
    box-shadow 160ms ease;
}

.policy-shortcuts a::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(0, 115, 148, 0.07), transparent);
  content: "";
  transform: translateX(-110%);
  transition: transform 360ms ease;
}

.policy-shortcuts a:hover {
  transform: translateY(-1px);
  border-color: rgba(0, 115, 148, 0.34);
  color: var(--accent-dark);
  box-shadow: 0 12px 24px rgba(13, 27, 42, 0.08);
}

.policy-shortcuts a:hover::before {
  transform: translateX(110%);
}

@keyframes details-focus-scan {
  0% {
    opacity: 0;
    transform: translateX(-125%) skewX(-12deg);
  }

  18%,
  84% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translateX(390%) skewX(-12deg);
  }
}

@keyframes details-focus-piece-in {
  0% {
    opacity: 0.58;
    transform: translateY(7px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.faq-list {
  --faq-progress: 0;
  position: relative;
  counter-reset: faq-item;
  display: grid;
  gap: 12px;
  max-width: 880px;
  margin: 0 auto;
  padding-left: 30px;
}

.faq-list::before,
.faq-list::after {
  position: absolute;
  top: 16px;
  bottom: 16px;
  left: 8px;
  width: 2px;
  border-radius: 999px;
  content: "";
}

.faq-list::before {
  background: rgba(207, 220, 228, 0.86);
}

.faq-list::after {
  background: linear-gradient(180deg, var(--accent), var(--signal), var(--success));
  transform: scaleY(var(--faq-progress));
  transform-origin: top;
  transition: transform 420ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.faq-list details {
  position: relative;
  counter-increment: faq-item;
  overflow: hidden;
  border: 1px solid rgba(207, 220, 228, 0.92);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 10px 26px rgba(13, 27, 42, 0.04);
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease,
    background 180ms ease;
}

.faq-list details::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--signal));
  content: "";
  opacity: 0;
  transform: scaleX(0.18);
  transform-origin: left;
  transition:
    opacity 180ms ease,
    transform 260ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.faq-list details:hover,
.faq-list details:focus-within {
  border-color: rgba(0, 115, 148, 0.28);
  box-shadow: 0 16px 34px rgba(13, 27, 42, 0.08);
  transform: translateY(-2px);
}

.faq-list details[open] {
  border-color: rgba(0, 115, 148, 0.3);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.88)),
    #fff;
  box-shadow: 0 18px 42px rgba(13, 27, 42, 0.1);
}

.faq-list details[open]::before,
.faq-list details.is-faq-active::before {
  opacity: 1;
  transform: scaleX(1);
}

.faq-list summary {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 42px 1fr auto;
  cursor: pointer;
  align-items: center;
  gap: 16px;
  min-height: 78px;
  padding: 18px 22px;
  color: var(--text);
  font-size: 19px;
  font-weight: 850;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::before {
  position: relative;
  display: inline-grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent-dark);
  content: counter(faq-item, decimal-leading-zero);
  font-size: 12px;
  font-weight: 850;
  transition:
    background 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.faq-list summary::after {
  width: 10px;
  height: 10px;
  flex: 0 0 10px;
  transform: rotate(45deg);
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  content: "";
  transition: transform 180ms ease;
}

.faq-list details[open] summary::before {
  transform: scale(1.08);
  background: linear-gradient(135deg, var(--accent), var(--signal));
  color: #fff;
  box-shadow: 0 12px 24px rgba(0, 115, 148, 0.18);
}

.faq-list details[open] summary::after {
  transform: rotate(-135deg);
}

.faq-list p {
  position: relative;
  z-index: 1;
  max-width: 720px;
  padding: 0 24px 24px 80px;
  animation: faq-answer-in 220ms ease;
}

.faq-list p::before {
  display: block;
  width: 52px;
  height: 3px;
  margin-bottom: 14px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--signal));
  content: "";
}

@supports (interpolate-size: allow-keywords) {
  .faq-list {
    interpolate-size: allow-keywords;
  }

  .faq-list details::details-content {
    block-size: 0;
    opacity: 0;
    transition:
      block-size 240ms ease,
      opacity 180ms ease,
      content-visibility 240ms allow-discrete;
  }

  .faq-list details[open]::details-content {
    block-size: auto;
    opacity: 1;
  }
}

@keyframes faq-answer-in {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.brief-section {
  display: grid;
  max-width: 1120px;
  grid-template-columns: minmax(0, 0.7fr) minmax(420px, 1fr);
  align-items: center;
  gap: clamp(34px, 6vw, 70px);
  margin: 0 auto;
}

.brief-copy {
  max-width: 520px;
}

.brief-copy p {
  margin-top: 14px;
  color: var(--muted);
  font-size: 19px;
}

.brief-builder {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-strong);
}

.brief-options {
  --indicator-x: 0px;
  --indicator-y: 0px;
  --indicator-w: 0px;
  --indicator-h: 58px;
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  border-bottom: 1px solid var(--line);
  background: var(--line);
  isolation: isolate;
}

.brief-options::after {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  width: var(--indicator-w);
  height: var(--indicator-h);
  background: var(--ink);
  content: "";
  opacity: 0;
  pointer-events: none;
  transform: translate3d(var(--indicator-x), var(--indicator-y), 0);
  transition:
    transform 260ms cubic-bezier(0.2, 0.8, 0.2, 1),
    width 260ms cubic-bezier(0.2, 0.8, 0.2, 1),
    height 260ms cubic-bezier(0.2, 0.8, 0.2, 1),
    opacity 160ms ease;
}

.js-ready .brief-options::after {
  opacity: 1;
}

.brief-options.is-settling::after {
  animation: brief-option-land 480ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.brief-option {
  position: relative;
  z-index: 1;
  min-height: 58px;
  cursor: pointer;
  border: 0;
  background: #fff;
  color: var(--text-2);
  font: inherit;
  font-size: 14px;
  font-weight: 850;
  transition:
    background 160ms ease,
    color 160ms ease,
    transform 160ms ease;
}

.brief-option:hover {
  color: var(--accent);
}

.brief-option.is-active {
  background: var(--ink);
  color: #fff;
}

.js-ready .brief-option.is-active {
  background: transparent;
}

.brief-output {
  position: relative;
  overflow: hidden;
  padding: 30px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.9)),
    #fff;
}

.brief-output::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(13, 27, 42, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(13, 27, 42, 0.035) 1px, transparent 1px);
  background-size: 32px 32px;
  content: "";
  opacity: 0.55;
}

.brief-output::after {
  position: absolute;
  top: -18%;
  bottom: -18%;
  left: 0;
  width: 30%;
  transform: translateX(-130%) skewX(-12deg);
  background: linear-gradient(90deg, transparent, rgba(154, 219, 233, 0.16), rgba(200, 113, 30, 0.08), transparent);
  content: "";
  opacity: 0;
  pointer-events: none;
}

.brief-output.is-swapping::after {
  animation: brief-output-scan 820ms ease forwards;
}

.brief-output > * {
  position: relative;
  z-index: 1;
}

.brief-output.is-swapping {
  animation: panel-swap 260ms ease;
}

.brief-output.is-swapping .brief-label,
.brief-output.is-swapping h3,
.brief-output.is-swapping > p,
.brief-output.is-swapping .brief-meta div,
.brief-output.is-swapping .brief-meter div,
.brief-output.is-swapping .brief-deliverables li,
.brief-output.is-swapping .button {
  animation: brief-packet-piece-in 380ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.brief-output.is-swapping h3,
.brief-output.is-swapping > p {
  animation-delay: 35ms;
}

.brief-output.is-swapping .brief-meta div:nth-child(2),
.brief-output.is-swapping .brief-meter div:nth-child(2),
.brief-output.is-swapping .brief-deliverables li:nth-child(2) {
  animation-delay: 75ms;
}

.brief-output.is-swapping .brief-meter div:nth-child(3),
.brief-output.is-swapping .brief-deliverables li:nth-child(3),
.brief-output.is-swapping .button {
  animation-delay: 120ms;
}

.brief-label {
  display: inline-flex;
  color: var(--accent);
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
}

.brief-output h3 {
  margin-top: 10px;
  font-size: clamp(28px, 4vw, 38px);
}

.brief-output p {
  max-width: 560px;
  margin-top: 12px;
  color: var(--muted);
}

.brief-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.brief-meta div {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
}

.brief-meta span,
.brief-deliverables li {
  color: var(--muted);
}

.brief-meta span {
  display: block;
  font-size: 13px;
  font-weight: 750;
}

.brief-meta strong {
  display: block;
  margin-top: 4px;
  color: var(--text);
  font-size: 20px;
  line-height: 1.15;
}

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

.brief-meter div {
  display: grid;
  gap: 8px;
  min-width: 0;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.68);
}

.brief-meter span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.brief-meter strong {
  min-width: 0;
  color: var(--text);
  font-size: 15px;
  line-height: 1.2;
  overflow-wrap: anywhere;
}

.brief-meter em {
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(207, 220, 228, 0.74);
}

.brief-meter i {
  --meter-width: 50%;
  display: block;
  width: var(--meter-width);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--accent), var(--signal));
  transition: width 320ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.brief-mail {
  position: relative;
  display: grid;
  gap: 14px;
  overflow: hidden;
  margin-top: 22px;
  padding: 16px;
  border: 1px solid rgba(13, 27, 42, 0.12);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 14% 20%, rgba(0, 115, 148, 0.13), transparent 32%),
    linear-gradient(135deg, rgba(10, 21, 34, 0.98), rgba(13, 35, 54, 0.96));
  color: #fff;
  box-shadow: 0 18px 36px rgba(10, 21, 34, 0.18);
}

.brief-mail::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 28px 28px;
  content: "";
  opacity: 0.72;
  pointer-events: none;
}

.brief-mail::after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 34%;
  transform: translateX(-130%) skewX(-12deg);
  background: linear-gradient(90deg, transparent, rgba(154, 219, 233, 0.2), transparent);
  content: "";
  opacity: 0;
  pointer-events: none;
}

.brief-builder.is-visible .brief-mail::after,
.brief-output.is-swapping .brief-mail::after {
  animation: brief-mail-scan 760ms ease forwards;
}

.brief-mail > * {
  position: relative;
  z-index: 1;
}

.brief-mail-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.brief-mail-top span {
  color: #9adbe9;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.brief-mail-top strong {
  min-width: 0;
  color: #fff;
  font-size: 14px;
  line-height: 1.2;
  text-align: right;
  overflow-wrap: anywhere;
}

.brief-mail-lines {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.brief-mail-lines span {
  display: grid;
  min-width: 0;
  gap: 5px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.06);
}

.brief-mail-lines em {
  color: rgba(255, 255, 255, 0.58);
  font-size: 11px;
  font-style: normal;
  font-weight: 850;
  text-transform: uppercase;
}

.brief-mail-lines strong {
  color: rgba(255, 255, 255, 0.88);
  font-size: 13px;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.brief-mail-status {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.brief-mail-status span {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 0 10px;
  border: 1px solid rgba(154, 219, 233, 0.18);
  border-radius: 999px;
  background: rgba(154, 219, 233, 0.1);
  color: rgba(255, 255, 255, 0.76);
  font-size: 11px;
  font-weight: 850;
}

.brief-output.is-swapping .brief-mail-lines span,
.brief-output.is-swapping .brief-mail-status span {
  animation: brief-mail-piece-in 360ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.brief-output.is-swapping .brief-mail-lines span:nth-child(2) {
  animation-delay: 45ms;
}

.brief-output.is-swapping .brief-mail-lines span:nth-child(3) {
  animation-delay: 90ms;
}

.brief-output.is-swapping .brief-mail-status span:nth-child(2) {
  animation-delay: 65ms;
}

.brief-output.is-swapping .brief-mail-status span:nth-child(3) {
  animation-delay: 110ms;
}

.brief-deliverables {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.brief-deliverables li {
  position: relative;
  padding-left: 28px;
  font-weight: 700;
}

.brief-deliverables li::before {
  position: absolute;
  top: 9px;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 6px rgba(17, 138, 95, 0.1);
  content: "";
}

.brief-output .button {
  width: 100%;
  margin-top: 28px;
}

@keyframes brief-mail-scan {
  0% {
    opacity: 0;
    transform: translateX(-130%) skewX(-12deg);
  }

  18%,
  84% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translateX(360%) skewX(-12deg);
  }
}

@keyframes payment-packet-highlight {
  0% {
    transform: translateX(0);
    box-shadow: none;
  }

  52% {
    transform: translateX(4px);
    box-shadow: inset 4px 0 0 rgba(17, 138, 95, 0.32);
  }

  100% {
    transform: translateX(0);
    box-shadow: none;
  }
}

@keyframes brief-output-scan {
  0% {
    opacity: 0;
    transform: translateX(-130%) skewX(-12deg);
  }

  18%,
  78% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translateX(360%) skewX(-12deg);
  }
}

@keyframes brief-option-land {
  0% {
    filter: saturate(0.86);
    box-shadow: none;
  }

  58% {
    filter: saturate(1.12);
    box-shadow:
      0 0 0 5px rgba(0, 115, 148, 0.08),
      0 14px 30px rgba(10, 21, 34, 0.2);
  }

  100% {
    filter: saturate(1);
    box-shadow: none;
  }
}

@keyframes brief-packet-piece-in {
  0% {
    opacity: 0.58;
    transform: translateY(8px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes brief-mail-piece-in {
  0% {
    opacity: 0.58;
    transform: translateY(7px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.contact-section {
  display: grid;
  max-width: 1120px;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.7fr);
  align-items: center;
  gap: 44px;
  margin: 0 auto;
}

.contact-copy {
  max-width: 620px;
}

.contact-route {
  --route-progress: 0;
  position: relative;
  display: grid;
  gap: 12px;
  max-width: 560px;
  margin-top: 28px;
  padding-left: 26px;
}

.contact-route-line {
  position: absolute;
  top: 16px;
  bottom: 16px;
  left: 9px;
  width: 2px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(207, 220, 228, 0.9);
}

.contact-route-line::after {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(180deg, var(--accent), var(--signal), var(--success));
  content: "";
  transform: scaleY(var(--route-progress));
  transform-origin: top;
  transition: transform 520ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.contact-route-step {
  position: relative;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 6px 14px;
  align-items: start;
  min-height: 72px;
  padding: 2px 0 2px 2px;
  color: var(--muted);
  transform: translateX(0);
  transition:
    color 220ms ease,
    transform 220ms ease;
}

.contact-route-step span {
  display: inline-grid;
  grid-row: 1 / span 2;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(0, 115, 148, 0.2);
  border-radius: 50%;
  background: #fff;
  color: var(--accent-dark);
  font-size: 12px;
  font-weight: 950;
  box-shadow:
    0 0 0 8px var(--bg),
    0 10px 24px rgba(13, 27, 42, 0.08);
  transition:
    background 220ms ease,
    border-color 220ms ease,
    color 220ms ease,
    transform 220ms ease,
    box-shadow 220ms ease;
}

.contact-route-step strong {
  display: block;
  color: var(--text);
  font-size: 16px;
  line-height: 1.25;
}

.contact-route-step small {
  display: block;
  grid-column: 2;
  margin-top: 0;
  color: inherit;
  font-size: 14px;
  font-weight: 650;
  line-height: 1.45;
}

.contact-route-step.is-active {
  color: var(--text-2);
  transform: none;
}

.contact-route-step.is-active span {
  border-color: rgba(200, 113, 30, 0.34);
  background: var(--signal-soft);
  color: var(--signal);
  transform: scale(1.06);
  box-shadow:
    0 0 0 8px var(--bg),
    0 14px 28px rgba(200, 113, 30, 0.14);
}

.contact-route-step.is-complete span {
  border-color: rgba(17, 138, 95, 0.28);
  background: rgba(17, 138, 95, 0.1);
  color: var(--success);
}

.contact-box {
  position: relative;
  display: grid;
  gap: 13px;
  overflow: hidden;
  isolation: isolate;
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(0, 115, 148, 0.08), transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.92)),
    #fff;
  box-shadow: 0 18px 46px rgba(13, 27, 42, 0.09);
}

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

.contact-box::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--signal));
  content: "";
}

.contact-box::after {
  position: absolute;
  top: -20%;
  bottom: -20%;
  left: 0;
  z-index: 0;
  width: 34%;
  transform: translateX(-130%) skewX(-12deg);
  background: linear-gradient(90deg, transparent, rgba(0, 115, 148, 0.12), rgba(200, 113, 30, 0.1), transparent);
  content: "";
  pointer-events: none;
}

.contact-box.is-contact-ready {
  border-color: rgba(0, 115, 148, 0.22);
  box-shadow:
    0 18px 46px rgba(13, 27, 42, 0.09),
    0 0 0 1px rgba(154, 219, 233, 0.08),
    0 22px 58px rgba(0, 115, 148, 0.1);
}

.contact-box.is-contact-ready::after,
.contact-box.is-scope-synced::after {
  animation: contact-ready-sweep 840ms ease forwards;
}

.contact-box.is-scope-synced {
  border-color: rgba(17, 138, 95, 0.22);
  box-shadow:
    0 18px 46px rgba(13, 27, 42, 0.09),
    0 0 0 1px rgba(17, 138, 95, 0.08),
    0 22px 58px rgba(17, 138, 95, 0.08);
}

.contact-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.contact-card-top span {
  color: var(--accent-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.contact-card-top strong {
  color: var(--text-2);
  font-size: 13px;
  transition: color 180ms ease;
}

.contact-box.is-draft-updating .contact-card-top strong {
  color: var(--success);
  animation: contact-draft-piece-in 360ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.contact-email {
  display: block;
  min-width: 0;
  color: var(--accent);
  font-size: clamp(18px, 1.7vw, 20px);
  font-weight: 850;
  line-height: 1.2;
  overflow-wrap: normal;
  white-space: nowrap;
}

.contact-email-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 12px;
  align-items: center;
}

.contact-copy-email {
  display: inline-grid;
  width: 100%;
  min-height: 38px;
  cursor: pointer;
  place-items: center;
  padding: 0 13px;
  border: 1px solid rgba(0, 115, 148, 0.18);
  border-radius: var(--radius);
  background: rgba(220, 239, 245, 0.62);
  color: var(--accent-dark);
  font: inherit;
  font-size: 12px;
  font-weight: 900;
  transition:
    transform 160ms ease,
    background 160ms ease,
    border-color 160ms ease,
    color 160ms ease;
}

.contact-copy-email:hover,
.contact-copy-email:focus-visible,
.contact-copy-email.is-copied {
  transform: translateY(-1px);
  border-color: rgba(17, 138, 95, 0.22);
  background: rgba(17, 138, 95, 0.1);
  color: var(--success);
}

.contact-checklist {
  display: grid;
  gap: 8px;
  margin: 2px 0 0;
  padding: 0;
  list-style: none;
}

.contact-checklist li {
  display: grid;
  grid-template-columns: 38px 1fr;
  align-items: center;
  gap: 12px;
  min-height: 36px;
  padding: 6px 10px;
  border: 1px solid rgba(207, 220, 228, 0.78);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.62);
  color: var(--text-2);
  font-size: 14px;
  font-weight: 850;
}

.contact-checklist span {
  display: inline-grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent-dark);
  font-size: 11px;
  font-weight: 900;
}

.contact-draft {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(207, 220, 228, 0.78);
  border-radius: var(--radius);
  background: rgba(207, 220, 228, 0.72);
}

.contact-draft div {
  min-width: 0;
  padding: 13px;
  background:
    linear-gradient(135deg, rgba(0, 115, 148, 0.04), transparent 50%),
    rgba(255, 255, 255, 0.74);
}

.contact-box.is-draft-updating .contact-draft div,
.contact-box.is-draft-updating .contact-checklist li:nth-child(4),
.contact-box.is-draft-updating .button {
  animation: contact-draft-piece-in 420ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.contact-box.is-draft-updating .contact-draft div:nth-child(2),
.contact-box.is-draft-updating .button {
  animation-delay: 80ms;
}

.contact-draft span,
.contact-draft strong {
  display: block;
}

.contact-draft span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
}

.contact-draft strong {
  margin-top: 3px;
  color: var(--text);
  font-size: 13px;
  line-height: 1.28;
  overflow-wrap: anywhere;
}

.contact-response {
  display: grid;
  gap: 4px;
  margin-top: 0;
  padding-top: 2px;
}

.contact-response span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.contact-response strong {
  color: var(--text);
  font-size: 16px;
  line-height: 1.3;
}

.contact-box .button {
  width: 100%;
  margin-top: 0;
}

@keyframes contact-ready-sweep {
  0% {
    opacity: 0;
    transform: translateX(-130%) skewX(-12deg);
  }

  18% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translateX(350%) skewX(-12deg);
  }
}

@keyframes contact-draft-piece-in {
  0% {
    opacity: 0.68;
    transform: translateY(7px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.site-footer {
  display: grid;
  grid-template-columns: 1.4fr 0.55fr 0.65fr;
  gap: 42px;
  padding: 44px clamp(20px, 6vw, 80px) 26px;
  border-top: 1px solid var(--border);
  background: #fff;
}

.footer-brand {
  font-size: 20px;
}

.site-footer p {
  max-width: 310px;
  margin-top: 12px;
  color: var(--muted);
}

.footer-links {
  display: grid;
  gap: 10px;
  align-content: start;
  color: #26384c;
  font-weight: 700;
}

.copyright {
  grid-column: 1 / -1;
  max-width: none;
  margin-top: 18px;
  text-align: center;
  font-size: 13px;
}

.policy-page {
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(42px, 7vw, 82px) clamp(20px, 6vw, 80px);
}

.policy-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.42fr);
  align-items: end;
  gap: clamp(28px, 5vw, 68px);
  padding-bottom: clamp(34px, 5vw, 54px);
  border-bottom: 1px solid var(--line);
}

.policy-back {
  display: inline-flex;
  align-items: center;
  margin-bottom: 18px;
  color: var(--accent);
  font-size: 14px;
  font-weight: 850;
}

.policy-back::before {
  width: 8px;
  height: 8px;
  margin-right: 8px;
  border-bottom: 2px solid currentColor;
  border-left: 2px solid currentColor;
  content: "";
  transform: rotate(45deg);
}

.policy-page h1 {
  font-size: clamp(42px, 6vw, 72px);
}

.policy-page p,
.policy-page li {
  color: var(--muted);
}

.policy-hero p:not(.updated) {
  max-width: 720px;
  margin-top: 18px;
  font-size: 20px;
}

.policy-summary {
  display: grid;
  gap: 12px;
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.86)),
    #fff;
  box-shadow: var(--shadow);
}

.policy-summary strong {
  color: var(--text);
  font-size: 16px;
}

.policy-summary span {
  position: relative;
  padding-left: 22px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 750;
}

.policy-summary span::before {
  position: absolute;
  top: 8px;
  left: 0;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 6px rgba(17, 138, 95, 0.1);
  content: "";
}

.policy-layout {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
  padding-top: clamp(30px, 5vw, 52px);
}

.policy-side {
  position: sticky;
  top: 104px;
  display: grid;
  gap: 8px;
  padding: 10px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 12px 28px rgba(13, 27, 42, 0.06);
}

.policy-side a {
  min-height: 42px;
  border-radius: 6px;
  padding: 10px 12px;
  color: var(--text-2);
  font-size: 14px;
  font-weight: 850;
  transition:
    background 160ms ease,
    color 160ms ease,
    transform 160ms ease;
}

.policy-side a:hover,
.policy-side a.is-current {
  background: var(--ink);
  color: #fff;
}

.policy-side a:hover {
  transform: translateX(2px);
}

.policy-content {
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.92)),
    #fff;
  box-shadow: var(--shadow);
}

.policy-content h2 {
  margin-top: 34px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
  font-size: 24px;
}

.policy-content h2:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}

.policy-content p,
.policy-content li {
  font-size: 17px;
}

.policy-content p,
.policy-content ul {
  margin-top: 12px;
}

.policy-content ul {
  padding-left: 22px;
}

.policy-content a {
  color: var(--accent);
  font-weight: 850;
}

.policy-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px 24px;
  padding: 28px clamp(20px, 6vw, 80px);
  border-top: 1px solid var(--border);
  background: #fff;
  color: var(--muted);
  font-size: 14px;
  font-weight: 750;
}

.policy-footer a {
  color: var(--accent);
  font-weight: 850;
}

.portfolio-page {
  max-width: 1240px;
  margin: 0 auto;
  padding: clamp(42px, 7vw, 82px) clamp(20px, 6vw, 80px);
}

.portfolio-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.4fr);
  align-items: end;
  gap: clamp(28px, 5vw, 68px);
  padding-bottom: clamp(34px, 5vw, 56px);
  border-bottom: 1px solid var(--line);
}

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

.portfolio-page h1 {
  font-size: clamp(44px, 6vw, 76px);
}

.portfolio-hero p {
  max-width: 760px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 20px;
}

.portfolio-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.portfolio-resume-card {
  display: grid;
  gap: 12px;
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(0, 115, 148, 0.08), transparent 54%),
    rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
}

.portfolio-resume-card span,
.portfolio-card-top span,
.portfolio-strip span {
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.portfolio-resume-card strong {
  color: var(--text);
  font-size: 22px;
  line-height: 1.18;
}

.portfolio-resume-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.portfolio-resume-card a,
.portfolio-links a {
  color: var(--accent-dark);
  font-weight: 900;
}

.portfolio-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  margin: 34px 0 clamp(48px, 7vw, 78px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--border);
}

.portfolio-strip div {
  display: grid;
  gap: 5px;
  min-width: 0;
  padding: 18px;
  background: rgba(255, 255, 255, 0.86);
}

.portfolio-strip strong {
  color: var(--text);
  font-size: 17px;
}

.portfolio-strip em {
  color: var(--muted);
  font-size: 13px;
  font-style: normal;
  line-height: 1.35;
}

.portfolio-section {
  padding: clamp(34px, 5vw, 58px) 0;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 26px;
}

.portfolio-card,
.resume-panels article {
  min-width: 0;
  border: 1px solid rgba(207, 220, 228, 0.9);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.78)),
    var(--bg-strong);
  box-shadow: 0 16px 44px rgba(13, 27, 42, 0.08);
}

.portfolio-card {
  display: grid;
  gap: 16px;
  align-content: start;
  padding: 24px;
}

.portfolio-card-featured {
  grid-row: span 2;
}

.portfolio-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.portfolio-card-top strong {
  padding: 5px 10px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-dark);
  font-size: 12px;
  font-weight: 900;
}

.portfolio-card h3,
.resume-panels h3 {
  margin: 0;
  color: var(--text);
  font-size: 24px;
  line-height: 1.15;
}

.portfolio-card p,
.portfolio-card li,
.portfolio-resume-copy p,
.resume-panels p {
  color: var(--muted);
}

.portfolio-card p {
  margin: 0;
}

.portfolio-card ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 20px;
}

.portfolio-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.portfolio-tags span {
  padding: 6px 10px;
  border: 1px solid rgba(0, 115, 148, 0.14);
  border-radius: 999px;
  background: rgba(220, 239, 245, 0.52);
  color: var(--accent-dark);
  font-size: 12px;
  font-weight: 850;
}

.portfolio-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  padding-top: 4px;
}

.portfolio-resume-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(24px, 4vw, 48px);
  align-items: start;
  border-top: 1px solid var(--line);
}

.resume-panels {
  display: grid;
  gap: 14px;
}

.resume-panels article {
  padding: 20px;
}

.resume-panels p {
  margin: 10px 0 0;
}

.updated {
  margin-top: 12px;
  color: var(--muted);
  font-weight: 700;
}

:root[data-theme="dark"] .site-header,
:root[data-theme="dark"] .site-header.is-scrolled,
:root[data-theme="dark"] .action-dock,
:root[data-theme="dark"] .mobile-menu,
:root[data-theme="dark"] .site-footer,
:root[data-theme="dark"] .policy-footer {
  border-color: rgba(86, 124, 151, 0.42);
  background:
    linear-gradient(135deg, rgba(85, 197, 226, 0.1), transparent 48%),
    rgba(8, 18, 30, 0.91);
}

:root[data-theme="dark"] .button-secondary,
:root[data-theme="dark"] .menu-toggle,
:root[data-theme="dark"] .theme-toggle,
:root[data-theme="dark"] .mobile-policy-links a {
  border-color: rgba(85, 197, 226, 0.22);
  background: rgba(16, 31, 46, 0.82);
  color: var(--accent);
}

:root[data-theme="dark"] .action-dock a:not(.dock-primary):hover,
:root[data-theme="dark"] .action-dock button:hover,
:root[data-theme="dark"] .button-secondary:hover,
:root[data-theme="dark"] .button-secondary:focus-visible,
:root[data-theme="dark"] .mobile-menu nav a:hover,
:root[data-theme="dark"] .mobile-menu nav a.is-active,
:root[data-theme="dark"] .mobile-policy-links a:hover {
  background: rgba(85, 197, 226, 0.12);
  color: var(--accent-dark);
}

:root[data-theme="dark"] .section-soft {
  border-color: rgba(86, 124, 151, 0.28);
  background:
    linear-gradient(180deg, rgba(10, 24, 38, 0.8), rgba(7, 17, 29, 0.72)),
    var(--bg);
}

:root[data-theme="dark"] .hero-status,
:root[data-theme="dark"] .proof-strip div,
:root[data-theme="dark"] .service-item,
:root[data-theme="dark"] .service-action,
:root[data-theme="dark"] .showcase-shell,
:root[data-theme="dark"] .showcase-tab,
:root[data-theme="dark"] .process-grid article,
:root[data-theme="dark"] .pricing-guide span,
:root[data-theme="dark"] .price-card,
:root[data-theme="dark"] .payment-step,
:root[data-theme="dark"] .deposit-card,
:root[data-theme="dark"] .details-list article,
:root[data-theme="dark"] .policy-shortcuts a,
:root[data-theme="dark"] .faq-list details,
:root[data-theme="dark"] .brief-option,
:root[data-theme="dark"] .brief-output,
:root[data-theme="dark"] .brief-meta div,
:root[data-theme="dark"] .brief-meter div,
:root[data-theme="dark"] .contact-box,
:root[data-theme="dark"] .contact-checklist li,
:root[data-theme="dark"] .contact-copy-email,
:root[data-theme="dark"] .policy-summary,
:root[data-theme="dark"] .policy-side,
:root[data-theme="dark"] .policy-content,
:root[data-theme="dark"] .portfolio-resume-card,
:root[data-theme="dark"] .portfolio-strip div,
:root[data-theme="dark"] .portfolio-card,
:root[data-theme="dark"] .resume-panels article {
  border-color: rgba(86, 124, 151, 0.34);
  background:
    linear-gradient(135deg, rgba(85, 197, 226, 0.07), transparent 44%),
    rgba(12, 24, 38, 0.88);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.24);
}

:root[data-theme="dark"] .hero-status,
:root[data-theme="dark"] .showcase-shell,
:root[data-theme="dark"] .brief-output,
:root[data-theme="dark"] .contact-box,
:root[data-theme="dark"] .policy-summary,
:root[data-theme="dark"] .policy-content,
:root[data-theme="dark"] .portfolio-resume-card {
  background:
    linear-gradient(rgba(85, 197, 226, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(85, 197, 226, 0.04) 1px, transparent 1px),
    linear-gradient(135deg, rgba(85, 197, 226, 0.08), transparent 46%),
    rgba(10, 22, 36, 0.92);
}

:root[data-theme="dark"] .brief-options,
:root[data-theme="dark"] .showcase-tabs,
:root[data-theme="dark"] .contact-draft,
:root[data-theme="dark"] .policy-shortcuts {
  border-color: rgba(86, 124, 151, 0.36);
  background: rgba(16, 31, 46, 0.84);
}

:root[data-theme="dark"] .contact-draft div,
:root[data-theme="dark"] .brief-mail,
:root[data-theme="dark"] .price-fit,
:root[data-theme="dark"] .quality-notes article,
:root[data-theme="dark"] .details-focus-grid span,
:root[data-theme="dark"] .pricing-focus-stats span,
:root[data-theme="dark"] .process-focus-grid span {
  border-color: rgba(86, 124, 151, 0.28);
  background: rgba(255, 255, 255, 0.055);
}

:root[data-theme="dark"] .showcase-tab.is-active,
:root[data-theme="dark"] .brief-option.is-active,
:root[data-theme="dark"] .price-card.is-price-active,
:root[data-theme="dark"] .details-list article.is-detail-active,
:root[data-theme="dark"] .faq-list details[open] {
  border-color: rgba(85, 197, 226, 0.42);
  box-shadow:
    0 18px 46px rgba(0, 0, 0, 0.24),
    0 0 0 1px rgba(85, 197, 226, 0.08);
}

:root[data-theme="dark"] .payment-step-index,
:root[data-theme="dark"] .contact-route-step span,
:root[data-theme="dark"] .process-number,
:root[data-theme="dark"] .contact-checklist span {
  background: rgba(85, 197, 226, 0.12);
  color: var(--accent);
  box-shadow: 0 0 0 8px var(--bg);
}

:root[data-theme="dark"] .footer-links {
  color: var(--text-2);
}

:root[data-theme="dark"] ::selection {
  background: rgba(85, 197, 226, 0.24);
  color: var(--text);
}

.js-ready [data-reveal] {
  --reveal-y: 24px;
  opacity: 0;
  transform: translateY(var(--reveal-y));
  transition:
    opacity 620ms ease,
    transform 620ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.js-ready .hero-media[data-reveal] {
  transform: translateY(var(--reveal-y)) rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
}

.js-ready [data-reveal].is-visible {
  --reveal-y: 0px;
  opacity: 1;
}

.js-ready .service-grid .service-item:nth-child(2).is-visible,
.js-ready .pricing-grid .price-card:nth-child(2).is-visible,
.js-ready .details-list article:nth-child(2).is-visible {
  transition-delay: 80ms;
}

.js-ready .service-grid .service-item:nth-child(3).is-visible,
.js-ready .pricing-grid .price-card:nth-child(3).is-visible,
.js-ready .details-list article:nth-child(3).is-visible {
  transition-delay: 150ms;
}

.js-ready .service-grid .service-item:nth-child(4).is-visible,
.js-ready .pricing-grid .price-card:nth-child(4).is-visible,
.js-ready .details-list article:nth-child(4).is-visible {
  transition-delay: 220ms;
}

.js-ready .delivery-board .delivery-row {
  opacity: 0;
  transform: translateX(-14px);
}

.js-ready .delivery-board.is-visible .delivery-row {
  animation: row-in 540ms ease forwards;
}

.js-ready .delivery-board.is-visible .delivery-row:nth-of-type(3) {
  animation-delay: 90ms;
}

.js-ready .delivery-board.is-visible .delivery-row:nth-of-type(4) {
  animation-delay: 180ms;
}

.js-ready .delivery-board.is-visible .delivery-row:nth-of-type(5) {
  animation-delay: 270ms;
}

.js-ready .price-features li {
  opacity: 0;
  transform: translateY(8px);
}

.js-ready .price-card.is-visible .price-features li {
  animation: price-feature-in 420ms cubic-bezier(0.2, 0.7, 0.2, 1) forwards;
}

.js-ready .price-card.is-visible .price-features li:nth-child(2) {
  animation-delay: 70ms;
}

.js-ready .price-card.is-visible .price-features li:nth-child(3) {
  animation-delay: 140ms;
}

.js-ready .contact-box .contact-checklist li {
  opacity: 0;
  transform: translateX(-10px);
}

.js-ready .contact-box.is-visible .contact-checklist li {
  animation: contact-item-in 420ms cubic-bezier(0.2, 0.7, 0.2, 1) forwards;
}

.js-ready .contact-box.is-visible .contact-checklist li:nth-child(2) {
  animation-delay: 80ms;
}

.js-ready .contact-box.is-visible .contact-checklist li:nth-child(3) {
  animation-delay: 160ms;
}

.js-ready .contact-box.is-visible .contact-checklist li:nth-child(4) {
  animation-delay: 240ms;
}

.js-ready .service-action {
  opacity: 0;
  transform: translateY(8px);
}

.js-ready .service-item.is-visible .service-action {
  animation: service-action-in 420ms cubic-bezier(0.2, 0.7, 0.2, 1) forwards;
  animation-delay: 120ms;
}

@keyframes row-in {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes price-feature-in {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes contact-item-in {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes service-action-in {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1100px) {
  nav {
    gap: 16px;
    font-size: 14px;
  }

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

  .showcase-copy {
    max-width: 760px;
    padding-top: 0;
    justify-self: start;
  }

  .showcase-shell {
    width: 100%;
    max-width: 860px;
    justify-self: stretch;
  }
}

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

  .site-header > nav {
    display: none;
  }

  .menu-toggle {
    display: grid;
  }

  .hero {
    grid-template-columns: 1fr;
    row-gap: 34px;
    min-height: auto;
  }

  .hero-copy {
    grid-column: auto;
    grid-row: auto;
    max-width: 760px;
  }

  .hero-media {
    grid-column: auto;
    grid-row: auto;
    max-width: 780px;
  }

  .hero-metrics {
    max-width: 760px;
  }

  .trust-row {
    grid-column: auto;
    grid-row: auto;
  }

  .service-grid,
  .pricing-grid,
  .process-grid,
  .delivery-section,
  .showcase-section,
  .quality-section,
  .quality-notes,
  .brief-section,
  .details-section,
  .contact-section,
  .portfolio-hero,
  .portfolio-resume-section,
  .site-footer {
    grid-template-columns: 1fr;
  }

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

  .portfolio-card-featured {
    grid-row: auto;
  }

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

  .details-copy {
    position: static;
  }

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

  .policy-shortcuts {
    grid-column: auto;
  }

  .details-focus {
    grid-column: auto;
  }

  .service-item {
    min-height: 0;
  }

  .service-action {
    max-width: 340px;
    margin-right: auto;
    margin-left: auto;
  }

  .service-item + .service-item {
    border-top: 1px solid var(--border);
    border-left: 0;
  }

  .process-grid {
    max-width: 680px;
    gap: 18px;
  }

  .process-grid::before,
  .process-grid::after {
    top: 30px;
    right: auto;
    bottom: 30px;
    left: 29px;
    width: 3px;
    height: auto;
  }

  .process-grid::after {
    transform: scaleY(var(--process-progress));
    transform-origin: top;
  }

  .process-grid article {
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr);
    min-height: 0;
    gap: 0 18px;
    padding: 18px;
    text-align: left;
  }

  .process-grid article.is-process-active {
    transform: translateX(4px);
  }

  .process-number {
    grid-row: 1;
    box-shadow: 0 0 0 10px var(--bg);
  }

  .process-grid article.is-process-active .process-number {
    box-shadow:
      0 0 0 10px var(--bg),
      0 12px 26px rgba(0, 115, 148, 0.2);
  }

  .process-grid article p {
    min-height: 0;
  }

  .process-focus {
    max-width: 680px;
    grid-template-columns: 1fr;
  }

  .delivery-copy {
    max-width: 760px;
  }

  .price-card-featured {
    order: -1;
  }

  .pricing-guide {
    max-width: 760px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pricing-focus {
    max-width: 760px;
    grid-template-columns: 1fr;
  }

  .pricing-focus-stats,
  .pricing-focus-meter,
  .pricing-focus-tags {
    grid-column: auto;
    grid-row: auto;
  }

  .pricing-guide::before,
  .pricing-guide::after {
    display: none;
  }

  .showcase-copy {
    max-width: 760px;
    padding-top: 0;
    justify-self: start;
  }

  .showcase-shell {
    max-width: none;
  }

  .showcase-panel {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .site-footer {
    gap: 26px;
  }

  .policy-hero,
  .policy-layout {
    grid-template-columns: 1fr;
  }

  .policy-side {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  html {
    scroll-padding-top: 78px;
  }

  body::before {
    background-size: 36px 36px;
    opacity: 0.72;
  }

  .site-header {
    gap: 16px;
    padding: 16px 18px;
  }

  .mobile-menu {
    top: 68px;
    right: 16px;
    left: 16px;
  }

  .action-dock {
    right: 16px;
    bottom: 14px;
    left: 16px;
    justify-content: stretch;
  }

  .action-dock a,
  .action-dock button {
    flex: 1;
    padding: 0 8px;
  }

  .site-header.is-scrolled {
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .brand {
    gap: 9px;
    font-size: clamp(16px, 4.6vw, 18px);
  }

  .brand-mark {
    width: 30px;
    height: 30px;
    flex-basis: 30px;
  }

  .button-small {
    display: none;
  }

  .hero {
    row-gap: 22px;
    padding: 26px 24px 42px;
  }

  h1 {
    margin-top: 14px;
    font-size: 38px;
    line-height: 1.04;
    overflow-wrap: anywhere;
  }

  .hero-title {
    margin-top: 16px;
    font-size: 26px;
    line-height: 1.15;
  }

  .hero-text {
    margin-top: 14px;
    font-size: 16px;
    line-height: 1.48;
  }

  .hero-actions {
    flex-direction: column;
    gap: 12px;
    margin-top: 22px;
  }

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

  .hero-status {
    margin-top: 18px;
    padding: 12px;
  }

  .hero-status-top {
    align-items: center;
    gap: 10px;
  }

  .hero-status-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
  }

  .hero-status-grid span {
    min-height: 52px;
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 4px;
    padding: 6px 4px;
    text-align: center;
  }

  .hero-status-grid em {
    width: 22px;
    height: 22px;
  }

  .hero-status-grid strong {
    font-size: 11px;
  }

  .hero-metrics {
    display: none;
  }

  .trust-row {
    grid-template-columns: 1fr;
    margin-top: 28px;
  }

  .hero-media {
    display: grid;
    gap: 12px;
    transform: none;
  }

  .hero-media::before {
    inset: 10% -6% 0 6%;
  }

  .hero-signal-card {
    display: none;
  }

  .workflow-snapshot {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    margin: 0;
    padding: 16px;
  }

  .workflow-snapshot ol {
    gap: 8px;
  }

  .workflow-snapshot li {
    grid-template-columns: 62px minmax(0, 1fr);
    gap: 10px;
    min-height: 38px;
    padding: 9px 8px 7px;
  }

  .workflow-snapshot strong {
    font-size: 13px;
  }

  .workflow-snapshot li span {
    font-size: 12px;
  }

  .proof-strip,
  .details-list {
    grid-template-columns: 1fr;
  }

  .payment-flow-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .payment-step {
    min-height: 0;
    padding: 16px;
  }

  .payment-step::before {
    left: 35px;
  }

  .payment-step.is-active {
    transform: none;
  }

  .details-focus {
    padding: 18px;
  }

  .details-focus-header {
    flex-direction: column;
    gap: 10px;
  }

  .details-focus-grid {
    grid-template-columns: 1fr;
  }

  .details-focus-meter {
    grid-template-columns: 1fr;
    gap: 9px;
  }

  .section-heading {
    margin-bottom: 30px;
    text-align: left;
  }

  .service-item {
    padding: 34px 20px;
  }

  .process-grid article {
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 0 14px;
    padding: 16px;
  }

  .process-number {
    width: 44px;
    height: 44px;
    font-size: 13px;
  }

  .process-grid::before,
  .process-grid::after {
    left: 22px;
  }

  .process-card-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .process-checks span {
    min-height: 32px;
    font-size: 12px;
  }

  .process-focus {
    padding: 18px;
  }

  .process-focus-header {
    flex-direction: column;
    gap: 10px;
  }

  .process-focus-grid,
  .process-focus-meter {
    grid-template-columns: 1fr;
  }

  .delivery-board,
  .price-card {
    min-height: 0;
  }

  .section {
    padding: 48px 24px;
  }

  .pricing-guide {
    margin: -2px 0 18px;
  }

  .pricing-guide span {
    min-height: 72px;
    padding: 14px;
  }

  .pricing-focus {
    margin: -4px 0 20px;
    padding: 16px;
  }

  .pricing-focus-header {
    flex-direction: column;
    gap: 10px;
  }

  .pricing-focus-stats {
    grid-template-columns: 1fr;
  }

  .pricing-focus-stats span {
    min-height: 0;
  }

  .pricing-focus-meter {
    grid-template-columns: 1fr;
    gap: 9px;
  }

  .showcase-tabs {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    overflow: visible;
    padding: 14px;
  }

  .showcase-tab {
    min-width: 0;
    min-height: 46px;
    padding: 0 8px;
    text-align: center;
    font-size: 12px;
    line-height: 1.15;
    white-space: normal;
  }

  .showcase-tab small {
    display: none;
  }

  .showcase-panel {
    gap: 18px;
    padding: 18px;
  }

  .showcase-info h3 {
    font-size: clamp(23px, 7vw, 28px);
  }

  .showcase-list {
    gap: 8px;
    margin-top: 18px;
  }

  .showcase-list div {
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 10px;
    padding: 10px 0;
  }

  .showcase-list span {
    width: 28px;
    height: 28px;
    font-size: 11px;
  }

  .showcase-artifacts {
    margin-top: 14px;
  }

  .showcase-cta {
    width: 100%;
  }

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

  .interface-preview {
    min-height: 0;
  }

  .preview-toolbar {
    gap: 9px;
    padding: 14px;
  }

  .preview-toolbar strong {
    font-size: 12px;
  }

  .preview-stage {
    gap: 6px;
    margin: 12px 14px 0;
  }

  .preview-stage span {
    font-size: 10px;
  }

  .preview-grid {
    gap: 12px;
    padding: 14px;
  }

  .preview-main,
  .preview-side {
    padding: 14px;
  }

  .preview-module-label {
    min-height: 24px;
    margin-bottom: 12px;
    font-size: 10px;
  }

  .preview-copy-line {
    margin-top: 14px;
  }

  .preview-copy-line.short {
    margin-top: 9px;
  }

  .preview-progress {
    margin-top: 20px;
  }

  .preview-artifact-stack {
    margin-top: 16px;
  }

  .preview-artifact-stack span {
    min-height: 30px;
    padding: 8px 10px 8px 28px;
    font-size: 11px;
  }

  .preview-side {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: start;
    gap: 12px;
  }

  .preview-state {
    min-height: 30px;
    align-items: center;
  }

  .preview-score {
    min-width: 102px;
    justify-self: end;
    gap: 8px;
    padding-bottom: 0;
    border-bottom: 0;
  }

  .preview-score strong {
    font-size: 21px;
  }

  .preview-bars,
  .preview-inspector {
    grid-column: 1 / -1;
  }

  .preview-bars {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 7px;
  }

  .preview-bars span {
    width: 100%;
    height: 14px;
  }

  .preview-inspector {
    gap: 7px;
  }

  .preview-inspector span {
    min-height: 26px;
    font-size: 10px;
  }

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

  .preview-footer span {
    padding: 12px 14px;
    font-size: 11px;
  }

  .showcase-shell .preview-stage::before {
    right: 12%;
    left: 12%;
  }

  .quality-section {
    padding-top: 56px;
    padding-bottom: 62px;
  }

  .quality-row {
    grid-template-columns: 38px 1fr;
    gap: 10px;
  }

  .quality-row em {
    grid-column: 2;
    width: max-content;
  }

  .quality-toolbar {
    grid-template-columns: auto 1fr;
  }

  .quality-toolbar em {
    grid-column: 2;
  }

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

  .brief-section {
    gap: 22px;
  }

  .brief-copy p {
    font-size: 17px;
    line-height: 1.55;
  }

  .brief-meter {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 16px;
  }

  .brief-mail-lines {
    grid-template-columns: 1fr;
  }

  .brief-mail-top {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  .brief-mail-top strong {
    text-align: left;
  }

  .brief-option {
    min-height: 48px;
    padding: 0 10px;
    font-size: 12px;
  }

  .brief-output {
    padding: 20px;
  }

  .brief-output h3 {
    font-size: clamp(25px, 8vw, 31px);
  }

  .brief-output p {
    font-size: 15px;
    line-height: 1.55;
  }

  .brief-meta {
    gap: 10px;
    margin-top: 18px;
  }

  .brief-meta div,
  .brief-meter div {
    padding: 12px;
  }

  .brief-meta strong {
    font-size: 18px;
  }

  .brief-mail {
    gap: 12px;
    margin-top: 16px;
    padding: 14px;
  }

  .brief-deliverables {
    gap: 8px;
    margin-top: 18px;
  }

  .brief-output .button {
    margin-top: 20px;
  }

  .board-header {
    display: grid;
    grid-template-columns: 1fr;
    justify-content: start;
  }

  .delivery-row {
    grid-template-columns: 38px minmax(0, 1fr);
    align-items: start;
    gap: 8px;
    min-height: 0;
    padding: 16px 18px;
  }

  .delivery-row::before {
    left: 18px;
  }

  .row-index {
    width: 32px;
    height: 32px;
  }

  .row-status {
    grid-column: 2;
    justify-self: start;
    min-width: 0;
    justify-content: flex-start;
    font-size: 13px;
  }

  .row-copy small {
    font-size: 12px;
  }

  .price-card {
    padding: 22px;
  }

  .price-card h3 {
    font-size: 21px;
  }

  .price-card > p:not(.price):not(.price-note):not(.price-fit) {
    margin-top: 10px;
  }

  .price-fit {
    margin-top: 12px;
  }

  .price-features {
    margin: 12px 0 14px;
  }

  .price strong {
    font-size: 28px;
  }

  .contact-route {
    margin-top: 24px;
    padding-left: 22px;
  }

  .contact-route-line {
    left: 8px;
  }

  .contact-route-step {
    grid-template-columns: 38px minmax(0, 1fr);
    min-height: 0;
  }

  .contact-route-step.is-active {
    transform: none;
  }

  .contact-route-step span {
    width: 34px;
    height: 34px;
    box-shadow:
      0 0 0 7px var(--bg),
      0 10px 20px rgba(13, 27, 42, 0.08);
  }

  .contact-route-step small {
    font-size: 13px;
  }

  .contact-box {
    padding: 26px;
  }

  .contact-email-row,
  .contact-draft {
    grid-template-columns: 1fr;
  }

  .contact-email {
    font-size: clamp(12px, 3.9vw, 18px);
  }

  .faq-list summary {
    grid-template-columns: 38px minmax(0, 1fr) auto;
    gap: 12px;
    min-height: 72px;
    padding: 16px;
    font-size: 18px;
    line-height: 1.22;
  }

  .faq-list summary::before {
    width: 32px;
    height: 32px;
    font-size: 11px;
  }

  .faq-list p {
    padding: 0 18px 22px;
    text-align: left;
    font-size: 16px;
    line-height: 1.55;
  }

  .faq-list {
    padding-left: 18px;
  }

  .faq-list::before,
  .faq-list::after {
    left: 4px;
  }

  .faq-list p::before {
    width: 44px;
  }

  .policy-page {
    padding: 34px 28px 46px;
  }

  .portfolio-page {
    padding: 34px 28px 46px;
  }

  .portfolio-hero {
    gap: 24px;
    padding-bottom: 32px;
  }

  .portfolio-hero p {
    font-size: 18px;
  }

  .portfolio-strip,
  .portfolio-card-top,
  .portfolio-actions {
    grid-template-columns: 1fr;
  }

  .portfolio-strip {
    display: grid;
  }

  .portfolio-card-top {
    align-items: flex-start;
    flex-direction: column;
  }

  .portfolio-actions .button {
    width: 100%;
  }

  .portfolio-card,
  .portfolio-resume-card,
  .resume-panels article {
    padding: 22px;
  }

  .policy-hero {
    gap: 24px;
    padding-bottom: 32px;
  }

  .policy-hero p:not(.updated) {
    font-size: 18px;
  }

  .policy-summary,
  .policy-content {
    padding: 22px;
  }

  .policy-side {
    grid-template-columns: 1fr;
  }

  .policy-footer {
    display: grid;
    justify-items: start;
    padding: 24px 28px;
  }
}

@media (max-width: 380px) {
  .preview-side {
    grid-template-columns: 1fr;
  }

  .preview-score {
    width: 100%;
    min-width: 0;
    justify-self: stretch;
  }

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

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .button::after {
    display: none;
  }

  .scan-line::before,
  .quality-row::after,
  .quality-row span,
  .delivery-row.is-delivery-active::after,
  .hero-metrics.is-visible article::before,
  .hero-media.is-visible .hero-signal-meter span,
  .hero-media.is-visible .hero-signal-grid em,
  .hero-status.is-visible::after,
  .hero-status.is-swapping::after,
  .hero-status.is-swapping .hero-status-grid span,
  .proof-strip.is-visible div,
  .proof-strip.is-visible div::after,
  .proof-strip.is-visible .proof-index,
  .payment-step.is-packet-highlight,
  .contact-box.is-scope-synced::after,
  .process-grid article.is-process-active::after,
  .process-focus.is-visible::after,
  .process-focus.is-swapping::after,
  .process-focus.is-swapping .process-focus-grid span,
  .process-focus.is-swapping .process-focus-tags span,
  .workflow-snapshot.is-advancing .workflow-timer span,
  .workflow-snapshot li.is-active::after,
  .contact-box.is-contact-ready::after,
  .contact-box.is-draft-updating .contact-card-top strong,
  .contact-box.is-draft-updating .contact-draft div,
  .contact-box.is-draft-updating .contact-checklist li:nth-child(4),
  .contact-box.is-draft-updating .button,
  .showcase-shell.is-visible::after,
  .showcase-shell.is-showcase-settling .showcase-tabs::after,
  .showcase-panel.is-swapping .showcase-kind,
  .showcase-panel.is-swapping .showcase-info h3,
  .showcase-panel.is-swapping .showcase-info p,
  .showcase-panel.is-swapping .showcase-list div,
  .showcase-panel.is-swapping .showcase-artifacts span,
  .showcase-panel.is-swapping .showcase-cta,
  .brief-options.is-settling::after,
  .brief-output.is-swapping,
  .brief-output.is-swapping::after,
  .brief-output.is-swapping .brief-label,
  .brief-output.is-swapping h3,
  .brief-output.is-swapping > p,
  .brief-output.is-swapping .brief-meta div,
  .brief-output.is-swapping .brief-meter div,
  .brief-output.is-swapping .brief-mail::after,
  .brief-output.is-swapping .brief-mail-lines span,
  .brief-output.is-swapping .brief-mail-status span,
  .brief-output.is-swapping .brief-deliverables li,
  .brief-output.is-swapping .button,
  .interface-preview.is-morphing::after,
  .interface-preview.is-morphing .preview-stage::before,
  .interface-preview.is-morphing .preview-stage span::before,
  .interface-preview.is-morphing .preview-progress span,
  .interface-preview.is-morphing .preview-bars span,
  .interface-preview.is-morphing .preview-artifact-stack span,
  .interface-preview.is-morphing .preview-inspector span {
    animation: none !important;
    box-shadow: none !important;
  }

  .workflow-snapshot.is-advancing .workflow-timer span,
  .workflow-snapshot li.is-active::after,
  .hero-status.is-swapping .hero-status-grid span,
  .proof-strip.is-visible div,
  .proof-strip.is-visible div::after,
  .proof-strip.is-visible .proof-index,
  .payment-step.is-packet-highlight,
  .contact-box.is-scope-synced::after,
  .process-focus.is-swapping .process-focus-grid span,
  .process-focus.is-swapping .process-focus-tags span,
  .contact-box.is-contact-ready::after,
  .contact-box.is-draft-updating .contact-card-top strong,
  .contact-box.is-draft-updating .contact-draft div,
  .contact-box.is-draft-updating .contact-checklist li:nth-child(4),
  .contact-box.is-draft-updating .button,
  .showcase-shell.is-visible::after,
  .showcase-panel.is-swapping .showcase-kind,
  .showcase-panel.is-swapping .showcase-info h3,
  .showcase-panel.is-swapping .showcase-info p,
  .showcase-panel.is-swapping .showcase-list div,
  .showcase-panel.is-swapping .showcase-artifacts span,
  .showcase-panel.is-swapping .showcase-cta,
  .brief-options.is-settling::after,
  .brief-output.is-swapping,
  .brief-output.is-swapping::after,
  .brief-output.is-swapping .brief-label,
  .brief-output.is-swapping h3,
  .brief-output.is-swapping > p,
  .brief-output.is-swapping .brief-meta div,
  .brief-output.is-swapping .brief-meter div,
  .brief-output.is-swapping .brief-mail::after,
  .brief-output.is-swapping .brief-mail-lines span,
  .brief-output.is-swapping .brief-mail-status span,
  .brief-output.is-swapping .brief-deliverables li,
  .brief-output.is-swapping .button,
  .interface-preview.is-morphing .preview-stage::before,
  .interface-preview.is-morphing .preview-stage span::before,
  .interface-preview.is-morphing .preview-progress span,
  .interface-preview.is-morphing .preview-bars span,
  .interface-preview.is-morphing .preview-artifact-stack span,
  .interface-preview.is-morphing .preview-inspector span {
    transform: none !important;
  }

  .hero-media.is-visible .hero-signal-meter span {
    transform: scaleX(0.86) !important;
  }

  .proof-strip div {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* --- High-End Design Customizations --- */

@media (any-pointer: fine) {
  body, a, button, [role="tab"], .theme-toggle, summary {
    cursor: none !important;
  }
  
  .custom-cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 1px solid var(--accent);
    background: rgba(0, 115, 148, 0.03);
    backdrop-filter: blur(1px);
    pointer-events: none;
    z-index: 9999;
    transform: translate3d(var(--cursor-x, -100px), var(--cursor-y, -100px), 0) translate(-50%, -50%);
    will-change: transform;
    box-shadow: 0 0 8px rgba(0, 115, 148, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 
      width 200ms cubic-bezier(0.25, 1, 0.5, 1), 
      height 200ms cubic-bezier(0.25, 1, 0.5, 1), 
      background-color 250ms ease, 
      border-color 250ms ease, 
      box-shadow 250ms ease;
  }

  :root[data-theme="dark"] .custom-cursor {
    border-color: var(--accent-dark);
    background: rgba(138, 220, 241, 0.03);
    box-shadow: 0 0 12px rgba(138, 220, 241, 0.1);
  }

  /* Inner dot */
  .custom-cursor::after {
    content: '';
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--accent);
    transition: transform 200ms cubic-bezier(0.25, 1, 0.5, 1), background-color 250ms ease;
  }
  
  :root[data-theme="dark"] .custom-cursor::after {
    background: var(--accent-dark);
  }

  /* Default hover state */
  .custom-cursor.is-hovering {
    width: 38px;
    height: 38px;
    background: rgba(0, 115, 148, 0.05);
    border-color: rgba(0, 115, 148, 0.35);
  }

  :root[data-theme="dark"] .custom-cursor.is-hovering {
    background: rgba(138, 220, 241, 0.05);
    border-color: rgba(138, 220, 241, 0.35);
  }
  
  .custom-cursor.is-hovering::after {
    transform: scale(0.5);
  }
  
  /* Magnetic hover state (CTA buttons) */
  .custom-cursor.is-magnetic {
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-color: var(--accent);
    box-shadow: 0 0 15px var(--accent);
  }
  
  :root[data-theme="dark"] .custom-cursor.is-magnetic {
    background: var(--accent-dark);
    border-color: var(--accent-dark);
    box-shadow: 0 0 15px var(--accent-dark);
  }
  
  .custom-cursor.is-magnetic::after {
    transform: scale(0);
  }

  /* Report/Sample hover state (View label) */
  .cursor-label {
    font-size: 8px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--accent);
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 150ms ease, transform 150ms ease;
    pointer-events: none;
  }
  
  :root[data-theme="dark"] .cursor-label {
    color: var(--accent-dark);
  }
  
  .custom-cursor.has-view-label {
    width: 44px;
    height: 44px;
    background: rgba(0, 115, 148, 0.08);
    border-color: var(--accent);
    box-shadow: 0 0 15px rgba(0, 115, 148, 0.15);
  }
  
  :root[data-theme="dark"] .custom-cursor.has-view-label {
    background: rgba(138, 220, 241, 0.08);
    border-color: var(--accent-dark);
    box-shadow: 0 0 15px rgba(138, 220, 241, 0.15);
  }
  
  .custom-cursor.has-view-label .cursor-label {
    opacity: 1;
    transform: scale(1);
  }
  
  .custom-cursor.has-view-label::after {
    transform: scale(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .custom-cursor, .custom-cursor::after, .cursor-label {
    transition: none !important;
  }
}

/* --- Redesign v3 Lab Additions --- */

.hero-sample-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 8px 16px;
  background: var(--bg-strong);
  border: 1px solid rgba(0, 115, 148, 0.15);
  border-radius: 99px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: all 0.2s ease;
  backdrop-filter: blur(10px);
}

:root[data-theme="dark"] .hero-sample-link {
  border-color: rgba(85, 197, 226, 0.15);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.hero-sample-link:hover {
  transform: translateY(-2px);
  border-color: var(--accent);
}

.sample-tag {
  display: inline-block;
  padding: 2px 8px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: var(--accent-soft);
  color: var(--accent);
  border-radius: 4px;
}

/* Deliverable Sample Section */
.deliverable-sample-section {
  padding: 80px 24px;
}

.deliverable-copy {
  max-width: 680px;
  margin: 0 auto 48px;
  text-align: center;
}

.deliverable-copy h2 {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.deliverable-copy p {
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.6;
}

.deliverable-preview-container {
  max-width: 960px;
  margin: 0 auto;
}

.deliverable-preview-card {
  background: var(--bg-strong);
  border: 1px solid rgba(0, 115, 148, 0.15);
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  gap: 28px;
}

:root[data-theme="dark"] .deliverable-preview-card {
  border-color: rgba(85, 197, 226, 0.15);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
}

.preview-card-header {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.report-badge {
  align-self: flex-start;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: rgba(0, 115, 148, 0.08);
  color: var(--accent);
  padding: 4px 10px;
  border-radius: 4px;
}

:root[data-theme="dark"] .report-badge {
  background: rgba(85, 197, 226, 0.08);
}

.preview-card-header h3 {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.preview-card-header p {
  color: var(--text-muted);
  font-size: 14px;
}

.preview-metrics-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  background: rgba(0, 115, 148, 0.04);
  border-radius: 12px;
  padding: 20px;
  text-align: center;
}

:root[data-theme="dark"] .preview-metrics-strip {
  background: rgba(85, 197, 226, 0.04);
}

.preview-metrics-strip div {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.preview-metrics-strip strong {
  font-size: 20px;
  font-weight: 800;
  color: var(--accent);
}

.preview-metrics-strip span {
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.preview-findings-summary {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.preview-findings-summary h4 {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
}

.preview-findings-summary ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.preview-findings-summary li {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-left: 16px;
  border-left: 2px solid var(--accent);
}

.preview-findings-summary li strong {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}

.preview-findings-summary li span {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.4;
}

.preview-actions {
  display: flex;
  justify-content: flex-start;
  margin-top: 12px;
}

/* Technical Rescues Section */
.rescues-section {
  padding: 80px 24px;
}

.rescues-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 40px auto 0;
}

.rescue-card {
  background: var(--bg-strong);
  border: 1px solid rgba(0, 115, 148, 0.1);
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

:root[data-theme="dark"] .rescue-card {
  border-color: rgba(85, 197, 226, 0.1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.rescue-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
}

.rescue-badge {
  align-self: flex-start;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: var(--accent-soft);
  color: var(--accent);
  padding: 2px 8px;
  border-radius: 4px;
}

.rescue-card h3 {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.rescue-problem, .rescue-solution {
  font-size: 13px;
  line-height: 1.5;
}

.rescue-problem strong {
  color: #d946ef;
}

:root[data-theme="dark"] .rescue-problem strong {
  color: #f472b6;
}

.rescue-solution strong {
  color: var(--accent);
}

/* Pricing Trust Bar */
.pricing-trust-bar {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 960px;
  margin: 48px auto 0;
  padding: 24px;
  background: rgba(0, 115, 148, 0.03);
  border: 1px solid rgba(0, 115, 148, 0.1);
  border-radius: 12px;
  text-align: left;
}

:root[data-theme="dark"] .pricing-trust-bar {
  background: rgba(85, 197, 226, 0.03);
  border-color: rgba(85, 197, 226, 0.1);
}

.trust-badge-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.trust-badge-item svg {
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
}

.trust-badge-item strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 4px;
}

.trust-badge-item p {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Intake Form in Brief Builder */
.brief-intake-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 24px 0;
  padding: 20px;
  background: rgba(0, 115, 148, 0.02);
  border: 1px solid rgba(0, 115, 148, 0.1);
  border-radius: 12px;
  text-align: left;
}

:root[data-theme="dark"] .brief-intake-form {
  background: rgba(85, 197, 226, 0.02);
  border-color: rgba(85, 197, 226, 0.1);
}

.intake-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.intake-field label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
}

.intake-field input, .intake-field select {
  background: var(--bg-strong);
  border: 1px solid rgba(0, 115, 148, 0.2);
  border-radius: 6px;
  padding: 10px 12px;
  font-size: 13px;
  color: var(--text);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}

:root[data-theme="dark"] .intake-field input, :root[data-theme="dark"] .intake-field select {
  border-color: rgba(85, 197, 226, 0.2);
}

.intake-field input:focus, .intake-field select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 2px var(--accent-soft);
}

.intake-field-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.brief-actions-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.brief-actions-row .button {
  flex: 1;
  min-width: 160px;
}

.brief-actions-row button.button-secondary.is-success {
  background: #22c55e !important;
  border-color: #22c55e !important;
  color: #fff !important;
}

/* Responsive Overrides */
@media (max-width: 768px) {
  .rescues-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .pricing-trust-bar {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .intake-field-row {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .deliverable-preview-card {
    padding: 20px;
  }
  
  .preview-metrics-strip {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

