/* Immensus Group sayti — bitta qorong'i ranglar tizimi, bitta ritm.
   Urg'u: to'q sariq. Ikkinchi rang: siyoh ko'k (faqat gradient va belgilar uchun). */
:root {
  --bg: #070d14;
  --bg-2: #0a1522;
  --bg-3: #050a10;
  --surface: rgba(255, 255, 255, .045);
  --surface-2: rgba(255, 255, 255, .08);
  --line: rgba(255, 255, 255, .1);
  --ink: #f3f6fa;
  --muted: #93a3b4;
  --accent: #f97316;
  --accent-2: #fb923c;
  --accent-soft: rgba(249, 115, 22, .16);
  --navy: #1e3a8a;
  --navy-2: #2d4fa8;
  --ok: #4ade80;
  --danger: #f87171;
  --f-display: "Barlow Condensed", "Arial Narrow", Arial, sans-serif;
  --f-body: Inter, "Helvetica Neue", Arial, sans-serif;
  --f-mono: ui-monospace, SFMono-Regular, Consolas, monospace;
  --wrap: 1180px;
  --nav-h: 72px;
  --pad: 104px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--nav-h) + 12px); }
body { margin: 0; background: var(--bg); color: var(--ink); font-family: var(--f-body);
  font-size: 17px; line-height: 1.6; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
h1, h2, h3, h4 { font-family: var(--f-display); margin: 0; line-height: .98; text-transform: uppercase; letter-spacing: .005em; }
h1 { font-size: clamp(44px, 8.6vw, 92px); font-weight: 800; }
h2 { font-size: clamp(30px, 5vw, 50px); font-weight: 800; }
h3 { font-size: clamp(20px, 2.6vw, 26px); font-weight: 700; }
h4 { font-size: 19px; font-weight: 700; }
p { margin: 0 0 1em; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; margin: 0; padding: 0; }
img, svg, video, canvas { display: block; max-width: 100%; }
[hidden] { display: none !important; }
svg { fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }
.section { padding: var(--pad) 0; }
.section-head { max-width: 680px; margin-bottom: 44px; }
.section-head h2 { margin-bottom: 14px; }
.eyebrow { font-family: var(--f-display); font-size: 15px; font-weight: 700; letter-spacing: .22em;
  text-transform: uppercase; color: var(--accent); margin: 0 0 10px; }
.lead { color: var(--muted); font-size: 18px; margin: 0; }
.muted { color: var(--muted); }
.small { font-size: 14.5px; }
.mono { font-family: var(--f-mono); font-variant-numeric: tabular-nums; }
.accent { color: var(--accent); }

/* ---------- Tugmalar ---------- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; padding: 14px 26px;
  border-radius: 999px; border: 1.5px solid transparent; font: 600 16px/1 var(--f-body); cursor: pointer;
  transition: transform .18s ease, background .18s ease, border-color .18s ease, color .18s ease; }
.btn:hover { transform: translateY(-2px); }
.btn-accent { background: var(--accent); color: #0a1119; border-color: var(--accent); font-weight: 700; }
.btn-accent:hover { background: var(--accent-2); border-color: var(--accent-2); }
.btn-ghost { background: rgba(255, 255, 255, .04); color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }
.btn.block { width: 100%; }

/* ---------- Navbar ---------- */
.progress { position: fixed; top: 0; left: 0; height: 2px; width: 0; z-index: 60;
  background: linear-gradient(90deg, var(--navy-2), var(--accent)); }
.nav { position: fixed; inset: 0 0 auto; z-index: 50; transition: background .3s, box-shadow .3s, backdrop-filter .3s; }
.nav.scrolled { background: rgba(7, 13, 20, .88); backdrop-filter: blur(12px); box-shadow: 0 1px 0 var(--line); }
.nav-inner { max-width: var(--wrap); margin: 0 auto; padding: 0 24px; height: var(--nav-h); display: flex; align-items: center; gap: 26px; }
.logo { display: flex; align-items: center; gap: 11px; }
.logo-mark { width: 38px; height: 38px; border-radius: 11px; display: grid; place-items: center;
  background: linear-gradient(135deg, var(--navy), var(--accent)); }
.logo-mark svg { width: 21px; height: 21px; stroke: #fff; stroke-width: 2; }
.logo-text { font-family: var(--f-display); font-weight: 800; font-size: 21px; letter-spacing: .05em; text-transform: uppercase; }
.logo-text b { color: var(--accent); }
.nav-links { display: flex; gap: 26px; margin-left: auto; font-size: 15px; color: rgba(243, 246, 250, .78); }
.nav-links a:hover { color: var(--accent); }
.nav-cta { padding: 9px 20px; font-size: 14.5px; }
.burger { display: none; background: none; border: 0; color: var(--ink); padding: 6px; margin-left: auto; }
.burger svg { width: 28px; height: 28px; stroke-width: 2; }
.menu { position: fixed; inset: 0; z-index: 99; background: rgba(7, 13, 20, .97); backdrop-filter: blur(14px);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 24px;
  font-family: var(--f-display); font-size: 30px; font-weight: 700; text-transform: uppercase; }
.menu a:hover { color: var(--accent); }
.menu .btn { font-family: var(--f-body); font-size: 16px; text-transform: none; }
.menu-close { position: absolute; top: 18px; right: 18px; background: none; border: 0; color: var(--ink); }
.menu-close svg { width: 30px; height: 30px; stroke-width: 2; }

/* ---------- 1. Bosh ekran ---------- */
.hero { position: relative; min-height: 100svh; display: flex; align-items: center; overflow: hidden;
  background: radial-gradient(120% 90% at 78% 20%, rgba(30, 58, 138, .5), transparent 60%),
              linear-gradient(180deg, var(--bg-2), var(--bg) 70%); }
.hero-canvas, .hero-video { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-video { object-fit: cover; }
.hero-canvas { opacity: 0; transition: opacity 1.4s ease; }
.hero-canvas.on { opacity: 1; }
.hero-canvas.on ~ .hero-video { display: none; }
.hero-overlay { position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(7, 13, 20, .95) 0%, rgba(7, 13, 20, .82) 38%, rgba(7, 13, 20, .2) 66%, rgba(7, 13, 20, .05) 100%),
              linear-gradient(180deg, rgba(7, 13, 20, .55), transparent 28%, rgba(5, 10, 16, .75)); }
.hero-inner { position: relative; z-index: 2; width: 100%; padding-top: var(--nav-h); }
.kicker { display: flex; align-items: center; gap: 12px; font-family: var(--f-display); font-weight: 700;
  letter-spacing: .22em; text-transform: uppercase; font-size: 14px; color: var(--accent); margin-bottom: 18px; }
.kicker i { width: 34px; height: 2px; background: var(--accent); display: block; }
.hero h1 { max-width: 12ch; }
.hero-lede { color: rgba(243, 246, 250, .8); font-size: clamp(16.5px, 2vw, 19px); max-width: 520px; margin: 22px 0 26px; }
.hero-track { display: flex; gap: 12px; max-width: 520px; flex-wrap: wrap; }
.hero-track .input { flex: 1; min-width: 230px; }
.hero-note { max-width: 560px; margin-top: 16px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 22px; }
.scroll-hint { position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%); z-index: 2;
  width: 25px; height: 40px; border: 2px solid rgba(255, 255, 255, .28); border-radius: 999px;
  display: grid; justify-items: center; padding-top: 7px; }
.scroll-hint span { width: 4px; height: 8px; border-radius: 4px; background: var(--accent); animation: bob 2s infinite; }
@keyframes bob { 0%, 100% { transform: translateY(0); opacity: 1; } 50% { transform: translateY(9px); opacity: .35; } }

/* ---------- Maydonlar ---------- */
.input { width: 100%; padding: 13px 16px; border-radius: 12px; font: 400 16px/1.4 var(--f-body);
  background: rgba(255, 255, 255, .07); border: 1px solid var(--line); color: var(--ink); outline: none; }
.input::placeholder { color: rgba(243, 246, 250, .42); }
.input:focus { border-color: var(--accent); background: rgba(255, 255, 255, .1); }
label { display: block; font-size: 13.5px; font-weight: 600; color: var(--muted); margin-bottom: 12px; }
label .input { margin-top: 6px; font-weight: 400; }
.note { border-radius: 14px; padding: 14px 16px; background: var(--surface); border: 1px solid var(--line); color: var(--muted); }
.note.warn { background: rgba(248, 113, 113, .12); border-color: rgba(248, 113, 113, .35); color: #fecaca; }
.note.ok { background: rgba(74, 222, 128, .12); border-color: rgba(74, 222, 128, .3); color: #bbf7d0; }
.hp { position: absolute; left: -9999px; width: 0; height: 0; opacity: 0; }

/* Kuzatish natijasi */
.track-card { color: var(--ink); }
.track-head { display: flex; justify-content: space-between; align-items: center; gap: 12px; font-weight: 600; }
.pill { background: var(--accent-soft); color: var(--accent); border-radius: 999px; padding: 4px 13px; font-size: 13px; font-weight: 700; }
.steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 6px; margin: 16px 0 10px; }
.steps li { font-size: 12px; color: rgba(243, 246, 250, .45); border-top: 3px solid var(--surface-2); padding-top: 8px; }
.steps li.done { color: var(--ink); border-top-color: var(--accent); font-weight: 600; }

/* ---------- 2. Raqamlar ---------- */
.stats-strip { border-block: 1px solid var(--line); background: var(--bg-2); }
.stats-row { display: grid; grid-template-columns: repeat(4, 1fr); }
.stats-row div { padding: 34px 10px; text-align: center; border-left: 1px solid var(--line); }
.stats-row div:first-child { border-left: 0; }
.stats-row b { display: block; font-family: var(--f-display); font-weight: 800; font-size: clamp(34px, 5vw, 52px); line-height: 1; }
.stats-row span { color: var(--muted); font-size: 14.5px; }

/* ---------- 3. Xizmatlar ---------- */
.group-head { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; margin: 48px 0 20px; }
.tag-navy, .tag-accent { font-family: var(--f-display); font-weight: 700; text-transform: uppercase; letter-spacing: .06em;
  font-size: 17px; padding: 6px 16px; border-radius: 999px; }
.tag-navy { background: rgba(45, 79, 168, .25); color: #9db4ff; border: 1px solid rgba(45, 79, 168, .5); }
.tag-accent { background: var(--accent-soft); color: var(--accent); border: 1px solid rgba(249, 115, 22, .45); }
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(285px, 1fr)); gap: 18px; }
.card { background: var(--surface); border: 1px solid var(--line); border-radius: 20px; padding: 26px;
  transition: transform .25s ease, border-color .25s ease, background .25s ease; }
.card:hover { transform: translateY(-5px); border-color: rgba(249, 115, 22, .45); background: rgba(255, 255, 255, .06); }
.card h3 { margin-bottom: 8px; }
.card p { color: var(--muted); font-size: 15.5px; margin: 0; }
.icon { width: 52px; height: 52px; border-radius: 15px; display: grid; place-items: center; margin-bottom: 18px;
  background: linear-gradient(135deg, rgba(45, 79, 168, .55), rgba(249, 115, 22, .55)); }
.icon svg { width: 25px; height: 25px; stroke: #fff; stroke-width: 1.9; }
.soon-note { margin: 16px 2px 0; }

/* ---------- 4. Jarayon ---------- */
.features { position: relative; background: linear-gradient(180deg, var(--bg), var(--bg-3)); overflow: hidden; }
.features::before { content: ""; position: absolute; inset: 0; opacity: .3; pointer-events: none;
  background-image: linear-gradient(rgba(255, 255, 255, .05) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255, 255, 255, .05) 1px, transparent 1px);
  background-size: 64px 64px; mask-image: radial-gradient(75% 60% at 50% 45%, #000, transparent 78%); }
.features .wrap { position: relative; }
.feature { display: grid; grid-template-columns: 1fr 1fr; gap: 46px; align-items: center; margin-top: 52px; }
.feature.reverse .feature-text { order: 2; }
.feature h3 { margin: 6px 0 12px; }
.feature .muted { font-size: 16px; margin: 0; }
.viz { position: relative; border: 1px solid var(--line); border-radius: 22px; min-height: 270px;
  background: rgba(255, 255, 255, .03); overflow: hidden; display: grid; place-items: center; }

.scan .box { position: relative; width: 68%; max-width: 260px; aspect-ratio: 1;
  border: 2px solid rgba(249, 115, 22, .45); border-radius: 14px;
  background: linear-gradient(160deg, rgba(45, 79, 168, .3), transparent); }
.scan .corner { position: absolute; width: 20px; height: 20px; border: 3px solid var(--accent); }
.scan .tl { top: -3px; left: -3px; border-right: 0; border-bottom: 0; border-radius: 8px 0 0 0; }
.scan .tr { top: -3px; right: -3px; border-left: 0; border-bottom: 0; border-radius: 0 8px 0 0; }
.scan .bl { bottom: -3px; left: -3px; border-right: 0; border-top: 0; border-radius: 0 0 0 8px; }
.scan .br { bottom: -3px; right: -3px; border-left: 0; border-top: 0; border-radius: 0 0 8px 0; }
.scan .scanline { position: absolute; left: 6%; right: 6%; height: 2px; top: 10%;
  background: linear-gradient(90deg, transparent, var(--accent), transparent); box-shadow: 0 0 14px var(--accent); }
.reveal.in .scan .scanline { animation: scan 2.8s ease-in-out infinite; }
@keyframes scan { 0%, 100% { top: 10%; } 50% { top: 86%; } }
.scan .reads { position: absolute; inset: auto 0 14px; display: flex; justify-content: center; gap: 10px;
  font-family: var(--f-mono); font-size: 12.5px; color: var(--accent); flex-wrap: wrap; }
.scan .reads b { opacity: 0; background: rgba(5, 10, 16, .85); padding: 4px 8px; border-radius: 8px; font-weight: 500; }
.reveal.in .scan .reads b { animation: fadeUp .6s ease forwards; }
.reveal.in .scan .reads b:nth-child(2) { animation-delay: .5s; }
.reveal.in .scan .reads b:nth-child(3) { animation-delay: 1s; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

.shelves { display: grid; grid-template-columns: repeat(4, 1fr); place-items: stretch; align-content: center; gap: 12px; padding: 32px; width: 100%; }
.shelves span { border-radius: 10px; min-height: 50px; background: rgba(255, 255, 255, .05);
  border: 1px solid var(--line); opacity: .4; }
.reveal.in .shelves span { animation: light 3.4s ease-in-out infinite; }
.shelves span:nth-child(2) { animation-delay: .2s } .shelves span:nth-child(3) { animation-delay: .4s }
.shelves span:nth-child(4) { animation-delay: .6s } .shelves span:nth-child(5) { animation-delay: .8s }
.shelves span:nth-child(6) { animation-delay: 1s } .shelves span:nth-child(7) { animation-delay: 1.2s }
.shelves span:nth-child(8) { animation-delay: 1.4s } .shelves span:nth-child(9) { animation-delay: 1.6s }
.shelves span:nth-child(10) { animation-delay: 1.8s } .shelves span:nth-child(11) { animation-delay: 2s }
.shelves span:nth-child(12) { animation-delay: 2.2s }
@keyframes light {
  0%, 70%, 100% { opacity: .4; background: rgba(255, 255, 255, .05); border-color: var(--line); }
  20%, 45% { opacity: 1; background: var(--accent-soft); border-color: rgba(249, 115, 22, .55); }
}

.route { padding: 32px; width: 100%; place-items: stretch; align-content: center; }
.route .rail { position: relative; width: 100%; height: 3px; border-radius: 3px; background: rgba(255, 255, 255, .12); }
.route .rail i { position: absolute; top: -5px; left: 0; width: 13px; height: 13px; border-radius: 50%;
  background: var(--accent); box-shadow: 0 0 16px var(--accent); }
.reveal.in .route .rail i { animation: ride 5s cubic-bezier(.65, 0, .35, 1) infinite; }
@keyframes ride { 0% { left: 0; } 100% { left: calc(100% - 13px); } }
.route-steps { display: flex; justify-content: space-between; margin-top: 16px; gap: 6px; }
.route-steps li { font-size: 11.5px; color: var(--muted); text-align: center; flex: 1; }

/* ---------- 5. Immensus Post ---------- */
.post { background: radial-gradient(90% 70% at 15% 10%, rgba(30, 58, 138, .35), transparent 60%), var(--bg); }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 46px; align-items: start; }
.how { margin: 22px 0 26px; display: grid; gap: 12px; }
.how li { display: flex; gap: 14px; align-items: flex-start; color: rgba(243, 246, 250, .86); font-size: 16px; }
.how b { flex: none; width: 28px; height: 28px; border-radius: 50%; background: var(--accent-soft); color: var(--accent);
  display: grid; place-items: center; font: 700 14px/1 var(--f-body); }
.ticks { display: grid; gap: 11px; margin-top: 16px; }
.ticks li { position: relative; padding-left: 28px; color: rgba(243, 246, 250, .86); }
.ticks li::before { content: ""; position: absolute; left: 5px; top: 9px; width: 9px; height: 5px;
  border: solid var(--accent); border-width: 0 0 2.5px 2.5px; transform: rotate(-45deg); }
.calc { background: var(--surface); border: 1px solid var(--line); border-radius: 22px; padding: 26px; }
.dims { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.calc-out { background: rgba(5, 10, 16, .55); border-radius: 16px; padding: 18px; margin: 4px 0 14px; }
.calc-price { font-size: 38px; font-weight: 600; line-height: 1.1; }
.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: 18px; margin-top: 34px; background: var(--surface); }
table { border-collapse: collapse; width: 100%; min-width: 520px; }
thead th { font-family: var(--f-display); text-transform: uppercase; letter-spacing: .1em; font-size: 13px;
  color: var(--muted); text-align: left; padding: 14px 18px; border-bottom: 1px solid var(--line); }
tbody td { padding: 14px 18px; border-bottom: 1px solid var(--line); font-size: 15.5px; }
tbody tr:last-child td { border-bottom: none; }

/* ---------- 6. Yetkazish ---------- */
.panel { background: var(--surface); border: 1px solid var(--line); border-radius: 22px; padding: 28px; }

/* ---------- 7. Ta'qiqlangan ---------- */
.banned { background: var(--bg-3); }
.banned-list { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 10px; }
.banned-list li { position: relative; padding: 12px 16px 12px 42px; background: var(--surface);
  border: 1px solid var(--line); border-radius: 14px; color: var(--muted); font-size: 15px; }
.banned-list li::before { content: ""; position: absolute; left: 16px; top: 50%; width: 13px; height: 13px;
  margin-top: -6.5px; border-radius: 50%; border: 2px solid var(--danger); }
.banned-list li::after { content: ""; position: absolute; left: 19.5px; top: 50%; width: 8px; height: 2px;
  margin-top: -1px; background: var(--danger); }

/* ---------- 8. Aloqa ---------- */
.contact-list { display: grid; gap: 13px; margin-top: 26px; }
.contact-item { display: flex; align-items: center; gap: 14px; color: var(--muted); transition: transform .2s, color .2s; }
.contact-item:not(.static):hover { color: var(--ink); transform: translateX(6px); }
.contact-item small { display: block; color: rgba(243, 246, 250, .45); font-size: 12.5px; }
.icon-round { width: 44px; height: 44px; border-radius: 50%; background: var(--accent-soft); display: grid; place-items: center; flex: none; }
.icon-round svg { width: 19px; height: 19px; stroke: var(--accent); }
.form { background: var(--surface); border: 1px solid var(--line); border-radius: 24px; padding: 26px; display: grid; gap: 14px; }
.row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form textarea.input { resize: vertical; min-height: 120px; }

/* ---------- Futer ---------- */
.footer { background: var(--bg-3); border-top: 1px solid var(--line); padding: 56px 0 26px; }
.foot-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 34px; }
.foot-grid .logo { margin-bottom: 14px; }
.footer p { font-size: 15px; max-width: 420px; }
.footer h4 { margin-bottom: 15px; letter-spacing: .08em; }
.footer li { margin-bottom: 9px; font-size: 15px; color: var(--muted); }
.footer li a:hover { color: var(--accent); }
.foot-bottom { border-top: 1px solid var(--line); margin-top: 36px; padding-top: 20px; display: flex;
  justify-content: space-between; gap: 12px; flex-wrap: wrap; }

.to-top { position: fixed; right: 20px; bottom: 20px; width: 50px; height: 50px; border-radius: 50%; border: 0;
  background: var(--accent); color: #0a1119; display: none; place-items: center; z-index: 40;
  box-shadow: 0 12px 30px rgba(0, 0, 0, .45); }
.to-top.show { display: grid; }
.to-top svg { width: 21px; height: 21px; stroke-width: 2.6; }

/* ---------- Animatsiya ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s cubic-bezier(.16, 1, .3, 1), transform .7s cubic-bezier(.16, 1, .3, 1); }
.reveal.in { opacity: 1; transform: none; }

@media (max-width: 900px) {
  :root { --pad: 64px; }
  body { font-size: 16px; }
  .nav-links, .nav-cta { display: none; }
  .burger { display: block; }
  .two-col, .feature, .row-2, .foot-grid { grid-template-columns: 1fr; }
  .feature { gap: 24px; margin-top: 38px; }
  .feature.reverse .feature-text { order: 0; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .stats-row div { border-left: 0; border-top: 1px solid var(--line); padding: 22px 8px; }
  .stats-row div:nth-child(-n+2) { border-top: 0; }
  .stats-row div:nth-child(even) { border-left: 1px solid var(--line); }
  .viz { min-height: 210px; }
  .steps li { font-size: 10.5px; }
  .hero-inner { padding-top: calc(var(--nav-h) + 20px); }
}
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}
