/* ============================================================
   Veritech Solutions — Dark "developer-tool" rebuild
   ToDesktop-inspired structure. Accent driven by --accent
   (overridable live via the Tweaks panel).
   ============================================================ */

/* ---------- TOKENS ---------- */
:root {
  /* accent — overwritten by Tweaks panel */
  --accent: #3f73f5;
  --accent-ink: #ffffff; /* text on accent */

  /* background tone — overridable */
  --bg-h: 224;
  --bg-s: 30%;

  /* derived neutrals (dark) */
  --bg: hsl(var(--bg-h) var(--bg-s) 4.5%);
  --bg-2: hsl(var(--bg-h) calc(var(--bg-s) - 6%) 6.5%);
  --surface: hsl(var(--bg-h) calc(var(--bg-s) - 8%) 8.5%);
  --surface-2: hsl(var(--bg-h) calc(var(--bg-s) - 6%) 11%);
  --line: hsl(var(--bg-h) 20% 100% / 0.08);
  --line-2: hsl(var(--bg-h) 20% 100% / 0.14);

  --ink: hsl(214 32% 96%);
  --ink-soft: hsl(214 18% 78%);
  --ink-mute: hsl(214 12% 60%);
  --ink-faint: hsl(214 10% 46%);

  /* accent helpers via color-mix */
  --accent-soft: color-mix(in oklab, var(--accent) 22%, transparent);
  --accent-line: color-mix(in oklab, var(--accent) 40%, transparent);
  --accent-bright: color-mix(in oklab, var(--accent) 78%, white 22%);
  --accent-deep: color-mix(in oklab, var(--accent) 70%, black 30%);
  --glow: color-mix(in oklab, var(--accent) 55%, transparent);

  --maxw: 1200px;
  --gutter: clamp(20px, 5vw, 48px);
  --radius: 18px;
  --radius-lg: 26px;
  --radius-sm: 12px;

  --font:
    'Manrope', ui-sans-serif, system-ui, -apple-system, 'Segoe UI', sans-serif;
  --mono: 'IBM Plex Mono', ui-monospace, 'SF Mono', Menlo, monospace;

  --shadow-card:
    0 1px 0 hsl(0 0% 100% / 0.05) inset, 0 18px 50px -24px hsl(0 0% 0% / 0.8);

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

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

/* page-wide ambient glow */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(60vw 50vh at 50% -8%, var(--accent-soft), transparent 70%),
    radial-gradient(
      40vw 40vh at 92% 8%,
      color-mix(in oklab, var(--accent) 10%, transparent),
      transparent 75%
    );
  opacity: 0.9;
}

body.no-glow::before {
  opacity: 0;
}
body.no-glow .hero__halo,
body.no-glow .founder__bg,
body.no-glow .cta::before {
  opacity: 0;
}

a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
  display: block;
}
h1,
h2,
h3,
h4,
h5 {
  margin: 0;
  letter-spacing: -0.02em;
  line-height: 1.06;
  font-weight: 700;
}
p {
  margin: 0;
}

.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
  position: relative;
  z-index: 1;
}

/* ---------- TYPE HELPERS ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-bright);
}
.eyebrow::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px 1px var(--glow);
}

h1 {
  font-size: clamp(2.6rem, 6.2vw, 4.6rem);
}
h2 {
  font-size: clamp(2rem, 4vw, 3.1rem);
}
h3 {
  font-size: 1.35rem;
}

.lead {
  color: var(--ink-soft);
  font-size: clamp(1.05rem, 1.6vw, 1.28rem);
  line-height: 1.55;
}

/* ---------- BUTTONS ---------- */
.btn {
  --b: var(--accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55em;
  font-family: var(--font);
  font-weight: 600;
  font-size: 15px;
  line-height: 1;
  padding: 13px 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  background: linear-gradient(180deg, var(--accent-bright), var(--accent));
  color: var(--accent-ink);
  box-shadow:
    0 1px 0 hsl(0 0% 100% / 0.35) inset,
    0 10px 30px -10px var(--glow),
    0 2px 8px -2px hsl(0 0% 0% / 0.5);
  transition:
    transform 0.18s var(--ease),
    box-shadow 0.25s var(--ease),
    filter 0.2s;
}
.btn svg {
  width: 1.05em;
  height: 1.05em;
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow:
    0 1px 0 hsl(0 0% 100% / 0.4) inset,
    0 16px 40px -10px var(--glow),
    0 3px 10px -2px hsl(0 0% 0% / 0.5);
}
.btn:active {
  transform: translateY(0);
}

.btn--ghost {
  background: hsl(0 0% 100% / 0.03);
  color: var(--ink);
  border-color: var(--line-2);
  box-shadow: 0 1px 0 hsl(0 0% 100% / 0.05) inset;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}
.btn--ghost:hover {
  background: hsl(0 0% 100% / 0.07);
  border-color: var(--accent-line);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px -12px hsl(0 0% 0% / 0.6);
}

.btn--lg {
  padding: 16px 26px;
  font-size: 16px;
}
.btn--block {
  width: 100%;
}

.linkarrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45em;
  color: var(--accent-bright);
  font-weight: 600;
  font-size: 15px;
}
.linkarrow svg {
  width: 16px;
  height: 16px;
  transition: transform 0.2s var(--ease);
}
.linkarrow:hover svg {
  transform: translateX(4px);
}

/* ---------- HEADER ---------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition:
    background 0.3s,
    border-color 0.3s,
    backdrop-filter 0.3s;
  border-bottom: 1px solid transparent;
}
.site-header.is-stuck {
  background: color-mix(in oklab, var(--bg) 72%, transparent);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  backdrop-filter: blur(16px) saturate(140%);
  border-bottom-color: var(--line);
}
.nav {
  display: flex;
  align-items: center;
  gap: 24px;
  height: 72px;
}
.brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.brand__logo {
  height: 30px;
  width: auto;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: 8px;
}
.nav__link {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink-mute);
  white-space: nowrap;
  padding: 8px 14px;
  border-radius: 999px;
  transition:
    color 0.2s,
    background 0.2s;
}
.nav__link:hover {
  color: var(--ink);
  background: hsl(0 0% 100% / 0.05);
}
.nav__link.is-current {
  color: var(--ink);
}
.nav__spacer {
  flex: 1;
}
.nav__actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav__toggle {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  background: hsl(0 0% 100% / 0.04);
  border: 1px solid var(--line-2);
  border-radius: 12px;
  color: var(--ink);
  cursor: pointer;
}
.nav__toggle svg {
  width: 22px;
  height: 22px;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 8px var(--gutter) 20px;
  background: color-mix(in oklab, var(--bg) 92%, transparent);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}
.mobile-menu.is-open {
  display: flex;
}
.mobile-menu a:not(.btn) {
  padding: 12px 6px;
  color: var(--ink-soft);
  font-weight: 500;
  border-bottom: 1px solid var(--line);
}
.mobile-menu .btn {
  margin-top: 10px;
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  padding: 148px 0 70px;
  overflow: hidden;
}
.hero__halo {
  position: absolute;
  left: 50%;
  top: -6%;
  transform: translateX(-50%);
  width: min(1100px, 120vw);
  height: 680px;
  pointer-events: none;
  z-index: 0;
  background: radial-gradient(closest-side, var(--glow), transparent 72%);
  opacity: 0.55;
  filter: blur(8px);
}
.hero__grid-lines {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: radial-gradient(
    120% 80% at 50% 0%,
    black,
    transparent 68%
  );
  mask-image: radial-gradient(120% 80% at 50% 0%, black, transparent 68%);
  opacity: 0.5;
}
.hero__inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 920px;
  margin-inline: auto;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 7px 8px 7px 14px;
  border-radius: 999px;
  background: hsl(0 0% 100% / 0.04);
  border: 1px solid var(--line-2);
  font-size: 13.5px;
  color: var(--ink-soft);
  font-weight: 500;
  white-space: nowrap;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  margin-bottom: 28px;
}
.pill b {
  color: var(--ink);
  font-weight: 600;
}
.pill__tag {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 9px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-bright);
  border: 1px solid var(--accent-line);
}

.hero h1 {
  margin-bottom: 22px;
}
.hero h1 .grad {
  background: linear-gradient(180deg, var(--ink) 30%, var(--accent-bright));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero__sub {
  max-width: 660px;
  margin: 0 auto 34px;
  color: var(--ink-soft);
  font-size: clamp(1.05rem, 1.7vw, 1.3rem);
  line-height: 1.55;
}
.hero__cta {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 22px;
}
.hero__assure {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 22px;
  justify-content: center;
  flex-wrap: wrap;
  font-size: 14px;
  color: var(--ink-mute);
}
.hero__assure li {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.hero__assure svg {
  width: 16px;
  height: 16px;
  color: var(--accent-bright);
}

.hero__scroll {
  position: absolute;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: var(--ink-mute);
  z-index: 2;
  animation: scrollbob 2.2s ease-in-out infinite;
}
.hero__scroll svg:first-child {
  width: 22px;
  height: 34px;
}
.hero__scroll svg:last-child {
  width: 16px;
  height: 16px;
  margin-top: -6px;
  opacity: 0.7;
}
.hero__scroll:hover {
  color: var(--accent-bright);
}
@keyframes scrollbob {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(8px);
  }
}
@media (prefers-reduced-motion: reduce) {
  .hero__scroll {
    animation: none;
  }
}

/* hero mockup stage */
.hero__stage {
  position: relative;
  z-index: 2;
  max-width: 1040px;
  margin: 64px auto 0;
  perspective: 1600px;
}
.stage__main {
  position: relative;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, var(--surface-2), var(--surface));
  border: 1px solid var(--line-2);
  box-shadow:
    0 1px 0 hsl(0 0% 100% / 0.06) inset,
    0 50px 100px -40px hsl(0 0% 0% / 0.85),
    0 0 0 1px hsl(0 0% 0% / 0.3);
  overflow: hidden;
}
.stage__main::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(
    120% 60% at 50% -10%,
    var(--accent-soft),
    transparent 60%
  );
  opacity: 0.5;
}
/* window chrome */
.win-top {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 13px 18px;
  border-bottom: 1px solid var(--line);
  background: hsl(0 0% 100% / 0.015);
}
.win-dots {
  display: flex;
  gap: 7px;
}
.win-dots i {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: hsl(0 0% 100% / 0.16);
}
.win-dots i:first-child {
  background: #ff5f57;
}
.win-dots i:nth-child(2) {
  background: #febc2e;
}
.win-dots i:nth-child(3) {
  background: #28c840;
}
.win-title {
  font-family: var(--mono);
  font-size: 12.5px;
  color: var(--ink-mute);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.win-title svg {
  width: 14px;
  height: 14px;
  color: var(--accent-bright);
}

.dash {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 0;
  min-height: 420px;
}
.dash__side {
  border-right: 1px solid var(--line);
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.dash__main {
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.score {
  display: flex;
  align-items: center;
  gap: 20px;
}
.ring {
  --p: 96;
  width: 104px;
  height: 104px;
  flex-shrink: 0;
  border-radius: 50%;
  background: conic-gradient(
    var(--accent) calc(var(--p) * 1%),
    hsl(0 0% 100% / 0.08) 0
  );
  display: grid;
  place-items: center;
  box-shadow: 0 0 32px -6px var(--glow);
}
.ring::before {
  content: '';
  position: absolute;
}
.ring__inner {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--surface);
  display: grid;
  place-items: center;
  text-align: center;
  border: 1px solid var(--line);
}
.ring__num {
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.04em;
}
.ring__lbl {
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.score__meta .t {
  font-size: 14px;
  color: var(--ink-mute);
}
.score__meta .v {
  font-size: 22px;
  font-weight: 700;
}
.score__meta .up {
  color: #34d399;
  font-size: 13px;
  font-weight: 600;
  font-family: var(--mono);
}

.statlist {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.statlist li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13.5px;
  color: var(--ink-soft);
  padding: 11px 13px;
  border-radius: 12px;
  background: hsl(0 0% 100% / 0.025);
  border: 1px solid var(--line);
}
.statlist .ico {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  border-radius: 9px;
  display: grid;
  place-items: center;
  background: var(--accent-soft);
  color: var(--accent-bright);
  border: 1px solid var(--accent-line);
}
.statlist .ico svg {
  width: 16px;
  height: 16px;
}
.statlist .grow {
  flex: 1;
}
.statlist .badge {
  font-family: var(--mono);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 4px 9px;
  border-radius: 999px;
  background: color-mix(in oklab, #34d399 18%, transparent);
  color: #5ee9b5;
  border: 1px solid color-mix(in oklab, #34d399 30%, transparent);
}

.chart {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 0;
}
.chart__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
}
.chart__head .t {
  font-size: 14px;
  color: var(--ink-mute);
  font-weight: 500;
}
.chart__head .v {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--accent-bright);
}
.bars {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  flex: 1;
  min-height: 120px;
}
.bars i {
  flex: 1;
  border-radius: 6px 6px 3px 3px;
  background: linear-gradient(180deg, var(--accent-bright), var(--accent-deep));
  opacity: 0.85;
  box-shadow: 0 0 18px -6px var(--glow);
  transition: height 0.8s var(--ease);
}
.bars i.mute {
  background: hsl(0 0% 100% / 0.08);
  box-shadow: none;
}

.logrow {
  font-family: var(--mono);
  font-size: 11.5px;
  color: var(--ink-mute);
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 8px 0;
  border-top: 1px solid var(--line);
}
.logrow .tick {
  color: #5ee9b5;
}
.logrow .tm {
  margin-left: auto;
  color: var(--ink-faint);
}

/* floating cards */
.floatcard {
  position: absolute;
  z-index: 3;
  background: linear-gradient(180deg, var(--surface-2), var(--surface));
  border: 1px solid var(--line-2);
  border-radius: 16px;
  box-shadow:
    0 1px 0 hsl(0 0% 100% / 0.06) inset,
    0 30px 60px -28px hsl(0 0% 0% / 0.9);
  padding: 14px 16px;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  animation: floaty 7s ease-in-out infinite;
}
@media (prefers-reduced-motion: reduce) {
  .floatcard {
    animation: none;
  }
}
.floatcard--a {
  left: -46px;
  top: 90px;
  animation-delay: -1s;
}
.floatcard--b {
  right: -40px;
  top: 230px;
  animation-delay: -3.5s;
}
@keyframes floaty {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-14px);
  }
}

.fc-row {
  display: flex;
  align-items: center;
  gap: 11px;
}
.fc-ico {
  width: 36px;
  height: 36px;
  border-radius: 11px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  background: var(--accent-soft);
  color: var(--accent-bright);
  border: 1px solid var(--accent-line);
}
.fc-ico svg {
  width: 19px;
  height: 19px;
}
.fc-k {
  font-size: 12px;
  color: var(--ink-mute);
  font-family: var(--mono);
  letter-spacing: 0.04em;
}
.fc-v {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.fc-spark {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 26px;
  margin-top: 6px;
}
.fc-spark i {
  width: 5px;
  border-radius: 2px;
  background: var(--accent);
  opacity: 0.7;
}

/* ---------- LOGO WALL ---------- */
.wall {
  padding: 54px 0 30px;
}
.wall__label {
  text-align: center;
  color: var(--ink-mute);
  font-size: 14px;
  margin-bottom: 30px;
}
.wall__label b {
  color: var(--ink-soft);
  font-weight: 600;
}
.wall__row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 18px 38px;
}
.wall__item {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--ink-soft);
  font-weight: 600;
  font-size: 17px;
  letter-spacing: -0.01em;
  opacity: 0.78;
  transition:
    opacity 0.2s,
    color 0.2s;
}
.wall__item:hover {
  opacity: 1;
  color: var(--ink);
}
.wall__item svg {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
}

/* ---------- SECTION SCAFFOLD ---------- */
.section {
  padding: 96px 0;
  position: relative;
}
.section--tight {
  padding: 72px 0;
}
.section-head {
  max-width: 760px;
  margin: 0 auto 56px;
  text-align: center;
}
.section-head .eyebrow {
  margin-bottom: 18px;
}
.section-head h2 {
  margin-bottom: 18px;
}
.section-head p {
  color: var(--ink-soft);
  font-size: 1.18rem;
}
.section-head--left {
  text-align: left;
  margin-inline: 0;
}

/* ---------- VALUE GRID ---------- */
.value-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.managed-grid {
  grid-template-columns: repeat(3, 1fr);
}
.vcard {
  background: linear-gradient(180deg, var(--surface), var(--bg-2));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow-card);
  transition:
    transform 0.25s var(--ease),
    border-color 0.25s,
    box-shadow 0.25s;
}
.vcard:hover {
  transform: translateY(-4px);
  border-color: var(--accent-line);
  box-shadow:
    var(--shadow-card),
    0 24px 50px -30px var(--glow);
}
.vcard__ico {
  width: 46px;
  height: 46px;
  border-radius: 13px;
  margin-bottom: 18px;
  display: grid;
  place-items: center;
  background: var(--accent-soft);
  color: var(--accent-bright);
  border: 1px solid var(--accent-line);
  box-shadow: 0 0 24px -8px var(--glow);
}
.vcard__ico svg {
  width: 23px;
  height: 23px;
}
.vcard h3 {
  font-size: 1.12rem;
  margin-bottom: 9px;
}
.vcard p {
  color: var(--ink-mute);
  font-size: 14.5px;
  line-height: 1.55;
}

/* ---------- FEATURE BLOCKS ---------- */
.feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 6vw, 90px);
  align-items: center;
}
.feature + .feature {
  margin-top: 120px;
}
.feature--flip .feature__media {
  order: -1;
}
.feature__copy .eyebrow {
  margin-bottom: 16px;
}
.feature__copy h2 {
  margin-bottom: 18px;
}
.feature__copy > p {
  color: var(--ink-soft);
  font-size: 1.12rem;
  margin-bottom: 24px;
}
.feature__list {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  display: grid;
  gap: 12px;
}
.feature__list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--ink-soft);
  font-size: 15.5px;
}
.feature__list .ck {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  border-radius: 8px;
  margin-top: 1px;
  display: grid;
  place-items: center;
  background: var(--accent-soft);
  color: var(--accent-bright);
  border: 1px solid var(--accent-line);
}
.feature__list .ck svg {
  width: 14px;
  height: 14px;
}
.badge-flag {
  display: inline-block;
  margin-bottom: 18px;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-bright);
  border: 1px solid var(--accent-line);
}

/* media panel (mock UI inside feature) */
.panel {
  position: relative;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, var(--surface-2), var(--surface));
  border: 1px solid var(--line-2);
  box-shadow:
    var(--shadow-card),
    0 40px 80px -50px hsl(0 0% 0% / 0.9);
  overflow: hidden;
}
.panel::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(
    100% 60% at 80% 0%,
    var(--accent-soft),
    transparent 55%
  );
  opacity: 0.4;
}
.panel__body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.kv {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 13px 14px;
  border-radius: 13px;
  background: hsl(0 0% 100% / 0.025);
  border: 1px solid var(--line);
}
.kv .ico {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: var(--accent-soft);
  color: var(--accent-bright);
  border: 1px solid var(--accent-line);
}
.kv .ico svg {
  width: 17px;
  height: 17px;
}
.kv .grow {
  flex: 1;
  min-width: 0;
}
.kv .k {
  font-size: 14px;
  font-weight: 600;
}
.kv .s {
  font-size: 12.5px;
  color: var(--ink-mute);
}
.kv .on {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  padding: 4px 9px;
  border-radius: 999px;
  background: color-mix(in oklab, #34d399 16%, transparent);
  color: #5ee9b5;
  border: 1px solid color-mix(in oklab, #34d399 28%, transparent);
}

.term {
  font-family: var(--mono);
  font-size: 12.5px;
  line-height: 1.85;
  color: var(--ink-soft);
}
.term .c {
  color: var(--ink-faint);
}
.term .g {
  color: #5ee9b5;
}
.term .a {
  color: var(--accent-bright);
}
.term .cursor {
  display: inline-block;
  width: 8px;
  height: 15px;
  background: var(--accent);
  vertical-align: -2px;
  animation: blink 1.1s steps(1) infinite;
}
@keyframes blink {
  50% {
    opacity: 0;
  }
}

.donutrow {
  display: flex;
  gap: 14px;
  align-items: center;
}
.mini-ring {
  --p: 88;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  background: conic-gradient(
    var(--accent) calc(var(--p) * 1%),
    hsl(0 0% 100% / 0.08) 0
  );
}
.mini-ring span {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--surface);
  display: grid;
  place-items: center;
  font-size: 14px;
  font-weight: 700;
  border: 1px solid var(--line);
}

/* ---------- FOUNDER ---------- */
.founder {
  position: relative;
  padding: 104px 0;
  overflow: hidden;
}
.founder__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: radial-gradient(
    70% 100% at 50% 0%,
    var(--accent-soft),
    transparent 60%
  );
  opacity: 0.5;
}
.founder__inner {
  position: relative;
  z-index: 1;
  max-width: 780px;
  margin-inline: auto;
  text-align: center;
}
.founder__inner .eyebrow {
  margin-bottom: 18px;
}
.founder__inner h2 {
  margin-bottom: 30px;
}
.founder__body {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 18px;
  color: var(--ink-soft);
  font-size: 1.1rem;
  line-height: 1.7;
}
.founder__body strong {
  color: var(--ink);
}
.founder__body em {
  color: var(--accent-bright);
  font-style: normal;
  font-weight: 600;
}
.founder__lead {
  font-size: 1.4rem !important;
  font-weight: 600;
  color: var(--ink) !important;
  letter-spacing: -0.01em;
}
.founder__close {
  font-size: 1.3rem !important;
  font-weight: 700;
  color: var(--ink) !important;
}
.founder__rule {
  width: 48px;
  height: 3px;
  border-radius: 2px;
  background: var(--accent);
  margin: 6px 0;
  box-shadow: 0 0 16px var(--glow);
}

/* ---------- FAQ ---------- */
.faq {
  max-width: 820px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq__item {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: linear-gradient(180deg, var(--surface), var(--bg-2));
  overflow: hidden;
  transition:
    border-color 0.25s,
    background 0.25s;
}
.faq__item.is-open {
  border-color: var(--accent-line);
}
.faq__q {
  width: 100%;
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 22px 24px;
  background: transparent;
  border: 0;
  color: var(--ink);
  font-family: var(--font);
  font-size: 1.12rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.faq__q .sign {
  margin-left: auto;
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-2);
  color: var(--accent-bright);
  transition:
    transform 0.3s var(--ease),
    background 0.25s;
}
.faq__q .sign svg {
  width: 16px;
  height: 16px;
}
.faq__item.is-open .sign {
  transform: rotate(45deg);
  background: var(--accent-soft);
}
.faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s var(--ease);
}
.faq__a-inner {
  padding: 0 24px 24px;
  color: var(--ink-mute);
  font-size: 1.02rem;
  line-height: 1.65;
}

/* ---------- CTA ---------- */
.cta-wrap {
  padding: 40px 0 104px;
}
.cta {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--accent-line);
  background:
    radial-gradient(120% 140% at 50% 0%, var(--accent-soft), transparent 60%),
    linear-gradient(180deg, var(--surface-2), var(--bg-2));
  padding: clamp(48px, 7vw, 84px) var(--gutter);
  text-align: center;
  box-shadow:
    var(--shadow-card),
    0 40px 90px -50px var(--glow);
}
.cta::before {
  content: '';
  position: absolute;
  left: 50%;
  top: -40%;
  transform: translateX(-50%);
  width: 560px;
  height: 560px;
  border-radius: 50%;
  background: radial-gradient(closest-side, var(--glow), transparent 70%);
  opacity: 0.6;
  pointer-events: none;
}
.cta__inner {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin-inline: auto;
}
.cta h2 {
  font-size: clamp(2.1rem, 4.4vw, 3.4rem);
  margin-bottom: 20px;
}
.cta p {
  color: var(--ink-soft);
  font-size: 1.2rem;
  margin-bottom: 34px;
}
.cta__cta {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---------- CONTACT ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 48px;
  align-items: start;
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cinfo {
  display: flex;
  gap: 15px;
  align-items: flex-start;
  padding: 20px;
  border-radius: 16px;
  background: linear-gradient(180deg, var(--surface), var(--bg-2));
  border: 1px solid var(--line);
}
.cinfo__ico {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: var(--accent-soft);
  color: var(--accent-bright);
  border: 1px solid var(--accent-line);
}
.cinfo__ico svg {
  width: 21px;
  height: 21px;
}
.cinfo__label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 5px;
}
.cinfo__val {
  font-size: 15.5px;
  font-weight: 600;
  color: var(--ink);
}
.cinfo__val a {
  color: var(--accent-bright);
}
.cinfo__val .sub {
  display: block;
  font-size: 13px;
  font-weight: 400;
  color: var(--ink-mute);
  margin-top: 4px;
}

.contact-card {
  padding: 32px;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, var(--surface-2), var(--surface));
  border: 1px solid var(--line-2);
  box-shadow: var(--shadow-card);
}
.contact-card h3 {
  font-size: 1.4rem;
  margin-bottom: 7px;
}
.contact-card .sub {
  color: var(--ink-mute);
  font-size: 14.5px;
  margin-bottom: 24px;
}
.field {
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.field--row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.field--row > div {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
label {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-soft);
  letter-spacing: 0.01em;
}
input,
select,
textarea {
  width: 100%;
  font-family: var(--font);
  font-size: 15px;
  color: var(--ink);
  background: hsl(0 0% 100% / 0.03);
  border: 1px solid var(--line-2);
  border-radius: 12px;
  padding: 13px 15px;
  outline: none;
  transition:
    border-color 0.2s,
    box-shadow 0.2s,
    background 0.2s;
}
input::placeholder,
textarea::placeholder {
  color: var(--ink-faint);
}
input:focus,
select:focus,
textarea:focus {
  border-color: var(--accent-line);
  box-shadow: 0 0 0 4px var(--accent-soft);
  background: hsl(0 0% 100% / 0.05);
}
textarea {
  resize: vertical;
  min-height: 108px;
}
select {
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path fill='%237b8499' d='M0 0h12L6 8z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 15px center;
  padding-right: 38px;
}
.form-note {
  font-size: 12.5px;
  color: var(--ink-faint);
  text-align: center;
  margin-top: 14px;
}
.form-success {
  display: none;
  margin-top: 16px;
  padding: 14px 16px;
  border-radius: 12px;
  background: color-mix(in oklab, #34d399 14%, transparent);
  border: 1px solid color-mix(in oklab, #34d399 30%, transparent);
  color: #7defba;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
}
.form-success.show {
  display: block;
}
.form-error {
  display: none;
  margin-top: 16px;
  padding: 14px 16px;
  border-radius: 12px;
  background: color-mix(in oklab, #ff6b6b 14%, transparent);
  border: 1px solid color-mix(in oklab, #ff6b6b 30%, transparent);
  color: #ffb1b1;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
}
.form-error.show {
  display: block;
}

/* ---------- FOOTER ---------- */
.footer {
  border-top: 1px solid var(--line);
  padding: 70px 0 36px;
  position: relative;
  z-index: 1;
  background: var(--bg-2);
}
.footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 46px;
  border-bottom: 1px solid var(--line);
}
.footer__logo {
  height: 28px;
  margin-bottom: 16px;
}
.footer__about {
  color: var(--ink-mute);
  font-size: 14.5px;
  line-height: 1.6;
  max-width: 320px;
}
.footer__social {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}
.footer__social a {
  width: 38px;
  height: 38px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  background: hsl(0 0% 100% / 0.04);
  border: 1px solid var(--line-2);
  color: var(--ink-mute);
  transition:
    color 0.2s,
    border-color 0.2s,
    background 0.2s;
}
.footer__social a:hover {
  color: var(--accent-bright);
  border-color: var(--accent-line);
  background: var(--accent-soft);
}
.footer__social svg {
  width: 19px;
  height: 19px;
}
.footer__col h5 {
  font-size: 12px;
  font-family: var(--mono);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 16px;
  font-weight: 600;
}
.footer__col {
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.footer__col a {
  color: var(--ink-soft);
  font-size: 14.5px;
  transition: color 0.2s;
}
.footer__col a:hover {
  color: var(--accent-bright);
}
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 26px;
  flex-wrap: wrap;
  gap: 14px;
  color: var(--ink-faint);
  font-size: 13.5px;
}
.footer__bottom nav {
  display: flex;
  gap: 22px;
}
.footer__bottom a:hover {
  color: var(--ink-soft);
}

/* ---------- REVEAL ---------- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 0.7s var(--ease),
    transform 0.7s var(--ease);
}
.reveal.in {
  opacity: 1;
  transform: none;
}
.reveal[data-d='1'] {
  transition-delay: 0.08s;
}
.reveal[data-d='2'] {
  transition-delay: 0.16s;
}
.reveal[data-d='3'] {
  transition-delay: 0.24s;
}
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .floatcard {
    animation: none;
  }
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1000px) {
  .value-grid {
    grid-template-columns: 1fr 1fr;
  }
  .feature {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .feature--flip .feature__media {
    order: 0;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .footer__top {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .floatcard--a {
    left: -12px;
  }
  .floatcard--b {
    right: -10px;
  }
}
@media (max-width: 760px) {
  body {
    font-size: 16px;
  }
  .nav__links {
    display: none;
  }
  .nav__toggle {
    display: flex;
  }
  .nav__actions .btn {
    display: none;
  }
  .hero {
    padding: 120px 0 50px;
  }
  .hero__stage {
    margin-top: 46px;
  }
  .dash {
    grid-template-columns: 1fr;
  }
  .dash__side {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .floatcard {
    display: none;
  }
  .value-grid {
    grid-template-columns: 1fr;
  }
  .field--row {
    grid-template-columns: 1fr;
  }
  .footer__top {
    grid-template-columns: 1fr 1fr;
  }
  .section {
    padding: 72px 0;
  }
}
@media (max-width: 480px) {
  .footer__top {
    grid-template-columns: 1fr;
  }
  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}
