/* ============================================================
   Apollo 1 Catalogue Publishing Company
   Global Stylesheet
   ============================================================ */

/* ---------- 1. Design Tokens ---------- */
:root {
  /* Brand navy */
  --navy-900: #060d33;
  --navy-800: #0a1445;
  --navy-700: #0e1b57;
  --navy-600: #142269;
  --navy-500: #1b2c80;

  /* Brand gold */
  --gold-600: #d98e00;
  --gold-500: #f5a623;
  --gold-400: #ffb930;
  --gold-300: #ffc857;

  /* Accents */
  --purple-700: #4c1d95;
  --purple-600: #6b21a8;
  --purple-500: #8b2fc9;
  --magenta-500: #b8189b;
  --teal-600: #0d9488;
  --teal-500: #14a89a;
  --orange-500: #f2711c;
  --blue-600: #1565c0;
  --blue-500: #1e88e5;
  --red-500: #d93636;

  /* Neutrals */
  --ink-900: #101426;
  --ink-700: #333c52;
  --ink-800: #1c2438;
  --ink-600: #4a5468;
  --ink-500: #6b7488;
  --line: #e3e7f0;
  --surface: #ffffff;
  --surface-alt: #f6f7fb;
  --surface-tint: #eef1f8;

  /* Typography */
  --font-head: 'Barlow Condensed', 'Oswald', 'Arial Narrow', sans-serif;
  --font-body: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;

  /* Metrics */
  --wrap: 1180px;
  --radius-sm: 6px;
  --radius: 10px;
  --radius-lg: 16px;
  --shadow-sm: 0 2px 8px rgba(16, 20, 38, .06);
  --shadow: 0 8px 26px rgba(16, 20, 38, .10);
  --shadow-lg: 0 18px 48px rgba(16, 20, 38, .16);
  --nav-h: 74px;
  --ease: cubic-bezier(.22, .61, .36, 1);
}

/* ---------- 2. Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: calc(var(--nav-h) + 16px); }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-800);
  background: var(--surface);
  overflow-x: hidden;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  margin: 0;
  line-height: 1.08;
  letter-spacing: .01em;
  font-weight: 700;
  text-transform: uppercase;
}
p { margin: 0; }
::selection { background: var(--gold-400); color: var(--navy-800); }

/* ---------- 3. Layout Helpers ---------- */
.wrap { width: min(100% - 40px, var(--wrap)); margin-inline: auto; }
.section { padding: 68px 0; }
.section--tight { padding: 48px 0; }
.section--cta { padding: 34px 0 8px; }
.center { text-align: center; }

/* Ornamental section heading with side rules */
.sec-head {
  display: flex; align-items: center; justify-content: center;
  gap: 18px; margin-bottom: 40px;
}
.sec-head h2 {
  font-size: clamp(1.5rem, 3.2vw, 2.15rem);
  color: var(--navy-800);
  letter-spacing: .04em;
  white-space: nowrap;
}
.sec-head::before, .sec-head::after {
  content: ""; height: 2px; flex: 1 1 auto; max-width: 190px;
  background: linear-gradient(90deg, transparent, var(--navy-500));
  position: relative;
}
.sec-head::after { background: linear-gradient(270deg, transparent, var(--navy-500)); }
.sec-head--light h2 { color: #fff; }
.sec-head--light::before { background: linear-gradient(90deg, transparent, rgba(255,255,255,.6)); }
.sec-head--light::after { background: linear-gradient(270deg, transparent, rgba(255,255,255,.6)); }

/* ---------- 4. Buttons ---------- */
.btn {
  --btn-bg: var(--gold-500);
  --btn-fg: #12183a;
  display: inline-flex; align-items: center; gap: 10px;
  padding: 13px 24px;
  background: var(--btn-bg); color: var(--btn-fg);
  font-family: var(--font-head);
  font-size: .95rem; font-weight: 700; letter-spacing: .09em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), filter .25s var(--ease);
  white-space: nowrap;
}
.btn svg { width: 16px; height: 16px; transition: transform .25s var(--ease); }
.btn:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(0,0,0,.22); filter: brightness(1.06); }
.btn:hover svg { transform: translateX(4px); }
.btn:active { transform: translateY(0); }
.btn:focus-visible { outline: 3px solid var(--gold-300); outline-offset: 3px; }

.btn--ghost { --btn-bg: transparent; --btn-fg: #fff; border: 1.5px solid rgba(255,255,255,.55); }
.btn--ghost:hover { background: rgba(255,255,255,.1); }
.btn--purple  { --btn-bg: var(--purple-600); --btn-fg: #fff; }
.btn--teal    { --btn-bg: var(--teal-600);   --btn-fg: #fff; }
.btn--orange  { --btn-bg: var(--orange-500); --btn-fg: #fff; }
.btn--blue    { --btn-bg: var(--blue-600);   --btn-fg: #fff; }
.btn--navy    { --btn-bg: var(--navy-700);   --btn-fg: #fff; }
.btn--sm { padding: 10px 18px; font-size: .8rem; }
.btn--lg { padding: 16px 32px; font-size: 1rem; }

/* ---------- 5. Header / Nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 900;
  background: var(--navy-800);
  border-bottom: 1px solid rgba(255,255,255,.07);
  transition: box-shadow .3s var(--ease), background .3s var(--ease);
}
.site-header.is-stuck { box-shadow: 0 6px 24px rgba(0,0,0,.35); background: rgba(8,17,60,.97); backdrop-filter: blur(10px); }
.nav {
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; height: var(--nav-h);
}
.nav__logo { display: flex; align-items: center; flex: 0 0 auto; }
.nav__logo img { height: 46px; width: auto; }
.nav__menu { display: flex; align-items: center; gap: 26px; }
.nav__link {
  font-family: var(--font-head);
  font-size: .84rem; font-weight: 600; letter-spacing: .1em;
  text-transform: uppercase; color: rgba(255,255,255,.85);
  padding: 6px 0; position: relative;
  transition: color .22s var(--ease);
}
.nav__link::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px;
  height: 2px; background: var(--gold-500);
  transform: scaleX(0); transform-origin: center;
  transition: transform .28s var(--ease);
}
.nav__link:hover, .nav__link.is-active { color: var(--gold-400); }
.nav__link:hover::after, .nav__link.is-active::after { transform: scaleX(1); }
.nav__cta { flex: 0 0 auto; }
.nav__burger {
  display: none; width: 42px; height: 42px; border-radius: 8px;
  align-items: center; justify-content: center;
  background: rgba(255,255,255,.08);
}
.nav__burger span {
  display: block; width: 20px; height: 2px; background: #fff; position: relative;
  transition: background .2s var(--ease);
}
.nav__burger span::before, .nav__burger span::after {
  content: ""; position: absolute; left: 0; width: 20px; height: 2px; background: #fff;
  transition: transform .3s var(--ease), top .3s var(--ease);
}
.nav__burger span::before { top: -6px; }
.nav__burger span::after  { top: 6px; }
.nav__burger.is-open span { background: transparent; }
.nav__burger.is-open span::before { top: 0; transform: rotate(45deg); }
.nav__burger.is-open span::after  { top: 0; transform: rotate(-45deg); }

/* ---------- 6. Hero ---------- */
.hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(120% 100% at 85% 40%, rgba(80,40,140,.55) 0%, transparent 60%),
    linear-gradient(120deg, #070f3b 0%, #0b1550 45%, #1a1560 75%, #2a1660 100%);
  color: #fff;
}
.hero::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(60% 60% at 20% 20%, rgba(255,255,255,.05), transparent 70%);
  pointer-events: none;
}
.hero__grid {
  display: grid; grid-template-columns: 1fr 1.05fr;
  align-items: center; gap: 30px;
  min-height: 470px;
}
.hero__copy { padding: 56px 0; position: relative; z-index: 3; }
.hero__title {
  font-size: clamp(2.4rem, 5.6vw, 3.6rem);
  line-height: 1.02; letter-spacing: .005em;
}
.hero__title span { display: block; }
.hero__title .accent { color: var(--gold-400); }
.hero__rule {
  display: flex; align-items: center; gap: 8px;
  margin: 22px 0 18px; max-width: 330px;
}
.hero__rule::before { content: ""; height: 2px; flex: 1; background: linear-gradient(90deg, rgba(255,255,255,.75), rgba(255,255,255,.15)); }
.hero__rule i { width: 8px; height: 8px; background: var(--gold-400); transform: rotate(45deg); }
.hero__brand {
  font-family: var(--font-head); font-size: clamp(1.3rem, 2.6vw, 1.75rem);
  font-weight: 600; letter-spacing: .06em; text-transform: uppercase;
}
.hero__tag {
  font-family: var(--font-head); font-size: 1rem; letter-spacing: .12em;
  text-transform: uppercase; color: var(--gold-400); font-weight: 600;
  padding-bottom: 12px; margin-bottom: 20px;
  border-bottom: 2px solid rgba(245,166,35,.35); display: inline-block;
}
.hero__lede { max-width: 430px; color: rgba(255,255,255,.86); font-size: 1rem; }
.hero__btns { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }

.hero__visual {
  position: relative; align-self: stretch; min-height: 470px;
  /* bleed to the right edge of the viewport, like the mockup */
  margin-right: calc(-1 * (100vw - min(100vw - 40px, var(--wrap))) / 2);
}
.hero__photo {
  position: absolute; inset: 0;
  background: url("../img/hero-office.jpg") center/cover no-repeat;
}
.hero__photo::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, #0b1550 0%, rgba(11,21,80,.55) 22%, rgba(11,21,80,0) 55%);
}
.hero__badge {
  position: absolute; left: -58px; top: 50%; transform: translateY(-50%);
  width: clamp(120px, 13vw, 165px); z-index: 4;
  filter: drop-shadow(0 10px 26px rgba(0,0,0,.45));
  animation: floaty 6s ease-in-out infinite;
}
@keyframes floaty { 0%,100% { transform: translateY(-50%); } 50% { transform: translateY(-58%); } }

/* ---------- 7. Feature Strip ---------- */
.strip { background: var(--surface); border-bottom: 1px solid var(--line); }
.strip__grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  padding: 26px 0;
}
.strip__item {
  display: flex; align-items: center; gap: 14px;
  padding: 6px 22px;
  border-right: 1px solid var(--line);
}
.strip__item:last-child { border-right: 0; }
.strip__ico {
  flex: 0 0 auto; width: 52px; height: 52px; border-radius: 50%;
  display: grid; place-items: center; color: #fff;
  box-shadow: var(--shadow-sm);
}
.strip__ico svg { width: 24px; height: 24px; }
.strip__item:nth-child(1) .strip__ico { background: linear-gradient(140deg, var(--purple-600), var(--purple-700)); }
.strip__item:nth-child(2) .strip__ico { background: linear-gradient(140deg, var(--blue-500), #0d47a1); }
.strip__item:nth-child(3) .strip__ico { background: linear-gradient(140deg, var(--teal-500), #0b7a70); }
.strip__item:nth-child(4) .strip__ico { background: linear-gradient(140deg, var(--gold-400), var(--gold-600)); }
.strip__t {
  font-family: var(--font-head); font-size: .95rem; font-weight: 700;
  letter-spacing: .07em; text-transform: uppercase; color: var(--navy-800);
}
.strip__d { font-size: .82rem; color: var(--ink-500); line-height: 1.4; }

/* ---------- 8. Journey Steps ---------- */
.journey { background: var(--surface-alt); }
.steps {
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: 4px; align-items: start;
}
.step { position: relative; text-align: center; padding: 0 8px; }
.step__card {
  position: relative; width: 96px; height: 76px; margin: 8px auto 16px;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  display: grid; place-items: center; box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.step:hover .step__card { transform: translateY(-6px); box-shadow: var(--shadow); }
.step__card svg { width: 40px; height: 40px; }
.step__n {
  position: absolute; top: -14px; left: -14px;
  width: 30px; height: 30px; border-radius: 50%;
  display: grid; place-items: center; color: #fff;
  font-family: var(--font-head); font-weight: 700; font-size: .95rem;
  box-shadow: 0 4px 10px rgba(0,0,0,.2);
}
.step:nth-child(1) .step__n { background: var(--purple-600); }
.step:nth-child(1) .step__card svg { color: var(--purple-600); }
.step:nth-child(3) .step__n { background: var(--teal-600); }
.step:nth-child(3) .step__card svg { color: var(--teal-600); }
.step:nth-child(5) .step__n { background: var(--orange-500); }
.step:nth-child(5) .step__card svg { color: var(--orange-500); }
.step:nth-child(7) .step__n { background: var(--blue-600); }
.step:nth-child(7) .step__card svg { color: var(--blue-600); }
.step:nth-child(9) .step__n { background: var(--red-500); }
.step:nth-child(9) .step__card svg { color: var(--red-500); }
.step__t {
  font-family: var(--font-head); font-size: .88rem; font-weight: 700;
  letter-spacing: .07em; text-transform: uppercase; color: var(--navy-800);
  margin-bottom: 8px;
}
.step__d { font-size: .8rem; color: var(--ink-500); line-height: 1.5; }
.step-sep {
  align-self: center; margin-top: -46px;
  color: var(--red-500); font-size: 1.4rem; font-weight: 700; text-align: center;
  opacity: .75;
}
.steps--with-sep { grid-template-columns: 1fr 26px 1fr 26px 1fr 26px 1fr 26px 1fr; }

/* ---------- 9. CTA Bars ---------- */
.ctabar {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
  padding: 24px 34px; border-radius: var(--radius);
  background: linear-gradient(90deg, #4c1d95 0%, #7b1fa2 45%, #b8189b 100%);
  color: #fff; box-shadow: var(--shadow);
}
.ctabar__left { display: flex; align-items: center; gap: 18px; }
.ctabar__ico { flex: 0 0 auto; width: 40px; height: 40px; color: var(--gold-400); }
.ctabar h3 { font-size: 1.35rem; letter-spacing: .03em; }
.ctabar p { font-size: .9rem; color: rgba(255,255,255,.85); margin-top: 4px; }

/* ---------- 10. Service Cards ---------- */
.cards {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px;
}
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px 22px 26px; text-align: center;
  display: flex; flex-direction: column; align-items: center;
  box-shadow: var(--shadow-sm);
  transition: transform .32s var(--ease), box-shadow .32s var(--ease), border-color .32s var(--ease);
  position: relative; overflow: hidden;
}
.card::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 4px;
  background: var(--accent, var(--purple-600));
  transform: scaleX(0); transform-origin: left;
  transition: transform .35s var(--ease);
}
.card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: transparent; }
.card:hover::before { transform: scaleX(1); }
.card__ico {
  width: 62px; height: 62px; border-radius: 50%; display: grid; place-items: center;
  color: #fff; margin-bottom: 18px; background: var(--accent, var(--purple-600));
  box-shadow: 0 8px 18px rgba(0,0,0,.14);
  transition: transform .35s var(--ease);
}
.card:hover .card__ico { transform: rotate(-8deg) scale(1.06); }
.card__ico svg { width: 28px; height: 28px; }
.card h3 {
  font-size: 1.05rem; letter-spacing: .07em; color: var(--navy-800); margin-bottom: 12px;
}
.card p { font-size: .87rem; color: var(--ink-500); flex: 1 0 auto; margin-bottom: 20px; }
.card--purple { --accent: var(--purple-600); }
.card--teal   { --accent: var(--teal-600); }
.card--orange { --accent: var(--orange-500); }
.card--blue   { --accent: var(--blue-600); }

/* ---------- 11. Platforms ---------- */
.platforms {
  position: relative; color: #fff;
  background: linear-gradient(115deg, #060e38 0%, #0b1550 55%, #101b5e 100%);
  overflow: hidden;
}
.platforms__map {
  position: absolute; inset: 0; opacity: .16;
  background: url("../img/world-dots.svg") center right / cover no-repeat;
  pointer-events: none;
}
.platforms .wrap { position: relative; z-index: 2; }
.platforms h2 { font-size: clamp(1.5rem, 3.4vw, 2.1rem); letter-spacing: .04em; }
.platforms h2 .accent { color: var(--gold-400); display: block; }
.platforms__lede { max-width: 380px; color: rgba(255,255,255,.75); font-size: .9rem; margin-top: 10px; }
.plat-row {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; margin-top: 28px;
}
.plat-tile {
  background: #fff; border-radius: var(--radius-sm);
  height: 76px; padding: 14px 18px; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.plat-tile:hover { transform: translateY(-5px); box-shadow: 0 12px 26px rgba(0,0,0,.3); }
.plat-tile img { max-width: 100%; max-height: 100%; width: auto; height: auto; object-fit: contain; }
.plat-more {
  display: flex; flex-wrap: wrap; align-items: center; gap: 22px; margin-top: 20px;
  font-size: .82rem; color: rgba(255,255,255,.8);
}
.plat-more span { display: inline-flex; align-items: center; gap: 8px; }
.plat-more i {
  width: 20px; height: 20px; border-radius: 4px; display: grid; place-items: center;
  font-style: normal; font-size: .6rem; font-weight: 800; color: #fff;
}

/* ---------- 12. Why Choose ---------- */
.why__grid {
  display: grid; grid-template-columns: 1fr 1.25fr; gap: 40px; align-items: center;
}
.why__list li {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 9px 0; font-size: .9rem; color: var(--ink-700);
}
.why__list svg { flex: 0 0 auto; width: 20px; height: 20px; color: var(--navy-600); margin-top: 2px; }
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.stat {
  border-radius: var(--radius); padding: 26px 12px; text-align: center; color: #fff;
  box-shadow: var(--shadow);
  transition: transform .3s var(--ease);
}
.stat:hover { transform: translateY(-6px); }
.stat svg { width: 34px; height: 34px; margin: 0 auto 10px; }
.stat__n { font-family: var(--font-head); font-size: 2.1rem; font-weight: 700; line-height: 1; }
.stat__l {
  font-family: var(--font-head); font-size: .78rem; letter-spacing: .09em;
  text-transform: uppercase; margin-top: 8px; color: rgba(255,255,255,.9);
}
.stat:nth-child(1) { background: linear-gradient(150deg, #7e22ce, #4c1d95); }
.stat:nth-child(2) { background: linear-gradient(150deg, #14a89a, #0b6f66); }
.stat:nth-child(3) { background: linear-gradient(150deg, #f7941e, #e2620c); }
.stat:nth-child(4) { background: linear-gradient(150deg, #2196f3, #0d47a1); }

/* ---------- 13. Mug CTA ---------- */
.mugcta {
  position: relative; overflow: hidden; color: #fff;
  background:
    url("../img/mug-cta.jpg") left center / auto 100% no-repeat,
    linear-gradient(90deg, #4c1d95, #b8189b);
}
.mugcta::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(10,20,69,.12) 0%, rgba(10,20,69,.14) 15%, rgba(76,29,149,.92) 29%, rgba(123,31,162,.95) 62%, rgba(168,20,145,.96) 100%);
}
.mugcta .wrap { position: relative; z-index: 2; }
.mugcta__inner {
  display: flex; align-items: center; justify-content: flex-end; gap: 30px;
  flex-wrap: wrap; min-height: 178px; padding: 26px 0;
}
.mugcta__text { flex: 1 1 340px; margin-left: auto; max-width: 560px; }
.mugcta h2 { font-size: clamp(1.4rem, 3vw, 1.9rem); letter-spacing: .03em; }
.mugcta p { font-size: .92rem; color: rgba(255,255,255,.88); margin-top: 8px; max-width: 420px; }

/* ---------- 14. Footer ---------- */
.site-footer { background: var(--navy-800); color: rgba(255,255,255,.72); padding-top: 48px; }
.foot__grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1.1fr 1.3fr; gap: 34px;
  padding-bottom: 34px;
}
.foot__logo { height: 54px; width: auto; margin-bottom: 14px; }
.foot__about { font-size: .84rem; line-height: 1.6; max-width: 260px; }
.foot h4 {
  font-size: .88rem; letter-spacing: .12em; color: #fff; margin-bottom: 16px;
}
.foot ul li { margin-bottom: 9px; }
.foot ul a { font-size: .84rem; transition: color .2s var(--ease), padding-left .2s var(--ease); }
.foot ul a:hover { color: var(--gold-400); padding-left: 4px; }
.foot__contact li { display: flex; align-items: flex-start; gap: 11px; margin-bottom: 12px; font-size: .84rem; }
.foot__contact svg { flex: 0 0 auto; width: 15px; height: 15px; color: var(--gold-400); margin-top: 4px; }
.socials { display: flex; gap: 10px; margin-top: 18px; }
.socials a {
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(255,255,255,.09); display: grid; place-items: center;
  transition: background .25s var(--ease), transform .25s var(--ease);
}
.socials a:hover { background: var(--gold-500); color: var(--navy-800); transform: translateY(-3px); }
.socials svg { width: 15px; height: 15px; }
.foot__bar {
  border-top: 1px solid rgba(255,255,255,.09);
  padding: 16px 0; text-align: center; font-size: .78rem; color: rgba(255,255,255,.55);
}

/* ---------- 15. Page Hero (inner pages) ---------- */
.pagehero {
  position: relative; color: #fff; padding: 62px 0 56px;
  background:
    radial-gradient(100% 120% at 80% 0%, rgba(120,40,160,.5), transparent 62%),
    linear-gradient(120deg, #070f3b, #0b1550 55%, #2a1660);
  text-align: center; overflow: hidden;
}
.pagehero h1 { font-size: clamp(2rem, 4.6vw, 3rem); letter-spacing: .02em; }
.pagehero h1 .accent { color: var(--gold-400); }
.pagehero p { max-width: 620px; margin: 16px auto 0; color: rgba(255,255,255,.82); font-size: .98rem; }
.crumbs {
  display: flex; justify-content: center; gap: 8px; margin-top: 20px;
  font-size: .78rem; color: rgba(255,255,255,.6); letter-spacing: .05em;
}
.crumbs a:hover { color: var(--gold-400); }

/* ---------- 16. Services page pieces ---------- */
.prod-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.prod {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 28px 24px 26px; position: relative; overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .32s var(--ease), box-shadow .32s var(--ease);
  display: flex; flex-direction: column;
}
.prod:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.prod::after {
  content: ""; position: absolute; right: -40px; top: -40px;
  width: 120px; height: 120px; border-radius: 50%;
  background: var(--accent, var(--purple-600)); opacity: .07;
}
.prod__ico {
  width: 56px; height: 56px; border-radius: 14px; display: grid; place-items: center;
  color: #fff; background: var(--accent, var(--purple-600)); margin-bottom: 18px;
  box-shadow: 0 8px 18px rgba(0,0,0,.13);
}
.prod__ico svg { width: 26px; height: 26px; }
.prod h3 { font-size: 1.05rem; letter-spacing: .05em; color: var(--navy-800); margin-bottom: 10px; }
.prod p { font-size: .87rem; color: var(--ink-500); flex: 1 0 auto; }
.prod__tag {
  display: inline-block; margin-top: 18px; align-self: flex-start;
  font-family: var(--font-head); font-size: .7rem; letter-spacing: .12em;
  text-transform: uppercase; padding: 5px 12px; border-radius: 999px;
  background: color-mix(in srgb, var(--accent, var(--purple-600)) 12%, white);
  color: var(--accent, var(--purple-600)); font-weight: 700;
}
.prod--purple { --accent: var(--purple-600); }
.prod--teal   { --accent: var(--teal-600); }
.prod--orange { --accent: var(--orange-500); }
.prod--blue   { --accent: var(--blue-600); }
.prod--gold   { --accent: var(--gold-600); }
.prod--red    { --accent: var(--red-500); }

.feature {
  display: grid; grid-template-columns: 1.05fr 1fr; gap: 40px; align-items: center;
  background: linear-gradient(120deg, #070f3b, #0b1550 60%, #2a1660);
  border-radius: var(--radius-lg); padding: 42px 44px; color: #fff;
  box-shadow: var(--shadow-lg);
}
.feature h2 { font-size: clamp(1.5rem, 3vw, 2rem); letter-spacing: .03em; }
.feature h2 .accent { color: var(--gold-400); }
.feature p { color: rgba(255,255,255,.84); font-size: .92rem; margin-top: 14px; }
.feature__list { margin-top: 22px; display: grid; gap: 12px; }
.feature__list li { display: flex; gap: 11px; align-items: flex-start; font-size: .88rem; color: rgba(255,255,255,.9); }
.feature__list svg { flex: 0 0 auto; width: 19px; height: 19px; color: var(--gold-400); margin-top: 2px; }
.feature__panel {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius); padding: 26px;
}
.feature__panel h4 { font-size: .95rem; letter-spacing: .09em; color: var(--gold-400); margin-bottom: 14px; }
.feature__panel li { font-size: .86rem; padding: 8px 0; border-bottom: 1px dashed rgba(255,255,255,.14); display: flex; gap: 10px; }
.feature__panel li:last-child { border-bottom: 0; }
.feature__panel b { color: var(--gold-300); font-weight: 700; }

.notebox {
  border-left: 4px solid var(--gold-500); background: #fff8ea;
  padding: 18px 22px; border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: .87rem; color: #7a5710; margin-top: 26px;
}
.notebox b { color: #5d420c; }

.notoffered { background: var(--surface-alt); }
.notoffered__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 34px; align-items: start; }
.chiplist { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.chip {
  font-size: .82rem; padding: 8px 14px; border-radius: 999px;
  background: #fff; border: 1px solid var(--line); color: var(--ink-600);
  display: inline-flex; align-items: center; gap: 8px;
}
.chip svg { width: 14px; height: 14px; color: var(--red-500); }
.panel {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 28px; box-shadow: var(--shadow-sm);
}
.panel h3 { font-size: 1.05rem; color: var(--navy-800); letter-spacing: .05em; margin-bottom: 14px; }
.panel p { font-size: .88rem; color: var(--ink-500); }
.todo li {
  display: flex; gap: 12px; padding: 12px 0; border-bottom: 1px dashed var(--line);
  font-size: .87rem; color: var(--ink-600);
}
.todo li:last-child { border-bottom: 0; }
.todo b {
  flex: 0 0 auto; width: 24px; height: 24px; border-radius: 50%;
  background: var(--navy-700); color: #fff; display: grid; place-items: center;
  font-size: .74rem; font-family: var(--font-head);
}

/* ---------- 17. Coming soon ---------- */
.soon { text-align: center; padding: 90px 0 100px; }
.soon__ico { width: 84px; height: 84px; margin: 0 auto 24px; color: var(--gold-500); }
.soon h1 { font-size: clamp(1.8rem, 4vw, 2.6rem); color: var(--navy-800); }
.soon p { max-width: 520px; margin: 16px auto 28px; color: var(--ink-500); }

/* ---------- 18. Utilities ---------- */
.only-mobile { display: none; }
@media (max-width: 980px) { .only-mobile { display: block; } }

.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }
.to-top {
  position: fixed; right: 20px; bottom: 20px; z-index: 800;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--gold-500); color: var(--navy-800);
  display: grid; place-items: center; box-shadow: var(--shadow);
  opacity: 0; visibility: hidden; transform: translateY(12px);
  transition: all .3s var(--ease);
}
.to-top.is-on { opacity: 1; visibility: visible; transform: none; }
.to-top:hover { transform: translateY(-3px); }
.to-top svg { width: 18px; height: 18px; }
.skip {
  position: absolute; left: -9999px; top: 0; z-index: 1000;
  background: var(--gold-500); color: var(--navy-900); padding: 10px 18px; border-radius: 0 0 6px 0;
}
.skip:focus { left: 0; }

/* ============================================================
   19. RESPONSIVE
   ============================================================ */
@media (max-width: 1080px) {
  .strip__grid { grid-template-columns: repeat(2, 1fr); row-gap: 22px; }
  .strip__item:nth-child(2) { border-right: 0; }
  .plat-row { grid-template-columns: repeat(3, 1fr); }
  .why__grid { grid-template-columns: 1fr; gap: 30px; }
  .prod-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 980px) {
  :root { --nav-h: 66px; }
  .nav__burger { display: flex; }
  .nav__cta { display: none; }
  .nav__menu {
    position: fixed; inset: var(--nav-h) 0 auto 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--navy-800); padding: 8px 20px 22px;
    border-bottom: 1px solid rgba(255,255,255,.1);
    max-height: 0; overflow: hidden; opacity: 0;
    transition: max-height .4s var(--ease), opacity .3s var(--ease), padding .3s var(--ease);
    box-shadow: 0 18px 30px rgba(0,0,0,.35);
  }
  .nav__menu.is-open { max-height: 78vh; opacity: 1; overflow-y: auto; }
  .nav__link { display: block; padding: 13px 4px; border-bottom: 1px solid rgba(255,255,255,.07); font-size: .9rem; }
  .nav__link::after { display: none; }
  .nav__menu .btn { margin-top: 16px; justify-content: center; }

  .hero__grid { grid-template-columns: 1fr; min-height: 0; }
  .hero__copy { padding: 44px 0 34px; text-align: center; }
  .hero__rule { margin-inline: auto; }
  .hero__lede { margin-inline: auto; }
  .hero__btns { justify-content: center; }
  .hero__visual { min-height: 320px; order: 2; margin: 0 -20px; }
  .hero__photo::after { background: linear-gradient(0deg, rgba(11,21,80,.75), rgba(11,21,80,.1) 60%); }
  .hero__badge { left: 16px; top: 22px; transform: none; animation: none; width: 108px; }

  .steps, .steps--with-sep { grid-template-columns: repeat(2, 1fr); gap: 30px 12px; }
  .step-sep { display: none; }

  .cards { grid-template-columns: repeat(2, 1fr); }
  .feature { grid-template-columns: 1fr; padding: 32px 26px; }
  .notoffered__grid { grid-template-columns: 1fr; }
  .foot__grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .mugcta__inner { justify-content: center; text-align: center; }
  .mugcta__text { margin-inline: auto; }
  .mugcta p { margin-inline: auto; }
  .mugcta::before { background: linear-gradient(180deg, rgba(76,29,149,.9), rgba(160,20,140,.94)); }
}

@media (max-width: 720px) {
  .section { padding: 50px 0; }
  .sec-head { gap: 12px; margin-bottom: 30px; }
  .sec-head h2 { white-space: normal; text-align: center; font-size: 1.35rem; }
  .sec-head::before, .sec-head::after { max-width: 40px; }
  .ctabar { flex-direction: column; align-items: flex-start; text-align: left; padding: 24px; }
  .ctabar .btn { width: 100%; justify-content: center; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .plat-row { grid-template-columns: repeat(2, 1fr); }
  .prod-grid { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .wrap { width: calc(100% - 32px); }
  .strip__grid { grid-template-columns: 1fr; }
  .strip__item { border-right: 0; padding: 6px 0; }
  .cards { grid-template-columns: 1fr; }
  .steps, .steps--with-sep { grid-template-columns: 1fr; }
  .foot__grid { grid-template-columns: 1fr; }
  .hero__btns .btn { width: 100%; justify-content: center; }
  .stats { grid-template-columns: 1fr; }
  .feature { padding: 26px 20px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
}
