/*
 * Awwranges — marketing site.
 *
 * Brand system inherited from cafe-portal (PRODUCT.md / DESIGN.md): café
 * orange as the single accent, ink navy, warm neutrals, weight-900 headlines
 * with tight tracking, one generous 24px radius, flat surface-contrast
 * elevation. This is the *landing-page register*, so it does adopt the
 * marketing-scale display type the admin shell deliberately skips.
 *
 * Anti-references honoured throughout: no gradient text, no glassmorphism,
 * no glowing card borders, no side-stripe decoration, no endless grid of
 * identical icon+heading+text cards.
 */

/* ============================================================ TOKENS */

:root {
  /* Identity */
  --orange: oklch(0.723 0.154 52.0); /* #ef863e */
  --orange-press: oklch(0.687 0.154 52.0); /* #e37b30 */
  --orange-soft: oklch(0.94 0.028 52.0); /* #fbe6db */
  --rust: oklch(0.42 0.154 52.0); /* deep text on orange-soft */

  /* Neutrals */
  --ink: oklch(0.259 0.054 250.7); /* #0d253d */
  --ink-mute: oklch(0.545 0.044 259.2);
  --canvas: oklch(1 0 0);
  --canvas-soft: oklch(0.98 0.004 60); /* #fbf8f6 */
  --canvas-warm: oklch(0.964 0.009 60);
  --hairline: oklch(0.929 0.01 252.8);

  /* Dark band (kitchen section) */
  --night: oklch(0.211 0.045 250.7);
  --night-raise: oklch(0.263 0.043 250.7);
  --night-line: oklch(0.34 0.036 250.7);
  --night-text: oklch(0.93 0.008 250);
  --night-mute: oklch(0.72 0.024 250);

  /* Semantic (status vocabulary — never the orange) */
  --green: oklch(0.55 0.115 155);
  --green-soft: oklch(0.945 0.035 155);
  --amber: oklch(0.72 0.14 75);
  --amber-soft: oklch(0.955 0.045 85);
  --red: oklch(0.577 0.196 25);
  --red-soft: oklch(0.947 0.028 25);
  --blue-soft: oklch(0.95 0.03 245);

  /* Radii — the brand never uses sharp corners. Rounder than before: a
     more Linktree-chunky feel across cards, panes and the stage block. */
  --r-sm: 10px;
  --r-md: 18px;
  --r-lg: 28px;
  --r-xl: 40px;
  --r-pill: 999px;

  --shadow-float: 0 18px 50px -24px oklch(0.259 0.054 250.7 / 0.35);
  --shadow-lift: 0 30px 80px -40px oklch(0.259 0.054 250.7 / 0.45);

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --maxw: 1180px;
  --gut: clamp(20px, 5vw, 48px);
}

/* ============================================================ RESET */

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

* {
  margin: 0;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  font-family: "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  background: var(--canvas-soft);
  color: var(--ink);
  font-weight: 500;
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

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

button {
  font: inherit;
  color: inherit;
  border: 0;
  background: none;
  cursor: pointer;
}

::selection {
  background: var(--orange-soft);
  color: var(--rust);
}

:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ============================================================ TYPE */

h1,
h2,
h3,
h4 {
  font-weight: 900;
  letter-spacing: -0.033em;
  line-height: 1.03;
  text-wrap: balance;
}

.display {
  font-size: clamp(3rem, 7.4vw, 6.1rem);
}

.h2 {
  font-size: clamp(2.25rem, 4.6vw, 3.7rem);
  line-height: 1.05;
}

.h3 {
  font-size: clamp(1.4rem, 2.1vw, 1.85rem);
  letter-spacing: -0.026em;
  line-height: 1.15;
}

.h4 {
  font-size: 1.125rem;
  font-weight: 800;
  letter-spacing: -0.018em;
  line-height: 1.25;
}

.lede {
  font-size: clamp(1.075rem, 1.55vw, 1.32rem);
  line-height: 1.55;
  color: var(--ink-mute);
  font-weight: 500;
  text-wrap: pretty;
}

.muted {
  color: var(--ink-mute);
}

.tnum {
  font-variant-numeric: tabular-nums;
}

/* Section eyebrow: a numbered editorial marker, not a pill badge */
.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.775rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 20px;
}

.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--orange);
  flex: none;
}

.eyebrow .num {
  font-variant-numeric: tabular-nums;
  color: var(--orange);
}

/* ============================================================ LAYOUT */

.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gut);
}

.section {
  padding-block: clamp(80px, 11vw, 148px);
  position: relative;
}

.section--tight {
  padding-block: clamp(64px, 8vw, 104px);
}

.rule {
  height: 1px;
  background: var(--hairline);
  border: 0;
}

/* ============================================================ BUTTONS */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  height: 58px;
  padding-inline: 32px;
  border-radius: var(--r-pill);
  font-weight: 700;
  font-size: 1.02rem;
  letter-spacing: -0.012em;
  white-space: nowrap;
  transition:
    transform 0.18s var(--ease),
    background-color 0.18s var(--ease),
    border-color 0.18s var(--ease),
    color 0.18s var(--ease);
}

.btn:active {
  transform: translateY(1px);
}

.btn svg {
  flex: none;
}

/* On-primary text is ink, never white — 5.34:1 vs 2.92:1. Checked, not assumed. */
.btn--primary {
  background: var(--orange);
  color: var(--ink);
}

.btn--primary:hover {
  background: var(--orange-press);
}

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--hairline);
}

.btn--ghost:hover {
  border-color: var(--ink);
}

.btn--sm {
  height: 42px;
  padding-inline: 18px;
  font-size: 0.9rem;
}

.btn--night {
  background: var(--canvas);
  color: var(--ink);
}

.btn--night:hover {
  background: var(--orange);
}

.btn--night-ghost {
  border: 1.5px solid var(--night-line);
  color: var(--night-text);
}

.btn--night-ghost:hover {
  border-color: var(--night-text);
}

/* For the closing CTA's orange block — ink border/text (matches .btn--primary's contrast rule), not the navy-tuned night-ghost above. */
.btn--orange-ghost {
  border: 1.5px solid oklch(0.259 0.054 250.7 / 0.32);
  color: var(--ink);
}

.btn--orange-ghost:hover {
  border-color: var(--ink);
  background: oklch(1 0 0 / 0.22);
}

.textlink {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-weight: 700;
  color: var(--ink);
  border-bottom: 2px solid var(--orange);
  padding-bottom: 2px;
  transition: gap 0.18s var(--ease);
}

.textlink:hover {
  gap: 12px;
}

/* ============================================================ NAV */

.nav {
  position: sticky;
  top: 0;
  z-index: 60;
  background: oklch(0.98 0.004 60 / 0.82);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid transparent;
  transition:
    border-color 0.25s var(--ease),
    background-color 0.25s var(--ease);
}

.nav.is-stuck {
  border-bottom-color: var(--hairline);
}

.nav__inner {
  display: flex;
  align-items: center;
  gap: 20px;
  height: 74px;
}

.nav__logo img {
  height: 30px;
  width: auto;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-left: 16px;
  font-size: 0.94rem;
  font-weight: 600;
}

.nav__links a {
  color: var(--ink-mute);
  transition: color 0.16s var(--ease);
}

.nav__links a:hover {
  color: var(--ink);
}

.nav__spacer {
  flex: 1;
}

.nav__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav__signin {
  font-weight: 700;
  font-size: 0.94rem;
  padding: 8px 4px;
}

@media (max-width: 900px) {
  .nav__links,
  .nav__signin {
    display: none;
  }
}

/* ============================================================ HERO */

.hero {
  padding-top: clamp(52px, 7vw, 92px);
  padding-bottom: clamp(48px, 6vw, 76px);
  position: relative;
  text-align: center;
}

/* A single soft warm wash behind the hero — no mesh gradients, no glow. */
.hero::before {
  content: "";
  position: absolute;
  inset: -30% 0 auto -10%;
  height: 720px;
  background: radial-gradient(
    58% 52% at 30% 42%,
    oklch(0.94 0.029 50.5 / 0.62) 0%,
    transparent 68%
  );
  pointer-events: none;
  z-index: 0;
}

.hero__inner {
  position: relative;
  z-index: 1;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  height: 34px;
  padding-inline: 14px 16px;
  border-radius: var(--r-pill);
  background: var(--canvas);
  border: 1px solid var(--hairline);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: -0.005em;
  margin-bottom: 26px;
}

.hero__badge .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  flex: none;
}

.hero h1 {
  max-width: 17ch;
  margin-inline: auto;
}

/* Orange emphasis inside a heading — <em> here is never italic, just the accent colour. Started in the hero, now used wherever a headline needs the same treatment. */
h1 em,
h2 em,
h3 em {
  font-style: normal;
  color: var(--orange);
}

.hero__lede {
  max-width: 56ch;
  margin: 26px auto 0;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
  justify-content: center;
}

.hero__fine {
  margin-top: 18px;
  font-size: 0.86rem;
  color: var(--ink-mute);
  font-weight: 600;
}

/* -- Hero stage: a saturated brand block with the product rising out of it.
   Both surfaces the product ships are shown at once — the portal you work in,
   and the site it publishes — with the phone tucked over the corner. -- */

.stage {
  position: relative;
  margin-top: clamp(46px, 6vw, 76px);
  padding-top: clamp(34px, 4.6vw, 64px);
}

/* The colour block sits behind, stopping short of the mock's lower half so
   the product reads as lifting off it rather than floating on a gradient. */
.stage::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: clamp(210px, 27vw, 330px);
  border-radius: var(--r-xl);
  background: linear-gradient(146deg, oklch(0.735 0.152 54), oklch(0.678 0.163 44));
  z-index: 0;
}

.stage__art {
  position: relative;
  z-index: 1;
  max-width: 880px;
  margin-inline: auto;
  padding-inline: clamp(14px, 3vw, 42px);
}

/* Scaled rather than narrowed: at ~210px of real width the menu rows wrap and
   the phone stretches tall, so it keeps its natural 292px layout width and is
   scaled down from the bottom-right corner it hangs off. */
.stage__phone {
  position: absolute;
  right: -10px;
  bottom: -54px;
  width: 292px;
  transform: scale(0.74);
  transform-origin: bottom right;
  z-index: 2;
}

@media (max-width: 780px) {
  .stage::before {
    height: clamp(150px, 34vw, 230px);
  }
  .stage__phone {
    position: static;
    width: 268px;
    transform: none;
    margin: 26px auto 0;
  }
}

.stage__legend {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 26px;
  margin-top: 30px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--ink-mute);
}

.stage__legend span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.stage__legend i {
  width: 9px;
  height: 9px;
  border-radius: 3px;
  background: var(--orange);
  display: block;
}

.stage__legend i.alt {
  background: var(--ink);
}

@media (max-width: 780px) {
  .stage__legend {
    margin-top: 22px;
  }
}

/* Browser chrome mock */
.win {
  border-radius: var(--r-lg);
  background: var(--canvas);
  border: 1px solid var(--hairline);
  box-shadow: var(--shadow-lift);
  overflow: hidden;
}

.win__bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--hairline);
  background: var(--canvas-soft);
}

.win__dots {
  display: flex;
  gap: 6px;
}

.win__dots i {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--hairline);
  display: block;
}

.win__url {
  flex: 1;
  height: 26px;
  border-radius: var(--r-pill);
  background: var(--canvas);
  border: 1px solid var(--hairline);
  display: flex;
  align-items: center;
  padding-inline: 12px;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--ink-mute);
  gap: 6px;
}

/* Portal mock body */
.portal {
  display: grid;
  grid-template-columns: 168px 1fr;
  min-height: 344px;
}

@media (max-width: 560px) {
  .portal {
    grid-template-columns: minmax(0, 1fr);
  }
  .portal__side {
    display: none;
  }
}

.portal__side {
  border-right: 1px solid var(--hairline);
  padding: 16px 12px;
  background: var(--canvas-soft);
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.pnav {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 8px 10px;
  border-radius: 10px;
  font-size: 0.79rem;
  font-weight: 600;
  color: var(--ink-mute);
}

.pnav.is-on {
  background: var(--orange-soft);
  color: var(--rust);
  font-weight: 700;
}

.pnav i {
  width: 14px;
  height: 14px;
  border-radius: 4px;
  background: currentColor;
  opacity: 0.45;
  flex: none;
}

.portal__main {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

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

.portal__head strong {
  font-size: 1.02rem;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.fakebtn {
  height: 28px;
  border-radius: var(--r-pill);
  background: var(--orange);
  color: var(--ink);
  font-size: 0.75rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  padding-inline: 14px;
}

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

.stat {
  border: 1px solid var(--hairline);
  border-radius: var(--r-md);
  padding: 12px 13px;
  background: var(--canvas);
}

.stat b {
  display: block;
  font-size: 1.28rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  font-variant-numeric: tabular-nums;
  line-height: 1.1;
}

.stat span {
  font-size: 0.7rem;
  color: var(--ink-mute);
  font-weight: 600;
}

.stat em {
  font-style: normal;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--green);
}

/* Bar chart, drawn with real proportions */
.chart {
  border: 1px solid var(--hairline);
  border-radius: var(--r-md);
  padding: 14px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 128px;
}

.chart__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--ink-mute);
}

.bars {
  flex: 1;
  display: flex;
  align-items: flex-end;
  gap: 7px;
  min-height: 72px;
}

.bars i {
  flex: 1;
  border-radius: 4px 4px 2px 2px;
  background: var(--orange-soft);
  display: block;
  transform-origin: bottom;
}

.bars i.on {
  background: var(--orange);
}

/* Phone mock */
.phone {
  border-radius: 30px;
  background: var(--ink);
  padding: 9px;
  box-shadow: var(--shadow-lift);
  max-width: 300px;
  width: 100%;
  margin-inline: auto;
}

.phone__screen {
  border-radius: 23px;
  overflow: hidden;
  background: var(--canvas);
}

.phone__hero {
  height: 132px;
  background:
    linear-gradient(to top, oklch(0.259 0.054 250.7 / 0.72), transparent 62%),
    linear-gradient(122deg, oklch(0.62 0.13 44), oklch(0.72 0.108 62));
  padding: 14px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: var(--canvas);
}

.phone__hero small {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.85;
}

.phone__hero b {
  font-size: 1.32rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.05;
}

.phone__body {
  padding: 13px;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.mrow {
  display: flex;
  align-items: center;
  gap: 10px;
}

.mrow__img {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--canvas-warm);
  flex: none;
  border: 1px solid var(--hairline);
}

.mrow__txt {
  flex: 1;
  min-width: 0;
}

.mrow__txt b {
  display: block;
  font-size: 0.79rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.mrow__txt span {
  font-size: 0.68rem;
  color: var(--ink-mute);
  font-weight: 500;
}

.mrow__price {
  font-size: 0.79rem;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
}

.phone__cta {
  margin-top: 3px;
  height: 38px;
  border-radius: var(--r-pill);
  background: var(--orange);
  color: var(--ink);
  font-size: 0.8rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ============================================================ MARQUEE */

.ticker {
  border-block: 1px solid var(--hairline);
  background: var(--canvas);
  padding-block: 18px;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.ticker__track {
  display: flex;
  width: max-content;
  animation: slide 46s linear infinite;
}

.ticker__group {
  display: flex;
  align-items: center;
  gap: 44px;
  padding-right: 44px;
  flex: none;
}

.ticker__group span {
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--ink-mute);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 12px;
}

.ticker__group span::after {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--orange);
  flex: none;
}

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

/* ============================================================ PILLARS */

/* Outcome-framed, not feature-framed: what the café gets, in four beats. */
.pillars {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  border: 1px solid var(--hairline);
  border-radius: var(--r-lg);
  background: var(--canvas);
  overflow: hidden;
}

.pillars > div {
  padding: 28px 26px;
  border-right: 1px solid var(--hairline);
}

.pillars > div:last-child {
  border-right: 0;
}

.pillars b {
  display: block;
  font-size: 1.02rem;
  font-weight: 900;
  letter-spacing: -0.022em;
  margin-bottom: 7px;
}

.pillars span {
  font-size: 0.9rem;
  color: var(--ink-mute);
  font-weight: 500;
}

.pillars .k {
  display: block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
}

@media (max-width: 900px) {
  .pillars {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .pillars > div:nth-child(2n) {
    border-right: 0;
  }
  .pillars > div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--hairline);
  }
}

@media (max-width: 560px) {
  .pillars {
    grid-template-columns: minmax(0, 1fr);
  }
  .pillars > div {
    border-right: 0;
    border-bottom: 1px solid var(--hairline);
  }
  .pillars > div:last-child {
    border-bottom: 0;
  }
}

/* ============================================================ ECONOMICS */

.econ {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 38px;
}

@media (max-width: 760px) {
  .econ {
    grid-template-columns: minmax(0, 1fr);
  }
}

.econ__card {
  border-radius: var(--r-lg);
  padding: 28px;
  border: 1px solid var(--hairline);
  background: var(--canvas);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.econ__card--win {
  border-color: var(--ink);
  border-width: 1.5px;
  background: var(--ink);
  color: var(--canvas);
}

.econ__card h3 {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

.econ__card--win h3 {
  color: var(--orange);
}

.econ__amt {
  font-size: clamp(2.6rem, 5.2vw, 3.5rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.05;
  font-variant-numeric: tabular-nums;
  margin-top: 6px;
}

.econ__card p {
  font-size: 0.95rem;
  color: var(--ink-mute);
  font-weight: 600;
}

.econ__card--win p {
  color: var(--night-mute);
}

.econ__note {
  margin-top: 20px;
  font-size: 0.83rem;
  color: var(--ink-mute);
  font-weight: 600;
  max-width: 68ch;
}

.econ__keep {
  margin-top: auto;
  padding-top: 16px;
  font-size: 0.88rem;
  font-weight: 800;
}

/* ============================================================ SPLIT SECTIONS */

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(36px, 5.5vw, 78px);
  align-items: center;
}

.split--flip .split__copy {
  order: 2;
}

@media (max-width: 940px) {
  /* minmax(0, 1fr), not 1fr: a bare 1fr track carries min-width:auto, so the
     widest pane's min-content (nowrap chips + fixed order-id column) prises
     the single column open past the viewport and scrolls the page sideways. */
  .split,
  .split--flip {
    grid-template-columns: minmax(0, 1fr);
    gap: 40px;
  }
  .split--flip .split__copy {
    order: 0;
  }
  .split > * {
    min-width: 0;
  }
}

/* Order rows carry several nowrap parts; let the status chip drop to its own
   line on narrow screens instead of forcing the row wider than the phone. */
@media (max-width: 560px) {
  .orderlist > div {
    flex-wrap: wrap;
    row-gap: 7px;
  }
  .oname {
    white-space: normal;
  }
  .oamt {
    margin-left: auto;
  }
}

.split__copy h2 {
  max-width: 16ch;
}

.split__copy .lede {
  margin-top: 20px;
  max-width: 46ch;
}

/* Feature list — dashes and weight, no icon-in-circle repetition */
.flist {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  border-top: 1px solid var(--hairline);
}

.flist div {
  padding: 15px 0;
  border-bottom: 1px solid var(--hairline);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: baseline;
}

.flist b {
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: -0.015em;
  white-space: nowrap;
}

.flist span {
  color: var(--ink-mute);
  font-size: 0.95rem;
  font-weight: 500;
}

@media (max-width: 520px) {
  .flist div {
    grid-template-columns: minmax(0, 1fr);
    gap: 4px;
  }
}

/* ============================================================ CARD SHELLS */

.card {
  background: var(--canvas);
  border: 1.5px solid var(--hairline);
  border-radius: var(--r-lg);
  padding: 26px;
}

.pane {
  background: var(--canvas);
  border: 1px solid var(--hairline);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-float);
}

.pane__head {
  padding: 15px 20px;
  border-bottom: 1px solid var(--hairline);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: var(--canvas-soft);
}

.pane__head b {
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: -0.015em;
}

.pane__body {
  padding: 20px;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 24px;
  padding-inline: 10px;
  border-radius: var(--r-pill);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: -0.005em;
  background: var(--canvas-warm);
  color: var(--ink-mute);
  white-space: nowrap;
}

.chip--green {
  background: var(--green-soft);
  color: oklch(0.4 0.1 155);
}

.chip--amber {
  background: var(--amber-soft);
  color: oklch(0.46 0.11 70);
}

.chip--red {
  background: var(--red-soft);
  color: oklch(0.45 0.16 25);
}

.chip--orange {
  background: var(--orange-soft);
  color: var(--rust);
}

.chip--blue {
  background: var(--blue-soft);
  color: oklch(0.44 0.1 250);
}

/* ============================================================ BEAM
   MagicUI's AnimatedBeam reimplemented in plain CSS/SVG (no React/build
   step here) — main.js measures each node's centre and draws a curved SVG
   path between them; a dashed stroke with pathLength="100" animates its
   dashoffset for the flowing-beam effect, over a static hairline track
   underneath. Real fulfilment paths (Pickup / DoorDash Drive / Uber
   Direct), not marketplace-app logos — this diagram is the order's actual
   routing, not a roster. */
.beam {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 420px;
  min-height: 230px;
  margin: 40px auto 0;
}

.beam__lines {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: visible;
}

.beam__track {
  fill: none;
  stroke: var(--hairline);
  stroke-width: 2;
}

.beam__flow {
  fill: none;
  stroke: var(--orange);
  stroke-width: 2.25;
  stroke-linecap: round;
  stroke-dasharray: 22 78;
  animation: beam-flow 2.2s linear infinite;
}

@keyframes beam-flow {
  from {
    stroke-dashoffset: 100;
  }
  to {
    stroke-dashoffset: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .beam__flow {
    animation: none;
    stroke-dasharray: none;
  }
}

.beam__col {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.beam__col--stack {
  gap: 16px;
}

.beam__node {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--canvas);
  border: 1.5px solid var(--hairline);
  box-shadow: var(--shadow-float);
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 800;
  flex: none;
}

.beam__node svg {
  width: 22px;
  height: 22px;
}

.beam__node img {
  width: 24px;
  height: 24px;
  object-fit: contain;
  border-radius: 6px;
}

.beam__node--hub {
  width: 64px;
  height: 64px;
  border-color: var(--orange);
}

.beam__node--hub img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.beam__legend {
  margin-top: 18px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--ink-mute);
}

/* ============================================================ US MAP
   MagicUI's DottedMap reimplemented in plain CSS (no dotted-map npm
   package here — this site has no build step). An evenly-spaced dot
   pattern (a repeating radial-gradient background, not individual DOM
   nodes) clipped to a hand-simplified continental-US outline — a stylised
   silhouette, not survey-accurate geography, same spirit as the source
   component's own low-resolution dot maps. Pins mark illustrative regions
   (Pacific Northwest, Southwest, Midwest, Northeast, South, Southeast),
   not claimed real customer locations — there's no location data behind
   this to plot honestly, so the copy stays general ("coast to coast")
   rather than implying a specific footprint. */
.usmap {
  position: relative;
  width: min(100%, 640px);
  aspect-ratio: 2.358;
  margin: 40px auto 0;
  background-image: radial-gradient(var(--ink-mute) 1.5px, transparent 1.5px);
  background-size: 9px 9px;
  /* Real mainland-US border, simplified from us-atlas's public-domain
     Census TIGER data (Douglas-Peucker down to ~35 points), not hand-
     guessed — normalized to its own lon/lat bounding box, north at top. */
  clip-path: polygon(
    0% 4.96%,
    51.56% 0.06%,
    61.02% 5.6%,
    56.78% 11.04%,
    71.44% 13.89%,
    65.24% 14.55%,
    64.77% 31.7%,
    68.77% 14.8%,
    71.6% 16.81%,
    73.16% 32.68%,
    93.29% 16.97%,
    96.12% 7.86%,
    100% 18.68%,
    93.82% 24.76%,
    94.79% 32.02%,
    85.19% 39.58%,
    84.49% 50.21%,
    84.44% 40.13%,
    82.22% 43.9%,
    85.19% 55.53%,
    75.37% 72.14%,
    76.32% 100%,
    71.16% 79.63%,
    63.59% 76.37%,
    61.15% 83.53%,
    51.58% 80.4%,
    47.75% 95.16%,
    49.02% 85.68%,
    47.13% 87.94%,
    47.37% 96.15%,
    31.66% 71.96%,
    23.64% 73.72%,
    7.11% 60.56%,
    0.63% 37.26%,
    0% 4.96%
  );
}

.usmap__pin {
  position: absolute;
  width: 9px;
  height: 9px;
  margin: -4.5px;
  border-radius: 50%;
  background: var(--orange);
  z-index: 1;
}

.usmap__pin::before {
  content: "";
  position: absolute;
  inset: -9px;
  border-radius: 50%;
  background: var(--orange);
  opacity: 0.35;
  animation: usmap-ping 2.4s cubic-bezier(0, 0, 0.2, 1) infinite;
}

.usmap__pin:nth-child(2)::before {
  animation-delay: 0.4s;
}

.usmap__pin:nth-child(3)::before {
  animation-delay: 0.8s;
}

.usmap__pin:nth-child(4)::before {
  animation-delay: 1.2s;
}

.usmap__pin:nth-child(5)::before {
  animation-delay: 1.6s;
}

.usmap__pin:nth-child(6)::before {
  animation-delay: 2s;
}

@keyframes usmap-ping {
  0% {
    transform: scale(0.6);
    opacity: 0.35;
  }
  75%,
  100% {
    transform: scale(1.8);
    opacity: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .usmap__pin::before {
    animation: none;
    opacity: 0.25;
  }
}

/* ============================================================ ORBIT
   "Connects everywhere" mark for the Delivery section — platform badges
   circling the Awwranges mark, MagicUI's OrbitingCircles reimplemented in
   plain CSS (no React/build step on this site) via offset-path rather than
   the usual rotate+translate+counter-rotate trick, since a motion path
   keeps each icon upright on its own without a second counter-animation.
   Plain colour-and-initials badges, not real logos — same reason
   order-link-platforms.ts never bundles anyone's actual trademark.

   Fixed 240px geometry (not fluid), same choice this site already makes
   for its other device mockups (.stage__phone is a flat 292px) — circle()
   offset-path radii are always relative to the MOVING element's own box,
   never an ancestor's, so a percentage-based radius here would resolve
   against each 38px icon itself rather than the 240px ring. Fixed pixel
   centre/radius sidesteps that entirely. */
.orbit {
  position: relative;
  width: 240px;
  height: 240px;
  margin: 28px auto 8px;
}

.orbit__center {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--canvas);
  border: 1px solid var(--hairline);
  box-shadow: var(--shadow-float);
  display: grid;
  place-items: center;
  z-index: 2;
}

.orbit__center img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.orbit__ring {
  position: absolute;
  border-radius: 50%;
  border: 1px dashed var(--hairline);
}

.orbit__ring--in {
  inset: 48px;
}

.orbit__ring--out {
  inset: 12px;
}

.orbit__icon {
  position: absolute;
  top: 0;
  left: 0;
  width: 38px;
  height: 38px;
  margin-top: -19px;
  margin-left: -19px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  box-shadow: var(--shadow-float);
  offset-rotate: 0deg;
  animation-name: orbit;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

/* Real logos get a plain white badge instead of a colour fill — the DoorDash/
   Uber Eats source images already carry their own brand colour edge to edge,
   so a coloured circle behind them just doubles up oddly. */
.orbit__icon img {
  width: 26px;
  height: 26px;
  object-fit: contain;
  border-radius: 6px;
}

/* Centre of the 240px .orbit is (120px, 120px); radii match the dashed
   rings above exactly (72px inner, 108px outer). */
.orbit__icon--in {
  offset-path: circle(72px at 120px 120px);
  animation-duration: 14s;
}

.orbit__icon--out {
  offset-path: circle(108px at 120px 120px);
  animation-duration: 20s;
  animation-direction: reverse;
}

@keyframes orbit {
  from {
    offset-distance: 0%;
  }
  to {
    offset-distance: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .orbit__icon {
    animation: none;
  }
}

/* Pre-2022 Safari and any other browser without offset-path support: rather
   than every icon piling up at the ring's top (offset-path simply does
   nothing there), drop the orbit geometry entirely for a plain static row —
   still every badge, still legible, just not circling. */
@supports not (offset-path: circle(1px at 0 0)) {
  .orbit {
    height: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 8px;
  }

  .orbit__ring {
    display: none;
  }

  .orbit__center {
    position: static;
    margin-right: 4px;
  }

  .orbit__icon {
    position: static;
    margin: 0;
  }
}

/* ============================================================ ORDER MOCKS */

.orderlist {
  display: flex;
  flex-direction: column;
}

/* Rows enter one at a time (main.js) once the list scrolls into view, like
   a live order feed filling up rather than a static screenshot — same
   idea as MagicUI's AnimatedList. Starts already in its "in" state so
   nothing is missing with JS off; .in is only ever added, never required. */
.orderlist > div {
  padding: 14px 20px;
  border-bottom: 1px solid var(--hairline);
  display: flex;
  align-items: center;
  gap: 12px;
  opacity: 1;
  transform: none;
}

.orderlist.anim-ready > div {
  opacity: 0;
  transform: translateY(-10px) scale(0.98);
  transition:
    opacity 0.4s var(--ease),
    transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.orderlist.anim-ready > div.in {
  opacity: 1;
  transform: none;
}

.orderlist > div:last-child {
  border-bottom: 0;
}

.oid {
  font-weight: 800;
  font-size: 0.86rem;
  font-variant-numeric: tabular-nums;
  width: 52px;
  flex: none;
}

.oname {
  flex: 1;
  min-width: 0;
  font-size: 0.88rem;
  font-weight: 600;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.oamt {
  font-weight: 800;
  font-size: 0.88rem;
  font-variant-numeric: tabular-nums;
}

/* ============================================================ NIGHT BAND */

.night {
  background: var(--night);
  color: var(--night-text);
}

.night h2,
.night .h3,
.night .h4 {
  color: var(--canvas);
}

.night .lede,
.night .muted {
  color: var(--night-mute);
}

.night .eyebrow {
  color: var(--night-mute);
}

.night .flist {
  border-color: var(--night-line);
}

.night .flist div {
  border-color: var(--night-line);
}

.night .flist span {
  color: var(--night-mute);
}

.night .flist b {
  color: var(--canvas);
}

/* KDS board mock */
.kds {
  border-radius: var(--r-lg);
  background: var(--night-raise);
  border: 1px solid var(--night-line);
  overflow: hidden;
}

.kds__bar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 18px;
  border-bottom: 1px solid var(--night-line);
}

.kds__bar b {
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--canvas);
}

.kds__clock {
  margin-left: auto;
  font-variant-numeric: tabular-nums;
  font-weight: 700;
  font-size: 0.86rem;
  color: var(--night-mute);
}

.kds__spot {
  margin: 14px;
  padding: 13px 15px;
  border-radius: var(--r-md);
  background: oklch(0.691 0.161 50.5 / 0.14);
  border: 1px solid oklch(0.691 0.161 50.5 / 0.4);
  display: flex;
  align-items: center;
  gap: 12px;
}

.kds__spot small {
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  display: block;
}

.kds__spot b {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--canvas);
}

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

@media (max-width: 620px) {
  .kds__cols {
    grid-template-columns: minmax(0, 1fr);
  }
  .kds__cols > div:nth-child(n + 3) {
    display: none;
  }
}

.kcol__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 11px;
  border-radius: 10px;
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  margin-bottom: 9px;
}

.kcol__head.k-new {
  background: oklch(0.5 0.09 245 / 0.3);
  color: oklch(0.86 0.06 245);
}

.kcol__head.k-make {
  background: oklch(0.62 0.12 75 / 0.26);
  color: oklch(0.88 0.08 85);
}

.kcol__head.k-done {
  background: oklch(0.5 0.1 155 / 0.28);
  color: oklch(0.86 0.08 155);
}

.kticket {
  background: var(--night);
  border: 1px solid var(--night-line);
  border-radius: var(--r-sm);
  padding: 11px 12px;
  margin-bottom: 8px;
}

.kticket__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 6px;
}

.kticket__top b {
  font-size: 0.83rem;
  font-weight: 800;
  color: var(--canvas);
  font-variant-numeric: tabular-nums;
}

.kticket ul {
  list-style: none;
  padding: 0;
  font-size: 0.74rem;
  color: var(--night-mute);
  font-weight: 600;
  line-height: 1.5;
}

.kchip {
  font-size: 0.63rem;
  font-weight: 800;
  padding: 2px 7px;
  border-radius: var(--r-pill);
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.kchip--late {
  background: oklch(0.577 0.196 25 / 0.24);
  color: oklch(0.82 0.12 25);
}

.kchip--soon {
  background: oklch(0.72 0.14 75 / 0.22);
  color: oklch(0.85 0.1 80);
}

.kchip--ok {
  background: oklch(0.55 0.115 155 / 0.24);
  color: oklch(0.84 0.1 155);
}

.kchip--first {
  background: oklch(0.691 0.161 50.5 / 0.22);
  color: oklch(0.82 0.11 50);
}

/* ============================================================ BENTO */

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

.bento > * {
  background: var(--canvas);
  border: 1px solid var(--hairline);
  border-radius: var(--r-lg);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 9px;
  transition:
    transform 0.25s var(--ease),
    border-color 0.25s var(--ease);
}

.bento > *:hover {
  transform: translateY(-3px);
  border-color: oklch(0.691 0.161 50.5 / 0.45);
}

.b-3 {
  grid-column: span 3;
}
.b-2 {
  grid-column: span 2;
}
.b-4 {
  grid-column: span 4;
}
.b-6 {
  grid-column: span 6;
}

@media (max-width: 900px) {
  .bento {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .b-3,
  .b-2,
  .b-4,
  .b-6 {
    grid-column: span 1;
  }
  .b-wide-m {
    grid-column: span 2 !important;
  }
}

@media (max-width: 560px) {
  .bento {
    grid-template-columns: minmax(0, 1fr);
  }
  .b-wide-m {
    grid-column: span 1 !important;
  }
}

.bento p {
  color: var(--ink-mute);
  font-size: 0.94rem;
  font-weight: 500;
}

.bento .glyph {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: var(--orange-soft);
  color: var(--rust);
  display: grid;
  place-items: center;
  margin-bottom: 4px;
}

.bento .glyph svg {
  width: 18px;
  height: 18px;
}

/* Inline mini-visuals inside bento cards keep the grid from reading uniform */
.qr {
  --s: 7px;
  display: grid;
  grid-template-columns: repeat(7, var(--s));
  gap: 2px;
  margin-top: auto;
  padding-top: 14px;
}

.qr i {
  width: var(--s);
  height: var(--s);
  border-radius: 1px;
  background: var(--hairline);
  display: block;
}

.qr i.f {
  background: var(--ink);
}

.stampcard {
  display: flex;
  gap: 6px;
  margin-top: auto;
  padding-top: 14px;
  flex-wrap: wrap;
}

.stampcard i {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1.5px dashed var(--hairline);
  display: block;
}

.stampcard i.on {
  background: var(--orange-soft);
  border: 1.5px solid var(--orange);
}

.swatches {
  display: flex;
  gap: 7px;
  margin-top: auto;
  padding-top: 14px;
}

.swatches i {
  width: 26px;
  height: 26px;
  border-radius: 8px;
  display: block;
  border: 1px solid oklch(0.259 0.054 250.7 / 0.1);
}

/* ============================================================ PRICING */

.price {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 400px);
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
}

@media (max-width: 900px) {
  .price {
    grid-template-columns: minmax(0, 1fr);
  }
}

.pricecard {
  background: var(--canvas);
  border: 1.5px solid var(--ink);
  border-radius: var(--r-xl);
  padding: 32px;
  box-shadow: var(--shadow-float);
}

.pricecard__amt {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-block: 14px 4px;
}

.pricecard__amt b {
  font-size: 3.6rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.pricecard__amt span {
  color: var(--ink-mute);
  font-weight: 700;
  font-size: 1rem;
}

.pricecard .btn {
  width: 100%;
  margin-top: 22px;
}

.checks {
  list-style: none;
  padding: 0;
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.checks li {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 11px;
  align-items: start;
  font-size: 0.95rem;
  font-weight: 600;
}

.checks svg {
  width: 18px;
  height: 18px;
  color: var(--orange);
  margin-top: 2px;
}

.included {
  columns: 2;
  column-gap: 28px;
  list-style: none;
  padding: 0;
  margin-top: 26px;
}

.included li {
  break-inside: avoid;
  padding: 9px 0;
  border-bottom: 1px solid var(--hairline);
  font-size: 0.93rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 9px;
}

.included li::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--orange);
  flex: none;
}

@media (max-width: 560px) {
  .included {
    columns: 1;
  }
}

/* ============================================================ CTA + FOOTER */

/* Closing block: the same saturated orange gradient the hero's product
   stage sits on, not the navy the rest of the site's dark passages use —
   the site's single boldest, most colourful moment, reserved for the last
   thing an owner sees before they click through. Ink text throughout
   (never white on orange — checked contrast, same rule .btn--primary
   follows) keeps it readable. */
.cta {
  background: linear-gradient(146deg, oklch(0.735 0.152 54), oklch(0.678 0.163 44));
  color: var(--ink);
  border-radius: var(--r-xl);
  padding: clamp(44px, 6.5vw, 82px);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta h2 {
  color: var(--ink);
  max-width: 18ch;
  margin-inline: auto;
  position: relative;
}

.cta p {
  color: oklch(0.259 0.054 250.7 / 0.72);
  max-width: 48ch;
  margin: 20px auto 0;
  position: relative;
}

.cta__btns {
  display: flex;
  gap: 13px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 34px;
  position: relative;
}

/* Terminal: a small "what publishing looks like" moment capping the closing
   CTA — a dark device mock floating on the orange block, same pairing as
   the hero's own product stage. Lines type in via main.js once scrolled
   into view; the no-js/reduced-motion fallback below renders every line
   already-typed with no cursor, so nothing is ever missing without JS. */
.term {
  position: relative;
  z-index: 1;
  max-width: 560px;
  margin: 40px auto 0;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--night);
  box-shadow: var(--shadow-lift);
  text-align: left;
}

.term__bar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: var(--night-raise);
  border-bottom: 1px solid var(--night-line);
}

.term__bar .win__dots i {
  background: var(--night-line);
}

.term__title {
  font-family: ui-monospace, "SF Mono", "Cascadia Code", Menlo, Consolas, monospace;
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--night-mute);
}

.term__body {
  padding: 20px 20px 24px;
  font-family: ui-monospace, "SF Mono", "Cascadia Code", Menlo, Consolas, monospace;
  font-size: 0.86rem;
  line-height: 1.75;
  min-height: 138px;
}

.term__line {
  color: var(--night-text);
  white-space: pre-wrap;
  overflow-wrap: break-word;
}

.term__line.ok {
  color: var(--green);
}

.term__cursor {
  display: inline-block;
  width: 7px;
  height: 1em;
  margin-left: 1px;
  background: var(--orange);
  vertical-align: -2px;
  animation: term-blink 0.9s step-end infinite;
}

@keyframes term-blink {
  50% {
    opacity: 0;
  }
}

/* No-js / reduced-motion: every line already there, statically, no cursor. */
.term__body[data-static] .term__cursor {
  display: none;
}

.foot {
  padding-block: 56px 40px;
  border-top: 1px solid var(--hairline);
}

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

@media (max-width: 800px) {
  .foot__grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }
}

.foot__grid img {
  height: 28px;
  width: auto;
  margin-bottom: 14px;
}

.foot h5 {
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 14px;
}

.foot ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.foot a {
  font-size: 0.93rem;
  font-weight: 600;
  color: var(--ink-mute);
  transition: color 0.16s var(--ease);
}

.foot a:hover {
  color: var(--ink);
}

.foot__base {
  margin-top: 44px;
  padding-top: 24px;
  border-top: 1px solid var(--hairline);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.86rem;
  color: var(--ink-mute);
  font-weight: 600;
}

/* ============================================================ MOTION */

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

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

.reveal[data-d="1"] {
  transition-delay: 0.09s;
}
.reveal[data-d="2"] {
  transition-delay: 0.18s;
}
.reveal[data-d="3"] {
  transition-delay: 0.27s;
}

/* Bars animate from the baseline once the chart scrolls in */
.bars i {
  transform: scaleY(0.12);
  transition: transform 0.85s var(--ease);
}

.in .bars i,
.bars.in i {
  transform: scaleY(1);
}

.bars i:nth-child(1) {
  transition-delay: 0.04s;
}
.bars i:nth-child(2) {
  transition-delay: 0.09s;
}
.bars i:nth-child(3) {
  transition-delay: 0.14s;
}
.bars i:nth-child(4) {
  transition-delay: 0.19s;
}
.bars i:nth-child(5) {
  transition-delay: 0.24s;
}
.bars i:nth-child(6) {
  transition-delay: 0.29s;
}
.bars i:nth-child(7) {
  transition-delay: 0.34s;
}

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

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

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

  .bars i {
    transform: scaleY(1);
  }

  .ticker__track {
    animation: none;
    transform: none;
  }

  #preloader {
    display: none !important;
  }
}

/* ============================================================ PRELOADER
   Hand-rolled — not a copy of any paid/licensed component. A greeting
   cycles through a few languages, each word sliding up through a masked
   window (one continuous upward motion, not a fade), before settling on
   the wordmark and lifting the whole panel away like a curtain. Shown only
   on a fresh session (sessionStorage) and never for prefers-reduced-motion
   or with JS off — see the inline script right after #preloader in
   index.html, which is what actually reveals it; this file only styles it. */

#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--night);
  transition: transform 0.4s cubic-bezier(0.76, 0, 0.24, 1);
}

/* An ID selector beats the browser's own `[hidden] { display: none }` UA
   rule on specificity alone, so without this, #preloader's `display: flex`
   above wins even while `hidden` is set — every repeat visit this
   session (see the inline script's sessionStorage check, which returns
   before ever un-hiding or running the word sequence) would otherwise show
   a permanently blank navy box that's never revealed and never removed. */
#preloader[hidden] {
  display: none;
}

#preloader.is-leaving {
  transform: translateY(-100%);
}

body.preloading {
  overflow: hidden;
}

.preloader__mask {
  overflow: hidden;
  /* font-size/line-height live here, not on .preloader__word, so the em
     height below resolves against the same size the word actually renders
     at — otherwise it resolves against the inherited body font-size (17px)
     instead of the word's much larger one, clipping almost the whole word. */
  font-size: clamp(2.2rem, 7vw, 4.4rem);
  line-height: 1.2;
  height: 1.2em;
}

.preloader__word {
  display: block;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--canvas);
  transform: translateY(100%);
  transition: transform 0.28s cubic-bezier(0.65, 0, 0.35, 1);
}

.preloader__word.is-brand {
  color: var(--orange);
}
