/* ── VERGE TECHNOLOGIES — SHARED STYLESHEET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Backgrounds */
  --bg:           #ffffff;
  --bg2:          #dde8f5;
  --bg-navy:      #0b1f3a;

  /* Surfaces & Borders */
  --surface:      #ffffff;
  --surface2:     #eaf2fa;
  --border:       #e2e8f0;

  /* Typography */
  --text:         #0b1f3a;
  --text-muted:   #475569;
  --text-dim:     #94a3b8;
  --text-inverse: #ffffff;

  /* Brand accent */
  --cyan:         #0099bb;
  --cyan-bright:  #0099bb;
  --cyan-dark:    #007a96;
  --cyan-glow:    #e0f5fa;

  /* Status */
  --emerald:      #059669;
  --emerald-dim:  #d1fae5;
  --red:          #dc2626;
  --red-dim:      #fee2e2;
  --yellow:       #d97706;
  --yellow-dim:   #fef3c7;

  /* Shadows */
  --shadow-sm:    0 1px 3px rgba(11,31,58,0.06), 0 2px 8px rgba(11,31,58,0.04);
  --shadow:       0 2px 8px rgba(11,31,58,0.08), 0 8px 24px rgba(11,31,58,0.06);
  --shadow-lg:    0 4px 16px rgba(11,31,58,0.10), 0 16px 40px rgba(11,31,58,0.08);

  --nav-h:        72px;
}

html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; background: var(--bg); color: var(--text); line-height: 1.6; overflow-x: hidden; }

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--surface2); border-radius: 3px; }

/* ── UTILITIES ── */
.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }
.section-header { margin-bottom: 56px; }
.section-header.center { text-align: center; }
.section-header.center .section-sub { margin: 0 auto; }

.tag {
  display: inline-block;
  font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--cyan); background: var(--cyan-glow); border: 1px solid rgba(0,180,216,0.25);
  padding: 5px 14px; border-radius: 100px; margin-bottom: 20px;
}
.section-title { font-size: clamp(28px, 4vw, 42px); font-weight: 800; line-height: 1.15; letter-spacing: -0.02em; margin-bottom: 16px; }
.section-sub { font-size: 17px; color: var(--text-muted); line-height: 1.7; max-width: 680px; }
.divider { height: 1px; background: linear-gradient(90deg, transparent, var(--border), transparent); }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-block; font-size: 15px; font-weight: 700; color: var(--text-inverse);
  background: var(--cyan-bright); padding: 14px 28px; border-radius: 10px;
  text-decoration: none; transition: opacity 0.2s, transform 0.15s;
}
.btn-primary:hover { opacity: 0.88; transform: translateY(-1px); }
.btn-secondary {
  display: inline-block; font-size: 15px; font-weight: 600; color: var(--text);
  background: var(--surface); border: 1px solid var(--border); padding: 14px 28px;
  border-radius: 10px; text-decoration: none; transition: background 0.2s, transform 0.15s;
}
.btn-secondary:hover { background: var(--surface2); transform: translateY(-1px); }
.btn-sm {
  display: inline-block; font-size: 13px; font-weight: 600; color: var(--cyan);
  border: 1px solid rgba(0,180,216,0.3); padding: 8px 18px; border-radius: 8px;
  text-decoration: none; transition: background 0.2s;
}
.btn-sm:hover { background: var(--cyan-glow); }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--nav-h); display: flex; align-items: center;
  background: rgba(255,255,255,0.95); backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border); box-shadow: var(--shadow-sm);
}
.nav-inner {
  width: 100%; max-width: 1100px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; gap: 28px;
}
.nav-logo { display: flex; align-items: center; text-decoration: none; flex-shrink: 0; }
.nav-logo-pill { display: flex; align-items: center; justify-content: center; background: #0b1f3a; border-radius: 8px; padding: 6px 10px; }
.nav-logo-img { height: 40px; width: auto; display: block; }
.nav-links { display: flex; gap: 24px; list-style: none; margin-left: 12px; }
.nav-links a { font-size: 14px; font-weight: 500; color: var(--text-muted); text-decoration: none; transition: color 0.2s; }
.nav-links a:hover, .nav-links a.active { color: var(--text); }
.nav-links a.active { color: var(--cyan-bright); }
.nav-spacer { flex: 1; }
.nav-cta { font-size: 13px; font-weight: 700; color: var(--text-inverse); background: var(--cyan-bright); padding: 9px 20px; border-radius: 8px; text-decoration: none; transition: opacity 0.2s; flex-shrink: 0; }
.nav-cta:hover { opacity: 0.88; }
.nav-hamburger { display: none; flex-direction: column; justify-content: center; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; margin-left: auto; }
.nav-hamburger span { display: block; width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: transform 0.25s, opacity 0.25s; }
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── MOBILE MENU ── */
.mobile-menu { display: none; position: fixed; top: var(--nav-h); left: 0; right: 0; background: var(--bg); border-bottom: 1px solid var(--border); z-index: 99; flex-direction: column; padding: 16px 24px 24px; gap: 4px; }
.mobile-menu.open { display: flex; }
.mobile-menu a { font-size: 15px; font-weight: 500; color: var(--text-muted); text-decoration: none; padding: 12px 0; border-bottom: 1px solid var(--border); transition: color 0.2s; }
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a:hover { color: var(--text); }
.mobile-menu .mobile-cta { margin-top: 12px; color: var(--cyan-bright); font-weight: 700; border: none; }

/* ── FOOTER ── */
footer { background: var(--bg-navy); padding: 40px 0; margin-top: 0; }
.footer-inner { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 32px; }
.footer-brand .footer-logo { margin-bottom: 10px; }
.footer-logo-img { height: 48px; width: auto; display: block; }
.footer-brand p { font-size: 13px; color: var(--text-dim); max-width: 260px; line-height: 1.6; }
.footer-cols { display: flex; gap: 48px; flex-wrap: wrap; }
.footer-col h5 { font-size: 11px; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-dim); margin-bottom: 14px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-col a { font-size: 13px; color: var(--text-muted); text-decoration: none; transition: color 0.2s; }
.footer-col a:hover { color: var(--cyan); }
.footer-bottom { margin-top: 32px; padding-top: 24px; border-top: 1px solid var(--border); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: 12px; color: var(--text-dim); }

/* ── PAGE HERO (inner pages) ── */
.page-hero { padding: calc(var(--nav-h) + 56px) 0 56px; border-bottom: 1px solid var(--border); background: linear-gradient(180deg, rgba(0,180,216,0.04) 0%, transparent 100%); }
.page-hero .tag { margin-bottom: 16px; }
.page-hero h1 { font-size: clamp(32px, 5vw, 52px); font-weight: 900; letter-spacing: -0.025em; line-height: 1.1; margin-bottom: 16px; }
.page-hero p { font-size: 17px; color: var(--text-muted); line-height: 1.7; max-width: 600px; }

/* ── BADGES ── */
.badge-row { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 24px; }
.badge { font-size: 11px; font-weight: 600; color: var(--text-muted); background: var(--surface); border: 1px solid var(--border); padding: 5px 12px; border-radius: 100px; letter-spacing: 0.03em; }
.badge.cyan { color: var(--cyan); background: var(--cyan-glow); border-color: rgba(0,180,216,0.25); }
.badge.green { color: var(--emerald); background: var(--emerald-dim); border-color: rgba(16,185,129,0.2); }

/* ── SENTIENT BADGE ── */
.sentient-badge { display: inline-flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 600; color: var(--emerald); background: var(--emerald-dim); border: 1px solid rgba(16,185,129,0.2); padding: 6px 14px; border-radius: 100px; }

/* ── PROBLEM CARDS ── */
.problem-intro { font-size: 20px; font-weight: 600; color: var(--text); line-height: 1.6; margin-bottom: 48px; border-left: 3px solid var(--cyan); padding-left: 24px; }
.problem-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 32px; }
.problem-card { background: var(--surface); border: 1px solid var(--border); border-radius: 16px; padding: 28px; }
.problem-card-icon { font-size: 24px; margin-bottom: 14px; }
.problem-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 10px; }
.problem-card p { font-size: 14px; color: var(--text-muted); line-height: 1.65; }
.problem-card.red { border-color: rgba(239,68,68,0.2); }
.problem-card.red .problem-card-icon { color: var(--red); }
.problem-card.yellow { border-color: rgba(245,158,11,0.2); }
.problem-card.yellow .problem-card-icon { color: var(--yellow); }
.problem-pullquote { background: var(--bg); border: 1px solid var(--border); border-left: 3px solid var(--red); border-radius: 16px; padding: 32px 36px; margin-top: 32px; }
.problem-pullquote blockquote { font-size: 19px; font-style: italic; color: var(--text); line-height: 1.6; margin-bottom: 12px; }
.problem-pullquote cite { font-size: 13px; color: var(--text-muted); font-style: normal; }

/* ── SENTIENT HERO ── */
.sentient-hero { background: var(--surface2); border: 1px solid var(--border); border: 1px solid var(--border); border-radius: 20px; padding: 48px; margin-bottom: 48px; display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.sentient-hero-left h2 { font-size: clamp(24px, 3vw, 36px); font-weight: 800; letter-spacing: -0.02em; line-height: 1.2; margin-bottom: 16px; }
.sentient-hero-left h2 em { font-style: normal; color: var(--cyan); }
.sentient-hero-left p { font-size: 15px; color: var(--text-muted); line-height: 1.7; margin-bottom: 16px; }
.sentient-diagram { display: flex; flex-direction: column; gap: 10px; }
.cloud-provider { display: flex; align-items: center; gap: 12px; background: var(--bg); border: 1px solid var(--border); border-radius: 10px; padding: 10px 16px; font-size: 13px; font-weight: 500; color: var(--text-muted); }
.cloud-provider-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--cyan); flex-shrink: 0; }
.cloud-arrow { text-align: center; font-size: 18px; color: var(--cyan); }
.sentient-plane { background: linear-gradient(90deg, rgba(0,180,216,0.15), rgba(0,180,216,0.05)); border: 1px solid rgba(0,180,216,0.3); border-radius: 12px; padding: 14px 20px; text-align: center; font-size: 13px; font-weight: 700; color: var(--cyan-bright); letter-spacing: 0.05em; }

/* ── CAPABILITIES ── */
.capabilities-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.capability-card { background: var(--bg2); border: 1px solid var(--border); border-radius: 16px; padding: 28px; transition: border-color 0.2s, background 0.2s; }
.capability-card:hover { border-color: rgba(0,180,216,0.3); background: var(--surface); }
.capability-num { font-size: 11px; font-weight: 800; letter-spacing: 0.1em; color: var(--cyan); text-transform: uppercase; margin-bottom: 10px; }
.capability-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 10px; }
.capability-card p { font-size: 14px; color: var(--text-muted); line-height: 1.65; }

/* ── OPS STRIP ── */
.ops-strip { margin-top: 32px; background: var(--bg2); border: 1px solid var(--border); border-radius: 16px; padding: 28px 32px; }
.ops-strip-label { font-size: 12px; font-weight: 700; color: var(--text-muted); letter-spacing: 0.05em; text-transform: uppercase; margin-bottom: 16px; }
.ops-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px 32px; }
.ops-item { font-size: 14px; color: var(--text-muted); display: flex; gap: 10px; align-items: flex-start; line-height: 1.5; }
.ops-check { color: var(--emerald); font-weight: 700; flex-shrink: 0; margin-top: 1px; }

/* ── JOURNEY ── */
.journey-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border: 1px solid var(--border); border-radius: 20px; overflow: hidden; }
.journey-state { padding: 36px 32px; border-right: 1px solid var(--border); position: relative; }
.journey-state:last-child { border-right: none; }
.journey-state.active { background: linear-gradient(135deg, rgba(0,180,216,0.08), rgba(0,180,216,0.02)); border-top: 2px solid var(--cyan); }
.journey-state-label { font-size: 10px; font-weight: 800; letter-spacing: 0.15em; text-transform: uppercase; margin-bottom: 10px; }
.journey-state.state-1 .journey-state-label { color: var(--red); }
.journey-state.state-2 .journey-state-label { color: var(--yellow); }
.journey-state.state-3 .journey-state-label { color: var(--cyan); }
.journey-state h3 { font-size: 18px; font-weight: 800; margin-bottom: 14px; }
.journey-state p { font-size: 13px; color: var(--text-muted); line-height: 1.65; }
.journey-arrow { position: absolute; right: -14px; top: 50%; transform: translateY(-50%); width: 28px; height: 28px; background: var(--bg2); border: 1px solid var(--border); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 12px; color: var(--text-muted); z-index: 2; }
.journey-cta { text-align: center; margin-top: 40px; }
.journey-cta p { font-size: 16px; color: var(--text-muted); margin-bottom: 20px; }

/* ── VOCAB ── */
.vocab-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.vocab-card { background: var(--bg2); border: 1px solid var(--border); border-radius: 14px; padding: 22px 24px; }
.vocab-term { font-size: 13px; font-weight: 800; color: var(--cyan); margin-bottom: 8px; letter-spacing: 0.02em; }
.vocab-def { font-size: 13px; color: var(--text-muted); line-height: 1.6; }

/* ── CATEGORY RULES ── */
.rules-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.rules-col h3 { font-size: 14px; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 20px; }
.rules-col.not h3 { color: var(--text-muted); }
.rules-col.is h3 { color: var(--cyan); }
.rule-item { display: flex; gap: 12px; padding: 14px 0; border-bottom: 1px solid var(--border); font-size: 14px; line-height: 1.55; }
.rule-item:last-child { border-bottom: none; }
.rule-icon { flex-shrink: 0; margin-top: 1px; }
.rules-col.not .rule-icon { color: var(--red); }
.rules-col.is .rule-icon { color: var(--cyan); }

/* ── WHY VERGE ── */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.why-body p { font-size: 15px; color: var(--text-muted); line-height: 1.75; margin-bottom: 20px; }
.why-body p:last-child { margin-bottom: 0; }
.why-body strong { color: var(--text); }
.why-sidebar { display: flex; flex-direction: column; gap: 16px; }
.partner-card { background: var(--bg2); border: 1px solid var(--border); border-radius: 14px; padding: 20px 24px; }
.partner-card-label { font-size: 10px; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-dim); margin-bottom: 6px; }
.partner-card h4 { font-size: 16px; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.partner-card p { font-size: 13px; color: var(--text-muted); line-height: 1.5; }
.jimmy-quote { background: linear-gradient(135deg, rgba(0,180,216,0.08), rgba(0,180,216,0.02)); border: 1px solid rgba(0,180,216,0.2); border-radius: 16px; padding: 28px 32px; }
.jimmy-quote blockquote { font-size: 16px; font-style: italic; color: var(--text); line-height: 1.65; margin-bottom: 12px; }
.jimmy-quote cite { font-size: 13px; color: var(--cyan); font-style: normal; font-weight: 600; }

/* ── CTA BOX ── */
.cta-box { background: linear-gradient(135deg, #0d2545, var(--bg-navy)); border: 1px solid rgba(0,153,187,0.3); border-radius: 24px; padding: 64px; text-align: center; position: relative; overflow: hidden; }
.cta-box::before { content: ''; position: absolute; top: -60px; left: 50%; transform: translateX(-50%); width: 500px; height: 200px; background: radial-gradient(ellipse, rgba(0,180,216,0.12), transparent 70%); pointer-events: none; }
.cta-box h2 { font-size: clamp(26px, 4vw, 40px); font-weight: 900; letter-spacing: -0.02em; line-height: 1.15; margin-bottom: 16px; position: relative; color: var(--text-inverse); }
.cta-box p { font-size: 17px; color: rgba(255,255,255,0.72); max-width: 540px; margin: 0 auto 36px; line-height: 1.65; position: relative; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; position: relative; }

/* ── SELF-ASSESS ── */
.self-assess { margin-top: 48px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: 16px; overflow: hidden; }
.assess-stage { background: var(--bg); padding: 24px; text-align: center; }
.assess-stage-label { font-size: 10px; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 8px; }
.assess-stage:nth-child(1) .assess-stage-label { color: var(--red); }
.assess-stage:nth-child(2) .assess-stage-label { color: var(--yellow); }
.assess-stage:nth-child(3) .assess-stage-label { color: var(--cyan); }
.assess-stage h4 { font-size: 14px; font-weight: 700; margin-bottom: 6px; }
.assess-stage p { font-size: 12px; color: var(--text-muted); margin: 0; line-height: 1.5; }
.assess-arrow { display: flex; align-items: center; justify-content: center; font-size: 18px; color: var(--text-dim); background: var(--bg2); padding: 0 8px; }

/* ── TEAM CARDS ── */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.team-card { background: var(--bg2); border: 1px solid var(--border); border-radius: 18px; padding: 28px; }
.team-card.founder { border-color: rgba(0,180,216,0.25); background: linear-gradient(135deg, var(--surface), var(--bg2)); }
.team-avatar { width: 56px; height: 56px; border-radius: 50%; background: linear-gradient(135deg, var(--cyan), rgba(0,100,150,0.8)); display: flex; align-items: center; justify-content: center; font-size: 22px; font-weight: 900; color: var(--text-inverse); margin-bottom: 16px; }
.team-name { font-size: 17px; font-weight: 800; margin-bottom: 4px; }
.team-title { font-size: 12px; font-weight: 600; color: var(--cyan); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 14px; }
.team-bio { font-size: 13px; color: var(--text-muted); line-height: 1.65; }

/* ── VIDEO / ARTICLE CARDS ── */
.cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.resource-card { background: var(--bg2); border: 1px solid var(--border); border-radius: 16px; overflow: hidden; transition: border-color 0.2s; text-decoration: none; display: flex; flex-direction: column; }
.resource-card:hover { border-color: rgba(0,180,216,0.3); }
.resource-card-thumb { height: 160px; background: linear-gradient(135deg, #c8daea, #dde8f5); display: flex; align-items: center; justify-content: center; font-size: 36px; position: relative; overflow: hidden; }
.resource-card-thumb .thumb-img { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; }
.resource-card-thumb.cover-thumb { height: auto; aspect-ratio: 16 / 9; background: var(--bg); }
.resource-card-thumb.cover-thumb .thumb-img { object-fit: contain; }
.resource-card-thumb.video-placeholder { background: linear-gradient(135deg, #b8cfe8 0%, #cce0f0 50%, #dde8f5 100%); }
.resource-card-thumb .video-placeholder-icon { color: rgba(0,180,216,0.15); position: absolute; }
.resource-card-thumb .play-icon { position: absolute; z-index: 2; width: 48px; height: 48px; background: var(--cyan-bright); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 18px; color: var(--text-inverse); padding-left: 3px; box-shadow: 0 2px 12px rgba(0,0,0,0.4); transition: transform 0.2s; }
.resource-card:hover .play-icon { transform: scale(1.1); }
.resource-card--text-only { border-top: 3px solid rgba(0,180,216,0.2); }
.resource-card--text-only .resource-card-body { padding: 24px 22px; }
.resource-card--text-only:hover { border-top-color: var(--cyan); }
.resource-card-body { padding: 20px 22px; flex: 1; display: flex; flex-direction: column; }
.resource-card-type { font-size: 10px; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; color: var(--cyan); margin-bottom: 8px; }
.resource-card-title { font-size: 15px; font-weight: 700; color: var(--text); line-height: 1.4; margin-bottom: 10px; flex: 1; }
.resource-card-desc { font-size: 13px; color: var(--text-muted); line-height: 1.55; margin-bottom: 14px; }
.resource-card-meta { font-size: 12px; color: var(--text-dim); }
.cover-image-wrapper { width: 100%; max-height: 400px; aspect-ratio: 16 / 9; border-radius: 12px; overflow: hidden; margin-bottom: 40px; background: var(--bg); display: flex; align-items: center; justify-content: center; }
.cover-image-wrapper .cover-image { width: 100%; height: 100%; object-fit: contain; display: block; }

/* ── PRESS ── */
.press-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
.press-item { background: var(--bg2); border: 1px solid var(--border); border-radius: 14px; padding: 24px 28px; display: flex; gap: 24px; align-items: flex-start; transition: border-color 0.2s; }
.press-item--link { text-decoration: none; cursor: pointer; }
.press-item--link:hover { border-color: rgba(0,180,216,0.3); }
.press-item--link:hover .press-title { color: var(--cyan-bright); }
.press-date { font-size: 12px; font-weight: 600; color: var(--text-dim); white-space: nowrap; padding-top: 2px; min-width: 80px; }
.press-content { flex: 1; }
.press-source { font-size: 10px; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; color: var(--cyan); margin-bottom: 6px; }
.press-title { font-size: 16px; font-weight: 700; color: var(--text); margin-bottom: 6px; line-height: 1.4; transition: color 0.2s; }
.press-desc { font-size: 13px; color: var(--text-muted); line-height: 1.6; }
.press-read-more { font-size: 12px; color: var(--text-dim); margin-top: 10px; }

/* ── CONTACT FORM ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.contact-form { background: var(--bg2); border: 1px solid var(--border); border-radius: 20px; padding: 40px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--text-muted); margin-bottom: 8px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; background: var(--bg); border: 1px solid var(--border); border-radius: 10px;
  padding: 12px 16px; font-size: 14px; font-family: 'Inter', sans-serif;
  color: var(--text); transition: border-color 0.2s; outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--cyan); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-group select option { background: var(--bg2); }
.form-submit { width: 100%; font-size: 15px; font-weight: 700; color: var(--text-inverse); background: var(--cyan-bright); border: none; padding: 14px; border-radius: 10px; cursor: pointer; transition: opacity 0.2s; font-family: 'Inter', sans-serif; }
.form-submit:hover { opacity: 0.88; }
/* ── ACTIVECAMPAIGN FORM OVERRIDES ── */
#_form_1_ { all: unset; display: block; width: 100%; }
._form-content { display: flex; flex-direction: column; gap: 0; }
._form_element { margin-bottom: 20px; }
._form-label { display: block; font-size: 13px; font-weight: 600; color: var(--text-muted); margin-bottom: 8px; font-family: 'Inter', sans-serif; }
.field-required { color: var(--cyan); margin-left: 2px; }
._field-wrapper input, ._field-wrapper select, ._field-wrapper textarea { width: 100%; background: var(--bg) !important; border: 1px solid var(--border) !important; border-radius: 10px !important; padding: 12px 16px !important; font-size: 14px; font-family: 'Inter', sans-serif; color: var(--text) !important; transition: border-color 0.2s; outline: none; box-sizing: border-box; }
._field-wrapper input:focus, ._field-wrapper select:focus, ._field-wrapper textarea:focus { border-color: var(--cyan) !important; }
._field-wrapper textarea { resize: vertical; min-height: 100px; }
._field-wrapper select option { background: var(--bg2); }
._field-wrapper select { 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 d='M1 1l5 5 5-5' stroke='%2300b4d8' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") !important; background-repeat: no-repeat !important; background-position: right 14px center !important; padding-right: 36px !important; }
._button-wrapper { margin-top: 8px; }
#_form_1_submit { width: 100%; font-size: 15px; font-weight: 700; color: var(--bg) !important; background: var(--cyan-bright) !important; border: none !important; padding: 14px !important; border-radius: 10px !important; cursor: pointer; transition: opacity 0.2s; font-family: 'Inter', sans-serif; }
#_form_1_submit:hover { opacity: 0.88; }
#_form_1_submit.processing { opacity: 0.6; cursor: not-allowed; }
._form-thank-you { color: var(--cyan-bright); font-size: 16px; font-weight: 600; padding: 24px 0; text-align: center; }
._error-inner { font-size: 12px; color: #ff6b6b; margin-top: 4px; display: block; }
._has_error input, ._has_error select, ._has_error textarea { border-color: #ff6b6b !important; }
._form-branding { display: none !important; }

.contact-info-cards { display: flex; flex-direction: column; gap: 16px; }
.contact-info-card { background: var(--bg2); border: 1px solid var(--border); border-radius: 14px; padding: 22px 24px; }
.contact-info-card h4 { font-size: 14px; font-weight: 700; margin-bottom: 6px; }
.contact-info-card p { font-size: 13px; color: var(--text-muted); line-height: 1.6; }
.contact-info-card a { color: var(--cyan); text-decoration: none; }

/* ── HOME SPECIFIC ── */
.hero-bg { position: absolute; inset: 0; background: radial-gradient(ellipse 80% 50% at 50% 30%, rgba(0,180,216,0.07) 0%, transparent 70%), radial-gradient(ellipse 40% 60% at 80% 80%, rgba(0,100,160,0.05) 0%, transparent 70%); pointer-events: none; }
.hero-grid-bg { position: absolute; inset: 0; background-image: linear-gradient(var(--border) 1px, transparent 1px), linear-gradient(90deg, var(--border) 1px, transparent 1px); background-size: 60px 60px; mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 0%, transparent 70%); pointer-events: none; opacity: 0.2; }
#hero { min-height: 100vh; display: flex; align-items: center; padding-top: var(--nav-h); position: relative; overflow: hidden; }
.hero-inner { position: relative; z-index: 2; padding: 80px 0; max-width: 820px; }
.hero-pre { display: flex; align-items: center; gap: 12px; margin-bottom: 28px; }
.hero-pre-line { width: 32px; height: 2px; background: var(--cyan); }
.hero-pre-text { font-size: 12px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--cyan); }
.hero-h1 { font-size: clamp(38px, 6vw, 72px); font-weight: 900; line-height: 1.08; letter-spacing: -0.03em; margin-bottom: 24px; }
.hero-h1 em { font-style: normal; color: var(--cyan-bright); }
.hero-sub { font-size: 18px; color: var(--text-muted); line-height: 1.7; max-width: 600px; margin-bottom: 28px; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 36px; }
.hero-badge { font-size: 11px; font-weight: 600; color: var(--text-muted); background: var(--surface); border: 1px solid var(--border); padding: 5px 12px; border-radius: 100px; letter-spacing: 0.03em; }
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 64px; }
.hero-proof { display: flex; gap: 40px; flex-wrap: wrap; }
.hero-proof-num { font-size: 32px; font-weight: 900; letter-spacing: -0.02em; color: var(--cyan-bright); line-height: 1; margin-bottom: 4px; }
.hero-proof-label { font-size: 12px; color: var(--text-dim); font-weight: 500; text-transform: uppercase; letter-spacing: 0.08em; }

/* ── SOLUTION TEASER (home) ── */
.solution-teaser-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-bottom: 40px; }
.teaser-card { background: var(--bg2); border: 1px solid var(--border); border-radius: 14px; padding: 24px; }
.teaser-card-num { font-size: 11px; font-weight: 800; letter-spacing: 0.1em; color: var(--cyan); text-transform: uppercase; margin-bottom: 8px; }
.teaser-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.teaser-card p { font-size: 13px; color: var(--text-muted); line-height: 1.6; }

/* ── WHAT WE DO (about page) ── */
.what-we-do-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.wwd-card { background: var(--surface); border: 1px solid var(--border); border-radius: 16px; padding: 32px; transition: border-color 0.2s, transform 0.15s; }
.wwd-card:hover { border-color: rgba(0,180,216,0.3); transform: translateY(-2px); }
.wwd-icon { margin-bottom: 20px; }
.wwd-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 10px; }
.wwd-card p { font-size: 14px; color: var(--text-muted); line-height: 1.65; }

/* ── GLOBAL OPS (platform) ── */
.global-ops-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.global-ops-card { background: var(--surface); border: 1px solid var(--border); border-radius: 16px; padding: 32px; }
.global-ops-card.full-width { grid-column: span 2; }
.global-ops-icon { margin-bottom: 20px; }
.global-ops-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 12px; color: var(--text); }
.global-ops-card p { font-size: 14px; color: var(--text-muted); line-height: 1.65; }
.global-ops-two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.global-ops-two-col p { font-size: 14px; color: var(--text-muted); line-height: 1.65; }

/* ── AI CONTROL (platform) ── */
.ai-control-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.ai-control-card { background: var(--surface); border: 1px solid var(--border); border-radius: 16px; padding: 28px; display: flex; gap: 20px; align-items: flex-start; transition: border-color 0.2s; }
.ai-control-card:hover { border-color: rgba(0,180,216,0.3); }
.ai-control-num { flex-shrink: 0; }
.ai-control-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.ai-control-card p { font-size: 14px; color: var(--text-muted); line-height: 1.65; }

/* ── AUTOMATED CAPABILITIES (platform) ── */
.auto-caps-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.auto-cap-card { background: var(--surface); border: 1px solid var(--border); border-radius: 16px; padding: 28px; }
.auto-cap-icon { margin-bottom: 16px; }
.auto-cap-label { font-size: 14px; font-weight: 800; color: var(--cyan); margin-bottom: 14px; letter-spacing: 0.02em; }
.auto-cap-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.auto-cap-list li { font-size: 14px; color: var(--text-muted); line-height: 1.6; padding-left: 20px; position: relative; }
.auto-cap-list li::before { content: '→'; position: absolute; left: 0; color: var(--cyan); font-weight: 700; }

/* ── IMPACTS (platform) ── */
.impacts-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.impact-item { background: var(--surface); border: 1px solid var(--border); border-radius: 16px; padding: 28px; text-align: center; transition: border-color 0.2s, transform 0.15s; }
.impact-item:hover { border-color: rgba(0,180,216,0.3); transform: translateY(-2px); }
.impact-item.full-width { grid-column: span 3; }
.impact-num { font-size: 28px; font-weight: 900; color: var(--cyan-bright); margin-bottom: 14px; line-height: 1; background: linear-gradient(135deg, var(--cyan-bright), rgba(0,180,216,0.5)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.impact-item p { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

/* ── VALUE GRID (platform) ── */
.value-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.value-card { background: var(--surface); border: 1px solid var(--border); border-radius: 16px; padding: 32px; transition: border-color 0.2s; }
.value-card:hover { border-color: rgba(0,180,216,0.3); }
.value-card.span-2 { grid-column: span 2; }
.value-icon { margin-bottom: 16px; }
.value-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 10px; }
.value-card p { font-size: 14px; color: var(--text-muted); line-height: 1.65; }

/* ── USE CASE BLOCKS (platform) ── */
.usecase-block { margin-bottom: 48px; }
.usecase-block:last-of-type { margin-bottom: 48px; }
.usecase-title { font-size: 20px; font-weight: 800; margin-bottom: 24px; display: flex; align-items: center; gap: 12px; }
.usecase-compare { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border-radius: 16px; overflow: hidden; border: 1px solid var(--border); }
.usecase-col { padding: 32px; }
.usecase-col.traditional { background: rgba(239,68,68,0.04); border-right: 1px solid var(--border); }
.usecase-col.sentient { background: rgba(0,180,216,0.04); }
.usecase-col-header { font-size: 14px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 20px; display: flex; align-items: center; gap: 10px; }
.usecase-col.traditional .usecase-col-header { color: var(--red); }
.usecase-col.sentient .usecase-col-header { color: var(--cyan); }
.usecase-col-icon { font-size: 16px; font-weight: 900; }
.usecase-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.usecase-col li { font-size: 14px; color: var(--text-muted); line-height: 1.55; padding-left: 18px; position: relative; }
.usecase-col.traditional li::before { content: '—'; position: absolute; left: 0; color: var(--text-dim); }
.usecase-col.sentient li::before { content: '→'; position: absolute; left: 0; color: var(--cyan); font-weight: 700; }
.usecase-col li strong { color: var(--emerald); font-weight: 800; }
.usecase-cost { margin-top: 20px; font-size: 13px; color: var(--red); font-weight: 600; padding: 12px 16px; background: rgba(239,68,68,0.08); border-radius: 8px; border: 1px solid rgba(239,68,68,0.15); }
.usecase-result { margin-top: 20px; font-size: 13px; color: var(--emerald); font-weight: 600; padding: 12px 16px; background: rgba(16,185,129,0.08); border-radius: 8px; border: 1px solid rgba(16,185,129,0.15); }

/* ── SVG DIAGRAM CONTAINERS ── */
.diagram-globe, .diagram-architecture, .diagram-cycle, .diagram-impacts, .diagram-hub, .diagram-before-after, .diagram-convergence {
  margin-bottom: 48px;
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(0,180,216,0.02), rgba(0,100,160,0.02));
}
.diagram-globe-svg, .diagram-architecture-svg, .diagram-cycle-svg, .diagram-impacts-svg, .diagram-hub-svg, .diagram-before-after-svg, .diagram-convergence-svg {
  width: 100%;
  height: auto;
  display: block;
}
.diagram-globe { background: linear-gradient(180deg, rgba(0,153,187,0.06) 0%, rgba(11,31,58,0.08) 100%); }
.diagram-architecture { background: linear-gradient(135deg, var(--surface), var(--bg2)); }
.diagram-cycle { background: transparent; border-color: transparent; }
.diagram-impacts { background: transparent; border-color: transparent; }
.diagram-hub { background: transparent; border: none; }
.diagram-before-after { border-color: transparent; background: transparent; }
.diagram-convergence { background: linear-gradient(135deg, rgba(0,180,216,0.02), transparent); }

/* ── ENTERPRISE OPS STRIP (platform) ── */
.enterprise-ops-strip { background: var(--surface); border: 1px solid var(--border); border-radius: 20px; padding: 40px; margin-top: 8px; }
.enterprise-ops-strip h3 { font-size: 18px; font-weight: 800; margin-bottom: 28px; text-align: center; }
.enterprise-ops-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.enterprise-ops-item { text-align: center; }
.enterprise-ops-item-icon { margin-bottom: 14px; display: flex; justify-content: center; }
.enterprise-ops-item h4 { font-size: 14px; font-weight: 700; margin-bottom: 8px; }
.enterprise-ops-item p { font-size: 13px; color: var(--text-muted); line-height: 1.55; }

/* ── MOBILE ── */
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .section { padding: 64px 0; }
  .hero-h1 { font-size: clamp(32px, 9vw, 52px); }
  .hero-sub { font-size: 16px; }
  .hero-proof { gap: 24px; }
  .hero-proof-num { font-size: 26px; }
  .hero-pre-text { font-size: 10px; letter-spacing: 0.08em; white-space: normal; overflow-wrap: break-word; }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta a { text-align: center; }
  .problem-grid { grid-template-columns: 1fr; }
  .sentient-hero { grid-template-columns: 1fr; gap: 32px; padding: 32px 24px; }
  .capabilities-grid { grid-template-columns: 1fr; }
  .solution-teaser-grid { grid-template-columns: 1fr; }
  .journey-grid { grid-template-columns: 1fr; }
  .journey-state { border-right: none; border-bottom: 1px solid var(--border); }
  .journey-state:last-child { border-bottom: none; }
  .journey-arrow { display: none; }
  .vocab-grid { grid-template-columns: 1fr; }
  .rules-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .cards-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .cta-box { padding: 40px 24px; }
  .self-assess { grid-template-columns: 1fr; }
  .assess-arrow { display: none; }
  .ops-list { grid-template-columns: 1fr; }
  .ops-strip { padding: 20px; }
  .footer-inner { flex-direction: column; }
  .footer-cols { gap: 32px; }
  .press-item { flex-direction: column; gap: 8px; }
  .what-we-do-grid { grid-template-columns: 1fr; }
  .global-ops-grid { grid-template-columns: 1fr; }
  .global-ops-card.full-width { grid-column: span 1; }
  .global-ops-two-col { grid-template-columns: 1fr; }
  .ai-control-grid { grid-template-columns: 1fr; }
  .ai-control-card { flex-direction: column; }
  .auto-caps-grid { grid-template-columns: 1fr; }
  .impacts-grid { grid-template-columns: 1fr; }
  .impact-item.full-width { grid-column: span 1; }
  .value-grid { grid-template-columns: 1fr; }
  .value-card.span-2 { grid-column: span 1; }
  .usecase-compare { grid-template-columns: 1fr; }
  .usecase-col.traditional { border-right: none; border-bottom: 1px solid var(--border); }
  .enterprise-ops-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
  .diagram-globe, .diagram-architecture, .diagram-cycle, .diagram-impacts, .diagram-hub, .diagram-before-after, .diagram-convergence { margin-bottom: 32px; border-radius: 12px; overflow-x: auto; }
  .diagram-globe-svg, .diagram-architecture-svg { min-width: 700px; }
  .diagram-before-after-svg { min-width: 650px; }
}
@media (max-width: 480px) {
  .section { padding: 48px 0; }
  .hero-inner { padding: 48px 0; }
  .hero-proof { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
}

/* ── FOOTER MTP SECTION ── */
.footer-mtp { border-top: 1px solid var(--border); padding: 28px 0 20px; margin-top: 24px; text-align: center; }
.footer-mtp-headline { font-size: 16px; font-weight: 700; color: var(--cyan-bright); margin-bottom: 12px; }
.footer-mtp-label { font-size: 13px; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 10px; }
.footer-mtp-list { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 6px; }
.footer-mtp-list li { font-size: 13px; color: var(--text-dim); font-style: italic; }

/* ── PROCESS DIAGRAM ── */
.process-diagram { margin-top: 32px; text-align: center; }
.process-diagram-img { width: 100%; max-width: 1100px; height: auto; border-radius: 12px; display: inline-block; }

@media (max-width: 768px) {
  .footer-mtp-list { padding: 0 16px; }
}


/* ── FOOTER DARK OVERRIDES (light theme) ── */
footer .footer-brand p,
footer .footer-col h5,
footer .footer-col a,
footer .footer-bottom p,
footer .footer-mtp-label,
footer .footer-mtp-list li { color: rgba(255,255,255,0.65); }
footer .footer-mtp-headline { color: var(--cyan); }
footer .footer-col a:hover { color: var(--cyan); }
footer .footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); }
footer .footer-mtp { border-top: 1px solid rgba(255,255,255,0.1); }

/* ── CARD SHADOWS (light theme) ── */
.problem-card,
.capability-card,
.team-card,
.resource-card,
.vocab-card,
.partner-card,
.contact-info-card,
.press-item { box-shadow: var(--shadow-sm); }
.problem-card:hover,
.capability-card:hover,
.resource-card:hover { box-shadow: var(--shadow); }
