/* ==========================================================================
   Axis Technology Kryptex-style light theme, violet accent (from logo)
   ========================================================================== */

:root {
  --ink: #0c0d10;
  --ink-2: #565d6b;
  --ink-3: #8a909b;

  --page: #ffffff;
  --panel: #e9edf2;          /* light blue-gray panels */
  --panel-2: #eef1f5;
  --card: #ffffff;
  --line: rgba(12, 13, 16, 0.09);
  --line-2: rgba(12, 13, 16, 0.06);

  --accent: #7c3aed;         /* violet (matches logo) */
  --accent-strong: #6d28d9;
  --accent-soft: #ece5fe;    /* highlight pill bg */
  --accent-ink: #6d28d9;     /* highlight pill text */

  --dark: #0b0b0d;
  --dark-2: #141418;
  --dark-3: #1b1b21;
  --dark-line: rgba(255, 255, 255, 0.09);
  --on-dark: #f4f5f7;
  --on-dark-2: #9aa0ab;

  --green: #22c55e;

  --r-pill: 999px;
  --r-btn: 13px;
  --r-card: 22px;
  --r-panel: 30px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --container: 1140px;

  --font: "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --display: "Manrope", var(--font);
}

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

html { -webkit-text-size-adjust: 100%; }
html.js { scroll-behavior: auto; }

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

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; }
::selection { background: var(--accent-soft); color: var(--accent-ink); }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 4px; }

.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 22px; }

.skip-link {
  position: fixed; top: -60px; left: 16px; z-index: 200;
  background: var(--accent); color: #fff; padding: 10px 16px; border-radius: 10px;
  transition: top 0.2s var(--ease);
}
.skip-link:focus { top: 16px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 12px 20px;
  border-radius: var(--r-btn);
  font-family: var(--display);
  font-weight: 700;
  font-size: 0.95rem;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease), box-shadow 0.25s var(--ease), color 0.25s var(--ease);
  white-space: nowrap;
}
.btn svg { transition: transform 0.25s var(--ease); }
.btn:hover svg { transform: translate(2px, -1px); }
.btn--dark { background: var(--ink); color: #fff; }
.btn--dark:hover { transform: translateY(-2px); background: #1c1d22; box-shadow: 0 12px 26px -12px rgba(12,13,16,.6); }
.btn--accent { background: var(--accent); color: #fff; box-shadow: 0 10px 24px -12px rgba(124,58,237,.8); }
.btn--accent:hover { transform: translateY(-2px); background: var(--accent-strong); box-shadow: 0 16px 32px -14px rgba(124,58,237,.9); }
.btn--light { background: #fff; color: var(--ink); border: 1px solid var(--line); }
.btn--light:hover { transform: translateY(-2px); box-shadow: 0 12px 26px -14px rgba(12,13,16,.35); }
.btn--block { width: 100%; justify-content: center; }
.btn--lg { padding: 15px 26px; font-size: 1rem; }

/* ---------- Header ---------- */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  transition: background 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s var(--ease);
  border-bottom: 1px solid transparent;
}
.header.is-scrolled {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(22px) saturate(160%);
  -webkit-backdrop-filter: blur(22px) saturate(160%);
  border-bottom-color: var(--line);
  box-shadow: 0 6px 24px -16px rgba(12, 13, 16, 0.4);
}
.header__inner { display: flex; align-items: center; gap: 22px; height: 72px; }
.brand { display: inline-flex; align-items: center; gap: 10px; font-family: var(--display); }
.brand__mark { width: 32px; height: 32px; border-radius: 9px; }
.brand__name { font-weight: 800; font-size: 1.16rem; letter-spacing: -0.02em; }
.brand__name-soft { color: var(--ink-2); font-weight: 600; }
.nav { display: flex; gap: 2px; margin-inline: auto; }
.nav__link {
  padding: 9px 14px; border-radius: var(--r-pill);
  font-family: var(--display); font-weight: 600; font-size: 0.93rem; color: var(--ink-2);
  transition: color 0.2s var(--ease), background 0.2s var(--ease);
}
.nav__link:hover { color: var(--ink); background: rgba(12,13,16,.05); }
.header__cta { display: flex; align-items: center; gap: 8px; }
.nav__link--plain:hover { background: transparent; }

.nav-toggle { display: none; width: 44px; height: 44px; border-radius: 12px; border: 1px solid var(--line); flex-direction: column; align-items: center; justify-content: center; gap: 5px; }
.nav-toggle span { width: 20px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform 0.3s var(--ease), opacity 0.3s var(--ease); }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  position: fixed; inset: 72px 0 auto 0; z-index: 99;
  background: rgba(255,255,255,.97); backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
  transform: translateY(-12px); opacity: 0; visibility: hidden;
  transition: opacity .3s var(--ease), transform .3s var(--ease), visibility .3s;
}
.mobile-menu.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
.mobile-menu__nav { display: flex; flex-direction: column; gap: 2px; padding: 14px 22px 26px; }
.mobile-menu__nav a { padding: 14px 8px; font-family: var(--display); font-weight: 600; font-size: 1.05rem; border-bottom: 1px solid var(--line-2); }
.mobile-menu__nav .btn { margin-top: 14px; justify-content: center; }

/* ---------- HERO ---------- */
.hero { padding-top: 84px; }
.hero__panel {
  position: relative;
  background: var(--panel);
  border-radius: var(--r-panel);
  padding: 56px 32px 40px;
  min-height: 660px;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
}
.hero__title {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(2.3rem, 5.6vw, 4.4rem);
  line-height: 1.05;
  letter-spacing: -0.035em;
  text-align: center;
  max-width: 14ch;
}
.hl {
  display: inline-block;
  background: var(--accent-soft);
  color: var(--accent-ink);
  border-radius: 14px;
  padding: 0 0.18em;
}

/* Fan of cards */
.fan {
  position: relative;
  width: 100%;
  max-width: 640px;
  height: 340px;
  margin: 18px auto 0;
  flex: 1 0 auto;
}
.fan__tooltip {
  position: absolute;
  left: 50%; top: 16px;
  transform: translateX(-50%);
  z-index: 20;
  background: #fff;
  color: var(--accent-ink);
  font-family: var(--display); font-weight: 700; font-size: 0.82rem;
  padding: 7px 14px; border-radius: var(--r-pill);
  box-shadow: 0 10px 24px -12px rgba(12,13,16,.35);
  white-space: nowrap;
}
.fan__tooltip::after {
  content: ""; position: absolute; left: 50%; bottom: -6px; transform: translateX(-50%) rotate(45deg);
  width: 12px; height: 12px; background: #fff; border-radius: 2px;
}
.fan-card {
  position: absolute; left: 50%; top: 46%;
  width: 146px; height: 190px;
  margin: -95px 0 0 -73px;
  background: linear-gradient(165deg, #1a1a20, #0c0c10);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 18px;
  box-shadow: 0 24px 44px -22px rgba(12,13,16,.55);
  transform-origin: 50% 135%;
  padding: 12px;
  overflow: hidden;
  display: flex; flex-direction: column; gap: 9px;
}
.fan-card:nth-child(2) { transform: rotate(-33deg) translateY(34px); z-index: 1; }
.fan-card:nth-child(3) { transform: rotate(-22deg) translateY(10px); z-index: 2; }
.fan-card:nth-child(4) { transform: rotate(-11deg) translateY(-6px); z-index: 3; }
.fan-card:nth-child(5) { transform: rotate(0deg) translateY(-14px); z-index: 6; }
.fan-card:nth-child(6) { transform: rotate(11deg) translateY(-6px); z-index: 3; }
.fan-card:nth-child(7) { transform: rotate(22deg) translateY(10px); z-index: 2; }
.fan-card:nth-child(8) { transform: rotate(33deg) translateY(34px); z-index: 1; }

.fan-card__bar { display: flex; gap: 4px; }
.fan-card__bar i { width: 6px; height: 6px; border-radius: 50%; background: rgba(255,255,255,.25); }
.fan-card__bar i:first-child { background: #ff5f57; }
.fan-card__bar i:nth-child(2) { background: #febc2e; }
.fan-card__bar i:nth-child(3) { background: #28c840; }

.mk-lines { display: flex; flex-direction: column; gap: 7px; margin-top: 4px; }
.mk-lines span { height: 7px; border-radius: 4px; background: rgba(255,255,255,.14); }
.mk-lines span:nth-child(2) { width: 80%; } .mk-lines span:nth-child(3) { width: 60%; }
.mk-chip { margin-top: auto; align-self: flex-start; font-size: .62rem; color: #c4b5fd; background: rgba(124,58,237,.22); padding: 3px 9px; border-radius: 999px; font-weight: 600; }

.mk-kpis { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; }
.mk-kpis b { height: 30px; border-radius: 8px; background: rgba(255,255,255,.08); }
.mk-bars { display: flex; align-items: flex-end; gap: 6px; height: 56px; margin-top: 4px; }
.mk-bars u { flex: 1; background: linear-gradient(180deg, #8b5cf6, #6d28d9); border-radius: 4px 4px 0 0; }
.mk-bars u:nth-child(1) { height: 50%; } .mk-bars u:nth-child(2) { height: 78%; } .mk-bars u:nth-child(3) { height: 40%; } .mk-bars u:nth-child(4) { height: 92%; }

.fan-card--code .mk-code { display: flex; flex-direction: column; gap: 6px; margin-top: 4px; font-family: monospace; }
.mk-code em { height: 6px; border-radius: 3px; }
.mk-code em:nth-child(1) { width: 60%; background: #c4b5fd; }
.mk-code em:nth-child(2) { width: 85%; background: rgba(255,255,255,.16); }
.mk-code em:nth-child(3) { width: 45%; background: #7dd3fc; margin-left: 12px; }
.mk-code em:nth-child(4) { width: 70%; background: rgba(255,255,255,.16); margin-left: 12px; }
.mk-code em:nth-child(5) { width: 35%; background: #f0abfc; }

.fan-card--hero-mid { border-color: rgba(124,58,237,.5); box-shadow: 0 30px 50px -20px rgba(124,58,237,.5); }
.mk-chart { background: rgba(255,255,255,.05); border-radius: 9px; padding: 6px; height: 86px; }
.mk-chart svg { width: 100%; height: 100%; }
.mk-foot { display: flex; align-items: center; justify-content: space-between; margin-top: auto; }
.mk-foot b { color: #4ade80; font-size: .8rem; font-weight: 700; }
.mk-foot u { width: 40%; height: 6px; border-radius: 3px; background: rgba(255,255,255,.14); }

.mk-kanban { display: grid; grid-template-columns: repeat(3,1fr); gap: 6px; margin-top: 4px; }
.mk-kanban s { height: 72px; border-radius: 8px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.07); }
.mk-kanban s:nth-child(2) { background: rgba(124,58,237,.2); }

.fan-card--phone { background: #0c0c10; padding: 8px; }
.mk-phone { background: radial-gradient(120% 70% at 50% 0%, rgba(124,58,237,.4), transparent 60%), #131318; border-radius: 12px; height: 100%; padding: 14px 12px; display: flex; flex-direction: column; gap: 8px; }
.mk-phone__bal { font-family: var(--display); color: #fff; font-weight: 800; font-size: 1.05rem; }
.mk-phone__row { display: flex; gap: 5px; } .mk-phone__row i { flex: 1; height: 22px; border-radius: 7px; background: rgba(255,255,255,.1); } .mk-phone__row i:first-child { background: var(--accent); }
.mk-phone__list { display: flex; flex-direction: column; gap: 7px; margin-top: 2px; } .mk-phone__list em { height: 9px; border-radius: 4px; background: rgba(255,255,255,.1); } .mk-phone__list em:nth-child(2){width:80%}

.mk-rows { display: flex; flex-direction: column; gap: 8px; margin-top: 4px; }
.mk-rows b { height: 13px; border-radius: 5px; background: rgba(255,255,255,.1); }
.mk-rows b:nth-child(odd) { background: rgba(255,255,255,.16); }

/* Hero chip + banner */
.hero__cta-row {
  width: 100%; margin-top: 8px;
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 16px;
}
.hero__chip {
  flex: 0 0 auto;
  display: flex; align-items: center; gap: 12px;
  background: #fff; border-radius: 16px; padding: 12px 16px 12px 12px;
  box-shadow: 0 14px 30px -16px rgba(12,13,16,.3);
}
.hero__chip-num { font-family: var(--display); font-weight: 800; font-size: 1.5rem; background: #fff; border: 1px solid var(--line); border-radius: 11px; padding: 6px 10px; color: var(--accent-ink); }
.hero__chip-label { font-size: 0.82rem; color: var(--ink-2); font-weight: 600; line-height: 1.25; }

.hero__banner {
  position: relative; z-index: 5;
  flex: 1 1 360px; max-width: 560px;
  display: flex; align-items: center; gap: 14px;
  background: linear-gradient(100deg, var(--accent), var(--accent-strong));
  color: #fff; border-radius: 16px; padding: 16px 18px;
  box-shadow: 0 18px 40px -16px rgba(124,58,237,.7);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.hero__banner:hover { transform: translateY(-2px); box-shadow: 0 24px 48px -18px rgba(124,58,237,.85); }
.hero__banner-ic { display: grid; place-items: center; width: 40px; height: 40px; border-radius: 11px; background: rgba(255,255,255,.18); }
.hero__banner-text { font-family: var(--display); font-weight: 700; font-size: 1.05rem; }
.hero__banner-meta { margin-left: auto; font-size: 0.85rem; color: rgba(255,255,255,.82); font-weight: 600; }
.hero__banner-arrow { display: grid; place-items: center; width: 30px; height: 30px; border-radius: 50%; background: rgba(255,255,255,.18); }

/* ---------- Feature sections ---------- */
.feature { padding: 80px 0 20px; }
.feature__head { display: flex; align-items: baseline; justify-content: space-between; gap: 20px; margin-bottom: 26px; }
.feature__name { font-family: var(--display); font-weight: 800; font-size: clamp(1.6rem, 3.4vw, 2.4rem); letter-spacing: -0.03em; display: inline-flex; align-items: center; gap: 12px; }
.badge { font-family: var(--font); font-size: 0.72rem; font-weight: 600; color: var(--ink-2); border: 1px solid var(--line); padding: 5px 12px; border-radius: var(--r-pill); letter-spacing: 0.02em; }
.feature__meta { color: var(--ink-3); font-size: 0.9rem; font-weight: 500; }
.feature__meta strong { color: var(--ink-2); }

.shot { border-radius: var(--r-card); overflow: hidden; position: relative; }
.shot--dash { background: linear-gradient(180deg, #f3f1fb, #eaf0f6); border: 1px solid var(--line); padding: 26px; }

.browser { border-radius: 16px; overflow: hidden; box-shadow: 0 40px 80px -40px rgba(12,13,16,.4); border: 1px solid var(--line); background: #fff; }
.browser__bar { display: flex; align-items: center; gap: 12px; padding: 11px 16px; background: #f6f7f9; border-bottom: 1px solid var(--line); }
.browser__dots { display: flex; gap: 6px; } .browser__dots i { width: 11px; height: 11px; border-radius: 50%; background: #d7dbe2; } .browser__dots i:first-child{background:#ff5f57}.browser__dots i:nth-child(2){background:#febc2e}.browser__dots i:nth-child(3){background:#28c840}
.browser__url { font-size: 0.78rem; color: var(--ink-3); background: #fff; border: 1px solid var(--line); padding: 4px 12px; border-radius: 8px; }
.browser__body { display: grid; grid-template-columns: 64px 1fr; min-height: 340px; }
.dash-side { background: #faf9fe; border-right: 1px solid var(--line); padding: 18px 14px; display: flex; flex-direction: column; gap: 12px; align-items: center; }
.dash-side__brand { width: 30px; height: 30px; border-radius: 9px; background: linear-gradient(135deg, var(--accent), var(--accent-strong)); }
.dash-side__item { width: 30px; height: 30px; border-radius: 9px; background: #eceaf4; }
.dash-side__item.is-on { background: var(--accent-soft); box-shadow: inset 0 0 0 1.5px var(--accent); }
.dash-main { padding: 22px 24px; }
.dash-top { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 20px; }
.dash-h { font-family: var(--display); font-weight: 800; font-size: 1.2rem; display: block; }
.dash-sub { font-size: 0.8rem; color: var(--ink-3); }
.dash-pill { font-size: 0.72rem; color: var(--green); background: rgba(34,197,94,.12); padding: 5px 11px; border-radius: 999px; font-weight: 600; height: fit-content; }
.dash-kpis { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-bottom: 18px; }
.dash-kpis > div { background: #faf9fe; border: 1px solid var(--line); border-radius: 13px; padding: 13px; position: relative; overflow: hidden; }
.dkpi-v { font-family: var(--display); font-weight: 800; font-size: 1.05rem; display: block; }
.dkpi-l { font-size: 0.72rem; color: var(--ink-3); }
.dkpi-spark { position: absolute; right: 10px; bottom: 10px; width: 36px; height: 16px; border-radius: 3px; background: linear-gradient(90deg, transparent, rgba(124,58,237,.25)); }
.dash-chart { background: #faf9fe; border: 1px solid var(--line); border-radius: 13px; height: 150px; overflow: hidden; margin-bottom: 16px; }
.dash-chart svg { width: 100%; height: 100%; }
.dash-line { stroke-dasharray: 900; stroke-dashoffset: 900; }
.is-inview .dash-line { animation: draw 1.7s var(--ease) forwards; }
@keyframes draw { to { stroke-dashoffset: 0; } }
.dash-rows { display: flex; flex-direction: column; gap: 10px; }
.drow { display: flex; align-items: center; gap: 12px; }
.drow i { width: 30px; height: 30px; border-radius: 9px; background: var(--accent-soft); }
.drow b { width: 120px; height: 9px; border-radius: 5px; background: #e4e2ee; }
.drow u { flex: 1; height: 9px; border-radius: 5px; background: #eef0f4; }
.drow:nth-child(2) b { width: 90px; } .drow:nth-child(3) b { width: 150px; }

/* mobile shot 3D iPhone 17 Pro Max */
.shot--mobile { background: linear-gradient(135deg, #efe9fb, #e7eef6); border: 1px solid var(--line); padding: 44px 26px; display: grid; place-items: center; min-height: 600px; perspective: 1500px; perspective-origin: 50% 42%; }
.shot-mobile__bg { position: absolute; width: 390px; height: 390px; border-radius: 50%; background: radial-gradient(circle, rgba(124,58,237,.26), transparent 62%); filter: blur(12px); }

.ip-stage { position: relative; z-index: 2; width: 240px; height: 480px; transform-style: preserve-3d; }
.ip { position: relative; width: 100%; height: 100%; transform-style: preserve-3d; transform: rotateY(-20deg) rotateX(5deg); will-change: transform; }
.ip__body { position: absolute; inset: 0; transform-style: preserve-3d; }
.ip__face, .ip__edge { position: absolute; }
.ip__front, .ip__back { inset: 0; border-radius: 42px; overflow: hidden; backface-visibility: hidden; }

/* Front titanium frame + display */
.ip__front { transform: translateZ(13px); background: linear-gradient(150deg, #34343c, #17171b 42%, #26262d 68%, #101013); box-shadow: inset 0 0 0 1.5px rgba(255,255,255,.12), inset 0 0 5px rgba(255,255,255,.16); }
.ip__screen { position: absolute; inset: 7px; border-radius: 35px; overflow: hidden; background: radial-gradient(120% 60% at 50% 0%, rgba(124,58,237,.4), transparent 55%), #0a0a10; }
.ip__island { position: absolute; top: 13px; left: 50%; transform: translateX(-50%); width: 84px; height: 25px; border-radius: 14px; background: #000; z-index: 6; display: flex; align-items: center; justify-content: flex-end; padding-right: 9px; }
.ip__cam { width: 9px; height: 9px; border-radius: 50%; background: radial-gradient(circle at 35% 32%, #38507e, #05060a 60%); box-shadow: inset 0 0 2px rgba(130,170,255,.6); }
.ip__ui { position: relative; height: 100%; padding: 46px 16px 18px; display: flex; flex-direction: column; }
.ip__glare { position: absolute; inset: 0; pointer-events: none; background: linear-gradient(125deg, rgba(255,255,255,.16) 0%, rgba(255,255,255,0) 28%, rgba(255,255,255,0) 72%, rgba(255,255,255,.07) 100%); }

/* Back titanium + Pro camera module */
.ip__back { transform: translateZ(-13px) rotateY(180deg); background: linear-gradient(150deg, #2a2a30, #141417 45%, #202026 70%, #0e0e11); }
.ip__cameras { position: absolute; top: 16px; left: 16px; width: 112px; height: 112px; border-radius: 30px; background: linear-gradient(150deg, #202026, #0a0a0d); box-shadow: inset 0 0 0 1px rgba(255,255,255,.06), 0 6px 16px rgba(0,0,0,.55); }
.ip__lens { position: absolute; width: 42px; height: 42px; border-radius: 50%; background: radial-gradient(circle at 38% 34%, #45567a 0%, #0a0b10 56%); box-shadow: 0 0 0 4px #161619, inset 0 0 6px rgba(0,0,0,.85); }
.ip__lens i { position: absolute; inset: 12px; border-radius: 50%; background: radial-gradient(circle at 40% 34%, rgba(150,180,255,.55), #05060a 62%); }
.ip__lens:nth-child(1) { top: 8px; left: 8px; } .ip__lens:nth-child(2) { bottom: 8px; left: 8px; } .ip__lens:nth-child(3) { bottom: 8px; right: 8px; }
.ip__flash { position: absolute; top: 16px; right: 18px; width: 13px; height: 13px; border-radius: 50%; background: radial-gradient(circle, #fff6e0, #d7c489); box-shadow: 0 0 6px rgba(255,240,200,.5); }
.ip__lidar { position: absolute; top: 54px; right: 20px; width: 11px; height: 11px; border-radius: 50%; background: #0a0b10; box-shadow: inset 0 0 0 2px #2c2c35; }
/* Axis logo on the back — colorless (grayscale + inverted) and blended into the titanium so it reads as an etched/embossed mark */
.ip__emblem { position: absolute; top: 50%; left: 50%; width: 60px; height: 60px; transform: translate(-50%,-50%); object-fit: contain; filter: grayscale(1) invert(1); mix-blend-mode: screen; opacity: .8; pointer-events: none; }

/* Rounded titanium rim extruded rounded-rect slices (built in JS) follow the
   corner curves perfectly, so there are no straight edges across the curves. */
.ip__rim { position: absolute; inset: 0; transform-style: preserve-3d; pointer-events: none; }
.ip__wall { position: absolute; left: 50%; top: 50%; }

/* Side rails (transparent) hosting the machined titanium buttons on the real side walls */
.ip__side { position: absolute; left: 50%; top: 50%; width: 26px; height: 320px; transform-style: preserve-3d; }
.ip__side--left { transform: translate(-50%,-50%) rotateY(-90deg) translateZ(120px); }
.ip__side--right { transform: translate(-50%,-50%) rotateY(90deg) translateZ(120px); }
.ip__btn { position: absolute; left: 50%; transform: translateX(-50%) translateZ(2.5px); width: 13px; border-radius: 3px; background: linear-gradient(90deg, #131318, #46464f 50%, #131318); box-shadow: 0 0 0 1px rgba(0,0,0,.45), 0 1px 2px rgba(0,0,0,.6); }
.ip__btn--action { top: 36px; height: 26px; }
.ip__btn--volup { top: 76px; height: 44px; }
.ip__btn--voldown { top: 128px; height: 44px; }
.ip__btn--power { top: 64px; height: 66px; }
.ip__btn--camera { top: 150px; height: 34px; background: linear-gradient(90deg, #0f0f13, #3a3a44 50%, #0f0f13); }

/* Floor shadow */
.ip__floor { position: absolute; left: 50%; bottom: -34px; transform: translateX(-50%); width: 210px; height: 42px; border-radius: 50%; background: radial-gradient(ellipse, rgba(10,8,20,.45), transparent 70%); filter: blur(13px); z-index: 1; }

/* Tablet/mobile: drop the 3D entirely (flat 2D phone) for performance */
@media (max-width: 900px) {
  .shot--mobile { perspective: none; }
  .ip-stage { transform: none; transform-style: flat; }
  .ip { transform: none !important; transform-style: flat; }
  .ip__body { transform-style: flat; }
  .ip__back, .ip__rim, .ip__side { display: none; }
  .ip__front { transform: none; box-shadow: 0 28px 56px -28px rgba(12,13,16,.5), inset 0 0 0 1.5px rgba(255,255,255,.12), inset 0 0 5px rgba(255,255,255,.16); }
}
.phone__hi { font-size: 0.76rem; color: var(--on-dark-2); }
.phone__bal { font-family: var(--display); font-weight: 800; color: #fff; font-size: 1.7rem; margin-top: 6px; }
.phone__sub { font-size: 0.72rem; color: var(--on-dark-2); }
.phone__actions { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; margin: 18px 0; }
.pa { height: 54px; border-radius: 13px; display: grid; place-items: center; font-size: 0.74rem; font-weight: 600; color: var(--on-dark-2); background: rgba(255,255,255,.05); border: 1px solid var(--dark-line); }
.pa--1 { background: var(--accent); color: #fff; border-color: transparent; }
.phone__list { display: flex; flex-direction: column; gap: 12px; }
.pl { display: flex; align-items: center; gap: 10px; }
.pl i { width: 30px; height: 30px; border-radius: 9px; background: rgba(124,58,237,.25); }
.pl b { flex: 1; height: 9px; border-radius: 5px; background: rgba(255,255,255,.1); }
.pl u { font-size: 0.78rem; font-weight: 700; color: var(--on-dark-2); }
.pl u.up { color: #4ade80; }
.shot-mobile__card { position: absolute; z-index: 4; background: #fff; border-radius: 14px; padding: 11px 14px; box-shadow: 0 20px 40px -20px rgba(12,13,16,.4); display: flex; align-items: center; gap: 10px; }
.shot-mobile__card strong { display: block; font-size: 0.84rem; } .shot-mobile__card small { font-size: 0.72rem; color: var(--ink-3); }
.shot-mobile__card--a { top: 20%; left: 8%; }
.shot-mobile__card--b { bottom: 18%; right: 9%; flex-direction: column; gap: 0; }
.smc-ic { width: 28px; height: 28px; border-radius: 8px; background: rgba(34,197,94,.16); display: grid; place-items: center; position: relative; }
.smc-ic.ok::after { content: ""; width: 11px; height: 6px; border-left: 2px solid var(--green); border-bottom: 2px solid var(--green); transform: rotate(-45deg) translateY(-1px); }
.smc-rating { font-family: var(--display); font-weight: 800; color: var(--accent-ink); }

/* Promo card */
.promo {
  display: flex; align-items: center; gap: 22px;
  background: var(--panel); border-radius: var(--r-card);
  padding: 24px 26px; margin-top: 18px;
}
.promo__ic { flex-shrink: 0; width: 56px; height: 56px; border-radius: 15px; background: #fff; border: 1px solid var(--line); display: grid; place-items: center; color: var(--accent); }
.promo__text { color: var(--ink-2); font-size: 1rem; flex: 1; }
.promo__text strong { color: var(--ink); }
.promo .btn { flex-shrink: 0; }

/* ---------- ECOSYSTEM (dark bento) ---------- */
.eco { position: relative; overflow: hidden; margin-top: 80px; background: var(--dark); color: var(--on-dark); border-radius: 40px; padding: 72px 0; }
.eco > .container { position: relative; z-index: 2; }
.eco__particles { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.eco__annotate { position: relative; color: inherit; white-space: nowrap; }
.eco__head { margin-bottom: 36px; }
.eco__title { font-family: var(--display); font-weight: 800; font-size: clamp(1.9rem, 4vw, 2.8rem); letter-spacing: -0.03em; }
.eco__sub { color: var(--on-dark-2); margin-top: 12px; font-size: 1.05rem; max-width: 540px; }
.bento { display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: minmax(190px, auto); gap: 16px; }
.bento__card { background: var(--dark-2); border: 1px solid var(--dark-line); border-radius: var(--r-card); padding: 24px; overflow: hidden; position: relative; transform-style: preserve-3d; will-change: transform; transition: transform 0.4s var(--ease), border-color 0.4s var(--ease), box-shadow 0.4s var(--ease); }
.bento__card:hover { border-color: rgba(124,58,237,.5); box-shadow: 0 24px 50px -28px rgba(124,58,237,.7); }
.bento__card h3 { font-family: var(--display); font-weight: 700; font-size: 1.2rem; }
.bento__card p { color: var(--on-dark-2); font-size: 0.94rem; margin-top: 8px; }
.bento__tall { grid-row: span 2; display: flex; flex-direction: column; justify-content: space-between; }
.bento__wide { grid-column: span 2; }
.bento--dark2 { background: var(--dark-3); }
.chips { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 18px; }
.chips span { font-size: 0.76rem; font-weight: 600; color: #c4b5fd; background: rgba(124,58,237,.18); border: 1px solid rgba(124,58,237,.3); padding: 5px 11px; border-radius: 999px; }

.bento__art { flex: 1; display: grid; place-items: center; min-height: 130px; }
.orbit { position: relative; width: 120px; height: 120px; }
.orbit__core { position: absolute; inset: 42px; border-radius: 50%; background: linear-gradient(135deg, var(--accent), var(--accent-strong)); box-shadow: 0 0 40px rgba(124,58,237,.7); }
.orbit::before, .orbit::after { content: ""; position: absolute; inset: 0; border: 1px solid rgba(255,255,255,.12); border-radius: 50%; }
.orbit::after { inset: 22px; }
.orbit__dot { position: absolute; width: 12px; height: 12px; border-radius: 50%; background: #c4b5fd; }
.orbit__dot--1 { top: -6px; left: 54px; } .orbit__dot--2 { bottom: 8px; left: -6px; } .orbit__dot--3 { bottom: 14px; right: -4px; background: #7dd3fc; }

.bento__split { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; height: 100%; align-items: center; }
.bento__mini { position: relative; height: 130px; }
.node { position: absolute; font-family: var(--display); font-weight: 700; font-size: 0.74rem; padding: 7px 11px; border-radius: 10px; background: var(--dark); border: 1px solid var(--dark-line); }
.node--a { top: 8px; left: 10px; } .node--b { bottom: 8px; left: 10px; } .node--c { top: 50%; right: 10px; transform: translateY(-50%); }
.node--core { top: 50%; left: 50%; transform: translate(-50%,-50%); background: var(--accent); border-color: transparent; color: #fff; }
.wires { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; }
.wires path { fill: none; stroke: rgba(124,58,237,.5); stroke-width: 1.5; stroke-dasharray: 4 4; }

.deploy { margin-top: 16px; display: flex; flex-direction: column; gap: 8px; }
.deploy__row { display: flex; align-items: center; gap: 9px; font-size: 0.82rem; color: var(--on-dark-2); font-family: monospace; background: var(--dark); border: 1px solid var(--dark-line); border-radius: 9px; padding: 8px 11px; }
.deploy__row i { width: 14px; height: 14px; border-radius: 50%; display: grid; place-items: center; flex-shrink: 0; }
.deploy__row i.ok { background: rgba(34,197,94,.18); } .deploy__row i.ok::after { content:""; width:7px;height:4px;border-left:1.5px solid #4ade80;border-bottom:1.5px solid #4ade80;transform:rotate(-45deg) translateY(-1px);} 
.deploy__row i.up { background: rgba(124,58,237,.25); } .deploy__row i.up::after { content:"";width:5px;height:5px;border-top:1.5px solid #c4b5fd;border-right:1.5px solid #c4b5fd;transform:rotate(-45deg);} 
.deploy__bar { display: flex; align-items: center; gap: 6px; font-family: monospace; font-size: 0.72rem; color: var(--on-dark-2); padding: 0 2px 4px; }
.deploy__bar i { width: 9px; height: 9px; border-radius: 50%; background: rgba(255,255,255,.18); }
.deploy__bar i:first-child { background: #ff5f57; } .deploy__bar i:nth-child(2) { background: #febc2e; } .deploy__bar i:nth-child(3) { background: #28c840; }
.deploy__bar b { margin-left: 6px; font-weight: 600; opacity: .75; }
.deploy__caret { display: inline-block; width: 7px; height: 13px; background: #4ade80; margin-left: 3px; border-radius: 1px; vertical-align: -2px; animation: caretBlink 1s step-end infinite; }
@keyframes caretBlink { 50% { opacity: 0; } }
.orbit, .orbit__core, .node, .wires path { will-change: transform; }
.bento__list h3 { margin-bottom: 6px; }
.eco-list { margin-top: 6px; }
.eco-list li { display: flex; align-items: center; justify-content: space-between; padding: 11px 0; border-bottom: 1px solid var(--dark-line); font-weight: 600; font-size: 0.95rem; transition: color 0.2s var(--ease), padding 0.2s var(--ease); cursor: default; }
.eco-list li:last-child { border-bottom: none; }
.eco-list li span { color: var(--accent); font-size: 1.1rem; }
.eco-list li:hover { color: #c4b5fd; padding-left: 6px; }

/* ---------- TRUSTED / WHY ---------- */
.trusted { padding: 80px 0; }
.trusted__panel { background: var(--panel); border-radius: var(--r-panel); padding: 44px; display: grid; grid-template-columns: 1fr 1.4fr; gap: 40px; align-items: center; }
.trusted__title { font-family: var(--display); font-weight: 800; font-size: clamp(1.7rem, 3.4vw, 2.4rem); letter-spacing: -0.03em; line-height: 1.1; }
.trusted__line { color: var(--ink-2); margin-top: 14px; font-weight: 600; }
.trusted__intro .btn { margin-top: 22px; }
.trusted__stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.tstat { background: #fff; border: 1px solid var(--line); border-radius: var(--r-card); padding: 24px 20px; }
.tstat__num { font-family: var(--display); font-weight: 800; font-size: clamp(1.8rem, 3vw, 2.6rem); letter-spacing: -0.02em; display: block; }
.tstat__label { color: var(--ink-3); font-size: 0.88rem; margin-top: 8px; display: block; }

/* ---------- FAQ ---------- */
.faq { padding: 30px 0 90px; }
.faq__title { font-family: var(--display); font-weight: 800; font-size: clamp(1.9rem, 4vw, 2.8rem); letter-spacing: -0.03em; margin-bottom: 28px; }
.faq__list { display: flex; flex-direction: column; gap: 10px; }
.faq-item { background: var(--panel); border-radius: 16px; overflow: hidden; transition: background 0.25s var(--ease); }
.faq-item[open] { background: var(--panel-2); }
.faq-item summary { display: flex; align-items: center; gap: 14px; padding: 20px 22px; font-family: var(--display); font-weight: 700; font-size: 1.05rem; list-style: none; cursor: pointer; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item__ic { position: relative; width: 20px; height: 20px; flex-shrink: 0; }
.faq-item__ic::before, .faq-item__ic::after { content: ""; position: absolute; background: var(--accent); border-radius: 2px; transition: transform 0.3s var(--ease), opacity 0.3s var(--ease); }
.faq-item__ic::before { top: 9px; left: 0; width: 20px; height: 2.4px; }
.faq-item__ic::after { left: 9px; top: 0; width: 2.4px; height: 20px; }
.faq-item[open] .faq-item__ic::after { transform: rotate(90deg); opacity: 0; }
.faq-item__body { overflow: hidden; }
.faq-item__body p { padding: 0 22px 22px 56px; color: var(--ink-2); }

/* ---------- CTA (dark) ---------- */
.cta { background: var(--dark); color: var(--on-dark); border-radius: 40px 40px 0 0; padding: 80px 0; position: relative; overflow: hidden; }
.cta::before { content: ""; position: absolute; top: -120px; right: -80px; width: 460px; height: 460px; border-radius: 50%; background: radial-gradient(circle, rgba(124,58,237,.45), transparent 65%); filter: blur(20px); pointer-events: none; }
.cta__inner { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.cta__title { font-family: var(--display); font-weight: 800; font-size: clamp(2rem, 4.4vw, 3.2rem); letter-spacing: -0.035em; line-height: 1.05; }
.cta__sub { color: var(--on-dark-2); margin-top: 16px; font-size: 1.05rem; max-width: 440px; }
.cta__contacts { margin-top: 26px; display: flex; flex-direction: column; gap: 12px; }
.cta__contacts li { display: flex; align-items: center; gap: 12px; color: var(--on-dark-2); }
.cta__contacts a:hover { color: #fff; }
.cta__ic { width: 32px; height: 32px; border-radius: 9px; display: grid; place-items: center; background: rgba(124,58,237,.2); color: #c4b5fd; font-weight: 700; flex-shrink: 0; }

.cta__form { background: var(--dark-2); border: 1px solid var(--dark-line); border-radius: var(--r-card); padding: 26px; display: flex; flex-direction: column; gap: 14px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field label { font-size: 0.82rem; color: var(--on-dark-2); font-weight: 500; }
.field input, .field textarea { width: 100%; padding: 12px 14px; border-radius: 11px; border: 1px solid var(--dark-line); background: var(--dark); color: var(--on-dark); font: inherit; font-size: 0.94rem; transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease); }
.field input::placeholder, .field textarea::placeholder { color: #5a5f6a; }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 4px rgba(124,58,237,.2); }
.field textarea { resize: vertical; min-height: 90px; }
.field.is-invalid input, .field.is-invalid textarea { border-color: #f87171; box-shadow: 0 0 0 4px rgba(248,113,113,.16); }
.cta__note { font-size: 0.82rem; color: var(--on-dark-2); text-align: center; }
.cta__note.is-success { color: #4ade80; }

/* ---------- FOOTER ---------- */
.footer { background: var(--dark); color: var(--on-dark); padding: 30px 0 34px; }
.footer__top { display: grid; grid-template-columns: 1.5fr 2fr; gap: 44px; padding-bottom: 40px; border-bottom: 1px solid var(--dark-line); }
.brand--light .brand__name { color: #fff; } .brand--light .brand__name-soft { color: var(--on-dark-2); }
.footer__tag { color: var(--on-dark-2); margin-top: 16px; max-width: 340px; font-size: 0.95rem; }
.footer__cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.footer__col { display: flex; flex-direction: column; gap: 11px; }
.footer__col h4 { font-family: var(--display); font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--on-dark-2); margin-bottom: 4px; }
.footer__col a { color: var(--on-dark); font-size: 0.93rem; width: fit-content; transition: color 0.2s var(--ease); }
.footer__col a:hover { color: #c4b5fd; }
.footer__addr { color: var(--on-dark-2); font-size: 0.88rem; line-height: 1.7; }
.footer__bottom { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding-top: 24px; flex-wrap: wrap; }
.footer__status { display: inline-flex; align-items: center; gap: 9px; color: var(--on-dark-2); font-size: 0.86rem; }
.footer__dot { width: 9px; height: 9px; border-radius: 50%; background: var(--green); box-shadow: 0 0 10px var(--green); animation: pulse-g 2.4s infinite; }
@keyframes pulse-g { 0% { box-shadow: 0 0 0 0 rgba(34,197,94,.5); } 70% { box-shadow: 0 0 0 8px rgba(34,197,94,0); } 100% { box-shadow: 0 0 0 0 rgba(34,197,94,0); } }
.footer__legal { color: var(--on-dark-2); font-size: 0.85rem; display: flex; gap: 9px; flex-wrap: wrap; align-items: center; }
.footer__legal .sep { opacity: 0.5; }

/* ---------- 404 ---------- */
.notfound { display: flex; flex-direction: column; min-height: 100vh; }
.nf-wrap { flex: 1; display: grid; place-items: center; padding: 130px 0 90px; }
.nf-panel { position: relative; overflow: hidden; width: 100%; background: var(--panel); border-radius: var(--r-panel); padding: 60px 30px 66px; text-align: center; animation: nf-rise 0.85s var(--ease) both; }
.nf-glow { position: absolute; width: 440px; height: 440px; top: -180px; left: 50%; transform: translateX(-50%); background: radial-gradient(circle, rgba(124,58,237,.22), transparent 65%); filter: blur(20px); pointer-events: none; }
.nf-inner { position: relative; z-index: 1; }
.nf-tag { display: inline-block; font-family: var(--display); font-weight: 700; font-size: 0.76rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent-ink); background: var(--accent-soft); padding: 7px 15px; border-radius: var(--r-pill); }
.nf-code { display: flex; align-items: center; justify-content: center; gap: clamp(8px, 2.5vw, 20px); margin: 26px 0 6px; }
.nf-digit { font-family: var(--display); font-weight: 800; font-size: clamp(5rem, 19vw, 11rem); line-height: 0.9; letter-spacing: -0.04em; background: linear-gradient(150deg, var(--accent-strong), #a78bfa); -webkit-background-clip: text; background-clip: text; color: transparent; }
.nf-zero { position: relative; width: clamp(4.4rem, 16vw, 9.4rem); height: clamp(4.4rem, 16vw, 9.4rem); border-radius: 50%; border: clamp(9px, 2.6vw, 17px) solid var(--accent); box-shadow: 0 0 50px -8px rgba(124,58,237,.55); flex-shrink: 0; }
.nf-zero::before { content: ""; position: absolute; inset: -10px; border-radius: 50%; border: 2px dashed rgba(124,58,237,.4); animation: nf-spin 16s linear infinite; }
.nf-zero i { position: absolute; inset: 0; animation: nf-spin 6.5s linear infinite; }
.nf-zero i::after { content: ""; position: absolute; top: clamp(-12px, -2.6vw, -9px); left: 50%; width: clamp(13px, 3vw, 20px); height: clamp(13px, 3vw, 20px); margin-left: -9px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 20px rgba(124,58,237,.95); }
.nf-title { font-family: var(--display); font-weight: 800; font-size: clamp(1.6rem, 4vw, 2.6rem); letter-spacing: -0.025em; line-height: 1.1; margin-top: 12px; }
.nf-sub { color: var(--ink-2); font-size: 1.06rem; max-width: 460px; margin: 14px auto 0; }
.nf-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-top: 32px; }
.nf-links { margin-top: 30px; padding-top: 24px; border-top: 1px solid var(--line); display: flex; gap: 8px 22px; justify-content: center; flex-wrap: wrap; }
.nf-links a { color: var(--ink-2); font-weight: 600; font-size: 0.92rem; transition: color 0.2s var(--ease); }
.nf-links a:hover { color: var(--accent-ink); }
@keyframes nf-rise { from { opacity: 0; transform: translateY(26px) scale(0.985); } to { opacity: 1; transform: none; } }
@keyframes nf-spin { to { transform: rotate(360deg); } }

/* ---------- Reveal (JS only) ---------- */
html.js [data-reveal] { opacity: 0; transform: translateY(28px); }
html.js [data-hero-title] { opacity: 1; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .trusted__panel { grid-template-columns: 1fr; gap: 28px; }
  .cta__inner { grid-template-columns: 1fr; gap: 32px; }
  .bento { grid-template-columns: 1fr 1fr; }
  .bento__tall { grid-row: span 1; }
  .bento__wide { grid-column: span 2; }
  .footer__top { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 820px) {
  .nav, .header__cta { display: none; }
  .nav-toggle { display: flex; }
  .feature__head { flex-direction: column; align-items: flex-start; gap: 6px; }
  .promo { flex-direction: column; align-items: flex-start; gap: 16px; }
  .browser__body { grid-template-columns: 1fr; } .dash-side { flex-direction: row; border-right: none; border-bottom: 1px solid var(--line); }
  .dash-side__item, .dash-side__brand { width: 26px; height: 26px; }
}
@media (max-width: 620px) {
  .container { padding-inline: 16px; }
  .hero__panel { padding: 40px 18px 30px; min-height: 600px; border-radius: 22px; }
  .hero__title { font-size: 2.1rem; }
  .fan { transform: scale(0.78); height: 300px; margin-top: 0; }
  .hero__chip { display: none; }
  .hero__banner { flex-wrap: wrap; }
  .hero__banner-meta { margin-left: 52px; width: 100%; }
  .bento, .trusted__stats, .footer__cols { grid-template-columns: 1fr; }
  .bento__wide { grid-column: span 1; }
  .bento__split { grid-template-columns: 1fr; }
  .dash-kpis { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .eco, .cta { border-radius: 26px; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
}

/* ---------- Reduced motion ---------- */
/* Core entrance/scroll effects still run (driven by GSAP in JS, which also
   skips the heavy looping motion under reduced-motion). Here we only neutralise
   continuous/decorative CSS animations and instant-ise hover transitions. */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
}
