/* ============================================
   Sternary Landing Page — Enterprise Design System
   ============================================ */

:root {
  --slate-blue: #3D5A6C;
  --slate-blue-dark: #2A4352;
  --slate-blue-light: #7695A5;
  --slate-blue-muted: #A8BEC8;
  --gold: #D4A853;
  --gold-light: #F0D78C;
  --gold-dark: #B8923F;

  --white: #FFFFFF;
  --bg: #FAFBFC;
  --bg-alt: #F4F6F8;
  --bg-dark: #1A2B3C;
  --text: #1A2B3C;
  --text-muted: #5A6B7C;
  --text-light: rgba(255, 255, 255, 0.85);
  --border: #E2E8ED;
  --border-light: rgba(255, 255, 255, 0.12);

  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 24px;
  --space-6: 32px;
  --space-7: 48px;
  --space-8: 64px;
  --space-9: 96px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --radius-xl: 28px;
  --radius-pill: 999px;
  --shadow-sm: 0 1px 3px rgba(26, 43, 60, 0.06);
  --shadow-md: 0 4px 20px rgba(26, 43, 60, 0.08);
  --shadow-lg: 0 12px 40px rgba(26, 43, 60, 0.12);
  --shadow-xl: 0 24px 60px rgba(26, 43, 60, 0.16);
  --container-max: 1280px;
  --header-height: 72px;
  --banner-height: 40px;
  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --focus-ring: 0 0 0 3px rgba(118, 149, 165, 0.35);
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--banner-height) + var(--header-height) + 16px);
}

body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-5);
}

.skip-link {
  position: absolute;
  top: -100px;
  left: var(--space-4);
  z-index: 9999;
  padding: var(--space-3) var(--space-4);
  background: var(--slate-blue-dark);
  color: var(--white);
  border-radius: var(--radius-sm);
  font-weight: 600;
}

.skip-link:focus {
  top: var(--space-4);
  outline: none;
  box-shadow: var(--focus-ring);
}

body.menu-open {
  overflow: hidden;
}

:focus-visible {
  outline: 2px solid var(--slate-blue-light);
  outline-offset: 2px;
}

.btn:focus-visible {
  outline: none;
  box-shadow: var(--focus-ring);
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--radius-md);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn--primary {
  background: var(--slate-blue);
  color: var(--white);
  border-color: var(--slate-blue);
}

.btn--primary:hover {
  background: var(--slate-blue-dark);
  border-color: var(--slate-blue-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn--outline {
  background: transparent;
  color: var(--slate-blue);
  border-color: var(--slate-blue);
}

.btn--outline:hover {
  background: var(--slate-blue);
  color: var(--white);
}

.btn--gold {
  background: var(--gold);
  color: var(--slate-blue-dark);
  border-color: var(--gold);
  font-weight: 700;
}

.btn--gold:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
}

.btn--sm {
  padding: 10px 20px;
  font-size: 14px;
}

.btn--lg {
  padding: 16px 32px;
  font-size: 16px;
}

.btn--store svg {
  flex-shrink: 0;
}

/* ---- Star Icon ---- */
.star-icon {
  color: var(--gold);
  font-size: 14px;
}

.star-icon--sm {
  font-size: 10px;
}

.star-icon--lg {
  font-size: 28px;
  display: block;
  margin-bottom: 12px;
}

/* ---- Header ---- */
.header {
  position: fixed;
  top: var(--banner-height);
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-height);
  background: rgba(250, 251, 252, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: all var(--transition);
}

.header--scrolled {
  background: rgba(255, 255, 255, 0.95);
  border-bottom-color: var(--border);
  box-shadow: var(--shadow-sm);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 24px;
}

.logo__img {
  height: 56px;
  width: 56px;
  object-fit: contain;
}

.nav__list {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav__link {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}

.nav__link:hover,
.nav__link.active {
  color: var(--slate-blue);
  background: rgba(61, 90, 108, 0.06);
}

.nav__badge {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 2px 6px;
  background: rgba(212, 168, 83, 0.15);
  color: var(--gold-dark);
  border-radius: 4px;
}

.header__cta {
  flex-shrink: 0;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--slate-blue);
  border-radius: 2px;
  transition: all var(--transition);
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ---- Hero ---- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: calc(var(--banner-height) + var(--header-height) + 48px) 0 80px;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero__map {
  position: absolute;
  top: 50%;
  right: -10%;
  transform: translateY(-50%);
  width: 70%;
  height: auto;
  color: var(--slate-blue-muted);
  opacity: 0.25;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
}

.hero__eyebrow {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--slate-blue-light);
  margin-bottom: var(--space-4);
}

.hero__investor-link {
  margin-bottom: var(--space-6);
  font-size: 14px;
  font-weight: 600;
}

.hero__investor-link a {
  color: var(--slate-blue);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.hero__investor-link a:hover {
  color: var(--slate-blue-dark);
}

.hero__title {
  font-size: clamp(2.25rem, 4.5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.12;
  color: var(--slate-blue-dark);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.hero__subtitle {
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 36px;
  max-width: 540px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 48px;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-3);
  list-style: none;
}

@media (min-width: 768px) {
  .trust-strip {
    grid-template-columns: repeat(3, 1fr);
  }
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
}

.trust-badge__icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--slate-blue);
  flex-shrink: 0;
}

.trust-badge__icon svg {
  width: 20px;
  height: 20px;
}

.hero__visual {
  display: flex;
  justify-content: center;
  position: relative;
}

.phone-mockup {
  position: relative;
}

.phone-mockup__frame {
  position: relative;
  z-index: 2;
  border-radius: 36px;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 3px solid var(--slate-blue-dark);
  background: var(--white);
  max-width: 300px;
}

.phone-mockup__screen {
  width: 100%;
  height: auto;
}

.hero__float-card {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-3) var(--space-4);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  font-size: 12px;
  max-width: 200px;
}

.hero__float-card strong {
  display: block;
  font-size: 13px;
  color: var(--slate-blue-dark);
}

.hero__float-card span {
  color: var(--text-muted);
  font-size: 11px;
}

.hero__float-badge {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(212, 168, 83, 0.15);
  color: var(--gold-dark);
  border-radius: 50%;
  font-weight: 700;
  flex-shrink: 0;
}

.hero__float-card--verify { top: 8%; right: -8%; animation: floatCard 6s ease-in-out infinite; }
.hero__float-card--message { top: 38%; left: -12%; animation: floatCard 7s ease-in-out infinite 0.5s; }
.hero__float-card--video { bottom: 28%; right: -10%; animation: floatCard 6.5s ease-in-out infinite 1s; }
.hero__float-card--status { bottom: 8%; left: -6%; animation: floatCard 7.5s ease-in-out infinite 1.5s; }

.hero__float-status {
  color: var(--slate-blue) !important;
  font-weight: 600;
}

@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@media (prefers-reduced-motion: reduce) {
  .hero__float-card { animation: none !important; }
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ---- Sections ---- */
.section {
  padding: 100px 0;
}

.section--alt {
  background: var(--bg-alt);
}

.section--dark {
  background: linear-gradient(165deg, var(--slate-blue-dark) 0%, var(--bg-dark) 100%);
  color: var(--white);
}

.section__header {
  margin-bottom: 64px;
  max-width: 640px;
}

.section__header--center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section__header--light .section__title {
  color: var(--white);
}

.section__header--light .section__desc {
  color: var(--text-light);
}

.section__label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--slate-blue-light);
  margin-bottom: 12px;
}

.section__label--gold {
  color: var(--gold);
}

.section__title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--slate-blue-dark);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.section__desc {
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 65ch;
}

.section__header--center .section__desc {
  margin-left: auto;
  margin-right: auto;
}

/* ---- Platform Pillars ---- */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
  margin-bottom: var(--space-8);
}

.pillar-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  transition: box-shadow var(--transition), transform var(--transition);
}

.pillar-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.pillar-card__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-alt);
  border-radius: var(--radius-md);
  color: var(--slate-blue);
  margin-bottom: var(--space-4);
}

.pillar-card__icon svg { width: 24px; height: 24px; }

.pillar-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--slate-blue-dark);
  margin-bottom: var(--space-2);
}

.pillar-card p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-muted);
}

/* ---- Architecture Flow ---- */
.architecture-flow {
  text-align: center;
  padding: var(--space-7);
  background: var(--bg-alt);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}

.architecture-flow__title {
  font-size: 20px;
  font-weight: 700;
  color: var(--slate-blue-dark);
  margin-bottom: var(--space-6);
}

.architecture-flow__steps {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  list-style: none;
  margin-bottom: var(--space-5);
}

.flow-step__label {
  display: inline-block;
  padding: var(--space-2) var(--space-4);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 600;
  color: var(--slate-blue-dark);
}

.flow-connector-h {
  width: 24px;
  height: 2px;
  background: var(--slate-blue-muted);
}

.architecture-flow__layers {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ---- Strategy / Why Europe ---- */
.strategy-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-5);
  margin-bottom: var(--space-7);
}

.strategy-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
}

.strategy-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--slate-blue-dark);
  margin-bottom: var(--space-3);
}

.strategy-card p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-muted);
}

.metrics-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-4);
}

.metric-card {
  text-align: center;
  padding: var(--space-5);
  background: var(--white);
  border: 1px dashed var(--border);
  border-radius: var(--radius-md);
}

.metric-card__value {
  display: block;
  font-size: 28px;
  font-weight: 800;
  color: var(--slate-blue);
  margin-bottom: var(--space-2);
}

.metric-card__label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: var(--space-2);
}

.metric-card__note {
  display: block;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--gold-dark);
}

/* ---- Mockup labels ---- */
.mockup-labels {
  position: absolute;
  top: 12%;
  left: -4%;
  z-index: 4;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.mockup-label {
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 700;
  border-radius: var(--radius-pill);
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.mockup-label--verify { color: var(--gold-dark); }
.mockup-label--chat { color: var(--slate-blue); align-self: flex-start; }

/* ---- Capabilities ---- */
.capability-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.capability-list li {
  padding: var(--space-3) var(--space-4);
  padding-left: var(--space-5);
  position: relative;
  font-size: 15px;
  color: var(--text);
  background: var(--bg-alt);
  border-radius: var(--radius-sm);
}

.capability-list li::before {
  content: '★';
  position: absolute;
  left: var(--space-3);
  color: var(--gold);
  font-size: 10px;
  top: 50%;
  transform: translateY(-50%);
}

.video-mockup__creator small {
  display: block;
  font-size: 10px;
  opacity: 0.75;
}

.video-mockup__actions {
  display: flex;
  gap: var(--space-2);
  flex-shrink: 0;
}

.btn--on-dark {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
  padding: 8px 12px;
  font-size: 12px;
}

.btn--on-dark:hover {
  background: rgba(255,255,255,0.1);
  color: var(--white);
}

.video-mockup__play {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
}

/* ---- Chat UI improvements ---- */
.chat-ui__supplier {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  flex: 1;
}

.chat-ui__avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--slate-blue-light);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
}

.chat-ui__supplier span {
  display: block;
  font-size: 11px;
  opacity: 0.85;
  font-weight: 400;
}

.chat-ui__status-dot {
  width: 8px;
  height: 8px;
  background: #4ADE80;
  border-radius: 50%;
}

.chat-ui__context {
  padding: var(--space-2) var(--space-5);
  font-size: 11px;
  color: var(--text-muted);
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}

.chat-ui__read {
  display: block;
  font-size: 10px;
  opacity: 0.7;
  margin-top: 4px;
  text-align: right;
}

.chat-feature h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--slate-blue-dark);
  margin-bottom: 4px;
}

/* ---- Infrastructure 4-col ---- */
.security-grid--4 {
  grid-template-columns: repeat(2, 1fr);
}

/* ---- Eligibility ---- */
.eligibility-box {
  margin-top: var(--space-6);
  padding: var(--space-5);
  background: var(--bg-alt);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
}

.eligibility-box h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--slate-blue-dark);
  margin-bottom: var(--space-3);
}

.eligibility-box ul {
  list-style: disc;
  padding-left: var(--space-5);
}

.eligibility-box li {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: var(--space-2);
  line-height: 1.5;
}

.form-privacy {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: var(--space-4);
  line-height: 1.5;
}

.form-privacy a {
  color: var(--slate-blue);
  text-decoration: underline;
}

.form-success__demo {
  font-size: 12px;
  color: var(--gold-dark);
  margin-bottom: var(--space-4) !important;
}

/* ---- Investor ---- */
.thesis-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
  margin-bottom: var(--space-7);
}

.thesis-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
}

.thesis-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--slate-blue-dark);
  margin-bottom: var(--space-3);
}

.thesis-card p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-muted);
}

.investor-panel {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  margin-bottom: var(--space-7);
}

.investor-panel h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--slate-blue-dark);
  margin-bottom: var(--space-5);
}

.status-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-4);
}

.status-list div {
  padding: var(--space-3) var(--space-4);
  background: var(--bg-alt);
  border-radius: var(--radius-sm);
}

.status-list dt {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.status-list dd {
  font-size: 14px;
  font-weight: 600;
  color: var(--gold-dark);
}

.investor-form-section {
  max-width: 720px;
  margin: 0 auto;
}

/* ---- Business Model ---- */
.revenue-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
  list-style: none;
  max-width: 900px;
  margin: 0 auto;
}

.revenue-item {
  padding: var(--space-4) var(--space-5);
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  font-size: 14px;
  font-weight: 600;
  color: var(--slate-blue-dark);
  text-align: center;
}

/* ---- Roadmap ---- */
.roadmap-disclaimer {
  font-size: 14px !important;
  font-style: italic;
  color: var(--gold-dark) !important;
}

.roadmap-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-5);
}

.roadmap-phase {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
}

.roadmap-phase__num {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold-dark);
  margin-bottom: var(--space-3);
}

.roadmap-phase h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--slate-blue-dark);
  margin-bottom: var(--space-4);
}

.roadmap-phase ul {
  list-style: none;
}

.roadmap-phase li {
  font-size: 13px;
  color: var(--text-muted);
  padding: var(--space-2) 0;
  border-bottom: 1px solid var(--border);
  line-height: 1.4;
}

.roadmap-phase li:last-child { border-bottom: none; }

/* ---- Compliance ---- */
.compliance-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-4);
  list-style: none;
  margin-bottom: var(--space-6);
}

.compliance-item {
  padding: var(--space-4);
  background: var(--bg-alt);
  border-radius: var(--radius-md);
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  text-align: center;
  border: 1px solid var(--border);
}

.legal-disclaimer {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  font-size: 13px;
  line-height: 1.65;
  color: var(--text-muted);
  padding: var(--space-5);
  background: var(--bg-alt);
  border-radius: var(--radius-md);
}

/* ---- About ---- */
.about-block {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.about-block .section__desc {
  margin-left: auto;
  margin-right: auto;
}

.about-cta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  justify-content: center;
  margin-top: var(--space-6);
}

/* ---- Footer 6-col ---- */
.footer__grid {
  grid-template-columns: 1.5fr repeat(5, 1fr);
  gap: var(--space-6);
}

.nav__cta-mobile {
  display: none;
}

.nav__cta-mobile .btn--block {
  width: 100%;
  justify-content: center;
}

.menu-toggle {
  min-width: 44px;
  min-height: 44px;
}

.nav__link,
.btn {
  min-height: 44px;
}

@media (max-width: 1200px) {
  .nav__list { gap: 2px; }
  .nav__link { padding: 8px 10px; font-size: 13px; }
  .footer__grid { grid-template-columns: 1fr 1fr 1fr; }
  .roadmap-grid { grid-template-columns: repeat(2, 1fr); }
  .pillars-grid { grid-template-columns: repeat(2, 1fr); }
  .thesis-grid { grid-template-columns: repeat(2, 1fr); }
  .metrics-row { grid-template-columns: repeat(2, 1fr); }
  .revenue-grid { grid-template-columns: repeat(2, 1fr); }
  .compliance-grid { grid-template-columns: repeat(2, 1fr); }
}


/* ---- Feature Grid ---- */
.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.feature-grid--reverse .feature-grid__content {
  order: -1;
}

.feature-block {
  margin-bottom: 32px;
}

.feature-block__number {
  font-size: 12px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}

.feature-block__title {
  font-size: 22px;
  font-weight: 700;
  color: var(--slate-blue-dark);
  margin-bottom: 12px;
}

.feature-block__text {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-muted);
}

.feature-list {
  margin-top: 24px;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  border-bottom: 1px solid var(--border);
}

.feature-list li:last-child {
  border-bottom: none;
}

/* ---- Mockup Stack ---- */
.mockup-stack {
  position: relative;
  display: flex;
  justify-content: center;
  min-height: 500px;
}

.mockup-stack__primary {
  position: relative;
  z-index: 2;
  max-width: 280px;
  border-radius: 28px;
  box-shadow: var(--shadow-xl);
}

.mockup-stack__secondary {
  position: absolute;
  right: 0;
  bottom: 0;
  max-width: 240px;
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
  transform: rotate(3deg);
  z-index: 1;
}

/* ---- Video Mockup ---- */
.video-mockup {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 480px;
}

.video-mockup__phone {
  width: 260px;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 3px solid var(--slate-blue-dark);
  background: #000;
}

.video-mockup__screen {
  aspect-ratio: 9/16;
  position: relative;
}

.video-mockup__content {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #2A4352 0%, #1A2B3C 40%, #0F1A24 100%);
  display: flex;
  flex-direction: column;
}

.video-mockup__creator {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.8);
}

.video-mockup__avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--slate-blue-light), var(--slate-blue));
}

.video-mockup__play {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-mockup__play svg {
  width: 56px;
  height: 56px;
  color: rgba(255, 255, 255, 0.7);
}

.video-mockup__overlay {
  padding: 16px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.video-mockup__deal {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-size: 12px;
}

.video-mockup__deal strong {
  display: block;
  font-size: 13px;
}

.video-mockup__deal span {
  opacity: 0.7;
}

.checkout-animation {
  position: absolute;
  right: 10%;
  bottom: 20%;
  width: 80px;
  height: 80px;
}

.checkout-animation__finger {
  position: absolute;
  animation: tapFinger 3s ease-in-out infinite;
  color: var(--slate-blue-light);
}

.checkout-animation__finger svg {
  width: 36px;
  height: 36px;
}

.checkout-animation__check {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  width: 48px;
  height: 48px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--slate-blue-dark);
  animation: showCheck 3s ease-in-out infinite;
}

.checkout-animation__check svg {
  width: 24px;
  height: 24px;
}

@keyframes tapFinger {
  0%, 40% { transform: translate(0, 0); opacity: 1; }
  50% { transform: translate(-10px, -10px) scale(0.9); opacity: 0.5; }
  60%, 100% { transform: translate(0, 0); opacity: 0; }
}

@keyframes showCheck {
  0%, 45% { transform: translate(-50%, -50%) scale(0); opacity: 0; }
  55% { transform: translate(-50%, -50%) scale(1.1); opacity: 1; }
  65% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
  85% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
  100% { transform: translate(-50%, -50%) scale(0); opacity: 0; }
}

/* ---- Chat Section ---- */
.chat-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.chat-features {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.chat-feature {
  display: flex;
  gap: 16px;
}

.chat-feature__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  color: var(--slate-blue);
  flex-shrink: 0;
}

.chat-feature__icon svg {
  width: 22px;
  height: 22px;
}

.chat-feature h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--slate-blue-dark);
  margin-bottom: 4px;
}

.chat-feature p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

.chat-ui {
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  max-width: 380px;
  margin: 0 auto;
}

.chat-ui__header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 20px;
  background: var(--slate-blue);
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
}

.chat-ui__status {
  width: 8px;
  height: 8px;
  background: #4ADE80;
  border-radius: 50%;
}

.chat-ui__messages {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 280px;
  background: var(--bg);
}

.chat-ui__bubble {
  max-width: 85%;
  padding: 12px 16px;
  border-radius: 16px;
  font-size: 14px;
  line-height: 1.5;
}

.chat-ui__bubble--received {
  align-self: flex-start;
  background: var(--white);
  border: 1px solid var(--border);
  color: var(--text);
  border-bottom-left-radius: 4px;
}

.chat-ui__bubble--sent {
  align-self: flex-end;
  background: var(--slate-blue);
  color: var(--white);
  border-bottom-right-radius: 4px;
}

.chat-ui__input {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  border-top: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 14px;
}

.chat-ui__input svg {
  color: var(--slate-blue);
}

/* ---- Security Section ---- */
.security-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 64px;
}

.security-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all var(--transition);
}

.security-card:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-4px);
}

.security-card__icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(212, 168, 83, 0.15);
  border-radius: var(--radius-md);
  color: var(--gold);
  margin-bottom: 20px;
}

.security-card__icon svg {
  width: 26px;
  height: 26px;
}

.security-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--white);
}

.security-card p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-light);
}

.security-flow {
  text-align: center;
  margin-bottom: 64px;
}

.security-flow__title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 40px;
  color: var(--white);
}

.security-flow__diagram {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
}

.flow-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.flow-step__shield {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(118, 149, 165, 0.2);
  border: 2px solid var(--slate-blue-light);
  border-radius: 50%;
  color: var(--slate-blue-light);
}

.flow-step__shield svg {
  width: 28px;
  height: 28px;
}

.flow-step span {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-light);
}

.flow-connector {
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, var(--slate-blue-light), var(--gold));
  margin-bottom: 28px;
}

.server-visual {
  background: rgba(0, 0, 0, 0.25);
  border-radius: var(--radius-xl);
  padding: 48px;
  border: 1px solid var(--border-light);
}

.server-visual__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.server-visual__eu svg {
  width: 60px;
  height: auto;
}

.server-racks {
  display: flex;
  gap: 16px;
}

.server-rack {
  width: 80px;
  height: 120px;
  background: linear-gradient(180deg, #2A4352, #1A2B3C);
  border-radius: var(--radius-sm);
  border: 1px solid var(--slate-blue-light);
  padding: 12px 8px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  box-shadow: 0 0 20px rgba(118, 149, 165, 0.3);
}

.server-rack span {
  display: block;
  height: 6px;
  background: var(--slate-blue-light);
  border-radius: 2px;
  opacity: 0.6;
  animation: serverBlink 2s ease-in-out infinite;
}

.server-rack:nth-child(2) span {
  animation-delay: 0.3s;
}

.server-rack:nth-child(3) span {
  animation-delay: 0.6s;
}

@keyframes serverBlink {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}

.server-visual__caption {
  font-size: 14px;
  color: var(--text-light);
  text-align: center;
}

/* ---- Early Access / Supplier Form ---- */
.early-access {
  background: var(--white);
  border-top: 1px solid var(--border);
}

.early-access__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: start;
}

.early-access__benefits {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.early-access__benefits li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.early-access__benefit-icon {
  color: var(--gold);
  font-size: 14px;
  line-height: 1.4;
  flex-shrink: 0;
}

.early-access__benefits strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--slate-blue-dark);
  margin-bottom: 2px;
}

.early-access__benefits span {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
}

.early-access__note {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 32px;
  padding: 14px 16px;
  background: var(--bg-alt);
  border-radius: var(--radius-md);
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}

.early-access__note svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--slate-blue-light);
}

.early-access__form-wrap {
  position: relative;
}

.supplier-form {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 36px;
  box-shadow: var(--shadow-md);
}

.supplier-form__title {
  font-size: 22px;
  font-weight: 800;
  color: var(--slate-blue-dark);
  margin-bottom: 8px;
}

.supplier-form__subtitle {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 28px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--slate-blue-dark);
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  font-family: var(--font);
  font-size: 15px;
  color: var(--text);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #A0AEB8;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--slate-blue-light);
  box-shadow: 0 0 0 3px rgba(118, 149, 165, 0.15);
}

.form-group input.invalid,
.form-group select.invalid,
.form-group textarea.invalid {
  border-color: #E05252;
}

.form-group textarea {
  resize: vertical;
  min-height: 110px;
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 20px 0 24px;
  font-size: 13px;
  line-height: 1.6;
  color: var(--text-muted);
  cursor: pointer;
}

.form-checkbox input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: var(--slate-blue);
}

.form-honey {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

.form-error {
  margin-bottom: 16px;
  padding: 12px 14px;
  background: #FEF2F2;
  border: 1px solid #FECACA;
  border-radius: var(--radius-sm);
  font-size: 14px;
  color: #B91C1C;
}

.supplier-form__submit {
  width: 100%;
}

.form-success {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 48px 36px;
  text-align: center;
  box-shadow: var(--shadow-md);
}

.form-success__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(212, 168, 83, 0.15);
  border-radius: 50%;
  color: var(--gold-dark);
}

.form-success__icon svg {
  width: 32px;
  height: 32px;
}

.form-success h3 {
  font-size: 22px;
  font-weight: 800;
  color: var(--slate-blue-dark);
  margin-bottom: 12px;
}

.form-success p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: 360px;
  margin-left: auto;
  margin-right: auto;
}

/* ---- CTA Section ---- */
.cta-section {
  background: var(--white);
  padding: 80px 0;
}

.cta-section__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  background: linear-gradient(135deg, var(--bg-alt) 0%, var(--white) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 48px 56px;
}

.cta-section__content h2 {
  font-size: 28px;
  font-weight: 800;
  color: var(--slate-blue-dark);
  margin-bottom: 8px;
}

.cta-section__content p {
  font-size: 16px;
  color: var(--text-muted);
}

.cta-section__actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

/* ---- Footer ---- */
.footer {
  background: var(--slate-blue-dark);
  color: var(--text-light);
  padding-top: 64px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}

.footer__logo {
  height: 56px;
  width: 56px;
  margin-bottom: 16px;
  object-fit: contain;
  border-radius: 10px;
  background: var(--white);
}

.footer__brand p {
  font-size: 14px;
  line-height: 1.7;
  max-width: 300px;
}

.footer__links h4 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--white);
  margin-bottom: 16px;
}

.footer__links li {
  margin-bottom: 10px;
}

.footer__links a {
  font-size: 14px;
  color: var(--text-light);
  transition: color var(--transition);
}

.footer__links a:hover {
  color: var(--gold);
}

.footer__bottom {
  border-top: 1px solid var(--border-light);
  padding: 24px 0;
}

.footer__bottom p {
  font-size: 13px;
  text-align: center;
  opacity: 0.7;
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .hero__grid,
  .feature-grid,
  .chat-showcase,
  .early-access__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .feature-grid--reverse .feature-grid__content {
    order: 0;
  }

  .hero__visual {
    order: -1;
  }

  .hero--enterprise .hero__visual {
    order: 1;
  }

  .phone-mockup__frame {
    max-width: 260px;
  }

  .security-grid {
    grid-template-columns: 1fr;
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }

  .cta-section__inner {
    flex-direction: column;
    text-align: center;
    padding: 40px 32px;
  }

  .cta-section__actions {
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .nav {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 16px 24px;
    transform: translateY(-120%);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
    box-shadow: var(--shadow-md);
  }

  .nav.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav__list {
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
  }

  .nav__link {
    padding: 12px 16px;
  }

  .menu-toggle {
    display: flex;
  }

  .header__cta {
    display: none;
  }

  .nav__cta-mobile {
    display: block;
    margin-top: var(--space-3);
  }

  .trust-strip {
    grid-template-columns: 1fr;
  }

  .hero__float-card {
    display: none;
  }

  .pillars-grid,
  .strategy-grid,
  .thesis-grid,
  .roadmap-grid,
  .metrics-row,
  .revenue-grid,
  .compliance-grid,
  .security-grid--4 {
    grid-template-columns: 1fr;
  }

  .architecture-flow__steps {
    flex-direction: column;
  }

  .flow-connector-h {
    width: 2px;
    height: 16px;
  }

  .status-list {
    grid-template-columns: 1fr;
  }

  .about-cta .btn {
    width: 100%;
  }

  .mockup-stack__secondary {
    display: none;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .supplier-form {
    padding: 28px 24px;
  }

  .flow-connector {
    width: 24px;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .section {
    padding: 72px 0;
  }
}

@media (max-width: 480px) {
  .hero__actions {
    flex-direction: column;
  }

  .hero__actions .btn {
    width: 100%;
  }

  .security-flow__diagram {
    flex-direction: column;
  }

  .flow-connector {
    width: 2px;
    height: 24px;
    margin-bottom: 0;
  }
}

/* ---- Status banner ---- */
.status-banner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1001;
  background: var(--slate-blue-dark);
  color: var(--text-light);
  font-size: 13px;
  border-bottom: 1px solid var(--border-light);
}

.status-banner__inner {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  min-height: var(--banner-height);
  padding: var(--space-2) 0;
}

.status-banner__inner p {
  line-height: 1.4;
  margin: 0;
}

.status-banner__inner strong {
  color: var(--white);
}

.status-banner__dot {
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.section--compact {
  padding: var(--space-7) 0;
}

.hero__preview-note {
  text-align: center;
  font-size: 12px;
  color: var(--text-muted);
  margin-top: var(--space-4);
}

/* ---- Audience routing ---- */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
}

.audience-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.audience-card--primary {
  border-color: var(--slate-blue-light);
  box-shadow: var(--shadow-md);
}

.audience-card__label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--slate-blue-light);
}

.audience-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--slate-blue-dark);
}

.audience-card p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-muted);
  flex: 1;
}

.audience-card .btn {
  align-self: flex-start;
  margin-top: var(--space-2);
}

/* ---- Market context ---- */
.market-context {
  padding: var(--space-6);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.market-context__text {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: var(--space-4);
  max-width: 65ch;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.market-context__facts {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  max-width: 560px;
  margin: 0 auto;
}

.market-context__facts li {
  font-size: 14px;
  color: var(--text-muted);
  padding-left: var(--space-4);
  position: relative;
}

.market-context__facts li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--slate-blue-light);
}

.mockup-caption {
  text-align: center;
  font-size: 12px;
  color: var(--text-muted);
  margin-top: var(--space-4);
}

/* ---- Supplier process & FAQ ---- */
.process-steps {
  list-style: none;
  counter-reset: steps;
  margin: var(--space-5) 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.process-steps li {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: var(--space-3) var(--space-4);
  padding-left: var(--space-6);
  background: var(--bg-alt);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--gold);
}

.process-steps strong {
  font-size: 14px;
  color: var(--slate-blue-dark);
}

.process-steps span {
  font-size: 13px;
  color: var(--text-muted);
}

.supplier-faq {
  margin-top: var(--space-5);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--bg-alt);
}

.supplier-faq summary {
  padding: var(--space-4) var(--space-5);
  font-weight: 700;
  font-size: 15px;
  color: var(--slate-blue-dark);
  cursor: pointer;
  list-style: none;
}

.supplier-faq summary::-webkit-details-marker { display: none; }

.supplier-faq dl {
  padding: 0 var(--space-5) var(--space-5);
}

.supplier-faq dl > div {
  padding: var(--space-3) 0;
  border-top: 1px solid var(--border);
}

.supplier-faq dt {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 4px;
}

.supplier-faq dd {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

.form-fieldset {
  border: none;
  padding: 0;
  margin: 0 0 var(--space-4);
}

.form-fieldset legend {
  font-size: 14px;
  font-weight: 700;
  color: var(--slate-blue-dark);
  margin-bottom: var(--space-3);
  padding: 0;
}

/* ---- Investor panel ---- */
.investor-panel__intro {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: var(--space-4);
  line-height: 1.65;
}

.investor-panel__list {
  list-style: disc;
  padding-left: var(--space-5);
  margin-bottom: var(--space-4);
}

.investor-panel__list li {
  font-size: 14px;
  color: var(--text);
  margin-bottom: var(--space-2);
  line-height: 1.5;
}

.investor-panel__note {
  font-size: 13px;
  color: var(--text-muted);
  font-style: italic;
  padding-top: var(--space-4);
  border-top: 1px solid var(--border);
}

/* ---- Buyer interest ---- */
.buyer-interest {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-8);
  align-items: start;
}

.buyer-points {
  list-style: none;
  margin-top: var(--space-5);
}

.buyer-points li {
  font-size: 14px;
  color: var(--text-muted);
  padding: var(--space-2) 0 var(--space-2) var(--space-5);
  position: relative;
}

.buyer-points li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold-dark);
  font-weight: 700;
}

.buyer-form {
  max-width: 100%;
}

/* ---- About facts ---- */
.about-facts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-4);
  margin: var(--space-6) auto;
  max-width: 520px;
  text-align: left;
}

.about-fact {
  padding: var(--space-4);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
}

.about-fact strong {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.about-fact span {
  font-size: 14px;
  font-weight: 600;
  color: var(--slate-blue-dark);
}

.about-fact a {
  color: var(--slate-blue);
  text-decoration: underline;
}

/* ---- Sticky CTA ---- */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  display: flex;
  gap: var(--space-2);
  justify-content: center;
  padding: var(--space-3) var(--space-4);
  background: rgba(255, 255, 255, 0.95);
  border-top: 1px solid var(--border);
  box-shadow: 0 -4px 20px rgba(26, 43, 60, 0.08);
  transform: translateY(100%);
  transition: transform var(--transition);
  backdrop-filter: blur(12px);
}

.sticky-cta--visible {
  transform: translateY(0);
}

.sticky-cta__secondary {
  background: var(--white);
}

@media (min-width: 769px) {
  .sticky-cta {
    display: none;
  }
}

@media (max-width: 1024px) {
  .audience-grid,
  .buyer-interest {
    grid-template-columns: 1fr;
  }

  .about-facts {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav {
    top: calc(var(--banner-height) + var(--header-height));
  }

  .status-banner__inner p {
    font-size: 12px;
  }
}

/* ---- Scroll animations ---- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   Enterprise positioning layer
   ============================================ */

.section--enterprise {
  padding: var(--space-9) 0;
}

.section--enterprise + .section--enterprise {
  border-top: 1px solid var(--border);
}

.container--narrow-header .section__header {
  max-width: 720px;
}

.hero--enterprise {
  min-height: auto;
  padding: calc(var(--banner-height) + var(--header-height) + var(--space-9)) 0 var(--space-9);
  background: var(--white);
}

.hero--enterprise .hero__bg,
.hero--enterprise .hero__map {
  display: none;
}

.hero__title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.hero__subtitle {
  font-size: 17px;
  max-width: 52ch;
  line-height: 1.75;
}

.hero__visual--minimal .phone-mockup__frame {
  max-width: 260px;
  border-width: 2px;
  box-shadow: var(--shadow-lg);
}

.section__title {
  font-size: clamp(1.5rem, 2.5vw, 2.125rem);
  font-weight: 600;
  letter-spacing: -0.02em;
}

.section__label {
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--text-muted);
}

.section__desc {
  font-size: 16px;
  line-height: 1.75;
}

/* Capabilities grid */
.capabilities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.capability-card {
  background: var(--white);
  padding: var(--space-6);
}

.capability-card__index {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: var(--space-3);
}

.capability-card h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--slate-blue-dark);
  margin-bottom: var(--space-2);
}

.capability-card p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-muted);
}

.strategy-grid--4 {
  grid-template-columns: repeat(4, 1fr);
}

.strategy-card h3 {
  font-size: 15px;
  font-weight: 600;
  text-transform: none;
  letter-spacing: -0.01em;
}

/* How it works */
.works-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: var(--space-8);
  align-items: start;
}

.pipeline {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.pipeline li {
  display: flex;
  align-items: center;
}

.pipeline__step {
  display: block;
  width: 100%;
  padding: var(--space-4) var(--space-5);
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 500;
  color: var(--slate-blue-dark);
}

.pipeline__step--core {
  background: var(--slate-blue-dark);
  color: var(--white);
  border-color: var(--slate-blue-dark);
  font-weight: 600;
}

.pipeline__arrow {
  width: 2px;
  height: 16px;
  background: var(--border);
  margin-left: var(--space-5);
}

.pipeline__note {
  margin-top: var(--space-5);
  font-size: 13px;
  color: var(--text-muted);
}

.works-preview__img {
  max-width: 240px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

/* Infrastructure */
.infra-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-5);
}

.infra-card {
  padding: var(--space-6);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
}

.infra-card h3 {
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: var(--space-3);
}

.infra-card p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-light);
}

.process-steps--minimal li {
  font-size: 14px;
  color: var(--text-muted);
  padding: var(--space-2) 0;
  border-bottom: 1px solid var(--border);
  background: none;
  border-left: none;
  padding-left: 0;
}

.process-steps--minimal strong {
  color: var(--slate-blue-dark);
}

/* Investor details merged */
.investor-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-5);
  margin: var(--space-8) 0;
}

.investor-details__block {
  padding: var(--space-6);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
}

.investor-details__block--full {
  grid-column: 1 / -1;
}

.investor-details__block h3 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: var(--space-2);
}

.investor-details__note {
  font-size: 12px;
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: var(--space-3);
}

.inline-list {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  list-style: none;
}

.inline-list li {
  font-size: 13px;
  padding: var(--space-2) var(--space-3);
  background: var(--bg-alt);
  border-radius: var(--radius-sm);
  color: var(--text);
}

.roadmap-inline {
  list-style: none;
}

.roadmap-inline li {
  font-size: 13px;
  color: var(--text-muted);
  padding: var(--space-2) 0;
  border-bottom: 1px solid var(--border);
  line-height: 1.5;
}

.thesis-grid--4 {
  grid-template-columns: repeat(4, 1fr);
}

.thesis-card h3 {
  font-size: 15px;
  font-weight: 600;
}

/* Final CTA */
.section--cta-final {
  background: var(--white);
  border-top: 1px solid var(--border);
}

.final-cta {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.about-facts--inline {
  margin: var(--space-6) auto;
  max-width: 600px;
}

.buyer-inline {
  margin-top: var(--space-7);
  padding-top: var(--space-6);
  border-top: 1px solid var(--border);
}

.buyer-inline__label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: var(--space-3);
}

.buyer-inline__form {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  justify-content: center;
  align-items: center;
}

.buyer-inline__form .form-group {
  margin: 0;
  flex: 1;
  min-width: 200px;
  max-width: 280px;
}

.buyer-inline__form input {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font);
}

.form-checkbox--inline {
  margin: 0;
  font-size: 12px;
}

.footer--enterprise .footer__grid {
  grid-template-columns: 1.5fr repeat(4, 1fr);
  gap: var(--space-7);
}

.footer--enterprise .footer__brand p {
  font-size: 13px;
  line-height: 1.6;
}

@media (max-width: 1024px) {
  .capabilities-grid,
  .strategy-grid--4,
  .thesis-grid--4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .works-grid {
    grid-template-columns: 1fr;
  }

  .infra-grid,
  .investor-details {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .capabilities-grid,
  .strategy-grid--4,
  .thesis-grid--4 {
    grid-template-columns: 1fr;
  }

  .section--enterprise {
    padding: var(--space-8) 0;
  }
}

/* ============================================
   Layout polish — alignment & responsive fit
   ============================================ */

.logo__img {
  height: 56px;
  width: 56px;
  object-fit: contain;
  display: block;
}

.header__inner {
  gap: 16px;
}

.nav__list {
  gap: 4px;
}

.nav__link {
  padding: 8px 12px;
  white-space: nowrap;
}

.hero--enterprise .hero__grid {
  align-items: center;
  gap: clamp(32px, 5vw, 72px);
}

.hero--enterprise .hero__actions {
  margin-bottom: 0;
}

.hero--enterprise .hero__visual {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero--enterprise .phone-mockup {
  width: min(240px, 70vw);
}

.hero__visual--minimal .phone-mockup__frame {
  max-width: none;
  width: 100%;
  aspect-ratio: 9 / 19.5;
}

/* Hero phone app preview — horizontal swipe loop (iOS-style) */
.phone-carousel {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 100%;
  overflow: hidden;
  background: var(--bg-alt);
}

.phone-carousel__track {
  display: flex;
  flex-direction: row;
  width: 700%;
  height: 100%;
  will-change: transform;
}

.phone-carousel--loop .phone-carousel__track {
  /*
    Uneven beats (total 38.86s):
    4 image screens × 2.8s,
    Video commerce × 14.26s (13.46s clip + 0.8s swipe),
    Marketplace × 13.4s (12.6s clip + 0.8s swipe),
    then land on clone and loop.
  */
  animation: phoneSwipeLeft 38.86s cubic-bezier(0.32, 0.72, 0, 1) infinite;
}

.phone-carousel__slide {
  position: relative;
  flex: 0 0 calc(100% / 7);
  width: calc(100% / 7);
  height: 100%;
  overflow: hidden;
}

/* Times → % of 38.86s */
@keyframes phoneSwipeLeft {
  /* 0–2.0s hold Sign in */
  0%,
  5.147% { transform: translate3d(0, 0, 0); }
  /* 2.8s Messages → hold to 4.8s */
  7.206%,
  12.352% { transform: translate3d(calc(-100% / 7), 0, 0); }
  /* 5.6s Video commerce → hold full 13.46s to 19.06s */
  14.411%,
  49.048% { transform: translate3d(calc(-200% / 7), 0, 0); }
  /* 19.86s Marketplace → hold full 12.6s to 32.46s */
  51.107%,
  83.531% { transform: translate3d(calc(-300% / 7), 0, 0); }
  /* 33.26s Group buying → hold to 35.26s */
  85.589%,
  90.736% { transform: translate3d(calc(-400% / 7), 0, 0); }
  /* 36.06s Wholesale → hold to 38.06s */
  92.795%,
  97.941% { transform: translate3d(calc(-500% / 7), 0, 0); }
  /* 38.86s clone Sign in → loop reset */
  100% { transform: translate3d(calc(-600% / 7), 0, 0); }
}

.phone-carousel__slide .phone-mockup__screen {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.phone-carousel__slide .phone-mockup__screen--video {
  background: var(--bg-alt);
  pointer-events: none;
}

.phone-carousel__label {
  margin-top: var(--space-3);
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--slate-blue-light);
  min-height: 1.2em;
}

.video-screen {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 18px 14px 22px;
  background:
    linear-gradient(180deg, rgba(26, 43, 60, 0.55) 0%, transparent 28%, transparent 55%, rgba(15, 26, 36, 0.92) 100%),
    radial-gradient(ellipse at 50% 35%, #3d5a6c 0%, #1a2b3c 55%, #0f1a24 100%);
  color: var(--white);
}

.video-screen__top {
  display: flex;
  align-items: center;
  gap: 8px;
}

.video-screen__avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--slate-blue-light), var(--slate-blue-dark));
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  flex-shrink: 0;
}

.video-screen__creator {
  font-size: 11px;
  font-weight: 600;
  line-height: 1.3;
}

.video-screen__play {
  width: 56px;
  height: 56px;
  margin: 0 auto;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  border: 2px solid rgba(255, 255, 255, 0.45);
  position: relative;
  backdrop-filter: blur(4px);
}

.video-screen__play::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 54%;
  transform: translate(-50%, -50%);
  border-style: solid;
  border-width: 10px 0 10px 16px;
  border-color: transparent transparent transparent var(--white);
}

.video-screen__bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 10px;
}

.video-screen__meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.video-screen__meta strong {
  font-size: 12px;
  font-weight: 600;
}

.video-screen__meta span {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.75);
}

.video-screen__buy {
  flex-shrink: 0;
  padding: 8px 12px;
  border-radius: 8px;
  background: var(--gold);
  color: var(--slate-blue-dark);
  font-size: 11px;
  font-weight: 700;
}

@media (prefers-reduced-motion: reduce) {
  .phone-carousel--loop .phone-carousel__track {
    animation: none;
    transform: none;
  }
}

.capability-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.capability-card p {
  flex: 1;
}

.strategy-grid--4 {
  gap: var(--space-4);
}

.strategy-card,
.thesis-card {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.works-grid {
  align-items: center;
}

.works-grid__preview {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.pipeline__step {
  text-align: left;
}

.eu-trade-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-7);
  max-width: 920px;
  margin: 0 auto;
}

.eu-trade-point h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--slate-blue-dark);
  margin-bottom: var(--space-3);
  letter-spacing: -0.01em;
}

.eu-trade-point p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 42ch;
}

.eu-trade-point + .eu-trade-point {
  border-left: 1px solid var(--border);
  padding-left: var(--space-7);
}

@media (max-width: 768px) {
  .eu-trade-grid {
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }

  .eu-trade-point + .eu-trade-point {
    border-left: none;
    padding-left: 0;
    border-top: 1px solid var(--border);
    padding-top: var(--space-6);
  }
}

.suppliers-panel {
  max-width: 720px;
  margin: 0 auto;
}

.suppliers-panel .section__header {
  margin-bottom: var(--space-6);
  max-width: none;
}

.suppliers-points {
  list-style: none;
  margin: 0 0 var(--space-6);
  display: flex;
  flex-direction: column;
  gap: 0;
}

.suppliers-points li {
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-muted);
  padding: var(--space-4) 0;
  border-bottom: 1px solid var(--border);
}

.suppliers-points li:first-child {
  border-top: 1px solid var(--border);
}

.suppliers-points strong {
  color: var(--slate-blue-dark);
  font-weight: 600;
}

.investor-form-section {
  max-width: 720px;
  margin: 0 auto;
}

.investor-form {
  width: 100%;
}

.about-facts--inline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-3);
  max-width: 720px;
}

.about-fact {
  text-align: left;
}

.footer--enterprise .footer__grid {
  grid-template-columns: 1.4fr repeat(4, 1fr);
  gap: var(--space-6);
}

.section--alt.section--enterprise + .section--enterprise,
.section--enterprise + .section--alt.section--enterprise {
  border-top: none;
}

.section--dark.section--enterprise {
  border-top: none;
}

.legal-disclaimer {
  margin-top: var(--space-7);
}

/* Hamburger earlier — 6 nav links overflow mid-width desktops */
@media (max-width: 1100px) {
  .nav {
    position: fixed;
    top: calc(var(--banner-height) + var(--header-height));
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 20px 24px;
    transform: translateY(-120%);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
    box-shadow: var(--shadow-md);
    z-index: 999;
  }

  .nav.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav__list {
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
  }

  .nav__link {
    padding: 12px 14px;
    font-size: 15px;
  }

  .nav__cta-mobile {
    display: list-item;
    margin-top: 8px;
  }

  .header__cta {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }
}

@media (max-width: 1024px) {
  .hero--enterprise .hero__visual {
    order: 0;
  }

  .hero--enterprise .hero__grid {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .hero--enterprise .hero__content {
    order: 0;
  }

  .hero--enterprise .hero__visual {
    order: 1;
  }

  .hero__visual--minimal .phone-mockup__frame {
    max-width: 220px;
  }
}

@media (max-width: 768px) {
  body {
    padding-bottom: 0;
  }

  .about-facts--inline {
    grid-template-columns: 1fr;
  }

  .footer--enterprise .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-6);
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .status-banner__inner {
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .footer--enterprise .footer__grid {
    grid-template-columns: 1fr;
  }

  .hero--enterprise {
    padding-top: calc(var(--banner-height) + var(--header-height) + var(--space-7));
  }
}

/* ---- Legal / policy pages ---- */
.legal-body {
  background: var(--bg);
}

.legal-header {
  position: sticky;
  top: 0;
}

.legal-page {
  padding: calc(var(--header-height) + var(--space-8)) 0 var(--space-9);
}

.legal-page__inner {
  max-width: 760px;
}

.legal-updated {
  font-size: 13px;
  color: var(--text-muted);
  margin: 0 0 var(--space-7);
}

.legal-block {
  margin-bottom: var(--space-7);
}

.legal-block h2 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--slate-blue-dark);
  margin-bottom: var(--space-3);
}

.legal-block p,
.legal-list {
  font-size: 15px;
  line-height: 1.75;
  color: var(--text-muted);
  margin-bottom: var(--space-3);
}

.legal-list {
  padding-left: 1.25rem;
}

.legal-list li {
  margin-bottom: var(--space-2);
}

.legal-block a {
  color: var(--slate-blue);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.footer__bottom a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* Cookie banner */
.cookie-banner {
  position: fixed;
  left: var(--space-4);
  right: var(--space-4);
  bottom: var(--space-4);
  z-index: 2000;
  max-width: 560px;
  margin: 0 auto;
  padding: var(--space-5);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
}

.cookie-banner__text {
  font-size: 13px;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: var(--space-4);
}

.cookie-banner__text a {
  color: var(--slate-blue);
  text-decoration: underline;
}

.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
}

.company-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
  max-width: 960px;
  margin: 0 auto;
}

.company-item h3 {
  font-size: 14px;
  font-weight: 600;
  color: var(--slate-blue-dark);
  margin-bottom: var(--space-2);
}

.company-item p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-muted);
}

.disclaimer-note {
  font-size: 13px;
  line-height: 1.65;
  color: var(--text-muted);
  max-width: 65ch;
  margin: var(--space-5) auto 0;
  text-align: center;
}

@media (max-width: 768px) {
  .company-grid {
    grid-template-columns: 1fr;
  }
}

