/* ============================================================
   INTELENSE — DESIGN SYSTEM
   ============================================================ */

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'Inter', sans-serif; line-height: 1.6; overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; font-family: inherit; border: none; outline: none; background: none; }

/* ---------- SCROLLBAR ---------- */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: #ccc; border-radius: 3px; }

/* ============================================================
   TOKENS — LIGHT (default)
   ============================================================ */
:root {
  /* Backgrounds */
  --bg:          #FFFFFF;
  --bg-2:        #F8F9FA;
  --bg-3:        #F0F1F2;
  --bg-card:     #FFFFFF;
  --bg-card-2:   #F8F9FA;
  --bg-dark:     #0A0A0A;
  --bg-dark-2:   #111111;
  --bg-dark-card: #161616;

  /* Borders */
  --border:      rgba(0,0,0,0.07);
  --border-2:    rgba(0,0,0,0.13);
  --border-dark: rgba(255,255,255,0.08);

  /* Text */
  --text:        #0a0a0a;
  --text-2:      #555555;
  --text-3:      #909090;

  /* Accent — brand blue */
  --accent:      #0099FF;
  --accent-dark: #0077CC;
  --accent-glow: rgba(0,153,255,0.12);

  /* Ken module colors */
  --vision:   #0062ff;
  --safety:   #ff4d2e;
  --agri:     #2e7d32;
  --iot:      #6d28d9;
  --home:     #0284c7;
  --robotics: #475569;

  /* Logo/icon filters */
  --logo-filter: brightness(0);
  --logo-dark-filter: brightness(0) invert(1);

  /* Shape */
  --radius:      14px;
  --radius-lg:   20px;
  --radius-pill: 100px;
  --shadow-card: 0 2px 12px rgba(0,0,0,0.07), 0 0 0 1px rgba(0,0,0,0.05);
  --shadow-lg:   0 8px 32px rgba(0,0,0,0.1);
  --shadow-hover: 0 8px 28px rgba(0,0,0,0.12);
}

/* ============================================================
   TOKENS — DARK MODE
   ============================================================ */
[data-theme="dark"] {
  --bg:          #0A0A0A;
  --bg-2:        #111111;
  --bg-3:        #1A1A1A;
  --bg-card:     #141414;
  --bg-card-2:   #1C1C1C;
  --border:      rgba(255,255,255,0.08);
  --border-2:    rgba(255,255,255,0.14);
  --text:        #F2F2F2;
  --text-2:      #888888;
  --text-3:      #555555;
  --logo-filter: brightness(1);
  --logo-dark-filter: brightness(0) invert(1);
  --shadow-card: 0 4px 24px rgba(0,0,0,0.6);
  --shadow-hover: 0 8px 40px rgba(0,0,0,0.7);
}

body { background: var(--bg); color: var(--text); }

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

/* Gradient text */
.g-text {
  background: linear-gradient(135deg, #0062ff 0%, #0099FF 60%, #00c6ff 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.g-text-warm {
  background: linear-gradient(135deg, #ff4d2e, #ff9a00);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

/* Section label pill — Conicorn numbered style */
.pill {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 5px 14px 5px 10px;
  background: rgba(0,153,255,0.07);
  border: 1px solid rgba(0,153,255,0.18);
  border-radius: var(--radius-pill);
  font-size: 11px; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase;
  color: #0077CC;
  width: fit-content; margin-bottom: 20px;
}
[data-theme="dark"] .pill {
  background: rgba(0,153,255,0.1);
  border-color: rgba(0,153,255,0.25);
  color: #40bbff;
}
.pill-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--accent); flex-shrink: 0;
  animation: blink 2.4s ease-in-out infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.3} }

/* Headings */
.h1 { font-size: clamp(40px, 5.5vw, 72px); font-weight: 800; letter-spacing: -0.03em; line-height: 1.05; }
.h2 { font-size: clamp(26px, 3.5vw, 48px); font-weight: 700; letter-spacing: -0.025em; line-height: 1.1; }
.h3 { font-size: clamp(17px, 1.9vw, 26px); font-weight: 600; letter-spacing: -0.015em; line-height: 1.25; }
.lead { font-size: clamp(15px, 1.4vw, 17px); color: var(--text-2); line-height: 1.75; font-weight: 400; }

/* ============================================================
   BUTTONS — pill-shaped like Conicorn
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius-pill);
  font-size: 14px; font-weight: 600; letter-spacing: 0.01em;
  transition: all 0.22s cubic-bezier(0.4,0,0.2,1);
  position: relative; overflow: hidden; white-space: nowrap;
}
.btn svg { width: 14px; height: 14px; flex-shrink: 0; transition: transform 0.2s; }
.btn:hover svg { transform: translateX(3px); }

.btn-primary {
  background: #0099FF;
  color: #fff;
  box-shadow: 0 1px 4px rgba(0,153,255,0.25);
}
.btn-primary:hover { background: #0080d6; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(0,153,255,0.35); }

[data-theme="dark"] .btn-primary { background: #0099FF; color: #fff; }
[data-theme="dark"] .btn-primary:hover { background: #0080d6; }

.btn-ghost {
  border: 1.5px solid var(--border-2);
  color: var(--text-2);
  background: transparent;
}
.btn-ghost:hover { border-color: var(--text); color: var(--text); background: var(--bg-card); }

.btn-text { color: var(--text-2); padding: 0; font-size: 14px; }
.btn-text:hover { color: var(--text); gap: 12px; }

/* ============================================================
   SCROLL PROGRESS BAR
   ============================================================ */
#progress-bar {
  position: fixed; top: 0; left: 0; height: 2px; z-index: 9999;
  background: #0099FF;
  width: 0%; transition: width 0.1s linear;
}
[data-theme="dark"] #progress-bar { background: #0099FF; }

/* ============================================================
   NAVBAR — floating centered pill (Conicorn style)
   ============================================================ */
.nav {
  position: fixed; top: 18px; left: 0; right: 0; z-index: 1000;
  display: flex; justify-content: center; align-items: center;
  padding: 0 20px;
  pointer-events: none;
}
.nav-inner {
  pointer-events: all;
  display: flex; align-items: center; gap: 2px;
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: var(--radius-pill);
  padding: 6px 6px 6px 14px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.04);
  backdrop-filter: blur(20px) saturate(1.8);
  -webkit-backdrop-filter: blur(20px) saturate(1.8);
  max-width: 860px;
  width: 100%;
  height: 56px;
}
[data-theme="dark"] .nav-inner {
  background: rgba(20,20,20,0.92);
  border-color: rgba(255,255,255,0.09);
  box-shadow: 0 4px 24px rgba(0,0,0,0.5);
}

/* App switcher — pill icon button */
.app-switcher { position: relative; flex-shrink: 0; }
.app-switcher-btn {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--bg-card); border: 1px solid var(--border-2);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-2); cursor: pointer;
  transition: all 0.2s;
}
.app-switcher-btn:hover, .app-switcher-btn.open {
  background: #111; color: #fff; border-color: #111;
}
[data-theme="dark"] .app-switcher-btn:hover,
[data-theme="dark"] .app-switcher-btn.open {
  background: #fff; color: #111; border-color: #fff;
}
.app-switcher-btn svg { width: 15px; height: 15px; }

/* App panel */
.app-panel {
  position: absolute; top: calc(100% + 12px); left: 0;
  width: 300px;
  background: var(--bg-2); border: 1px solid var(--border-2);
  border-radius: 20px; padding: 12px;
  opacity: 0; pointer-events: none;
  transform: translateY(6px);
  transition: all 0.22s cubic-bezier(0.4,0,0.2,1);
  box-shadow: var(--shadow-lg);
  z-index: 2000;
}
.app-panel.open { opacity: 1; pointer-events: all; transform: translateY(0); }
.app-panel-title {
  font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text-3); padding: 4px 6px 10px; border-bottom: 1px solid var(--border);
  margin-bottom: 10px;
}
.app-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px; }
.app-tile {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 6px; padding: 12px 8px; border-radius: 14px;
  border: 1px solid transparent; text-align: center; cursor: pointer;
  transition: all 0.2s; text-decoration: none; background: var(--bg-card);
}
.app-tile:hover { border-color: var(--border-2); transform: translateY(-2px); }
.app-tile-logo { height: 26px; object-fit: contain; }
.app-tile-name { font-size: 11px; font-weight: 700; color: var(--text); }
.app-tile-desc { font-size: 10px; color: var(--text-3); }
.app-panel-footer {
  margin-top: 10px; padding-top: 10px; border-top: 1px solid var(--border);
  font-size: 11px; color: var(--text-3); text-align: center;
  display: flex; align-items: center; justify-content: center; gap: 5px;
}
.app-panel-footer img { height: 13px; filter: var(--logo-filter); opacity: 0.5; }

/* Logo */
.nav-logo { display: flex; align-items: center; flex-shrink: 0; margin: 0 4px; }
.nav-logo img { height: 22px; filter: var(--logo-filter); transition: opacity 0.2s; }

/* Links */
.nav-links { display: flex; align-items: center; gap: 0; flex: 1; justify-content: center; }
.nav-item { position: relative; }
.nav-link {
  display: flex; align-items: center; gap: 4px;
  padding: 7px 12px; border-radius: var(--radius-pill);
  font-size: 13.5px; font-weight: 500; color: var(--text-2);
  transition: all 0.18s;
}
.nav-link svg { width: 12px; height: 12px; transition: transform 0.2s; flex-shrink: 0; }
.nav-link:hover, .nav-item:hover > .nav-link { color: var(--text); background: var(--border); }
.nav-item:hover > .nav-link svg { transform: rotate(180deg); }

/* Dropdown */
.nav-drop {
  position: absolute; top: 100%; left: 50%;
  transform: translateX(-50%) translateY(4px);
  min-width: 230px;
  background: var(--bg-2); border: 1px solid var(--border-2);
  border-radius: 20px;
  padding: 10px 6px 6px;
  opacity: 0; pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease;
  box-shadow: var(--shadow-lg);
  z-index: 1001;
}
.nav-drop::before {
  content: ''; position: absolute;
  top: -14px; left: 0; right: 0; height: 14px;
}
.nav-item:hover .nav-drop {
  opacity: 1; pointer-events: all; transform: translateX(-50%) translateY(0);
}
.drop-item {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 10px; border-radius: 12px;
  transition: background 0.15s; cursor: pointer; text-decoration: none;
}
.drop-item:hover { background: var(--bg-card); }
.drop-icon {
  width: 32px; height: 32px; border-radius: 10px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: var(--bg-3);
}
.drop-icon img { height: 18px; filter: var(--logo-filter); }
.drop-icon svg { color: var(--text-2); }
.drop-label { font-size: 13px; font-weight: 600; color: var(--text); line-height: 1.2; }
.drop-sub { font-size: 11px; color: var(--text-3); margin-top: 1px; }

/* Nav right */
.nav-right { display: flex; align-items: center; gap: 6px; flex-shrink: 0; }

/* Theme toggle */
.theme-btn {
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--bg-card); border: 1px solid var(--border-2);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-2); transition: all 0.2s;
}
.theme-btn:hover { color: var(--text); background: var(--bg-3); }
.theme-btn svg { width: 15px; height: 15px; }
.icon-moon { display: block; }
.icon-sun  { display: none; }
[data-theme="dark"] .icon-moon { display: none; }
[data-theme="dark"] .icon-sun  { display: block; }

/* Hamburger */
.burger { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.burger span { display: block; width: 20px; height: 2px; background: var(--text); border-radius: 2px; transition: all 0.3s; }
.burger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.burger.open span:nth-child(2) { opacity: 0; transform: translateX(-8px); }
.burger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* Mobile menu */
.mobile-nav {
  position: fixed; top: 0; left: 0; right: 0; bottom: 0; z-index: 997;
  background: var(--bg); padding: 90px 32px 32px;
  overflow-y: auto;
  transform: translateX(110%); transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
}
.mobile-nav.open { transform: translateX(0); }
.mob-link {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 0; font-size: 20px; font-weight: 700;
  border-bottom: 1px solid var(--border); color: var(--text);
}
.mob-link:hover { color: var(--accent); }
.mob-actions { display: flex; flex-direction: column; gap: 12px; margin-top: 28px; }
.mob-actions .btn { width: 100%; justify-content: center; padding: 14px; font-size: 16px; }

/* ============================================================
   HERO — light section with grid
   ============================================================ */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  padding: 120px 32px 100px;
  position: relative; overflow: hidden;
  background: var(--bg);
}

/* Grid/checked line pattern */
.hero::before {
  content: '';
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(0,0,0,0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,0.055) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse at 60% 40%, black 20%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at 60% 40%, black 20%, transparent 75%);
}

#hero-canvas {
  position: absolute; inset: 0; z-index: 0;
  pointer-events: none; opacity: 0.45;
}

/* Noise overlay */
.hero::after {
  content: '';
  position: absolute; inset: 0; z-index: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
}

.orb {
  position: absolute; border-radius: 50%;
  pointer-events: none; z-index: 0; filter: blur(100px);
}
.orb-1 {
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(0,153,255,0.08) 0%, transparent 70%);
  top: -250px; left: -200px;
  animation: drift1 16s ease-in-out infinite;
}
.orb-2 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(0,100,255,0.05) 0%, transparent 70%);
  bottom: -150px; right: -150px;
  animation: drift2 20s ease-in-out infinite;
}
.orb-3 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(0,198,255,0.05) 0%, transparent 70%);
  top: 40%; left: 45%;
  animation: drift3 12s ease-in-out infinite;
}
@keyframes drift1 { 0%,100%{transform:translate(0,0)} 33%{transform:translate(40px,30px)} 66%{transform:translate(-20px,20px)} }
@keyframes drift2 { 0%,100%{transform:translate(0,0)} 50%{transform:translate(-30px,-25px)} }
@keyframes drift3 { 0%,100%{transform:translate(0,0)} 50%{transform:translate(20px,-15px)} }

.hero-inner {
  max-width: 1200px; margin: 0 auto; width: 100%; position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center;
}
.hero-centered {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; max-width: 760px;
}
.hero-centered .hero-eyebrow { justify-content: center; }
.hero-centered .hero-desc { max-width: 560px; margin-left: auto; margin-right: auto; }
.hero-centered .hero-actions { justify-content: center; }
.hero-centered .hero-stats { width: 100%; }

/* Hero text — light theme */
.hero .lead { color: var(--text-2); }
.hero .eyebrow-text { color: var(--text-3); }
.hero .pill { background: var(--bg-card); border-color: var(--border-2); color: var(--text-2); }
.hero .pill-dot { background: #6366f1; }
.hero .hs-label { color: var(--text-3); }
.hero .hero-stat { background: var(--bg-card); }
.hero .hero-stat:hover { background: var(--bg-card-2); }
.hero .hero-stats { border-color: var(--border-2); }
.hero .hero-stat + .hero-stat { border-color: var(--border-2); }
.hero .btn-primary { background: #111; color: #F0F0EE; }
.hero .btn-primary:hover { background: #222; box-shadow: 0 8px 28px rgba(0,0,0,0.2); }
.hero .btn-ghost { border-color: var(--border-2); color: var(--text-2); }
.hero .btn-ghost:hover { border-color: var(--text); color: var(--text); background: var(--bg-card); }

/* Hero — dark mode overrides: restore dark hero */
[data-theme="dark"] .hero { background: var(--bg-dark); }
[data-theme="dark"] .hero::before {
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
}
[data-theme="dark"] .hero .lead { color: rgba(240,240,238,0.58); }
[data-theme="dark"] .hero .eyebrow-text { color: rgba(240,240,238,0.5); }
[data-theme="dark"] .hero .pill { background: rgba(255,255,255,0.07); border-color: rgba(255,255,255,0.12); color: rgba(240,240,238,0.55); }
[data-theme="dark"] .hero .hs-label { color: rgba(240,240,238,0.4); }
[data-theme="dark"] .hero .hero-stat { background: rgba(255,255,255,0.04); }
[data-theme="dark"] .hero .hero-stat:hover { background: rgba(255,255,255,0.07); }
[data-theme="dark"] .hero .hero-stats { border-color: rgba(255,255,255,0.1); }
[data-theme="dark"] .hero .hero-stat + .hero-stat { border-color: rgba(255,255,255,0.1); }
[data-theme="dark"] .hero .btn-primary { background: color: #fff; }
[data-theme="dark"] .hero .btn-primary:hover { background: #fff; box-shadow: 0 8px 28px rgba(255,255,255,0.2); }
[data-theme="dark"] .hero .btn-ghost { border-color: rgba(255,255,255,0.2); color: rgba(240,240,238,0.7); }
[data-theme="dark"] .hero .btn-ghost:hover { border-color: rgba(255,255,255,0.5); color: #fff; background: rgba(255,255,255,0.06); }
[data-theme="dark"] .orb-1 { background: radial-gradient(circle, rgba(0,153,255,0.18) 0%, transparent 70%); }
[data-theme="dark"] .orb-2 { background: radial-gradient(circle, rgba(0,100,255,0.12) 0%, transparent 70%); }
[data-theme="dark"] .orb-3 { background: radial-gradient(circle, rgba(0,198,255,0.1) 0%, transparent 70%); }

/* Content side */
.hero-eyebrow { display: flex; align-items: center; gap: 10px; margin-bottom: 24px; }
.eyebrow-text { font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; }
.eyebrow-divider { flex: 1; height: 1px; background: var(--border-2); max-width: 40px; }
[data-theme="dark"] .eyebrow-divider { background: rgba(255,255,255,0.15); }

.hero-title { margin-bottom: 24px; }
.hero-title .line { display: block; overflow: hidden; }
.hero-title .line span {
  display: block;
  animation: slideUp 0.7s cubic-bezier(0.4,0,0.2,1) both;
}
.hero-title .line:nth-child(1) span { animation-delay: 0.1s; }
.hero-title .line:nth-child(2) span { animation-delay: 0.22s; }
.hero-title .line:nth-child(3) span { animation-delay: 0.34s; }
@keyframes slideUp { from{transform:translateY(100%);opacity:0} to{transform:translateY(0);opacity:1} }

.hero-desc { margin-bottom: 36px; max-width: 480px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 56px; }

/* Stat strip */
.hero-stats {
  display: flex; gap: 0;
  border: 1px solid var(--border-2);
  border-radius: 20px; overflow: hidden;
}
.hero-stat {
  flex: 1; padding: 18px 20px; position: relative;
  background: var(--bg-card);
  transition: background 0.2s;
}
.hero-stat:hover { background: var(--bg-card-2); }
.hero-stat + .hero-stat { border-left: 1px solid var(--border-2); }
.hs-val {
  font-size: 26px; font-weight: 900; letter-spacing: -0.03em;
  line-height: 1; margin-bottom: 4px; color: var(--text);
}
[data-theme="dark"] .hero-stats { border-color: rgba(255,255,255,0.1); }
[data-theme="dark"] .hero-stat { background: rgba(255,255,255,0.04); }
[data-theme="dark"] .hero-stat:hover { background: rgba(255,255,255,0.08); }
[data-theme="dark"] .hero-stat + .hero-stat { border-left-color: rgba(255,255,255,0.1); }
[data-theme="dark"] .hs-val { color: #F0F0EE; }
.hs-label { font-size: 11px; font-weight: 500; }

/* Hero visual — vision demo card keeps dark theme */
.hero-visual { position: relative; display: flex; align-items: center; justify-content: center; }

.vision-demo {
  width: 100%; max-width: 460px;
  background: #0f0f1e; border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px; overflow: hidden;
  box-shadow: 0 24px 80px rgba(0,0,0,0.7);
}
.vd-topbar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 16px; border-bottom: 1px solid rgba(255,255,255,0.07);
  background: #0d0d1a;
}
.vd-dots { display: flex; gap: 6px; }
.vd-dot { width: 10px; height: 10px; border-radius: 50%; }
.vd-dot:nth-child(1) { background: #ff5f57; }
.vd-dot:nth-child(2) { background: #fbbf24; }
.vd-dot:nth-child(3) { background: #34d399; }
.vd-title { font-size: 11px; font-weight: 600; color: rgba(255,255,255,0.4); letter-spacing: 0.05em; text-transform: uppercase; }
.vd-badge { display: flex; align-items: center; gap: 5px; font-size: 11px; font-weight: 600; color: #34d399; }
.vd-badge-dot { width: 6px; height: 6px; border-radius: 50%; background: #34d399; animation: blink 1.2s infinite; }

.vd-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; padding: 2px; background: #080810; }
.vd-cam { aspect-ratio: 4/3; background: #111120; position: relative; overflow: hidden; display: flex; align-items: center; justify-content: center; }
.vd-cam-label { position: absolute; bottom: 6px; left: 8px; font-size: 9px; font-family: 'DM Mono', monospace; color: rgba(255,255,255,0.4); font-weight: 500; }

.scan-line {
  position: absolute; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, rgba(99,102,241,0.8), transparent);
  animation: scan 3s ease-in-out infinite;
}
.vd-cam:nth-child(2) .scan-line { animation-delay: -1s; }
.vd-cam:nth-child(3) .scan-line { animation-delay: -2s; }
.vd-cam:nth-child(4) .scan-line { animation-delay: -0.5s; }
@keyframes scan { 0%{top:0;opacity:0} 10%{opacity:1} 90%{opacity:1} 100%{top:100%;opacity:0} }

.det-box {
  position: absolute; border: 1.5px solid;
  border-radius: 3px; animation: detpop 4s ease-in-out infinite;
}
.det-box::after {
  content: attr(data-label);
  position: absolute; top: -18px; left: -1px;
  font-size: 8px; font-weight: 700; font-family: 'DM Mono', monospace;
  padding: 1px 5px; border-radius: 3px; white-space: nowrap; color: #fff;
}
.db-person { border-color: #22d3ee; top:20%; left:15%; width:40%; height:55%; }
.db-person::after { background: #22d3ee; }
.db-vehicle { border-color: #f97316; top:25%; left:10%; width:70%; height:50%; animation-delay:-1.5s; }
.db-vehicle::after { background: #f97316; }
.db-zone { border-color: #a855f7; top:10%; left:5%; width:88%; height:78%; animation-delay:-0.8s; }
.db-zone::after { background: #a855f7; }
.db-item { border-color: #34d399; top:30%; left:30%; width:38%; height:38%; animation-delay:-2s; }
.db-item::after { background: #34d399; }
@keyframes detpop { 0%{opacity:0;transform:scale(0.9)} 10%{opacity:1;transform:scale(1)} 80%{opacity:1} 100%{opacity:0.2} }

.cam-shapes { position: absolute; inset: 0; }
.cam-shape { position: absolute; border-radius: 2px; background: rgba(255,255,255,0.06); }

.vd-infobar {
  padding: 10px 14px; display: flex; gap: 8px; overflow-x: auto; scrollbar-width: none;
  background: #0d0d1a;
}
.vd-infobar::-webkit-scrollbar { display: none; }
.vd-chip {
  flex-shrink: 0; display: flex; align-items: center; gap: 6px;
  padding: 4px 10px; border-radius: 100px; border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.06); font-size: 11px; font-weight: 600; color: rgba(255,255,255,0.6);
}
.vd-chip-dot { width: 5px; height: 5px; border-radius: 50%; }
.vd-chip-val { color: #F0F0EE; }

/* Floating widgets */
.hero-widget {
  position: absolute;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px; padding: 12px 16px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
  display: flex; align-items: center; gap: 10px;
  backdrop-filter: blur(12px);
}
.hw-1 { bottom: -20px; left: -50px; animation: bob 7s ease-in-out infinite; }
.hw-2 { top: -16px; right: -40px; animation: bob2 9s ease-in-out infinite; }
@keyframes bob { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-10px)} }
@keyframes bob2 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(8px)} }
.hw-icon { width: 36px; height: 36px; border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.hw-label { font-size: 11px; color: rgba(255,255,255,0.45); }
.hw-value { font-size: 15px; font-weight: 700; color: #F0F0EE; margin-top: 1px; }

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee-wrap {
  padding: 20px 0;
  border-top: 1px solid var(--border-2);
  border-bottom: 1px solid var(--border-2);
  overflow: hidden; position: relative;
  background: var(--bg-2);
}
.marquee-wrap::before, .marquee-wrap::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 120px; z-index: 1; pointer-events: none;
}
.marquee-wrap::before { left: 0; background: linear-gradient(90deg, var(--bg-2), transparent); }
.marquee-wrap::after  { right: 0; background: linear-gradient(-90deg, var(--bg-2), transparent); }
.marquee-track { display: flex; animation: mq 30s linear infinite; width: max-content; }
.marquee-track:hover { animation-play-state: paused; }
@keyframes mq { from{transform:translateX(0)} to{transform:translateX(-50%)} }
.mq-item {
  display: flex; align-items: center; gap: 8px;
  padding: 0 36px; font-size: 13px; font-weight: 600;
  color: var(--text-3); white-space: nowrap; transition: color 0.2s;
}
.mq-item:hover { color: var(--text-2); }
.mq-sep { width: 3px; height: 3px; border-radius: 50%; background: var(--text-3); flex-shrink: 0; opacity: 0.4; }
.mq-badge {
  padding: 2px 8px; border-radius: 100px;
  font-size: 10px; font-weight: 700; letter-spacing: 0.05em;
  background: var(--bg-card); color: var(--text-3); border: 1px solid var(--border-2);
}

/* ============================================================
   SECTIONS
   ============================================================ */
.section { padding: 120px 32px; }
.section-alt { background: var(--bg-2); }
.section-head { margin-bottom: 72px; }
.section-head.center { text-align: center; }
.section-head.center .pill { margin: 0 auto 20px; }
.section-head.center .lead { margin: 0 auto; }

/* ============================================================
   PRODUCTS GRID — Conicorn card style
   ============================================================ */
.products-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px;
}

.prod-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 26px 26px 22px;
  position: relative; overflow: hidden;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
  display: flex; flex-direction: column; cursor: pointer;
  text-decoration: none; color: inherit;
}
.prod-card:hover { transform: translateY(-4px); border-color: var(--border-2); box-shadow: var(--shadow-lg); }

/* Icon area — Conicorn dark inner style */
.prod-logo-wrap {
  height: 72px; width: 72px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 20px; margin-bottom: 20px;
  background: #1A1A1A;
  background-image: radial-gradient(rgba(255,255,255,0.07) 1px, transparent 1px);
  background-size: 14px 14px;
  box-shadow: inset 0 0 40px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.05);
  position: relative; overflow: hidden;
}
.prod-logo-wrap::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 40% 30%, rgba(255,255,255,0.12) 0%, transparent 65%);
}
.prod-logo { height: 32px; position: relative; z-index: 1; filter: brightness(10) invert(0); }

.prod-desc { font-size: 14px; color: var(--text-2); line-height: 1.65; margin-bottom: 20px; flex: 1; }

.prod-features { display: flex; flex-direction: column; gap: 7px; margin-bottom: 22px; }
.prod-feat {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--text-2);
}
.prod-feat-bullet {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--prod-color); flex-shrink: 0;
}

.prod-footer {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 16px; border-top: 1px solid var(--border);
}
.prod-status {
  font-size: 10px; font-weight: 700; letter-spacing: 0.07em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 100px;
}
.status-live     { background: rgba(34,197,94,0.12); color: #16a34a; }
.status-beta     { background: rgba(251,146,60,0.12); color: #ea580c; }
.status-soon     { background: rgba(99,102,241,0.12); color: #6366f1; }
.prod-arrow {
  display: flex; align-items: center; gap: 5px;
  font-size: 13px; font-weight: 600; color: var(--text-3);
  transition: color 0.2s, gap 0.2s;
}
.prod-arrow svg { width: 14px; height: 14px; }
.prod-card:hover .prod-arrow { color: var(--text); gap: 8px; }

/* Per-product colors */
.prod-vision   { --prod-color: #1a3eff; }
.prod-safety   { --prod-color: #ff6b4a; }
.prod-agri     { --prod-color: #3d7a30; }
.prod-iot      { --prod-color: #7c3aed; }
.prod-home     { --prod-color: #5ba3c9; }
.prod-robotics { --prod-color: #64748b; }

/* ============================================================
   STATS BAND
   ============================================================ */
.stats-band {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--border-2);
  border-radius: var(--radius-lg); overflow: hidden;
  background: var(--bg-card);
}
.stat-block {
  padding: 44px 36px; position: relative;
  transition: background 0.2s;
}
.stat-block:hover { background: var(--bg-card-2); }
.stat-block + .stat-block { border-left: 1px solid var(--border-2); }
.sb-number {
  font-size: 54px; font-weight: 900; letter-spacing: -0.04em;
  line-height: 1; margin-bottom: 8px; color: var(--text);
}
.sb-title { font-size: 15px; font-weight: 700; margin-bottom: 6px; color: var(--text); }
.sb-desc { font-size: 13px; color: var(--text-3); line-height: 1.6; }

.sb-chart { display: flex; align-items: flex-end; gap: 3px; height: 24px; margin-top: 16px; opacity: 0.4; }
.sb-bar {
  flex: 1; border-radius: 2px; background: var(--text);
  animation: barUp 1.5s cubic-bezier(0.4,0,0.2,1) both;
}
.sb-bar:nth-child(1){height:40%;animation-delay:.1s}
.sb-bar:nth-child(2){height:65%;animation-delay:.15s}
.sb-bar:nth-child(3){height:50%;animation-delay:.2s}
.sb-bar:nth-child(4){height:80%;animation-delay:.25s}
.sb-bar:nth-child(5){height:60%;animation-delay:.3s}
.sb-bar:nth-child(6){height:90%;animation-delay:.35s}
.sb-bar:nth-child(7){height:75%;animation-delay:.4s}
.sb-bar:nth-child(8){height:100%;animation-delay:.45s}
@keyframes barUp { from{height:0} }

/* ============================================================
   PLATFORM — KEN360
   ============================================================ */
.platform-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }

.mod-list { display: flex; flex-direction: column; gap: 8px; }
.mod-row {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 18px; border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg-card);
  transition: all 0.25s; cursor: pointer;
}
.mod-row:hover { border-color: var(--border-2); background: var(--bg-card-2); transform: translateX(4px); }
.mod-logo-sm { height: 22px; filter: var(--logo-filter); }
.mod-name { font-size: 14px; font-weight: 700; flex: 1; color: var(--text); }
.mod-tag {
  font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em;
  padding: 3px 8px; border-radius: 100px;
}
.tag-live { background: rgba(34,197,94,0.12); color: #16a34a; }
.tag-beta { background: rgba(251,146,60,0.12); color: #ea580c; }
.tag-soon { background: rgba(99,102,241,0.12); color: #6366f1; }

.platform-feat-list { display: flex; flex-direction: column; gap: 28px; margin-top: 36px; }
.pf { display: flex; gap: 16px; }
.pf-num {
  width: 36px; height: 36px; border-radius: 10px;
  background: var(--bg-card); border: 1px solid var(--border-2);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 900; color: var(--text);
  flex-shrink: 0;
}
.pf-title { font-size: 15px; font-weight: 700; margin-bottom: 5px; color: var(--text); }
.pf-desc { font-size: 13.5px; color: var(--text-2); line-height: 1.65; }

/* ============================================================
   USE CASES
   ============================================================ */
.usecase-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.uc-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: all 0.3s; cursor: pointer;
}
.uc-card:hover { transform: translateY(-4px); border-color: var(--border-2); box-shadow: var(--shadow-lg); }
.uc-top {
  height: 130px; position: relative;
  display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.uc-bg { position: absolute; inset: 0; }
.uc-icon-big {
  width: 60px; height: 60px; border-radius: 18px;
  display: flex; align-items: center; justify-content: center;
  position: relative; z-index: 1;
  background: #1A1A1A;
  background-image: radial-gradient(rgba(255,255,255,0.08) 1px, transparent 1px);
  background-size: 12px 12px;
  box-shadow: inset 0 0 30px rgba(0,0,0,0.5);
}
.uc-icon-big svg { width: 28px; height: 28px; }
.uc-body { padding: 20px 20px 18px; }
.uc-tag-pill {
  display: inline-block; padding: 3px 10px; border-radius: 100px;
  font-size: 10px; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase;
  margin-bottom: 10px;
}
.uc-title { font-size: 16px; font-weight: 700; margin-bottom: 8px; color: var(--text); }
.uc-desc { font-size: 13px; color: var(--text-2); line-height: 1.6; margin-bottom: 16px; }
.uc-metrics { display: flex; gap: 24px; padding-top: 12px; border-top: 1px solid var(--border); }
.ucm-val { font-size: 22px; font-weight: 900; letter-spacing: -0.02em; line-height: 1; margin-bottom: 3px; color: var(--text); }
.ucm-lab { font-size: 11px; color: var(--text-3); }

/* ============================================================
   KEN360 BAND
   ============================================================ */
.ken360-band {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 72px 32px;
}
.ken360-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
}
.ken360-left .lead { color: var(--text-2); max-width: 440px; }
.ken360-modules {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px;
}
.km-item {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 16px; padding: 16px 12px;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  transition: border-color 0.2s, transform 0.2s;
}
.km-item:hover { border-color: var(--kc, var(--border-2)); transform: translateY(-2px); }
.km-item img { height: 28px; object-fit: contain; }
.km-item span { font-size: 11px; font-weight: 700; color: var(--text-2); text-align: center; }

/* ============================================================
   FEATURE ROWS (TangoEye style)
   ============================================================ */
.feat-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
  padding: 64px 0; border-bottom: 1px solid var(--border);
}
.feat-row:last-child { border-bottom: none; }
.feat-row-reverse { direction: rtl; }
.feat-row-reverse > * { direction: ltr; }

.feat-logo { height: 32px; object-fit: contain; margin-bottom: 16px; }
.feat-title { font-size: clamp(22px, 2.5vw, 30px); font-weight: 800; color: var(--text); margin-bottom: 10px; line-height: 1.2; }
.feat-tagline { font-size: 15px; color: var(--text-2); line-height: 1.6; margin-bottom: 24px; max-width: 400px; }
.feat-list {
  list-style: none; margin-bottom: 32px;
  display: flex; flex-direction: column; gap: 10px;
}
.feat-list li {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; font-weight: 500; color: var(--text);
}
.feat-list li::before {
  content: '';
  width: 18px; height: 18px; flex-shrink: 0; border-radius: 50%;
  background: rgba(99,102,241,0.12);
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='20 6 9 17 4 12' fill='none' stroke='%236366f1' stroke-width='2.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-size: 11px; background-repeat: no-repeat; background-position: center;
}
.feat-actions { display: flex; gap: 10px; flex-wrap: wrap; }

/* ============================================================
   VIDEO PLACEHOLDER
   ============================================================ */
.vid-placeholder {
  width: 100%; aspect-ratio: 16/9; max-height: 520px;
  background: var(--bg-card);
  border: 2px dashed var(--border-2);
  border-radius: var(--radius-lg);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 14px; cursor: pointer; transition: border-color 0.2s, background 0.2s;
}
.vid-placeholder:hover { border-color: #6366f1; background: var(--bg-3); }
.vid-play-icon {
  width: 68px; height: 68px; border-radius: 50%;
  background: #6366f1; color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(99,102,241,0.3);
  transition: transform 0.2s, box-shadow 0.2s;
}
.vid-placeholder:hover .vid-play-icon { transform: scale(1.08); box-shadow: 0 12px 32px rgba(99,102,241,0.4); }
.vid-play-icon svg { margin-left: 4px; }
.vid-placeholder-label { font-size: 16px; font-weight: 700; color: var(--text); }
.vid-placeholder-hint { font-size: 13px; color: var(--text-3); text-align: center; max-width: 400px; line-height: 1.6; padding: 0 20px; }
.vid-sm { aspect-ratio: 16/9; max-height: 340px; }

/* ============================================================
   SECTORS
   ============================================================ */
.sectors-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px;
  margin-top: 48px;
}
.sector-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 28px 24px;
  display: flex; flex-direction: column; gap: 12px;
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
}
.sector-card:hover { transform: translateY(-3px); border-color: var(--sc, var(--border-2)); box-shadow: var(--shadow-card); }
.sc-icon {
  width: 48px; height: 48px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
}
.sc-icon svg { width: 22px; height: 22px; }
.sc-name { font-size: 16px; font-weight: 700; color: var(--text); }
.sc-stat { font-size: 13px; color: var(--text-3); font-weight: 500; }

/* ============================================================
   BENEFITS
   ============================================================ */
.benefits-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px;
  margin-top: 48px;
}
.benefit-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 28px 24px;
  display: flex; flex-direction: column; gap: 12px;
}
.benefit-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: rgba(99,102,241,0.10);
  display: flex; align-items: center; justify-content: center;
}
.benefit-title { font-size: 15px; font-weight: 700; color: var(--text); line-height: 1.3; }
.benefit-desc { font-size: 13px; color: var(--text-2); line-height: 1.6; }

/* ============================================================
   PARTNERS
   ============================================================ */
.partners-strip { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-top: 44px; }
.partner-chip {
  display: flex; align-items: center; gap: 9px;
  padding: 10px 18px; border-radius: var(--radius-pill);
  border: 1px solid var(--border-2); background: var(--bg-card);
  font-size: 13px; font-weight: 600; color: var(--text-2);
  transition: all 0.22s;
}
.partner-chip:hover { color: var(--text); border-color: var(--text); background: var(--bg-3); }
.pchip-icon { width: 24px; height: 24px; border-radius: 6px; background: var(--bg-3); display: flex; align-items: center; justify-content: center; }
.pchip-icon svg { width: 13px; height: 13px; color: var(--text-2); }

/* ============================================================
   TEAM SECTION
   ============================================================ */

/* Founder card */
.team-card-founder {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 32px 40px 28px;
  display: flex; flex-direction: column; align-items: center;
  gap: 10px; text-align: center; min-width: 220px;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.team-card-founder:hover { border-color: var(--accent); box-shadow: 0 4px 24px rgba(99,102,241,0.08); }
.team-photo-placeholder { display: flex; align-items: center; justify-content: center; border-radius: 50%; background: var(--bg-2); border: 2px dashed var(--border-2); color: var(--text-3); }
.team-photo-lg { width: 96px; height: 96px; }
.team-name { font-size: 1rem; font-weight: 600; color: var(--text); }
.team-title { font-size: 0.82rem; font-weight: 500; color: var(--accent); }
.team-role { font-size: 0.74rem; color: var(--text-3); border: 1px dashed var(--border-2); border-radius: 6px; padding: 3px 10px; }

/* Team members — compact row */
.team-grid-sm {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}
.team-card-sm {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 12px; padding: 16px 12px 14px;
  display: flex; flex-direction: column; align-items: center;
  gap: 7px; text-align: center;
  transition: border-color 0.2s;
}
.team-card-sm:hover { border-color: var(--accent); }
.team-photo-sm { width: 52px; height: 52px; border-radius: 50%; background: var(--bg-2); border: 2px dashed var(--border-2); display: flex; align-items: center; justify-content: center; color: var(--text-3); }
.team-sm-name { font-size: 0.8rem; font-weight: 600; color: var(--text); }
.team-sm-title { font-size: 0.72rem; color: var(--text-3); }

/* Advisors row */
.team-grid-advisors {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.team-card-advisor {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 12px; padding: 18px 14px 16px;
  display: flex; flex-direction: column; align-items: center;
  gap: 8px; text-align: center;
  transition: border-color 0.2s;
}
.team-card-advisor:hover { border-color: var(--accent); }

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  padding: 140px 32px;
  position: relative; overflow: hidden;
  text-align: center;
  background: var(--bg-dark);
  color: #F0F0EE;
}
.cta-section .h2 { color: #F0F0EE; }
.cta-section .lead { color: rgba(240,240,238,0.55); }
.cta-orb {
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse at 50% 60%, rgba(124,58,237,0.16) 0%, transparent 65%);
}
.cta-grid-lines {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse at center, black 20%, transparent 75%);
  pointer-events: none;
}
.cta-inner { position: relative; z-index: 1; max-width: 680px; margin: 0 auto; }
.cta-title { margin-bottom: 20px; }
.cta-desc { margin-bottom: 40px; }
.cta-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 36px; }
.cta-perks { display: flex; gap: 28px; justify-content: center; flex-wrap: wrap; }
.cta-perk { display: flex; align-items: center; gap: 7px; font-size: 13px; color: rgba(240,240,238,0.45); }
.cta-perk svg { width: 15px; height: 15px; color: #22c55e; flex-shrink: 0; }
.cta-section .btn-primary { background: color: #fff; }
.cta-section .btn-primary:hover { background: #fff; box-shadow: 0 8px 28px rgba(255,255,255,0.2); }
.cta-section .btn-ghost { border-color: rgba(255,255,255,0.2); color: rgba(240,240,238,0.7); }
.cta-section .btn-ghost:hover { border-color: rgba(255,255,255,0.5); color: #fff; background: rgba(255,255,255,0.06); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--bg-dark); color: rgba(240,240,238,0.65);
  padding: 80px 32px 36px;
  border-top: 1px solid rgba(255,255,255,0.07);
}
.footer-top {
  display: grid; grid-template-columns: 260px 1fr;
  gap: 80px; margin-bottom: 64px;
}
.footer-brand-logo { height: 26px; margin-bottom: 16px; filter: brightness(10) invert(0); }
.footer-tagline { font-size: 13px; color: rgba(240,240,238,0.4); line-height: 1.65; margin-bottom: 22px; max-width: 210px; }
.footer-social { display: flex; gap: 8px; }
.social-link {
  width: 34px; height: 34px; border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.1); background: rgba(255,255,255,0.04);
  display: flex; align-items: center; justify-content: center;
  color: rgba(240,240,238,0.4); transition: all 0.2s;
}
.social-link:hover { color: #F0F0EE; border-color: rgba(255,255,255,0.3); background: rgba(255,255,255,0.08); }
.social-link svg { width: 15px; height: 15px; }

.footer-cols { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.fc-title { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(240,240,238,0.55); margin-bottom: 16px; }
.fc-link { display: block; font-size: 13px; color: rgba(240,240,238,0.38); padding: 4px 0; transition: color 0.18s; }
.fc-link:hover { color: #F0F0EE; }

.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 28px; border-top: 1px solid rgba(255,255,255,0.07);
  font-size: 12px; color: rgba(240,240,238,0.3); flex-wrap: wrap; gap: 10px;
}
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { color: rgba(240,240,238,0.3); transition: color 0.18s; }
.footer-legal a:hover { color: #F0F0EE; }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal.d1 { transition-delay: 0.08s; }
.reveal.d2 { transition-delay: 0.16s; }
.reveal.d3 { transition-delay: 0.24s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .nav-links { display: none; }
  .burger { display: flex; }
  .hero-stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0; }
  .sectors-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid-sm { grid-template-columns: repeat(3, 1fr); }
  .team-grid-advisors { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr; gap: 40px; }
  .footer-cols { grid-template-columns: repeat(2, 1fr); }
  .ken360-inner { grid-template-columns: 1fr; gap: 40px; }
  .feat-row { grid-template-columns: 1fr; gap: 40px; padding: 48px 0; }
  .feat-row-reverse { direction: ltr; }
}

@media (max-width: 640px) {
  .section { padding: 80px 20px; }
  .hero { padding: 100px 20px 72px; }
  .cta-section { padding: 100px 20px; }
  .container { padding: 0 20px; }
  .products-grid { grid-template-columns: 1fr; }
  .sectors-grid { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr; }
  .team-grid-sm { grid-template-columns: repeat(2, 1fr); }
  .team-grid-advisors { grid-template-columns: repeat(2, 1fr); }
  .footer-cols { grid-template-columns: repeat(2, 1fr); }
  .nav { top: 12px; }
  .nav-inner { padding: 5px 5px 5px 12px; height: 48px; }
  .nav-right .btn-ghost { display: none; }
  .cta-perks { flex-direction: column; align-items: center; }
}
