/* aPix Builder landing — Chrome-inspired, blue/black, friendly tech minimal */

:root {
  --ink: #0a0f1c;
  --ink-soft: #1b2436;
  --bg: #ffffff;
  --bg-soft: #f5f8ff;
  --bg-mute: #eef2fb;
  --text: #14181f;
  --text-muted: #545d6e;
  --text-dim: #818b9c;
  --line: #e6eaf2;
  --line-soft: #eef1f7;
  --blue: #1a6dff;
  --blue-strong: #0b57d0;
  --blue-soft: #e8f0ff;
  --blue-glow: rgba(26, 109, 255, 0.18);
  --indigo: #5b6cff;
  --radius: 16px;
  --radius-lg: 24px;
  --radius-pill: 999px;
  --wrap: 1160px;
  --font: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --shadow-sm: 0 1px 2px rgba(10, 15, 28, 0.06), 0 4px 16px rgba(10, 15, 28, 0.05);
  --shadow-lg: 0 24px 70px rgba(13, 38, 96, 0.18);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { color: var(--blue); text-decoration: none; }
a:hover { color: var(--blue-strong); }
img { display: block; max-width: 100%; height: auto; }

.srOnly {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skipLink {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 300;
  padding: 10px 16px;
  border-radius: 10px;
  color: #fff;
  background: var(--ink);
  transform: translateY(-150%);
  transition: transform 0.15s ease;
}
.skipLink:focus { color: #fff; transform: translateY(0); }

:focus-visible {
  outline: 3px solid rgba(26, 109, 255, 0.5);
  outline-offset: 3px;
}

code {
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 0.86em;
  padding: 2px 6px;
  border-radius: 6px;
  background: var(--blue-soft);
  color: var(--blue-strong);
}

h1, h2, h3, h4 { letter-spacing: -0.025em; color: var(--ink); }

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

/* ---------- Header ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s, background 0.2s;
}
.header.scrolled { border-bottom-color: var(--line); }

.headerRow {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
  min-height: 66px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--ink);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.03em;
}
.logoMark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: var(--ink);
  box-shadow: 0 4px 14px rgba(10, 15, 28, 0.22);
}
.logoMark img { width: 30px; height: 30px; border-radius: 8px; }

.headerNav { display: flex; gap: 2px; margin-left: 12px; margin-right: auto; }
.headerNav a {
  color: var(--text-muted);
  font-size: 0.94rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  transition: background 0.15s, color 0.15s;
}
.headerNav a:hover { color: var(--ink); background: var(--bg-mute); }

.langSwitch {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--bg-mute);
  margin-right: 8px;
}

.langBtn {
  min-width: 36px;
  padding: 6px 10px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--text-muted);
  font: inherit;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: color 0.15s, background 0.15s;
}

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

.langBtn.active {
  background: var(--surface);
  color: var(--ink);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
}

.menuToggle { display: none; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font: inherit;
  font-weight: 600;
  border-radius: var(--radius-pill);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.12s ease, background 0.15s, border-color 0.15s, box-shadow 0.15s;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btnSm { padding: 8px 18px; font-size: 0.9rem; }
.btnLg { padding: 14px 26px; font-size: 1rem; }

.btnFill { background: var(--blue); color: #fff; box-shadow: 0 6px 18px var(--blue-glow); }
.btnFill:hover { background: var(--blue-strong); color: #fff; box-shadow: 0 10px 26px var(--blue-glow); }

.btnGhost { background: transparent; color: var(--ink); border-color: var(--line); }
.btnGhost:hover { background: var(--bg-mute); color: var(--ink); border-color: #d6deec; }

.ico { width: 19px; height: 19px; flex-shrink: 0; }
.dlRow { display: flex; flex-wrap: wrap; gap: 12px; }

/* ---------- Hero ---------- */
.hero { position: relative; padding: 72px 0 40px; overflow: hidden; }
.heroGlow {
  position: absolute;
  inset: -20% -10% auto -10%;
  height: 720px;
  z-index: 0;
  background:
    radial-gradient(60% 60% at 50% 0%, var(--blue-glow), transparent 70%),
    radial-gradient(40% 50% at 82% 8%, rgba(91, 108, 255, 0.16), transparent 70%);
  pointer-events: none;
}
.heroInner { position: relative; z-index: 1; text-align: center; }

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 24px;
  padding: 7px 16px;
  border-radius: var(--radius-pill);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink-soft);
}
.pillDot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.18);
}

.heroTitle {
  margin: 0 auto 22px;
  max-width: 16ch;
  font-size: clamp(2.4rem, 6vw, 4.1rem);
  font-weight: 800;
  line-height: 1.05;
}
.heroLead {
  margin: 0 auto 32px;
  max-width: 60ch;
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  color: var(--text-muted);
}
.heroLead strong { color: var(--ink); font-weight: 700; }

.heroDl { justify-content: center; }
.heroNote { margin: 18px 0 0; font-size: 0.88rem; color: var(--text-dim); }

.heroShot {
  position: relative;
  margin: 40px auto 0;
  max-width: 1100px;
}
.heroShot img {
  width: 100%;
  display: block;
  filter: drop-shadow(0 20px 48px rgba(13, 38, 96, 0.18));
}

/* ---------- Stats strip ---------- */
.strip { padding: 8px 0 12px; }
.stripRow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  padding: 28px 32px;
  border-radius: var(--radius-lg);
  background: var(--bg-soft);
  border: 1px solid var(--line-soft);
}
.stat { display: flex; flex-direction: column; gap: 4px; }
.statNum {
  font-size: 1.9rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--blue);
  line-height: 1;
}
.statLbl { font-size: 0.84rem; color: var(--text-muted); line-height: 1.4; }

/* ---------- Sections ---------- */
.section { padding: 88px 0; }
.sectionAlt { background: var(--bg-soft); }

.sectionHead { max-width: 860px; margin: 0 auto 48px; text-align: center; }
.eyebrow {
  margin: 0 0 12px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
}
.eyebrowLight { color: #7aa6ff; }
.sectionHead h2 { margin: 0; font-size: clamp(1.7rem, 3vw, 2.3rem); font-weight: 800; line-height: 1.18; text-wrap: balance; }
.sectionSub { margin: 16px 0 0; font-size: 1.08rem; color: var(--text-muted); }

/* ---------- Feature cards ---------- */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.card {
  padding: 28px;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--line);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); border-color: #d6e2ff; }
.cardIco {
  display: grid;
  place-items: center;
  width: 48px; height: 48px;
  margin-bottom: 18px;
  border-radius: 13px;
  background: var(--blue-soft);
  color: var(--blue);
}
.cardIco svg { width: 26px; height: 26px; }
.card h3 { margin: 0 0 8px; font-size: 1.18rem; font-weight: 700; }
.card p { margin: 0; font-size: 0.96rem; color: var(--text-muted); }

/* ---------- Feature highlights (alternating rows) ---------- */
.highlightRow {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 52px;
  align-items: center;
}
.highlightRow + .highlightRow { margin-top: 40px; }
.highlightRow.rev .hlShot { order: 2; }
.hlShot { margin: 0; }
.hlShot img { width: 100%; display: block; }
.hlText { max-width: 46ch; }
.hlTag {
  display: inline-block;
  margin-bottom: 14px;
  padding: 5px 13px;
  border-radius: var(--radius-pill);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  background: var(--blue-soft);
  color: var(--blue-strong);
}
.hlText h3 { margin: 0 0 12px; font-size: clamp(1.4rem, 2.6vw, 1.95rem); font-weight: 800; line-height: 1.2; }
.hlText p { margin: 0; font-size: 1.04rem; color: var(--text-muted); }
.hlText strong { color: var(--ink); font-weight: 700; }
.hlDl { margin-top: 20px; }
.hlDl .btn { text-decoration: none; }
.showMoreHighlights { display: none; }

/* ---------- Dark showcase ---------- */
.showcase {
  margin: 0;
  padding: 96px 0;
  background:
    radial-gradient(70% 120% at 100% 0%, rgba(26, 109, 255, 0.22), transparent 60%),
    radial-gradient(50% 80% at 0% 100%, rgba(91, 108, 255, 0.18), transparent 55%),
    var(--ink);
  color: #e8edf7;
}
.showcaseInner {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 56px;
  align-items: center;
}
.showcaseText h2 { color: #fff; font-size: clamp(1.7rem, 3.2vw, 2.4rem); font-weight: 800; margin: 0 0 18px; line-height: 1.15; }
.showcaseSub { margin: 0 0 24px; color: #aab6cd; font-size: 1.05rem; }
.checkList { margin: 0; padding: 0; list-style: none; display: grid; gap: 12px; }
.checkList li {
  position: relative;
  padding-left: 32px;
  color: #cdd6e8;
  font-size: 0.98rem;
}
.checkList li::before {
  content: "";
  position: absolute;
  left: 0; top: 2px;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--blue);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}
.showcaseShot {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}
.showcaseShot img { width: 100%; }

/* ---------- Modes ---------- */
.modes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.mode {
  padding: 30px 28px;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--line);
}
.modeHi {
  background: linear-gradient(180deg, #0d1730, #0a0f1c);
  border-color: transparent;
  color: #e8edf7;
  box-shadow: var(--shadow-lg);
}
.modeHi h3 { color: #fff; }
.modeHi p { color: #aeb9d0; }
.modeTag {
  display: inline-block;
  margin-bottom: 14px;
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  background: var(--blue-soft);
  color: var(--blue-strong);
}
.modeHi .modeTag { background: rgba(255, 255, 255, 0.12); color: #bcd2ff; }
.mode h3 { margin: 0 0 8px; font-size: 1.3rem; font-weight: 700; }
.mode p { margin: 0; font-size: 0.96rem; color: var(--text-muted); }

/* ---------- Video tutorial ---------- */
.tutorial .sectionHead { margin-bottom: 36px; }
.videoFrame {
  position: relative;
  width: min(100%, 1000px);
  aspect-ratio: 16 / 9;
  margin-inline: auto;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  background: var(--ink);
  box-shadow: 0 28px 70px rgba(13, 38, 96, 0.2);
}
.videoFrame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.videoPoster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  overflow: hidden;
  border: 0;
  color: #fff;
  background:
    url("https://i.ytimg.com/vi/gTzLpNnfmoo/maxresdefault.jpg") center / cover no-repeat,
    #080d18;
  cursor: pointer;
  font: inherit;
  text-align: left;
}
.videoShade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(4, 8, 16, 0.58), transparent 38%),
    linear-gradient(0deg, rgba(4, 8, 16, 0.82), transparent 52%);
  transition: background 0.25s ease;
}
.videoTopline {
  position: absolute;
  z-index: 1;
  left: clamp(20px, 4vw, 42px);
  right: clamp(20px, 4vw, 42px);
}
.videoTopline {
  top: clamp(18px, 3vw, 32px);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
}
.videoDuration {
  padding: 6px 11px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-pill);
  background: rgba(8, 13, 24, 0.42);
  backdrop-filter: blur(10px);
  font-size: clamp(0.67rem, 1.2vw, 0.78rem);
  font-weight: 600;
}
.videoPlay {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  display: grid;
  place-items: center;
  width: clamp(64px, 8vw, 84px);
  height: clamp(64px, 8vw, 84px);
  border-radius: 50%;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.32);
  transform: translate(-50%, -50%);
  transition: transform 0.2s ease, background 0.2s ease;
}
.videoPlay svg { width: 42%; height: 42%; fill: currentColor; }
.videoPoster:hover .videoShade {
  background:
    linear-gradient(180deg, rgba(4, 8, 16, 0.5), transparent 38%),
    linear-gradient(0deg, rgba(4, 8, 16, 0.72), transparent 52%);
}
.videoPoster:hover .videoPlay { transform: translate(-50%, -50%) scale(1.08); background: #fff; }
.videoPoster:focus-visible { outline: 3px solid rgba(255, 255, 255, 0.9); outline-offset: -6px; }
.tutorialLink { margin: 24px 0 0; text-align: center; }

/* ---------- Preview gallery ---------- */
.tabs { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-bottom: 32px; }
.tab {
  appearance: none;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--text-muted);
  padding: 9px 20px;
  border-radius: var(--radius-pill);
  font: inherit;
  font-size: 0.92rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.15s;
}
.tab.active, .tab:hover { color: #fff; background: var(--blue); border-color: var(--blue); }

.grid { display: none; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.grid.active { display: grid; }
.frame {
  margin: 0;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: #fff;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.frame img { width: 100%; }
.frame figcaption {
  padding: 13px 18px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-muted);
  border-top: 1px solid var(--line-soft);
}

/* ---------- CTA ---------- */
.cta { padding: 96px 0; }
.ctaInner {
  text-align: center;
  max-width: 1080px;
  margin-inline: auto;
  padding: 64px 40px;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(60% 120% at 50% 0%, rgba(26, 109, 255, 0.3), transparent 70%),
    linear-gradient(180deg, #0d1730, #0a0f1c);
  color: #fff;
  box-shadow: var(--shadow-lg);
}
.ctaInner h2 { color: #fff; font-size: clamp(1.7rem, 3.4vw, 2.5rem); font-weight: 800; margin: 0 0 12px; }
.ctaInner p { margin: 0 auto 28px; max-width: 52ch; color: #b9c4da; font-size: 1.05rem; }
.ctaDl { justify-content: center; gap: 10px; }
.ctaDl .btn { padding-inline: 20px; }
.ctaNote { margin-top: 22px !important; font-size: 0.88rem; color: #8e9bb5 !important; }
.ctaNote a { color: #9fc0ff; }

/* ---------- Footer ---------- */
.footer { padding: 64px 0 40px; border-top: 1px solid var(--line); background: var(--bg-soft); }
.footerGrid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 36px;
  padding-bottom: 40px;
}
.footerBrand p { margin: 16px 0 0; font-size: 0.92rem; color: var(--text-muted); max-width: 36ch; }
.footerCol h4 { margin: 0 0 14px; font-size: 0.82rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--text-dim); }
.footerCol a { display: block; margin-bottom: 10px; color: var(--text-muted); font-size: 0.94rem; }
.footerCol a:hover { color: var(--blue); }
.footerBottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  font-size: 0.86rem;
  color: var(--text-dim);
}
.footerLinks { display: flex; gap: 20px; }
.footerLinks a { color: var(--text-muted); }

/* ---------- Lightbox ---------- */
.zoomable { cursor: zoom-in; }
.zoomable:focus-visible {
  border-radius: var(--radius);
  outline-offset: 5px;
}
.lightboxOpen { overflow: hidden; }
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: clamp(16px, 4vw, 48px);
  background: rgba(8, 12, 22, 0.88);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  cursor: zoom-out;
  animation: lbFade 0.18s ease;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: min(1400px, 96vw);
  max-height: 92vh;
  width: auto;
  height: auto;
  border-radius: 14px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.6);
  animation: lbZoom 0.2s ease;
}
.lightboxClose {
  position: absolute;
  top: clamp(12px, 2vw, 24px);
  right: clamp(12px, 2vw, 28px);
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  transition: background 0.15s;
}
.lightboxClose:hover { background: rgba(255, 255, 255, 0.26); }
@keyframes lbFade { from { opacity: 0; } to { opacity: 1; } }
@keyframes lbZoom { from { transform: scale(0.96); opacity: 0; } to { transform: scale(1); opacity: 1; } }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .lightbox, .lightbox img { animation: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .showcaseInner { grid-template-columns: 1fr; gap: 36px; }
  .footerGrid { grid-template-columns: 1fr 1fr; }
  .footerBrand { grid-column: 1 / -1; }
}
@media (max-width: 820px) {
  .headerRow { gap: 12px; }
  .logo { margin-right: auto; }
  .menuToggle {
    display: grid;
    place-items: center;
    order: 4;
    width: 42px;
    height: 42px;
    padding: 0;
    border: 1px solid var(--line);
    border-radius: 50%;
    color: var(--ink);
    background: #fff;
    cursor: pointer;
  }
  .menuToggle svg { width: 22px; height: 22px; }
  .menuLine {
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    transform-origin: center;
    transition: transform 0.18s ease, opacity 0.18s ease;
  }
  .menuOpen .menuLineTop { transform: translateY(5px) rotate(45deg); }
  .menuOpen .menuLineMid { opacity: 0; }
  .menuOpen .menuLineBottom { transform: translateY(-5px) rotate(-45deg); }
  .headerCta { order: 3; }
  .langSwitch { order: 2; margin: 0; }
  .headerNav {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    display: none;
    gap: 4px;
    margin: 0;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: #fff;
    box-shadow: var(--shadow-lg);
  }
  .menuOpen .headerNav { display: grid; }
  .headerNav a {
    padding: 12px 14px;
    border-radius: 10px;
  }
  .cards, .modes { grid-template-columns: 1fr; }
  .highlightRow { grid-template-columns: 1fr; gap: 24px; }
  .highlightRow.rev .hlShot { order: 0; }
  .hlText { max-width: none; }
  .js #highlights .highlightRow:nth-of-type(n+4) { display: none; }
  .js #highlights .highlightsExpanded .highlightRow { display: grid; }
  .js .showMoreHighlights {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    margin-top: 32px;
    padding: 12px 20px;
    border: 1px solid #cfdbf4;
    border-radius: var(--radius-pill);
    color: var(--blue-strong);
    background: #fff;
    font: inherit;
    font-size: 0.94rem;
    font-weight: 700;
    cursor: pointer;
  }
  .showMoreHighlights svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: transform 0.18s ease;
  }
  .showMoreHighlights[aria-expanded="true"] svg { transform: rotate(180deg); }
  .stripRow { grid-template-columns: 1fr 1fr; gap: 24px 16px; }
  .section { padding: 64px 0; }
  .showcase, .cta { padding: 64px 0; }
}
@media (max-width: 560px) {
  .wrap { width: min(var(--wrap), calc(100% - 32px)); }
  .headerRow { min-height: 62px; }
  .logoText { font-size: 0.98rem; }
  .headerCta { padding-inline: 16px; }
  .menuToggle { width: 40px; height: 40px; }
  .grid { grid-template-columns: 1fr; }
  .footerGrid { grid-template-columns: 1fr; gap: 28px; }
  .heroDl .btn, .ctaDl .btn { flex: 1 1 100%; min-width: 0; }
  .ctaInner { padding: 48px 24px; }
}
