/* ============ TOKENS ============ */
:root {
  --bg-void: #0a0a0a;
  --bg-panel: #141414;
  --bg-panel-2: #1c1a16;
  --gold: #c9a35e;
  --gold-bright: #e0bb73;
  --white: #f5f5f3;
  --grey: #8a8a86;
  --grey-dim: #5a5a56;
  --border-soft: rgba(201,163,94,0.18);
  --border-strong: rgba(201,163,94,0.4);
  --maxw: 1180px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg-void);
  color: var(--white);
  font-family: "Source Sans 3", -apple-system, "Helvetica Neue", Arial, sans-serif;
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

ul { list-style: none; }

/* ============ AMBIENT BACKGROUND ============ */
.bg-noise {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    radial-gradient(circle at 12% 18%, rgba(201,163,94,0.07), transparent 38%),
    radial-gradient(circle at 88% 70%, rgba(201,163,94,0.05), transparent 42%),
    radial-gradient(circle at 50% 95%, rgba(201,163,94,0.04), transparent 40%);
}

/* ============ HEADER / NAV ============ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 48px;
  background: rgba(10,10,10,0.72);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.logo {
  font-weight: 800;
  font-size: 18px;
  letter-spacing: 0.08em;
  white-space: nowrap;
}
.logo span { color: var(--gold); }

.nav-links {
  display: flex;
  gap: 36px;
}
.nav-links a {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--grey);
  position: relative;
  padding: 4px 0;
  transition: color 0.25s ease;
}
.nav-links a:hover { color: var(--white); }
.nav-links a.active { color: var(--gold-bright); }
.nav-links a.active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 1px;
  background: var(--gold);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  width: 22px; height: 2px;
  background: var(--white);
  display: block;
}

.mobile-nav {
  display: none;
  position: fixed;
  top: 73px; left: 0; right: 0;
  z-index: 49;
  background: var(--bg-panel);
  border-bottom: 1px solid var(--border-soft);
  flex-direction: column;
  padding: 8px 24px 20px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  padding: 14px 0;
  font-weight: 600;
  font-size: 15px;
  color: var(--grey);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.mobile-nav a.active { color: var(--gold-bright); }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 28px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.03em;
  border-radius: 2px;
  transition: all 0.25s ease;
  cursor: pointer;
  border: none;
}
.btn-gold {
  background: var(--gold);
  color: #1a1208;
}
.btn-gold:hover { background: var(--gold-bright); transform: translateY(-1px); }

.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.22);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold-bright); }

.btn-gold-sm, .btn-ghost-sm {
  padding: 10px 22px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
  border-radius: 2px;
}
.btn-gold-sm { background: var(--gold); color: #1a1208; }
.btn-gold-sm:hover { background: var(--gold-bright); }
.btn-ghost-sm { border: 1px solid rgba(255,255,255,0.22); color: var(--white); }
.btn-ghost-sm:hover { border-color: var(--gold); color: var(--gold-bright); }

/* ============ TYPE HELPERS ============ */
.eyebrow {
  color: var(--gold);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.gold-italic {
  color: var(--gold-bright);
  font-style: italic;
}

/* ============ DIAMOND MOTIF ============ */
.diamond-divider {
  display: flex;
  justify-content: center;
  margin: 0 auto 64px;
}
.diamond-divider span {
  width: 10px; height: 10px;
  background: var(--gold);
  transform: rotate(45deg);
}

.hero-diamond-field {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero-diamond-field .d {
  position: absolute;
  border: 1px solid var(--border-soft);
  transform: rotate(45deg);
}
.d1 { width: 120px; height: 120px; top: 12%; left: 8%; }
.d2 { width: 60px; height: 60px; top: 64%; left: 16%; border-color: var(--border-strong); }
.d3 { width: 180px; height: 180px; top: 8%; right: 6%; }
.d4 { width: 40px; height: 40px; top: 70%; right: 18%; }
.d5 { width: 90px; height: 90px; bottom: 6%; left: 42%; }

.uc-diamond, .tl-diamond {
  width: 9px; height: 9px;
  background: var(--gold);
  transform: rotate(45deg);
  display: inline-block;
  flex-shrink: 0;
}

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px 80px;
  overflow: hidden;
}

.hero .eyebrow { margin-bottom: 22px; }

.brand-mega {
  font-size: clamp(56px, 11vw, 140px);
  font-weight: 900;
  letter-spacing: 0.01em;
  line-height: 1;
  margin-bottom: 8px;
  background: linear-gradient(180deg, var(--white) 0%, var(--white) 60%, var(--gold) 130%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.brand-mega .brand-os {
  background: none;
  -webkit-background-clip: initial;
  background-clip: initial;
  color: var(--gold-bright);
}

.hero-title {
  font-size: clamp(40px, 7vw, 84px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.05;
  max-width: 880px;
}
.hero-title .accent { color: var(--gold-bright); }

.hero-sub {
  margin-top: 28px;
  max-width: 620px;
  font-size: 18px;
  color: #c8c8c4;
  line-height: 1.65;
}

.hero-actions {
  margin-top: 40px;
  display: flex;
  gap: 16px;
}

.scroll-cue {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
}
.scroll-cue span {
  display: block;
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

/* ============ SECTION SHARED ============ */
section {
  position: relative;
  z-index: 2;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 110px 48px;
}

.section-head {
  max-width: 680px;
  margin: 0 auto 56px;
  text-align: center;
}
.section-head .eyebrow { margin-bottom: 14px; }
.section-head h2 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.2;
}

/* ============ BRIEF ============ */
.brief-grid {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 48px;
}
.brief-lead {
  font-size: 22px;
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 24px;
  color: var(--white);
}
.brief-content p:not(.brief-lead) {
  font-size: 16px;
  color: #c8c8c4;
  max-width: 640px;
}

/* ============ USE CASES — MARQUEE CAROUSEL ============ */
.uc-marquee-wrap {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent, black 6%, black 94%, transparent);
  mask-image: linear-gradient(to right, transparent, black 6%, black 94%, transparent);
}
.uc-marquee-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: ucMarquee 48s linear infinite;
}
.uc-marquee-wrap:hover .uc-marquee-track {
  animation-play-state: paused;
}
@keyframes ucMarquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.uc-card {
  background: var(--bg-panel);
  border: 1px solid rgba(255,255,255,0.08);
  border-top: 2px solid var(--gold);
  padding: 32px 30px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 360px;
  flex-shrink: 0;
  transition: background 0.3s ease, border-color 0.3s ease;
}
.uc-card:hover { background: var(--bg-panel-2); }
.uc-role {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold-bright);
}
.uc-quote {
  font-size: 14.5px;
  font-style: italic;
  color: #c8c8c4;
  line-height: 1.6;
}
.uc-attribution {
  font-size: 13px;
  margin-top: 4px;
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 12px;
}
.uc-name {
  font-weight: 700;
  color: var(--gold-bright);
}
.uc-sep { color: var(--grey-dim); }
.uc-position { color: var(--grey); }

/* ============ USE CASES — CTA BLOCK ============ */
.uc-cta {
  max-width: 560px;
  margin: 40px auto 0;
  text-align: center;
}
.uc-cta-title {
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 10px;
}
.uc-cta-text {
  font-size: 14.5px;
  color: var(--grey);
  line-height: 1.6;
  margin-bottom: 20px;
}

/* ============ TIMELINE — INTERACTIVE LINE ============ */
.tl-line-wrap {
  position: relative;
  margin-bottom: 0;
  padding: 60px 20px 100px;
}
.tl-line-track {
  position: relative;
  height: 2px;
  background: rgba(255,255,255,0.12);
}
.tl-line-fill {
  position: absolute;
  top: 0; left: 0;
  height: 2px;
  width: 0%;
  background: var(--gold);
  transition: width 1.2s ease;
}
.tl-line-track.animated .tl-line-fill { width: 100%; }

.tl-stop {
  position: absolute;
  top: 0;
  transform: translate(-50%, -50%);
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 16px;
}
.tl-stop-dot {
  width: 13px; height: 13px;
  border-radius: 50%;
  background: var(--bg-void);
  border: 2px solid var(--gold);
  transition: all 0.25s ease;
}
.tl-stop:hover .tl-stop-dot,
.tl-stop.active .tl-stop-dot {
  background: var(--gold);
  box-shadow: 0 0 0 6px rgba(201,163,94,0.18);
  transform: scale(1.15);
}
.tl-stop-end .tl-stop-dot { border-color: var(--gold-bright); }

.tl-stop-label {
  position: absolute;
  top: 26px;
  white-space: nowrap;
  font-size: 13px;
  font-weight: 700;
  color: var(--grey);
  text-align: center;
  transition: color 0.25s ease;
}
.tl-stop-label em {
  display: block;
  font-style: normal;
  font-size: 11px;
  font-weight: 400;
  color: var(--grey-dim);
  margin-top: 2px;
}
.tl-stop:hover .tl-stop-label,
.tl-stop.active .tl-stop-label { color: var(--gold-bright); }

/* ============ TIMELINE — DETAIL CARD ============ */
.tl-detail { position: relative; min-height: 60px; }
.tl-detail-card {
  display: none;
  background: var(--bg-panel);
  border: 1px solid rgba(255,255,255,0.07);
  border-left: 2px solid var(--gold);
  padding: 36px 40px;
  max-width: 720px;
  margin: 0 auto;
  animation: cardIn 0.4s ease;
}
.tl-detail-card.active { display: block; }
@keyframes cardIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
.tl-empty {
  text-align: center;
  color: var(--grey);
  font-size: 14px;
  font-style: italic;
  padding: 8px 0 0;
}
.tl-empty.hidden { display: none; }

.tl-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}
.tl-name {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--gold-bright);
  flex: 1;
}
.tl-time {
  font-size: 12px;
  color: var(--grey);
}
.tl-title {
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.3;
}
.tl-desc {
  font-size: 14px;
  color: var(--grey);
  margin-bottom: 18px;
  line-height: 1.55;
}
.tl-list li {
  font-size: 13.5px;
  color: #c8c8c4;
  padding: 7px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  position: relative;
  padding-left: 16px;
}
.tl-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 14px;
  width: 5px; height: 5px;
  background: var(--gold);
  transform: rotate(45deg);
}
.tl-footnote {
  margin-top: 40px;
  text-align: center;
  font-size: 15px;
  color: var(--grey);
}

/* ============ FOOTER ============ */
.site-footer {
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 56px 48px 36px;
  max-width: var(--maxw);
  margin: 0 auto;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 36px;
}
.footer-tag {
  color: var(--grey);
  font-size: 14px;
  font-style: italic;
  margin-top: 6px;
}
.footer-ctas { display: flex; gap: 12px; }

.footer-lang-row {
  position: relative;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-lang-trigger {
  display: flex;
  align-items: center;
  gap: 8px;
  background: none;
  border: none;
  color: var(--grey);
  font-family: "Source Sans 3", sans-serif;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  padding: 6px 0;
  transition: color 0.2s ease;
}
.footer-lang-trigger:hover { color: var(--white); }
.footer-lang-flag { font-size: 15px; }
.footer-lang-caret {
  font-size: 10px;
  margin-left: 2px;
  transition: transform 0.2s ease;
}
.footer-lang-trigger[aria-expanded="true"] .footer-lang-caret {
  transform: rotate(180deg);
}
.footer-lang-menu {
  position: absolute;
  bottom: calc(100% + 6px);
  left: 0;
  background: var(--bg-panel);
  border: 1px solid rgba(255,255,255,0.12);
  border-top: 2px solid var(--gold);
  min-width: 200px;
  z-index: 30;
  box-shadow: 0 12px 30px rgba(0,0,0,0.5);
}
.footer-lang-option {
  display: block;
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  color: var(--white);
  font-family: "Source Sans 3", sans-serif;
  font-size: 13.5px;
  padding: 10px 16px;
  cursor: pointer;
  transition: background 0.15s ease;
}
.footer-lang-option:hover:not(:disabled) {
  background: var(--bg-panel-2);
  color: var(--gold-bright);
}
.footer-lang-option:disabled {
  color: var(--grey-dim);
  cursor: not-allowed;
  opacity: 0.55;
}

.footer-legal p {
  font-size: 11.5px;
  line-height: 1.6;
  color: var(--grey-dim);
  max-width: 980px;
}

/* ============ SCROLL REVEAL ============ */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .scroll-cue span { animation: none; }
  .uc-marquee-track { animation: none; }
}

/* ============ RESPONSIVE ============ */
@media (max-width: 900px) {
  .brief-grid { grid-template-columns: 1fr; gap: 20px; }
  .tl-stop-label { font-size: 11px; }
  .tl-detail-card { padding: 28px 24px; }
}

@media (max-width: 720px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .site-header { padding: 20px 24px; }
  section { padding: 70px 24px; }
  .uc-card { width: 280px; padding: 26px 22px; }
  .footer-top { flex-direction: column; align-items: flex-start; }
  .tl-line-wrap { padding: 50px 4px 130px; }
  .tl-stop-label { white-space: normal; width: 70px; font-size: 10.5px; }
}

/* ============ PAGE HERO (secondary pages) ============ */
.page-hero {
  position: relative;
  text-align: center;
  padding: 130px 24px 80px;
  overflow: hidden;
}
.page-title {
  font-size: clamp(34px, 5.5vw, 60px);
  font-weight: 800;
  letter-spacing: -0.015em;
  line-height: 1.12;
  max-width: 760px;
  margin: 0 auto;
}
.page-title .accent { color: var(--gold-bright); }
.page-sub {
  margin: 24px auto 0;
  max-width: 540px;
  font-size: 17px;
  color: #c8c8c4;
}
.page-emphasis {
  margin: 30px auto 0;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--gold-bright);
}

/* ============ PROBLEM DEEP DIVE ============ */
.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 40px;
}
.stat-card {
  background: var(--bg-panel);
  padding: 32px 26px;
}
.stat-num {
  font-size: 42px;
  font-weight: 800;
  color: var(--gold-bright);
  line-height: 1;
  margin-bottom: 14px;
}
.stat-num span {
  font-size: 18px;
  font-weight: 700;
  color: var(--gold);
  margin-left: 3px;
}
.stat-label {
  font-size: 14.5px;
  color: var(--white);
  line-height: 1.5;
  margin-bottom: 14px;
}
.stat-why {
  font-size: 13px;
  color: var(--grey);
  line-height: 1.5;
  margin-bottom: 14px;
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 12px;
}
.stat-src {
  font-size: 11px;
  color: var(--grey-dim);
}
.problem-conclusion {
  text-align: center;
  font-size: 19px;
  font-weight: 600;
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.55;
}

/* ============ FLOW DIAGRAM (global-card style) ============ */
.flow-stage {
  margin-bottom: 36px;
}
.flow-stage:last-child { margin-bottom: 0; }
.flow-stage-label {
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey-dim);
  margin-bottom: 18px;
}
.flow-simple-row {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}
.flow-simple-row-quad {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.flow-simple-card {
  flex: 1;
  min-width: 0;
}
.flow-card-pivot {
  border-top-color: var(--gold-bright);
  background: var(--bg-panel-2);
}
.flow-card-parallel {
  border-top-color: var(--gold);
}
.flow-card-outcome {
  border-top: 2px solid var(--gold-bright);
  background: var(--bg-panel-2);
  max-width: 620px;
  flex: none;
  width: 100%;
}

/* ============ GLOBAL SECTION ============ */
.global-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.global-card {
  background: var(--bg-panel);
  border: 1px solid rgba(255,255,255,0.07);
  border-top: 2px solid var(--gold);
  padding: 30px 26px;
}
.global-title {
  font-size: 18px;
  font-weight: 700;
  margin: 14px 0 10px;
}
.global-desc {
  font-size: 14.5px;
  color: var(--grey);
  line-height: 1.6;
}

/* ============ ECOSYSTEM SECTION ============ */
.eco-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.eco-block {
  padding: 28px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.eco-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--gold-bright);
  margin-bottom: 10px;
}
.eco-desc {
  font-size: 14.5px;
  color: var(--grey);
  line-height: 1.6;
}

@media (max-width: 900px) {
  .stat-grid { grid-template-columns: repeat(2, 1fr); }
  .global-grid, .eco-grid { grid-template-columns: 1fr; }
  .flow-simple-row-quad { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .stat-grid { grid-template-columns: 1fr; }
  .flow-simple-row-quad { grid-template-columns: 1fr; }
  .flow-simple-row { flex-direction: column; }
}

/* ============ MODULES SECTION ============ */
.mod-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.06);
}
.mod-card {
  background: var(--bg-panel);
  padding: 32px 28px;
  transition: background 0.3s ease;
}
.mod-card:hover { background: var(--bg-panel-2); }
.mod-num {
  font-size: 13px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.08em;
  margin-bottom: 10px;
}
.mod-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}
.mod-desc {
  font-size: 14px;
  color: var(--grey);
  line-height: 1.55;
}
.mod-card-link {
  background: var(--bg-panel-2);
}
.mod-link {
  display: inline-block;
  margin-top: 12px;
  font-size: 13px;
  font-weight: 700;
  color: var(--gold);
}
.mod-link:hover { color: var(--gold-bright); }

/* ============ OFFICE SUITE SECTION ============ */
.office-sub {
  margin-top: 14px;
  font-size: 15px;
  color: var(--grey);
}
.office-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: start;
}
.office-card {
  background: var(--bg-panel);
  border: 1px solid rgba(255,255,255,0.07);
  border-top: 2px solid var(--gold);
  padding: 26px 24px;
  text-align: left;
  cursor: pointer;
  font-family: inherit;
  color: var(--white);
  transition: grid-column 0.4s ease, background 0.3s ease, border-color 0.3s ease;
  grid-column: span 1;
}
.office-card:hover {
  background: var(--bg-panel-2);
  border-top-color: var(--gold-bright);
}
.office-card.expanded {
  grid-column: span 3;
  background: var(--bg-panel-2);
  border-top-color: var(--gold-bright);
  cursor: pointer;
}
.office-grid.has-expanded .office-card:not(.expanded) {
  display: none;
}
.office-title {
  font-size: 16px;
  font-weight: 700;
  margin: 12px 0 8px;
}
.office-desc {
  font-size: 13.5px;
  color: var(--grey);
  line-height: 1.55;
}
.office-more {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.3s ease;
  opacity: 0;
}
.office-card.expanded .office-more {
  max-height: 600px;
  opacity: 1;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--border-soft);
}
.office-more .mod-process {
  margin-top: 16px;
}
.office-more-text {
  font-size: 14.5px;
  color: #c8c8c4;
  line-height: 1.65;
}

/* ============ INTEGRATES SECTION ============ */
.integrates-body {
  max-width: 760px;
  margin: 0 auto;
}
.integrates-lead {
  font-size: 19px;
  font-weight: 600;
  text-align: center;
  line-height: 1.55;
  margin-bottom: 24px;
}
.integrates-example {
  font-size: 15px;
  color: var(--grey);
  line-height: 1.65;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
}

/* ============ AI DECISION LAYER ============ */
.ai-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.ai-card {
  background: var(--bg-panel-2);
  border: 1px solid var(--border-soft);
  border-left: 3px solid var(--gold-bright);
  padding: 30px 30px;
}
.ai-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--gold-bright);
  margin-bottom: 10px;
}
.ai-desc {
  font-size: 14.5px;
  color: #c8c8c4;
  line-height: 1.6;
}

/* ============ SECURITY SECTION ============ */
.sec-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.sec-card {
  background: var(--bg-panel);
  border: 1px solid rgba(255,255,255,0.07);
  border-top: 2px solid var(--gold);
  padding: 28px 24px;
}
.sec-card-feature {
  grid-column: span 1;
  background: var(--bg-panel-2);
  border-top: 2px solid var(--gold-bright);
}
.sec-title {
  font-size: 16.5px;
  font-weight: 700;
  margin-bottom: 10px;
}
.sec-desc {
  font-size: 13.5px;
  color: var(--grey);
  line-height: 1.6;
}

/* ============ DEPLOYMENT SECTION ============ */
.deploy-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.deploy-card {
  background: var(--bg-panel);
  border: 1px solid rgba(255,255,255,0.07);
  border-top: 2px solid var(--gold);
  padding: 36px 32px;
}
.deploy-title {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 12px;
}
.deploy-desc {
  font-size: 15px;
  color: var(--grey);
  line-height: 1.6;
  margin-bottom: 20px;
}
.deploy-list li {
  font-size: 13.5px;
  color: #c8c8c4;
  padding: 9px 0;
  border-top: 1px solid rgba(255,255,255,0.07);
  position: relative;
  padding-left: 18px;
}
.deploy-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 16px;
  width: 6px; height: 6px;
  background: var(--gold);
  transform: rotate(45deg);
}

@media (max-width: 900px) {
  .sec-grid { grid-template-columns: repeat(2, 1fr); }
  .ai-grid, .deploy-grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .sec-grid { grid-template-columns: 1fr; }
}

/* ============ MODULES ZIGZAG ============ */
.mod-zigzag {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.mod-row {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 1px;
  background: rgba(255,255,255,0.06);
}
.mod-row-rev { grid-template-columns: 1fr 280px; }
.mod-row-rev .mod-detail { order: 1; }
.mod-row-rev .mod-card-zz { order: 2; }

.mod-card-zz {
  background: var(--bg-panel-2);
  border-top: 2px solid var(--gold);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.mod-card-zz .mod-num {
  font-size: 13px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.08em;
  margin-bottom: 10px;
}
.mod-card-zz .mod-title {
  font-size: 19px;
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 10px;
}
.mod-card-desc {
  font-size: 13.5px;
  color: var(--grey);
  line-height: 1.5;
}

.mod-detail {
  background: var(--bg-panel);
  border-top: 2px solid rgba(255,255,255,0.1);
  padding: 32px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}
.mod-detail-text {
  font-size: 15px;
  color: #c8c8c4;
  line-height: 1.6;
}
.mod-process {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.mod-process span:not(.mp-arrow) {
  background: rgba(201,163,94,0.1);
  border: 1px solid var(--border-soft);
  color: var(--gold-bright);
  padding: 6px 12px;
  border-radius: 2px;
}
.mp-arrow { color: var(--grey-dim); }

/* ============ SDK SECTION ============ */
.sdk-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.sdk-card {
  background: var(--bg-panel);
  border: 1px solid rgba(255,255,255,0.07);
  border-top: 2px solid var(--gold);
  padding: 32px 28px;
}
.sdk-title {
  font-size: 19px;
  font-weight: 700;
  margin: 14px 0 10px;
}
.sdk-desc {
  font-size: 14.5px;
  color: var(--grey);
  line-height: 1.6;
}

/* ============ INTRO PARAGRAPHS ============ */
.ai-intro, .sec-intro {
  margin-top: 18px;
  font-size: 16px;
  color: #c8c8c4;
  line-height: 1.65;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 900px) {
  .office-grid { grid-template-columns: repeat(2, 1fr); }
  .sec-grid { grid-template-columns: repeat(2, 1fr); }
  .mod-row, .mod-row-rev {
    grid-template-columns: 1fr;
  }
  .mod-row-rev .mod-detail { order: 2; }
  .mod-row-rev .mod-card-zz { order: 1; }
  .sdk-grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .office-grid { grid-template-columns: 1fr; }
  .sec-grid { grid-template-columns: 1fr; }
}

/* ============ PRICING HERO VARIANT ============ */
.brand-mega-sm {
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}
.brand-os-sm { color: var(--grey-dim); }

/* ============ PRICING CALCULATOR ============ */
.pricing-calc {
  padding-top: 0;
}
.calc-controls {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 28px;
  margin-bottom: 48px;
  background: var(--bg-panel);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 28px 32px;
}
.calc-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 180px;
}
.calc-field label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--grey);
}
.calc-field select {
  background: var(--bg-void);
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--white);
  font-family: "Source Sans 3", sans-serif;
  font-size: 15px;
  font-weight: 600;
  padding: 10px 14px;
  border-radius: 2px;
  cursor: pointer;
}
.calc-field select:focus { outline: none; border-color: var(--gold); }

.billing-toggle {
  display: flex;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 2px;
  overflow: hidden;
}
.bt-option {
  background: var(--bg-void);
  color: var(--grey);
  border: none;
  font-family: "Source Sans 3", sans-serif;
  font-size: 14px;
  font-weight: 700;
  padding: 10px 18px;
  cursor: pointer;
  transition: all 0.25s ease;
  position: relative;
}
.bt-option.active {
  background: var(--gold);
  color: #1a1208;
}
.bt-save {
  display: block;
  font-size: 10px;
  font-weight: 600;
  opacity: 0.8;
}

.calc-cubes {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-bottom: 24px;
}
.cube {
  background: var(--bg-panel);
  border: 1px solid rgba(255,255,255,0.08);
  border-top: 3px solid var(--gold);
  padding: 40px 36px;
  text-align: center;
}
.cube-server { border-top-color: var(--gold-bright); }
.cube-label {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin-bottom: 18px;
}
.cube-total {
  font-size: 46px;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.cube-period {
  font-size: 13px;
  color: var(--grey);
  margin-top: 4px;
  margin-bottom: 18px;
}
.cube-perseat {
  font-size: 14px;
  color: var(--gold-bright);
  font-weight: 700;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.cube-list {
  text-align: left;
}
.cube-list li {
  font-size: 13.5px;
  color: var(--grey);
  padding: 8px 0;
  position: relative;
  padding-left: 18px;
}
.cube-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 14px;
  width: 6px; height: 6px;
  background: var(--gold);
  transform: rotate(45deg);
}
.calc-footnote {
  text-align: center;
  font-size: 13px;
  color: var(--grey-dim);
}
.calc-footnote a { color: var(--gold); }
.calc-footnote a:hover { color: var(--gold-bright); }

/* ============ TWO COLUMN SECTION (Operating Globally / No Internal Purchases) ============ */
.two-col-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0;
  align-items: start;
}
.two-col-item {
  padding: 0 40px;
}
.two-col-grid .two-col-item:first-child { padding-left: 0; }
.two-col-grid .two-col-item:last-child { padding-right: 0; }
.two-col-divider {
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--gold), transparent);
  align-self: stretch;
}
.two-col-h2 {
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.25;
  margin: 14px 0 18px;
  text-align: left;
}
.two-col-item .eyebrow { text-align: left; }
.global-pledge-text {
  font-size: 15.5px;
  color: #c8c8c4;
  line-height: 1.65;
  text-align: left;
}
.included-lead {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.55;
  margin-bottom: 16px;
  text-align: left;
}
.included-detail {
  font-size: 14px;
  color: var(--grey);
  line-height: 1.6;
  text-align: left;
}

@media (max-width: 900px) {
  .two-col-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .two-col-divider {
    width: auto;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
  }
  .two-col-item, .two-col-grid .two-col-item:first-child, .two-col-grid .two-col-item:last-child {
    padding: 0;
  }
}

/* ============ ALWAYS WITH GROWTH SECTION ============ */
.always-head {
  display: flex;
  justify-content: center;
  margin-bottom: 8px;
}
.aw-image {
  max-width: 100%;
  height: auto;
  width: 600px;
}
.always-sub {
  text-align: center;
  font-style: italic;
  color: var(--grey);
  font-size: 16px;
  margin-bottom: 48px;
}
.always-grid-img {
  display: flex;
  justify-content: center;
}
.afry-image {
  max-width: 100%;
  height: auto;
  width: 100%;
  display: block;
}

@media (max-width: 900px) {
  .calc-cubes { grid-template-columns: 1fr; }
  .aw-image { width: 100%; }
}
@media (max-width: 560px) {
  .calc-controls { flex-direction: column; align-items: stretch; }
}

/* ============ CONTACT METHODS ============ */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.contact-card {
  display: block;
  background: var(--bg-panel);
  border: 1px solid rgba(255,255,255,0.07);
  border-top: 2px solid var(--gold);
  padding: 32px 28px;
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.25s ease;
}
.contact-card:hover {
  background: var(--bg-panel-2);
  border-top-color: var(--gold-bright);
  transform: translateY(-3px);
}
.contact-title {
  font-size: 19px;
  font-weight: 700;
  margin: 14px 0 10px;
}
.contact-desc {
  font-size: 14px;
  color: var(--grey);
  line-height: 1.55;
  margin-bottom: 18px;
}
.contact-link {
  font-size: 13px;
  font-weight: 700;
  color: var(--gold);
}
.contact-card:hover .contact-link { color: var(--gold-bright); }

/* ============ INTENT SECTIONS ============ */
.intent-section {
  max-width: 680px;
}
.intent-text {
  font-size: 16px;
  color: #c8c8c4;
  line-height: 1.65;
}

/* ============ FEEDBACK PLACEHOLDER ============ */
.feedback-placeholder {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  font-size: 15px;
  color: var(--grey);
  line-height: 1.6;
  font-style: italic;
}

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

/* ============ DOWNLOADS SECTION ============ */
.downloads-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.download-card {
  display: block;
  background: var(--bg-panel);
  border: 1px solid rgba(255,255,255,0.07);
  border-top: 2px solid var(--gold);
  padding: 30px 26px;
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.25s ease;
}
.download-card:hover {
  background: var(--bg-panel-2);
  border-top-color: var(--gold-bright);
  transform: translateY(-3px);
}
.download-title {
  font-size: 18px;
  font-weight: 700;
  margin: 12px 0 8px;
}
.download-desc {
  font-size: 13.5px;
  color: var(--grey);
  line-height: 1.55;
  margin-bottom: 16px;
}

/* ============ MARKET SECTION ============ */
.market-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.06);
}
.market-stat {
  background: var(--bg-panel);
  padding: 30px 24px;
}
.market-num {
  font-size: 38px;
  font-weight: 800;
  color: var(--gold-bright);
  line-height: 1;
  margin-bottom: 12px;
}
.market-num span {
  font-size: 18px;
  font-weight: 700;
  color: var(--gold);
}
.market-label {
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}
.market-note {
  font-size: 12.5px;
  color: var(--grey);
  line-height: 1.5;
}

/* ============ SCENARIOS SECTION ============ */
.scenarios-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}
.scenario-card {
  background: var(--bg-panel);
  border: 1px solid rgba(255,255,255,0.07);
  border-top: 3px solid var(--gold);
  padding: 32px 28px;
}
.scenario-card-mid {
  border-top-color: var(--gold-bright);
  background: var(--bg-panel-2);
  transform: translateY(-8px);
}
.scenario-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 2px;
  margin-bottom: 16px;
}
.scenario-tag-conservative { background: rgba(255,255,255,0.08); color: var(--grey); }
.scenario-tag-realistic { background: rgba(201,163,94,0.18); color: var(--gold-bright); }
.scenario-tag-optimistic { background: rgba(201,163,94,0.1); color: var(--gold); }
.scenario-clients {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 20px;
}
.scenario-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 10px 0;
  border-top: 1px solid rgba(255,255,255,0.07);
  font-size: 14px;
}
.scenario-list li span { color: var(--grey); }
.scenario-list li strong { color: var(--white); font-size: 16px; }
.scenarios-footnote {
  text-align: center;
  font-size: 13px;
  color: var(--grey-dim);
  margin-top: 32px;
}

/* ============ BUDGET SECTION ============ */
.budget-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.budget-phase {
  background: var(--bg-panel);
  border: 1px solid rgba(255,255,255,0.07);
  border-top: 2px solid var(--gold);
  padding: 26px 22px;
}
.budget-phase-total {
  border-top-color: var(--gold-bright);
  background: var(--bg-panel-2);
}
.budget-phase-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--gold-bright);
  letter-spacing: 0.03em;
  margin-bottom: 12px;
}
.budget-phase-amount {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 12px;
}
.budget-phase-desc {
  font-size: 12.5px;
  color: var(--grey);
  line-height: 1.5;
}

/* ============ INVEST CTA ============ */
.invest-cta-section {
  text-align: center;
}
.invest-cta-section .intent-text {
  margin: 0 auto 28px;
  text-align: center;
}
.invest-cta-wrap {
  display: inline-flex;
  flex-direction: column;
  gap: 16px;
  margin: 0 auto;
}
.invest-cta-actions {
  display: flex;
  gap: 16px;
}
.btn-founder {
  flex: 1;
  justify-content: center;
}

@media (max-width: 900px) {
  .downloads-grid { grid-template-columns: 1fr; }
  .scenarios-grid { grid-template-columns: 1fr; }
  .scenario-card-mid { transform: none; }
  .budget-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .market-grid { grid-template-columns: 1fr; }
  .budget-grid { grid-template-columns: 1fr; }
  .invest-cta-wrap { width: 100%; }
  .invest-cta-actions { flex-direction: column; }
}

/* ============ CATEGORY BREAKDOWN ============ */
.category-breakdown {
  margin-top: 40px;
}
.category-breakdown-label {
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  color: var(--gold-bright);
  margin-bottom: 20px;
}
.category-grid {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.06);
}
.category-row {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 24px;
  background: var(--bg-panel);
  padding: 14px 22px;
}
.category-name {
  font-size: 14.5px;
  color: var(--white);
  font-weight: 600;
}
.category-size {
  font-size: 15px;
  font-weight: 700;
  color: var(--gold-bright);
  min-width: 70px;
  text-align: right;
}
.category-cagr {
  font-size: 13px;
  font-weight: 700;
  color: #7fbf7f;
  min-width: 60px;
  text-align: right;
}
.category-sources {
  margin-top: 18px;
  text-align: center;
  font-size: 11.5px;
  color: var(--grey-dim);
}
.category-sources a { color: var(--gold); }
.category-sources a:hover { color: var(--gold-bright); }

@media (max-width: 560px) {
  .category-row { grid-template-columns: 1fr; gap: 6px; text-align: left; }
  .category-size, .category-cagr { text-align: left; min-width: 0; }
}

/* ============ LOI LANGUAGE MODAL ============ */
.loi-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0,0,0,0.55);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.loi-modal-overlay.open {
  display: flex;
}
.loi-modal {
  background: var(--bg-panel);
  border: 1px solid var(--border-strong);
  border-top: 3px solid var(--gold);
  padding: 40px 36px;
  max-width: 480px;
  width: 100%;
  position: relative;
  animation: loiModalIn 0.25s ease;
}
.loi-modal.loi-modal-wide {
  max-width: 680px;
}
@keyframes loiModalIn {
  from { opacity: 0; transform: translateY(12px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.loi-modal-close {
  position: absolute;
  top: 16px;
  right: 18px;
  background: none;
  border: none;
  color: var(--grey);
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  font-family: "Source Sans 3", sans-serif;
  transition: color 0.2s ease;
}
.loi-modal-close:hover { color: var(--gold-bright); }
.loi-modal-heading {
  font-size: 24px;
  font-weight: 800;
  margin: 10px 0 8px;
}
.loi-modal-sub {
  font-size: 14px;
  color: var(--grey);
  margin-bottom: 24px;
}
.loi-lang-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.loi-lang-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--bg-void);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--white);
  font-family: "Source Sans 3", sans-serif;
  font-size: 14px;
  font-weight: 600;
  padding: 12px 16px;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: left;
}
.loi-lang-btn:hover {
  border-color: var(--gold);
  background: var(--bg-panel-2);
  color: var(--gold-bright);
}
.loi-flag {
  font-size: 18px;
}

@media (max-width: 480px) {
  .loi-lang-grid { grid-template-columns: 1fr; }
}

/* ---- LOI modal: choice step ---- */
.loi-choice-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 4px;
}
.loi-choice-btn {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  background: var(--bg-void);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--white);
  font-family: "Source Sans 3", sans-serif;
  padding: 16px 18px;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: left;
  width: 100%;
}
.loi-choice-btn:hover {
  border-color: var(--gold);
  background: var(--bg-panel-2);
}
.loi-choice-btn-title {
  font-size: 15px;
  font-weight: 700;
}
.loi-choice-btn:hover .loi-choice-btn-title { color: var(--gold-bright); }
.loi-choice-btn-sub {
  font-size: 13px;
  color: var(--grey);
}
.loi-back-btn {
  background: none;
  border: none;
  color: var(--grey);
  font-family: "Source Sans 3", sans-serif;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  padding: 0;
  margin-bottom: 16px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s ease;
}
.loi-back-btn:hover { color: var(--gold-bright); }

/* ---- LOI modal: form step ---- */
.loi-modal-form {
  max-height: 70vh;
  overflow-y: auto;
  padding-right: 4px;
}
.loi-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.loi-form-field {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 16px;
}
.loi-form-row .loi-form-field { margin-bottom: 0; }
.loi-form-field label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--grey);
}
.loi-form-field .ff-optional {
  text-transform: none;
  font-weight: 400;
  color: var(--grey-dim);
  letter-spacing: 0;
}
.loi-form-field input[type="text"],
.loi-form-field input[type="email"],
.loi-form-field input[type="tel"],
.loi-form-field input[type="number"],
.loi-form-field select {
  background: var(--bg-void);
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--white);
  font-family: "Source Sans 3", sans-serif;
  font-size: 14px;
  padding: 10px 13px;
  border-radius: 2px;
}
.loi-form-field select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23999' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 13px center;
  padding-right: 32px;
}
.loi-form-field input:focus,
.loi-form-field select:focus {
  outline: none;
  border-color: var(--gold);
}
.loi-industry-other {
  margin-top: 8px;
}
.loi-checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0 0 22px 0;
  padding: 0;
  border: none;
}
.loi-checkbox-group legend {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--grey);
  padding: 0;
  margin-bottom: 6px;
}
.loi-checkbox-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  padding: 10px 12px;
  background: var(--bg-void);
  border: 1px solid rgba(255,255,255,0.1);
  transition: border-color 0.2s ease;
}
.loi-checkbox-item:hover { border-color: rgba(212,175,90,0.4); }
.loi-checkbox-item input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  margin: 1px 0 0 0;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  cursor: pointer;
  background: var(--bg-void);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 3px;
  position: relative;
  transition: all 0.15s ease;
}
.loi-checkbox-item input[type="checkbox"]:hover {
  border-color: var(--gold);
}
.loi-checkbox-item input[type="checkbox"]:checked {
  background: var(--gold);
  border-color: var(--gold);
}
.loi-checkbox-item input[type="checkbox"]:checked::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 1px;
  width: 5px;
  height: 9px;
  border: solid #1a1208;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.loi-checkbox-item span {
  font-size: 13.5px;
  line-height: 1.4;
  color: var(--white);
}
.loi-form-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  position: sticky;
  bottom: 0;
  background: var(--bg-panel);
  padding-top: 6px;
}
.loi-form-status {
  font-size: 13px;
  font-weight: 600;
}
.loi-form-status.success { color: #7fbf7f; }
.loi-form-status.error { color: #d97a7a; }
.loi-form-status.sending { color: var(--grey); }

@media (max-width: 480px) {
  .loi-form-row { grid-template-columns: 1fr; }
}

/* ============ FEEDBACK FORM ============ */
.feedback-form {
  max-width: 720px;
  margin: 0 auto;
  background: var(--bg-panel);
  border: 1px solid rgba(255,255,255,0.08);
  border-top: 2px solid var(--gold);
  padding: 36px 36px;
}
.ff-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}
.ff-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.ff-field-full { margin-bottom: 20px; }
.ff-field label {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--grey);
}
.ff-optional {
  text-transform: none;
  font-weight: 400;
  color: var(--grey-dim);
  letter-spacing: 0;
}
.ff-field input[type="text"],
.ff-field input[type="email"],
.ff-field select,
.ff-field textarea {
  background: var(--bg-void);
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--white);
  font-family: "Source Sans 3", sans-serif;
  font-size: 15px;
  padding: 11px 14px;
  border-radius: 2px;
}
.ff-field input[type="text"]:focus,
.ff-field input[type="email"]:focus,
.ff-field select:focus,
.ff-field textarea:focus {
  outline: none;
  border-color: var(--gold);
}
.ff-field textarea {
  resize: vertical;
  font-family: "Source Sans 3", sans-serif;
}
.ff-field input[type="file"] {
  background: var(--bg-void);
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--grey);
  font-size: 13px;
  padding: 9px 12px;
  border-radius: 2px;
}
.ff-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}
.ff-status {
  font-size: 14px;
  font-weight: 600;
}
.ff-status.success { color: #7fbf7f; }
.ff-status.error { color: #d97a7a; }
.ff-status.sending { color: var(--grey); }

@media (max-width: 640px) {
  .feedback-form { padding: 28px 22px; }
  .ff-row { grid-template-columns: 1fr; }
}

/* ============ CONTACT TWO-COLUMN LAYOUT ============ */
.contact-card-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.contact-pill {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--bg-panel);
  border: 1px solid rgba(255,255,255,0.08);
  border-left: 2px solid var(--gold);
  padding: 14px 18px;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.2s ease;
}
.contact-pill:hover {
  background: var(--bg-panel-2);
  border-left-color: var(--gold-bright);
  transform: translateX(2px);
}
.contact-pill-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201,163,94,0.12);
  border-radius: 2px;
  font-size: 16px;
  font-weight: 800;
  color: var(--gold-bright);
}
.contact-pill-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.contact-pill-title {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--white);
}
.contact-pill-sub {
  font-size: 12px;
  color: var(--grey);
}
.contact-two-col .feedback-form {
  max-width: none;
  padding: 0;
  background: none;
  border: none;
}
.contact-two-col .two-col-item:first-child {
  padding-right: 40px;
}

/* ============ FOUNDER PAGE ============ */
.founder-hero {
  padding-top: 80px;
}
.founder-photo-wrap {
  width: 140px;
  height: 140px;
  margin: 0 auto 28px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--gold);
  background: var(--bg-panel);
}
.founder-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.founder-proof-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-bottom: 44px;
}
.founder-proof-card {
  background: var(--bg-panel);
  border: 1px solid rgba(255,255,255,0.08);
  border-top: 3px solid var(--gold);
  padding: 32px 30px;
}
.founder-proof-amount {
  font-size: 36px;
  font-weight: 800;
  color: var(--gold-bright);
  line-height: 1;
  margin-bottom: 14px;
}
.founder-proof-amount span {
  font-size: 16px;
  font-weight: 700;
  color: var(--gold);
  margin-left: 4px;
}
.founder-proof-title {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.3;
}
.founder-proof-desc {
  font-size: 14px;
  color: var(--grey);
  line-height: 1.6;
}
.founder-summary {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.6;
  font-style: italic;
  color: #c8c8c4;
}

.founder-structure-section .intent-text {
  max-width: 680px;
  margin: 0 auto 32px;
  text-align: center;
}
.founder-cta-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
}

@media (max-width: 900px) {
  .founder-proof-grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .founder-cta-actions { flex-direction: column; }
}

/* ============ FOUNDER PAGE — CONTACT ACTIONS ============ */
.founder-contact-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 28px;
  flex-wrap: wrap;
}
.founder-contact-actions .contact-pill {
  padding: 10px 18px;
}
.founder-contact-actions .contact-pill-icon {
  width: 30px;
  height: 30px;
  font-size: 14px;
}

/* ============ FOUNDER PAGE — BIO SECTION ============ */
.founder-bio-section {
  max-width: 760px;
  margin: 0 auto;
}
.founder-bio-lead {
  font-size: 17px;
  font-weight: 600;
  line-height: 1.65;
  color: var(--white);
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.founder-bio-text {
  font-size: 15.5px;
  color: var(--grey);
  line-height: 1.7;
  margin-bottom: 18px;
}

/* ============ FOUNDER PAGE — RESUME GRID ============ */
.founder-resume-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-top: 56px;
  text-align: left;
}
.founder-resume-heading {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin: 28px 0 12px;
}
.founder-resume-col .founder-resume-heading:first-child {
  margin-top: 0;
}
.founder-job {
  margin-bottom: 24px;
}
.founder-job-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.4;
}
.founder-job-meta {
  font-size: 12.5px;
  color: var(--grey-dim);
  margin: 4px 0 10px;
}
.founder-job-list li {
  font-size: 13.5px;
  color: var(--grey);
  line-height: 1.55;
  padding: 6px 0;
  position: relative;
  padding-left: 16px;
}
.founder-job-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 12px;
  width: 5px; height: 5px;
  background: var(--gold);
  transform: rotate(45deg);
}
.founder-resume-text {
  font-size: 13.5px;
  color: var(--grey);
  line-height: 1.65;
}
.founder-resume-list li {
  font-size: 13px;
  color: var(--grey);
  line-height: 1.55;
  padding: 5px 0;
  position: relative;
  padding-left: 16px;
}
.founder-resume-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 11px;
  width: 5px; height: 5px;
  background: var(--gold);
  transform: rotate(45deg);
}

@media (max-width: 900px) {
  .founder-resume-grid { grid-template-columns: 1fr; gap: 16px; }
}
@media (max-width: 560px) {
  .founder-contact-actions { flex-direction: column; align-items: center; }
}
