/* =========================================================================
   Ordelo — marketing site
   Design tokens mirror the app (src/theme/tokens.scss) so the site and the
   product read as one brand. Edit colours here in one place.
   ========================================================================= */

:root {
  /* surfaces */
  --bg: #f5f0e8;
  --bg-secondary: #efe8db;
  --surface: #fcfaf5;
  --surface-raised: #ffffff;

  /* brand */
  --brand: #1f3d2b;
  --brand-deep: #13251a;
  --on-brand: #f5f0e8;
  --accent: #c8a24b;
  --accent-strong: #b0892f;
  --secondary-accent: #a8431f;

  /* logo mark */
  --logo-ring: #234a34;
  --logo-gold: #d6a23c;

  /* text */
  --text-primary: #13251a;
  --text-secondary: #4a5a4e;
  --text-tertiary: #7a857a;

  /* borders */
  --border: #e2d9c8;
  --border-strong: #d3c7b0;

  /* status (used in the hero order board) */
  --status-new: #e08a2b;
  --status-new-bg: #fbebd6;
  --status-preparing: #c8a24b;
  --status-preparing-bg: #f6ebd2;
  --status-ready: #2f8f5b;
  --status-ready-bg: #e3f1e8;

  /* radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 14px;
  --radius-xl: 20px;
  --radius-2xl: 28px;

  /* layout */
  --maxw: 1140px;
  --gutter: clamp(20px, 5vw, 48px);
  --shadow-sm: 0 1px 2px rgba(19, 37, 26, 0.06), 0 2px 8px rgba(19, 37, 26, 0.05);
  --shadow-md: 0 8px 24px rgba(19, 37, 26, 0.10);
  --shadow-lg: 0 24px 60px rgba(19, 37, 26, 0.16);

  --font-sans: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
}

/* ----------------------------------------------------------------- reset */
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--text-primary);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img,
svg {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
  text-decoration: none;
}
h1,
h2,
h3,
h4 {
  margin: 0;
  line-height: 1.12;
  letter-spacing: -0.02em;
  font-weight: 700;
}
p {
  margin: 0;
}
ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* --------------------------------------------------------------- helpers */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.section {
  padding-block: clamp(64px, 9vw, 120px);
}
.eyebrow {
  display: inline-block;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-strong);
  margin-bottom: 14px;
}
.section-head {
  max-width: 660px;
  margin-bottom: clamp(36px, 5vw, 60px);
}
.section-head.center {
  margin-inline: auto;
  text-align: center;
}
.section-title {
  font-size: clamp(28px, 4.4vw, 44px);
}
.section-sub {
  margin-top: 16px;
  font-size: clamp(16px, 1.6vw, 18.5px);
  color: var(--text-secondary);
}
.text-accent {
  color: var(--accent-strong);
}

/* ------------------------------------------------------------- buttons */
.btn {
  --b-bg: var(--brand);
  --b-fg: var(--on-brand);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 14px 24px;
  border-radius: 999px;
  font-size: 15.5px;
  font-weight: 650;
  border: 1.5px solid transparent;
  background: var(--b-bg);
  color: var(--b-fg);
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  white-space: nowrap;
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn--accent {
  --b-bg: var(--accent);
  --b-fg: var(--brand-deep);
}
.btn--ghost {
  --b-bg: transparent;
  --b-fg: var(--brand);
  border-color: var(--border-strong);
}
.btn--ghost:hover {
  background: var(--surface);
}
.btn--light {
  --b-bg: var(--on-brand);
  --b-fg: var(--brand-deep);
}
.btn--block {
  width: 100%;
}
.btn svg {
  width: 18px;
  height: 18px;
}

/* store badges */
.badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  border-radius: 14px;
  background: var(--brand-deep);
  color: #fff;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.badge:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.badge svg {
  width: 24px;
  height: 24px;
  flex: none;
}
.badge__small {
  font-size: 10.5px;
  opacity: 0.78;
  line-height: 1.1;
  letter-spacing: 0.02em;
}
.badge__big {
  font-size: 16px;
  font-weight: 650;
  line-height: 1.1;
}
.badge__big span {
  display: block;
}

/* --------------------------------------------------------------- logo */
.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 750;
  font-size: 19px;
  letter-spacing: -0.02em;
  color: var(--brand-deep);
}
.logo__mark {
  width: 30px;
  height: 30px;
  flex: none;
}

/* --------------------------------------------------------------- header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in srgb, var(--bg) 82%, transparent);
  backdrop-filter: saturate(1.4) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.site-header.is-scrolled {
  border-bottom-color: var(--border);
  background: color-mix(in srgb, var(--bg) 92%, transparent);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 72px;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 30px;
}
.nav__links a {
  font-size: 15px;
  font-weight: 550;
  color: var(--text-secondary);
  transition: color 0.15s ease;
}
.nav__links a:hover {
  color: var(--brand);
}
.nav__cta {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav__toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border-strong);
  border-radius: 12px;
  background: var(--surface);
  cursor: pointer;
  align-items: center;
  justify-content: center;
}
.nav__toggle svg {
  width: 22px;
  height: 22px;
}

/* ---------------------------------------------------------------- hero */
.hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(48px, 7vw, 96px);
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
.hero__pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px 7px 8px;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--border);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 22px;
}
.hero__pill b {
  background: var(--accent);
  color: var(--brand-deep);
  border-radius: 999px;
  padding: 2px 10px;
  font-size: 12px;
}
.hero__title {
  font-size: clamp(36px, 6vw, 62px);
  line-height: 1.04;
}
.hero__sub {
  margin-top: 22px;
  font-size: clamp(16.5px, 1.8vw, 20px);
  color: var(--text-secondary);
  max-width: 520px;
}
.hero__actions {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}
.hero__note {
  margin-top: 18px;
  font-size: 13.5px;
  color: var(--text-tertiary);
}

/* hero "app" mock — a live order board built in CSS */
.mock {
  position: relative;
  justify-self: center;
  width: min(100%, 430px);
}
.mock__glow {
  position: absolute;
  inset: -12% -8% -8% -8%;
  background: radial-gradient(
      60% 50% at 70% 20%,
      rgba(200, 162, 75, 0.35),
      transparent 70%
    ),
    radial-gradient(50% 60% at 20% 90%, rgba(31, 61, 43, 0.25), transparent 70%);
  filter: blur(8px);
  z-index: 0;
}
.board {
  position: relative;
  z-index: 1;
  background: var(--surface-raised);
  border: 1px solid var(--border);
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-lg);
  padding: 18px;
  transform: rotate(-1.2deg);
}
.board__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.board__title {
  display: flex;
  align-items: center;
  gap: 9px;
  font-weight: 700;
  font-size: 15px;
}
.board__live {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11.5px;
  font-weight: 650;
  color: var(--status-ready);
}
.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--status-ready);
  box-shadow: 0 0 0 0 rgba(47, 143, 91, 0.5);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(47, 143, 91, 0.5);
  }
  70% {
    box-shadow: 0 0 0 8px rgba(47, 143, 91, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(47, 143, 91, 0);
  }
}
.cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.col__head {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-tertiary);
  margin-bottom: 8px;
  padding-inline: 2px;
}
.ticket {
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 3px solid var(--c, var(--border-strong));
  border-radius: var(--radius-md);
  padding: 9px 10px;
  margin-bottom: 8px;
  box-shadow: var(--shadow-sm);
}
.ticket--new {
  --c: var(--status-new);
}
.ticket--prep {
  --c: var(--status-preparing);
}
.ticket--ready {
  --c: var(--status-ready);
}
.ticket__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 5px;
}
.ticket__id {
  font-weight: 700;
  font-size: 12.5px;
}
.ticket__time {
  font-size: 10.5px;
  color: var(--text-tertiary);
}
.ticket__items {
  font-size: 11px;
  color: var(--text-secondary);
  line-height: 1.35;
}
.ticket__tag {
  display: inline-block;
  margin-top: 6px;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 2px 7px;
  border-radius: 999px;
  background: var(--tagbg, var(--bg-secondary));
  color: var(--tagfg, var(--text-secondary));
}
.tag--dinein {
  --tagbg: var(--status-new-bg);
  --tagfg: var(--secondary-accent);
}
.tag--delivery {
  --tagbg: var(--status-ready-bg);
  --tagfg: var(--status-completed, #3a6b4e);
}

/* floating stat chip on the mock */
.mock__chip {
  position: absolute;
  z-index: 2;
  background: var(--brand-deep);
  color: #fff;
  border-radius: 16px;
  padding: 12px 16px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
}
.mock__chip--tr {
  top: -22px;
  right: -10px;
  transform: rotate(2deg);
}
.mock__chip--bl {
  bottom: -20px;
  left: -16px;
  transform: rotate(-2deg);
}
.mock__chip .k {
  font-size: 11px;
  opacity: 0.72;
}
.mock__chip .v {
  font-size: 18px;
  font-weight: 750;
}
.mock__chip .ic {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: rgba(214, 162, 60, 0.22);
  color: var(--accent);
  display: grid;
  place-items: center;
}
.mock__chip .ic svg {
  width: 18px;
  height: 18px;
}

/* --------------------------------------------------------- trust strip */
.trust {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-secondary);
}
.trust__row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 5vw, 56px);
  padding-block: 28px;
}
.trust__item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
}
.trust__item svg {
  width: 20px;
  height: 20px;
  color: var(--accent-strong);
}

/* ---------------------------------------------------------- why / value */
.why {
  background: var(--surface);
}
.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.value {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 28px 26px;
}
.value h3 {
  font-size: 19px;
  margin-bottom: 10px;
}
.value p {
  color: var(--text-secondary);
  font-size: 15px;
}
.value .num {
  font-size: 13px;
  font-weight: 800;
  color: var(--accent-strong);
  margin-bottom: 14px;
}

/* ------------------------------------------------------------ features */
.feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 6vw, 80px);
  align-items: center;
  padding-block: clamp(40px, 6vw, 72px);
}
.feature + .feature {
  border-top: 1px solid var(--border);
}
.feature--rev .feature__media {
  order: -1;
}
.feature__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(150deg, var(--brand), var(--brand-deep));
  color: var(--accent);
  margin-bottom: 22px;
  box-shadow: var(--shadow-sm);
}
.feature__icon svg {
  width: 26px;
  height: 26px;
}
.feature h3 {
  font-size: clamp(24px, 3vw, 32px);
}
.feature__lead {
  margin-top: 14px;
  font-size: 17px;
  color: var(--text-secondary);
}
.feature__list {
  margin-top: 22px;
  display: grid;
  gap: 12px;
}
.feature__list li {
  display: flex;
  gap: 11px;
  font-size: 15px;
  color: var(--text-primary);
}
.feature__list svg {
  width: 20px;
  height: 20px;
  flex: none;
  color: var(--status-ready);
  margin-top: 2px;
}

/* a soft card used as the feature visual */
.panel {
  background: var(--surface-raised);
  border: 1px solid var(--border);
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-md);
  padding: 24px;
}
.panel__row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px;
  border-radius: var(--radius-md);
  background: var(--surface);
  border: 1px solid var(--border);
}
.panel__row + .panel__row {
  margin-top: 10px;
}
.panel__ic {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: var(--bg-secondary);
  color: var(--brand);
  flex: none;
}
.panel__ic svg {
  width: 20px;
  height: 20px;
}
.panel__t {
  font-weight: 650;
  font-size: 14.5px;
}
.panel__s {
  font-size: 12.5px;
  color: var(--text-tertiary);
}
.panel__amt {
  margin-left: auto;
  font-weight: 750;
  font-size: 15px;
  color: var(--brand);
}
.panel__bars {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  height: 130px;
  padding: 8px 4px 0;
}
.panel__bar {
  flex: 1;
  border-radius: 8px 8px 4px 4px;
  background: linear-gradient(var(--brand), var(--brand-deep));
}
.panel__bar:nth-child(odd) {
  background: linear-gradient(var(--accent), var(--accent-strong));
}

/* ------------------------------------------------------------- how-to */
.how {
  background: var(--brand-deep);
  color: var(--on-brand);
}
.how .section-title {
  color: #fff;
}
.how .section-sub {
  color: rgba(245, 240, 232, 0.72);
}
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.step {
  position: relative;
  padding: 30px 26px;
  border-radius: var(--radius-xl);
  background: rgba(245, 240, 232, 0.05);
  border: 1px solid rgba(245, 240, 232, 0.12);
}
.step__n {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-weight: 800;
  background: var(--accent);
  color: var(--brand-deep);
  margin-bottom: 18px;
}
.step h3 {
  color: #fff;
  font-size: 20px;
  margin-bottom: 10px;
}
.step p {
  color: rgba(245, 240, 232, 0.72);
  font-size: 15px;
}

/* ------------------------------------------------------------ pricing */
.pricing {
  background: var(--surface);
}
.toggle {
  display: inline-flex;
  margin: 8px auto 0;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 4px;
  gap: 4px;
}
.toggle button {
  border: 0;
  background: transparent;
  font: inherit;
  font-weight: 600;
  font-size: 14px;
  color: var(--text-secondary);
  padding: 8px 18px;
  border-radius: 999px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.toggle button.is-active {
  background: var(--surface-raised);
  color: var(--brand);
  box-shadow: var(--shadow-sm);
}
.toggle .save {
  font-size: 11px;
  font-weight: 700;
  background: var(--status-ready-bg);
  color: var(--status-ready);
  padding: 1px 7px;
  border-radius: 999px;
}
.plans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 44px;
  align-items: start;
}
.plan {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-2xl);
  padding: 30px 28px;
  display: flex;
  flex-direction: column;
}
.plan--featured {
  background: var(--surface-raised);
  border-color: var(--brand);
  box-shadow: var(--shadow-lg);
  position: relative;
}
.plan__flag {
  position: absolute;
  top: -13px;
  left: 28px;
  background: var(--accent);
  color: var(--brand-deep);
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 5px 13px;
  border-radius: 999px;
}
.plan__name {
  font-size: 20px;
}
.plan__desc {
  margin-top: 8px;
  font-size: 14px;
  color: var(--text-secondary);
  min-height: 42px;
}
.plan__price {
  margin-top: 20px;
  display: flex;
  align-items: baseline;
  gap: 6px;
}
.plan__price .amt {
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -0.03em;
}
.plan__price .per {
  font-size: 14px;
  color: var(--text-tertiary);
}
.plan__comm {
  margin-top: 10px;
  font-size: 13px;
  color: var(--text-secondary);
}
.plan__comm b {
  color: var(--brand);
}
.plan .btn {
  margin-top: 22px;
}
.plan__feats {
  margin-top: 24px;
  display: grid;
  gap: 12px;
}
.plan__feats li {
  display: flex;
  gap: 10px;
  font-size: 14.5px;
  color: var(--text-secondary);
}
.plan__feats svg {
  width: 19px;
  height: 19px;
  flex: none;
  color: var(--status-ready);
  margin-top: 1px;
}
.pricing__foot {
  margin-top: 28px;
  text-align: center;
  font-size: 14px;
  color: var(--text-tertiary);
}

/* ------------------------------------------------------- commission note */
.commission {
  margin-top: 40px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 24px 26px;
}
.commission svg {
  width: 28px;
  height: 28px;
  color: var(--accent-strong);
  flex: none;
}
.commission h4 {
  font-size: 17px;
  margin-bottom: 6px;
}
.commission p {
  font-size: 14.5px;
  color: var(--text-secondary);
}

/* --------------------------------------------------------- platforms */
.platforms__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}
.plat-list {
  display: grid;
  gap: 16px;
  margin-top: 26px;
}
.plat {
  display: flex;
  gap: 14px;
  align-items: center;
}
.plat__ic {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--brand);
  flex: none;
}
.plat__ic svg {
  width: 24px;
  height: 24px;
}
.plat b {
  font-size: 16px;
}
.plat p {
  font-size: 14px;
  color: var(--text-secondary);
}

/* ----------------------------------------------------------------- faq */
.faq {
  background: var(--surface);
}
.faq__grid {
  display: grid;
  gap: 14px;
  max-width: 820px;
  margin-inline: auto;
}
details.qa {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 4px 22px;
  transition: border-color 0.15s ease;
}
details.qa[open] {
  border-color: var(--border-strong);
  background: var(--surface);
}
.qa summary {
  list-style: none;
  cursor: pointer;
  font-weight: 650;
  font-size: 16.5px;
  padding: 18px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.qa summary::-webkit-details-marker {
  display: none;
}
.qa summary .chev {
  width: 22px;
  height: 22px;
  flex: none;
  color: var(--text-tertiary);
  transition: transform 0.2s ease;
}
.qa[open] summary .chev {
  transform: rotate(180deg);
}
.qa p {
  padding: 0 0 20px;
  color: var(--text-secondary);
  font-size: 15.5px;
}

/* -------------------------------------------------------------- cta band */
.cta {
  padding-block: clamp(56px, 8vw, 100px);
}
.cta__card {
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg, var(--brand), var(--brand-deep));
  border-radius: var(--radius-2xl);
  padding: clamp(40px, 6vw, 72px);
  text-align: center;
  color: var(--on-brand);
  box-shadow: var(--shadow-lg);
}
.cta__card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
      40% 60% at 85% 10%,
      rgba(200, 162, 75, 0.3),
      transparent 70%
    ),
    radial-gradient(40% 80% at 0% 100%, rgba(168, 67, 31, 0.22), transparent 65%);
}
.cta__card > * {
  position: relative;
}
.cta__card h2 {
  color: #fff;
  font-size: clamp(28px, 4.5vw, 46px);
}
.cta__card p {
  margin: 18px auto 0;
  max-width: 520px;
  color: rgba(245, 240, 232, 0.8);
  font-size: 18px;
}
.cta__actions {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

/* -------------------------------------------------------------- footer */
.footer {
  background: var(--brand-deep);
  color: rgba(245, 240, 232, 0.7);
  padding-block: 60px 32px;
}
.footer__top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
}
.footer .logo {
  color: #fff;
}
.footer__blurb {
  margin-top: 16px;
  font-size: 14px;
  max-width: 280px;
  color: rgba(245, 240, 232, 0.62);
}
.footer h5 {
  color: #fff;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 0 16px;
}
.footer__links {
  display: grid;
  gap: 11px;
}
.footer__links a {
  font-size: 14.5px;
  transition: color 0.15s ease;
}
.footer__links a:hover {
  color: #fff;
}
.footer__bottom {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid rgba(245, 240, 232, 0.12);
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
  align-items: center;
  font-size: 13.5px;
}
.footer__social {
  display: flex;
  gap: 12px;
}
.footer__social a {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: rgba(245, 240, 232, 0.08);
  transition: background 0.15s ease;
}
.footer__social a:hover {
  background: rgba(245, 240, 232, 0.16);
}
.footer__social svg {
  width: 18px;
  height: 18px;
  color: #fff;
}

/* --------------------------------------------------------- responsive */
@media (max-width: 960px) {
  .hero__grid,
  .feature,
  .platforms__grid {
    grid-template-columns: 1fr;
  }
  .feature--rev .feature__media {
    order: 0;
  }
  .mock {
    margin-top: 28px;
  }
  .value-grid,
  .steps,
  .plans {
    grid-template-columns: 1fr;
  }
  .plan--featured {
    order: -1;
  }
  .footer__top {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 720px) {
  .nav__links,
  .nav__cta .btn {
    display: none;
  }
  .nav__toggle {
    display: inline-flex;
  }
  /* mobile menu panel */
  .nav.is-open .nav__links {
    display: flex;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 16px var(--gutter) 24px;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-md);
  }
  .nav.is-open .nav__links a {
    padding: 12px 4px;
    font-size: 17px;
    border-bottom: 1px solid var(--border);
  }
  .footer__top {
    grid-template-columns: 1fr;
  }
  .commission {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
    animation: none !important;
    transition: none !important;
  }
}
