:root {
  --white: #ffffff;
  --paper: #f8fafc;
  --paper-2: #f2f5f9;
  --ink: #101828;
  --ink-soft: #344054;
  --muted: #667085;
  --line: #e4e7ec;
  --line-strong: #d0d5dd;
  --blue: #2161f0;
  --blue-light: #4f8cff;
  --blue-soft: #edf3ff;
  --green: #12a36f;
  --green-soft: #eafaf4;
  --danger: #d92d20;
  --black: #07101f;
  --container: 1220px;
  --header-height: 76px;
  --shadow-xs: 0 4px 14px rgba(16, 24, 40, 0.05);
  --shadow-sm: 0 10px 30px rgba(16, 24, 40, 0.08);
  --shadow-md: 0 22px 60px rgba(16, 24, 40, 0.11);
  --shadow-lg: 0 35px 95px rgba(16, 24, 40, 0.15);
  --ease: cubic-bezier(.22, 1, .36, 1);
  --spring: cubic-bezier(.18, .89, .32, 1.28);
  --heading: "Hero", "Inter", sans-serif;
  --body: "Poppins", sans-serif;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--white);
  color: var(--ink);
  font-family: var(--body);
  font-size: 15px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.is-loading,
body.menu-open {
  overflow: hidden;
}

button,
input {
  font: inherit;
}

button {
  border: 0;
  cursor: pointer;
}

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

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

h1,
h2,
h3,
p,
ul {
  margin: 0;
}

h1,
h2,
h3,
strong {
  font-family: var(--heading);
}

ul {
  padding: 0;
  list-style: none;
}

.container {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}

.section {
  padding: 100px 0;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 9999;
  padding: 10px 14px;
  border-radius: 10px;
  background: var(--ink);
  color: var(--white);
  font-size: 12px;
  transform: translateY(-150%);
  transition: transform 0.25s ease;
}

.skip-link:focus {
  transform: none;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 3000;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--green));
}

/* LOADER */

.page-loader {
  position: fixed;
  inset: 0;
  z-index: 5000;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 22px;
  background: var(--white);
  transition:
    opacity 0.55s ease,
    visibility 0.55s ease;
}

.page-loader.hidden {
  opacity: 0;
  visibility: hidden;
}

.page-loader img {
  width: 145px;
  height: auto;
}

.loader-track {
  width: 180px;
  height: 3px;
  overflow: hidden;
  border-radius: 999px;
  background: var(--line);
}

.loader-track span {
  display: block;
  width: 45%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--blue), var(--green));
  animation: loader-slide 1.1s var(--ease) infinite;
}

/* NAVBAR */

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 2000;
  border-bottom: 1px solid transparent;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: saturate(180%) blur(18px);
  transition:
    background 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s var(--ease);
}

.site-header.scrolled {
  border-color: rgba(228, 231, 236, 0.9);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 8px 25px rgba(16, 24, 40, 0.05);
}

.nav-shell {
  display: grid;
  min-height: var(--header-height);
  grid-template-columns: 150px 1fr auto;
  align-items: center;
  gap: 30px;
}

.brand {
  display: inline-flex;
  width: fit-content;
  align-items: center;
}

.brand img {
  width: 128px;
  height: auto;
  object-fit: contain;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
}

.desktop-nav a {
  position: relative;
  padding: 28px 0 25px;
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 500;
  white-space: nowrap;
  transition: color 0.25s ease;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 18px;
  left: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue), var(--green));
  content: "";
  opacity: 0;
  transform: scaleX(0);
  transition:
    opacity 0.25s ease,
    transform 0.35s var(--ease);
}

.desktop-nav a:hover,
.desktop-nav a.active {
  color: var(--ink);
}

.desktop-nav a:hover::after,
.desktop-nav a.active::after {
  opacity: 1;
  transform: scaleX(1);
}

.nav-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
}

.text-link {
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 500;
  transition: color 0.25s ease;
}

.text-link:hover {
  color: var(--blue);
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  line-height: 1;
  transition:
    color 0.3s ease,
    background 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s var(--ease),
    transform 0.3s var(--ease);
}

.button i {
  font-style: normal;
  transition: transform 0.3s var(--ease);
}

.button:hover i {
  transform: translate(3px, -2px);
}

.button-small {
  min-height: 42px;
  padding-inline: 16px;
  font-size: 10px;
}

.button-dark {
  background: var(--ink);
  color: var(--white);
  box-shadow: 0 8px 22px rgba(16, 24, 40, 0.14);
}

.button-dark:hover {
  background: var(--blue);
  box-shadow: 0 12px 28px rgba(33, 97, 240, 0.22);
  transform: translateY(-2px);
}

.button-primary {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 10px 26px rgba(33, 97, 240, 0.22);
}

.button-primary:hover {
  background: #144fd7;
  box-shadow: 0 15px 34px rgba(33, 97, 240, 0.27);
  transform: translateY(-2px);
}

.button-secondary {
  border-color: var(--line);
  background: var(--white);
  color: var(--ink);
}

.button-secondary:hover {
  border-color: var(--line-strong);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  place-items: center;
  align-content: center;
  gap: 6px;
  border-radius: 50%;
  background: var(--paper);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--ink);
  transition:
    transform 0.3s var(--ease),
    opacity 0.3s ease;
}

.menu-toggle.active span:first-child {
  transform: translateY(4px) rotate(45deg);
}

.menu-toggle.active span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  top: var(--header-height);
  right: 0;
  left: 0;
  display: none;
  height: calc(100dvh - var(--header-height));
  overflow: auto;
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.98);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-14px);
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease,
    transform 0.35s var(--ease);
}

.mobile-menu.open {
  opacity: 1;
  visibility: visible;
  transform: none;
}

.mobile-menu-inner {
  display: grid;
  width: min(calc(100% - 36px), 600px);
  margin-inline: auto;
  padding: 20px 0 40px;
}

.mobile-menu-inner > a {
  display: flex;
  min-height: 58px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-size: 16px;
  font-weight: 500;
}

.mobile-menu-inner > a i {
  color: var(--muted);
  font-style: normal;
}

.mobile-menu-inner > a.active {
  color: var(--blue);
}

.mobile-discovery-button {
  min-height: 52px !important;
  justify-content: center !important;
  margin-top: 18px;
  border: 0 !important;
  border-radius: 999px;
  background: var(--ink);
  color: var(--white) !important;
}

/* REVEAL */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.8s var(--ease),
    transform 0.8s var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

.delay-1 {
  transition-delay: 0.12s;
}

/* COMMON */

.eyebrow,
.kicker {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--blue);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue), var(--green));
}

.kicker-light {
  color: #9ab7ff;
}

.section-heading {
  max-width: 850px;
  margin-bottom: 46px;
}

.section-heading.split {
  display: grid;
  max-width: none;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 0.42fr);
  align-items: end;
  gap: 55px;
}

.section-heading h2,
.rhythm-copy h2,
.delivery-cta-copy h2 {
  margin-top: 14px;
  font-size: clamp(42px, 4.8vw, 64px);
  font-weight: 650;
  letter-spacing: -0.056em;
  line-height: 1.04;
}

.section-heading p,
.rhythm-copy > p,
.delivery-cta-copy > p {
  margin-top: 15px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.72;
}

.section-heading.split > p {
  margin-top: 0;
}

/* HERO */

.delivery-hero {
  position: relative;
  min-height: 900px;
  overflow: clip;
  padding: 138px 0 40px;
  background:
    radial-gradient(circle at 84% 8%, rgba(33, 97, 240, 0.08), transparent 28%),
    linear-gradient(180deg, #ffffff, #f8faff 75%, #ffffff);
}

.delivery-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(16, 24, 40, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 24, 40, 0.025) 1px, transparent 1px);
  background-size: 82px 82px;
  mask-image: linear-gradient(to bottom, transparent, #000 14%, #000 82%, transparent);
}

.delivery-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.delivery-orb-blue {
  top: 55px;
  right: -150px;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(33, 97, 240, 0.11), transparent 68%);
}

.delivery-orb-green {
  bottom: 0;
  left: 23%;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(18, 163, 111, 0.08), transparent 70%);
}

.delivery-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(540px, 1.12fr);
  align-items: center;
  gap: 56px;
}

.delivery-hero-copy h1 {
  max-width: 760px;
  margin-top: 23px;
  font-size: clamp(54px, 6.2vw, 82px);
  font-weight: 650;
  letter-spacing: -0.067em;
  line-height: 0.98;
}

.delivery-hero-copy h1 em {
  display: block;
  color: var(--blue);
  font-style: normal;
}

.delivery-hero-copy > p {
  max-width: 660px;
  margin-top: 23px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.72;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 27px;
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 34px;
}

.hero-proof article {
  display: grid;
  gap: 5px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.hero-proof strong {
  font-size: 17px;
  line-height: 1.08;
}

.hero-proof span {
  color: var(--muted);
  font-size: 9px;
  line-height: 1.45;
}

.delivery-hero-visual {
  position: relative;
  min-height: 630px;
  perspective: 1200px;
}

.delivery-photo-shell {
  position: absolute;
  inset: 36px 25px 72px 36px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: var(--paper);
  box-shadow: var(--shadow-lg);
}

.delivery-photo-shell > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.delivery-photo-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 26%, rgba(7, 16, 31, 0.82)),
    linear-gradient(90deg, rgba(33, 97, 240, 0.10), transparent);
}

.delivery-console {
  position: absolute;
  right: 24px;
  bottom: 24px;
  left: 24px;
  padding: 17px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 19px;
  background: rgba(10, 20, 36, 0.72);
  color: var(--white);
  box-shadow: 0 25px 65px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px);
}

.delivery-console-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.delivery-console-head > div {
  display: grid;
  gap: 4px;
}

.delivery-console-head span,
.delivery-console-head small {
  color: rgba(255, 255, 255, 0.56);
  font-size: 7px;
}

.delivery-console-head strong {
  font-size: 14px;
}

.delivery-console-head small {
  display: flex;
  align-items: center;
  gap: 6px;
}

.delivery-console-head small i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #5fddb0;
  box-shadow: 0 0 0 5px rgba(95, 221, 176, 0.12);
}

.delivery-console-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
  margin-top: 15px;
}

.delivery-console-grid article {
  display: grid;
  gap: 3px;
  padding: 11px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
}

.delivery-console-grid span,
.delivery-console-grid small {
  color: rgba(255, 255, 255, 0.48);
  font-size: 6px;
}

.delivery-console-grid strong {
  font-size: 14px;
}

.delivery-console-bars {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.delivery-console-bars p {
  display: grid;
  grid-template-columns: 105px 1fr 30px;
  align-items: center;
  gap: 9px;
}

.delivery-console-bars span,
.delivery-console-bars strong {
  font-size: 7px;
}

.delivery-console-bars strong {
  text-align: right;
}

.delivery-console-bars i {
  height: 7px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.09);
}

.delivery-console-bars b {
  display: block;
  width: var(--value);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--blue), #80aaff);
  transform: scaleX(0);
  transform-origin: left;
  animation: fill-bar 1.2s var(--ease) 0.8s forwards;
}

.delivery-console-bars b.green {
  background: linear-gradient(90deg, var(--green), #69ddb2);
}

.delivery-float {
  position: absolute;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 13px;
  border: 1px solid rgba(208, 213, 221, 0.86);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 17px 46px rgba(16, 24, 40, 0.14);
  backdrop-filter: blur(16px);
  animation: floating-card 5.4s ease-in-out infinite;
}

.delivery-float > span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 10px;
  background: var(--blue-soft);
  color: var(--blue);
  font-size: 8px;
  font-weight: 700;
}

.delivery-float > span.green {
  background: var(--green-soft);
  color: var(--green);
}

.delivery-float > span.dark {
  background: var(--ink);
  color: var(--white);
}

.delivery-float > div {
  display: grid;
  gap: 2px;
}

.delivery-float strong {
  font-size: 9px;
}

.delivery-float small {
  color: var(--muted);
  font-size: 7px;
}

.float-one {
  top: 0;
  left: 0;
}

.float-two {
  top: 108px;
  right: -3px;
  animation-delay: -1.8s;
}

.float-three {
  right: 28px;
  bottom: 18px;
  animation-delay: -3.4s;
}

.delivery-trust-strip {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 24px;
  margin-top: 22px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.delivery-trust-strip > span {
  color: var(--muted);
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ticker {
  overflow: hidden;
}

.ticker-track {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 18px;
  animation: ticker-run 24s linear infinite;
}

.ticker-track b {
  color: var(--ink-soft);
  font-size: 9px;
  font-weight: 500;
}

.ticker-track i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--green);
}

/* WORKFLOW */

.workflow-section {
  background: var(--white);
}

.workflow-explorer {
  display: grid;
  grid-template-columns: minmax(340px, 0.72fr) minmax(570px, 1.28fr);
  gap: 18px;
  align-items: stretch;
}

.workflow-tabs {
  display: grid;
  gap: 8px;
}

.workflow-tab {
  display: grid;
  min-height: 74px;
  grid-template-columns: 42px 1fr 25px;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--paper);
  text-align: left;
  transition:
    transform 0.3s var(--ease),
    border-color 0.3s ease,
    background 0.3s ease,
    box-shadow 0.3s var(--ease);
}

.workflow-tab:hover,
.workflow-tab.active {
  border-color: rgba(33, 97, 240, 0.19);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transform: translateX(6px);
}

.workflow-tab > span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 12px;
  background: var(--blue-soft);
  color: var(--blue);
  font-size: 8px;
  font-weight: 700;
}

.workflow-tab.active > span {
  background: var(--blue);
  color: var(--white);
}

.workflow-tab > div {
  display: grid;
  gap: 3px;
}

.workflow-tab strong {
  font-size: 12px;
}

.workflow-tab small {
  color: var(--muted);
  font-size: 8px;
}

.workflow-tab > i {
  color: var(--muted);
  font-size: 12px;
  font-style: normal;
  transition:
    color 0.3s ease,
    transform 0.3s var(--ease);
}

.workflow-tab:hover > i,
.workflow-tab.active > i {
  color: var(--blue);
  transform: translate(3px, -3px);
}

.workflow-stage {
  min-height: 640px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 27px;
  background:
    radial-gradient(circle at top right, rgba(33, 97, 240, 0.09), transparent 30%),
    var(--white);
  box-shadow: var(--shadow-md);
}

.workflow-stage.is-changing {
  pointer-events: none;
}

.workflow-stage-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 25px;
}

.workflow-stage-head > div {
  display: grid;
  gap: 8px;
}

.workflow-stage-head > div > span {
  color: var(--blue);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.workflow-stage h3 {
  font-size: clamp(34px, 3.8vw, 52px);
  font-weight: 650;
  letter-spacing: -0.052em;
  line-height: 1.05;
}

.stage-status {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  box-shadow: var(--shadow-xs);
}

.stage-status i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(18, 163, 111, 0.10);
}

.stage-status b {
  color: var(--muted);
  font-size: 7px;
  font-weight: 600;
}

.workflow-stage > p {
  max-width: 700px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.72;
}

.workflow-stage-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 24px;
}

.workflow-stage-grid article {
  display: grid;
  gap: 6px;
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--paper);
}

.workflow-stage-grid span {
  color: var(--muted);
  font-size: 7px;
}

.workflow-stage-grid strong {
  font-size: 10px;
  line-height: 1.45;
}

.workflow-stage-visual {
  position: relative;
  min-height: 185px;
  margin-top: 26px;
  padding: 28px 22px;
  overflow: hidden;
  border-radius: 20px;
  background: linear-gradient(145deg, #091426, #12233e);
}

.stage-line {
  position: absolute;
  top: 64px;
  right: 70px;
  left: 70px;
  height: 2px;
  background: rgba(255, 255, 255, 0.10);
}

.stage-line > i {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #77a0ff, #65ddb2);
}

.stage-packet {
  position: absolute;
  top: -3px;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #8eafff;
  box-shadow: 0 0 18px rgba(142, 175, 255, 0.9);
  animation: stage-packet-run 3.4s linear infinite;
}

.packet-two {
  animation-delay: -1.7s;
}

.stage-steps {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 42px;
}

.stage-steps span {
  display: grid;
  min-height: 76px;
  place-items: center;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.74);
  font-size: 9px;
  text-align: center;
  backdrop-filter: blur(12px);
  animation: stage-node-pop 0.45s var(--spring) both;
}

.stage-steps span:nth-child(2) {
  animation-delay: 0.08s;
}

.stage-steps span:nth-child(3) {
  animation-delay: 0.16s;
}

.workflow-stage-note {
  display: grid;
  gap: 5px;
  margin-top: 22px;
  padding: 15px;
  border: 1px solid rgba(18, 163, 111, 0.18);
  border-radius: 15px;
  background: var(--green-soft);
}

.workflow-stage-note span {
  color: var(--green);
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.workflow-stage-note strong {
  color: var(--ink-soft);
  font-size: 10px;
  line-height: 1.55;
}

/* RHYTHM */

.rhythm-section {
  background: var(--paper);
}

.rhythm-grid {
  display: grid;
  grid-template-columns: minmax(500px, 1.05fr) minmax(0, 0.95fr);
  align-items: center;
  gap: 58px;
}

.rhythm-media {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--paper);
  box-shadow: var(--shadow-lg);
}

.rhythm-media > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rhythm-media-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 36%, rgba(7, 16, 31, 0.84)),
    linear-gradient(90deg, rgba(33, 97, 240, 0.08), transparent);
}

.rhythm-board {
  position: absolute;
  right: 22px;
  bottom: 22px;
  left: 22px;
  padding: 17px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  background: rgba(10, 20, 36, 0.70);
  color: var(--white);
  backdrop-filter: blur(17px);
}

.rhythm-board-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.rhythm-board-head > div {
  display: grid;
  gap: 4px;
}

.rhythm-board-head small,
.rhythm-board-head > span {
  color: rgba(255, 255, 255, 0.50);
  font-size: 7px;
}

.rhythm-board-head > span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.rhythm-board-head > span i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #65ddb2;
}

.rhythm-board-head strong {
  font-size: 14px;
}

.rhythm-columns {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-top: 14px;
}

.rhythm-columns article {
  display: grid;
  gap: 3px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
}

.rhythm-columns span,
.rhythm-columns small {
  color: rgba(255, 255, 255, 0.44);
  font-size: 6px;
}

.rhythm-columns strong {
  font-size: 13px;
}

.rhythm-copy > p {
  max-width: 650px;
}

.rhythm-timeline {
  display: grid;
  gap: 9px;
  margin-top: 25px;
}

.rhythm-timeline article {
  display: grid;
  grid-template-columns: 43px 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 13px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: var(--white);
  transition:
    transform 0.3s var(--ease),
    border-color 0.3s ease,
    box-shadow 0.3s var(--ease);
}

.rhythm-timeline article:hover {
  border-color: rgba(33, 97, 240, 0.18);
  box-shadow: var(--shadow-sm);
  transform: translateX(7px);
}

.rhythm-timeline article > span {
  display: grid;
  width: 43px;
  height: 43px;
  place-items: center;
  border-radius: 12px;
  background: var(--blue-soft);
  color: var(--blue);
  font-size: 8px;
  font-weight: 700;
}

.rhythm-timeline article:nth-child(even) > span {
  background: var(--green-soft);
  color: var(--green);
}

.rhythm-timeline article > div {
  display: grid;
  gap: 3px;
}

.rhythm-timeline strong {
  font-size: 11px;
}

.rhythm-timeline small {
  color: var(--muted);
  font-size: 8px;
}

.rhythm-timeline article > b {
  color: var(--muted);
  font-size: 8px;
  font-weight: 600;
}

/* QUALITY */

.quality-section {
  background: var(--white);
}

.quality-flow {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: var(--white);
}

.quality-flow-line {
  position: absolute;
  top: 46px;
  right: 45px;
  left: 45px;
  height: 2px;
  background: var(--line);
}

.quality-flow-line i {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--blue), var(--green));
}

.quality-flow article {
  position: relative;
  z-index: 2;
  min-height: 360px;
  padding: 22px;
  border-right: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.86);
  transition:
    color 0.35s ease,
    background 0.35s ease,
    transform 0.35s var(--ease);
}

.quality-flow article:last-child {
  border-right: 0;
}

.quality-flow article:hover {
  z-index: 3;
  background: var(--ink);
  color: var(--white);
  transform: translateY(-4px);
}

.quality-flow article > span {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  color: var(--blue);
  font-size: 8px;
  font-weight: 700;
  box-shadow: var(--shadow-xs);
}

.quality-icon {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  margin-top: 53px;
  border-radius: 15px;
  background: var(--blue-soft);
  color: var(--blue);
  font-size: 9px;
  font-weight: 700;
}

.quality-icon.green {
  background: var(--green-soft);
  color: var(--green);
}

.quality-icon.dark {
  background: var(--ink);
  color: var(--white);
}

.quality-flow article:hover .quality-icon {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.quality-flow h3 {
  margin-top: 20px;
  font-size: 20px;
  letter-spacing: -0.04em;
  line-height: 1.18;
}

.quality-flow p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.65;
}

.quality-flow article > small {
  display: inline-flex;
  width: fit-content;
  margin-top: 15px;
  padding: 6px 8px;
  border-radius: 999px;
  background: var(--paper);
  color: var(--muted);
  font-size: 7px;
}

.quality-flow article:hover p,
.quality-flow article:hover > small {
  color: rgba(255, 255, 255, 0.58);
}

.quality-flow article:hover > small {
  background: rgba(255, 255, 255, 0.08);
}

.quality-popup {
  position: absolute;
  right: 14px;
  bottom: 14px;
  left: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 11px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
  box-shadow: var(--shadow-sm);
  opacity: 0;
  transform: translateY(17px) scale(0.97);
  transition:
    opacity 0.45s var(--ease),
    transform 0.45s var(--spring);
}

.quality-flow.sequence-active .quality-popup,
.quality-flow article:hover .quality-popup {
  opacity: 1;
  transform: none;
}

.quality-popup i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(18, 163, 111, 0.10);
}

.quality-popup strong {
  font-size: 8px;
}

/* MODELS */

.model-section {
  background: var(--paper);
}

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

.model-card {
  position: relative;
  display: flex;
  min-height: 470px;
  flex-direction: column;
  overflow: hidden;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--white);
  box-shadow: var(--shadow-xs);
  transition:
    transform 0.35s var(--ease),
    box-shadow 0.35s var(--ease),
    border-color 0.35s ease;
}

.model-card:hover {
  border-color: rgba(33, 97, 240, 0.18);
  box-shadow: var(--shadow-md);
  transform: translateY(-7px);
}

.model-card-featured {
  background:
    radial-gradient(circle at top right, rgba(33, 97, 240, 0.10), transparent 31%),
    var(--white);
}

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

.model-card-head > span {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 13px;
  background: var(--blue-soft);
  color: var(--blue);
  font-size: 8px;
  font-weight: 700;
}

.model-card-featured .model-card-head > span {
  background: var(--green);
  color: var(--white);
}

.model-card-head small {
  color: var(--muted);
  font-size: 7px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.model-card h3 {
  margin-top: 34px;
  font-size: 26px;
  letter-spacing: -0.045em;
  line-height: 1.12;
}

.model-card > p {
  margin-top: 12px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.7;
}

.model-card ul {
  display: grid;
  gap: 9px;
  margin-top: 22px;
}

.model-card li {
  position: relative;
  padding-left: 18px;
  color: var(--ink-soft);
  font-size: 9px;
}

.model-card li::before {
  position: absolute;
  top: 7px;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  content: "";
}

.model-visual {
  display: flex;
  height: 120px;
  align-items: end;
  gap: 10px;
  margin-top: auto;
  padding: 16px;
  border-radius: 16px;
  background:
    linear-gradient(rgba(16, 24, 40, 0.04) 1px, transparent 1px),
    var(--paper);
  background-size: 100% 30px;
}

.model-visual i {
  width: 100%;
  height: var(--height);
  border-radius: 8px 8px 2px 2px;
  background: linear-gradient(180deg, var(--blue), #7ea9ff);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.75s var(--ease);
}

.model-card:hover .model-visual i,
.model-card.card-active .model-visual i {
  transform: scaleY(1);
}

.pod-visual {
  position: relative;
  display: grid;
  min-height: 140px;
  place-items: center;
  margin-top: auto;
}

.pod-visual > span {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--white);
  color: var(--blue);
  font-size: 8px;
  font-weight: 700;
  box-shadow: var(--shadow-xs);
}

.pod-visual > span:first-child {
  position: absolute;
  top: 0;
  left: 50%;
  background: var(--ink);
  color: var(--white);
  transform: translateX(-50%);
}

.pod-visual > span:nth-of-type(2) {
  position: absolute;
  bottom: 0;
  left: 8%;
}

.pod-visual > span:nth-of-type(3) {
  position: absolute;
  bottom: 0;
  left: 50%;
  background: var(--green-soft);
  color: var(--green);
  transform: translateX(-50%);
}

.pod-visual > span:nth-of-type(4) {
  position: absolute;
  right: 8%;
  bottom: 0;
}

.pod-visual > i {
  position: absolute;
  top: 51px;
  width: 62%;
  height: 50px;
  border-right: 1px dashed var(--line-strong);
  border-bottom: 1px dashed var(--line-strong);
  border-left: 1px dashed var(--line-strong);
  border-radius: 0 0 26px 26px;
}

.season-visual {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-top: auto;
  padding: 14px;
  border-radius: 16px;
  background: var(--paper);
}

.season-visual span {
  display: grid;
  min-height: 80px;
  place-items: center;
  border-radius: 12px;
  background: var(--white);
  color: var(--muted);
  font-size: 8px;
  font-weight: 700;
  box-shadow: var(--shadow-xs);
  transition:
    color 0.3s ease,
    background 0.3s ease,
    transform 0.3s var(--ease);
}

.model-card:hover .season-visual span:nth-child(1) {
  background: var(--blue-soft);
  color: var(--blue);
  transform: translateY(-4px);
}

.model-card:hover .season-visual span:nth-child(2) {
  background: var(--blue);
  color: var(--white);
  transform: translateY(-8px);
  transition-delay: 0.05s;
}

.model-card:hover .season-visual span:nth-child(3) {
  background: var(--green);
  color: var(--white);
  transform: translateY(-12px);
  transition-delay: 0.10s;
}

.model-card:hover .season-visual span:nth-child(4) {
  background: var(--ink);
  color: var(--white);
  transform: translateY(-6px);
  transition-delay: 0.15s;
}

/* CTA */

.delivery-cta {
  padding: 70px 0 90px;
  background: var(--white);
}

.delivery-cta-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  align-items: center;
  gap: 45px;
  overflow: hidden;
  min-height: 470px;
  padding: 40px;
  border-radius: 32px;
  background:
    radial-gradient(circle at 78% 20%, rgba(33, 97, 240, 0.24), transparent 30%),
    linear-gradient(135deg, #07101e, #10203a);
  color: var(--white);
  box-shadow: var(--shadow-lg);
}

.delivery-cta-copy h2 {
  font-size: clamp(42px, 5vw, 64px);
}

.delivery-cta-copy > p {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.58);
}

.delivery-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.delivery-light-button {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
}

.delivery-light-button:hover {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.11);
  transform: translateY(-2px);
}

.delivery-cta-graphic {
  position: relative;
  min-height: 350px;
}

.cta-flow-line {
  position: absolute;
  top: 50%;
  right: 35px;
  left: 35px;
  height: 2px;
  background: rgba(255, 255, 255, 0.10);
}

.cta-flow-line > i {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #78a0ff, #65ddb2);
}

.cta-packet {
  position: absolute;
  top: -3px;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #8eafff;
  box-shadow: 0 0 18px rgba(142, 175, 255, 0.9);
  animation: cta-packet-run 3.6s linear infinite;
}

.packet-b {
  animation-delay: -1.8s;
}

.cta-node {
  position: absolute;
  display: grid;
  min-width: 92px;
  min-height: 42px;
  place-items: center;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.74);
  font-size: 8px;
  backdrop-filter: blur(12px);
  animation: floating-card 5s ease-in-out infinite;
}

.cta-node-one {
  top: 18px;
  left: 0;
}

.cta-node-two {
  top: 18px;
  right: 0;
  animation-delay: -1.2s;
}

.cta-node-three {
  right: 0;
  bottom: 18px;
  animation-delay: -2.4s;
}

.cta-node-four {
  bottom: 18px;
  left: 0;
  animation-delay: -3.6s;
}

.cta-core {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: 176px;
  height: 176px;
  place-items: center;
  align-content: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
  transform: translate(-50%, -50%);
  backdrop-filter: blur(16px);
}

.cta-core img {
  width: 105px;
  filter: brightness(0) invert(1);
}

.cta-core span {
  color: rgba(255, 255, 255, 0.46);
  font-size: 7px;
}

/* FOOTER */

.footer {
  padding: 70px 0 20px;
  background: var(--black);
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.45fr repeat(3, 1fr);
  gap: 50px;
}

.footer-brand img {
  width: 135px;
  filter: brightness(0) invert(1);
}

.footer-brand p {
  max-width: 300px;
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.50);
  font-size: 11px;
  line-height: 1.7;
}

.footer-grid > div:not(.footer-brand) {
  display: grid;
  align-content: start;
  gap: 11px;
}

.footer-grid strong {
  margin-bottom: 4px;
  font-size: 10px;
}

.footer-grid a,
.footer-grid span {
  color: rgba(255, 255, 255, 0.54);
  font-size: 9px;
  transition: color 0.25s ease;
}

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

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 50px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
}

.footer-bottom > span {
  color: rgba(255, 255, 255, 0.40);
  font-size: 8px;
}

.footer-bottom button {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  transition:
    background 0.25s ease,
    transform 0.25s var(--ease);
}

.footer-bottom button:hover {
  background: var(--blue);
  transform: translateY(-3px);
}

/* KEYFRAMES */

@keyframes loader-slide {
  from { transform: translateX(-130%); }
  to { transform: translateX(330%); }
}

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

@keyframes floating-card {
  0%, 100% { margin-top: 0; }
  50% { margin-top: -8px; }
}

@keyframes ticker-run {
  to { transform: translateX(-50%); }
}

@keyframes stage-packet-run {
  0% { left: 0; opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { left: 100%; opacity: 0; }
}

@keyframes stage-node-pop {
  from { opacity: 0; transform: scale(0.70); }
  to { opacity: 1; transform: none; }
}

@keyframes cta-packet-run {
  0% { left: 0; opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { left: 100%; opacity: 0; }
}

/* RESPONSIVE */

@media (max-width: 1180px) {
  .nav-shell {
    grid-template-columns: 135px 1fr auto;
    gap: 20px;
  }

  .desktop-nav {
    gap: 19px;
  }

  .desktop-nav a {
    font-size: 11px;
  }

  .delivery-hero-grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(500px, 1.1fr);
    gap: 38px;
  }

  .workflow-explorer {
    grid-template-columns: 320px 1fr;
  }

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

  .model-card:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 1020px) {
  .desktop-nav,
  .nav-actions .text-link,
  .nav-actions .button {
    display: none;
  }

  .nav-shell {
    grid-template-columns: 1fr auto;
  }

  .menu-toggle {
    display: grid;
  }

  .mobile-menu {
    display: block;
  }

  .delivery-hero-grid,
  .workflow-explorer,
  .rhythm-grid,
  .delivery-cta-shell {
    grid-template-columns: 1fr;
  }

  .delivery-hero-copy {
    max-width: 790px;
  }

  .delivery-hero-visual,
  .rhythm-media,
  .delivery-cta-graphic {
    width: min(780px, 100%);
    margin-inline: auto;
  }

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

  .workflow-tab:hover,
  .workflow-tab.active {
    transform: translateY(-3px);
  }

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

  .quality-flow article:nth-child(2) {
    border-right: 0;
  }

  .quality-flow article:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .quality-flow-line {
    display: none;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(calc(100% - 34px), var(--container));
  }

  .section-heading.split {
    grid-template-columns: 1fr;
    gap: 16px;
  }

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

  .delivery-hero-copy h1 {
    font-size: clamp(48px, 10vw, 68px);
  }

  .delivery-hero-visual {
    min-height: 560px;
  }

  .delivery-photo-shell {
    inset: 25px 5px 72px 16px;
  }

  .delivery-trust-strip {
    grid-template-columns: 1fr;
    gap: 9px;
  }

  .workflow-tabs {
    grid-template-columns: 1fr;
  }

  .workflow-stage {
    min-height: auto;
  }

  .workflow-stage-grid {
    grid-template-columns: 1fr;
  }

  .rhythm-media {
    min-height: 520px;
  }

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

  .model-card:last-child {
    grid-column: auto;
  }
}

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

  .brand img {
    width: 118px;
  }

  .section {
    padding: 78px 0;
  }

  .section-heading {
    margin-bottom: 32px;
  }

  .section-heading h2,
  .rhythm-copy h2,
  .delivery-cta-copy h2 {
    font-size: 38px;
    line-height: 1.08;
  }

  .section-heading p,
  .rhythm-copy > p,
  .delivery-cta-copy > p {
    font-size: 15px;
    line-height: 1.75;
  }

  .delivery-hero {
    padding-top: 104px;
  }

  .delivery-hero-copy h1 {
    font-size: 43px;
    line-height: 1.02;
  }

  .delivery-hero-copy > p {
    font-size: 15px;
    line-height: 1.75;
  }

  .hero-actions {
    display: grid;
  }

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

  .hero-proof {
    grid-template-columns: 1fr;
  }

  .delivery-hero-visual {
    min-height: 460px;
  }

  .delivery-photo-shell {
    inset: 18px 0 55px;
  }

  .delivery-console {
    right: 12px;
    bottom: 12px;
    left: 12px;
    padding: 13px;
  }

  .delivery-console-grid {
    grid-template-columns: 1fr;
  }

  .delivery-console-grid article:nth-child(n + 2) {
    display: none;
  }

  .delivery-float {
    transform: scale(0.82);
  }

  .float-one {
    left: -18px;
  }

  .float-two {
    right: -20px;
  }

  .float-three {
    right: 0;
  }

  .workflow-tab {
    min-height: 84px;
  }

  .workflow-tab strong {
    font-size: 15px;
  }

  .workflow-tab small {
    font-size: 11px;
  }

  .workflow-stage {
    padding: 24px 18px;
  }

  .workflow-stage-head {
    flex-direction: column;
  }

  .workflow-stage h3 {
    font-size: 34px;
  }

  .workflow-stage > p {
    font-size: 15px;
    line-height: 1.75;
  }

  .workflow-stage-grid span {
    font-size: 10px;
  }

  .workflow-stage-grid strong {
    font-size: 13px;
  }

  .workflow-stage-visual {
    min-height: 360px;
    padding: 24px 16px;
  }

  .stage-line {
    top: 40px;
    bottom: 40px;
    left: 50%;
    width: 2px;
    height: auto;
  }

  .stage-line > i {
    width: 100%;
  }

  .stage-packet {
    top: 0;
    left: -3px;
    animation: stage-packet-mobile 3.4s linear infinite;
  }

  .stage-steps {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .stage-steps span {
    min-height: 80px;
  }

  .workflow-stage-note span {
    font-size: 10px;
  }

  .workflow-stage-note strong {
    font-size: 13px;
  }

  .rhythm-media {
    min-height: 430px;
  }

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

  .rhythm-timeline strong {
    font-size: 14px;
  }

  .rhythm-timeline small {
    font-size: 11px;
  }

  .quality-flow {
    grid-template-columns: 1fr;
  }

  .quality-flow article,
  .quality-flow article:nth-child(2) {
    min-height: 300px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .quality-flow article:last-child {
    border-bottom: 0;
  }

  .quality-flow h3 {
    font-size: 22px;
  }

  .quality-flow p {
    font-size: 13px;
  }

  .quality-flow article > small {
    font-size: 10px;
  }

  .model-card {
    min-height: 450px;
  }

  .model-card h3 {
    font-size: 28px;
  }

  .model-card > p {
    font-size: 14px;
  }

  .model-card li {
    font-size: 12px;
  }

  .delivery-cta {
    padding: 55px 0 72px;
  }

  .delivery-cta-shell {
    min-height: auto;
    padding: 27px 18px;
  }

  .delivery-cta-actions {
    display: grid;
  }

  .delivery-cta-actions .button {
    width: 100%;
  }

  .delivery-cta-graphic {
    min-height: 330px;
  }

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

  .footer-brand p,
  .footer-grid a,
  .footer-grid span {
    font-size: 12px;
  }

  .footer-grid strong {
    font-size: 13px;
  }
}

@media (max-width: 420px) {
  .delivery-hero-copy h1 {
    font-size: 39px;
  }

  .delivery-hero-visual {
    min-height: 430px;
  }

  .delivery-float {
    transform: scale(0.75);
  }

  .workflow-stage h3 {
    font-size: 31px;
  }

  .rhythm-timeline article {
    grid-template-columns: 43px 1fr;
  }

  .rhythm-timeline article > b {
    grid-column: 2;
  }

  .delivery-cta-graphic {
    min-height: 300px;
  }
}

@keyframes stage-packet-mobile {
  0% { top: 0; opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { top: 100%; opacity: 0; }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* =========================================================
   OUTFINX READABILITY SYSTEM V5
   ========================================================= */
body { font-size:16px; line-height:1.68; }
.desktop-nav a,.text-link { font-size:14px; }
.button,.button-small { font-size:13px; }
.eyebrow,.kicker { font-size:12px; }
.section { padding:80px 0; }
.delivery-hero-copy h1 {
  font-size:clamp(46px,5vw,62px);
  line-height:1.03;
}
.delivery-hero-copy > p {
  font-size:17px;
  line-height:1.72;
}
.hero-proof span,.delivery-trust-strip > span { font-size:11px; }
.section-heading h2,.rhythm-copy h2,.delivery-cta-copy h2 {
  font-size:clamp(34px,3.5vw,46px);
  line-height:1.1;
}
.section-heading p,.rhythm-copy > p,.delivery-cta-copy > p {
  font-size:16px;
  line-height:1.72;
}
.workflow-tab strong { font-size:15px; }
.workflow-tab small { font-size:12px; }
.workflow-tab > span,
.workflow-stage-head > div > span,
.workflow-stage-grid span,
.workflow-stage-note span,
.rhythm-timeline article > span,
.quality-flow article > span,
.model-card-head > span {
  font-size:10px;
}
.workflow-stage h3 {
  font-size:clamp(30px,3vw,40px);
  line-height:1.1;
}
.workflow-stage > p,
.model-card > p {
  font-size:15px;
  line-height:1.7;
}
.workflow-stage-grid strong,
.workflow-stage-note strong,
.stage-steps span,
.rhythm-timeline strong {
  font-size:13px;
}
.rhythm-timeline small,
.quality-flow p,
.quality-flow article > small,
.model-card-head small {
  font-size:11px;
}
.quality-flow h3 { font-size:21px; }
.model-card h3 { font-size:24px; }
.footer-brand p,.footer-grid a,.footer-grid span { font-size:12px; }
.footer-grid strong,.footer-bottom > span { font-size:11px; }
@media(max-width:640px){
  .delivery-hero-copy h1{font-size:40px!important;line-height:1.08!important}
  .section-heading h2,.rhythm-copy h2,.delivery-cta-copy h2{font-size:32px!important}
  .delivery-hero-copy > p,.section-heading p,.workflow-stage > p,.rhythm-copy > p,.quality-flow p,.model-card > p,.delivery-cta-copy > p{font-size:15px!important;line-height:1.7!important}
  .workflow-tab strong{font-size:15px!important}
  .workflow-tab small{font-size:12px!important}
  .mobile-menu-inner>a{font-size:18px!important}
  .button,.button-small{font-size:14px!important}
}


/* V4 shared-navbar compatibility only. */
.delivery-hero{padding-top:145px}
.nav-dropdown{position:relative}
@media(max-width:1020px){.delivery-hero{padding-top:112px}}
@media(max-width:640px){.delivery-hero{padding-top:102px}}
