/* Quick Serve landing — quickserve.food */

:root {
  --brand: #ee5a24;
  --brand-dark: #c9410f;
  --brand-tint: #fce9e1;
  --cream: #f2ebe1;
  --cream-card: #fbf6ef;
  --ink: #211c18;
  --ink-soft: #4a423b;
  --ink-muted: #8c8279;
  --white: #ffffff;
  --black: #0e0c0b;
  --font: "Plus Jakarta Sans", system-ui, sans-serif;
  --radius: 16px;
  --shell: min(1120px, calc(100% - 2.75rem));
  --header-h: 72px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --dock-h: 0px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 12px);
}

body {
  margin: 0;
  font-family: var(--font);
  font-weight: 500;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  padding-bottom: var(--dock-h);
}

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

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

button {
  font: inherit;
}

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

:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 3px;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  padding: 0.75rem 1rem;
  background: var(--brand);
  color: var(--white);
  font-weight: 700;
  border-radius: 10px;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

/* Scroll progress */
.scroll-progress {
  position: fixed;
  inset: 0 0 auto;
  z-index: 60;
  height: 2px;
  background: transparent;
  pointer-events: none;
}

.scroll-progress span {
  display: block;
  height: 100%;
  width: 0%;
  background: var(--brand);
  transform-origin: left;
  transition: width 0.08s linear;
}

/* —— Header —— */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  min-height: var(--header-h);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: rgba(14, 12, 11, 0.28);
  backdrop-filter: blur(14px) saturate(1.2);
  -webkit-backdrop-filter: blur(14px) saturate(1.2);
  border-bottom: 1px solid transparent;
  transition: background 0.35s var(--ease), border-color 0.35s var(--ease);
}

.site-header.is-scrolled {
  background: rgba(14, 12, 11, 0.9);
  border-bottom-color: rgba(255, 255, 255, 0.08);
}

.site-header.is-open {
  background: rgba(14, 12, 11, 0.96);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-height: var(--header-h);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--white);
  flex-shrink: 0;
  transition: opacity 0.2s ease;
}

.brand:hover {
  opacity: 0.9;
}

.brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 11px;
  background: var(--brand);
  display: grid;
  place-items: center;
  box-shadow: 0 8px 20px -8px rgba(238, 90, 36, 0.65);
  transition: transform 0.3s var(--ease);
}

.brand:hover .brand-mark {
  transform: scale(1.04);
}

.brand-mark img {
  width: 22px;
  height: 22px;
  filter: brightness(0) invert(1);
}

.brand-mark-sm {
  width: 32px;
  height: 32px;
  border-radius: 9px;
}

.brand-mark-sm img {
  width: 18px;
  height: 18px;
}

.brand-name {
  font-size: 1.125rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.nav {
  display: none;
  align-items: center;
  gap: 0.25rem;
  margin-left: auto;
}

.nav a {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  transition: color 0.2s ease, background 0.2s ease;
}

.nav a:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.nav a.is-active {
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-left: auto;
}

.lang-switch {
  display: inline-flex;
  padding: 3px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.lang-btn {
  appearance: none;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.lang-btn.is-active {
  background: var(--white);
  color: var(--ink);
}

.lang-btn:hover:not(.is-active) {
  color: var(--white);
}

.header-cta {
  display: none;
}

.menu-toggle {
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  display: grid;
  place-content: center;
  gap: 5px;
  cursor: pointer;
  padding: 0;
}

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

.site-header.is-open .menu-toggle span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.site-header.is-open .menu-toggle span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.mobile-nav {
  display: grid;
  gap: 1.25rem;
  padding: 0.5rem 0 1.25rem;
  width: var(--shell);
  margin-inline: auto;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  animation: menuIn 0.3s var(--ease);
}

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

.mobile-nav nav {
  display: grid;
  gap: 0.25rem;
  padding-top: 0.75rem;
}

.mobile-nav a:not(.btn) {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  padding: 0.65rem 0;
}

.mobile-nav .btn {
  width: 100%;
}

@keyframes menuIn {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* —— Buttons —— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 54px;
  padding: 0 1.35rem;
  border-radius: var(--radius);
  font-size: 1rem;
  font-weight: 700;
  border: 0;
  cursor: pointer;
  transition:
    transform 0.25s var(--ease),
    background 0.2s ease,
    box-shadow 0.25s var(--ease),
    color 0.2s ease,
    border-color 0.2s ease;
}

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

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

.btn-primary {
  background: var(--brand);
  color: var(--white);
  box-shadow: 0 12px 28px -12px rgba(238, 90, 36, 0.7);
}

.btn-primary:hover {
  background: var(--brand-dark);
  box-shadow: 0 16px 32px -12px rgba(238, 90, 36, 0.8);
}

.btn-light {
  background: var(--white) !important;
  color: var(--brand-dark) !important;
  box-shadow: 0 12px 28px -14px rgba(0, 0, 0, 0.35) !important;
}

.btn-light:hover {
  background: var(--cream-card) !important;
  color: var(--ink) !important;
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  box-shadow: none;
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.55);
}

.btn-sm {
  min-height: 40px;
  padding: 0 1rem;
  font-size: 0.875rem;
  border-radius: 12px;
}

/* —— Hero —— */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  color: var(--white);
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 55% at 85% 20%, rgba(238, 90, 36, 0.55) 0%, transparent 58%),
    radial-gradient(ellipse 55% 45% at 10% 70%, rgba(238, 90, 36, 0.22) 0%, transparent 55%),
    linear-gradient(165deg, #2a1c14 0%, #17120e 42%, #0e0c0b 100%);
}

.hero-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(14, 12, 11, 0.35) 0%, transparent 55%),
    linear-gradient(180deg, rgba(14, 12, 11, 0.4) 0%, transparent 40%, rgba(14, 12, 11, 0.15) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(42rem, calc(100% - 2.75rem));
  margin-left: max(calc((100% - min(1120px, calc(100% - 2.75rem))) / 2), 1.375rem);
  margin-right: auto;
  padding: calc(var(--header-h) + 2.5rem) 0 5.5rem;
}

.hero-brand {
  font-size: clamp(3rem, 8vw, 5rem);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 0.92;
  margin-bottom: 1.35rem;
  text-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
  opacity: 0;
  animation: riseIn 0.8s var(--ease) 0.12s forwards;
}

.hero-content h1 {
  font-size: clamp(1.3rem, 2.6vw, 1.7rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.28;
  color: rgba(255, 255, 255, 0.94);
  margin-bottom: 0.9rem;
  max-width: 28ch;
  opacity: 0;
  animation: riseIn 0.8s var(--ease) 0.26s forwards;
}

.hero-lead {
  font-size: 1.0625rem;
  color: rgba(255, 255, 255, 0.78);
  max-width: 34rem;
  margin-bottom: 1.85rem;
  opacity: 0;
  animation: riseIn 0.8s var(--ease) 0.4s forwards;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  opacity: 0;
  animation: riseIn 0.8s var(--ease) 0.52s forwards;
}

.hero-scroll {
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: 1.5rem;
  transform: translateX(-50%);
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0;
  animation: riseIn 0.8s var(--ease) 0.9s forwards, bob 2.4s ease-in-out 1.6s infinite;
}

.hero-scroll:hover {
  color: var(--white);
}

@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bob {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(6px);
  }
}

/* —— Sections —— */
.section {
  position: relative;
  padding: clamp(4.5rem, 9vw, 8rem) 0;
}

.section-head {
  margin-bottom: clamp(2.25rem, 5vw, 3.5rem);
  max-width: 38rem;
}

.eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 0.95rem;
}

.eyebrow-light {
  color: #ffc7ae;
}

.section h2 {
  font-size: clamp(1.85rem, 3.8vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.1;
  max-width: 18ch;
}

/* Shared icons */
.icon-badge {
  display: inline-grid;
  place-items: center;
  width: clamp(2.75rem, 5vw, 3.25rem);
  height: clamp(2.75rem, 5vw, 3.25rem);
  margin-bottom: 1rem;
  border-radius: 14px;
  background: var(--brand-tint);
  color: var(--brand);
  box-shadow: 0 10px 22px -14px rgba(238, 90, 36, 0.45);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.icon-badge svg {
  width: 52%;
  height: 52%;
}

.icon-badge-dark {
  background: rgba(238, 90, 36, 0.14);
  color: #ff9b6b;
  box-shadow: none;
}

.reveal.is-visible .icon-badge {
  transform: translateY(0);
}

.split-block:hover .icon-badge,
.app-block:hover .icon-badge,
.why-list li:hover .icon-badge,
.step:hover .icon-badge {
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 14px 28px -14px rgba(238, 90, 36, 0.55);
}

.step:hover .icon-badge-dark {
  background: rgba(238, 90, 36, 0.22);
  box-shadow: none;
}

/* Soft section bridges */
.section-bridge {
  position: absolute;
  left: 0;
  right: 0;
  height: clamp(48px, 8vw, 96px);
  pointer-events: none;
  z-index: 2;
}

.section-bridge-top {
  top: 0;
  transform: translateY(-55%);
}

.section-bridge-bottom {
  bottom: 0;
  transform: translateY(55%);
}

.section-bridge svg {
  display: block;
  width: 100%;
  height: 100%;
}

/* Audience */
.audience {
  background:
    radial-gradient(ellipse 90% 60% at 8% -5%, #f8f0e6 0%, transparent 58%),
    radial-gradient(ellipse 70% 50% at 100% 8%, #fce9e1 0%, transparent 52%),
    var(--cream);
}

.split {
  display: grid;
  gap: clamp(2rem, 4vw, 3.5rem);
}

.split-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 0.85rem;
}

.split-block h3 {
  font-size: clamp(1.35rem, 2.4vw, 1.7rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.18;
  margin-bottom: 0.85rem;
}

.split-block p {
  color: var(--ink-soft);
  font-size: 1.0625rem;
  max-width: 36rem;
  line-height: 1.65;
}

.split-block + .split-block {
  padding-top: clamp(1.75rem, 3vw, 2.5rem);
  border-top: 1px solid rgba(33, 28, 24, 0.08);
}

/* How */
.how {
  background:
    radial-gradient(ellipse 90% 60% at 100% 0%, rgba(238, 90, 36, 0.28) 0%, transparent 55%),
    radial-gradient(ellipse 55% 45% at 0% 100%, rgba(238, 90, 36, 0.12) 0%, transparent 50%),
    var(--ink);
  color: var(--white);
  overflow: hidden;
}

.how .eyebrow {
  color: #f79256;
}

.how h2 {
  color: var(--white);
}

.how-head {
  max-width: 40rem;
}

.how-lead {
  color: rgba(255, 255, 255, 0.68);
}

.steps {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 0;
  position: relative;
  counter-reset: none;
}

.step {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.15rem 1.35rem;
  padding: 1.75rem 0;
}

.step:first-child {
  padding-top: 0;
}

.step:last-child {
  padding-bottom: 0;
}

.step + .step {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.step-index {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
  padding-top: 0.2rem;
}

.step-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 0 6px rgba(238, 90, 36, 0.18);
  flex-shrink: 0;
}

.step-num {
  font-size: clamp(2.5rem, 6vw, 3.75rem);
  font-weight: 800;
  letter-spacing: -0.06em;
  line-height: 0.9;
  color: rgba(238, 90, 36, 0.18);
  -webkit-text-stroke: 1.25px rgba(238, 90, 36, 0.7);
}

.step-body {
  min-width: 0;
  padding-top: 0.15rem;
}

.step-body .icon-badge {
  margin-bottom: 0.9rem;
}

.step h3 {
  font-size: clamp(1.35rem, 2.4vw, 1.6rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 0.65rem;
  line-height: 1.2;
}

.step p {
  color: rgba(255, 255, 255, 0.68);
  font-size: 1.0625rem;
  max-width: 32rem;
  line-height: 1.65;
}

/* Why */
.why {
  background:
    radial-gradient(ellipse 70% 40% at 50% 0%, rgba(238, 90, 36, 0.08) 0%, transparent 55%),
    var(--cream-card);
}

.why-list {
  list-style: none;
  padding: 0;
  display: grid;
  gap: clamp(2rem, 4vw, 3rem);
}

.why-list li {
  position: relative;
}

.why-list h3 {
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -0.025em;
  margin-bottom: 0.55rem;
}

.why-list p {
  color: var(--ink-soft);
  font-size: 1.015rem;
  max-width: 34rem;
  line-height: 1.65;
}

/* Apps download */
.apps {
  background:
    radial-gradient(ellipse 70% 50% at 90% 0%, rgba(238, 90, 36, 0.1) 0%, transparent 55%),
    linear-gradient(180deg, var(--cream-card) 0%, #f4ebe1 100%);
}

.section-lead {
  margin-top: 1rem;
  font-size: 1.0625rem;
  color: var(--ink-soft);
  max-width: 36rem;
  line-height: 1.6;
}

.apps-grid {
  display: grid;
  gap: clamp(2.5rem, 5vw, 3.5rem);
}

.app-block .icon-badge {
  margin-bottom: 0.9rem;
}

.app-block h3 {
  font-size: clamp(1.35rem, 2.4vw, 1.65rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin-bottom: 0.75rem;
}

.app-block > p:not(.split-label) {
  color: var(--ink-soft);
  font-size: 1.0625rem;
  max-width: 34rem;
  line-height: 1.65;
  margin-bottom: 1.5rem;
}

.app-block + .app-block {
  padding-top: clamp(1.75rem, 3vw, 2.5rem);
  border-top: 1px solid rgba(33, 28, 24, 0.08);
}

.store-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  min-height: 54px;
  padding: 0.55rem 1.1rem 0.55rem 0.9rem;
  border-radius: 14px;
  background: var(--ink);
  color: var(--white);
  transition: transform 0.25s var(--ease), background 0.2s ease, box-shadow 0.25s var(--ease);
  box-shadow: 0 10px 24px -14px rgba(33, 28, 24, 0.55);
}

.store-btn:hover {
  transform: translateY(-2px);
  background: var(--black);
  box-shadow: 0 14px 28px -12px rgba(33, 28, 24, 0.6);
}

.store-icon {
  flex-shrink: 0;
}

.store-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.15;
  gap: 0.1rem;
}

.store-caption {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
}

.store-name {
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

/* Final CTA */
.cta-final {
  padding: 0;
  background: var(--black);
}

.cta-stage {
  position: relative;
  min-height: clamp(480px, 70vw, 560px);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.cta-stage-media {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 80% 30%, rgba(238, 90, 36, 0.55) 0%, transparent 55%),
    radial-gradient(ellipse 50% 45% at 15% 80%, rgba(238, 90, 36, 0.2) 0%, transparent 50%),
    linear-gradient(145deg, #2a1c14 0%, #17120e 50%, #0e0c0b 100%);
}

.cta-stage-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(14, 12, 11, 0.15) 0%, rgba(14, 12, 11, 0.45) 100%),
    linear-gradient(105deg, rgba(238, 90, 36, 0.28) 0%, transparent 50%);
}

.cta-panel {
  position: relative;
  z-index: 1;
  padding: clamp(4.5rem, 10vw, 7rem) 0;
  max-width: 36rem;
  color: var(--white);
}

.cta-panel h2 {
  max-width: 16ch;
  margin-bottom: 0.9rem;
  color: var(--white);
  font-size: clamp(1.85rem, 3.5vw, 2.55rem);
}

.cta-panel > p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1.85rem;
  font-size: 1.0625rem;
  max-width: 32rem;
  line-height: 1.6;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.copy-feedback {
  margin-top: 0.85rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: #ffc7ae;
}

.copy-feedback[hidden] {
  display: none;
}

/* Footer */
.site-footer {
  background: var(--black);
  color: rgba(255, 255, 255, 0.65);
  padding: 2.25rem 0 2.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--white);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.footer-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.9375rem;
  font-weight: 600;
}

.footer-meta a {
  transition: color 0.2s ease;
}

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

.footer-copy {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.4);
}

/* Mobile dock */
.mobile-dock {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 40;
  padding: 0.75rem 1rem calc(0.75rem + env(safe-area-inset-bottom));
  background: linear-gradient(180deg, transparent, rgba(14, 12, 11, 0.75) 35%, rgba(14, 12, 11, 0.95));
  transform: translateY(110%);
  transition: transform 0.35s var(--ease);
  pointer-events: none;
}

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

.mobile-dock .btn {
  width: 100%;
  box-shadow: 0 10px 30px -10px rgba(238, 90, 36, 0.75);
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  filter: blur(4px);
  transition:
    opacity 0.9s var(--ease),
    transform 0.9s var(--ease),
    filter 0.9s var(--ease);
  transition-delay: var(--d, 0ms);
}

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

/* —— Responsive —— */
@media (min-width: 720px) {
  .nav {
    display: flex;
  }

  .header-cta {
    display: inline-flex;
  }

  .menu-toggle,
  .mobile-nav,
  .mobile-dock {
    display: none !important;
  }

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

  .split {
    grid-template-columns: 1fr 1fr;
    gap: clamp(2.5rem, 4vw, 4rem);
  }

  .split-block + .split-block {
    padding-top: 0;
    border-top: 0;
    padding-left: clamp(2.5rem, 4vw, 3.5rem);
    border-left: 1px solid rgba(33, 28, 24, 0.08);
  }

  .steps {
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(1.5rem, 3vw, 2.5rem);
    align-items: start;
  }

  .steps::before {
    content: "";
    position: absolute;
    top: 5px;
    left: 5px;
    width: calc(66.666% - 0.5rem);
    height: 2px;
    background: linear-gradient(90deg, var(--brand) 0%, rgba(238, 90, 36, 0.35) 70%, rgba(238, 90, 36, 0.12) 100%);
    border-radius: 2px;
  }

  .step {
    display: flex;
    flex-direction: column;
    gap: 1.35rem;
    padding: 0;
    border-top: 0;
  }

  .step + .step {
    border-top: 0;
  }

  .step-index {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.1rem;
  }

  .step-num {
    font-size: clamp(3.25rem, 5.5vw, 4.5rem);
  }

  .step-body {
    padding-top: 0;
  }

  .why-list {
    grid-template-columns: 1fr 1fr;
    gap: clamp(2.25rem, 4vw, 3.25rem) clamp(2.5rem, 4vw, 4rem);
  }

  .apps-grid {
    grid-template-columns: 1fr 1fr;
    gap: clamp(2.5rem, 4vw, 4rem);
  }

  .app-block + .app-block {
    padding-top: 0;
    border-top: 0;
    padding-left: clamp(2.5rem, 4vw, 3.5rem);
    border-left: 1px solid rgba(33, 28, 24, 0.08);
  }

  .cta-panel {
    padding: clamp(5.5rem, 9vw, 7.5rem) 0;
  }

  .footer-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
  }

  .hero-scroll {
    left: max(calc((100% - min(1120px, calc(100% - 2.75rem))) / 2), 1.375rem);
    transform: none;
    align-items: flex-start;
    animation: riseIn 0.8s var(--ease) 0.9s forwards, bobLeft 2.4s ease-in-out 1.6s infinite;
  }
}

@keyframes bobLeft {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(6px);
  }
}

@media (min-width: 960px) {
  .hero-content {
    padding-bottom: 6.5rem;
  }
}

@media (max-width: 719px) {
  :root {
    --dock-h: 84px;
  }

  .hero-scroll {
    display: none;
  }

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

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

  .hero-media,
  .hero-brand,
  .hero-content h1,
  .hero-lead,
  .hero-cta,
  .hero-scroll,
  .reveal,
  .mobile-nav,
  .mobile-dock,
  .brand-mark,
  .icon-badge {
    animation: none !important;
    transition: none !important;
  }

  .split-block:hover .icon-badge,
  .app-block:hover .icon-badge,
  .why-list li:hover .icon-badge,
  .step:hover .icon-badge {
    transform: none !important;
  }

  .reveal,
  .hero-brand,
  .hero-content h1,
  .hero-lead,
  .hero-cta,
  .hero-scroll {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }
}
