/* Copyright 2026 Ari Sulistiono
   SPDX-License-Identifier: Apache-2.0 */
:root {
  color-scheme: light;
  --bg: #fbfdff;
  --surface: #ffffff;
  --surface-soft: #f4f8fb;
  --brand: #3d7f9c;
  --brand-2: #12a8c4;
  --brand-soft: #edf8fb;
  --brand-ink: #15536a;
  --ink: #102234;
  --ink-strong: #071827;
  --muted: #64758a;
  --muted-2: #8a98a8;
  --hairline: #dce7ee;
  --hairline-2: #cbdbe5;
  --shadow-soft: 0 18px 60px rgba(15, 34, 52, 0.08);
  --shadow-panel: 0 32px 90px rgba(15, 34, 52, 0.14);
  --radius: 18px;
  --radius-lg: 28px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --spring: cubic-bezier(0.22, 1.25, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  text-rendering: optimizeLegibility;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  background:
    radial-gradient(70% 52% at 52% 0%, rgba(61, 127, 156, 0.10), transparent 72%),
    linear-gradient(180deg, #ffffff 0%, #f7fbfd 54%, #fbfdff 100%);
  color: var(--ink);
  font-family: Aptos, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.66;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

button {
  font: inherit;
}

svg {
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.75;
}

section[id] {
  scroll-margin-top: 92px;
}

.ambient-grid {
  position: fixed;
  inset: 0;
  z-index: -3;
  pointer-events: none;
  opacity: 0.28;
  background-image:
    linear-gradient(rgba(61, 127, 156, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(61, 127, 156, 0.055) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(55% 50% at 50% 18%, #000, transparent 78%);
}

.site-header {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  height: 68px;
  padding: 0 max(24px, calc((100vw - 1180px) / 2));
  border-bottom: 1px solid rgba(220, 231, 238, 0.78);
  background: rgba(255, 255, 255, 0.74);
  backdrop-filter: blur(20px) saturate(1.14);
  box-shadow: 0 8px 28px rgba(15, 34, 52, 0.04);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  text-decoration: none;
}

.brand img {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  box-shadow: 0 12px 28px rgba(15, 34, 52, 0.14);
  transition: transform 520ms var(--spring), box-shadow 520ms var(--ease);
}

.brand:hover img {
  transform: translateY(-2px) rotate(-1.5deg);
  box-shadow: 0 16px 34px rgba(15, 34, 52, 0.18);
}

.brand strong,
.brand small {
  display: block;
  white-space: nowrap;
}

.brand strong {
  color: var(--ink-strong);
  font-size: 15px;
  font-weight: 620;
  line-height: 1.1;
}

.brand small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 450;
}

.nav-links {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  border: 1px solid rgba(220, 231, 238, 0.92);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.64);
  padding: 4px;
}

.nav-links a {
  border-radius: 999px;
  padding: 7px 12px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 520;
  line-height: 1;
  text-decoration: none;
  transition: background 220ms var(--ease), color 220ms var(--ease), transform 220ms var(--ease);
}

.nav-links a:hover {
  background: var(--surface-soft);
  color: var(--ink);
  transform: translateY(-1px);
}

main {
  width: min(1180px, calc(100vw - 48px));
  margin-inline: auto;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.93fr) minmax(420px, 1.07fr);
  gap: clamp(34px, 5vw, 76px);
  align-items: center;
  min-height: 100vh;
  padding: 118px 0 76px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 76px -12vw auto;
  height: 56%;
  z-index: -1;
  background:
    radial-gradient(circle at 72% 34%, rgba(18, 168, 196, 0.13), transparent 28%),
    radial-gradient(circle at 22% 26%, rgba(61, 127, 156, 0.10), transparent 32%);
  filter: blur(6px);
}

.hero-copy,
.hero-panel {
  min-width: 0;
}

.hero-copy {
  max-width: 620px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 18px;
  color: var(--brand-ink);
  font-size: 11px;
  font-weight: 560;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--brand-2);
  box-shadow: 0 0 0 5px rgba(18, 168, 196, 0.12);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--ink-strong);
  letter-spacing: 0;
  text-wrap: balance;
}

h1 {
  max-width: 650px;
  margin-bottom: 22px;
  font-size: clamp(34px, 3.55vw, 48px);
  font-weight: 560;
  line-height: 1.08;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 560;
  line-height: 1.16;
}

h3 {
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: 560;
  line-height: 1.28;
}

p {
  color: var(--muted);
}

.lead,
.section-heading p {
  max-width: 680px;
  color: var(--muted);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.78;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: 999px;
  gap: 9px;
  padding: 0 18px;
  font-size: 14px;
  font-weight: 560;
  text-decoration: none;
  transition: transform 260ms var(--spring), box-shadow 260ms var(--ease), border-color 260ms var(--ease), background 260ms var(--ease);
}

.button-icon {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
}

.button::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  transform: translateX(-120%);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.34), transparent);
  transition: transform 760ms var(--ease);
}

.button:hover {
  transform: translateY(-2px);
}

.button:hover::after {
  transform: translateX(120%);
}

.button.primary {
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: #fff;
  box-shadow: 0 16px 38px rgba(18, 168, 196, 0.24);
}

.button.secondary {
  border-color: rgba(220, 231, 238, 0.96);
  background: rgba(255, 255, 255, 0.82);
  color: var(--ink);
  box-shadow: 0 10px 28px rgba(15, 34, 52, 0.06);
}

.project-badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
}

.project-badges a {
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  line-height: 0;
  text-decoration: none;
  opacity: 0.94;
  transition: transform 220ms var(--ease), opacity 220ms var(--ease), filter 220ms var(--ease);
}

.project-badges a:hover {
  transform: translateY(-1px);
  opacity: 1;
  filter: saturate(1.05);
}

.project-badges img {
  height: 20px;
  max-width: 100%;
  border-radius: 5px;
  box-shadow: 0 8px 18px rgba(15, 34, 52, 0.05);
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 34px;
}

.trust-strip span,
.live-pill {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(220, 231, 238, 0.96);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  color: var(--muted);
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
  padding: 9px 12px;
  box-shadow: 0 8px 22px rgba(15, 34, 52, 0.045);
}

.live-pill {
  color: var(--brand-ink);
  background: #e8f8fb;
}

.live-pill::before {
  content: "";
  width: 7px;
  height: 7px;
  margin-right: 8px;
  border-radius: 999px;
  background: var(--brand-2);
  animation: pulseDot 1.8s ease-in-out infinite;
}

.hero-panel {
  position: relative;
  border: 1px solid rgba(220, 231, 238, 0.92);
  border-radius: 30px;
  padding: clamp(16px, 2.8vw, 28px);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(242, 249, 252, 0.90)),
    var(--surface);
  box-shadow: var(--shadow-panel);
}

.hero-panel::before {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: -1;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255,255,255,0.9), rgba(18,168,196,0.18), rgba(255,255,255,0.5));
}

.hero-panel-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.panel-logo {
  width: 84px;
  max-width: 30%;
  height: auto;
  border-radius: 20px;
  filter: drop-shadow(0 16px 24px rgba(15, 34, 52, 0.10));
}

.screen-frame {
  appearance: none;
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9.2;
  overflow: hidden;
  border: 1px solid var(--hairline);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 18px 52px rgba(15, 34, 52, 0.14);
  cursor: zoom-in;
  line-height: 0;
  padding: 0;
  text-align: left;
}

.screen-frame::after {
  content: "Click to enlarge";
  position: absolute;
  right: 12px;
  top: 12px;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.44);
  border-radius: 999px;
  background: rgba(7, 24, 39, 0.66);
  color: #fff;
  font-size: 11px;
  font-weight: 500;
  line-height: 1;
  opacity: 0;
  padding: 8px 10px;
  transform: translateY(-6px);
  transition: opacity 260ms var(--ease), transform 260ms var(--ease);
}

.screen-frame:hover::after {
  opacity: 1;
  transform: translateY(0);
}

.screen-frame img {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left top;
  transition: transform 760ms var(--spring), filter 420ms var(--ease);
}

.screen-frame:hover img {
  transform: scale(1.025);
  filter: saturate(1.04) contrast(1.015);
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 16px;
}

.metric-row div {
  min-height: 76px;
  border: 1px solid rgba(220, 231, 238, 0.94);
  border-radius: 17px;
  padding: 13px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 12px 28px rgba(15, 34, 52, 0.045);
}

.metric-icon {
  width: 18px;
  height: 18px;
  margin-bottom: 10px;
  color: var(--brand-ink);
}

.metric-row span,
.report-list span,
.notice span,
.evidence-card > span:not(.evidence-icon) {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 400;
  line-height: 1.55;
}

.metric-row strong {
  display: block;
  margin-top: 8px;
  color: var(--ink-strong);
  font-size: 15px;
  font-weight: 560;
  line-height: 1.4;
}

.ticker {
  overflow: hidden;
  border-block: 1px solid rgba(220, 231, 238, 0.74);
  padding: 15px 0;
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}

.ticker-track {
  display: flex;
  width: max-content;
  gap: 12px;
  animation: marquee 34s linear infinite;
}

.ticker-track span {
  border: 1px solid rgba(220, 231, 238, 0.94);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
  font-size: 13px;
  font-weight: 500;
  line-height: 1;
  padding: 9px 14px;
}

.section {
  padding: 88px 0;
  border-top: 1px solid rgba(220, 231, 238, 0.80);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 38px;
}

.value-grid,
.evidence-grid {
  display: grid;
  gap: 14px;
}

.value-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.evidence-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.screen-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.screen-card {
  min-width: 0;
  border: 1px solid transparent;
  border-radius: 24px;
  padding: 10px 10px 18px;
  background: rgba(255, 255, 255, 0.44);
  transition: transform 260ms var(--spring), background 260ms var(--ease), box-shadow 260ms var(--ease);
}

.screen-card:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.80);
  box-shadow: var(--shadow-soft);
}

.screen-card h3 {
  margin: 18px 8px 8px;
}

.screen-card p {
  margin-inline: 8px;
}

.value-card,
.evidence-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(220, 231, 238, 0.92);
  border-radius: 22px;
  padding: 22px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(247, 252, 253, 0.78)),
    var(--surface);
  box-shadow: 0 14px 40px rgba(15, 34, 52, 0.06);
  transition: transform 260ms var(--spring), border-color 260ms var(--ease), box-shadow 260ms var(--ease);
}

.value-card:hover,
.evidence-card:hover {
  transform: translateY(-4px);
  border-color: rgba(18, 168, 196, 0.28);
  box-shadow: 0 24px 64px rgba(15, 34, 52, 0.10);
}

.value-card {
  min-height: 244px;
}

.evidence-card {
  min-height: 146px;
}

.value-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin-bottom: 26px;
  border-radius: 11px;
  background: var(--brand-soft);
  color: var(--brand-ink);
  box-shadow: inset 0 0 0 1px rgba(18, 168, 196, 0.14);
}

.value-icon svg {
  width: 18px;
  height: 18px;
}

.evidence-icon {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-bottom: 18px;
  border: 1px solid rgba(18, 168, 196, 0.16);
  border-radius: 13px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.82), rgba(232, 248, 251, 0.92)),
    var(--brand-soft);
  color: var(--brand-ink);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.82),
    0 10px 24px rgba(15, 34, 52, 0.055);
}

.evidence-icon svg {
  width: 19px;
  height: 19px;
}

.evidence-card strong {
  display: block;
  margin-bottom: 10px;
  color: var(--ink-strong);
  font-weight: 560;
}

.split,
.compliance {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1fr);
  gap: clamp(28px, 5vw, 58px);
  align-items: start;
}

.report-list {
  display: grid;
  gap: 12px;
}

.report-list div,
.notice {
  border: 1px solid rgba(220, 231, 238, 0.92);
  border-radius: 18px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 12px 32px rgba(15, 34, 52, 0.055);
}

.report-list strong {
  display: block;
  margin-bottom: 5px;
  color: var(--ink-strong);
  font-weight: 560;
}

.evidence-band {
  margin-inline: calc(50% - 50vw);
  padding-inline: max(24px, calc((100vw - 1180px) / 2));
  background:
    radial-gradient(circle at 84% 16%, rgba(18, 168, 196, 0.14), transparent 28%),
    linear-gradient(180deg, rgba(248, 252, 253, 0.94), rgba(237, 248, 251, 0.70));
}

.notice {
  border-left: 4px solid var(--brand);
  box-shadow: 0 14px 40px rgba(15, 34, 52, 0.075);
}

.notice strong {
  display: block;
  margin-bottom: 14px;
  color: var(--ink-strong);
  font-weight: 560;
}

.notice a {
  display: block;
  border-top: 1px solid var(--hairline);
  padding: 9px 0;
  color: var(--ink);
  font-weight: 500;
  text-decoration: none;
}

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

.download-band {
  border-top: 0;
}

.download-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  border: 1px solid rgba(18, 168, 196, 0.20);
  border-radius: 28px;
  padding: clamp(24px, 5vw, 42px);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(232, 248, 251, 0.86)),
    var(--surface);
  box-shadow: 0 24px 70px rgba(15, 34, 52, 0.12);
}

.download-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.lightbox {
  width: min(94vw, 1280px);
  max-width: 1280px;
  border: 0;
  border-radius: 26px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.34);
}

.lightbox::backdrop {
  background: rgba(8, 17, 27, 0.68);
  backdrop-filter: blur(10px);
}

.lightbox figure {
  margin: 0;
}

.lightbox img {
  display: block;
  width: 100%;
  max-height: 78vh;
  object-fit: contain;
  border: 1px solid var(--hairline);
  border-radius: 18px;
  background: #fff;
}

.lightbox figcaption {
  margin-top: 12px;
  color: var(--ink);
  font-weight: 560;
}

.lightbox-close {
  display: inline-flex;
  float: right;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  margin-bottom: 12px;
  border: 1px solid var(--hairline);
  border-radius: 999px;
  background: var(--surface);
  color: var(--ink);
  cursor: pointer;
  font-size: 13px;
  font-weight: 500;
  padding: 8px 13px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  width: min(1180px, calc(100vw - 48px));
  margin-inline: auto;
  padding: 28px 0 42px;
  border-top: 1px solid rgba(220, 231, 238, 0.82);
  color: var(--muted);
  font-size: 13px;
  font-weight: 430;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 680ms var(--ease),
    transform 680ms var(--ease);
  transition-delay: 0ms;
  will-change: opacity, transform;
}

.delay-1 {
  transition-delay: 100ms;
}

.delay-2 {
  transition-delay: 180ms;
}

.delay-3 {
  transition-delay: 260ms;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.kinetic-ready {
  --rx: 0deg;
  --ry: 0deg;
  --lift: 0px;
  transform: translateY(var(--lift)) rotateX(var(--rx)) rotateY(var(--ry));
  transform-style: preserve-3d;
}

.kinetic-ready:hover {
  --lift: -2px;
}

.click-ripple {
  position: absolute;
  z-index: 5;
  width: 12px;
  height: 12px;
  pointer-events: none;
  border-radius: 999px;
  background: rgba(18, 168, 196, 0.20);
  transform: translate(-50%, -50%) scale(0);
  animation: rippleOut 620ms var(--ease) forwards;
}

@keyframes revealUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulseDot {
  0%, 100% {
    opacity: 0.55;
    transform: scale(0.92);
  }
  50% {
    opacity: 1;
    transform: scale(1.13);
  }
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes rippleOut {
  to {
    opacity: 0;
    transform: translate(-50%, -50%) scale(34);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

@media (max-width: 980px) {
  .site-header {
    height: auto;
    min-height: 68px;
    align-items: flex-start;
    flex-wrap: wrap;
    padding: 14px 18px;
  }

  .nav-links {
    order: 3;
    width: 100%;
    overflow-x: auto;
    justify-content: flex-start;
    scrollbar-width: none;
  }

  .nav-links::-webkit-scrollbar {
    display: none;
  }

  main,
  .site-footer {
    width: min(1180px, calc(100vw - 32px));
  }

  .hero,
  .split,
  .compliance,
  .download-card {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 150px;
  }

  .download-actions {
    justify-content: flex-start;
  }

  .value-grid,
  .evidence-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .screen-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  body {
    font-size: 14px;
  }

  .site-header {
    padding: 12px 14px;
  }

  .brand img {
    width: 36px;
    height: 36px;
  }

  .brand strong {
    font-size: 14px;
  }

  .brand small {
    font-size: 11px;
  }

  main,
  .site-footer {
    width: calc(100vw - 28px);
    max-width: calc(100vw - 28px);
  }

  .hero {
    gap: 28px;
    padding-top: 154px;
    padding-bottom: 56px;
  }

  .hero-copy,
  .hero-panel {
    width: calc(100vw - 28px);
    max-width: calc(100vw - 28px);
    overflow: hidden;
  }

  h1 {
    max-width: 100%;
    font-size: 30px;
    line-height: 1.15;
    text-wrap: normal;
  }

  h2 {
    font-size: 27px;
    text-wrap: normal;
  }

  h3 {
    font-size: 17px;
  }

  .lead,
  .section-heading p {
    max-width: min(100%, 34ch);
    font-size: 16px;
    line-height: 1.68;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
    max-width: 330px;
  }

  .button {
    width: 100%;
    max-width: 330px;
  }

  .trust-strip {
    gap: 8px;
  }

  .hero-panel {
    border-radius: 24px;
    padding: 14px;
  }

  .panel-logo {
    width: 68px;
  }

  .hero-panel-top {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .metric-row,
  .value-grid,
  .evidence-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 64px 0;
  }

  .evidence-band {
    padding-inline: 14px;
  }

  .site-footer {
    flex-direction: column;
  }
}


.faq-section {
  padding-top: 76px;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.faq-card {
  padding: 24px;
  border: 1px solid rgba(201, 215, 226, 0.78);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 18px 54px rgba(17, 40, 64, 0.07);
}

.faq-card h3 {
  margin: 0 0 10px;
  font-size: 17px;
  line-height: 1.32;
  font-weight: 650;
  color: var(--ink);
}

.faq-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.68;
}

@media (max-width: 820px) {
  .faq-grid {
    grid-template-columns: 1fr;
  }
}

.why-section {
  position: relative;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.proof-card {
  min-height: 176px;
  border: 1px solid rgba(18, 168, 196, 0.18);
  border-radius: 22px;
  padding: 22px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(237, 248, 251, 0.82)),
    var(--surface);
  box-shadow: 0 16px 42px rgba(15, 34, 52, 0.065);
  transition: transform 260ms var(--spring), border-color 260ms var(--ease), box-shadow 260ms var(--ease);
}

.proof-card:hover {
  transform: translateY(-4px);
  border-color: rgba(18, 168, 196, 0.32);
  box-shadow: 0 26px 70px rgba(15, 34, 52, 0.11);
}

.proof-card strong {
  display: block;
  margin-bottom: 10px;
  color: var(--ink-strong);
  font-size: 16px;
  font-weight: 620;
  line-height: 1.28;
}

.proof-card span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.62;
}

@media (max-width: 980px) {
  .proof-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .proof-grid {
    grid-template-columns: 1fr;
  }
}
