/* ===== RESET & BASE ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg-primary: #080808;
  --bg-secondary: #0f0f0f;
  --bg-card: #111111;
  --bg-card-hover: #181818;
  --border: rgba(255, 255, 255, 0.08);
  --border-hover: rgba(255, 255, 255, 0.16);
  --text-primary: #ffffff;
  --text-secondary: rgba(255, 255, 255, 0.6);
  --text-muted: rgba(255, 255, 255, 0.35);
  --accent-primary: #710B9D;
  --accent-blue: #3b82f6;
  --accent-green: #22c55e;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 20px;
  --transition: 0.2s ease;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

/* ===== LAYOUT ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== ANNOUNCEMENT BANNER ===== */
.announcement-banner {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 24px;
  font-size: 13px;
  color: var(--text-secondary);
  background: #111;
}

.banner-gradient {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 340px;
  background: linear-gradient(90deg, rgba(113,11,157,0.4) 0%, rgba(113,11,157,0.15) 40%, transparent 100%);
  pointer-events: none;
}

.banner-content {
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
  z-index: 1;
}

.announcement-banner .badge {
  color: var(--text-primary);
  font-weight: 500;
  font-size: 13px;
}

.announcement-banner a {
  color: var(--text-secondary);
  font-weight: 500;
  transition: color var(--transition);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 3px 10px;
  border-radius: 6px;
  font-size: 12px;
}

.announcement-banner a:hover {
  color: var(--text-primary);
  border-color: rgba(255,255,255,0.35);
}

/* ===== NAVIGATION ===== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(8, 8, 8, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  height: 52px;
  gap: 24px;
}

.nav-logo svg text {
  font-family: var(--font);
}

.nav-logo img {
  height: 28px;
  width: auto;
  display: block;



}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
}

.nav-btn {
  background: none;
  border: none;
  color: var(--text-secondary);
  font-family: var(--font);
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  padding: 5px 10px;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-btn:hover {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.05);
}

.nav-link {
  color: var(--text-secondary);
  font-size: 12px;
  font-weight: 500;
  padding: 5px 10px;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
}

.nav-link:hover {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.05);
}

.nav-search-btn {
  background: none;
  border: none;
  color: var(--text-secondary);
  cursor: pointer;
  padding: 6px 8px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  transition: color var(--transition), background var(--transition);
}

.nav-search-btn:hover {
  color: var(--text-primary);
  background: rgba(255,255,255,0.05);
}

.btn-outline-white {
  color: var(--text-primary);
  font-size: 12px;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.3);
  transition: border-color var(--transition), background var(--transition);
  display: inline-block;
}

.btn-outline-white:hover {
  border-color: rgba(255,255,255,0.6);
  background: rgba(255,255,255,0.04);
}

.btn-white {
  background: #ffffff;
  color: #000000;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 20px;
  border: none;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
  display: inline-block;
  font-family: var(--font);
}

.btn-white:hover {
  background: #e5e5e5;
  transform: translateY(-1px);
}

.nav-ctas {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ===== BUTTONS ===== */
.btn-ghost {
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
}

.btn-ghost:hover {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.05);
}

.btn-outline {
  color: var(--text-primary);
  font-size: 14px;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-hover);
  transition: border-color var(--transition), background var(--transition);
  display: inline-block;
}

.btn-outline:hover {
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.04);
}

.btn-primary {
  background: var(--accent-primary);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
  display: inline-block;
  font-family: var(--font);
}

.btn-primary:hover {
  background: #ea6c0a;
  transform: translateY(-1px);
}

.btn-lg {
  padding: 12px 24px;
  font-size: 15px;
  border-radius: var(--radius);
}

/* ===== HERO SECTION ===== */
.hero {
  padding: 60px 0 0;
  background: radial-gradient(ellipse 100% 60% at 10% 40%, rgba(30,30,50,0.6) 0%, transparent 60%);
  overflow: hidden;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 40px;
  align-items: flex-start;
}

.hero-left {
  display: flex;
  flex-direction: column;
}

.hero-title {
  font-size: clamp(42px, 5.5vw, 72px);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.03em;
  color: var(--text-primary);
  margin-bottom: 40px;
}

/* ===== HERO SCREENSHOTS GRID ===== */
.hero-screenshots {
  width: 100%;
}

.screenshots-grid {
  display: grid;
  grid-template-columns: 180px 1fr 1fr 200px;
  grid-template-rows: auto auto;
  gap: 8px;
}

.screenshot-item {
  background: #141414;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
}

.screenshot-item.wide {
  grid-column: span 2;
}

.ss-topbar {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 7px 10px;
  background: #1a1a1a;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.ss-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
}

.ss-body {
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ss-metric {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-primary);
}

.ss-metric.large {
  font-size: 18px;
}

.ss-rows {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.ss-row {
  height: 8px;
  border-radius: 4px;
  background: rgba(255,255,255,0.06);
}

.ss-row:nth-child(1) { width: 90%; }
.ss-row:nth-child(2) { width: 70%; }
.ss-row:nth-child(3) { width: 85%; }
.ss-row:nth-child(4) { width: 60%; }

.ss-stats-row {
  display: flex;
  gap: 10px;
}

.ss-stat {
  flex: 1;
}

.ss-stat-val {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-primary);
}

.ss-stat-val.blue { color: var(--accent-blue); }
.ss-stat-val.green { color: var(--accent-green); }

.ss-stat-lbl {
  font-size: 10px;
  color: var(--text-muted);
  margin-top: 2px;
}

.ss-table {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.ss-tr {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
}

.ss-tr span {
  height: 7px;
  border-radius: 3px;
  background: rgba(255,255,255,0.06);
  display: block;
}

.ss-tr.header span {
  background: rgba(255,255,255,0.12);
}

.ss-tr span.highlight { background: var(--accent-blue); opacity: 0.6; }
.ss-tr span.highlight.orange { background: var(--accent-primary); }
.ss-tr span.highlight.green { background: var(--accent-green); }

.ss-line-chart {
  width: 100%;
}

.ss-bar-chart {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.ss-hbar {
  display: flex;
  align-items: center;
  gap: 6px;
}

.ss-hbar-label {
  font-size: 9px;
  color: var(--text-muted);
  width: 54px;
  flex-shrink: 0;
}

.ss-hbar-track {
  flex: 1;
  height: 7px;
  background: rgba(255,255,255,0.06);
  border-radius: 4px;
  overflow: hidden;
}

.ss-hbar-fill {
  height: 100%;
  background: var(--accent-green);
  border-radius: 4px;
}

.ss-progress-list {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.ss-progress-item {
  height: 6px;
  background: rgba(255,255,255,0.06);
  border-radius: 3px;
  overflow: hidden;
}

.ss-progress-bar {
  height: 100%;
  background: var(--accent-blue);
  border-radius: 3px;
}

.ss-progress-bar.orange {
  background: var(--accent-primary);
}

/* ===== HERO RIGHT PANEL ===== */
.hero-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-top: 16px;
  position: sticky;
  top: 80px;
}

.hero-right-title {
  font-size: 26px;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.hero-right-subtitle {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.5;
}

.hero-cta-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 14px 18px;
  gap: 8px;
  transition: border-color var(--transition), background var(--transition);
}

.hero-cta-btn:hover {
  border-color: rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.07);
}

.hero-cta-label {
  font-size: 14px;
  color: var(--text-secondary);
  font-weight: 400;
}

.hero-cta-link {
  font-size: 14px;
  color: var(--text-primary);
  font-weight: 600;
  white-space: nowrap;
  transition: color var(--transition);
}

.hero-cta-link:hover {
  color: rgba(255,255,255,0.7);
}

/* ===== APPGEN SECTION ===== */
.appgen-section {
  padding: 80px 0;
  border-top: 1px solid var(--border);
}

.appgen-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  align-items: start;
}

.appgen-left {
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 12px;
  height: 100%;
}

.appgen-right {
  display: grid;
  grid-template-rows: 1fr auto;
  gap: 12px;
  height: 100%;
}

.appgen-text {
  background: #111;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.appgen-tag {
  font-size: 12px;
  font-weight: 500;
  color: var(--accent-primary);
  letter-spacing: 0.02em;
}

.appgen-title {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--text-primary);
}

.appgen-subtitle {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: 380px;
}

.appgen-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.06);
  position: relative;
}

.appgen-img-bottom {
  min-height: 220px;
}

.appgen-img-tall {
  min-height: 260px;
}

.appgen-img-right-bottom {
  min-height: 160px;
}

/* === 3D Art Scenes === */
.art-scene {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

/* Scene A - floating cubes + wires (bottom left) */
.art-scene-a {
  background: linear-gradient(135deg, #1a0e0e 0%, #0d0d1a 40%, #0a1520 100%);
}

.art-cube {
  position: absolute;
  border-radius: 3px;
  transform-style: preserve-3d;
}

.art-scene-a .ac1 {
  width: 60px; height: 60px;
  background: linear-gradient(135deg, rgba(180,140,255,0.5), rgba(100,80,200,0.3));
  border: 1px solid rgba(180,140,255,0.3);
  top: 20%; left: 15%;
  transform: rotate(20deg) skewX(-5deg);
  box-shadow: 0 0 30px rgba(140,100,255,0.2);
}

.art-scene-a .ac2 {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, rgba(255,180,120,0.4), rgba(200,100,50,0.2));
  border: 1px solid rgba(255,180,120,0.25);
  top: 45%; left: 45%;
  transform: rotate(-15deg);
  box-shadow: 0 0 20px rgba(255,140,60,0.15);
}

.art-scene-a .ac3 {
  width: 80px; height: 80px;
  background: linear-gradient(135deg, rgba(80,180,255,0.3), rgba(40,100,200,0.2));
  border: 1px solid rgba(80,180,255,0.2);
  bottom: 15%; right: 10%;
  transform: rotate(10deg);
  box-shadow: 0 0 40px rgba(60,150,255,0.15);
}

.art-line {
  position: absolute;
  background: rgba(255,255,255,0.08);
}

.art-scene-a .al1 {
  width: 2px; height: 120px;
  top: 10%; left: 30%;
  transform: rotate(25deg);
  background: linear-gradient(180deg, transparent, rgba(180,140,255,0.4), transparent);
}

.art-scene-a .al2 {
  width: 100px; height: 2px;
  top: 60%; left: 10%;
  background: linear-gradient(90deg, transparent, rgba(255,180,120,0.3), transparent);
}

.art-dot {
  position: absolute;
  border-radius: 50%;
}

.art-scene-a .ad1 {
  width: 8px; height: 8px;
  background: rgba(255,180,120,0.8);
  top: 50%; left: 42%;
  box-shadow: 0 0 12px rgba(255,140,60,0.6);
}

.art-scene-a .ad2 {
  width: 5px; height: 5px;
  background: rgba(180,140,255,0.8);
  top: 25%; left: 28%;
  box-shadow: 0 0 8px rgba(140,100,255,0.6);
}

.art-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
}

.art-scene-a .art-glow {
  width: 200px; height: 200px;
  background: rgba(140,80,255,0.15);
  top: -20%; left: -10%;
}

/* Scene B - hand + teal cubes (right tall) */
.art-scene-b {
  background: linear-gradient(160deg, #1a1010 0%, #120d18 30%, #0d1a18 70%, #0a1210 100%);
}

.art-hand {
  position: absolute;
  bottom: 0; right: 0;
  width: 75%; height: 85%;
  background: linear-gradient(135deg, #c8a088 0%, #b08060 30%, #8b5a3a 60%, #5a2a10 100%);
  clip-path: polygon(40% 0%, 100% 0%, 100% 100%, 0% 100%, 0% 40%);
  border-radius: 8px;
}

.art-hand-inner {
  position: absolute;
  top: 15%; left: 10%;
  right: 5%; bottom: 5%;
  background: linear-gradient(135deg, rgba(200,160,140,0.3), rgba(100,60,40,0.5));
  border-radius: 4px;
}

.art-scene-b .ab1 {
  width: 50px; height: 50px;
  background: linear-gradient(135deg, rgba(80,220,200,0.7), rgba(40,160,140,0.5));
  border: 1px solid rgba(80,220,200,0.4);
  top: 12%; left: 8%;
  transform: rotate(-10deg);
  box-shadow: 0 0 25px rgba(60,200,180,0.3);
}

.art-scene-b .ab2 {
  width: 35px; height: 35px;
  background: linear-gradient(135deg, rgba(80,220,200,0.5), rgba(40,160,140,0.3));
  border: 1px solid rgba(80,220,200,0.3);
  top: 8%; left: 25%;
  transform: rotate(15deg);
}

.art-scene-b .ab3 {
  width: 65px; height: 65px;
  background: linear-gradient(135deg, rgba(60,200,180,0.4), rgba(20,120,100,0.3));
  border: 1px solid rgba(60,200,180,0.25);
  top: 25%; left: 2%;
  transform: rotate(-5deg);
  box-shadow: 0 0 30px rgba(40,180,160,0.2);
}

.glow-teal {
  width: 250px; height: 250px;
  background: rgba(40,200,180,0.12);
  top: -30%; left: -20%;
}

/* Scene C - architectural arches + circle (bottom right) */
.art-scene-c {
  background: linear-gradient(135deg, #100d1a 0%, #0d1020 50%, #0a0d18 100%);
}

.art-arch {
  position: absolute;
  border-radius: 100px 100px 0 0;
  border: 2px solid;
}

.art-scene-c .aa1 {
  width: 100px; height: 140px;
  border-color: rgba(100,120,200,0.35);
  bottom: -20%; left: 20%;
  background: linear-gradient(180deg, rgba(80,100,200,0.08), transparent);
}

.art-scene-c .aa2 {
  width: 70px; height: 100px;
  border-color: rgba(140,100,200,0.25);
  bottom: -10%; left: 30%;
  background: linear-gradient(180deg, rgba(120,80,200,0.06), transparent);
}

.art-circle {
  position: absolute;
  border-radius: 50%;
  width: 80px; height: 80px;
  border: 2px solid rgba(100,120,200,0.3);
  background: rgba(80,100,180,0.06);
  top: 20%; right: 15%;
}

.glow-blue {
  width: 200px; height: 200px;
  background: rgba(80,100,200,0.12);
  bottom: -30%; right: -20%;
}

/* ===== PLATFORM SECTION ===== */
.platform-section {
  padding: 80px 0;
  border-top: 1px solid var(--border);
}

.section-title {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 16px;
  text-align: center;
}

.section-subtitle {
  font-size: 16px;
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto 60px;
  text-align: center;
  line-height: 1.6;
}

.tab-link {
  font-size: 13px;
  color: var(--accent-blue);
  transition: color var(--transition);
  display: inline-block;
}

.tab-link:hover {
  color: #60a5fa;
}

/* --- Govern large card --- */
.platform-card-large {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 12px;
}

.platform-card-visual {
  position: relative;
  height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(ellipse 80% 80% at 50% 50%, rgba(255,255,255,0.02) 0%, transparent 70%);
  overflow: hidden;
}

.dot-circles-scene {
  display: flex;
  align-items: center;
  gap: 0;
  position: relative;
  z-index: 1;
}

.dot-circle {
  flex-shrink: 0;
  opacity: 0.7;
}

.dc-left { opacity: 0.5; }
.dc-right { opacity: 0.35; }

.dot-connector {
  flex-shrink: 0;
  z-index: 2;
  margin: 0 -8px;
}

.dc-labels {
  position: absolute;
  bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.dc-labels-left { left: 32px; }
.dc-labels-right { right: 32px; text-align: right; }

.dc-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.35);
  text-transform: uppercase;
}

.dc-label.muted { color: rgba(255,255,255,0.2); }

.platform-card-footer {
  border-top: 1px solid var(--border);
  padding: 28px 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}

.platform-card-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.platform-tag {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent-primary);
}

.platform-card-title {
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.gradient-text {
  background: linear-gradient(90deg, #710B9D 0%, #a855f7 50%, #c084fc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.platform-card-desc {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.platform-card-desc p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* --- Three small cards --- */
.platform-cards-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.platform-card-small {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.platform-card-small-visual {
  height: 160px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}

.float-squares-scene {
  position: absolute;
  inset: 0;
  background: #0d0d0d;
}

.float-squares-scene.blue {
  background: radial-gradient(ellipse 80% 80% at 50% 50%, rgba(30,40,80,0.8) 0%, #0a0a12 100%);
}

.float-squares-scene.orange {
  background: radial-gradient(ellipse 80% 80% at 50% 50%, rgba(40,25,10,0.9) 0%, #0a0a0a 100%);
}

.float-squares-scene.teal {
  background: radial-gradient(ellipse 80% 80% at 50% 50%, rgba(20,40,50,0.8) 0%, #080d10 100%);
}

.fsq {
  position: absolute;
  border-radius: 3px;
}

.float-squares-scene.blue .fsq {
  background: var(--accent-blue);
  border: 1px solid rgba(100,160,255,0.5);
  box-shadow: 0 0 8px rgba(59,130,246,0.4);
}

.orange-sq {
  background: var(--accent-primary) !important;
  border: 1px solid rgba(113,11,157,0.5) !important;
  box-shadow: 0 0 6px rgba(113,11,157,0.5) !important;
  border-radius: 2px !important;
}

.fsq-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  pointer-events: none;
}

.blue-glow {
  width: 120px; height: 120px;
  background: rgba(59,130,246,0.2);
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
}

.orange-glow {
  width: 120px; height: 120px;
  background: rgba(249,115,22,0.2);
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
}

.teal-glow {
  width: 120px; height: 120px;
  background: rgba(45,212,191,0.15);
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
}

/* Scale dot grid */
.dot-grid-scale {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(45,212,191,0.5) 1px, transparent 1px);
  background-size: 14px 14px;
  background-position: center;
  mask-image: radial-gradient(ellipse 60% 60% at 50% 50%, black 40%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 60% 60% at 50% 50%, black 40%, transparent 80%);
}

.platform-card-small-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.platform-card-small-body h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.platform-card-small-body p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
  flex: 1;
}

/* Dot circle dot generation via CSS */
.dot-circle svg circle {
  /* base circle */
}


/* ===== TEAMS SECTION ===== */
.teams-section {
  padding: 100px 0;
  border-top: 1px solid var(--border);
}

.teams-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.teams-tabs {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.team-tab {
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
  cursor: pointer;
}

.team-tab:first-child {
  border-top: 1px solid var(--border);
}

.team-tab-header {
  margin-bottom: 12px;
}

.team-name {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-secondary);
  transition: color var(--transition);
}

.team-tab.active .team-name {
  color: var(--text-primary);
}

.team-tab p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 12px;
  display: none;
}

.team-tab .tab-link {
  display: none;
}

.team-tab.active p,
.team-tab.active .tab-link {
  display: block;
}

.team-tab.active p {
  color: var(--text-secondary);
}

.teams-visual {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  min-height: 320px;
  position: relative;
}

/* ===== INDUSTRY FORMS ===== */
.industry-form {
  display: none;
  flex-direction: column;
  gap: 20px;
  animation: formFadeIn 0.3s ease;
}

.industry-form.active {
  display: flex;
}

@keyframes formFadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.industry-form-header {
  margin-bottom: 4px;
}

.industry-form-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-primary);
  display: block;
  margin-bottom: 8px;
}

.industry-form-header h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.industry-form-header p {
  font-size: 13px;
  color: var(--text-secondary);
}

.industry-form-body {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-row.two-col {
  flex-direction: row;
  gap: 12px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}

.form-field label {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-secondary);
  letter-spacing: 0.02em;
}

.form-field input,
.form-field select,
.form-field textarea {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-family: var(--font);
  font-size: 13px;
  padding: 9px 12px;
  transition: border-color var(--transition), background var(--transition);
  outline: none;
  width: 100%;
  resize: none;
}

.form-field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M2 4l4 4 4-4' stroke='rgba(255,255,255,0.4)' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  padding-right: 30px;
  cursor: pointer;
}

.form-field select option {
  background: #1a1a1a;
  color: var(--text-primary);
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: var(--text-muted);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--accent-primary);
  background: rgba(113, 11, 157, 0.06);
}

.form-submit {
  align-self: flex-start;
  margin-top: 4px;
}

.data-chart-mockup {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.chart-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
}

.donut-chart {
  display: flex;
  justify-content: center;
}

.chart-legend {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-secondary);
}

.legend-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

/* ===== TRUSTED SECTION ===== */
.trusted-section {
  padding: 100px 0;
  border-top: 1px solid var(--border);
  overflow: hidden;
}

.logos-wrapper {
  overflow: hidden;
  position: relative;
  margin: 0 -24px 60px;
}

.logos-wrapper::before,
.logos-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px;
  z-index: 2;
  pointer-events: none;
}

.logos-wrapper::before {
  left: 0;
  background: linear-gradient(90deg, var(--bg-primary), transparent);
}

.logos-wrapper::after {
  right: 0;
  background: linear-gradient(-90deg, var(--bg-primary), transparent);
}

.logos-track {
  display: flex;
  align-items: center;
  gap: 48px;
  animation: marquee 30s linear infinite;
  width: max-content;
  padding: 8px 24px;
}

.logos-track:hover {
  animation-play-state: paused;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.customer-logo {
  height: 24px;
  width: auto;
  opacity: 0.5;
  filter: brightness(0) invert(1);
  transition: opacity var(--transition);
  flex-shrink: 0;
}

.customer-logo:hover {
  opacity: 0.9;
}

.customer-logo-text {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.04em;
  flex-shrink: 0;
  white-space: nowrap;
  transition: color var(--transition);
}

.customer-logo-text:hover {
  color: rgba(255,255,255,0.85);
}

.proof-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 48px;
}

.proof-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  transition: border-color var(--transition), background var(--transition);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.proof-card:hover {
  border-color: var(--border-hover);
  background: var(--bg-card-hover);
}

.proof-stat {
  font-size: 24px;
  font-weight: 800;
  color: var(--text-primary);
}

.proof-desc {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.5;
  flex: 1;
}

.proof-logo {
  height: 18px;
  width: auto;
  opacity: 0.5;
  filter: brightness(0) invert(1);
  margin-top: 8px;
}

.proof-logo-text {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-muted);
  margin-top: 8px;
}

.trust-badges {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.trust-text {
  font-size: 14px;
  color: var(--text-secondary);
  max-width: 400px;
}

.trust-icons {
  display: flex;
  align-items: center;
  gap: 20px;
}

.trust-icons img {
  height: 40px;
  width: auto;
  opacity: 0.6;
  filter: brightness(0) invert(1);
}

/* ===== WHY SECTION ===== */
.why-section {
  padding: 100px 0;
  border-top: 1px solid var(--border);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
}

.why-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transition: border-color var(--transition);
}

.why-card:hover {
  border-color: var(--border-hover);
}

.why-icon {
  margin-bottom: 20px;
}

.why-card h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 12px;
  line-height: 1.3;
}

.why-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ===== BLOG SECTION ===== */
.blog-section {
  padding: 100px 0;
  border-top: 1px solid var(--border);
}

.blog-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
  margin-top: 60px;
}

.blog-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--transition), background var(--transition);
  display: block;
  min-height: 200px;
}

.blog-card:hover {
  border-color: var(--border-hover);
  background: var(--bg-card-hover);
}

.blog-card.featured {
  background: linear-gradient(135deg, #1a1a2e 0%, #0f0f1a 100%);
}

.blog-card-inner {
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  height: 100%;
}

.blog-category {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent-primary);
}

.blog-card h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.3;
}

.blog-card p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.blog-author {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 500;
  letter-spacing: 0.04em;
  margin-top: auto;
}

/* ===== CTA SECTION ===== */
.cta-section {
  padding: 80px 0;
  border-top: 1px solid var(--border);
}

.cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.cta-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cta-card.dark {
  background: linear-gradient(135deg, #0f0f1a 0%, #080810 100%);
}

.cta-tag {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}

.cta-card h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.cta-input-group {
  display: flex;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-hover);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
}

.cta-input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  font-family: var(--font);
  font-size: 14px;
  color: var(--text-primary);
}

.cta-input::placeholder {
  color: var(--text-muted);
}

/* ===== INNER PAGES ===== */

/* Nav active link */
.nav-link--active {
  color: var(--text-primary) !important;
  position: relative;
}
.nav-link--active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 12px;
  right: 12px;
  height: 2px;
  background: var(--accent-primary);
  border-radius: 2px;
}

/* Page header */
.page-header {
  padding: 80px 0 64px;
  border-bottom: 1px solid var(--border);
}
.page-header-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-primary);
  margin-bottom: 16px;
}
.page-header-title {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
  color: var(--text-primary);
}
.page-header-subtitle {
  font-size: 17px;
  color: var(--text-secondary);
  max-width: 580px;
  line-height: 1.6;
}

/* ---- PRODUCTS PAGE ---- */
.products-section {
  padding: 80px 0 100px;
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}
.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: border-color var(--transition), background var(--transition);
}
.product-card:hover {
  border-color: rgba(113,11,157,0.35);
  background: var(--bg-card-hover);
}
.product-card-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-card-tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-primary);
}
.product-card-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.3;
}
.product-card-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}
.product-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.product-features li {
  font-size: 13px;
  color: var(--text-secondary);
  padding-left: 16px;
  position: relative;
}
.product-features li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--accent-primary);
  font-size: 12px;
}
.product-cta {
  align-self: flex-start;
  margin-top: auto;
}
.product-support-banner {
  background: linear-gradient(135deg, rgba(113,11,157,0.12), rgba(113,11,157,0.04));
  border: 1px solid rgba(113,11,157,0.25);
  border-radius: var(--radius-lg);
  padding: 40px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.product-support-tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-primary);
  display: block;
  margin-bottom: 8px;
}
.product-support-text h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 6px;
}
.product-support-text p {
  font-size: 14px;
  color: var(--text-secondary);
}

/* ---- PROCESS PAGE ---- */
.process-section {
  padding: 80px 0 100px;
}
.process-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.process-step {
  display: grid;
  grid-template-columns: 48px 1fr 1fr;
  gap: 40px;
  align-items: center;
  padding: 60px 0;
}
.process-step.reverse {
  direction: rtl;
}
.process-step.reverse > * {
  direction: ltr;
}
.process-step-number {
  font-size: 13px;
  font-weight: 700;
  color: var(--accent-primary);
  letter-spacing: 0.05em;
  align-self: flex-start;
  padding-top: 6px;
}
.process-step-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-primary);
  margin-bottom: 12px;
}
.process-step-content h2 {
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 16px;
  line-height: 1.2;
}
.process-step-content p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 20px;
}
.process-deliverables {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.process-deliverables li {
  font-size: 13px;
  color: var(--text-secondary);
  padding-left: 16px;
  position: relative;
}
.process-deliverables li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent-primary);
  font-size: 12px;
  font-weight: 700;
}
.process-step-visual {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  min-height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.process-visual-inner {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.pv-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.pv-bar-list { display: flex; flex-direction: column; gap: 10px; }
.pv-bar-item { display: flex; align-items: center; gap: 10px; font-size: 12px; color: var(--text-secondary); }
.pv-bar-item span { width: 120px; flex-shrink: 0; }
.pv-bar { flex: 1; height: 6px; background: rgba(255,255,255,0.06); border-radius: 3px; overflow: hidden; }
.pv-bar-fill { height: 100%; background: var(--accent-primary); border-radius: 3px; }
.pv-flow { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.pv-node { font-size: 12px; font-weight: 500; color: var(--text-secondary); background: rgba(255,255,255,0.06); border: 1px solid var(--border); border-radius: 6px; padding: 6px 10px; }
.pv-node.active { color: var(--text-primary); border-color: rgba(113,11,157,0.5); background: rgba(113,11,157,0.1); }
.pv-arrow { color: var(--text-muted); font-size: 12px; }
.pv-stats { display: flex; gap: 24px; }
.pv-stat { display: flex; flex-direction: column; gap: 4px; }
.pv-stat-val { font-size: 24px; font-weight: 800; color: var(--text-primary); }
.pv-stat-lbl { font-size: 11px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.05em; }
.pv-timeline { display: flex; flex-direction: column; gap: 8px; }
.pv-tl-item { font-size: 13px; color: var(--text-muted); padding-left: 14px; position: relative; }
.pv-tl-item::before { content: '●'; position: absolute; left: 0; font-size: 8px; color: var(--text-muted); top: 3px; }
.pv-tl-item.done { color: var(--text-secondary); }
.pv-tl-item.done::before { color: var(--accent-primary); }
.pv-tl-item.active { color: var(--text-primary); font-weight: 600; }
.pv-tl-item.active::before { color: var(--accent-primary); }
.process-divider {
  height: 1px;
  background: var(--border);
}
.process-cta-block {
  text-align: center;
  padding: 64px 0 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.process-cta-block h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--text-primary);
}
.process-cta-block p {
  font-size: 15px;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

/* ---- ABOUT PAGE ---- */
.about-section {
  padding: 80px 0 100px;
}
.about-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-primary);
  margin-bottom: 16px;
}
.about-mission {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
  margin-bottom: 60px;
}
.about-mission-text h2 {
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.2;
  margin-bottom: 16px;
}
.about-mission-text p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
}
.about-mission-values {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.about-value {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.about-value-num {
  font-size: 11px;
  font-weight: 700;
  color: var(--accent-primary);
  letter-spacing: 0.05em;
  flex-shrink: 0;
  padding-top: 4px;
}
.about-value h4 {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 4px;
}
.about-value p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
}
.about-divider {
  height: 1px;
  background: var(--border);
  margin: 60px 0;
}
.about-why h2 {
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 32px;
  line-height: 1.2;
}
.about-why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 28px;
}
.about-why-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.about-why-icon { font-size: 28px; margin-bottom: 12px; }
.about-why-card h4 { font-size: 16px; font-weight: 600; color: var(--text-primary); margin-bottom: 8px; }
.about-why-card p { font-size: 13px; color: var(--text-secondary); line-height: 1.6; }
.about-why-conclusion {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.7;
  font-style: italic;
  border-left: 3px solid var(--accent-primary);
  padding-left: 20px;
}
.about-team h2 {
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
}
.about-team-subtitle {
  font-size: 15px;
  color: var(--text-secondary);
  margin-bottom: 32px;
}
.about-team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}
.about-team-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.about-team-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(113,11,157,0.2);
  border: 2px solid rgba(113,11,157,0.3);
  margin-bottom: 4px;
}
.about-team-card h4 { font-size: 16px; font-weight: 600; color: var(--text-primary); }
.about-team-card span { font-size: 12px; color: var(--accent-primary); font-weight: 500; }
.about-team-card p { font-size: 13px; color: var(--text-secondary); line-height: 1.6; margin-top: 4px; }

/* ===== FOOTER ===== */
.footer {
  border-top: 1px solid var(--border);
  padding: 60px 0 32px;
  background: var(--bg-secondary);
}

.footer-top {
  margin-bottom: 48px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 32px;
  margin-bottom: 48px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col-title {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.footer-col a {
  font-size: 14px;
  color: var(--text-secondary);
  transition: color var(--transition);
}

.footer-col a:hover {
  color: var(--text-primary);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.footer-bottom span {
  font-size: 13px;
  color: var(--text-muted);
}

.footer-legal {
  display: flex;
  gap: 20px;
}

.footer-legal a {
  font-size: 13px;
  color: var(--text-muted);
  transition: color var(--transition);
}

.footer-legal a:hover {
  color: var(--text-secondary);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
  }

  .hero-right {
    position: static;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 12px;
  }

  .hero-cta-btn {
    flex: 1;
    min-width: 240px;
  }

  .screenshots-grid {
    grid-template-columns: 160px 1fr 1fr 180px;
  }

  .platform-tabs {
    grid-template-columns: repeat(2, 1fr);
  }

  .teams-layout {
    grid-template-columns: 1fr;
  }

  .proof-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .nav-ctas .btn-ghost,
  .nav-ctas .btn-outline-white {
    display: none;
  }

  .hero {
    padding: 40px 0 0;
  }

  .hero-title {
    font-size: 38px;
  }

  .screenshots-grid {
    grid-template-columns: 1fr 1fr;
  }

  .screenshot-item.wide {
    grid-column: span 2;
  }

  .platform-tabs {
    grid-template-columns: 1fr;
  }

  .teams-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .proof-cards {
    grid-template-columns: 1fr 1fr;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .blog-grid {
    grid-template-columns: 1fr;
  }

  .cta-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-badges {
    flex-direction: column;
    text-align: center;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

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

  .govern-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .screenshots-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

::-webkit-scrollbar-track {
  background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.2);
}

/* ===== SELECTION ===== */
::selection {
  background: rgba(249, 115, 22, 0.3);
  color: var(--text-primary);
}
