/* ==========================================================================
   langitbumi — PT Cakra Langit Bumi
   Tema terang. Tanpa dependensi luar: system font stack, tidak ada CDN.
   ========================================================================== */

:root {
  color-scheme: light;

  --bg:        #ffffff;
  --bg-alt:    #f5f8fb;
  --surface:   #ffffff;
  --surface-2: #f8fafc;
  --border:    #e3e9f0;
  --border-lt: #cdd8e4;

  --text:      #0f1b28;
  --text-mid:  #43566a;
  --muted:     #5b6e83;

  --accent:    #0f62d6;
  --accent-dk: #0a4aa4;
  --accent-sf: #eaf2fe;
  --cyan:      #0b7a86;
  --earth:     #12795a;

  --shadow-sm: 0 1px 2px rgba(15, 27, 40, .05);
  --shadow:    0 1px 2px rgba(15, 27, 40, .05), 0 10px 28px -18px rgba(15, 27, 40, .28);
  --shadow-lg: 0 2px 4px rgba(15, 27, 40, .05), 0 18px 44px -22px rgba(15, 27, 40, .34);

  --radius:    14px;
  --radius-sm: 9px;
  --max:       1180px;

  --pad-y:     clamp(4.5rem, 9vw, 7.5rem);
  --gutter:    clamp(1.25rem, 4vw, 2.5rem);
  --header-h:  72px;

  --font: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --ease: cubic-bezier(.22, .68, .3, 1);
}

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 12px);
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--accent); text-underline-offset: 3px; }

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

h1, h2, h3 { line-height: 1.2; letter-spacing: -.022em; margin: 0 0 .6em; font-weight: 650; }
h1 { font-size: clamp(2rem, 4.8vw, 3.15rem); letter-spacing: -.032em; }
h2 { font-size: clamp(1.6rem, 3.3vw, 2.25rem); }
h3 { font-size: 1.12rem; letter-spacing: -.012em; }
p  { margin: 0 0 1rem; }
p:last-child { margin-bottom: 0; }

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

.skip {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  padding: .7rem 1.1rem; background: var(--accent); color: #fff;
  font-weight: 600; border-radius: 0 0 var(--radius-sm) 0;
}
.skip:focus { left: 0; }

/* ==========================================================================
   Animasi
   ========================================================================== */

@keyframes rise {
  from { opacity: 0; transform: translate3d(0, 20px, 0); }
  to   { opacity: 1; transform: none; }
}

.anim { opacity: 0; animation: rise .8s var(--ease) forwards; animation-delay: var(--d, 0ms); }

.js .reveal {
  opacity: 0;
  transform: translate3d(0, 24px, 0);
  transition: opacity .75s var(--ease), transform .75s var(--ease);
  transition-delay: var(--d, 0ms);
}
.js .reveal.in { opacity: 1; transform: none; }

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

  /* Carousel tetap berpindah otomatis, jadi peralihannya sengaja dibiarkan
     halus. Tanpa pengecualian ini slide-nya melompat kasar tiap 6,5 detik,
     yang justru lebih mengganggu daripada peralihan yang lembut. */
  .slide { transition-duration: .5s !important; }
  .hero-bg { transition-duration: .8s !important; }
  .hero-bg.is-active { transform: none; }
}

/* ==========================================================================
   Header
   ========================================================================== */

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  border-bottom: 1px solid transparent;
  transition: background-color .3s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.site-header.scrolled {
  background: rgba(255, 255, 255, .88);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--border);
  box-shadow: var(--shadow-sm);
}

.site-header .wrap {
  position: relative;
  display: flex; align-items: center; gap: 1.5rem;
  min-height: var(--header-h);
}

.brand {
  display: inline-flex; align-items: center; gap: .6rem;
  color: var(--text); text-decoration: none;
  font-weight: 650; font-size: 1.08rem; letter-spacing: -.03em;
  margin-right: auto;
}
.brand img { width: 32px; height: 32px; border-radius: 9px; }
.brand b { font-weight: 650; }
.brand b span { color: var(--accent); }

.nav { display: flex; align-items: center; gap: .15rem; }
.nav a {
  position: relative;
  padding: .5rem .75rem;
  border-radius: var(--radius-sm);
  color: var(--text-mid);
  text-decoration: none;
  font-size: .92rem;
  transition: color .2s var(--ease);
}
.nav a:not(.btn)::after {
  content: "";
  position: absolute; left: .75rem; right: .75rem; bottom: .3rem;
  height: 1.5px; background: var(--accent);
  transform: scaleX(0); transform-origin: left;
  transition: transform .28s var(--ease);
}
.nav a:not(.btn):hover { color: var(--text); }
.nav a:not(.btn):hover::after { transform: scaleX(1); }
.nav .btn { margin-left: .5rem; }

/* Perlu spesifisitas lebih tinggi dari `.nav a`, kalau tidak warna teks tombol
   ikut abu navigasi dan kontrasnya jatuh ke 1,35:1 di atas latar biru. */
.nav a.btn-primary { color: #fff; }
.nav a.btn-primary:hover { color: #fff; }

.nav-toggle {
  display: none; place-items: center;
  width: 42px; height: 38px;
  background: #fff;
  border: 1px solid var(--border-lt);
  border-radius: var(--radius-sm);
  color: var(--text);
  cursor: pointer;
}
.bars { display: grid; gap: 4px; width: 17px; }
.bars i {
  display: block; height: 1.8px; background: currentColor; border-radius: 2px;
  transition: transform .3s var(--ease), opacity .2s var(--ease);
}
[aria-expanded="true"] .bars i:nth-child(1) { transform: translateY(5.8px) rotate(45deg); }
[aria-expanded="true"] .bars i:nth-child(2) { opacity: 0; }
[aria-expanded="true"] .bars i:nth-child(3) { transform: translateY(-5.8px) rotate(-45deg); }

/* ==========================================================================
   Tombol
   ========================================================================== */

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .8rem 1.45rem;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  font-size: .95rem; font-weight: 600; text-decoration: none;
  cursor: pointer; white-space: nowrap;
  transition: background-color .22s var(--ease), border-color .22s var(--ease),
              transform .18s var(--ease), box-shadow .22s var(--ease);
}
.btn-sm { padding: .54rem 1.05rem; font-size: .89rem; }

.btn-primary {
  background: var(--accent); color: #fff;
  box-shadow: 0 6px 18px -10px rgba(15, 98, 214, .85);
}
.btn-primary:hover { background: var(--accent-dk); box-shadow: 0 10px 24px -10px rgba(15, 98, 214, .9); }

.btn-ghost { background: #fff; border-color: var(--border-lt); color: var(--text); box-shadow: var(--shadow-sm); }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }
.btn-ghost svg { transition: transform .25s var(--ease); }
.btn-ghost:hover svg { transform: translateX(3px); }

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

/* ==========================================================================
   Hero
   ========================================================================== */

.hero {
  position: relative;
  isolation: isolate;
  display: flex; align-items: center;
  min-height: min(90svh, 860px);
  padding-block: calc(var(--header-h) + clamp(3rem, 7vw, 5.5rem)) clamp(4rem, 8vw, 6.5rem);
  overflow: hidden;
  border-bottom: 1px solid var(--border);
  background:
    radial-gradient(48rem 32rem at 76% 14%, rgba(15, 98, 214, .10), transparent 62%),
    radial-gradient(38rem 24rem at 2% 98%, rgba(11, 122, 134, .07), transparent 60%),
    linear-gradient(180deg, #fbfdff 0%, var(--bg) 60%);
}

/* Tiga lapis di belakang teks, dari paling bawah:
   gambar background (-3) → animasi kanvas (-2) → selubung gradien (-1). */

.hero-bgs { position: absolute; inset: 0; z-index: -3; overflow: hidden; }
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center right;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity .9s var(--ease), transform 7s linear;
}
.hero-bg.is-active { opacity: 1; transform: scale(1); }

.hero-canvas {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  z-index: -2;
  opacity: 0;
  transition: opacity 1.4s var(--ease);
}
.hero-canvas.ready { opacity: 1; }

/* Selubung gradien supaya teks tetap terbaca di atas gambar dan animasi.
   Sisi kanan tetap disaput putih tipis agar gambar tidak melawan tema terang. */
.hero-veil {
  position: absolute; inset: 0;
  z-index: -1; pointer-events: none;
  background:
    linear-gradient(100deg,
      #fff 6%,
      rgba(255, 255, 255, .95) 38%,
      rgba(255, 255, 255, .64) 56%,
      rgba(255, 255, 255, .18) 74%,
      rgba(255, 255, 255, .03) 100%),
    linear-gradient(to top, var(--bg) 1%, transparent 26%);
}

/* Lapisan gelombang: di atas selubung (-1) tapi di bawah teks (1). */
.hero-waves {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  z-index: 0;
  pointer-events: none;
  opacity: 0;
  transition: opacity 1.4s var(--ease);
}
.hero-waves.ready { opacity: 1; }

.hero > .wrap { position: relative; z-index: 1; }
.scroll-cue { z-index: 1; }

/* Bukan .wrap: margin-inline:auto miliknya akan membuat blok teks ter-center
   dan lepas dari garis konten bagian lain. */
.hero-inner { position: relative; max-width: 43rem; }

.eyebrow {
  display: inline-flex; align-items: center; gap: .55rem;
  margin-bottom: 1.5rem;
  padding: .36rem .9rem .36rem .65rem;
  border: 1px solid var(--border-lt);
  border-radius: 999px;
  background: #fff;
  box-shadow: var(--shadow-sm);
  font-size: .8rem; color: var(--text-mid);
}
.eyebrow::before {
  content: "";
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--earth);
  box-shadow: 0 0 0 3px rgba(18, 121, 90, .16);
  animation: pulse 2.6s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(18, 121, 90, .16); }
  50%      { box-shadow: 0 0 0 7px rgba(18, 121, 90, 0); }
}

.hero h1 { margin-bottom: 1.15rem; }
.hero h1 em { font-style: normal; color: var(--accent); }

.lead { font-size: clamp(1.02rem, 1.8vw, 1.18rem); color: var(--text-mid); max-width: 39rem; }

.hero-actions { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 2.2rem; }

/* ==========================================================================
   Carousel hero — satu slide per layanan
   ========================================================================== */

/* Semua slide ditumpuk di sel grid yang sama. Tinggi container jadi setinggi
   slide terpanjang, sehingga halaman tidak melompat saat slide berganti. */
.slides { display: grid; }

.slide {
  grid-area: 1 / 1;
  opacity: 0;
  visibility: hidden;                 /* sekaligus mengeluarkannya dari urutan fokus */
  transition: opacity .55s var(--ease), visibility .55s var(--ease);
}
.slide.is-active { opacity: 1; visibility: visible; }

/* Isi slide aktif naik bertahap setiap kali slide-nya berganti. */
.slide.is-active > *:nth-child(1) { animation: rise .7s var(--ease) backwards .04s; }
.slide.is-active > *:nth-child(2) { animation: rise .7s var(--ease) backwards .12s; }
.slide.is-active > *:nth-child(3) { animation: rise .7s var(--ease) backwards .2s; }

/* h1 pada slide pertama, h2 pada sisanya, tapi tampilannya harus sama. */
.slide-title {
  font-size: clamp(2rem, 4.8vw, 3.15rem);
  letter-spacing: -.032em;
  line-height: 1.2;
  font-weight: 650;
  margin: 0 0 1.15rem;
}
.slide-title em { font-style: normal; color: var(--accent); }

.slide .lead { min-height: 3.3em; }   /* meredam sisa lompatan antar slide */

.hero-controls {
  display: none;
  align-items: center;
  gap: .5rem;
  margin-top: 2.4rem;
}
.js .hero-controls { display: flex; }

.hero-arrow, .hero-toggle {
  display: grid; place-items: center;
  width: 38px; height: 38px;
  padding: 0;
  border: 1px solid var(--border-lt);
  border-radius: 50%;
  background: #fff;
  color: var(--text-mid);
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: color .2s var(--ease), border-color .2s var(--ease), transform .2s var(--ease);
}
.hero-arrow svg, .hero-toggle svg { width: 17px; height: 17px; }
.hero-arrow:hover, .hero-toggle:hover { color: var(--accent); border-color: var(--accent); }
.hero-arrow:active, .hero-toggle:active { transform: scale(.94); }

.hero-toggle { margin-left: .35rem; }
.hero-toggle .ic-play { display: none; }
.hero-toggle[data-paused="true"] .ic-pause { display: none; }
.hero-toggle[data-paused="true"] .ic-play { display: block; }

.hero-dots { display: flex; align-items: center; gap: .4rem; margin-inline: .45rem; }
.hero-dots button {
  width: 8px; height: 8px;
  padding: 0;
  border: 0; border-radius: 999px;
  background: var(--border-lt);
  cursor: pointer;
  transition: width .32s var(--ease), background-color .32s var(--ease);
}
.hero-dots button:hover { background: var(--muted); }
.hero-dots button[aria-current="true"] { width: 26px; background: var(--accent); }

.scroll-cue {
  position: absolute; left: 50%; bottom: 1.7rem;
  translate: -50% 0;
  display: grid; place-items: center;
  width: 26px; height: 42px;
  border: 1.5px solid var(--border-lt);
  border-radius: 999px;
  background: rgba(255, 255, 255, .6);
}
.scroll-cue span {
  width: 3px; height: 7px; border-radius: 2px; background: var(--accent);
  animation: cue 1.9s var(--ease) infinite;
}
@keyframes cue {
  0%   { transform: translateY(-7px); opacity: 0; }
  35%  { opacity: 1; }
  70%  { transform: translateY(7px); opacity: 0; }
  100% { opacity: 0; }
}
@media (max-width: 900px) { .scroll-cue { display: none; } }

/* ==========================================================================
   Bagian umum
   ========================================================================== */

.section { padding-block: var(--pad-y); }
.section-alt { background: var(--bg-alt); border-block: 1px solid var(--border); }

.section-head { max-width: 44rem; margin-bottom: 3rem; }
.section-head p { color: var(--text-mid); font-size: 1.02rem; }

.kicker {
  display: block; margin-bottom: .9rem;
  font-size: .76rem; font-weight: 700;
  letter-spacing: .13em; text-transform: uppercase;
  color: var(--accent);
}

/* ==========================================================================
   Kartu
   ========================================================================== */

.grid { display: grid; gap: 1.25rem; grid-template-columns: repeat(auto-fit, minmax(255px, 1fr)); }

/* Enam layanan: habis dibagi rata di setiap rentang, jadi tidak perlu aturan
   span khusus seperti waktu jumlahnya masih ganjil. */
.grid-pillars { grid-template-columns: 1fr; }

@media (min-width: 620px) and (max-width: 999px) {
  .grid-pillars { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1000px) {
  .grid-pillars { grid-template-columns: repeat(3, 1fr); }
}

.card {
  position: relative;
  padding: 1.8rem 1.65rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: border-color .28s var(--ease), transform .28s var(--ease), box-shadow .28s var(--ease);
}
.card:hover { transform: translateY(-3px); border-color: var(--border-lt); box-shadow: var(--shadow); }
.card p { color: var(--muted); font-size: .945rem; }

.card-icon {
  display: grid; place-items: center;
  width: 44px; height: 44px;
  margin-bottom: 1.25rem;
  border-radius: 12px;
  background: var(--accent-sf);
  border: 1px solid rgba(15, 98, 214, .16);
  color: var(--accent);
}
.card-icon svg { width: 22px; height: 22px; }

.mini {
  list-style: none;
  margin: 1.3rem 0 0; padding: 1.15rem 0 0;
  border-top: 1px solid var(--border);
  display: grid; gap: .42rem;
  font-size: .87rem; color: var(--text-mid);
}
.mini li { display: flex; align-items: center; gap: .55rem; }
.mini li::before {
  content: ""; flex: none;
  width: 4px; height: 4px; border-radius: 50%; background: var(--cyan);
}

/* ==========================================================================
   Split
   ========================================================================== */

.split {
  display: grid; gap: clamp(2rem, 5vw, 3.75rem);
  align-items: start;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}
@media (max-width: 880px) { .split { grid-template-columns: 1fr; } }

.feature-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 1.1rem; }
.feature-list li {
  display: grid; grid-template-columns: 22px 1fr; gap: .9rem; align-items: start;
  color: var(--text-mid); font-size: .96rem;
}
.feature-list li::before {
  content: "";
  width: 22px; height: 22px; margin-top: .22rem; border-radius: 7px;
  background: rgba(18, 121, 90, .12) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2312795a' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center / 13px no-repeat;
}
.feature-list li b { color: var(--text); font-weight: 600; }

.panel {
  padding: 1.85rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.panel h3 { margin-bottom: .5rem; }
.panel p { color: var(--muted); font-size: .95rem; }
.panel .note {
  margin-top: 1.35rem; padding-top: 1.35rem;
  border-top: 1px solid var(--border);
  font-size: .89rem;
}

/* ==========================================================================
   Langkah kerja
   ========================================================================== */

.steps {
  list-style: none; margin: 0; padding: 0;
  display: grid; gap: 1.25rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
.steps li {
  padding:1.85rem 1.65rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.steps p { color: var(--muted); font-size: .945rem; }
.step-no {
  display: block; margin-bottom: .9rem;
  font-size: 1.55rem; font-weight: 700; letter-spacing: -.03em;
  color: var(--accent);
}

/* ==========================================================================
   Industri
   ========================================================================== */

.tag-grid { display: grid; gap: .8rem; grid-template-columns: repeat(auto-fit, minmax(215px, 1fr)); }
.tag-grid > div {
  display: flex; align-items: center; gap: .75rem;
  padding: 1rem 1.15rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: .95rem; color: var(--text-mid);
  transition: border-color .25s var(--ease), color .25s var(--ease), box-shadow .25s var(--ease);
}
.tag-grid > div:hover { border-color: var(--border-lt); color: var(--text); box-shadow: var(--shadow-sm); }
.tag-grid > div::before {
  content: ""; flex: none;
  width: 6px; height: 6px; border-radius: 50%; background: var(--accent);
}

/* ==========================================================================
   Kontak
   ========================================================================== */

.cta {
  position: relative; overflow: hidden;
  padding: clamp(2.2rem, 5vw, 3.6rem);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background:
    radial-gradient(34rem 18rem at 90% -12%, rgba(15, 98, 214, .09), transparent 66%),
    linear-gradient(180deg, #fff, #fbfdff);
}
.cta h2 { margin-bottom: .7rem; }
.cta p { color: var(--text-mid); max-width: 40rem; }

.contact-list {
  margin: 2.3rem 0 0; padding: 0;
  display: grid; gap: 1.4rem;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}
.contact-list dt {
  margin-bottom: .3rem;
  font-size: .74rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--muted);
}
.contact-list dd { margin: 0; }
.contact-list a, .contact-list span { color: var(--text); text-decoration: none; font-size: 1rem; }
.contact-list a:hover { color: var(--accent); text-decoration: underline; }

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer {
  padding-block: 2.9rem 1.6rem;
  border-top: 1px solid var(--border);
  background: var(--bg-alt);
  color: var(--muted);
  font-size: .9rem;
}
.site-footer > .wrap:first-child {
  display: flex; flex-wrap: wrap; gap: 1.75rem 2.5rem;
  align-items: center; justify-content: space-between;
  padding-bottom: 1.85rem;
  border-bottom: 1px solid var(--border);
}
.foot-brand .brand { margin: 0 0 .5rem; }
.foot-brand p { margin: 0; font-size: .86rem; color: var(--muted); }

.footer-links { display: flex; flex-wrap: wrap; gap: 1.35rem; }
.site-footer a { color: var(--text-mid); text-decoration: none; }
.site-footer a:hover { color: var(--accent); }

.foot-legal {
  display: flex; flex-wrap: wrap; gap: .5rem 1.5rem;
  justify-content: space-between;
  padding-top: 1.45rem;
  font-size: .84rem;
}

/* ==========================================================================
   Halaman 404
   ========================================================================== */

.center-page {
  min-height: 72vh;
  display: grid; place-items: center; text-align: center;
  padding-block: calc(var(--header-h) + 4rem) var(--pad-y);
}
.center-page .code {
  font-size: .78rem; font-weight: 700; letter-spacing: .15em;
  color: var(--accent); margin-bottom: 1rem;
}
.center-page .lead { margin-inline: auto; }

/* ==========================================================================
   Layar kecil
   ========================================================================== */

@media (max-width: 820px) {
  .nav {
    display: none;
    position: absolute; top: calc(100% + 1px); left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: .1rem;
    padding: .8rem var(--gutter) 1.2rem;
    background: rgba(255, 255, 255, .98);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow);
  }
  .nav.open { display: flex; animation: rise .3s var(--ease) forwards; }
  .nav a { padding: .72rem .8rem; font-size: .98rem; }
  .nav a:not(.btn)::after { display: none; }
  .nav .btn { margin: .6rem 0 0; }
  .nav-toggle { display: grid; }
  .hero-actions .btn { flex: 1 1 12rem; }
  .hero-veil {
    background: linear-gradient(to bottom, rgba(255,255,255,.74) 0%, rgba(255,255,255,.88) 46%, var(--bg) 90%);
  }
  .hero-controls { gap: .4rem; }
  .hero-arrow, .hero-toggle { width: 36px; height: 36px; }
}
