@charset "UTF-8";
/* Bundles Kodeus custom layers (foundations → sections → responsive → modal). */
/* ============================================================================
   Kodeus / 01-foundations.scss
   --------------------------------------------------------------------------
   - @font-face declarations
   - :root design tokens (colors, radii, spacing)
   - Base resets (html, body, a, img, ul, input)
   - .sr-only utility
   - Layout primitives: .site-shell, .section-stack, .site-panel
   - Shared typography: .section-title, .hero-title, .module-title,
     .body-copy
   - Shared chips/labels: .section-flag, .mono-label, .module-eyebrow,
     .market-pill, .status-chip, .executor-chip, .strategy-risk
   - Buttons / CTAs: .cta-image*, .corner-link*
   - Navigation primitives: .site-nav, .brand-link, .nav-pill*
   ========================================================================== */
@font-face {
  font-family: "FK Raster Smooth";
  src: url("../fonts/FKRasterGroteskTrial-Smooth.otf") format("opentype");
  font-display: swap;
}
@font-face {
  font-family: "FK Raster Sharp";
  src: url("../fonts/FKRasterGroteskTrial-Sharp.otf") format("opentype");
  font-display: swap;
}
@font-face {
  font-family: "ProtoMono";
  src: url("../fonts/ProtoMono-Regular.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "ProtoMono";
  src: url("../fonts/ProtoMono-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-display: swap;
}
@font-face {
  font-family: "Ranade";
  src: url("../fonts/Ranade-Regular.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "Ranade";
  src: url("../fonts/Ranade-Medium.woff2") format("woff2");
  font-weight: 500;
  font-display: swap;
}
:root {
  --page-bg: #07080a;
  --panel-bg: #0a0c0c;
  --panel-bg-soft: #131717;
  --panel-bg-warm: #202020;
  --line-soft: rgba(255, 255, 255, 0.1);
  --line-strong: rgba(33, 216, 122, 0.24);
  --text-main: #f4f6f3;
  --text-muted: rgba(244, 246, 243, 0.84);
  --text-soft: rgba(244, 246, 243, 0.6);
  --accent: #16d87d;
  --accent-strong: #0a874d;
  --shadow-panel: 0 28px 64px rgba(0, 0, 0, 0.4);
  --radius-xl: 30px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --page-gutter: clamp(12px, 1.6vw, 24px);
  --section-gap: 50px;
  --panel-pad: clamp(24px, 3vw, 40px);
}

html {
  scroll-behavior: smooth;
  max-width: 100%;
}

body {
  margin: 0;
  background: var(--page-bg);
  color: var(--text-main);
  font-family: "Ranade", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  overflow-x: hidden;
  padding: 20px;
}

a {
  color: inherit;
  text-decoration: none;
}

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

h1,
h2,
h3,
p,
ul {
  margin: 0;
}

button,
input {
  font: inherit;
}

.sr-only {
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
  position: absolute;
}

.site-shell {
  width: 98vw;
  margin: 0 auto;
  /* padding: 14px var(--page-gutter) 56px; */
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  background: #000000;
}

.section-stack {
  display: grid;
  gap: var(--section-gap);
}

.site-panel {
  background: radial-gradient(circle at 12% 14%, rgba(22, 216, 125, 0.08), transparent 28%), linear-gradient(180deg, rgba(17, 19, 19, 0.98) 0%, rgba(7, 8, 9, 0.98) 100%);
  /* border: 1px solid rgba(22, 216, 125, 0.14); */
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-panel);
  overflow: hidden;
  position: relative;
}
.site-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent 18%, transparent 82%, rgba(255, 255, 255, 0.01));
  pointer-events: none;
}

.section-title,
.hero-title,
.module-title {
  font-family: "FK Raster Smooth", "FK Raster Sharp", monospace;
  font-weight: 400;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

.section-title {
  font-size: clamp(46px, 5.2vw, 82px);
  line-height: 0.97;
}
.section-title--center {
  text-align: center;
}
.section-title--about {
  max-width: 680px;
}
.section-title--strategy {
  font-size: clamp(50px, 5.4vw, 86px);
}

.hero-title {
  font-size: clamp(56px, 6.8vw, 98px);
  line-height: 0.96;
}
.hero-title__outline {
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.26);
}
.hero-title__accent {
  color: #effff3;
  text-shadow: 0 0 16px rgba(22, 216, 125, 0.3);
}

.module-title {
  font-size: clamp(40px, 4vw, 58px);
  line-height: 1.02;
}

.body-copy {
  color: var(--text-muted);
  font-size: clamp(17px, 1.08vw, 20px);
  line-height: 1.55;
  text-wrap: pretty;
}
.body-copy--hero {
  max-width: 400px;
}

.section-flag,
.mono-label,
.module-eyebrow,
.market-pill,
.status-chip,
.executor-chip,
.strategy-risk {
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section-flag,
.module-eyebrow,
.status-chip,
.executor-chip,
.strategy-risk {
  font-family: "ProtoMono", "JetBrains Mono", monospace;
  font-size: 14px;
  line-height: 1.3;
}

.section-flag {
  width: fit-content;
  color: var(--text-main);
  margin: 0 auto 28px;
  display: flex;
  align-items: center;
  gap: 18px;
}
.section-flag::before, .section-flag::after {
  content: "///";
  color: rgba(22, 216, 125, 0.88);
  letter-spacing: 0.08em;
}
.section-flag--raster {
  font-family: "FK Raster Smooth", monospace;
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 22px;
}
.section-flag--strategy {
  margin: 0 0 26px;
  justify-content: flex-start;
  color: var(--accent);
}

.mono-label {
  font-family: "JetBrains Mono", "ProtoMono", monospace;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
}
.mono-label--hero {
  width: fit-content;
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  gap: 18px;
}
.mono-label--hero::before, .mono-label--hero::after {
  content: "///";
  color: var(--accent);
  letter-spacing: 0.06em;
}

.cta-image {
  display: inline-flex;
  flex: 0 0 auto;
  transition: transform 180ms ease, filter 180ms ease;
}
.cta-image:hover {
  /* filter: brightness(1.04); */
  /* transform: translateY(-2px); */
}
.cta-image--nav {
  width: min(100%, 168px);
  justify-self: end;
}
.cta-image--button {
  width: min(100%, 223px);
}
.cta-image--view {
  width: min(100%, 148px);
}
.cta-image--invoke {
  width: min(100%, 433px);
}

.corner-link {
  color: var(--text-main);
  font-family: "JetBrains Mono", "ProtoMono", monospace;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 10px 14px;
  position: relative;
  transition: color 180ms ease, transform 180ms ease;
}
.corner-link::before, .corner-link::after {
  content: "";
  width: 12px;
  height: 12px;
  border-color: var(--accent);
  border-style: solid;
  position: absolute;
}
.corner-link::before {
  border-width: 2px 0 0 2px;
  left: 0;
  top: 0;
}
.corner-link::after {
  border-width: 0 2px 2px 0;
  right: 0;
  bottom: 0;
}
.corner-link:hover {
  color: var(--accent);
  transform: translateY(-1px);
}
.corner-link--center {
  margin: 0 auto;
}

.site-nav {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: start;
  gap: 18px;
  position: relative;
  z-index: 7;
}

.brand-link {
  width: 150px;
  padding: 12px 4px 0;
}

.nav-pill {
  width: fit-content;
  min-width: min(100%, 560px);
  margin: 0 auto;
  padding: 18px 34px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  background: rgba(24, 26, 26, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-top: 0;
  border-radius: 0 0 24px 24px;
  box-shadow: 0 18px 28px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(14px);
}
.nav-pill__link {
  color: var(--text-muted);
  font-family: "JetBrains Mono", "ProtoMono", monospace;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
  white-space: nowrap;
}
.nav-pill__link span {
  color: rgba(255, 255, 255, 0.38);
}
.nav-pill__new {
  color: var(--accent) !important;
}

.container {
  max-width: min(80%, 1440px);
  width: min(80%, 1440px);
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .container {
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
  }
  body {
    padding: 0px;
  }
}
/* ============================================================================
   Kodeus / 02-sections (entry)
   --------------------------------------------------------------------------
   Desktop section styles in document order. Partial files live in sections/.
   ========================================================================== */
.hero-panel {
  height: 90vh !important;
  padding: 0 var(--panel-pad) 126px;
  background: linear-gradient(180deg, rgba(6, 8, 9, 0.96) 0%, rgba(4, 5, 6, 0.96) 100%), url("../../images/cloud-img.png");
  background-position: center, center;
  background-size: cover, cover;
  border-radius: 13px !important;
  display: block;
}

/* .hero-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 36%, rgba(22, 216, 125, 0.1), transparent 26%),
    radial-gradient(circle at 74% 14%, rgba(255, 255, 255, 0.05), transparent 18%);
  pointer-events: none;
} */
.hero-badge {
  position: absolute;
  left: 26px;
  top: 106px;
  z-index: 6;
}

.hero-announce {
  width: fit-content;
  max-width: calc(100% - 64px);
  padding: 10px 18px 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.92);
  font-family: "FK Raster Smooth", monospace;
  font-size: 15px;
  line-height: 1.25;
  background: rgba(22, 24, 24, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  box-shadow: 0 0 0 1px rgba(22, 216, 125, 0.04), 0 18px 36px rgba(0, 0, 0, 0.2);
  position: absolute;
  left: 50%;
  top: 138px;
  transform: translateX(-50%);
  z-index: 6;
  overflow: hidden;
}
.hero-announce::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 22%, rgba(255, 255, 255, 0.08) 46%, transparent 70%);
  transform: translateX(-180%);
  animation: subtle-shine 5s ease-in-out infinite;
}
.hero-announce__tag {
  color: var(--accent);
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(360px, 0.94fr) minmax(0, 1.1fr);
  align-items: end;
  gap: 30px;
  padding-top: 158px;
  position: relative;
  z-index: 3;
}

.hero-statue-wrap {
  min-height: 640px;
  position: relative;
}

.hero-statue {
  width: min(100%, 690px);
  position: absolute;
  left: -38px;
  bottom: -22px;
  filter: drop-shadow(0 24px 44px rgba(255, 255, 255, 0.1)) drop-shadow(0 30px 70px rgba(0, 0, 0, 0.55));
  z-index: -1 !important;
}

.hero-init {
  width: min(100%, 230px);
  position: absolute;
  right: 34px;
  bottom: 10px;
}

.hero-copy {
  padding: 42px 28px 0 0;
  position: relative;
}

.hero-divider {
  width: 100%;
  height: 1px;
  margin: 44px 0 30px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.05));
}

.hero-lower {
  display: grid;
  grid-template-columns: minmax(320px, 390px) minmax(250px, 1fr);
  align-items: start;
  gap: 46px;
}

.hero-agent-card {
  padding-top: 18px;
  position: relative;
}
.hero-agent-card::before {
  content: "";
  width: 1px;
  height: 160px;
  background: rgba(22, 216, 125, 0.22);
  position: absolute;
  left: 20px;
  top: 0;
}
.hero-agent-card::after {
  content: "";
  width: calc(100% - 36px);
  height: 1px;
  background: rgba(22, 216, 125, 0.18);
  position: absolute;
  left: 20px;
  top: 160px;
}
.hero-agent-card__label {
  margin-bottom: 150px;
  padding-left: 40px;
  color: rgba(255, 255, 255, 0.86);
  font-family: "ProtoMono", monospace;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.hero-agent-card__dot {
  width: 12px;
  height: 12px;
  border-radius: 3px;
  background: linear-gradient(180deg, rgba(22, 216, 125, 0.9), rgba(10, 135, 77, 0.5));
  box-shadow: 0 0 14px rgba(22, 216, 125, 0.4);
  display: inline-block;
  margin-right: 10px;
}
.hero-agent-card__body {
  padding: 18px 18px 16px;
  background: rgba(12, 14, 14, 0.92);
  border: 1px solid rgba(22, 216, 125, 0.16);
  border-radius: 22px;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.28);
}

.hero-meet-row {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.95);
  font-family: "ProtoMono", monospace;
  font-size: 15px;
  letter-spacing: 0.02em;
}
.hero-meet-row img {
  width: 36px;
  height: 36px;
}

.hero-meet-text,
.hero-role-text {
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
}

.hero-role-text {
  letter-spacing: 0.12em;
  margin-left: auto;
}

.hero-input {
  width: 100%;
  min-height: 58px;
  margin-top: 14px;
  padding: 16px 18px;
  color: rgba(255, 255, 255, 0.44);
  font-family: "ProtoMono", monospace;
  font-size: 14px;
  letter-spacing: 0.14em;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  text-transform: uppercase;
}

.hero-side {
  padding-top: 4px;
}

.hero-ctas {
  margin-top: 28px;
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.hero-status {
  padding: 0;
  list-style: none;
  color: rgba(255, 255, 255, 0.24);
  font-family: "ProtoMono", monospace;
  font-size: 13px;
  letter-spacing: 0.12em;
  position: absolute;
  right: -2px;
  bottom: -94px;
  display: grid;
  gap: 12px;
}

.hero-compatible {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0 0 0;
  z-index: 5;
}

.logo-marquee {
  width: 100%;
  overflow: hidden;
  background: rgba(22, 216, 125, 0.06);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  scrollbar-width: none;
}

.logo-marquee::-webkit-scrollbar {
  display: none;
}

.logo-marquee__track {
  width: max-content;
  min-width: 100%;
  padding: 18px 0;
  display: flex;
  align-items: center;
  gap: 84px;
  animation: marquee-scroll 28s linear infinite;
}

.logo-marquee__track img {
  max-height: 28px;
  opacity: 0.92;
  filter: brightness(1.2) saturate(1.08);
}

/* ============================================================================
   Hero — Mobile composition (<=768px)
   Dedicated markup that replaces the desktop hero layout on small viewports.
   ========================================================================== */
.hero-mobile {
  display: none;
  position: relative;
  z-index: 5;
  padding: 5px 4px 0;
}

.hero-mobile__nav {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 6px 4px 0;
}

.hero-mobile__menu {
  width: 38px;
  height: 38px;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  padding: 0 8px;
  background: transparent;
  border: 0;
  cursor: pointer;
  justify-self: start;
}
.hero-mobile__menu span {
  display: block;
  width: 22px;
  height: 2px;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 2px;
}

.hero-mobile__brand {
  display: inline-flex;
  align-items: center;
  justify-self: center;
}
.hero-mobile__brand img {
  width: 90px;
  height: auto;
}

.hero-mobile__cta-nav {
  justify-self: end;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px 13px;
  color: #06231a;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  white-space: nowrap;
  background: linear-gradient(180deg, #1ee089 0%, #14b069 100%);
  border-radius: 8px;
  box-shadow: 0 0 0 1px rgba(22, 216, 125, 0.45), 0 0 22px rgba(22, 216, 125, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.3);
  cursor: pointer;
  isolation: isolate;
  overflow: hidden;
}

.hero-mobile__announce {
  width: 100%;
  max-width: 100%;
  margin: 22px auto 0;
  padding: 9px 10px 10px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 13px;
  background: rgba(22, 24, 24, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
}

.hero-mobile__announce-tag {
  color: var(--accent);
  font-weight: 600;
  letter-spacing: 0.14em;
}

.hero-mobile__announce-text {
  color: rgba(255, 255, 255, 0.86);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
  font-family: "FK Raster Smooth", "FK Raster Sharp", monospace;
}

.hero-mobile__announce-arrow {
  color: rgba(255, 255, 255, 0.7);
}

.hero-mobile__spacer {
  height: clamp(180px, 36vh, 280px);
}

.hero-mobile__title {
  display: grid;
  gap: 6px;
  padding: 0 16px;
  color: #fff;
  font-family: "FK Raster Smooth", "FK Raster Sharp", monospace;
  font-size: 36px;
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.01em;
  text-wrap: balance;
}

.hero-mobile__title-row {
  display: inline-flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.hero-mobile__image {
  width: 100%;
  margin: 0 auto;
}

.hero-mobile__title-row--second {
  padding-left: 6px;
}

.hero-mobile__title-chevrons {
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.42);
  font-size: 0.62em;
  letter-spacing: -0.08em;
  transform: translateY(-0.08em);
}

.hero-mobile__title-cross {
  color: var(--accent);
  font-size: 0.34em;
  font-family: "ProtoMono", "JetBrains Mono", monospace;
  transform: translate(-0.4em, -0.6em);
  margin: 0 -0.3em 0 -0.2em;
}

.hero-mobile__title-dash {
  width: 0.7em;
  height: 4px;
  margin-right: 4px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  transform: translateY(-0.28em);
  background: transparent;
  border-radius: 1px;
}

.hero-mobile__divider {
  width: calc(100% - 16px);
  height: 1px;
  margin: 10px auto 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.04));
}

.hero-mobile__copy {
  margin: 10px auto 0;
  padding: 0 16px;
  max-width: 36ch;
  color: rgba(255, 255, 255, 0.82);
  font-family: "Ranade", Arial, sans-serif;
  font-size: 15px;
  line-height: 1.4;
  text-align: center;
}

.hero-mobile__ctas {
  /* margin: 26px 0 36px; */
  padding: 0 12px;
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: nowrap;
  justify-content: center;
}

.hero-mobile__cta-primary,
.hero-mobile__cta-primary img {
  width: 196px;
  max-width: 100%;
  height: auto;
}

.hero-mobile__cta-secondary,
.hero-mobile__cta-secondary img {
  width: 118px;
  height: auto;
}

/* Mobile breakpoint swap lives in scss/_03-responsive/_part-b.scss so it wins
   over the desktop !important refinements in _part-a.scss. */
/* ============================================================================
   Mobile slide-down navigation menu
   Triggered by .hero-mobile__menu. Adds .is-open on .mobile-menu when active.
   ========================================================================== */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 250;
  display: none;
  pointer-events: none;
}
.mobile-menu.is-open {
  display: block;
  pointer-events: auto;
}
.mobile-menu__backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  margin: 0;
  padding: 0;
  background: rgba(2, 4, 4, 0.62);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  transition: opacity 220ms ease;
  cursor: pointer;
}
.mobile-menu.is-open .mobile-menu__backdrop {
  opacity: 1;
}
.mobile-menu__panel {
  position: relative;
  margin: 10px;
  padding: 14px 14px 18px;
  background: linear-gradient(180deg, rgba(14, 18, 17, 0.96) 0%, rgba(8, 10, 10, 0.96) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.55), inset 0 0 0 1px rgba(22, 216, 125, 0.04);
  transform: translateY(-14px);
  opacity: 0;
  transition: transform 260ms cubic-bezier(0.2, 0.85, 0.3, 1), opacity 220ms ease;
}
.mobile-menu.is-open .mobile-menu__panel {
  transform: translateY(0);
  opacity: 1;
}
.mobile-menu__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4px 6px 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.mobile-menu__eyebrow {
  color: rgba(22, 216, 125, 0.78);
  font-family: "JetBrains Mono", "ProtoMono", monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.mobile-menu__close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  padding: 0;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  color: rgba(255, 255, 255, 0.86);
  cursor: pointer;
  transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease;
}
.mobile-menu__close:hover, .mobile-menu__close:focus-visible {
  background: rgba(22, 216, 125, 0.12);
  border-color: rgba(22, 216, 125, 0.42);
  color: #fff;
  outline: none;
}
.mobile-menu__nav {
  display: flex;
  flex-direction: column;
  padding: 8px 0 6px;
}
.mobile-menu__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 10px;
  color: rgba(255, 255, 255, 0.92);
  font-family: "JetBrains Mono", "ProtoMono", monospace;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.2;
  text-decoration: none;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.06);
  transition: color 160ms ease, padding-left 200ms ease, background-color 160ms ease;
}
.mobile-menu__link:last-of-type {
  border-bottom: 0;
}
.mobile-menu__link:hover, .mobile-menu__link:focus-visible {
  color: #16d87d;
  padding-left: 16px;
  background: linear-gradient(90deg, rgba(22, 216, 125, 0.06), transparent 70%);
  outline: none;
}
.mobile-menu__link-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.mobile-menu__link-new {
  display: inline-block;
  padding: 2px 6px 3px;
  color: #16d87d;
  font-size: 9px;
  letter-spacing: 0.16em;
  background: rgba(22, 216, 125, 0.12);
  border: 1px solid rgba(22, 216, 125, 0.32);
  border-radius: 999px;
}
.mobile-menu__link-key {
  color: rgba(255, 255, 255, 0.34);
  font-size: 13px;
  font-weight: 600;
}
.mobile-menu__cta-wrap {
  margin-top: 12px;
  padding: 0 6px;
  display: flex;
  justify-content: stretch;
}
.mobile-menu__cta-wrap .cta-image--nav {
  width: 100%;
  margin-top: 0;
  margin-left: 0;
  box-sizing: border-box;
  justify-content: center;
}
.mobile-menu__footnote {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  padding: 0 6px;
  color: rgba(255, 255, 255, 0.32);
  font-family: "JetBrains Mono", "ProtoMono", monospace;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.mobile-menu__footnote-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #16d87d;
  box-shadow: 0 0 8px rgba(22, 216, 125, 0.7);
}

.hero-mobile__menu {
  transition: transform 200ms ease;
}
.hero-mobile__menu span {
  transition: transform 200ms ease, opacity 160ms ease;
}
.hero-mobile__menu.is-active span:nth-child(1) {
  transform: translateY(4px) rotate(45deg);
}
.hero-mobile__menu.is-active span:nth-child(2) {
  transform: translateY(-4px) rotate(-45deg);
}

body.mobile-menu-open {
  overflow: hidden;
}

@media only screen and (max-width: 768px) {
  body .hero-panel {
    display: none !important;
  }
}
.about-panel {
  min-height: 688px;
  padding: 34px 36px 30px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(11, 17, 14, 0.98) 0%, rgba(8, 10, 10, 0.98) 100%), url("../../images/cloud-img.png");
  background-position: center;
  background-size: cover;
}
.about-panel .about-frame {
  width: calc(100% - 48px);
  height: calc(100% - 50px);
  position: absolute;
  left: 24px;
  top: 24px;
  z-index: 1;
  object-fit: fill;
  opacity: 0.9;
}
.about-panel .about-ticker {
  height: 216px;
  position: absolute;
  left: 74px;
  top: 104px;
  z-index: 2;
}
.about-panel .status-chip {
  width: fit-content;
  color: var(--accent);
  padding: 8px 12px;
  background: rgba(22, 216, 125, 0.08);
  border: 1px solid rgba(22, 216, 125, 0.12);
  border-radius: 8px;
  position: absolute;
  right: 20px;
  top: 20px;
  z-index: 5;
}
.about-panel .about-figure-wrap {
  width: min(100%, 790px);
  position: absolute;
  left: 48px;
  bottom: 20px;
  z-index: 2;
}
.about-panel .about-figure-wrap .about-statue {
  position: absolute;
  left: 62px;
  bottom: 0;
  z-index: 2;
  filter: drop-shadow(0 24px 42px rgba(255, 255, 255, 0.08));
  -webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 78%, rgba(0, 0, 0, 0) 100%);
  mask-image: linear-gradient(to bottom, #000 0%, #000 78%, rgba(0, 0, 0, 0) 100%);
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}
.about-panel .about-figure-wrap .about-wordmark {
  width: min(100%, 756px);
  position: absolute;
  left: 18px;
  bottom: 4px;
  z-index: 3;
}
.about-panel .about-copy {
  width: 520px;
  margin: 0;
  padding: 0;
  position: absolute;
  right: 214px;
  top: 84px;
  z-index: 4;
  gap: 14px;
  display: grid;
}
.about-panel .about-copy > .body-copy:not(.about-copy__body) {
  display: none !important;
}
.about-panel .about-copy .about-title {
  width: 100%;
  max-width: none;
  display: grid;
  gap: 6px;
  text-wrap: initial !important;
  font-family: "Seona Demo", serif;
  font-weight: 400;
  letter-spacing: -0.035em;
  font-size: 64px;
  line-height: 0.92;
}
.about-panel .about-copy .about-title.reveal-heading {
  opacity: 1 !important;
  filter: none !important;
  transform: none !important;
  visibility: visible !important;
}
.about-panel .about-copy .about-title .about-title__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}
.about-panel .about-copy .about-title .about-title__top-text {
  display: block;
}
.about-panel .about-copy .about-title .about-title__slashes {
  display: block;
  flex: 1 1 auto;
  color: rgba(255, 255, 255, 0.94);
  font-family: "ProtoMono", "JetBrains Mono", monospace;
  font-size: 14px;
  letter-spacing: -0.1em;
  line-height: 1;
  transform: none;
  white-space: nowrap;
}
.about-panel .about-copy .about-title .about-title__bottom {
  display: block;
  padding-left: 136px;
  white-space: nowrap;
}
.about-panel .about-copy .about-copy__body {
  max-width: 34ch;
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-family: "Ranade", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.32;
  letter-spacing: -0.02em;
}
.about-panel .about-copy .about-copy__body-line {
  display: block;
  white-space: nowrap;
}
.about-panel .about-stats {
  width: 250px;
  display: grid;
  gap: 12px;
  position: absolute;
  right: 40px;
  top: 430px;
  z-index: 4;
}
.about-panel .about-stats .stat-chip {
  min-height: 64px;
  padding: 10px 12px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 12px;
  background: rgba(23, 25, 26, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
}
.about-panel .about-stats .stat-chip span {
  color: rgba(255, 255, 255, 0.9);
  font-family: "ProtoMono", "JetBrains Mono", monospace;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.12em;
}
.about-panel .about-stats .stat-chip strong {
  color: var(--accent);
  font-family: "FK Raster Smooth", monospace;
  font-size: 28px;
  line-height: 1;
}

/* Dedicated mobile layout — separate from desktop `.about-panel` composition */
.about-panel-mobile {
  display: none;
  position: relative;
  border-radius: 6px;
  border: 1px solid var(--accent);
  background: rgba(22, 216, 125, 0.1);
  box-shadow: none;
  overflow: hidden;
  width: 95%;
  margin: 0 auto;
}
.about-panel-mobile__inner {
  position: relative;
  z-index: 1;
  padding: 52px 16px 18px 14px;
}
.about-panel-mobile__top {
  position: relative;
  padding-right: 6px;
}
.about-panel-mobile__status {
  position: absolute;
  top: -38px;
  right: 2px;
  padding: 6px 10px;
  border-radius: 6px;
  color: var(--accent);
  background: rgba(22, 216, 125, 0.08);
  border: 1px solid rgba(22, 216, 125, 0.22);
  font-family: "ProtoMono", "JetBrains Mono", monospace;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.2;
  text-transform: lowercase;
  white-space: nowrap;
}
.about-panel-mobile__title {
  margin: 0;
  display: grid;
  gap: 4px;
  font-family: "Seona Demo", serif;
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 0.95;
  color: #fff;
  font-size: clamp(36px, 11vw, 46px);
  text-wrap: balance;
}
.about-panel-mobile__title-row {
  display: block;
}
.about-panel-mobile__title-row--second {
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap;
}
.about-panel-mobile__chevrons {
  font-family: "ProtoMono", "JetBrains Mono", monospace;
  font-size: clamp(22px, 6.5vw, 30px);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.38);
  letter-spacing: -0.12em;
  transform: translateY(2px);
}
.about-panel-mobile__title-rest {
  flex: 1 1 auto;
  min-width: 0;
}
.about-panel-mobile__body {
  position: relative;
  margin: 16px 0 0;
  padding: 0 24px 12px 0;
  max-width: 100%;
  color: rgba(255, 255, 255, 0.88);
  font-family: "Ranade", Arial, sans-serif;
  font-size: 15px;
  line-height: 1.45;
  letter-spacing: -0.02em;
}
.about-panel-mobile__body-strong {
  font-weight: 700;
  color: #fff;
}
.about-panel-mobile__crosshair {
  position: absolute;
  right: 4px;
  top: 4px;
  width: 12px;
  height: 12px;
  pointer-events: none;
}
.about-panel-mobile__crosshair::before, .about-panel-mobile__crosshair::after {
  content: "";
  position: absolute;
  background: var(--accent);
  border-radius: 1px;
}
.about-panel-mobile__crosshair::before {
  left: 50%;
  top: 0;
  width: 1.5px;
  height: 100%;
  transform: translateX(-50%);
}
.about-panel-mobile__crosshair::after {
  top: 50%;
  left: 0;
  width: 100%;
  height: 1.5px;
  transform: translateY(-50%);
}
.about-panel-mobile__connector {
  display: block;
  width: 100%;
  height: 44px;
  margin: 0 0 4px;
  color: var(--accent);
  flex-shrink: 0;
}
.about-panel-mobile__bottom {
  display: grid;
  grid-template-columns: 4px minmax(0, 1fr) minmax(104px, 49%);
  gap: 6px 8px;
  align-items: end;
  padding-top: 4px;
}
.about-panel-mobile__rail {
  position: relative;
  align-self: stretch;
  min-height: 148px;
}
.about-panel-mobile__rail::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 8px;
  bottom: 56px;
  width: 0;
  border-left: 1px dashed rgba(22, 216, 125, 0.4);
  transform: translateX(-50%);
}
.about-panel-mobile__rail::after {
  content: "";
  position: absolute;
  left: 2px;
  top: 50%;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-right: 8px solid var(--accent);
}
.about-panel-mobile__visual {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  min-width: 0;
  padding-bottom: 2px;
}
.about-panel-mobile__figure {
  position: relative;
  width: 100%;
  min-height: 120px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 10px 12px 0;
}
.about-panel-mobile__corner {
  position: absolute;
  width: 16px;
  height: 16px;
  pointer-events: none;
  z-index: 2;
}
.about-panel-mobile__corner--tr {
  top: 2px;
  right: 8px;
  border-top: 2px solid var(--accent);
  border-right: 2px solid var(--accent);
}
.about-panel-mobile__corner--br {
  right: 8px;
  bottom: 18px;
  border-bottom: 2px solid var(--accent);
  border-right: 2px solid var(--accent);
}
.about-panel-mobile__statue {
  position: relative;
  z-index: 1;
  max-height: 132px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  object-position: bottom center;
  filter: drop-shadow(0 12px 24px rgba(255, 255, 255, 0.06));
  -webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 82%, rgba(0, 0, 0, 0) 100%);
  mask-image: linear-gradient(to bottom, #000 0%, #000 82%, rgba(0, 0, 0, 0) 100%);
}
.about-panel-mobile__wordmark {
  margin: -4px 0 0;
  padding: 0;
  font-family: "Seona Demo", serif;
  font-size: clamp(28px, 9vw, 38px);
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: 0.06em;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--accent);
  text-transform: uppercase;
}
.about-panel-mobile__stats {
  display: grid;
  gap: 8px;
  align-content: end;
}
.about-panel-mobile__stat-label {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.about-panel-mobile__stat-label span {
  color: rgba(255, 255, 255, 0.92);
  font-family: "ProtoMono", "JetBrains Mono", monospace;
  font-size: 8px;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0.1em;
}
.about-panel-mobile__stat {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 6px 8px;
  padding: 8px 14px 8px 16px;
  min-height: 56px;
  background: rgba(20, 22, 23, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 4px;
  background-image: radial-gradient(circle at 6px 6px, rgba(255, 255, 255, 0.22) 1.5px, transparent 2px), radial-gradient(circle at calc(100% - 6px) 6px, rgba(255, 255, 255, 0.22) 1.5px, transparent 2px), radial-gradient(circle at 6px calc(100% - 6px), rgba(255, 255, 255, 0.22) 1.5px, transparent 2px), radial-gradient(circle at calc(100% - 6px) calc(100% - 6px), rgba(255, 255, 255, 0.22) 1.5px, transparent 2px);
}
.about-panel-mobile__stat-value {
  color: var(--accent);
  font-family: "FK Raster Smooth", monospace;
  font-size: clamp(22px, 7vw, 28px);
  font-weight: 400;
  line-height: 1;
}

@media only screen and (max-width: 768px) {
  .about-panel.about-panel--desktop {
    display: none !important;
  }
  .about-panel-mobile {
    display: block;
  }
}
:root {
  --market-tabs-sticky-top: 14px;
}

.market-shell {
  position: relative;
  display: grid;
  gap: 28px;
}
.market-shell .market-header {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 16px;
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 500;
  background: #000000;
}
.market-shell .market-header .section-title {
  width: min(100%, 580px);
  max-width: 520px;
  font-size: 52px;
  line-height: 0.94;
}
.market-shell .market-header .market-pills {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
  width: min(100%, 520px);
  justify-self: end;
  margin-left: auto;
  flex-wrap: nowrap;
}
.market-shell .market-header .market-pill {
  height: 36px;
  padding: 0 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "FK Raster Smooth", monospace;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-align: center;
  text-wrap: balance;
  border-radius: 8px;
  background: rgba(18, 18, 18, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.5);
  white-space: nowrap;
}
.market-shell .market-header .market-pill.is-active {
  background: #2fe38a;
  color: #031b11;
  border-color: transparent;
}
.market-shell .module-stack {
  display: grid;
  gap: 30px;
}
.market-shell .module-stack .module-card {
  min-height: 460px;
  padding: 30px 34px;
  display: grid;
  grid-template-columns: minmax(360px, 460px) minmax(0, 1fr);
  align-items: stretch;
  gap: 30px;
}
.market-shell .module-stack .module-card--primary {
  min-height: 500px;
}
.market-shell .module-stack .module-card .module-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}
.market-shell .module-stack .module-card .module-eyebrow {
  padding: 6px 10px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.72);
  font-family: "FK Raster Smooth", monospace;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: lowercase;
}
.market-shell .module-stack .module-card .module-eyebrow--coming {
  background: rgba(22, 216, 125, 0.12);
  color: var(--accent);
}
.market-shell .module-stack .module-card .module-title {
  max-width: 16ch;
  text-wrap: balance;
  font-size: clamp(40px, 4vw, 58px);
  line-height: 1.02;
}
.market-shell .module-stack .module-card .body-copy {
  max-width: 18em;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
  line-height: 1.45;
}
.market-shell .module-stack .module-card:nth-of-type(3) .body-copy {
  max-width: 34em;
}
.market-shell .module-stack .module-card .module-points {
  padding: 0;
  margin-top: auto;
  list-style: none;
  display: grid;
  gap: 18px;
}
.market-shell .module-stack .module-card .module-points li {
  padding-left: 24px;
  color: var(--accent);
  font-family: "ProtoMono", monospace;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: lowercase;
  line-height: 1.35;
  position: relative;
}
.market-shell .module-stack .module-card .module-points li::before {
  content: "";
  width: 16px;
  height: 16px;
  border-radius: 3px;
  background: rgba(22, 216, 125, 0.14);
  border: 1px solid rgba(22, 216, 125, 0.1);
  position: absolute;
  left: 0;
  top: 2px;
}
.market-shell .module-stack .module-card .module-visual {
  min-width: 0;
  position: relative;
  align-self: stretch;
  min-height: 100%;
  height: 100%;
  overflow: visible;
}
.market-shell .module-stack .module-card .module-visual img {
  display: block;
  position: absolute;
  right: 0;
  bottom: -30px;
  width: 100%;
  max-height: calc(100% + 30px);
  object-fit: contain;
  object-position: center bottom;
  margin: 0;
}

@media screen and (max-width: 768px) {
  #market.market-shell {
    gap: 20px;
    padding: 10px;
    box-sizing: border-box;
  }
  #market.market-shell .market-header {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
    padding-block: 12px 14px;
  }
  #market.market-shell .market-header .section-title {
    font-size: 38px;
    text-align: center;
  }
  #market.market-shell .market-header .market-pills {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    width: 100%;
    max-width: none;
    margin: 0;
    justify-content: stretch;
    justify-self: stretch;
  }
  #market.market-shell .market-header .market-pills .market-pill {
    width: 100%;
    padding: 10px 7px;
    font-size: 9px;
    letter-spacing: 0.08em;
    line-height: 1.25;
    text-wrap: balance;
    white-space: normal;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  #market.market-shell .module-stack {
    gap: 18px;
  }
  #market.market-shell .module-stack .module-card {
    min-height: 0 !important;
    padding: 22px 18px !important;
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 20px !important;
    align-items: stretch !important;
  }
  #market.market-shell .module-stack .module-card--primary {
    min-height: 0 !important;
  }
  #market.market-shell .module-stack .module-card .module-copy {
    order: 1;
  }
  #market.market-shell .module-stack .module-card .module-title {
    max-width: none !important;
    font-size: 24px;
  }
  #market.market-shell .module-stack .module-card .body-copy {
    max-width: none !important;
    font-size: 16px;
  }
  #market.market-shell .module-stack .module-card:nth-of-type(3) .body-copy {
    max-width: none !important;
  }
  #market.market-shell .module-stack .module-card .module-visual {
    order: 2;
    align-self: stretch !important;
    min-height: auto !important;
    height: auto !important;
    overflow: visible !important;
    justify-content: center !important;
    align-items: center !important;
  }
  #market.market-shell .module-stack .module-card .module-visual img {
    position: relative !important;
    right: auto !important;
    bottom: auto !important;
    margin-top: 0 !important;
    width: 100%;
    max-height: min(48vh, 320px);
    object-position: center center !important;
  }
}

/* Executors section — base layout + desktop refinements (ex _03-responsive/part-a). */
.executors-panel {
  padding: 42px;
  background: linear-gradient(180deg, rgba(8, 9, 10, 0.98) 0%, rgba(6, 7, 8, 0.98) 100%), url("../../images/cloud-img.png");
  background-position: center;
  background-size: cover;
}

.pillar {
  width: 54px;
  background: linear-gradient(180deg, rgba(22, 216, 125, 0.08), rgba(22, 216, 125, 0.08)) center top/1px 100% no-repeat, repeating-linear-gradient(180deg, rgba(22, 216, 125, 0.18) 0 2px, transparent 2px 8px) center/10px 100% no-repeat;
  border-left: 1px solid rgba(22, 216, 125, 0.18);
  border-right: 1px solid rgba(22, 216, 125, 0.18);
  position: absolute;
  top: 96px;
  bottom: 42px;
  opacity: 0.7;
}

.pillar::before {
  content: "";
  width: 80px;
  height: 14px;
  border-top: 1px solid rgba(22, 216, 125, 0.16);
  border-bottom: 1px solid rgba(22, 216, 125, 0.08);
  position: absolute;
  left: -14px;
  top: -18px;
}

.pillar--left {
  left: 28px;
}

.pillar--right {
  right: 28px;
}

.executors-grid {
  margin-top: 38px;
  display: grid;
  grid-template-columns: 1.02fr 1.64fr 0.92fr;
  grid-template-areas: "story trust social" "story gains social" "story quote quote";
  gap: 16px;
  position: relative;
  z-index: 2;
}

.executor-card {
  min-width: 0;
  padding: 22px;
  background: rgba(7, 9, 10, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
}

.story-card {
  grid-area: story;
  display: grid;
  align-content: start;
  gap: 20px;
}

.story-card__avatar {
  width: 96px;
  height: 96px;
  object-fit: cover;
}

.executor-chip {
  width: fit-content;
  color: var(--accent);
  padding: 6px 10px;
  background: rgba(22, 216, 125, 0.1);
  border-radius: 6px;
}

.story-card__quote {
  color: var(--text-muted);
  font-size: clamp(20px, 1.9vw, 28px);
  line-height: 1.34;
  text-wrap: balance;
}

.story-card__footer {
  margin-top: auto;
  padding-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.story-card__name {
  font-size: 18px;
}

.story-card__meta {
  color: var(--text-soft);
  font-size: 16px;
}

.story-card__icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--text-main);
  font-family: "ProtoMono", monospace;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 6px;
}

.trust-card {
  grid-area: trust;
  min-height: 90px;
  display: flex;
  align-items: center;
  gap: 18px;
}

.trust-card__stars {
  color: var(--accent);
  font-size: 15px;
  letter-spacing: 0.2em;
}

.trust-card__text {
  max-width: 280px;
  color: var(--text-muted);
  font-family: "ProtoMono", monospace;
  font-size: 14px;
  line-height: 1.45;
}

.trust-card__portrait {
  width: 78px;
  height: 78px;
  object-fit: cover;
  margin-left: auto;
  border-radius: 8px;
}

.gains-card {
  grid-area: gains;
  display: grid;
  grid-template-columns: minmax(230px, 0.95fr) minmax(0, 1fr);
  gap: 20px;
  align-items: stretch;
}

.gains-card__media {
  position: relative;
}

.gains-card__media img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  border-radius: 10px;
}

.gains-card__play {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  color: var(--text-main);
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
  border-radius: 999px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.gains-card__content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: flex-start;
}

.gains-card__percent {
  color: var(--accent);
  font-family: "FK Raster Smooth", monospace;
  font-size: clamp(44px, 4vw, 68px);
  line-height: 0.94;
}

.gains-card__headline {
  color: var(--text-main);
  font-size: clamp(24px, 2vw, 40px);
  line-height: 1.14;
  text-wrap: balance;
}

.gains-card__sub {
  color: var(--text-soft);
  font-family: "ProtoMono", monospace;
  font-size: 15px;
}

.social-card {
  grid-area: social;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.social-card__mark {
  color: var(--accent);
  font-size: 34px;
  line-height: 1;
}

.social-card__profile {
  display: flex;
  align-items: center;
  gap: 12px;
}

.social-card__avatar {
  width: 46px;
  height: 46px;
}

.social-card__name {
  font-size: 16px;
}

.social-card__handle,
.social-card__footer {
  color: var(--text-soft);
  font-family: "ProtoMono", monospace;
  font-size: 11px;
  letter-spacing: 0.06em;
}

.social-card__quote {
  color: var(--text-muted);
  font-size: 18px;
  line-height: 1.42;
}

.executor-chip--social {
  margin-top: auto;
}

.quote-card {
  grid-area: quote;
  min-height: 134px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.quote-card__text {
  max-width: 660px;
  font-family: "FK Raster Smooth", monospace;
  font-size: clamp(34px, 3vw, 54px);
  line-height: 1.02;
}

/* --- Merged from _03-responsive/part-a (preserve rule order) --- */
.executors-grid {
  grid-template-columns: 0.92fr 1.24fr 0.9fr;
}

.executors-panel {
  padding: 30px 28px 24px;
  overflow: visible;
}

.executors-panel .section-title {
  margin-bottom: 20px;
}

.pillar {
  width: 70px;
  top: 122px;
  bottom: 24px;
  background: none;
  border: 0;
  z-index: 0;
  opacity: 1;
}

.pillar::before {
  display: none;
}

.pillar img {
  width: 100%;
  height: 100%;
  object-fit: fill;
}

.pillar--left {
  left: 12px;
}

.pillar--right {
  right: 12px;
  transform: scaleX(-1);
}

.executors-grid {
  margin: 0 40px;
  gap: 12px;
  z-index: 2;
}

.executor-card {
  background: rgba(9, 10, 12, 0.96);
}

.executor-chip {
  font-family: "FK Raster Smooth", monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
  padding: 6px 11px;
  border-radius: 6px;
}

.story-card {
  padding: 22px 24px 20px;
}

.story-card__avatar {
  width: 86px;
  margin-bottom: 10px;
}

.story-card__quote {
  position: relative;
  color: transparent;
  font-size: 0;
  margin-top: 18px;
}

.story-card__quote::before {
  content: "\"The AI Doesn't Just Show Signals. It Also Explains The Reasoning. That's What Really Makes Kodeus Different From All Other AI Present.\"";
  display: block;
  color: rgba(255, 255, 255, 0.84);
  font-family: "Ranade", Arial, sans-serif;
  font-size: 20px;
  line-height: 1.38;
}

.story-card__name {
  font-size: 16px;
}

.story-card__meta {
  font-size: 14px;
}

.story-card__icon {
  width: 38px;
  height: 38px;
  font-size: 13px;
}

.trust-card {
  min-height: 118px;
  padding: 16px 22px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: center;
}

.trust-card__stars {
  font-size: 0;
  letter-spacing: 0;
}

.trust-card__stars::before {
  content: "♥♥♥♥♥";
  color: #fff;
  font-size: 15px;
  letter-spacing: 3px;
}

.trust-card__text {
  font-family: "FK Raster Smooth", monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
  line-height: 1.42;
}

.trust-card__stack {
  display: flex;
  align-items: stretch;
}

.trust-card__stack span {
  width: 54px;
  height: 72px;
  margin-right: -7px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 8px;
}

.trust-card__portrait {
  width: 80px;
  height: 72px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.gains-card {
  padding: 16px 18px;
  grid-template-columns: minmax(230px, 0.88fr) minmax(0, 1fr);
  gap: 16px;
}

.gains-card__play {
  font-size: 0;
}

.gains-card__play::before {
  content: "▶";
  font-size: 20px;
}

.gains-card__percent-wrap {
  width: 164px;
  height: 56px;
  position: relative;
  margin-bottom: 10px;
}

.gains-card__percent-bg {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: contain;
}

.gains-card__percent {
  position: relative;
  z-index: 1;
  font-family: "JetBrains Mono", monospace;
  font-size: 48px;
  line-height: 1;
}

.gains-card__headline {
  font-family: "Ranade", Arial, sans-serif;
  max-width: 10ch;
  font-size: 18px;
  line-height: 1.24;
}

.gains-card__sub {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "FK Raster Smooth", monospace;
  font-size: 11px;
  letter-spacing: 0.06em;
}

.gains-card__sub img {
  width: 32px;
}

.social-card {
  padding: 16px 16px 14px;
}

.social-card__mark {
  display: none;
}

.social-card__mark-art {
  width: 22px;
  margin-bottom: 14px;
}

.social-card__profile {
  gap: 10px;
}

.social-card__avatar {
  width: 40px;
  height: 40px;
}

.social-card__name {
  font-size: 14px;
}

.social-card__handle,
.social-card__footer {
  font-size: 10px;
  letter-spacing: 0.05em;
}

.social-card__quote {
  position: relative;
  color: transparent;
  font-size: 0;
}

.social-card__quote::before {
  content: "\"First Time I'm Not Glued To Charts All Day.\aSet It Once. It Just Runs - Catching Moves I Would've Missed.\a Automation That Actually Earns A Place In My Stack.\"";
  white-space: pre-line;
  display: block;
  color: rgba(255, 255, 255, 0.86);
  font-family: "FK Raster Smooth", monospace;
  font-size: 11px;
  line-height: 1.55;
  letter-spacing: 0.06em;
}

.quote-card__text {
  position: relative;
  color: transparent;
  font-size: 0;
  max-width: none;
}

.quote-card__text::before {
  content: "\"Finally, there's an automation that actually works\"";
  display: block;
  color: #fff;
  font-family: "Seona Demo", serif;
  font-size: 44px;
  line-height: 0.95;
  letter-spacing: -0.03em;
  max-width: 12ch;
}

.quote-card .cta-image--button img {
  width: 240px;
}

.quote-card__text::before {
  content: "\"Finally, there's an automation that actually works\"";
  white-space: pre-line;
  font-size: 26px;
  max-width: 18ch;
}

.executors-panel .section-title {
  width: max-content;
  max-width: none;
  margin: 0 auto 14px;
  font-size: 48px;
  white-space: nowrap;
}

.executors-grid {
  margin: 0 44px;
  grid-template-columns: minmax(250px, 0.96fr) minmax(420px, 1.42fr) minmax(248px, 0.88fr);
  grid-template-areas: "story trust social" "story gains social" "story quote quote";
  gap: 14px;
}

.gains-card__percent {
  font-size: 21px;
  line-height: 0.96;
  letter-spacing: -0.08em;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.story-card {
  gap: 14px;
}

.story-card__quote::before {
  font-size: 18px;
  line-height: 1.34;
  max-width: 13ch;
}

.trust-card {
  min-height: 106px;
  padding: 14px 18px;
  gap: 14px;
}

.trust-card__text {
  max-width: 210px;
  font-size: 10px;
  line-height: 1.38;
}

.trust-card__stack span {
  width: 46px;
  height: 62px;
}

.trust-card__portrait {
  width: 66px;
  height: 62px;
}

.gains-card {
  grid-template-columns: minmax(196px, 0.88fr) minmax(0, 1fr);
  gap: 14px;
  padding: 14px 16px;
}

.gains-card__media img {
  min-height: 224px;
}

.gains-card__content {
  display: grid;
  grid-template-columns: 128px minmax(0, 1fr);
  grid-template-areas: "percent headline" "sub headline";
  gap: 10px 12px;
  align-content: start;
  justify-items: start;
  overflow: hidden;
}

.gains-card__percent-wrap {
  grid-area: percent;
  width: 128px;
  height: 40px;
  margin-bottom: 0;
}

.gains-card__headline {
  grid-area: headline;
  max-width: 10ch;
  font-size: 14px;
  line-height: 1.18;
  margin-top: 2px;
}

.gains-card__sub {
  grid-area: sub;
  gap: 8px;
  font-size: 9px;
  align-self: end;
}

.gains-card__sub img {
  width: 24px;
}

.social-card {
  padding: 14px;
  gap: 12px;
}

.social-card__quote::before {
  font-size: 10px;
  line-height: 1.5;
}

.quote-card__text::before {
  font-size: 24px;
  max-width: 14ch;
}

.quote-card .cta-image--button img {
  width: 220px;
}

.executors-grid {
  gap: 16px;
  display: grid;
}

.section-title--executors {
  white-space: nowrap;
}

.executors-grid {
  grid-template-columns: minmax(300px, 1.08fr) minmax(440px, 1.54fr) minmax(260px, 0.82fr) !important;
  gap: 12px !important;
}

.executor-card {
  padding: 18px !important;
  border-radius: 18px !important;
}

.story-card {
  gap: 16px !important;
}

.story-card__quote {
  max-width: 12.8ch !important;
  font-size: 0 !important;
  line-height: 1 !important;
  text-wrap: pretty !important;
}

.story-card__quote::before {
  content: "\"The AI Doesn't Just Show Signals. It Also Explains The Reasoning. That's What Really Makes Kodeus Different From All Other AI Present.\"";
  display: block;
  color: var(--text-muted);
  font-size: clamp(18px, 1.7vw, 24px);
  line-height: 1.36;
  text-wrap: pretty;
}

.story-card__footer {
  padding-top: 14px !important;
}

.trust-card {
  min-height: 104px !important;
  align-items: flex-start !important;
  justify-content: flex-start !important;
  gap: 16px !important;
}

.trust-card__text {
  max-width: 320px !important;
  font-size: 13px !important;
  line-height: 1.32 !important;
}

.trust-card__stars {
  font-size: 0 !important;
}

.trust-card__stars::before {
  content: "♥♥♥♥♥";
  color: var(--accent);
  font-size: 14px;
  letter-spacing: 0.18em;
}

.gains-card {
  gap: 16px !important;
}

.gains-card__content {
  gap: 14px !important;
}

.gains-card__headline {
  font-size: clamp(22px, 1.95vw, 34px) !important;
}

.social-card {
  padding: 18px !important;
  gap: 14px !important;
  border: 1px solid rgba(22, 216, 125, 0.75) !important;
  border-radius: 20px !important;
  background: linear-gradient(180deg, rgba(8, 10, 10, 0.98), rgba(6, 8, 8, 0.98)) !important;
  overflow: hidden !important;
}

.social-card > .social-card__mark,
.social-card > .social-card__profile,
.social-card > .social-card__quote,
.social-card > .executor-chip--social,
.social-card > .social-card__footer {
  display: none !important;
}

.social-card__mark-art {
  width: 38px !important;
  height: auto !important;
}

.social-card__shell {
  margin-top: 6px;
  padding: 18px 18px 14px;
  display: grid;
  gap: 14px;
  background: rgba(20, 20, 20, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 20px;
}

.social-card__profile-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.social-card__avatar {
  width: 46px !important;
  height: 46px !important;
  border-radius: 50% !important;
}

.social-card__copy {
  display: grid;
  gap: 12px;
  color: var(--text-main);
  font-family: "FK Raster Smooth", monospace;
  font-size: 15px;
  line-height: 1.08;
  letter-spacing: 0.01em;
}

.social-card__copy p {
  margin: 0;
}

.social-card__highlight {
  max-width: 15ch;
}

.executor-chip--social-card {
  width: fit-content;
  margin-top: 2px;
  padding: 8px 12px !important;
  border-radius: 8px !important;
  background: rgba(22, 216, 125, 0.14) !important;
  color: var(--accent) !important;
  font-size: 11px !important;
  letter-spacing: 0.08em !important;
}

.social-card__timestamp {
  color: rgba(255, 255, 255, 0.68);
  font-family: "ProtoMono", monospace;
  font-size: 10px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.social-card__divider {
  height: 1px;
  background: rgba(22, 216, 125, 0.18);
}

.social-card__stats {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.social-card__footer-item {
  color: rgba(255, 255, 255, 0.9);
  font-family: "ProtoMono", monospace;
  font-size: 11px;
  letter-spacing: 0.06em;
  position: relative;
  padding-left: 20px;
}
.social-card__footer-item::before {
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.92);
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.social-card__footer-item:last-child::before {
  border-radius: 999px;
}

.quote-card {
  min-height: 116px !important;
  align-items: center !important;
  gap: 18px !important;
}

.quote-card__text {
  max-width: 18.5ch !important;
  font-size: 0 !important;
  line-height: 1 !important;
  text-wrap: balance !important;
}

.quote-card__text::before {
  content: "\"Finally, there's an automation that actually works\"";
  display: block;
  color: var(--text-main);
  font-family: "FK Raster Smooth", "FK Raster Sharp", monospace;
  font-size: clamp(28px, 2.6vw, 44px);
  line-height: 0.98;
  text-wrap: balance;
}

/* Small desktop / large tablet: 992px–1280px (executors; one block, cascade preserved) */
.executors-grid {
  grid-template-columns: minmax(250px, 0.96fr) minmax(330px, 1.28fr) minmax(210px, 0.72fr) !important;
}

.social-card__shell {
  padding: 16px 14px 12px;
}

.story-card__quote::before {
  font-size: 20px;
}

.quote-card__text::before {
  font-size: 32px;
}

.executors-panel {
  padding-left: 48px !important;
  padding-right: 48px !important;
}

.executors-grid {
  max-width: 1060px !important;
  grid-template-columns: 310px 490px 210px !important;
}

.gains-card {
  grid-template-columns: 220px 1fr !important;
}

.gains-card__media img {
  width: 220px !important;
}

.social-card {
  width: 210px !important;
  min-width: 210px !important;
}

.quote-card__text::before {
  font-size: 29px !important;
}

/* EXECUTORS — FIGMA FINAL */
.executors-panel {
  padding: 34px 76px 42px !important;
  overflow: hidden !important;
}

.executors-panel .section-title {
  margin: 0 auto 24px !important;
  font-size: 48px !important;
  white-space: nowrap !important;
}

.pillar--left {
  left: 12px !important;
}

.pillar--right {
  right: 12px !important;
}

.executors-grid {
  width: 100% !important;
  max-width: 1180px !important;
  margin: 0 auto !important;
  display: grid !important;
  grid-template-columns: 340px 548px 230px !important;
  grid-template-rows: 86px 286px 124px !important;
  grid-template-areas: "story trust social" "story gains social" "story quote quote" !important;
  gap: 8px !important;
  justify-content: center !important;
  align-items: stretch !important;
}

.executor-card {
  padding: 18px !important;
  border-radius: 14px !important;
}

/* LEFT CARD */
.story-card {
  grid-area: story !important;
  padding: 22px 20px 20px !important;
}

.story-card__avatar {
  width: 86px !important;
  margin-bottom: 18px !important;
}

.story-card__quote {
  width: 100% !important;
  max-width: none !important;
  display: block !important;
  color: transparent !important;
  font-size: 0 !important;
}

.story-card__quote::before {
  content: "\"The AI Doesn't Just Show Signals. It Also Explains The Reasoning. That's What Really Makes Kodeus Different From All Other AI Present.\"" !important;
  display: block !important;
  width: 100% !important;
  max-width: 280px !important;
  color: rgba(255, 255, 255, 0.84) !important;
  font-family: "Ranade", Arial, sans-serif !important;
  font-size: 19px !important;
  line-height: 1.34 !important;
  white-space: normal !important;
  word-break: normal !important;
  overflow-wrap: normal !important;
  text-wrap: pretty !important;
}

.story-card__footer {
  padding-top: 16px !important;
}

/* TOP MIDDLE */
.trust-card {
  grid-area: trust !important;
  height: 86px !important;
  min-height: 86px !important;
  padding: 14px 18px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
}

.trust-card__text {
  max-width: 260px !important;
  font-size: 12px !important;
  line-height: 1.35 !important;
}

/* VIDEO CARD */
.gains-card {
  grid-area: gains !important;
  height: 286px !important;
  min-height: 286px !important;
  padding: 18px !important;
  display: grid !important;
  grid-template-columns: 250px 1fr !important;
  gap: 18px !important;
  align-items: center !important;
  overflow: hidden !important;
}

.gains-card__media img {
  width: 250px !important;
  height: 250px !important;
  min-height: 250px !important;
  object-fit: cover !important;
  border-radius: 8px !important;
}

.gains-card__content {
  display: flex !important;
  flex-direction: column !important;
  justify-content: flex-start !important;
  align-items: flex-start !important;
  gap: 10px !important;
}

.gains-card__percent-wrap {
  width: 184px !important;
  height: 58px !important;
  margin: 0 !important;
}

.gains-card__percent {
  font-size: 44px !important;
  letter-spacing: -0.06em !important;
}

.gains-card__headline {
  max-width: 18ch !important;
  font-family: "Ranade", Arial, sans-serif !important;
  font-size: 20px !important;
  line-height: 1.28 !important;
}

.gains-card__sub {
  font-size: 11px !important;
  line-height: 1.35 !important;
}

/* RIGHT SOCIAL CARD */
.social-card {
  grid-area: social !important;
  width: 230px !important;
  min-width: 230px !important;
  height: 380px !important;
  min-height: 380px !important;
  padding: 16px !important;
  border-radius: 14px !important;
  overflow: hidden !important;
}

.social-card__mark-art {
  width: 26px !important;
  margin-bottom: 12px !important;
}

.social-card__shell {
  padding: 14px !important;
  border-radius: 12px !important;
  gap: 10px !important;
}

.social-card__avatar {
  width: 34px !important;
  height: 34px !important;
}

.social-card__name {
  font-size: 11px !important;
}

.social-card__handle {
  font-size: 8px !important;
}

.social-card__copy {
  font-size: 10px !important;
  line-height: 1.18 !important;
  gap: 9px !important;
}

.executor-chip--social-card {
  font-size: 9px !important;
  padding: 6px 9px !important;
}

.social-card__timestamp,
.social-card__footer-item {
  font-size: 7px !important;
}

/* BOTTOM QUOTE */
.quote-card {
  grid-area: quote !important;
  height: 124px !important;
  min-height: 124px !important;
  padding: 24px 34px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
}

.quote-card__text {
  max-width: 610px !important;
}

.quote-card__text::before {
  content: '"Finally, There’s An Automation\aThat Actually Works"' !important;
  white-space: pre-line !important;
  font-family: "Seona Demo", serif !important;
  font-size: 32px !important;
  line-height: 0.96 !important;
  letter-spacing: -0.035em !important;
  max-width: none !important;
}

.quote-card .cta-image--button img {
  width: 190px !important;
}

/* ============================================================================
   Executors — Dedicated mobile composition (<=768px)
   Independent of the desktop .executors-panel layout. Stacks the five cards
   vertically and rebuilds tighter, phone-friendly styles for each block.
   ========================================================================== */
.executors-panel-mobile {
  display: none;
  position: relative;
  width: 95%;
  margin: 0 auto;
  padding: 24px 14px 22px;
  background: linear-gradient(180deg, rgba(8, 9, 10, 0.98) 0%, rgba(6, 7, 8, 0.98) 100%), url("../../images/cloud-img.png");
  background-position: center;
  background-size: cover;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  overflow: hidden;
}
.executors-panel-mobile__title {
  margin: 0 0 18px;
  text-align: center;
  color: var(--text-main);
  font-family: "FK Raster Smooth", "FK Raster Sharp", monospace;
  font-size: clamp(22px, 6.4vw, 30px);
  line-height: 1;
  letter-spacing: -0.01em;
  white-space: nowrap;
}
.executors-panel-mobile__stack {
  display: grid;
  gap: 12px;
}
.executors-panel-mobile__card {
  padding: 16px;
  background: rgba(9, 10, 12, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
}
.executors-panel-mobile__chip {
  display: inline-block;
  width: fit-content;
  padding: 6px 10px;
  color: var(--accent);
  font-family: "FK Raster Smooth", monospace;
  font-size: 10px;
  letter-spacing: 0.08em;
  background: rgba(22, 216, 125, 0.12);
  border-radius: 6px;
}
.executors-panel-mobile {
  /* --- Story card ---------------------------------------------------------- */
}
.executors-panel-mobile__card--story {
  display: grid;
  gap: 14px;
  align-content: start;
}
.executors-panel-mobile__avatar {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 8px;
}
.executors-panel-mobile__quote {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-family: "Ranade", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.38;
  text-wrap: pretty;
}
.executors-panel-mobile__story-footer {
  margin-top: 4px;
  padding-top: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.executors-panel-mobile__name {
  color: var(--text-main);
  font-size: 14px;
  line-height: 1.3;
}
.executors-panel-mobile__meta {
  color: var(--text-soft);
  font-size: 12px;
  line-height: 1.3;
}
.executors-panel-mobile__brand-tag {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: var(--text-main);
  font-family: "ProtoMono", monospace;
  font-size: 12px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 6px;
}
.executors-panel-mobile {
  /* --- Trust card ---------------------------------------------------------- */
}
.executors-panel-mobile__card--trust {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 78px;
}
.executors-panel-mobile__stars {
  color: var(--accent);
  font-size: 13px;
  letter-spacing: 0.18em;
  line-height: 1;
}
.executors-panel-mobile__trust-text {
  text-align: right;
  color: var(--text-muted);
  font-family: "ProtoMono", "JetBrains Mono", monospace;
  font-size: 11px;
  line-height: 1.4;
}
.executors-panel-mobile__trust-text .countup-number {
  color: var(--text-main);
}
.executors-panel-mobile {
  /* --- Gains (video) card -------------------------------------------------- */
}
.executors-panel-mobile__card--gains {
  display: grid;
  gap: 14px;
}
.executors-panel-mobile__media {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}
.executors-panel-mobile__media img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}
.executors-panel-mobile__play {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  color: var(--text-main);
  font-size: 16px;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
  border-radius: 999px;
}
.executors-panel-mobile__gains-body {
  display: grid;
  gap: 8px;
}
.executors-panel-mobile__percent-wrap {
  position: relative;
  width: 142px;
  height: 46px;
}
.executors-panel-mobile__percent-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.executors-panel-mobile__percent {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  color: var(--accent);
  font-family: "JetBrains Mono", monospace;
  font-size: 18px;
  line-height: 1;
  letter-spacing: -0.06em;
}
.executors-panel-mobile__headline {
  margin: 4px 0 0;
  max-width: 22ch;
  color: var(--text-main);
  font-family: "Ranade", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.24;
}
.executors-panel-mobile__sub {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-soft);
  font-family: "FK Raster Smooth", monospace;
  font-size: 10px;
  letter-spacing: 0.06em;
}
.executors-panel-mobile__sub img {
  width: 22px;
}
.executors-panel-mobile {
  /* --- Social (twitter) card ---------------------------------------------- */
}
.executors-panel-mobile__card--social {
  border: 1px solid rgba(22, 216, 125, 0.6);
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(8, 10, 10, 0.98), rgba(6, 8, 8, 0.98));
}
.executors-panel-mobile__social-mark {
  display: block;
  width: 24px;
  margin: 0 0 12px;
}
.executors-panel-mobile__social-shell {
  padding: 14px;
  display: grid;
  gap: 12px;
  background: rgba(20, 20, 20, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
}
.executors-panel-mobile__social-profile {
  display: flex;
  align-items: center;
  gap: 10px;
}
.executors-panel-mobile__social-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
}
.executors-panel-mobile__social-name {
  color: var(--text-main);
  font-size: 13px;
  line-height: 1.2;
}
.executors-panel-mobile__social-handle {
  color: var(--text-soft);
  font-family: "ProtoMono", monospace;
  font-size: 9px;
  letter-spacing: 0.06em;
  line-height: 1.2;
}
.executors-panel-mobile__social-copy {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.88);
  font-family: "FK Raster Smooth", monospace;
  font-size: 11px;
  line-height: 1.4;
  letter-spacing: 0.02em;
}
.executors-panel-mobile__social-copy p {
  margin: 0;
}
.executors-panel-mobile__social-highlight {
  max-width: 24ch;
}
.executors-panel-mobile__social-chip {
  width: fit-content;
  padding: 6px 10px;
  color: var(--accent);
  font-family: "FK Raster Smooth", monospace;
  font-size: 10px;
  letter-spacing: 0.08em;
  background: rgba(22, 216, 125, 0.14);
  border-radius: 8px;
}
.executors-panel-mobile__social-timestamp {
  color: rgba(255, 255, 255, 0.68);
  font-family: "ProtoMono", monospace;
  font-size: 9px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.executors-panel-mobile__social-divider {
  height: 1px;
  background: rgba(22, 216, 125, 0.18);
}
.executors-panel-mobile__social-stats {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}
.executors-panel-mobile__social-stat {
  position: relative;
  padding-left: 18px;
  color: rgba(255, 255, 255, 0.9);
  font-family: "ProtoMono", monospace;
  font-size: 9px;
  letter-spacing: 0.06em;
}
.executors-panel-mobile__social-stat::before {
  content: "";
  width: 11px;
  height: 11px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.92);
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.executors-panel-mobile__social-stat:last-child::before {
  border-radius: 999px;
}
.executors-panel-mobile {
  /* --- Quote / CTA card ---------------------------------------------------- */
}
.executors-panel-mobile__card--quote {
  display: grid;
  gap: 16px;
  text-align: left;
}
.executors-panel-mobile__quote-final {
  margin: 0;
  color: var(--text-main);
  font-family: "FK Raster Smooth", "FK Raster Sharp", monospace;
  font-size: 32px;
  line-height: 1.05;
  letter-spacing: -0.02em;
  text-wrap: balance;
  max-width: 100%;
  text-align: center;
}
.executors-panel-mobile__cta {
  justify-self: center;
}
.executors-panel-mobile__cta img {
  width: 188px !important;
  max-width: 100% !important;
  height: auto !important;
}

@media only screen and (max-width: 768px) {
  #team.section-shell > .site-panel.executors-panel {
    display: none !important;
  }
  .executors-panel-mobile {
    display: block;
  }
}
@keyframes integration-marquee-loop {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
@media (prefers-reduced-motion: reduce) {
  .integrations-panel .integration-marquee__track {
    animation: none !important;
  }
}
.integrations-panel {
  min-height: 560px;
  padding: 30px 30px 18px;
  background: rgba(23, 23, 23, 0.6) !important;
  backdrop-filter: blur(12px);
}
.integrations-panel .section-flag.section-flag--raster {
  margin-bottom: 10px;
  gap: 18px !important;
  font-family: "ProtoMono", "JetBrains Mono", monospace !important;
  font-size: 13px !important;
  letter-spacing: 0.16em !important;
}
.integrations-panel .section-title {
  width: max-content;
  max-width: none;
  margin-bottom: 10px;
  font-family: "Seona Demo", serif;
  font-weight: 400;
  letter-spacing: -0.035em;
  font-size: 64px;
  line-height: 0.92;
}
.integrations-panel .section-title.reveal-heading {
  opacity: 1;
  filter: none;
  transform: none;
  visibility: visible;
}
.integrations-panel .integration-stage {
  min-height: 420px;
  position: relative;
  margin-top: 8px;
}
.integrations-panel .integration-stage .integration-frame {
  width: min(100%, 1160px);
  position: absolute;
  left: 50%;
  z-index: 2;
  opacity: 0.86;
  top: calc(50% - 30px);
  bottom: auto;
  transform: translate(-50%, -50%);
}
.integrations-panel .integration-stage .integration-marquee {
  width: 100%;
  overflow: hidden;
  position: absolute;
  left: 0;
  z-index: 1;
  scrollbar-width: none;
}
.integrations-panel .integration-stage .integration-marquee::-webkit-scrollbar {
  display: none;
}
.integrations-panel .integration-stage .integration-marquee.integration-marquee--solo {
  left: 0;
  right: 0;
  top: calc(50% - 30px);
  transform: translateY(-50%);
}
.integrations-panel .integration-stage .integration-marquee .integration-marquee__track {
  width: max-content;
  min-width: 100%;
  padding: 18px 0;
  display: flex;
  align-items: center;
  gap: 84px;
  animation: integration-marquee-loop 22s linear infinite;
}
.integrations-panel .integration-stage .integration-marquee .integration-marquee__track img {
  flex: 0 0 auto;
  max-height: 56px;
  filter: brightness(0) saturate(100%) invert(55%) sepia(88%) saturate(515%) hue-rotate(99deg) brightness(91%) contrast(94%);
  opacity: 0.94;
}
.integrations-panel .integration-stage .integrations-figure {
  width: min(100%, 640px);
  position: absolute;
  left: 50%;
  bottom: -18px;
  transform: translateX(-50%);
  z-index: 3;
  filter: drop-shadow(0 22px 40px rgba(255, 255, 255, 0.08));
}

@media screen and (max-width: 768px) {
  .integrations-panel {
    padding: 20px 10px;
    min-height: 200px;
  }
  .integrations-panel .section-flag.section-flag--raster {
    margin-bottom: 10px;
  }
  .integrations-panel .section-title {
    font-size: 34px;
  }
  .integrations-panel .integration-stage {
    min-height: 200px;
    height: 200px;
  }
  .integrations-panel .integration-stage .integration-frame {
    width: min(100%, 1160px);
    position: absolute;
    left: 50%;
    z-index: 2;
    opacity: 0.86;
    top: calc(50% - 30px) !important;
    bottom: auto !important;
    transform: translate(-50%, -50%) !important;
  }
  .integrations-panel .integration-stage .integration-marquee {
    width: 100%;
    overflow: hidden;
    position: absolute;
    left: 0;
    z-index: 1;
    scrollbar-width: none;
  }
  .integrations-panel .integration-stage .integration-marquee::-webkit-scrollbar {
    display: none;
  }
  .integrations-panel .integration-stage .integration-marquee.integration-marquee--solo {
    left: 0;
    right: 0;
    top: calc(50% - 30px) !important;
    transform: translateY(-50%) !important;
  }
  .integrations-panel .integration-stage .integration-marquee .integration-marquee__track {
    width: max-content;
    min-width: 100%;
    padding: 18px 0;
    display: flex;
    align-items: center;
    gap: 84px;
    animation: integration-marquee-loop 22s linear infinite !important;
  }
  .integrations-panel .integration-stage .integration-marquee .integration-marquee__track img {
    flex: 0 0 auto;
    max-height: 56px;
    filter: brightness(0) saturate(100%) invert(55%) sepia(88%) saturate(515%) hue-rotate(99deg) brightness(91%) contrast(94%);
    opacity: 0.94;
  }
  .integrations-panel .integration-stage .integrations-figure {
    width: min(100%, 640px) !important;
    position: absolute;
    left: 50%;
    bottom: -18px !important;
    transform: translateX(-50%);
    z-index: 3;
    filter: drop-shadow(0 22px 40px rgba(255, 255, 255, 0.08));
  }
}
/* How it works — merged from section base + _03-responsive/part-a */
.how-shell {
  display: grid;
  gap: 22px;
}
.how-shell .how-border {
  width: 100%;
  opacity: 0.58;
}
.how-shell .section-flag {
  font-size: 12px;
  margin-bottom: 0;
}
.how-shell .how-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.how-shell .how-grid > .how-card {
  min-height: 510px;
  padding: 26px 20px 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: rgba(23, 23, 23, 0.6);
  /* background: linear-gradient(
    180deg,
    rgba(42, 42, 42, 0.96),
    rgba(34, 34, 34, 0.96)
  ); */
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 22px;
  border-color: rgba(255, 255, 255, 0.06);
  border-bottom-color: transparent;
  transition: transform 180ms ease, box-shadow 180ms ease;
}
.how-shell .how-grid > .how-card:first-child {
  box-shadow: var(--shadow-panel);
}
.how-shell .how-grid > .how-card::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: transparent;
  transition: background-color 180ms ease;
}
.how-shell .how-grid > .how-card:hover, .how-shell .how-grid > .how-card.is-active {
  transform: translateY(-3px);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.28);
  border-color: rgba(255, 255, 255, 0.06);
  border-bottom-color: transparent;
}
.how-shell .how-grid > .how-card:hover::after, .how-shell .how-grid > .how-card.is-active::after {
  background: var(--accent);
}
.how-shell .how-grid > .how-card {
  /* Web / desktop: line graphic + L-bracket → copy → meta pinned to bottom */
}
.how-shell .how-grid > .how-card .how-card__top {
  flex-shrink: 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}
.how-shell .how-grid > .how-card .how-card__bracket {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  margin-top: 6px;
  border-top: 2px solid var(--accent);
  border-right: 2px solid var(--accent);
  box-sizing: border-box;
}
.how-shell .how-grid > .how-card .how-card__copy {
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-width: 0;
}
.how-shell .how-grid > .how-card .how-card__meta {
  flex-shrink: 0;
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--accent);
  font-family: "ProtoMono", monospace;
  font-size: 16px;
}
.how-shell .how-grid > .how-card .module-title {
  font-family: "Seona Demo", serif;
  font-size: clamp(38px, 3vw, 54px);
  line-height: 0.96;
  letter-spacing: -0.03em;
  max-width: 10.4ch;
}
.how-shell .how-grid > .how-card:nth-child(2) .module-title {
  max-width: 13.2ch;
  font-size: clamp(36px, 2.7vw, 50px);
}
.how-shell .how-grid > .how-card .body-copy {
  font-size: 16px;
  line-height: 1.45;
  max-width: 28ch;
  color: rgba(255, 255, 255, 0.68);
}
.how-shell .how-grid > .how-card .how-icon {
  width: 136px;
  height: 136px;
  max-width: none;
  object-fit: contain;
  margin-bottom: 0;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  position: static;
}
.how-shell .how-grid > .how-card .how-icon::before, .how-shell .how-grid > .how-card .how-icon::after {
  display: none;
  content: none;
}
.how-shell .how-grid > .how-card .how-card__square {
  width: 34px;
  height: 34px;
  background: rgba(22, 216, 125, 0.16);
  border-radius: 6px;
  box-shadow: inset 0 0 0 1px rgba(22, 216, 125, 0.08);
}
.how-shell .how-footer {
  max-width: 540px;
  margin: 0 auto;
  display: grid;
  gap: 18px;
  justify-items: center;
  text-align: center;
}
.how-shell .how-footer .body-copy {
  max-width: 760px;
  font-size: 14px;
}

@media (prefers-reduced-motion: reduce) {
  .how-shell .how-grid > .how-card {
    transition: none !important;
  }
  .how-shell .how-grid > .how-card::after {
    transition: none !important;
  }
}
@media only screen and (max-width: 768px) {
  .how-shell {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .how-shell .how-footer {
    margin: 20px auto;
    display: grid;
    gap: 18px;
    justify-items: center;
    text-align: center;
  }
  .how-shell .how-footer .body-copy {
    max-width: 760px;
    font-size: 14px;
  }
  .how-shell .how-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 10px;
  }
  .how-shell .how-grid > .how-card {
    min-height: 0;
    padding: 16px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(92px, 118px);
    grid-template-rows: auto auto;
    gap: 14px 14px;
    align-items: center;
  }
  .how-shell .how-grid > .how-card .how-card__meta {
    grid-column: 1/-1;
    grid-row: 1;
    margin-top: 0;
  }
  .how-shell .how-grid > .how-card .how-card__copy {
    grid-column: 1;
    grid-row: 2;
    align-self: center;
  }
  .how-shell .how-grid > .how-card .how-card__top {
    grid-column: 2;
    grid-row: 2;
    justify-content: flex-end;
    justify-self: end;
    align-self: center;
  }
  .how-shell .how-grid > .how-card .how-card__bracket {
    display: none;
  }
  .how-shell .how-grid > .how-card .how-icon {
    width: 100%;
    max-width: 100px;
    height: auto;
    aspect-ratio: 1;
  }
  .how-shell .how-grid > .how-card .module-title {
    max-width: none;
    font-size: 24px;
  }
  .how-shell .how-grid > .how-card:nth-child(2) .module-title {
    max-width: none;
    font-size: 24px;
  }
  .how-shell .how-grid > .how-card .body-copy {
    max-width: none;
    font-size: 14px;
  }
}
/* Strategy section — base + merged responsive overrides (ex _03-responsive/part-a, part-b) */
.strategy-panel {
  min-height: 708px;
  padding: 28px 24px 0;
  display: grid;
  grid-template-columns: minmax(286px, 0.98fr) minmax(260px, 0.84fr) minmax(258px, 0.9fr);
  gap: 18px;
  align-items: end;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(13, 25, 18, 0.98) 0%, rgba(7, 13, 10, 0.98) 100%);
}
.strategy-panel .strategy-left,
.strategy-panel .strategy-figure-wrap,
.strategy-panel .strategy-right {
  min-width: 0;
  width: 100%;
  justify-self: stretch;
}
.strategy-panel .strategy-left {
  grid-column: 1;
  grid-row: 1;
  align-self: start;
  max-width: none;
  padding: 10px 0 26px;
  display: grid;
  gap: 18px;
  position: relative;
  z-index: 3;
}
.strategy-panel .strategy-figure-wrap {
  grid-column: 2;
  grid-row: 1;
  min-height: 552px;
  position: relative;
  align-self: end;
  justify-self: center;
}
.strategy-panel .strategy-right {
  grid-column: 3;
  grid-row: 1;
  padding: 50px 0 28px;
  gap: 22px;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  position: relative;
  z-index: 3;
}
.strategy-panel .section-title.section-title--strategy,
.strategy-panel .section-title--strategy {
  max-width: 9.6ch;
  font-size: clamp(60px, 5vw, 82px);
  line-height: 0.94;
}
.strategy-panel .strategy-left .body-copy {
  max-width: 30ch;
  font-size: 15px;
  line-height: 1.42;
  white-space: normal;
  text-wrap: balance;
}
.strategy-panel .strategy-chevron {
  width: 16px;
  height: 16px;
  display: inline-block;
  background: var(--accent);
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  vertical-align: middle;
  margin: 0 8px 0 4px;
  box-shadow: 12px 12px 0 rgba(22, 216, 125, 0.8), 6px 6px 0 rgba(22, 216, 125, 0.9);
}
.strategy-panel .strategy-list {
  display: grid;
  gap: 14px;
}
.strategy-panel .strategy-option {
  min-height: 82px;
  padding: 10px 12px;
  display: grid;
  grid-template-columns: 60px 1fr;
  align-items: center;
  gap: 16px;
  background: rgba(30, 54, 39, 0.8);
  border: 1px solid transparent;
  border-radius: 14px;
}
.strategy-panel .strategy-option.is-active {
  background: rgba(28, 92, 57, 0.78);
  border-color: rgba(22, 216, 125, 0.42);
  box-shadow: 0 0 0 1px rgba(22, 216, 125, 0.12);
}
.strategy-panel .strategy-option__thumb {
  width: 58px;
  height: 58px;
  object-fit: cover;
  object-position: center 18%;
  background: rgba(0, 0, 0, 0.28);
  border-radius: 10px;
}
.strategy-panel .strategy-option__body {
  display: grid;
  gap: 6px;
  align-content: center;
}
.strategy-panel .strategy-risk {
  display: none;
}
.strategy-panel .strategy-risk-art {
  width: 136px;
  max-width: 100%;
  height: auto;
  display: block;
}
.strategy-panel .strategy-option__name {
  color: var(--text-main);
  font-family: "ProtoMono", monospace;
  font-size: clamp(18px, 1.6vw, 24px);
  letter-spacing: 0.08em;
}
.strategy-panel .strategy-option__desc {
  color: var(--text-muted);
  font-family: "ProtoMono", monospace;
  font-size: 13px;
  line-height: 1.3;
  max-width: 17ch;
}
.strategy-panel .strategy-option.is-active .strategy-option__desc {
  max-width: none;
  white-space: nowrap;
  font-size: 12px;
  line-height: 1.2;
}
.strategy-panel .strategy-plus {
  width: 34px;
  position: absolute;
  right: 12px;
  top: 86px;
}
.strategy-panel .strategy-face-frame {
  display: block;
  width: 212px;
  height: auto;
  border: 0;
  background: none;
  box-shadow: none;
  position: absolute;
  left: 50%;
  top: 60px;
  transform: translateX(-50%);
  z-index: 4;
  object-fit: contain;
}
.strategy-panel .strategy-face-frame::before,
.strategy-panel .strategy-face-frame::after {
  display: none;
  content: none;
}
.strategy-panel .strategy-figure {
  width: min(100%, 500px);
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  z-index: 2;
  filter: drop-shadow(0 26px 46px rgba(255, 255, 255, 0.08));
}
.strategy-panel .section-flag--strategy {
  display: none;
}
.strategy-panel .strategy-flag-art {
  width: 170px;
  height: auto;
  display: block;
  margin: 0 auto 4px;
}
.strategy-panel .strategy-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  padding: 20px 0 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.strategy-panel .strategy-metric strong {
  display: block;
  color: var(--text-main);
  font-family: "JetBrains Mono", monospace;
  font-size: 34px;
  line-height: 0.94;
}
.strategy-panel .strategy-metric span {
  display: block;
  margin-top: 8px;
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.15;
}
.strategy-panel .progress-group {
  display: grid;
  gap: 18px;
  margin-bottom: 26px;
}
.strategy-panel .progress-row {
  display: grid;
  gap: 10px;
  position: relative;
}
.strategy-panel .progress-row::after {
  content: "+++++";
  position: absolute;
  right: 0;
  top: 2px;
  color: rgba(255, 255, 255, 0.74);
  font-family: "JetBrains Mono", monospace;
  font-size: 14px;
  letter-spacing: 0.14em;
}
.strategy-panel .progress-row__label {
  color: var(--text-main);
  font-family: "FK Raster Smooth", monospace;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
}
.strategy-panel .progress-row__bar {
  margin-top: 14px;
  width: 100%;
  height: 2px;
  background: rgba(255, 255, 255, 0.34);
}
.strategy-panel .progress-row__bar span {
  display: block;
  height: 100%;
  background: var(--accent);
}

/* Former body * tweaks — higher specificity than global utilities */
body .strategy-panel .strategy-figure-wrap {
  min-height: 660px;
}
body .strategy-panel .strategy-figure {
  width: 132%;
  max-width: none;
  bottom: 0;
}
body .strategy-panel .strategy-face-frame {
  width: 204px;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

@media only screen and (max-width: 768px) {
  .strategy-panel {
    display: none;
  }
}
/* FAQ — merged from section base + _03-responsive/part-a (single cascade) */
.faq-shell .faq-layout {
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}
.faq-shell .faq-intro {
  padding-top: 8px;
}
.faq-shell .faq-intro__eyebrow {
  color: rgba(22, 216, 125, 0.92);
  font-family: "FK Raster Smooth", monospace;
  font-size: 0;
  margin-bottom: 10px;
  letter-spacing: 0;
  text-transform: none;
}
.faq-shell .faq-intro__eyebrow::before {
  content: none;
}
.faq-shell .faq-intro__badge {
  width: 41px;
  height: auto;
  display: block;
}
.faq-shell .faq-intro__title {
  color: var(--text-main);
  font-family: "FK Raster Smooth", monospace;
  font-size: 11px;
  line-height: 1.48;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: nowrap;
}
.faq-shell .faq-intro__title.reveal-heading {
  opacity: 1 !important;
  filter: none !important;
  transform: none !important;
  visibility: visible !important;
}
.faq-shell .faq-list {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.faq-shell .faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.faq-shell .faq-trigger {
  width: 100%;
  padding: 24px 0;
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  gap: 22px;
  align-items: center;
  color: var(--text-main);
  background: transparent;
  border: 0;
  text-align: left;
  cursor: pointer;
}
.faq-shell .faq-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  background: url("../assets/sections/faq/down.svg") center/40px 40px no-repeat;
  background-color: transparent;
  border-radius: 0;
  box-shadow: none;
}
.faq-shell .faq-icon::before, .faq-shell .faq-icon::after {
  display: none;
  content: none;
}
.faq-shell .faq-item.is-open .faq-icon {
  background: url("../assets/sections/faq/cross.svg") center/40px 40px no-repeat;
}
.faq-shell .faq-question {
  color: var(--text-main);
  font-family: "Ranade", Arial, sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.28;
  margin: 0;
}
.faq-shell .faq-answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  padding-left: 46px;
  transition: max-height 220ms ease, opacity 220ms ease, padding-bottom 220ms ease;
}
.faq-shell .faq-answer .body-copy {
  padding: 2px 0 18px 62px;
  font-family: "Ranade", Arial, sans-serif;
  font-size: 12px;
  line-height: 1.56;
  max-width: 64ch;
}
.faq-shell .faq-item.is-open .faq-answer {
  max-height: 180px;
  opacity: 1;
  padding-bottom: 22px;
}

@media (prefers-reduced-motion: reduce) {
  .faq-shell .faq-answer {
    transition: none !important;
  }
}
@media only screen and (max-width: 768px) {
  .faq-shell .faq-layout {
    display: grid;
    grid-template-columns: auto;
    gap: 15px;
    align-items: start;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 10px;
  }
  .faq-shell .faq-intro {
    padding-top: 8px;
  }
  .faq-shell .faq-intro__badge {
    margin: auto;
  }
  .faq-shell .faq-intro__title {
    font-size: 14px;
    text-align: center;
    font-family: "Ranade", Arial, sans-serif;
  }
  .faq-shell .faq-list {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }
  .faq-shell .faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }
  .faq-shell .faq-trigger {
    width: 100%;
    padding: 10px 0;
    display: grid;
    grid-template-columns: 20px minmax(0, 1fr);
    gap: 22px;
    align-items: center;
  }
  .faq-shell .faq-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    background: url("../assets/sections/faq/down.svg") center/40px 40px no-repeat;
    background-color: transparent;
    border-radius: 0;
    box-shadow: none;
  }
  .faq-shell .faq-icon::before, .faq-shell .faq-icon::after {
    display: none;
    content: none;
  }
  .faq-shell .faq-item.is-open .faq-icon {
    background: url("../assets/sections/faq/cross.svg") center/40px 40px no-repeat;
  }
  .faq-shell .faq-question {
    font-size: 14px;
  }
  .faq-shell .faq-answer {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    padding-left: 0px;
    transition: max-height 220ms ease, opacity 220ms ease, padding-bottom 220ms ease;
  }
  .faq-shell .faq-answer .body-copy {
    padding: 2px 0 18px 20px;
    font-family: "Ranade", Arial, sans-serif;
    font-size: 12px;
    line-height: 1.56;
    max-width: 64ch;
  }
  .faq-shell .faq-item.is-open .faq-answer {
    max-height: 180px;
    opacity: 1;
    padding-bottom: 22px;
  }
}
#pricing .invoke-panel {
  min-height: 332px;
  padding: 28px 30px 22px;
  gap: 12px;
  display: grid;
  align-content: start;
  justify-items: center;
  text-align: center;
  background: linear-gradient(180deg, rgba(18, 19, 20, 0.98) 0%, rgba(13, 14, 15, 0.98) 100%);
}
#pricing .invoke-panel > *:not(.invoke-frame) {
  position: relative;
  z-index: 2;
}
#pricing .invoke-panel .invoke-frame {
  width: calc(100% - 64px);
  height: calc(100% - 44px);
  position: absolute;
  left: 32px;
  top: 16px;
  z-index: 1;
  object-fit: fill;
  opacity: 0.84;
}
#pricing .invoke-panel .invoke-title {
  max-width: none;
  margin: 0;
  display: grid;
  gap: 10px;
  justify-items: center;
  text-align: center;
  font-family: "Seona Demo", serif;
  font-size: 64px;
  line-height: 0.92;
  letter-spacing: -0.035em;
  text-wrap: balance;
}
#pricing .invoke-panel .invoke-title .invoke-title__row {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  gap: 18px;
}
#pricing .invoke-panel .invoke-title .invoke-title__top {
  font-size: clamp(50px, 4vw, 68px);
  line-height: 0.95;
}
#pricing .invoke-panel .invoke-title .invoke-title__bottom {
  display: block;
  width: 100%;
  max-width: none;
  margin: 2px auto 0;
  text-align: center;
  font-size: clamp(48px, 4vw, 66px);
  line-height: 0.92;
  white-space: nowrap;
}
#pricing .invoke-panel .invoke-title .invoke-title__row .invoke-chip {
  width: auto;
  min-width: 0px;
  height: 34px;
  margin: 0;
  padding: 10px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-radius: 8px;
  background: #26de7f;
  box-sizing: border-box;
}
#pricing .invoke-panel .invoke-title .invoke-title__row .invoke-chip .invoke-chip__thumb {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
  border-radius: 12px;
  background: url("../images/Frame-2085666297.png");
  background-size: contain;
  /* background: url("../assets/4.png") center bottom / 140% auto no-repeat; */
}
#pricing .invoke-panel .invoke-title .invoke-title__row .invoke-chip .invoke-chip__label {
  color: rgba(9, 29, 18, 0.76);
  font-family: "JetBrains Mono", monospace;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1;
}
#pricing .invoke-panel .invoke-actions {
  width: fit-content;
  margin: 22px auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 16px;
}
#pricing .invoke-panel .invoke-actions .cta-image--button,
#pricing .invoke-panel .invoke-actions .cta-image--button img {
  width: 228px;
  max-width: 100%;
  height: auto;
}

@media screen and (max-width: 768px) {
  #pricing .invoke-panel {
    min-height: 0px;
    padding: 20px 10px;
    display: grid;
    align-content: start;
    justify-items: center;
    text-align: center;
  }
  #pricing .invoke-panel > *:not(.invoke-frame) {
    position: relative;
    z-index: 2;
  }
  #pricing .invoke-panel .section-flag {
    margin-bottom: 10px;
  }
  #pricing .invoke-panel .invoke-frame {
    display: none;
  }
  #pricing .invoke-panel .invoke-title {
    font-size: 34px;
    text-align: center;
  }
  #pricing .invoke-panel .invoke-title .invoke-title__top {
    font-size: 28px;
  }
  #pricing .invoke-panel .invoke-title .invoke-title__bottom {
    font-size: 36px;
  }
  #pricing .invoke-panel .invoke-title .invoke-title__row .invoke-chip {
    /* display: none; */
  }
  #pricing .invoke-panel .invoke-title .invoke-title__row .invoke-chip .invoke-chip__thumb {
    /* display: none; */
  }
  #pricing .invoke-panel .invoke-title .invoke-title__row .invoke-chip .invoke-chip__label {
    /* display: none; */
  }
  #pricing .invoke-panel .invoke-actions {
    width: fit-content;
    margin: 22px auto 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
    gap: 16px;
  }
  #pricing .invoke-panel .invoke-actions .cta-image--button,
  #pricing .invoke-panel .invoke-actions .cta-image--button img {
    width: 228px;
    max-width: 100%;
    height: auto;
  }
}
.footer-shell {
  position: relative;
  margin-top: 50px;
}
.footer-shell .footer-panel {
  min-height: 596px;
  padding: 32px 40px 44px;
  overflow: hidden;
  background: radial-gradient(circle at 74% 38%, rgba(22, 216, 125, 0.08), transparent 16%), radial-gradient(circle at 78% 78%, rgba(22, 216, 125, 0.06), transparent 24%), linear-gradient(180deg, rgba(8, 9, 10, 0.98) 0%, rgba(4, 5, 6, 0.98) 100%);
}
.footer-shell .footer-panel .footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
  gap: 24px;
  align-items: start;
  position: relative;
  z-index: 2;
}
.footer-shell .footer-panel .footer-grid .footer-copy {
  max-width: 880px;
}
.footer-shell .footer-panel .footer-grid .footer-copy .footer-title {
  margin: 0;
  display: grid;
  gap: 2px;
  width: fit-content;
  max-width: 100%;
  font-family: "Seona Demo", serif;
  font-size: clamp(54px, 4.05vw, 72px);
  font-weight: 400;
  line-height: 0.84;
  letter-spacing: -0.035em;
}
.footer-shell .footer-panel .footer-grid .footer-copy .footer-title.reveal-heading {
  opacity: 1 !important;
  filter: none !important;
  transform: none !important;
  visibility: visible !important;
}
.footer-shell .footer-panel .footer-grid .footer-copy .footer-title .footer-title__muted,
.footer-shell .footer-panel .footer-grid .footer-copy .footer-title .footer-title__accent {
  display: block;
}
.footer-shell .footer-panel .footer-grid .footer-copy .footer-title .footer-title__muted {
  color: rgba(255, 255, 255, 0.26);
}
.footer-shell .footer-panel .footer-grid .footer-copy .footer-title .footer-title__accent {
  color: #fff;
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.26);
  white-space: nowrap;
}
.footer-shell .footer-panel .footer-grid .footer-copy .footer-title .footer-title__chevrons {
  margin-right: 18px;
  color: rgba(255, 255, 255, 0.18);
  text-shadow: none;
}
.footer-shell .footer-panel .footer-grid .footer-copy .footer-body {
  max-width: 47ch;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-family: "JetBrains Mono", "ProtoMono", monospace;
  font-size: 12px;
  line-height: 1.6;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.footer-shell .footer-panel .footer-grid .footer-copy .footer-body-line {
  display: block;
  white-space: nowrap;
}
.footer-shell .footer-panel .footer-grid .footer-subscribe {
  padding: 16px 16px 14px;
  display: grid;
  gap: 18px;
  border: 1px solid rgba(22, 216, 125, 0.12);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(12, 14, 14, 0.94), rgba(8, 10, 10, 0.94));
  box-shadow: 0 26px 56px rgba(0, 0, 0, 0.24);
  position: relative;
  z-index: 2;
}
.footer-shell .footer-panel .footer-grid .footer-subscribe .footer-subscribe__title {
  color: var(--text-main);
  font-family: "Ranade", Arial, sans-serif;
  font-size: 18px;
  line-height: 1.35;
}
.footer-shell .footer-panel .footer-grid .footer-subscribe .footer-subscribe__field {
  padding: 6px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  border: 1px solid rgba(22, 216, 125, 0.26);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(19, 30, 24, 0.9), rgba(12, 18, 15, 0.9));
  box-shadow: inset 0 0 0 1px rgba(22, 216, 125, 0.18), 0 18px 46px rgba(22, 165, 98, 0.1);
}
.footer-shell .footer-panel .footer-grid .footer-subscribe .footer-subscribe__input {
  min-width: 0;
  min-height: 54px;
  padding: 0 16px;
  border: 0;
  outline: 0;
  background: transparent;
  color: #fff;
  font-family: "JetBrains Mono", "ProtoMono", monospace;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: lowercase;
}
.footer-shell .footer-panel .footer-grid .footer-subscribe .footer-subscribe__input::placeholder {
  color: rgba(255, 255, 255, 0.3);
  text-transform: none;
}
.footer-shell .footer-panel .footer-grid .footer-subscribe .footer-subscribe__button {
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  background: linear-gradient(180deg, #2fd980 0%, #1eb967 100%);
  color: #fff;
  font-family: "ProtoMono", monospace;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: 0 12px 28px rgba(22, 216, 125, 0.24);
  cursor: pointer;
}
.footer-shell .footer-panel .footer-divider {
  margin-top: 34px;
  display: flex;
  align-items: center;
  gap: 16px;
  position: relative;
  z-index: 2;
}
.footer-shell .footer-panel .footer-divider .footer-divider__line {
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
}
.footer-shell .footer-panel .footer-divider .footer-divider__mark {
  width: 12px;
  height: 12px;
  position: relative;
  opacity: 0.6;
}
.footer-shell .footer-panel .footer-divider .footer-divider__mark::before, .footer-shell .footer-panel .footer-divider .footer-divider__mark::after {
  content: "";
  position: absolute;
  background: rgba(255, 255, 255, 0.32);
}
.footer-shell .footer-panel .footer-divider .footer-divider__mark::before {
  width: 1px;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
.footer-shell .footer-panel .footer-divider .footer-divider__mark::after {
  height: 1px;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.footer-shell .footer-panel .footer-links {
  margin-top: 48px;
  display: grid;
  grid-template-columns: minmax(0, 220px);
  gap: 24px;
  position: relative;
  z-index: 2;
}
.footer-shell .footer-panel .footer-links .footer-links__group {
  display: grid;
  gap: 20px;
}
.footer-shell .footer-panel .footer-links .footer-links__group--mobile-duplicate {
  display: none;
}
.footer-shell .footer-panel .footer-links .footer-links__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  width: fit-content;
  color: rgba(255, 255, 255, 0.78);
  font-family: "ProtoMono", monospace;
  font-size: 14px;
  line-height: 1.3;
}
.footer-shell .footer-panel .footer-links .footer-links__slashes {
  color: var(--accent);
  letter-spacing: 0.1em;
}
.footer-shell .footer-panel .footer-links .footer-links__stack_mobile {
  display: none;
}
.footer-shell .footer-panel .footer-links .footer-links__stack {
  display: grid;
  gap: 25px;
}
.footer-shell .footer-panel .footer-links .footer-links__stack a {
  width: fit-content;
  color: var(--text-main);
  font-family: "Ranade", Arial, sans-serif;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.02;
  text-decoration: none;
}
.footer-shell .footer-panel .footer-links .footer-links__stack a:hover {
  color: var(--accent);
}
.footer-shell .footer-panel .footer-legal {
  margin-top: 28px;
  display: flex;
  align-items: center;
  gap: 14px 24px;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
  font-family: "ProtoMono", "JetBrains Mono", monospace;
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--text-soft);
}
.footer-shell .footer-panel .footer-legal a {
  transition: color 180ms ease, opacity 180ms ease;
}
.footer-shell .footer-panel .footer-legal a:hover {
  color: var(--text-main);
}
.footer-shell .footer-panel .footer-graphic {
  width: clamp(500px, 52%, 620px);
  max-width: calc(100% - 88px);
  height: auto;
  position: absolute;
  right: 4px;
  bottom: -2px;
  opacity: 0.96;
  pointer-events: none;
  filter: drop-shadow(0 0 22px rgba(18, 165, 98, 0.18));
}

@media screen and (max-width: 768px) {
  .footer-shell {
    position: relative;
    margin-top: 50px;
  }
  .footer-shell .footer-panel {
    min-height: 0px;
    padding: 20px 10px;
    overflow: hidden;
  }
  .footer-shell .footer-panel .footer-grid {
    display: grid;
    grid-template-columns: auto;
    gap: 20px;
    align-items: center;
    position: relative;
    z-index: 2;
  }
  .footer-shell .footer-panel .footer-grid .footer-copy {
    max-width: 100%;
  }
  .footer-shell .footer-panel .footer-grid .footer-copy .footer-title {
    margin: 0;
    width: fit-content;
    max-width: 100%;
    font-size: 34px;
    font-weight: 400;
  }
  .footer-shell .footer-panel .footer-grid .footer-copy .footer-title .footer-title__muted,
  .footer-shell .footer-panel .footer-grid .footer-copy .footer-title .footer-title__accent {
    display: block;
  }
  .footer-shell .footer-panel .footer-grid .footer-copy .footer-title .footer-title__muted {
    /* color: #fff; */
  }
  .footer-shell .footer-panel .footer-grid .footer-copy .footer-title .footer-title__accent {
    color: #fff;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.26);
    white-space: nowrap;
  }
  .footer-shell .footer-panel .footer-grid .footer-copy .footer-title .footer-title__chevrons {
    margin-right: 0px;
  }
  .footer-shell .footer-panel .footer-grid .footer-copy .footer-body {
    max-width: 100%;
    margin: 20px 0 0;
    color: #fff;
    font-size: 12px;
  }
  .footer-shell .footer-panel .footer-grid .footer-copy .footer-body-line {
    display: block;
    white-space: normal;
  }
  .footer-shell .footer-panel .footer-grid .footer-subscribe {
    padding: 20px;
    display: grid;
    gap: 10px;
  }
  .footer-shell .footer-panel .footer-grid .footer-subscribe .footer-subscribe__title {
    color: #fff;
    font-size: 14px;
  }
  .footer-shell .footer-panel .footer-grid .footer-subscribe .footer-subscribe__field {
    padding: 6px;
    display: flex;
    gap: 10px;
  }
  .footer-shell .footer-panel .footer-grid .footer-subscribe .footer-subscribe__input {
    min-width: 0;
    min-height: 24px;
    padding: 0 16px;
    font-size: 14px;
  }
  .footer-shell .footer-panel .footer-grid .footer-subscribe .footer-subscribe__button {
    min-height: 40px;
    padding: 0 18px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 12px;
    background: linear-gradient(180deg, #2fd980 0%, #1eb967 100%);
    color: #fff;
    font-family: "ProtoMono", monospace;
    font-size: 13px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    box-shadow: 0 12px 28px rgba(22, 216, 125, 0.24);
    cursor: pointer;
  }
  .footer-shell .footer-panel .footer-divider {
    margin-top: 34px;
    display: flex;
    align-items: center;
    gap: 16px;
    position: relative;
    z-index: 2;
  }
  .footer-shell .footer-panel .footer-divider .footer-divider__line {
    flex: 1;
    height: 1px;
    background: rgba(255, 255, 255, 0.08);
  }
  .footer-shell .footer-panel .footer-divider .footer-divider__mark {
    width: 12px;
    height: 12px;
    position: relative;
    opacity: 0.6;
  }
  .footer-shell .footer-panel .footer-divider .footer-divider__mark::before, .footer-shell .footer-panel .footer-divider .footer-divider__mark::after {
    content: "";
    position: absolute;
    background: rgba(255, 255, 255, 0.32);
  }
  .footer-shell .footer-panel .footer-divider .footer-divider__mark::before {
    width: 1px;
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
  }
  .footer-shell .footer-panel .footer-divider .footer-divider__mark::after {
    height: 1px;
    left: 0;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
  }
  .footer-shell .footer-panel .footer-links {
    margin-top: 48px;
    display: flex;
    justify-content: center;
    gap: 24px;
    position: relative;
    z-index: 2;
  }
  .footer-shell .footer-panel .footer-links .footer-links__group {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 20px;
  }
  .footer-shell .footer-panel .footer-links .footer-links__eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    width: fit-content;
    color: rgba(255, 255, 255, 0.78);
    font-family: "ProtoMono", monospace;
    font-size: 14px;
    line-height: 1.3;
  }
  .footer-shell .footer-panel .footer-links .footer-links__slashes {
    color: var(--accent);
    letter-spacing: 0.1em;
  }
  .footer-shell .footer-panel .footer-links .footer-links__stack {
    display: none;
    gap: 10px;
  }
  .footer-shell .footer-panel .footer-links .footer-links__stack_mobile {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
  }
  .footer-shell .footer-panel .footer-links .footer-links__stack_mobile a svg, .footer-shell .footer-panel .footer-links .footer-links__stack_mobile a img {
    height: 24px;
    width: auto;
  }
  .footer-shell .footer-panel .footer-links .footer-links__stack a {
    width: fit-content;
    color: var(--text-main);
    font-family: "Ranade", Arial, sans-serif;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.02;
    text-decoration: none;
  }
  .footer-shell .footer-panel .footer-legal {
    margin-top: 15px;
    display: flex;
    align-items: center;
    gap: 14px 24px;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
    font-family: "ProtoMono", "JetBrains Mono", monospace;
    font-size: 12px;
    letter-spacing: 0.08em;
    color: var(--text-soft);
    justify-content: center;
  }
  .footer-shell .footer-panel .footer-legal a {
    transition: color 180ms ease, opacity 180ms ease;
  }
  .footer-shell .footer-panel .footer-legal a:hover {
    color: var(--text-main);
  }
  .footer-shell .footer-panel .footer-graphic {
    width: 100%;
    max-width: 100%;
    height: auto;
    position: relative;
    right: 0;
    bottom: -100px;
    opacity: 1;
    pointer-events: none;
  }
}
.countup-number {
  font-variant-numeric: tabular-nums;
}

.inline-count {
  display: inline-block;
  white-space: nowrap;
}

.reveal-heading {
  opacity: 0;
  filter: blur(7px) brightness(0.72);
  transform: translateY(14px);
  will-change: opacity, transform, filter;
}

.reveal-heading.is-visible {
  animation: heading-flicker 420ms cubic-bezier(0.2, 0.95, 0.28, 1) both;
}

@keyframes marquee-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-33.333%);
  }
}
@keyframes marquee-scroll-reverse {
  from {
    transform: translateX(-33.333%);
  }
  to {
    transform: translateX(0);
  }
}
@keyframes heading-flicker {
  0% {
    opacity: 0;
    filter: blur(8px) brightness(0.58);
    transform: translateY(14px);
  }
  12% {
    opacity: 0.28;
    filter: blur(3px) brightness(0.84);
  }
  24% {
    opacity: 0.98;
    filter: blur(0);
    transform: translateY(0);
  }
  32% {
    opacity: 0.64;
    filter: blur(0.5px) brightness(0.88);
  }
  44% {
    opacity: 1;
  }
  54% {
    opacity: 0.82;
  }
  64% {
    opacity: 1;
  }
  74% {
    opacity: 0.92;
  }
  100% {
    opacity: 1;
    filter: none;
    transform: none;
  }
}
@keyframes subtle-shine {
  0%, 15% {
    transform: translateX(-180%);
  }
  45%, 100% {
    transform: translateX(180%);
  }
}
/* ============================================================================
   Kodeus / _03-responsive.scss (entry)
   --------------------------------------------------------------------------
   Loads part-a (layout) then part-b (global polish / utilities).
   ========================================================================== */
/* ============================================================================
   Kodeus / 03-responsive — part A
   --------------------------------------------------------------------------
   Web (desktop) layout tweaks. No viewport media queries here.
   Executors / pillar / executor cards → sections/_section-executors.scss.

   Motion: bp.reduced-motion (see _breakpoints.scss).
   ========================================================================== */
.hero-layout {
  grid-template-columns: minmax(300px, 0.8fr) minmax(0, 1fr);
  gap: 18px;
}

.hero-copy {
  padding-right: 0;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .hero-announce::after,
  .logo-marquee__track,
  .reveal-heading.is-visible {
    animation: none !important;
  }
  .cta-image,
  .corner-link {
    transition: none !important;
  }
}
@font-face {
  font-family: "Seona Demo";
  src: url("../fonts/Seona-DEMO.otf") format("opentype");
  font-display: swap;
}
:root {
  --page-gutter: 18px;
  --section-gap: 24px;
  --panel-pad: 30px;
}

html,
body {
  overflow-x: clip;
}

img {
  -webkit-user-drag: none;
  user-select: none;
}

.site-shell {
  width: 98vw;
  /* padding: 14px var(--page-gutter) 48px; */
}

.section-stack {
  gap: var(--section-gap);
}

.site-panel {
  border-radius: 28px;
}

.section-title {
  font-family: "Seona Demo", serif;
  font-size: 64px;
  line-height: 0.92;
  letter-spacing: -0.035em;
  text-wrap: balance;
  max-width: 12ch;
}

.section-title--center {
  margin-inline: auto;
}

.module-title {
  font-family: "Ranade", Arial, sans-serif;
  font-weight: 500;
  font-size: 36px;
  line-height: 1.03;
  letter-spacing: -0.03em;
}

.body-copy {
  font-family: "Ranade", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
}

.site-nav {
  align-items: center;
  gap: 14px;
  padding-top: 10px;
}

.brand-link {
  width: 140px;
  height: 52px;
  padding: 0;
  display: inline-flex;
  align-items: center;
}

.brand-link img {
  width: 108px;
}

.cta-image--nav {
  width: auto;
}

.cta-image--nav img {
  width: auto;
  height: 64px;
}

.nav-pill {
  min-width: 0;
  max-width: 640px;
  padding: 16px 24px 14px;
  gap: 20px;
  border-radius: 0 0 18px 18px;
}

.nav-pill__link {
  font-size: 13px;
}

.hero-panel {
  padding: 0 28px 40px;
  background: linear-gradient(180deg, rgba(6, 8, 9, 0.98) 0%, rgba(4, 5, 6, 0.98) 100%), radial-gradient(circle at 70% 26%, rgba(22, 216, 125, 0.1), transparent 22%);
}

.hero-badge {
  left: 24px;
  top: 90px;
}

.hero-badge img {
  width: 126px;
}

.hero-announce {
  top: 98px;
  padding: 8px 16px 9px;
  gap: 10px;
  font-family: "FK Raster Smooth", monospace;
  font-size: 12px;
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(420px, 0.88fr) minmax(0, 1.12fr);
  gap: 20px;
  align-items: center;
  padding-top: 148px;
}

.hero-copy {
  order: 2;
  padding: 18px 0 72px;
  justify-self: end;
}

.hero-statue-wrap {
  order: 1;
  min-height: 720px;
  position: relative;
}

.hero-cloud {
  width: min(100%, 510px);
  position: absolute;
  left: 0;
  right: auto;
  top: 72px;
  z-index: 1;
  opacity: 0.96;
}

.hero-statue {
  width: min(100%, 600px);
  position: absolute;
  left: 14px;
  right: auto;
  bottom: 0;
  z-index: 2;
}

.hero-init {
  width: min(100%, 450px);
  left: 46px;
  bottom: 50px;
  z-index: 1;
}

.hero-title,
.hero-title-art {
  width: min(100%, 740px);
  margin: 0 0 16px auto;
}

.hero-title-art img {
  width: 100%;
}

.hero-divider {
  display: none;
}

.hero-lower {
  grid-template-columns: minmax(300px, 380px) minmax(340px, 1fr);
  gap: 24px;
  align-items: start;
}

.hero-agent-card {
  padding-top: 114px;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.hero-agent-card::before,
.hero-agent-card::after,
.hero-agent-card__label {
  display: none;
}

.hero-agent-connector {
  width: 92px;
  position: absolute;
  left: 26px;
  top: 0;
}

.hero-agent-card__body {
  padding: 16px 18px 18px;
  display: grid;
  gap: 14px;
  border-radius: 32px;
  background: linear-gradient(180deg, rgba(15, 16, 18, 0.96) 0%, rgba(11, 12, 13, 0.96) 100%);
  border: 1px solid rgba(22, 216, 125, 0.18);
  box-shadow: 0 36px 72px rgba(0, 0, 0, 0.46);
}

.hero-meet-row {
  gap: 14px;
  align-items: center;
}

.hero-meet-row img {
  width: 62px;
}

.hero-meet-text,
.hero-meet-row strong {
  font-family: "Ranade", Arial, sans-serif;
  font-size: 28px;
  font-weight: 400;
  letter-spacing: -0.03em;
}

.hero-role-text {
  margin-left: 6px;
  padding-left: 18px;
  border-left: 1px solid rgba(255, 255, 255, 0.18);
  font-family: "ProtoMono", monospace;
  font-size: 14px;
  letter-spacing: 0.14em;
}

.hero-input {
  min-height: 68px;
  border-radius: 22px;
  font-family: "ProtoMono", monospace;
  font-size: 13px;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.68);
  background: rgba(18, 18, 18, 0.92);
  border: 1px solid rgba(22, 216, 125, 0.12);
}

.hero-side {
  padding-top: 40px;
  min-width: 360px;
  display: grid;
  gap: 16px;
  align-content: start;
  justify-items: start;
}

.body-copy--hero {
  max-width: 21ch;
  font-size: 16px;
  line-height: 1.45;
}

.hero-ctas {
  gap: 16px;
  align-items: center;
  flex-wrap: nowrap;
  margin-top: 2px;
}

.hero-ctas .cta-image {
  flex: 0 0 auto;
}

.hero-ctas .cta-image--view {
  width: 154px;
}

.hero-ctas .cta-image--button img {
  width: 236px;
}

.hero-ctas .cta-image--view img {
  width: 154px;
}

.hero-status {
  display: none;
}

.cta-image--button img {
  width: 338px;
}

.cta-image--view img {
  width: 118px;
}

.hero-compatible {
  margin-top: 14px;
}

.hero-compatible__label {
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  font-family: "ProtoMono", monospace;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-compatible__slashes {
  color: var(--accent);
}

.hero-compatible__slashes--right {
  transform: scaleX(-1);
}

.logo-marquee--hero {
  padding: 16px 0;
  background: linear-gradient(180deg, rgba(12, 18, 15, 0.95) 0%, rgba(12, 18, 15, 0.74) 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.logo-marquee__track {
  gap: 72px;
}

.logo-marquee__track img {
  max-height: 26px;
  filter: brightness(0) saturate(100%) invert(55%) sepia(88%) saturate(515%) hue-rotate(99deg) brightness(91%) contrast(94%);
  opacity: 0.94;
}

.cta-image--demo img {
  width: 114px;
}

.cta-image--invoke img {
  width: 470px;
  max-width: 100%;
}

.cta-image--view-final img {
  width: 118px;
}

/* Final desktop cleanup pass for hero. */
.section-stack {
  gap: 50px;
}

.cta-image--nav img {
  height: 78px;
}

.hero-panel {
  padding: 0 24px 18px;
}

.hero-announce {
  top: 88px;
}

.hero-layout {
  grid-template-columns: minmax(340px, 0.84fr) minmax(0, 1.16fr);
  gap: 18px;
  padding-top: 88px;
  align-items: center;
}

.hero-copy {
  width: 100%;
  max-width: 804px;
  padding: 0 0 10px;
  justify-self: stretch;
}

.hero-statue-wrap {
  min-height: 526px;
}

.hero-cloud {
  width: min(100%, 404px);
  top: 48px;
}

.hero-statue {
  width: min(100%, 470px);
  left: 4px;
  bottom: 0;
}

.hero-init {
  width: min(100%, 324px);
  left: 26px;
  bottom: 20px;
}

.hero-title,
.hero-title-art {
  width: min(100%, 592px);
  margin-bottom: 4px;
}

.hero-lower {
  grid-template-columns: minmax(268px, 320px) minmax(330px, 382px);
  gap: 16px;
  align-items: start;
  margin-top: 10px;
}

.hero-agent-card {
  padding-top: 56px;
}

.hero-agent-card__body {
  max-width: 320px;
  padding: 10px 12px 11px;
  gap: 10px;
}

.hero-meet-row img {
  width: 42px;
}

.hero-meet-text,
.hero-meet-row strong {
  font-size: 17px;
}

.hero-role-text {
  font-size: 11px;
  letter-spacing: 0.12em;
}

.hero-input {
  min-height: 52px;
  font-size: 11px;
}

.hero-side {
  padding-top: 10px;
  min-width: 0;
  width: 100%;
  max-width: 420px;
  gap: 12px;
  transform: none;
}

.body-copy--hero {
  max-width: 28ch;
  font-size: 16px;
  line-height: 1.46;
}

.hero-ctas {
  gap: 12px;
}

.hero-ctas .cta-image--button {
  width: 188px;
}

.hero-ctas .cta-image--button img {
  width: 188px;
}

.hero-ctas .cta-image--view {
  width: 118px;
}

.hero-ctas .cta-image--view img {
  width: 118px;
}

.hero-compatible {
  margin-top: 2px;
}

.logo-marquee--hero {
  background: linear-gradient(180deg, rgba(9, 13, 11, 0.98) 0%, rgba(8, 12, 10, 0.92) 100%);
}

.cta-image--invoke img {
  width: 320px;
}

.cta-image--view-final img {
  width: 134px;
}

.hero-panel {
  padding: 0 28px 12px;
}

.hero-announce {
  top: 86px;
  width: min(100%, 620px);
}

.hero-layout {
  grid-template-columns: minmax(292px, 0.8fr) minmax(0, 1.2fr);
  gap: 14px;
  padding-top: 94px;
  align-items: center;
}

.hero-copy {
  max-width: none;
  padding: 12px 0 8px;
}

.hero-statue-wrap {
  min-height: 500px;
  margin-top: 16px;
}

.hero-cloud {
  width: min(100%, 392px);
  top: 52px;
}

.hero-statue {
  width: min(100%, 456px);
  left: 0;
}

.hero-title,
.hero-title-art {
  width: min(100%, 576px);
  margin-bottom: 4px;
}

.hero-lower {
  grid-template-columns: minmax(260px, 312px) minmax(318px, 372px);
  gap: 14px;
  align-items: start;
  margin-top: 10px;
}

.hero-agent-card {
  padding-top: 54px;
}

.hero-agent-card__body {
  max-width: 312px;
  padding: 10px 12px 11px;
}

.hero-meet-row img {
  width: 40px;
}

.hero-meet-text,
.hero-meet-row strong {
  font-size: 16px;
}

.hero-role-text {
  font-size: 11px;
}

.hero-side {
  padding-top: 8px;
  max-width: 390px;
  gap: 12px;
  transform: none;
}

.body-copy--hero {
  max-width: 27ch;
  font-size: 16px;
}

.hero-ctas {
  gap: 12px;
  flex-wrap: nowrap;
}

.hero-ctas .cta-image--button,
.hero-ctas .cta-image--button img {
  width: 172px;
}

.hero-ctas .cta-image--view,
.hero-ctas .cta-image--view img {
  width: 108px;
}

.hero-compatible {
  margin-top: 4px;
}

.section-title {
  font-size: 54px;
}

.hero-layout {
  gap: 16px;
}

.cta-image--invoke img {
  width: 320px !important;
}

/* Homepage refinement pass */
#about.section-shell {
  margin-top: 50px;
}

.hero-panel {
  padding-bottom: 116px !important;
}

.hero-badge {
  top: 94px !important;
}

.hero-announce {
  top: 128px !important;
}

.hero-layout {
  padding-top: 48px !important;
  align-items: center !important;
  gap: 22px !important;
}

.hero-statue-wrap {
  min-height: 548px !important;
}

.hero-statue {
  width: min(100%, 594px) !important;
  left: -10px !important;
  bottom: -8px !important;
}

.hero-init {
  width: 188px !important;
  left: clamp(258px, 58%, 392px) !important;
  right: auto !important;
  bottom: 22px !important;
  z-index: 4 !important;
}

.hero-copy {
  padding-top: 8px !important;
}

.hero-divider {
  margin: 28px 0 24px !important;
}

.hero-lower {
  gap: 24px !important;
}

.hero-agent-card {
  padding-top: 0 !important;
}

.hero-agent-card::before {
  height: 112px !important;
  top: 2px !important;
}

.hero-agent-card::after {
  top: 112px !important;
}

.hero-agent-card__body {
  padding: 14px 16px !important;
  border-radius: 20px !important;
}

.hero-side {
  padding-top: 0 !important;
}

.body-copy--hero {
  max-width: 23ch !important;
}

.hero-ctas {
  margin-top: 18px !important;
}

.hero-status {
  bottom: -56px !important;
  gap: 8px !important;
}

.hero-compatible__label {
  padding: 12px 0 18px !important;
  margin-bottom: 0 !important;
}

.logo-marquee--hero {
  padding: 20px 0 !important;
}

.logo-marquee--hero .logo-marquee__track {
  gap: 92px !important;
  animation: hero-marquee-scroll 34s linear infinite !important;
}

@keyframes hero-marquee-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.hero-announce span:last-child {
  font-size: 0 !important;
}

.hero-announce span:last-child::before {
  content: "→";
  font-size: 15px;
}

.progress-group {
  gap: 18px !important;
  margin-bottom: 26px !important;
}

.cta-image--invoke img {
  width: 308px !important;
}

.cta-image--view-final img {
  width: 120px !important;
}

.section-flag::before {
  content: "///" !important;
}

.section-flag::after {
  content: "\\\\\\" !important;
}

.site-nav {
  grid-template-columns: auto 1fr auto !important;
  align-items: start !important;
  gap: 20px !important;
  padding-top: 0 !important;
}

.brand-link {
  width: 132px !important;
  height: auto !important;
  padding: 12px 0 0 !important;
}

.brand-link img {
  width: 118px !important;
}

.nav-pill {
  max-width: 560px !important;
  padding: 13px 28px 12px !important;
  gap: 24px !important;
  border-radius: 0 0 18px 18px !important;
}

.nav-pill__link {
  font-size: 13px !important;
}

.hero-panel {
  padding: 0 18px 108px !important;
}

.hero-badge {
  top: 92px !important;
  left: 20px !important;
}

.hero-badge img {
  width: 110px !important;
}

.hero-announce {
  top: 122px !important;
  left: 53.5% !important;
  transform: translateX(-50%) !important;
  padding: 9px 18px 10px !important;
  gap: 10px !important;
  font-size: 12px !important;
  line-height: 1.2 !important;
  max-width: none !important;
}

.hero-layout {
  grid-template-columns: minmax(430px, 0.88fr) minmax(0, 1fr) !important;
  align-items: start !important;
  gap: 12px !important;
  padding-top: 110px !important;
}

.hero-statue-wrap {
  min-height: 674px !important;
  margin-top: 4px !important;
}

.hero-cloud {
  width: min(100%, 436px) !important;
  left: 8px !important;
  top: 68px !important;
}

.hero-statue {
  width: min(100%, 560px) !important;
  left: 0 !important;
  bottom: 0 !important;
}

.hero-init {
  width: 256px !important;
  left: 64px !important;
  bottom: 16px !important;
}

.hero-copy {
  padding: 54px 0 0 !important;
  width: 100% !important;
  max-width: none !important;
  justify-self: stretch !important;
}

.hero-title-art {
  width: min(100%, 840px) !important;
  margin: 0 0 22px auto !important;
}

.hero-title-art img {
  width: 100% !important;
  height: auto !important;
}

.hero-divider {
  display: block !important;
  margin: 18px 0 24px !important;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.05)) !important;
}

.hero-lower {
  grid-template-columns: minmax(338px, 382px) minmax(320px, 1fr) !important;
  align-items: start !important;
  gap: 22px !important;
  margin-top: 0 !important;
}

.hero-agent-card {
  padding-top: 28px !important;
}

.hero-agent-connector {
  width: 74px !important;
  left: 18px !important;
  top: 0 !important;
}

.hero-agent-card__body {
  max-width: 382px !important;
  padding: 12px 14px 14px !important;
  gap: 12px !important;
  border-radius: 24px !important;
}

.hero-meet-row {
  gap: 10px !important;
}

.hero-meet-row img {
  width: 44px !important;
}

.hero-meet-text,
.hero-meet-row strong {
  font-size: 21px !important;
  line-height: 1 !important;
}

.hero-role-text {
  margin-left: 4px !important;
  padding-left: 14px !important;
  font-size: 12px !important;
  letter-spacing: 0.13em !important;
}

.hero-input {
  min-height: 50px !important;
  padding: 14px 16px !important;
  border-radius: 18px !important;
  font-size: 12px !important;
  letter-spacing: 0.12em !important;
}

.hero-side {
  min-width: 0 !important;
  max-width: 390px !important;
  padding-top: 12px !important;
  gap: 14px !important;
  align-content: start !important;
}

.body-copy--hero {
  max-width: 32ch !important;
  font-size: 16px !important;
  line-height: 1.42 !important;
}

.hero-copy__line {
  display: block;
  white-space: nowrap;
}

.hero-ctas {
  margin-top: 4px !important;
  gap: 18px !important;
  align-items: center !important;
  flex-wrap: nowrap !important;
}

.hero-ctas .cta-image--button img {
  width: 170px !important;
}

.hero-ctas .cta-image--view img {
  width: 122px !important;
}

.hero-status {
  width: 214px !important;
  display: grid !important;
  right: -2px !important;
  bottom: 6px !important;
  gap: 9px !important;
  color: rgba(255, 255, 255, 0.28) !important;
  font-size: 12px !important;
  letter-spacing: 0.1em !important;
  line-height: 1.28 !important;
}

.hero-status li {
  white-space: nowrap;
}

.hero-compatible {
  position: absolute !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  margin-top: 0 !important;
}

.hero-compatible__label {
  padding: 8px 0 14px !important;
  margin: 0 !important;
  gap: 16px !important;
  font-size: 14px !important;
  letter-spacing: 0.16em !important;
}

.hero-compatible__slashes--right {
  transform: none !important;
}

.logo-marquee--hero {
  padding: 18px 0 16px !important;
  background: linear-gradient(180deg, rgba(9, 13, 11, 0.98) 0%, rgba(8, 12, 10, 0.94) 100%) !important;
}

.logo-marquee--hero .logo-marquee__track {
  gap: 92px !important;
}

.logo-marquee--hero .logo-marquee__track img {
  max-height: 24px !important;
}

.nav-pill {
  max-width: 510px !important;
  padding: 12px 22px 11px !important;
  gap: 18px !important;
}

.nav-pill__link {
  font-size: 12px !important;
}

.hero-panel {
  padding: 0 16px 96px !important;
}

.hero-announce {
  top: 118px !important;
}

.hero-layout {
  grid-template-columns: minmax(360px, 0.9fr) minmax(0, 1fr) !important;
  gap: 10px !important;
}

.hero-statue-wrap {
  min-height: 610px !important;
}

.hero-cloud {
  width: min(100%, 396px) !important;
  left: 0 !important;
  top: 72px !important;
}

.hero-statue {
  width: min(100%, 512px) !important;
}

.hero-init {
  width: 226px !important;
  left: 46px !important;
  bottom: 14px !important;
}

.hero-title-art {
  width: min(100%, 730px) !important;
}

.hero-lower {
  grid-template-columns: minmax(302px, 344px) minmax(278px, 1fr) !important;
  gap: 18px !important;
}

.hero-agent-card__body {
  max-width: 344px !important;
}

.hero-meet-row img {
  width: 40px !important;
}

.hero-meet-text,
.hero-meet-row strong {
  font-size: 19px !important;
}

.hero-role-text {
  font-size: 11px !important;
}

.hero-side {
  max-width: 344px !important;
  padding-top: 10px !important;
}

.body-copy--hero {
  max-width: 30ch !important;
  font-size: 15px !important;
}

.hero-ctas .cta-image--button img {
  width: 160px !important;
}

.hero-ctas .cta-image--view img {
  width: 114px !important;
}

.hero-status {
  width: 188px !important;
  font-size: 11px !important;
  gap: 8px !important;
}

.hero-compatible__label {
  font-size: 13px !important;
}

.logo-marquee--hero .logo-marquee__track {
  gap: 78px !important;
}

.logo-marquee--hero .logo-marquee__track img {
  max-height: 22px !important;
}

.hero-panel {
  padding-bottom: 118px !important;
}

.hero-layout {
  grid-template-columns: minmax(332px, 0.82fr) minmax(0, 1fr) !important;
  gap: 12px !important;
}

.hero-statue-wrap {
  min-height: 596px !important;
}

.hero-cloud {
  width: min(100%, 384px) !important;
  left: 2px !important;
  top: 78px !important;
}

.hero-statue {
  width: min(100%, 496px) !important;
  left: 4px !important;
}

.hero-init {
  width: 214px !important;
  left: 38px !important;
  bottom: 18px !important;
}

.hero-copy {
  padding-top: 42px !important;
}

.hero-title-art {
  width: min(100%, 620px) !important;
  margin-bottom: 16px !important;
}

.hero-divider {
  margin: 14px 0 22px !important;
}

.hero-lower {
  width: min(100%, 612px) !important;
  grid-template-columns: minmax(284px, 318px) minmax(244px, 278px) !important;
  gap: 16px !important;
}

.hero-agent-card {
  padding-top: 18px !important;
}

.hero-agent-card__body {
  max-width: 318px !important;
}

.hero-side {
  max-width: 278px !important;
  padding-top: 4px !important;
}

.body-copy--hero {
  max-width: 28ch !important;
  font-size: 15px !important;
}

.hero-ctas {
  gap: 10px !important;
}

.hero-ctas .cta-image--button img {
  width: 152px !important;
}

.hero-ctas .cta-image--view img {
  width: 108px !important;
}

.hero-status {
  width: 174px !important;
  right: 4px !important;
  bottom: -112px !important;
  font-size: 10.5px !important;
  line-height: 1.24 !important;
}

.hero-compatible__label {
  padding: 4px 0 12px !important;
  gap: 14px !important;
  font-size: 12px !important;
  letter-spacing: 0.18em !important;
}

.logo-marquee--hero {
  padding: 16px 0 14px !important;
}

.logo-marquee--hero .logo-marquee__track {
  gap: 72px !important;
}

.hero-panel {
  padding-bottom: 118px !important;
}

.hero-lower {
  width: min(100%, 706px) !important;
  grid-template-columns: minmax(318px, 364px) minmax(250px, 314px) !important;
}

.hero-side {
  max-width: 314px !important;
}

.hero-status {
  right: 0 !important;
  bottom: -96px !important;
}

.hero-compatible__label {
  padding: 6px 0 13px !important;
  font-size: 13px !important;
}

/* HERO — FINAL DESKTOP FIX */
.hero-panel {
  padding: 0 28px 92px !important;
}

.hero-announce {
  top: 118px !important;
}

.hero-layout {
  grid-template-columns: minmax(500px, 0.92fr) minmax(0, 1.08fr) !important;
  padding-top: 92px !important;
  gap: 26px !important;
  align-items: end !important;
}

.hero-statue-wrap {
  min-height: 610px !important;
}

.hero-cloud {
  width: 520px !important;
  top: 120px !important;
  left: 0 !important;
}

.hero-statue {
  width: 610px !important;
  left: 16px !important;
  bottom: -18px !important;
}

.hero-copy {
  padding: 128px 0 52px !important;
  max-width: 840px !important;
}

.hero-title-art {
  width: min(100%, 760px) !important;
  margin: 0 0 38px auto !important;
}

.hero-lower {
  grid-template-columns: 360px 1fr !important;
  gap: 36px !important;
  margin-top: 0 !important;
}

.hero-agent-card {
  padding-top: 34px !important;
}

.hero-side {
  padding-top: 18px !important;
  max-width: 480px !important;
}

.body-copy--hero {
  max-width: 34ch !important;
}

.hero-compatible {
  bottom: 0 !important;
}

/* HERO — requested final tweaks */
.nav-pill__link {
  font-size: 11px !important;
}

/* move hero title/content upward */
.hero-copy {
  padding-top: 72px !important;
  padding-bottom: 44px !important;
}

.hero-layout {
  padding-top: 70px !important;
  align-items: end !important;
}

/* slightly reduce Warren card */
.hero-agent-card__body {
  max-width: 285px !important;
  padding: 10px 12px !important;
}

.hero-meet-row img {
  width: 34px !important;
  height: 34px !important;
}

.hero-meet-text,
.hero-meet-row strong {
  font-size: 15px !important;
}

.hero-role-text {
  font-size: 9px !important;
  letter-spacing: 0.11em !important;
}

.hero-input {
  min-height: 44px !important;
  font-size: 9px !important;
  padding: 12px 14px !important;
}

/* keep announcement/header spacing */
.hero-announce {
  top: 126px !important;
}

.hero-layout {
  padding-top: 42px !important;
  align-items: start !important;
}

.hero-copy {
  padding-top: 20px !important;
  padding-bottom: 34px !important;
}

.hero-statue-wrap {
  min-height: 590px !important;
}

.hero-cloud {
  left: -34px !important;
  top: 92px !important;
}

.hero-statue {
  left: -24px !important;
  bottom: -8px !important;
}

.hero-panel {
  padding: 0 28px 84px !important;
  overflow: hidden !important;
}

.hero-announce {
  top: 108px !important;
  width: min(100%, 520px) !important;
  max-width: 520px !important;
  padding: 10px 18px !important;
}

.hero-layout {
  grid-template-columns: minmax(432px, 0.88fr) minmax(0, 1fr) !important;
  padding-top: 52px !important;
  gap: 16px !important;
  align-items: start !important;
}

.hero-statue-wrap {
  min-height: 556px !important;
  margin-top: 8px !important;
}

.hero-cloud {
  width: min(100%, 474px) !important;
  left: -42px !important;
  top: 86px !important;
}

.hero-statue {
  width: min(100%, 468px) !important;
  left: -10px !important;
  bottom: 22px !important;
}

.hero-copy {
  padding-top: 8px !important;
  padding-bottom: 22px !important;
  max-width: none !important;
}

.hero-title-art {
  width: min(100%, 642px) !important;
  margin: 0 0 26px auto !important;
}

.hero-divider {
  margin: 10px 0 16px !important;
}

.hero-lower {
  width: min(100%, 590px) !important;
  grid-template-columns: 286px minmax(234px, 250px) !important;
  gap: 16px !important;
  margin-top: -4px !important;
}

.hero-agent-card {
  padding-top: 12px !important;
}

.hero-agent-card__body {
  max-width: 286px !important;
  padding: 10px 12px !important;
}

.hero-side {
  max-width: 222px !important;
  padding-top: 0 !important;
  justify-self: start !important;
  margin-left: -24px !important;
}

.body-copy--hero {
  max-width: 22ch !important;
  font-size: 15px !important;
  line-height: 1.4 !important;
}

.hero-ctas {
  gap: 12px !important;
  flex-wrap: nowrap !important;
}

.hero-ctas .cta-image--button img {
  width: 138px !important;
}

.hero-ctas .cta-image--view img {
  width: 102px !important;
}

.hero-status {
  width: 146px !important;
  right: 8px !important;
  bottom: -88px !important;
  font-size: 8px !important;
  line-height: 1.18 !important;
  opacity: 0.62 !important;
}

.hero-compatible__label {
  padding: 2px 0 10px !important;
}

.hero-title-art {
  width: min(100%, 610px) !important;
}

.hero-statue {
  width: min(100%, 448px) !important;
}

.hero-lower {
  width: min(100%, 554px) !important;
  grid-template-columns: 272px minmax(220px, 238px) !important;
  gap: 14px !important;
}

.hero-side {
  max-width: 236px !important;
}

.hero-ctas .cta-image--button img {
  width: 142px !important;
}

.hero-ctas .cta-image--view img {
  width: 106px !important;
}

/* FINAL STRATEGY / INVOKE / INTEGRATIONS / HERO TUNING */
.hero-announce {
  left: 50% !important;
  right: auto !important;
  transform: translateX(-50%) !important;
  width: min(100%, 560px) !important;
  max-width: 560px !important;
  justify-content: center !important;
  text-align: center !important;
}

/* FINAL HERO / WARREN / STRATEGY TITLE TUNING */
.hero-announce {
  left: 50% !important;
  right: auto !important;
  top: 110px !important;
  transform: translateX(-50%) !important;
  justify-content: center !important;
  text-align: center !important;
}

.hero-agent-card {
  margin-top: 44px !important;
  margin-left: -14px !important;
}

.hero-announce {
  width: 560px !important;
  max-width: 560px !important;
}

.hero-agent-card {
  margin-top: 54px !important;
}

.hero-announce {
  width: 510px !important;
  max-width: 510px !important;
}

.hero-agent-card {
  margin-top: 36px !important;
  margin-left: -8px !important;
}

/* FINAL REQUESTED NAV / HERO ALIGNMENT FIX */
.site-nav,
.nav-pill,
.hero-announce {
  box-sizing: border-box !important;
}

.site-nav {
  grid-template-columns: auto minmax(0, 1fr) auto !important;
  grid-template-rows: auto auto !important;
  align-items: start !important;
  /* position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  background: #000; */
}

.nav-pill {
  grid-column: 2 !important;
  grid-row: 1 !important;
  justify-self: center !important;
  width: min(100%, 560px) !important;
  max-width: 560px !important;
}

.brand-link {
  grid-column: 1 !important;
  grid-row: 1/span 2 !important;
}

.cta-image--nav {
  grid-column: 3 !important;
  grid-row: 1/span 2 !important;
}

.site-nav .hero-announce {
  grid-column: 2 !important;
  grid-row: 2 !important;
  justify-self: center !important;
  position: static !important;
  left: auto !important;
  right: auto !important;
  top: auto !important;
  transform: none !important;
  width: min(100%, 560px) !important;
  max-width: 560px !important;
  margin: 8px auto 0 !important;
}

.hero-agent-connector {
  top: -54px !important;
}

.site-nav .hero-announce {
  width: min(100%, 510px) !important;
  max-width: 510px !important;
}

.hero-agent-connector {
  top: -36px !important;
}

/* ============================================================================
   Part B — global polish, utilities, and shared components
   ========================================================================== */
.hero-title-art.reveal-heading,
.section-title--executors.reveal-heading {
  opacity: 1 !important;
  filter: none !important;
  transform: none !important;
  visibility: visible !important;
}

/* Global polish pass */
:root {
  --section-gap: 80px;
  --button-primary-width: 252px;
  --button-primary-width-mobile: 204px;
}

#about.section-shell {
  margin-top: 80px !important;
}

body :where(.body-copy,
.nav-pill__link,
.hero-announce,
.hero-role-text,
.hero-status,
.section-flag,
.section-flag--raster,
.mono-label,
.module-points li,
.story-card__name,
.story-card__meta,
.social-card__handle,
.social-card__quote,
.social-card__footer,
.social-card__footer-item,
.strategy-option__name,
.strategy-option__desc,
.strategy-metric span,
.progress-group,
.faq-question,
.faq-answer,
.footer-body,
.footer-links__eyebrow,
.footer-links__stack a,
.footer-subscribe__title,
.footer-subscribe__input,
.footer-subscribe__button,
.footer-legal a) {
  line-height: 1.35 !important;
}

body .cta-image--button,
body .cta-image--button img {
  width: fit-content !important;
  max-width: 100% !important;
  height: auto !important;
}

body .hero-ctas .cta-image--button,
body .hero-ctas .cta-image--button img,
body .quote-card .cta-image--button,
body .quote-card .cta-image--button img {
  width: var(--button-primary-width) !important;
  max-width: 100% !important;
  height: auto !important;
}

.hero-announce {
  justify-self: center !important;
}

.hero-announce::after {
  display: none !important;
}

.hero-announce__tag {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 2px 8px 3px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(22, 216, 125, 0.12);
  border: 1px solid rgba(22, 216, 125, 0.16);
}

.hero-announce__tag::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 20%, rgba(255, 255, 255, 0.28) 50%, transparent 78%);
  transform: translateX(-180%);
  animation: subtle-shine 5s ease-in-out infinite;
  pointer-events: none;
}

/* Hero `.site-nav`: `site-nav--dock` + `is-visible` toggled from site-enhancements.js */
.site-nav.site-nav--dock {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  max-width: min(80%, 1440px);
  margin: 0 auto;
  padding: 10px var(--page-gutter, 18px) 12px;
  box-sizing: border-box;
  z-index: 200;
  background: #000;
  grid-template-columns: auto minmax(0, 1fr) auto !important;
  grid-template-rows: auto !important;
  align-items: center !important;
  gap: 14px !important;
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
}

.site-nav.site-nav--dock.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.site-nav.site-nav--dock .hero-announce {
  display: none !important;
}

.site-nav.site-nav--dock > .brand-link {
  grid-column: 1 !important;
  grid-row: 1 !important;
}

.site-nav.site-nav--dock > .nav-pill {
  grid-column: 2 !important;
  grid-row: 1 !important;
  min-width: 0 !important;
  max-width: min(560px, 100%) !important;
  margin-left: auto !important;
  margin-right: auto !important;
  overflow-x: auto;
  overflow-y: hidden;
  overscroll-behavior-x: contain;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  justify-content: center !important;
}

.site-nav.site-nav--dock > .cta-image--nav {
  grid-column: 3 !important;
  grid-row: 1 !important;
}

.site-nav.site-nav--dock .brand-link {
  width: 140px;
  height: 52px;
  padding-top: 0 !important;
}

.site-nav.site-nav--dock .brand-link img {
  width: 108px;
}

.site-nav.site-nav--dock .cta-image--nav {
  width: auto;
  justify-self: end;
}

.site-nav.site-nav--dock .cta-image--nav img {
  width: auto;
  height: 56px;
}

body .hero-agent-card {
  padding-top: 72px !important;
}

body .hero-agent-connector {
  top: 0 !important;
}

.nav-menu-toggle {
  display: none;
}

@keyframes mobile-hero-pill-marquee {
  0%, 12% {
    transform: translateX(0);
  }
  56%, 74% {
    transform: translateX(-32%);
  }
  100% {
    transform: translateX(0);
  }
}
/* Desktop refinement pass — 2026-05-05 */
body .site-nav > .brand-link {
  padding: 10px 4px 0 !important;
}

/* Hero nav only — `.site-nav--dock` is the same node; keep width rules to in-hero placement. */
body .hero-panel > .site-nav .nav-pill,
body .site-nav .hero-announce {
  width: min(100%, 560px) !important;
  max-width: 560px !important;
}

body .site-nav .hero-announce {
  top: 112px !important;
  padding: 10px 22px 11px !important;
}

body .hero-lower {
  grid-template-columns: minmax(304px, 348px) minmax(280px, 1fr) !important;
  gap: 40px !important;
  align-items: start !important;
}

body .hero-agent-card {
  padding-top: 104px !important;
}

body .hero-agent-card::before {
  height: 178px !important;
}

body .hero-agent-card::after {
  top: 178px !important;
  width: calc(100% - 34px) !important;
}

body .hero-agent-card__label {
  margin-bottom: 166px !important;
}

body .hero-agent-card__body {
  max-width: 330px !important;
  margin-top: 8px !important;
}

body .hero-side {
  max-width: 352px !important;
  padding-top: 16px !important;
  justify-self: start !important;
  margin-left: -46px !important;
  display: grid !important;
  justify-items: start !important;
  align-content: start !important;
}

body .body-copy--hero {
  max-width: 25ch !important;
  font-size: 13px !important;
  line-height: 1.34 !important;
}

body .hero-ctas {
  margin-top: 14px !important;
  gap: 10px !important;
  align-items: center !important;
  flex-wrap: nowrap !important;
  justify-content: flex-start !important;
  align-self: start !important;
}

body .hero-ctas .cta-image--button,
body .hero-ctas .cta-image--button img {
  width: 198px !important;
}

body .hero-ctas .cta-image--view,
body .hero-ctas .cta-image--view img {
  width: 116px !important;
}

body .module-card {
  align-items: stretch !important;
}

body .module-copy {
  padding-bottom: 0 !important;
}

body .gains-card {
  grid-template-columns: minmax(220px, 0.92fr) minmax(0, 0.82fr) !important;
  gap: 14px !important;
}

body .gains-card__content {
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  justify-content: flex-start !important;
  text-align: left !important;
  gap: 10px !important;
  padding-top: 2px !important;
}

body .gains-card__percent-wrap {
  width: 150px !important;
  height: 48px !important;
  margin: 0 !important;
}

body .gains-card__percent {
  font-size: 32px !important;
  letter-spacing: -0.05em !important;
}

body .gains-card__headline {
  max-width: 13ch !important;
  font-size: 16px !important;
  line-height: 1.18 !important;
  text-align: left !important;
  text-wrap: initial !important;
}

body .gains-card__sub {
  align-self: flex-start !important;
  gap: 8px !important;
  font-size: 10px !important;
  line-height: 1.25 !important;
  text-align: left !important;
}

body .gains-card__sub img {
  width: 24px !important;
}

body .cta-image--view-final,
body .cta-image--view-final img {
  width: 134px !important;
}

/* Final desktop correction pass. Keep this last so it wins over earlier refinement layers. */
body .hero-side {
  width: 360px !important;
  max-width: 360px !important;
  margin-left: -70px !important;
  justify-items: start !important;
}

body .hero-side .body-copy--hero,
body .hero-side .hero-ctas {
  margin-left: 0 !important;
  justify-self: start !important;
}

body .hero-side .hero-ctas {
  margin-left: -27px !important;
  width: calc(100% + 27px) !important;
}

body .hero-ctas {
  justify-content: flex-start !important;
}

/* Final mobile hero/module art direction pass. */
.hero-title-mobile {
  display: none;
}

/* CTA optical alignment and hover shine. */
body .cta-image {
  position: relative !important;
  overflow: hidden !important;
  isolation: isolate !important;
}

body .cta-image img {
  position: relative !important;
  z-index: 1 !important;
  display: block !important;
}

body .cta-image::before {
  content: "";
  position: absolute;
  z-index: 2;
  pointer-events: none;
  top: 21%;
  bottom: 40%;
  left: 12%;
  right: 12%;
  border-radius: 10px;
  background: linear-gradient(110deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 34%, rgba(255, 255, 255, 0.26) 48%, rgba(255, 255, 255, 0.08) 58%, rgba(255, 255, 255, 0) 72%);
  mix-blend-mode: screen;
  opacity: 0;
  transform: translateX(-160%) skewX(-18deg);
  transition: transform 620ms ease, opacity 220ms ease;
}

body .cta-image:hover::before {
  opacity: 1;
  transform: translateX(160%) skewX(-18deg);
}

body .cta-image--view::before,
body .cta-image--view-final::before {
  inset: 0 !important;
  border-radius: 8px !important;
}

body .hero-ctas .cta-image--view {
  top: -8px !important;
}

body .site-nav > .cta-image--nav img {
  width: auto !important;
  height: 66px !important;
}

body .hero-statue {
  width: min(130%, 840px) !important;
  max-width: none !important;
}

/* Final mobile rhythm, typography, and CTA shine containment pass. */
.reveal-heading {
  opacity: 0;
  filter: none !important;
  transform: translateY(10px);
  transition: opacity 240ms ease, transform 360ms cubic-bezier(0.2, 0.95, 0.28, 1);
}

.reveal-heading.is-visible {
  animation: none !important;
  opacity: 1 !important;
  filter: none !important;
  transform: none !important;
}

body .cta-image {
  border-radius: 14px !important;
  contain: paint !important;
}

body .cta-image::before {
  inset: 0 !important;
  z-index: 2 !important;
  border-radius: inherit !important;
  clip-path: inset(0 round 14px) !important;
  background: linear-gradient(112deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 39%, rgba(255, 255, 255, 0.22) 49%, rgba(255, 255, 255, 0.08) 56%, rgba(255, 255, 255, 0) 68%) !important;
  opacity: 0 !important;
  transform: translateX(-140%) skewX(-15deg) !important;
  transition: transform 1.65s cubic-bezier(0.22, 0.61, 0.36, 1), opacity 320ms ease !important;
}

body .cta-image:hover::before {
  opacity: 1 !important;
  transform: translateX(140%) skewX(-15deg) !important;
}

body .cta-image--view::before,
body .cta-image--view-final::before {
  clip-path: inset(0 round 8px) !important;
}

/* Final mobile comp match pass. Desktop remains untouched. */
/* Mobile overflow and navbar correction on top of the comp pass. */
/* Final mobile hero/nav lock: match the phone comp without touching desktop. */
@keyframes announcementMarqueeMobile {
  0% {
    transform: translateX(0);
  }
  42% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-58%);
  }
}
/* Tighten the final mobile hero so the full composition fits inside 818px. */
/* Mobile requested alignment/typography pass. */
/* Mobile CTA sizing: match the provided Start Trading + View Agents reference. */
/* Mobile card gutters + compact navbar CTA alignment. */
/* Mobile hero: borderless, not a card — no panel styling or clipping. */
/* Mobile Warren card: final reference-locked layout. */
/* Mobile module cards: final reference-locked layout. */
/* Make hero partner strip full-bleed across viewport.
   .site-shell is 98vw with 1px border inside body's 20px padding,
   so its content edge sits ~21px from the viewport left.
   We anchor the marquee to that edge and stretch it to 100vw. */
body header.section-shell,
body .site-panel.hero-panel {
  overflow-x: visible !important;
}

body .hero-compatible {
  left: 0 !important;
  right: auto !important;
  width: 100vw !important;
  margin-left: -21px !important;
  margin-right: 0 !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

body .hero-compatible .logo-marquee--hero {
  width: 100% !important;
  max-width: none !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

/* put this near your existing .cta-image--nav rules inside index.html <style> */
.cta-image--nav {
  overflow: hidden; /* needed so shine stays clipped to button */
}

.cta-image--nav__icon,
.cta-image--nav__divider,
.cta-image--nav__label {
  position: relative;
  z-index: 2;
}

.cta-image--nav::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  border-radius: inherit;
  background: linear-gradient(112deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 39%, rgba(255, 255, 255, 0.22) 49%, rgba(255, 255, 255, 0.08) 56%, rgba(255, 255, 255, 0) 68%);
  opacity: 0;
  transform: translateX(-100%) skewX(-15deg);
  transition: transform 1.65s cubic-bezier(0.22, 0.61, 0.36, 1), opacity 100ms ease;
}

.cta-image--nav:hover::after {
  opacity: 1;
  transform: translateX(140%) skewX(-15deg);
}

/* ============================================================================
   Hero — Mobile breakpoint swap (<=768px)
   Kept last so it wins over the desktop !important refinements above.
   Pairs with `.hero-mobile` base styles in scss/sections/_section-hero.scss.
   ========================================================================== */
@media only screen and (max-width: 768px) {
  body .hero-panel {
    height: auto !important;
    min-height: 100vh !important;
    padding: 0 6px 96px !important;
    border-radius: 14px !important;
    overflow: hidden !important;
  }
  body .hero-panel > .site-nav,
  body .hero-panel > .hero-layout,
  body .hero-panel .hero-status,
  body .hero-panel .hero-badge,
  body .hero-panel .hero-announce {
    display: none !important;
  }
  /* Primary nav lives in <header> (not inside .hero-panel); hide on small screens. */
  header.section-shell > .site-nav {
    display: none !important;
  }
  body .hero-mobile {
    display: block !important;
  }
  /* Sticky header row: same flex row as load state (menu + logo + CTA). */
  .hero-mobile__nav.hero-mobile__nav--dock {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 6px var(--page-gutter, 12px) 10px;
    box-sizing: border-box;
    z-index: 200;
    background: #000;
    display: flex !important;
    align-items: center;
    gap: 12px;
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease, transform 180ms ease;
  }
  .hero-mobile__nav.hero-mobile__nav--dock.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
  body .hero-compatible {
    position: absolute !important;
    bottom: 0 !important;
    margin-left: 0 !important;
    left: 0 !important;
    width: 100% !important;
  }
}
/* ============================================================================
   Kodeus / 04-modal.scss
   --------------------------------------------------------------------------
   Waitlist modal + nav "Join Waitlist" CTA. Previously inlined inside
   <style> at the top of <body> in index.html.
   --------------------------------------------------------------------------
   - .waitlist-modal*, .waitlist-form*  (modal shell, form, error states)
   - .cta-image--nav                    (header "Join Waitlist" pill)
   ========================================================================== */
.waitlist-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(0, 0, 0, 0.7);
  z-index: 10000;
  flex-direction: column;
}
.waitlist-modal.is-open {
  display: flex;
}
.waitlist-modal__dialog {
  height: 500px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: min(100%, 870px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 24px;
  padding: 24px;
  background: rgba(0, 0, 0, 0.7);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.52);
  color: #fff;
  position: relative;
  backdrop-filter: blur(8px);
}
.waitlist-modal__close {
  /* border-radius: 999px; */
  /* border: 1px solid rgba(255, 255, 255, 0.28); */
  background: transparent;
  /* color: #c3c7ce;
  font-size: 18px;
  line-height: 1; */
  cursor: pointer;
}
.waitlist-modal__close img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}
.waitlist-modal__title {
  font-family: "Seona Demo", serif;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin: 0;
  text-align: center;
  font-size: 36px;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  font-weight: 700;
  line-height: 1.05;
}
.waitlist-modal__subtitle {
  color: #b8b8b8;
  font-size: 16px;
  line-height: 1.35;
  margin-bottom: 20px;
  margin-top: 10px;
}
.waitlist-modal__divider {
  background: rgba(255, 255, 255, 0.2);
  height: 1px;
  margin: 20px 0;
}
.waitlist-modal__response {
  margin: -8px auto 8px;
  min-height: 20px;
  text-align: center;
  max-width: 360px;
  font-size: 14px;
  line-height: 1.35;
  color: #6ef2a3;
}
.waitlist-modal__response.is-error {
  color: #ff5a5a;
}
.waitlist-modal__social {
  margin: 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  font-size: 14px;
  letter-spacing: 0.01em;
  text-transform: none;
  font-weight: 500;
  white-space: nowrap;
}
.waitlist-modal__social a {
  color: #fff;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  display: flex;
  align-items: center;
  gap: 5px;
  border: 1px solid rgba(255, 255, 255, 0);
  padding: 5px 10px;
  border-radius: 50px;
}
.waitlist-modal__social a:hover {
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.waitlist-modal__social-separator {
  opacity: 0.4;
}

.waitlist-form {
  gap: 12px;
}
.waitlist-form__label {
  display: grid;
  gap: 8px;
  font-size: 16px;
  color: #ffffff;
  line-height: 1;
  letter-spacing: 0.02em;
  font-weight: 400;
  font-family: "JetBrains Mono", sans-serif;
  margin-top: 0px;
}
.waitlist-form__input {
  height: 48px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  font-size: 15px;
  padding: 0 14px;
  font-family: "JetBrains Mono", sans-serif;
  outline: none;
  font-weight: 400;
  margin-top: 10px;
}
.waitlist-form__input::placeholder {
  color: rgba(197, 202, 212, 0.54);
}
.waitlist-form__input:focus {
  /* border-color: rgba(130, 179, 255, 0.82); */
  /* box-shadow: 0 0 0 2px rgba(58, 112, 255, 0.2); */
}
.waitlist-form__input.has-error {
  border-color: #ff5a5a;
  box-shadow: 0 0 0 1px rgba(255, 90, 90, 0.25);
}
.waitlist-form__error {
  min-height: 16px;
  margin-top: 6px;
  color: #ff5a5a;
  font-size: 12px;
  line-height: 1.25;
  font-family: "JetBrains Mono", sans-serif;
}
.waitlist-form__submit {
  margin-left: auto;
  margin-right: auto;
  margin-top: 16px;
}
.waitlist-form__submit.cta-image--nav {
  width: fit-content;
  max-width: 100%;
  appearance: none;
  -webkit-appearance: none;
  /* Match header pill: compact footprint, subtle depth, shine clips inside */
  margin-top: 0;
  gap: 6px;
  padding: 10px 10px 10px 10px;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.28), 0 0 14px rgba(36, 218, 133, 0.1);
}
.waitlist-form__submit.cta-image--nav::before {
  inset: -1px;
  border-width: 2px;
  border-radius: 8px;
  filter: blur(1.5px);
}
.waitlist-form__submit.cta-image--nav:hover {
  transform: scale(1.015);
  filter: brightness(1.04);
}
.waitlist-form__submit.cta-image--nav .cta-image--nav__icon {
  width: 17px;
  height: 17px;
  flex: 0 0 17px;
}
.waitlist-form__submit.cta-image--nav .cta-image--nav__divider {
  height: 16px;
  align-self: center;
}
.waitlist-form__submit.cta-image--nav .cta-image--nav__label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.07em;
}
.waitlist-form__submit.cta-image--nav:disabled {
  opacity: 0.75;
  cursor: wait;
  transform: none;
}
.waitlist-form__submit.cta-image--nav:disabled::before {
  opacity: 0.5;
}
.waitlist-form__submit.cta-image--nav:disabled:hover {
  filter: none;
  transform: none;
}

.cta-image--nav {
  margin-top: 10px;
  text-align: center;
  text-transform: uppercase;
  justify-content: center;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 10px;
  height: auto;
  background-image: none;
  background-color: #0a874d;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  color: #fff;
  font-family: "Satoshi Variable", "Inter", "Ranade", system-ui, -apple-system, sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1;
  cursor: pointer;
  overflow: visible;
  box-shadow: 0 3px 4px rgba(0, 0, 0, 0.35), 0 4px 24px rgba(36, 218, 133, 0.05), 0 9px 28px rgba(36, 218, 133, 0.21);
  transition: transform 0.2s ease-in-out, filter 0.2s ease;
}
.cta-image--nav::before {
  content: "";
  position: absolute;
  inset: -2px;
  border: 3px solid rgba(66, 239, 164, 0.3);
  border-radius: 10px;
  filter: blur(2px);
  pointer-events: none;
}
.cta-image--nav:hover {
  transform: scale(1.02);
  filter: brightness(1.05);
}
.cta-image--nav__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  color: #fff;
}
.cta-image--nav__icon svg {
  width: 100%;
  height: 100%;
  display: block;
}
.cta-image--nav__divider {
  display: inline-block;
  width: 1px;
  height: 24px;
  flex: 0 0 1px;
  background: rgba(255, 255, 255, 0.3);
}
.cta-image--nav__label {
  font-family: inherit;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: #fff;
  white-space: nowrap;
}

@media only screen and (max-width: 768px) {
  .waitlist-modal {
    padding: 10px;
  }
  .waitlist-modal__dialog {
    height: auto;
    width: 100%;
    padding: 30px 10px;
  }
  .waitlist-modal__title {
    margin: 0;
    text-align: center;
    font-size: 14px;
    letter-spacing: 0.11em;
    text-transform: uppercase;
    font-weight: 700;
    line-height: 1.05;
    font-family: "JetBrains Mono", sans-serif;
  }
  .waitlist-modal__subtitle {
    margin: 0;
    text-align: center;
    color: #b8b8b8;
    max-width: 360px;
    font-size: 14px;
    line-height: 1.35;
    margin-bottom: 10px;
    margin-top: 10px;
  }
  .waitlist-modal__response {
    margin: -8px auto 8px;
    min-height: 20px;
    text-align: center;
    max-width: 360px;
    font-size: 14px;
    line-height: 1.35;
    color: #6ef2a3;
  }
  .waitlist-modal__response.is-error {
    color: #ff5a5a;
  }
  .waitlist-modal__social {
    margin: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 14px;
    letter-spacing: 0.01em;
    text-transform: none;
    font-weight: 500;
    white-space: nowrap;
  }
  .waitlist-modal__social a {
    color: #fff;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    display: flex;
    align-items: center;
    gap: 5px;
    border: 1px solid rgba(255, 255, 255, 0);
    padding: 5px 10px;
    border-radius: 50px;
  }
  .waitlist-modal__social a:hover {
    border: 1px solid rgba(255, 255, 255, 0.1);
  }
  .waitlist-modal__social-separator {
    opacity: 0.4;
  }
  .waitlist-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  .waitlist-form__label {
    display: grid;
    gap: 8px;
    font-size: 16px;
    color: #ffffff;
    line-height: 1;
    letter-spacing: 0.02em;
    font-weight: 400;
    font-family: "JetBrains Mono", sans-serif;
    margin-top: 0px;
  }
  .waitlist-form__input {
    height: 48px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    background: rgba(255, 255, 255, 0.04);
    color: #fff;
    font-size: 15px;
    padding: 0 14px;
    font-family: "JetBrains Mono", sans-serif;
    outline: none;
    font-weight: 400;
    margin-top: 10px;
  }
  .waitlist-form__input::placeholder {
    color: rgba(197, 202, 212, 0.54);
  }
  .waitlist-form__input:focus {
    /* border-color: rgba(130, 179, 255, 0.82); */
    /* box-shadow: 0 0 0 2px rgba(58, 112, 255, 0.2); */
  }
  .waitlist-form__input.has-error {
    border-color: #ff5a5a;
    box-shadow: 0 0 0 1px rgba(255, 90, 90, 0.25);
  }
  .waitlist-form__error {
    min-height: 16px;
    margin-top: 6px;
    color: #ff5a5a;
    font-size: 12px;
    line-height: 1.25;
    font-family: "JetBrains Mono", sans-serif;
  }
  .waitlist-form__submit {
    margin-left: auto;
    margin-right: auto;
    margin-top: 16px;
  }
  .waitlist-form__submit.cta-image--nav {
    width: fit-content;
    max-width: 100%;
    appearance: none;
    -webkit-appearance: none;
    margin-top: 0;
    gap: 6px;
    padding: 10px;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.28), 0 0 14px rgba(36, 218, 133, 0.1);
  }
  .waitlist-form__submit.cta-image--nav::before {
    inset: -1px;
    border-width: 2px;
    border-radius: 8px;
    filter: blur(1.5px);
  }
  .waitlist-form__submit.cta-image--nav:hover {
    transform: scale(1.015);
    filter: brightness(1.04);
  }
  .waitlist-form__submit.cta-image--nav .cta-image--nav__icon {
    width: 17px;
    height: 17px;
    flex: 0 0 17px;
  }
  .waitlist-form__submit.cta-image--nav .cta-image--nav__divider {
    height: 16px;
    align-self: center;
  }
  .waitlist-form__submit.cta-image--nav .cta-image--nav__label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.07em;
  }
  .waitlist-form__submit.cta-image--nav:disabled {
    opacity: 0.75;
    cursor: wait;
    transform: none;
  }
  .waitlist-form__submit.cta-image--nav:disabled::before {
    opacity: 0.5;
  }
  .waitlist-form__submit.cta-image--nav:disabled:hover {
    filter: none;
    transform: none;
  }
  .cta-image--nav {
    margin-top: 10px;
    text-align: center;
    text-transform: uppercase;
    justify-content: center;
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 5px 10px;
    height: auto;
    background-image: none;
    background-color: #0a874d;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    color: #fff;
    font-family: "Satoshi Variable", "Inter", "Ranade", system-ui, -apple-system, sans-serif;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.02em;
    line-height: 1;
    cursor: pointer;
    overflow: visible;
    box-shadow: 0 3px 4px rgba(0, 0, 0, 0.35), 0 4px 24px rgba(36, 218, 133, 0.05), 0 9px 28px rgba(36, 218, 133, 0.21);
    transition: transform 0.2s ease-in-out, filter 0.2s ease;
  }
  .cta-image--nav::before {
    content: "";
    position: absolute;
    inset: -2px;
    border: 3px solid rgba(66, 239, 164, 0.3);
    border-radius: 10px;
    filter: blur(2px);
    pointer-events: none;
  }
  .cta-image--nav:hover {
    transform: scale(1.02);
    filter: brightness(1.05);
  }
  .cta-image--nav__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    flex: 0 0 20px;
    color: #fff;
  }
  .cta-image--nav__icon svg {
    width: 100%;
    height: 100%;
    display: block;
  }
  .cta-image--nav__divider {
    display: inline-block;
    width: 1px;
    height: 24px;
    flex: 0 0 1px;
    background: rgba(255, 255, 255, 0.3);
  }
  .cta-image--nav__label {
    font-family: inherit;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.02em;
    color: #fff;
    white-space: nowrap;
  }
}
