/* =========================================================
   AzadTech â€” Hybrid design v4.0
   Dark tech base (Aivora palette) + HabitLine header &
   "Real numbers" stats Â· Space Grotesk + DM Sans
   ========================================================= */

@import url("https://fonts.googleapis.com/css2?family=Lobster&family=DM+Sans:opsz,wght@9..40,300;9..40,400;9..40,500;9..40,600;9..40,700&family=Space+Grotesk:wght@400;500;600;700&display=swap");

:root {
    --color-primary: #00ff97;
    --color-primary-dim: rgba(0, 255, 151, 0.14);
    --color-secondary: #00020f;
    --color-blue: #051c80;
    --color-navy: #0a1240;
    --color-heading: #ffffff;
    --color-body: #00020f;
    --color-panel: rgba(255, 255, 255, 0.05);
    --color-muted: #a7abb8;
    --color-border: rgba(255, 255, 255, 0.10);
    --color-border-strong: rgba(255, 255, 255, 0.18);
--font-heading: "Space Grotesk", sans-serif;
    --font-body: "DM Sans", sans-serif;
    --font-mono: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, monospace;
    --easing: cubic-bezier(0.67, 0.04, 0.3, 0.91);
    --radius: 18px;
    --container: 1320px;
}
:root[data-theme="light"] {
    --color-primary: #00c47e;
    --color-primary-dim: rgba(0, 196, 126, 0.14);
    --color-secondary: #0b1020;
    --color-blue: #dbe6ff;
    --color-navy: #cfe0ff;
    --color-heading: #0b1020;
    --color-body: #f4f7ff;
    --color-panel: rgba(255, 255, 255, 0.72);
    --color-muted: #56617a;
    --color-border: rgba(12, 22, 45, 0.10);
    --color-border-strong: rgba(12, 22, 45, 0.20);
}

/* â”€â”€ Reset â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-body);
    font-size: 16px; line-height: 1.7;
    color: var(--color-heading);
    background-color: var(--color-body);
    overflow-x: hidden; -webkit-font-smoothing: antialiased;
}
body::-webkit-scrollbar { width: 7px; }
body::-webkit-scrollbar-track { background: #02040f; }
body::-webkit-scrollbar-thumb { background: var(--color-primary); border-radius: 10px; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color .3s, box-shadow .3s, border-color .3s, background .3s; }
ul { list-style: none; }
button { border: 0; background: none; cursor: pointer; font-family: inherit; color: inherit; }
input, textarea, select { font-family: inherit; }
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.pos-rel { position: relative; }
.z-1 { z-index: 1; }
.text-center { text-align: center; }

/* â”€â”€ Preloader â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.preloader {
    position: fixed; inset: 0; z-index: 99999;
    background: var(--color-body);
    display: grid; place-items: center;
    transition: opacity .45s var(--easing), visibility .45s;
}
.preloader.is-loaded { opacity: 0; visibility: hidden; }
.preloader__circle { position: relative; width: 110px; height: 110px; }
.preloader__ring {
    position: absolute; inset: 0; border-radius: 50%;
    border: 2px solid rgba(255,255,255,.08); border-top-color: var(--color-primary);
    animation: preload-spin 1s linear infinite;
}
.preloader__ring--2 { inset: 12px; border-width: 2px; border-top-color: transparent; border-right-color: rgba(0,255,151,.4); animation-duration: 1.6s; animation-direction: reverse; }
.preloader__logo { position: absolute; inset: 0; display: grid; place-items: center; }
.preloader__logo img { width: 46px; animation: preload-pulse 1.2s ease-in-out infinite; }
@keyframes preload-spin { to { transform: rotate(360deg); } }
@keyframes preload-pulse { 0%,100% { transform: scale(1); opacity:1; } 50% { transform: scale(.9); opacity:.75; } }

/* â”€â”€ Custom cursor â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.cursor-dot, .cursor-ring {
    position: fixed; top: 0; left: 0; pointer-events: none; z-index: 99998;
    border-radius: 50%; will-change: transform;
}
.cursor-dot { width: 8px; height: 8px; background: var(--color-primary); box-shadow: 0 0 12px var(--color-primary); }
.cursor-ring { width: 40px; height: 40px; border: 1.5px solid rgba(0,255,151,.6); transition: width .25s, height .25s, background .25s, border-color .25s; }
.cursor-ring.is-hover { width: 64px; height: 64px; background: rgba(0,255,151,.08); border-color: var(--color-primary); }
.cursor-ring.is-label {
    width: 92px; height: 92px; background: var(--color-primary);
    display: grid; place-items: center;
    font-family: var(--font-heading); font-size: 11px; font-weight: 700;
    color: #00020f; letter-spacing: .06em; text-transform: uppercase;
}
.cursor-ring.is-label::after { content: attr(data-label); }
@media (pointer: coarse) { .cursor-dot, .cursor-ring { display: none; } }

/* â”€â”€ Back to top â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.backtotop {
    position: fixed; right: 0; bottom: 80px; z-index: 998;
    width: 46px; height: 46px; border-radius: 50%;
    display: grid; place-items: center;
    padding: 5px;
    background: var(--color-primary); color: #00020f;
    opacity: 0; visibility: hidden; transform: translateY(20px) scale(.8);
    transition: all .4s var(--easing);
    box-shadow: 0 0 24px rgba(0,255,151,.35);
}
.backtotop.is-visible { opacity: 1; visibility: visible; transform: none; }
.backtotop:hover { background: #fff; transform: translateY(-4px); }

/* â”€â”€ Header (HabitLine style chips) â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.header-area {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
}
.header__slim {
    display: flex; align-items: center; gap: 16px;
    padding: 18px 0;
    transition: padding .5s var(--easing);
}
.header__gap { flex: 1; min-width: 0; height: 4px; }
.header-area.is-scrolled .header__slim { padding: 12px 0; }
.header__logo-chip, .header__navchip, .header__action-chip {
    display: flex; align-items: center;
    height: 64px;
    background: var(--color-panel);
    border: 1px solid var(--color-border);
    backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
    border-radius: 20px;
}
.header__logo-chip, .header__action-chip { transition: transform .5s var(--easing); }
.header-area.is-scrolled .header__logo-chip, .header-area.is-scrolled .header__action-chip { transition-delay: .12s; }
.header__logo-chip { padding: 8px 20px 8px 12px; }
.header__logo-chip img { height: 42px; margin-left: 4px; }
.header__navchip { padding: 6px; gap: 4px; }
.hn-link {
    position: relative; padding: 12px 22px; border-radius: 14px;
    font-family: var(--font-heading); font-weight: 500; font-size: 15px;
    color: rgba(255,255,255,.72); white-space: nowrap;
    transition: background .3s, color .3s;
}
.hn-link:hover { color: #fff; background: rgba(255,255,255,.09); }
.hn-link.active { color: var(--color-primary); background: rgba(0,255,151,.10); }
.hn-link.active::after {
    content: ""; position: absolute; left: 50%; bottom: 5px; transform: translateX(-50%);
    width: 5px; height: 5px; border-radius: 50%; background: var(--color-primary);
    box-shadow: 0 0 10px var(--color-primary);
}
.header__action-chip { padding: 6px; gap: 8px; }
.he-btn {
    padding: 12px 24px; border-radius: 14px;
    font-family: var(--font-heading); font-weight: 600; font-size: 14px;
    color: #fff; white-space: nowrap;
}
.he-btn--solid { background: var(--color-primary); color: #02060f; box-shadow: 0 8px 24px rgba(0,255,151,.3); }
.he-btn--solid:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(0,255,151,.4); }
.he-btn--ghost { border: 1px solid var(--color-border-strong); }
.he-btn--ghost:hover { border-color: var(--color-primary); color: var(--color-primary); }
.nav-burger { display: none; flex-direction: column; gap: 5px; padding: 12px; }
.nav-burger span { width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: .35s var(--easing); }
.nav-burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.is-open span:nth-child(2) { opacity: 0; }
.nav-burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu (HabitLine style dropdown card) */
.mm-backdrop {
    position: fixed; inset: 0; background: rgba(0,0,0,.6);
    backdrop-filter: blur(3px); z-index: 1004;
    opacity: 0; visibility: hidden; transition: .4s;
}
.mm-backdrop.is-open { opacity: 1; visibility: visible; }
.mobile-menu {
    position: fixed; inset: 0; z-index: 1005;
    display: flex; align-items: center; justify-content: center;
    background: rgba(4,7,15,.97);
    visibility: hidden; opacity: 0;
    transition: opacity .35s var(--easing), visibility .35s;
}
.mobile-menu.is-open { visibility: visible; opacity: 1; }
.mobile-menu__inner { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.mobile-menu a.mm-link {
    font-family: var(--font-heading); font-weight: 600; font-size: clamp(26px, 6vw, 38px);
    padding: 16px 32px; border-radius: 16px; display: flex;
    justify-content: center; align-items: center; gap: 12px;
    color: rgba(255,255,255,.85); text-align: center;
    transition: color .25s, background .25s;
}
.mobile-menu a.mm-link span { font-size: 0.7em; opacity: 0.5; transition: transform .25s, opacity .25s; }
.mobile-menu a.mm-link:hover, .mobile-menu a.mm-link.active { background: rgba(0,255,151,.08); color: var(--color-primary); }
.mobile-menu a.mm-link:hover span { opacity: 1; transform: translateX(4px); }
.mm-cta { margin-top: 32px; display: flex; flex-direction: column; gap: 14px; align-items: center; min-width: 240px; }
.mm-close {
    position: absolute; top: 24px; right: 24px;
    background: none; border: none; color: rgba(255,255,255,.7);
    cursor: pointer; padding: 8px; border-radius: 12px;
    transition: color .25s, background .25s, transform .25s;
}
.mm-close:hover { color: #fff; background: rgba(255,255,255,.08); transform: rotate(90deg); }

/* â”€â”€ Generic section / titles â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.sec-title { margin-bottom: 40px; }
.sec-title h2.title, .section__title {
    font-family: var(--font-heading);
    font-size: clamp(30px, 4.4vw, 54px);
    line-height: 1.1; font-weight: 700; letter-spacing: -0.02em;
}
.sec-title p { color: var(--color-muted); font-size: 18px; margin-top: 14px; }
.sec-title--center { text-align: center; }
.section { position: relative; padding: 90px 0; }
.section--dark { background: #02040f; }
.section__label { display: inline-block; color: var(--color-primary); font-family: var(--font-heading); font-weight: 600; font-size: 13px; letter-spacing: .2em; text-transform: uppercase; margin-bottom: 14px; }
.section__desc { color: var(--color-muted); max-width: 560px; }
.about-hero { position: relative; text-align: center; padding: 190px 0 80px; background: radial-gradient(900px 400px at 50% 0%, rgba(5,28,128,.5), transparent 70%), var(--color-body); }
.about-hero__title { font-family: var(--font-heading); font-weight: 700; font-size: clamp(36px, 6vw, 72px); line-height: 1.05; margin-bottom: 18px; }
.about-hero__sub { color: var(--color-muted); font-size: 17px; max-width: 620px; margin: 0 auto; }

/* â”€â”€ Split-text animation â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.split { position: relative; }
.split .word { display: inline-block; overflow: hidden; vertical-align: bottom; transform: translateZ(0); }
.split .word-inner { display: inline-block; transform: translateY(115%); transition: transform .8s var(--easing); }
.split .char { display: inline-block; overflow: hidden; vertical-align: bottom; transform: translateZ(0); }
.split .char-inner { display: inline-block; transform: translateY(110%); transition: transform .65s var(--easing); }
.split.is-in .word-inner { transform: translateY(0); }
.split.is-in .char-inner { transform: translateY(0); }
.split .grad {
    background: linear-gradient(100deg, var(--color-primary), #7cf7cb 40%, #00c2ff 100%);
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent; color: transparent;
    background-size: 200% 100%;
    animation: grad-flow 5s ease infinite;
}
@keyframes grad-flow { 0%,100% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } }

/* â”€â”€ Scroll reveal â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.reveal { opacity: 0; transform: translateY(56px); transition: opacity .9s var(--easing), transform .9s var(--easing); }
.reveal.reveal--left { transform: translateX(-70px); }
.reveal.reveal--right { transform: translateX(70px); }
.reveal.reveal--zoom { transform: scale(.84) translateY(30px); }
.reveal.is-visible { opacity: 1; transform: none; }

/* â”€â”€ Roll buttons (HabitLine hover text-swap) â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.roll-btn {
    position: relative; display: inline-flex; align-items: center; justify-content: center; gap: 10px;
    overflow: hidden; border-radius: 100px;
    font-family: var(--font-heading); font-weight: 600; font-size: 15px;
    --rb-vpad: 17px; padding: var(--rb-vpad) 32px; white-space: nowrap;
    transition: transform .35s var(--easing), box-shadow .35s, background .35s, border-color .35s;
}
.roll-btn:hover { transform: translateY(-3px); }
.roll-btn .rb-upper, .roll-btn .rb-lower { display: flex; align-items: center; justify-content: center; gap: 10px; transition: transform .28s var(--easing); }
.roll-btn .rb-upper { position: relative; transition-delay: .3s; }
.roll-btn .rb-lower { position: absolute; inset: 0; transform: translateY(101%); }
.roll-btn:hover .rb-upper { transform: translateY(calc(-100% - var(--rb-vpad))); transition-delay: 0s; }
.roll-btn:hover .rb-lower { transform: translateY(0); transition-delay: .3s; }
.roll-btn--primary { background: var(--color-primary); color: #02060f; }
.roll-btn--primary:hover { box-shadow: 0 18px 44px rgba(0,255,151,.3); }
.roll-btn--ghost { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,.5); }
.roll-btn--ghost:hover { border-color: var(--color-primary); color: var(--color-primary); }

/* â”€â”€ HERO (centered, HabitLine-ish, with dashboard) â”€â”€â”€â”€â”€â”€ */
.hero {
    position: relative; min-height: 100vh;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    padding: 150px 0 60px; overflow: hidden; text-align: center;
    background:
        radial-gradient(1250px 700px at 50% -16%, rgba(8,42,190,.78), transparent 64%),
        radial-gradient(800px 500px at 90% 100%, rgba(0,255,151,.08), transparent 55%),
        radial-gradient(600px 400px at 6% 90%, rgba(0,194,255,.08), transparent 55%),
        #00020f;
}
.hero__grid {
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
    background-size: 62px 62px;
    mask-image: radial-gradient(ellipse 90% 66% at 50% 45%, #000 25%, transparent 90%);
    -webkit-mask-image: radial-gradient(ellipse 90% 66% at 50% 45%, #000 25%, transparent 90%);
    animation: grid-drift 16s linear infinite;
}
@keyframes grid-drift { to { background-position: 0 62px, 62px 0; } }
.hero__orb { position: absolute; border-radius: 50%; filter: blur(90px); pointer-events: none; }
.hero__orb--1 { width: 460px; height: 460px; top: -140px; left: 50%; transform: translateX(-50%); background: rgba(5,28,128,.65); animation: orb-float 12s ease-in-out infinite; }
.hero__orb--2 { width: 260px; height: 260px; bottom: 8%; right: 6%; background: rgba(0,255,151,.14); animation: orb-float 9s ease-in-out infinite reverse; }
.hero__orb--3 { width: 200px; height: 200px; top: 34%; left: 5%; background: rgba(0,194,255,.15); animation: orb-float 13s ease-in-out infinite 2s; }
@keyframes orb-float { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(-24px, 30px) scale(1.08); } }

/* ── Hero rotating icons (elliptical orbit around the hero) ── */
.hero__upath {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    pointer-events: none;
    z-index: 1;
}
.upath-icon {
    position: absolute; top: 50%; left: 50%;
    width: 36px; height: 36px; margin: -18px 0 0 -18px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 10px;
    background: var(--color-panel);
    border: 1px solid var(--color-border);
    box-shadow: 0 3px 8px rgba(0,0,0,.1);
    offset-path: ellipse(45% 42% at center);
    offset-rotate: 0deg;
    animation: upath-round 28s linear infinite;
}
.upath-icon:nth-child(1) { animation-delay: 0s; }
.upath-icon:nth-child(2) { animation-delay: -4.67s; }
.upath-icon:nth-child(3) { animation-delay: -9.33s; }
.upath-icon:nth-child(4) { animation-delay: -14s; }
.upath-icon:nth-child(5) { animation-delay: -18.67s; }
.upath-icon:nth-child(6) { animation-delay: -23.33s; }
.upath-icon svg { width: 18px; height: 18px; }
@keyframes upath-round {
    /* reversed travel: right -> top(faint) -> left -> bottom -> right (clockwise loop) */
    0%   { offset-distance: 100%; opacity: 1; }
    25%  { offset-distance: 75%;  opacity: .1; }
    50%  { offset-distance: 50%;  opacity: 1; }
    75%  { offset-distance: 25%;  opacity: 1; }
    100% { offset-distance: 0%;   opacity: 1; }
}

.hero__inner { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: center; }

.hero__title {
    position: relative;
    font-family: var(--font-heading);
    font-size: clamp(44px, 7vw, 92px);
    line-height: 1.03; font-weight: 700; letter-spacing: -0.03em;
    max-width: 1080px; margin-bottom: 8px;
    background: linear-gradient(90deg, #fff, #a78bfa, var(--color-primary), #00c2ff, #a78bfa, #fff);
    background-size: 300% 100%;
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent; color: transparent;
    animation: hero-color-wave 7s ease-in-out infinite;
}
.hero__title::after {
    content: "Hosting Built For";
    position: absolute; inset: 0;
    font-family: inherit; font-size: inherit; font-weight: inherit;
    line-height: inherit; letter-spacing: inherit; text-align: center;
    background: inherit; background-size: inherit;
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent; color: transparent;
    animation: inherit;
    filter: blur(28px);
    opacity: 0.5;
    pointer-events: none;
    z-index: -1;
}
@keyframes hero-color-wave {
    0% { background-position: 0% 50%; }
    40% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Hero typing line */
.hero__type-line {
    display: flex; align-items: center; justify-content: center;
    min-height: 1.4em; margin-bottom: 20px;
}
.type-text {
    font-family: 'Lobster', cursive;
    font-size: clamp(32px, 5vw, 64px);
    font-weight: 400; letter-spacing: 0.02em;
    background: linear-gradient(100deg, var(--color-primary), #7cf7cb 35%, #a78bfa 65%, #00c2ff);
    -webkit-background-clip: text; background-clip: text;
    color: transparent; -webkit-text-fill-color: transparent;
    background-size: 200% 100%; animation: grad-flow 4s ease infinite;
}
.type-cursor {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: clamp(30px, 4.5vw, 58px);
    font-weight: 300; color: var(--color-primary);
    margin-left: 2px;
    animation: cursor-blink .8s step-end infinite;
}
@keyframes cursor-blink { 0%,100% { opacity: 1; } 50% { opacity: 0; } }

.hero__desc {
    max-width: 640px; margin: 0 auto 34px;
    color: var(--color-muted); font-size: 18px; line-height: 1.85;
}
.hero__actions { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 16px; margin-bottom: 44px; }

/* Hero dashboard stage */
.hero__stage { position: relative; z-index: 2; width: min(980px, 100%); margin-top: 8px; }
.hero__panel {
    position: relative; width: 100%; border-radius: 26px;
    background: rgba(10, 14, 38, .6); backdrop-filter: blur(16px);
    border: 1px solid var(--color-border);
    box-shadow: 0 50px 120px rgba(0,0,0,.55);
    padding: 22px 26px 26px; text-align: left;
    transform-style: preserve-3d;
}
.hero__panel::before {
    content: ""; position: absolute; inset: -1px; border-radius: 27px; padding: 1px;
    background: linear-gradient(130deg, rgba(0,255,151,.45), transparent 32%, transparent 68%, rgba(0,194,255,.4));
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor; mask-composite: exclude;
    pointer-events: none;
}
.hp-bar { display: flex; align-items: center; gap: 12px; padding-bottom: 16px; margin-bottom: 16px; border-bottom: 1px solid var(--color-border); }
.hp-dots { display: flex; gap: 7px; }
.hp-dots span { width: 11px; height: 11px; border-radius: 50%; }
.hp-dots span:nth-child(1) { background: #ff5f57; }
.hp-dots span:nth-child(2) { background: #febc2e; }
.hp-dots span:nth-child(3) { background: #28c840; }
.hp-title { font-family: var(--font-heading); font-weight: 600; font-size: 14px; color: var(--color-muted); margin-left: 8px; }
.hp-url { font-size: 12px; color: rgba(255,255,255,.4); margin-left: auto; position: relative; padding-left: 14px; }
.hp-url::before { content: ""; position: absolute; left: 0; top: 50%; width: 7px; height: 7px; border-radius: 50%; background: var(--color-primary); box-shadow: 0 0 10px var(--color-primary); animation: dot-blink 1.6s ease-in-out infinite; margin-top: -3.5px; }
.hp-body { display: grid; grid-template-columns: 1.35fr .9fr; gap: 26px; align-items: stretch; }
.hp-chart-wrap { position: relative; min-height: 210px; display: flex; flex-direction: column; }
.hp-chart-head { display: flex; justify-content: space-between; margin-bottom: 10px; }
.hp-chart-head .hc-l { font-family: var(--font-heading); font-weight: 600; font-size: 15px; }
.hp-chart-head .hc-r { font-size: 13px; color: var(--color-muted); }
.hp-chart {
    flex: 1; width: 100%; min-height: 160px;
    background:
        repeating-linear-gradient(0deg, transparent 0 23px, rgba(255,255,255,.04) 23px 24px),
        repeating-linear-gradient(90deg, transparent 0 29px, rgba(255,255,255,.04) 29px 30px);
    border-radius: 14px; overflow: hidden; position: relative;
}
.hp-chart svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.hp-chart .chart-line {
    fill: none; stroke: url(#chartGrad); stroke-width: 3.5; stroke-linecap: round; stroke-linejoin: round;
    stroke-dasharray: 1400; stroke-dashoffset: 1400;
}
.hp-chart .chart-area { fill: url(#areaGrad); opacity: 0; transition: opacity 1.2s ease .9s; }
.hero__panel.is-drawn .chart-line { animation: draw-chart 2.4s var(--easing) forwards; }
.hero__panel.is-drawn .chart-area { opacity: .9; }
@keyframes draw-chart { to { stroke-dashoffset: 0; } }
.hp-side { display: grid; gap: 16px; align-content: start; }
.srv-row {
    display: flex; align-items: center; gap: 12px;
    padding: 12px 14px; border-radius: 14px;
    background: rgba(255,255,255,.04); border: 1px solid var(--color-border);
    transition: transform .35s var(--easing), border-color .35s;
}
.srv-row:hover { transform: translateX(5px); border-color: rgba(0,255,151,.35); }
.srv-row .sr-ping { flex: none; position: relative; width: 10px; height: 10px; border-radius: 50%; background: var(--color-primary); box-shadow: 0 0 10px var(--color-primary); }
.srv-row .sr-ping::after { content: ""; position: absolute; inset: -4px; border-radius: 50%; border: 1px solid var(--color-primary); animation: ping 1.8s ease-out infinite; }
@keyframes ping { 0% { transform: scale(.4); opacity: 1; } 100% { transform: scale(2); opacity: 0; } }
.srv-row .sr-name { font-family: var(--font-heading); font-weight: 600; font-size: 14px; }
.srv-row .sr-state { margin-left: auto; font-size: 12px; color: var(--color-primary); font-weight: 600; }
.srv-row .sr-state.amber { color: #ffd166; }
.srv-row .sr-state.cyan { color: #00c2ff; }
.ai-pill {
    display: flex; align-items: center; gap: 10px;
    font-size: 13px; color: var(--color-muted);
}
.ai-pill .ai-val { margin-left: auto; font-family: var(--font-heading); font-weight: 700; color: #fff; }

/* Floating chips on the stage */
.hf-card {
    position: absolute; z-index: 3;
    display: flex; align-items: center; gap: 12px;
    padding: 14px 18px; border-radius: 18px;
    background: rgba(10, 14, 38, .85);
    border: 1px solid var(--color-border);
    box-shadow: 0 24px 60px rgba(0,0,0,.5);
    transition: translate .3s ease-out;
}
.hf-card .hf-ico {
    flex: none; width: 40px; height: 40px; border-radius: 12px;
    display: grid; place-items: center; font-size: 18px;
    background: var(--color-primary-dim); color: var(--color-primary);
    border: 1px solid rgba(0,255,151,.28);
    animation: hf-float 4s ease-in-out infinite;
}
.hf-card .hf-t { font-family: var(--font-heading); font-weight: 700; font-size: 14.5px; line-height: 1.2; }
.hf-card .hf-s { font-size: 12px; color: var(--color-muted); }
.hf-card--uptime { top: -30px; right: -26px; }
.hf-card--ssl { top: 38%; left: -34px; }
.hf-card--deploy { bottom: -24px; right: 8%; }
.hf-card--bolt { bottom: 12%; left: -16px; }
@keyframes hf-float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-7px); } }

/* Scroll indicator */
.hero__scroll {
    position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; gap: 8px; z-index: 2;
    color: var(--color-muted); font-size: 11px; letter-spacing: .3em; text-transform: uppercase;
}
.hero__scroll .mouse { width: 24px; height: 40px; border-radius: 14px; border: 2px solid rgba(255,255,255,.25); position: relative; }
.hero__scroll .mouse::after {
    content: ""; position: absolute; top: 8px; left: 50%; width: 4px; height: 8px; margin-left: -2px;
    border-radius: 4px; background: var(--color-primary); box-shadow: 0 0 8px var(--color-primary);
    animation: wheel 1.6s ease-in-out infinite;
}
@keyframes wheel { 0% { transform: translateY(0); opacity: 1; } 70% { transform: translateY(14px); opacity: 0; } 100% { opacity: 0; } }

/* â”€â”€ Real numbers (HabitLine stats) â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.realnums { position: relative; padding: 110px 0 130px; overflow: hidden; background: var(--color-body); contain: layout style; }
.realnums__badge {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 8px 20px; border-radius: 100px;
    background: rgba(255,255,255,.05); border: 1px solid var(--color-border);
    font-family: var(--font-heading); font-weight: 600; font-size: 13px;
    color: var(--color-muted); margin-bottom: 20px; letter-spacing: .04em;
}
.realnums__head h2 { font-family: var(--font-heading); font-weight: 700; font-size: clamp(30px, 4.6vw, 56px); line-height: 1.08; letter-spacing: -0.02em; margin-bottom: 16px; }
.realnums__head p { color: var(--color-muted); font-size: 17px; max-width: 560px; margin: 0 auto 0; }

/* Big hero counter */
.realnums__hero { position: relative; display: flex; justify-content: center; padding: 50px 0 30px; }
.realnums__big {
    position: relative; display: flex; align-items: baseline; justify-content: center;
    font-family: var(--font-heading); font-weight: 700;
    font-size: clamp(72px, 12vw, 160px); line-height: 1; letter-spacing: -0.03em;
}
.realnums__big .rn-counter {
    background: linear-gradient(100deg, var(--color-primary), #7cf7cb 40%, #00c2ff);
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent; color: transparent;
    text-shadow: 0 0 60px rgba(0,255,151,.25);
}.realnums__big .rn-suf { color: var(--color-primary); margin-left: 4px; font-size: .6em; }
.rn-badge {
    position: absolute; top: -18px; right: -18px; transform: rotate(6deg);
    background: #fff; color: #0a0f1f;
    padding: 10px 18px; border-radius: 16px;
    font-family: var(--font-heading); font-weight: 700; font-size: 13px;
    letter-spacing: .12em;
    box-shadow: 0 20px 50px rgba(0,0,0,.5);
    white-space: nowrap;
}
.rn-badge::after { content: ""; position: absolute; left: 18px; bottom: -7px; width: 14px; height: 14px; background: #fff; transform: rotate(45deg); }


@keyframes dot-blink { 0%,100% { opacity: 1; } 50% { opacity: .25; } }

/* Cyber traffic world map (full width, no panel) */
.realnums__visual { margin-top: 44px; }
.traffic { width: 100%; }
.traffic__map { position: relative; }
.traffic__map svg { display: block; width: 100%; height: auto; }

/* World silhouette (Natural Earth-derived, styled like a threat map) */
.t-land { fill: rgba(140,160,200,.14); stroke: rgba(160,190,255,.3); stroke-width: .6; }

/* Link lines: thin faint base + coloured glow underlay */
.t-bline { fill: none; stroke: rgba(255,255,255,.16); stroke-width: 1; }
.t-glow { fill: none; stroke-width: 5; opacity: .14; filter: blur(2px); }
.t-glow--cy { stroke: #00c2ff; }
.t-glow--gr { stroke: var(--color-primary); }
.t-glow--am { stroke: #ffd166; }

/* Comet heads travelling along the arcs (SMIL animateMotion) */
.tc { will-change: transform; }
.tc-cy { fill: #00c2ff; filter: drop-shadow(0 0 5px #00c2ff); }
.tc-gr { fill: var(--color-primary); filter: drop-shadow(0 0 5px var(--color-primary)); }
.tc-am { fill: #ffd166; filter: drop-shadow(0 0 5px #ffd166); }
.tc--1 { opacity: 1; }
.tc--2 { opacity: .7; }
.tc--3 { opacity: .45; }
.tc--4 { opacity: .25; }

/* City nodes */
.t-ring { fill: none; stroke: var(--color-primary); stroke-width: 1; transform-box: fill-box; transform-origin: center; animation: tRing 2.4s ease-out infinite; }
@keyframes tRing { 0% { transform: scale(1); opacity: .9; } 60% { transform: scale(4); opacity: 0; } 100% { transform: scale(4); opacity: 0; } }
.t-node { fill: var(--color-primary); }



/* Staggered opening for the live-traffic panel content */
@keyframes map-in { from { opacity: 0; transform: scale(.965); } to { opacity: 1; transform: scale(1); } }
.traffic.is-visible .traffic__map { animation: map-in .65s var(--easing) both; }



/* Stat grid */
.realnums__grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 26px;
}
.rn-item {
    position: relative; padding: 30px 20px; border-radius: var(--radius);
    background: var(--color-panel); border: 1px solid var(--color-border);
    text-align: center; overflow: hidden;
    transition: transform .45s var(--easing), border-color .45s, box-shadow .45s;
}
.rn-item::before {
    content: ""; position: absolute; top: 0; left: 0; right: 0; height: 2px;
    background: linear-gradient(90deg, transparent, var(--color-primary), transparent);
    opacity: 0; transition: opacity .45s;
}
.rn-item:hover { transform: translateY(-8px); border-color: rgba(0,255,151,.4); box-shadow: 0 26px 60px rgba(0,0,0,.4); }
.rn-item:hover::before { opacity: 1; }
.rn-item .rn-num { font-family: var(--font-heading); font-weight: 700; font-size: clamp(34px, 4vw, 52px); line-height: 1; letter-spacing: -0.02em; }
.rn-item .rn-num .rn-u { color: var(--color-primary); }
.rn-item .rn-num .rn-c { color: var(--color-primary); }
.rn-item p { margin-top: 10px; color: var(--color-muted); font-size: 14px; font-weight: 600; }
.rn-item .rn-ico { width: 48px; height: 48px; margin: 0 auto 16px; border-radius: 14px; display: grid; place-items: center; font-size: 20px; background: var(--color-primary-dim); color: var(--color-primary); border: 1px solid rgba(0,255,151,.25); }

/* â”€â”€ Services â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.services { position: relative; padding: 120px 0; background: #02040f; overflow: hidden; contain: layout style; }
.services__bg-word { position: absolute; top: 40px; right: -30px; font-family: var(--font-heading); font-weight: 700; font-size: clamp(120px, 18vw, 260px); line-height: 1; color: transparent; -webkit-text-stroke: 1.5px rgba(255,255,255,.12); white-space: nowrap; pointer-events: none; animation: bgword-slide 18s linear infinite; }
@keyframes bgword-slide { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.services__grid { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.svc-card {
    position: relative; padding: 40px 34px; border-radius: var(--radius);
    background: linear-gradient(160deg, rgba(255,255,255,.045), rgba(255,255,255,.015));
    border: 1px solid var(--color-border); overflow: hidden;
    transition: transform .45s var(--easing), border-color .45s, box-shadow .45s;
}
.svc-card::before { content: ""; position: absolute; top: -1px; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, transparent, var(--color-primary), transparent); opacity: 0; transition: opacity .45s; }
.svc-card:hover { transform: translateY(-12px); border-color: rgba(0,255,151,.4); box-shadow: 0 30px 70px rgba(0,0,0,.5); }
.svc-card:hover::before { opacity: 1; }
.svc-card__num { position: absolute; top: 26px; right: 28px; font-family: var(--font-heading); font-weight: 700; font-size: 15px; color: var(--color-primary); opacity: .5; letter-spacing: .1em; }
.svc-card__icon { width: 66px; height: 66px; border-radius: 18px; margin-bottom: 24px; display: grid; place-items: center; background: var(--color-primary-dim); color: var(--color-primary); border: 1px solid rgba(0,255,151,.28); transition: transform .5s var(--easing), box-shadow .5s; }
.svc-card:hover .svc-card__icon { transform: rotate(-8deg) scale(1.08); box-shadow: 0 0 34px rgba(0,255,151,.35); }
.svc-card__title { font-family: var(--font-heading); font-weight: 700; font-size: 22px; margin-bottom: 12px; }
.svc-card__desc { color: var(--color-muted); font-size: 15.5px; line-height: 1.75; }
.svc-card__link { display: inline-flex; align-items: center; gap: 8px; margin-top: 20px; font-family: var(--font-heading); font-weight: 600; font-size: 14px; color: var(--color-primary); }
.svc-card__link .arrow { transition: transform .4s var(--easing); }
.svc-card__link:hover .arrow { transform: translateX(7px); }

/* â”€â”€ Why us â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.why { position: relative; padding: 130px 0; overflow: hidden; background: radial-gradient(900px 500px at 15% 8%, rgba(5,28,128,.4), transparent 60%), radial-gradient(700px 400px at 95% 100%, rgba(0,255,151,.07), transparent 60%), #020409; contain: layout style; }
.why__grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 70px; align-items: center; }
.why__check-list { margin-top: 34px; display: grid; gap: 16px; }
.why__check { display: flex; align-items: center; gap: 14px; padding: 16px 20px; border-radius: 14px; border: 1px solid var(--color-border); background: rgba(255,255,255,.025); transition: transform .4s var(--easing), border-color .4s, background .4s; }
.why__check:hover { transform: translateX(8px); border-color: rgba(0,255,151,.35); background: rgba(0,255,151,.05); }
.why__check .ck-ico { flex: none; width: 30px; height: 30px; border-radius: 50%; display: grid; place-items: center; background: var(--color-primary); color: #02060f; font-size: 12px; box-shadow: 0 0 18px rgba(0,255,151,.4); }
.why__check .ck-text { font-family: var(--font-heading); font-weight: 600; font-size: 16.5px; }
.why__check .ck-sub { display: block; font-family: var(--font-body); font-weight: 400; font-size: 13px; color: var(--color-muted); }
.chip-marquee { position: relative; overflow: hidden; padding: 26px 0; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.chip-marquee .cm-row { display: flex; width: max-content; padding: 10px 0; }
.cm-group { display: flex; gap: 18px; padding-right: 18px; }
.cm-row--a { animation: marquee 24s linear infinite; }
.cm-row--b { animation: marquee-rev 26s linear infinite; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes marquee-rev { from { transform: translateX(-50%); } to { transform: translateX(0); } }
.chip-marquee:hover .cm-row { animation-play-state: paused; }
.cm-chip { display: inline-flex; align-items: center; gap: 10px; padding: 16px 26px; border-radius: 100px; border: 1px solid var(--color-border-strong); background: rgba(255,255,255,.03); font-family: var(--font-heading); font-weight: 600; font-size: 15.5px; white-space: nowrap; color: rgba(255,255,255,.85); transition: border-color .35s, background .35s, transform .35s; }
.cm-chip .chip-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--color-primary); box-shadow: 0 0 10px var(--color-primary); }
.cm-chip:hover { border-color: var(--color-primary); background: var(--color-primary-dim); transform: translateY(-3px); }
.perf-panel { position: relative; border-radius: 24px; padding: 30px; background: rgba(10,14,40,.5); border: 1px solid var(--color-border); backdrop-filter: blur(12px); box-shadow: 0 40px 90px rgba(0,0,0,.5); overflow: hidden; }
.perf-panel::before { content: ""; position: absolute; inset: -1px; border-radius: 25px; padding: 1px; background: linear-gradient(135deg, rgba(0,255,151,.4), transparent 35%, transparent 65%, rgba(0,194,255,.35)); -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); -webkit-mask-composite: xor; mask-composite: exclude; pointer-events: none; }
.perf-panel__head { display: flex; align-items: center; gap: 10px; margin-bottom: 22px; }
.perf-panel__head .pp-dot { width: 12px; height: 12px; border-radius: 50%; }
.pp-dot--g { background: var(--color-primary); box-shadow: 0 0 10px var(--color-primary); }
.pp-dot--y { background: #ffd166; }
.pp-dot--r { background: rgba(255,255,255,.25); }
.perf-panel__title { font-family: var(--font-heading); font-weight: 700; font-size: 17px; margin-left: 6px; }
.perf-bars { display: grid; gap: 18px; }
.perf-bar .pb-row { display: flex; justify-content: space-between; font-size: 13.5px; margin-bottom: 8px; color: var(--color-muted); }
.perf-bar .pb-row b { color: #fff; font-family: var(--font-heading); }
.perf-bar .pb-track { height: 8px; border-radius: 6px; background: rgba(255,255,255,.07); overflow: hidden; }
.perf-bar .pb-fill { height: 100%; width: 0; border-radius: 6px; background: linear-gradient(90deg, var(--color-primary), #00c2ff); box-shadow: 0 0 12px rgba(0,255,151,.5); transition: width 1.6s var(--easing); }
.speed-meter { display: flex; align-items: center; justify-content: center; gap: 10px; margin-top: 24px; padding: 16px; border-radius: 14px; background: var(--color-primary-dim); border: 1px solid rgba(0,255,151,.25); font-family: var(--font-heading); font-weight: 700; font-size: 15px; }
.speed-meter .sp-val { font-size: 22px; }
.speed-meter .sp-bolt { animation: bolt-flash 1.2s ease infinite; }
@keyframes bolt-flash { 0%,100% { transform: scale(1); } 50% { transform: scale(1.25); } }

/* â”€â”€ CTA â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.cta { position: relative; padding: 80px 40px; overflow: hidden; background: var(--color-blue); border: 1px solid rgba(255,255,255,.12); border-radius: 28px; margin: 0 24px; }
.cta__orb { position: absolute; border-radius: 50%; filter: blur(80px); pointer-events: none; }
.cta__orb--1 { width: 420px; height: 420px; top: -100px; left: -80px; background: rgba(0,255,151,.25); animation: orb-float 10s ease-in-out infinite; }
.cta__orb--2 { width: 360px; height: 360px; bottom: -120px; right: -60px; background: rgba(0,194,255,.3); animation: orb-float 12s ease-in-out infinite reverse; }
.cta__content { position: relative; z-index: 2; text-align: center; max-width: 780px; margin: 0 auto; }
.cta__title { font-family: var(--font-heading); font-weight: 700; font-size: clamp(34px, 5vw, 62px); line-height: 1.06; letter-spacing: -0.02em; margin-bottom: 20px; }
.cta__desc { color: rgba(255,255,255,.78); font-size: 18px; max-width: 560px; margin: 0 auto 38px; }

/* â”€â”€ Domain search â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.dsearch { position: relative; padding: 90px 0; }
.dsearch__panel {
    position: relative; overflow: hidden;
    width: 100%; text-align: center;
    padding: 70px 60px;
    border-radius: 32px;
    background: #0d1120;
    border: 1px solid rgba(255,255,255,.08);
    box-shadow: 0 50px 120px rgba(0,0,0,.45);
}
.dsearch__beam {
    position: absolute; top: -22%; width: 108px; height: 980px;
    background: linear-gradient(165deg, rgba(255,255,255,.5) 0.51%, rgba(255,255,255,0) 64.43%);
    filter: blur(85px); pointer-events: none; z-index: 0;
}
.dsearch__beam--1 { left: 28%; transform: rotate(-50deg); }
.dsearch__beam--2 { right: 8%; transform: rotate(-45deg); }
.dsearch__head, .dsearch__foot { position: relative; z-index: 1; }
.dsearch__title {
    font-family: var(--font-heading); font-weight: 600;
    font-size: clamp(28px, 3.4vw, 42px); line-height: 1.2;
    letter-spacing: -0.02em;
    color: #ffffff; margin: 0 auto; max-width: 620px;
}
.dsearch__form {
    display: flex; align-items: center; justify-content: center;
    gap: 12px; flex-wrap: wrap;
    max-width: 520px; margin: 34px auto 26px;
}
.dsearch__input {
    flex: 1 1 300px; width: 100%; height: 50px;
    border-radius: 100px; padding: 0 22px;
    font-size: 16px; color: #ffffff;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.12);
    outline: none; transition: border-color .3s, box-shadow .3s, background .3s;
}
.dsearch__input::placeholder { color: rgba(255,255,255,.5); }
.dsearch__input:focus { border-color: var(--color-primary); background: rgba(255,255,255,.1); box-shadow: 0 0 0 4px var(--color-primary-dim); }
.dsearch__btn { height: 50px; padding: 0 30px; flex: 0 0 auto; }
.dsearch__tlds {
    display: flex; align-items: center; justify-content: center;
    gap: 48px; max-width: 420px; margin: 0 auto;
}
.dsearch__tlds span { font-family: var(--font-heading); font-size: 15px; letter-spacing: .02em; color: rgba(255,255,255,.6); }
.dsearch__divider { width: 62%; max-width: 480px; height: 1px; margin: 42px auto 40px; background: rgba(255,255,255,.12); position: relative; z-index: 1; }
.dsearch__stat {
    font-family: var(--font-heading); font-weight: 500;
    font-size: clamp(22px, 2.6vw, 32px); line-height: 1.3;
    letter-spacing: -0.01em; margin: 0 auto 20px; max-width: 720px;
    color: #ffffff;
}
.dsearch__rating { display: flex; align-items: center; justify-content: center; gap: 10px; flex-wrap: wrap; color: rgba(255,255,255,.6); font-size: 15px; }
.dsearch__rating .dsearch__stars, .dsearch__tp { color: var(--color-primary); }
.dsearch__stars { display: inline-flex; align-items: center; gap: 3px; margin: 0 4px; }

:root[data-theme="light"] .dsearch__panel { background: rgba(255,255,255,.9); border-color: rgba(15,35,70,.08); box-shadow: 0 40px 100px rgba(15,35,70,.16); }
:root[data-theme="light"] .dsearch__beam { background: linear-gradient(165deg, rgba(0,196,126,.4) 0.51%, rgba(0,196,126,0) 64.43%); }
:root[data-theme="light"] .dsearch__title { color: #0b1020; }
:root[data-theme="light"] .dsearch__input { background: rgba(15,35,70,.05); border-color: rgba(15,35,70,.12); color: #0b1020; }
:root[data-theme="light"] .dsearch__input::placeholder { color: rgba(15,35,70,.45); }
:root[data-theme="light"] .dsearch__input:focus { border-color: var(--color-primary); background: #ffffff; box-shadow: 0 0 0 4px var(--color-primary-dim); }
:root[data-theme="light"] .dsearch__tlds span { color: rgba(15,35,70,.55); }
:root[data-theme="light"] .dsearch__divider { background: rgba(15,35,70,.12); }
:root[data-theme="light"] .dsearch__stat { color: #0b1020; }
:root[data-theme="light"] .dsearch__rating { color: rgba(15,35,70,.55); }
:root[data-theme="light"] .dsearch__stars, :root[data-theme="light"] .dsearch__tp { color: var(--color-primary); }

/* â”€â”€ Footer â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.footer { position: relative; padding-top: 120px; overflow: hidden; background: #02040f; }
.footer__head { text-align: center; padding-bottom: 90px; }
.footer__title { font-family: var(--font-heading); font-weight: 700; font-size: clamp(32px, 5vw, 58px); line-height: 1.1; letter-spacing: -0.02em; }
.footer__checks { display: flex; justify-content: center; flex-wrap: wrap; gap: 12px 30px; margin: 28px 0 44px; color: var(--color-muted); font-size: 15px; }
.footer__checks li { display: inline-flex; align-items: center; gap: 9px; }
.footer__checks li svg { color: var(--color-primary); flex: none; }
.footer__nav { position: relative; border-top: 1px solid var(--color-border); padding: 60px 0 28px; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 50px; }
.footer__brand { max-width: 340px; }
.footer__logo { height: 90px; margin-bottom: 22px; }
.footer__brand p { color: var(--color-muted); font-size: 15px; line-height: 1.8; }
.footer__socials { display: flex; gap: 12px; margin-top: 26px; }
.footer__social { width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center; border: 1px solid var(--color-border-strong); color: rgba(255,255,255,.75); transition: all .35s var(--easing); }
.footer__social:hover { background: var(--color-primary); color: #02060f; border-color: var(--color-primary); transform: translateY(-4px); box-shadow: 0 10px 26px rgba(0,255,151,.3); }
.footer__heading { font-family: var(--font-heading); font-weight: 700; font-size: 17px; margin-bottom: 22px; display: flex; align-items: center; gap: 10px; }
.footer__heading::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--color-primary); box-shadow: 0 0 8px var(--color-primary); }
.footer__link { display: block; color: var(--color-muted); font-size: 15px; padding: 7px 0; position: relative; width: fit-content; }
.footer__link::after { content: ""; position: absolute; left: 0; bottom: 4px; width: 100%; height: 1px; background: var(--color-primary); transform: scaleX(0); transform-origin: left; transition: transform .4s var(--easing); }
.footer__link:hover { color: #fff; }
.footer__link:hover::after { transform: scaleX(1); }
.footer__bottom { border-top: 1px solid var(--color-border); padding: 26px 0; margin-top: 50px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; color: rgba(255,255,255,.4); font-size: 14px; }

/* â”€â”€ Existing pages (pricing/about/contact) â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.pricing-card { padding: 36px 30px; border-radius: var(--radius); border: 1px solid var(--color-border); background: var(--color-panel); }
.pricing-card--featured { border-color: var(--color-primary); box-shadow: 0 0 50px rgba(0,255,151,.15); }
.pricing-card__name { font-family: var(--font-heading); font-size: 22px; }
.pricing-card__price { font-family: var(--font-heading); font-weight: 700; font-size: 42px; margin: 14px 0; }
.pricing-card__price span:last-child { font-size: 18px; color: var(--color-muted); font-weight: 400; }
.pricing-card__features { margin: 20px 0 26px; display: grid; gap: 10px; }
.pricing-card__features li { color: var(--color-muted); display: flex; gap: 10px; }
.pricing-card__features li::before { content: none !important; }
.pricing-card__features li .ck { width: 18px; height: 18px; flex-shrink: 0; margin-top: 2px; background: var(--color-primary); -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/contain no-repeat; mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/contain no-repeat; }
.pricing-card__features li::before { content: "âœ“"; color: var(--color-primary); }
.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.feature-card { padding: 30px; border-radius: var(--radius); border: 1px solid var(--color-border); background: var(--color-panel); }
.feature-card__icon { font-size: 28px; margin-bottom: 14px; }
.feature-card__title { font-family: var(--font-heading); font-weight: 700; font-size: 19px; margin-bottom: 8px; }
.feature-card__desc { color: var(--color-muted); font-size: 15px; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 40px; }
.contact-info { padding: 36px; border-radius: var(--radius); background: var(--color-primary-dim); border: 1px solid rgba(0,255,151,.2); }
.form-group { margin-bottom: 16px; }
.form-label { display: block; margin-bottom: 8px; font-family: var(--font-heading); font-weight: 600; font-size: 14px; }
.form-input, .form-textarea, .form-select { width: 100%; padding: 15px 18px; border-radius: 12px; border: 1px solid var(--color-border); background: rgba(255,255,255,.04); color: #fff; }
.form-input:focus, .form-textarea:focus, .form-select:focus { border-color: var(--color-primary); outline: none; box-shadow: 0 0 0 3px rgba(0,255,151,.12); }
.form-textarea { height: 120px; }
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; padding: 16px 30px; border-radius: 100px; font-family: var(--font-heading); font-weight: 600; font-size: 15px; transition: all .35s var(--easing); }
.btn--primary { background: var(--color-primary); color: #02060f; }
.btn--primary:hover { transform: translateY(-3px); box-shadow: 0 16px 36px rgba(0,255,151,.3); }
.btn--ghost { border: 1px solid var(--color-border-strong); color: #fff; }
.btn--ghost:hover { border-color: var(--color-primary); color: var(--color-primary); }
.btn--accent { background: #fff; color: #02060f; }
.btn--accent:hover { background: var(--color-primary); transform: translateY(-3px); }
.btn--sm { padding: 11px 22px; font-size: 14px; }

/* Flash messages */
.flash { position: fixed; top: 84px; right: 24px; z-index: 9999; max-width: 400px; padding: 16px 22px; border-radius: 14px; font-family: var(--font-heading); font-weight: 600; font-size: 14.5px; transform: translateX(20px); opacity: 0; animation: flash-in .5s var(--easing) forwards; box-shadow: 0 20px 50px rgba(0,0,0,.4); }
.flash--success { background: var(--color-primary); color: #02060f; border-left: 4px solid #fff; }
.flash--error { background: #ff5a5a; color: #fff; border-left: 4px solid #fff; }
@keyframes flash-in { to { transform: translateX(0); opacity: 1; } }

/* â”€â”€ Responsive â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
@media (max-width: 1100px) {
    .services__grid { grid-template-columns: repeat(2, 1fr); }
    .pricing-grid { grid-template-columns: repeat(2, 1fr); }
    .feature-grid { grid-template-columns: repeat(2, 1fr); }
    .why__grid { grid-template-columns: 1fr; gap: 50px; }
    .footer__grid { grid-template-columns: 1fr 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .realnums__grid { grid-template-columns: repeat(2, 1fr); }
    .hp-body { grid-template-columns: 1fr; }
    .hf-card--ssl, .hf-card--bolt { display: none; }
}
@media (max-width: 860px) {
    /* Mobile header — slim becomes the pill */
    .header-area { padding: 12px 16px 0; }
    .header__slim {
        background: var(--color-panel); border: 1px solid var(--color-border);
        backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
        border-radius: 20px; padding: 6px 8px;
        gap: 0; transition: none;
    }
    .header-area.is-scrolled .header__slim { padding: 6px 8px; box-shadow: 0 8px 32px rgba(0,0,0,.25); }
    .header__gap { display: none; }
    .header__navchip { display: none; }
    .header__action-chip { display: none; }
    .header__logo-chip {
        background: none; border: none; backdrop-filter: none;
        height: auto; padding: 6px 12px; border-radius: 14px;
    }
    .header__logo-chip img { height: 32px; margin-left: 0; }
    .nav-burger { display: flex; margin-left: auto; opacity: .65; }
    .hero__panel { padding: 18px 16px 20px; }
.hf-card--uptime { right: -8px; top: -20px; }
    .hf-card--deploy { right: 4%; }
    .dsearch__panel { padding: 48px 30px; }
    .dsearch__tlds { gap: 30px; }
    .steps__grid { grid-template-columns: repeat(2, 1fr); }
    .why__grid { gap: 40px; }
    .theme-toggle-float { display: none; }
    :root[data-theme="light"] .header__slim { background: rgba(255,255,255,.82); box-shadow: 0 12px 40px rgba(15,35,70,.08); border-color: rgba(12,22,45,.08); }
    :root[data-theme="light"] .nav-burger span { background: #0b1020; }
}
@media (max-width: 640px) {
    .services__grid, .pricing-grid, .feature-grid { grid-template-columns: 1fr; }
    .realnums__grid { grid-template-columns: 1fr 1fr; }
    .realnums { padding: 80px 0 90px; }
    .hero { padding: 130px 0 40px; }
    .hero__title { font-size: clamp(40px, 13vw, 58px); }
    .hero__scroll { display: none; }
    .hf-card--uptime, .hf-card--deploy { position: static; }
    .hero__stage .hf-wrap { display: flex; gap: 10px; margin-top: 18px; }
    .hf-card { justify-content: center; }
    .footer__grid { grid-template-columns: 1fr; text-align: center; }
    .footer__brand { max-width: none; }
    .footer__logo { display: block; margin: 0 auto 22px; }
    .footer__socials { justify-content: center; }
    .footer__heading { justify-content: center; }
    .footer__link { width: auto; margin: 0 auto; }
    .footer__bottom { justify-content: center; text-align: center; }
    /* mobile-menu is now full-screen, no positioning override needed */
    .dsearch { padding: 60px 0 56px; }
    .dsearch__panel { padding: 34px 18px; border-radius: 22px; }
    .dsearch__form { flex-direction: column; margin: 26px auto 22px; }
    .dsearch__input { flex: 1 1 auto; width: 100%; }
    .dsearch__tlds { gap: 20px; }
    .dsearch__divider { margin: 30px auto 28px; }
    .rn-badge { right: -20px; top: -18px; transform: rotate(4deg) scale(.65); }
    /* Steps grid */
    .steps__grid { grid-template-columns: 1fr; }
    .steps { padding: 80px 0; }
    /* Why grid */
    .why__grid { grid-template-columns: 1fr; gap: 40px; }
    .why { padding: 80px 0; }
    /* CTA */
    .cta { padding: 50px 20px; margin: 0 12px; border-radius: 22px; }
    .cta__title { font-size: clamp(26px, 7vw, 40px); }
    .cta__desc { font-size: 16px; }
    /* Hero type-line + title fine-tuning */
    .hero__type-line { min-height: 1.2em; margin-bottom: 14px; }
    .type-text { font-size: clamp(26px, 7vw, 42px); }
    .type-cursor { font-size: clamp(24px, 6.5vw, 38px); }
    .hero__desc { font-size: 16px; padding: 0 8px; }
    .hero__actions { gap: 12px; margin-bottom: 30px; }
    /* Realnums visual */
    .realnums__big { font-size: clamp(56px, 14vw, 100px); }
    /* Services bg word */
    .services { padding: 80px 0; }
    .services__bg-word { font-size: 80px; right: -20px; }
    /* FAQ */
    .faq { padding: 80px 0; }
    .faq-item summary { padding: 18px 20px; font-size: 15px; gap: 12px; }
}

/* =========================================================
   v4.1 â€” typewriter, colour wave, data transfer, inner pages
   ========================================================= */
::selection { background: rgba(0, 255, 151, .9); color: #02060f; }
:focus-visible { outline: 2px solid var(--color-primary); outline-offset: 3px; }
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }
    html { scroll-behavior: auto; }
    .tf-comet { display: none; }
    .t-ring { animation: none; opacity: .4; }
    .traffic__map { animation-delay: 0s !important; }
}

/* â”€â”€ Typewriter â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.typing { display: inline-flex; align-items: baseline; }
.typing__text { white-space: pre-wrap; }
.type-caret {
    display: inline-block; width: 2px; height: 1em; margin-left: 3px;
    background: var(--color-primary);
    box-shadow: 0 0 10px var(--color-primary);
    animation: caret-blink 1.05s steps(1) infinite;
}
@keyframes caret-blink { 0%, 49% { opacity: 1; } 50%, 100% { opacity: 0; } }

/* â”€â”€ Word colour wave (each word swaps colour) â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.split--color .word-inner {
    animation: word-color 5.5s ease-in-out var(--wd-delay, 0ms) infinite;
}
@keyframes word-color {
    0%, 100% { color: rgba(255, 255, 255, .92); }
    30% { color: var(--color-primary); }
    60% { color: #00c2ff; }
    80% { color: #ffd166; }
}

/* â”€â”€ Data transfer animation â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.transfer { position: relative; padding: 110px 0; overflow: hidden; background: #02040f; }
.transfer::before {
    content: ""; position: absolute; inset: 0; pointer-events: none;
    background: radial-gradient(760px 420px at 50% 0%, rgba(5, 28, 128, .45), transparent 65%);
}
.transfer__panel {
    position: relative; display: grid; grid-template-columns: 1fr auto 1fr;
    align-items: center; gap: 34px; margin-top: 56px;
    padding: 40px 34px; border-radius: 26px;
    background: rgba(10, 14, 40, .5); border: 1px solid var(--color-border);
    backdrop-filter: blur(14px); box-shadow: 0 40px 90px rgba(0, 0, 0, .45);
    overflow: hidden;
}
.tr-node { display: flex; flex-direction: column; align-items: flex-start; gap: 12px; }
.tr-node--out { align-items: flex-end; text-align: right; }
.tr-ico {
    width: 52px; height: 52px; border-radius: 16px;
    display: grid; place-items: center; color: var(--color-primary);
    background: var(--color-primary-dim); border: 1px solid rgba(0, 255, 151, .28);
}
.tr-node--out .tr-ico { color: #00c2ff; background: rgba(0, 194, 255, .1); border-color: rgba(0, 194, 255, .28); }
.tr-num { font-family: var(--font-heading); font-weight: 700; font-size: clamp(30px, 3.4vw, 44px); line-height: 1; }
.tr-num small { font-size: .45em; color: var(--color-muted); font-weight: 500; }
.tr-label { text-transform: uppercase; letter-spacing: .18em; font-size: 11px; font-weight: 700; color: var(--color-muted); }
.tr-track {
    position: relative; width: 100%; height: 26px; overflow: hidden;
    border-radius: 8px; background: rgba(255, 255, 255, .04);
}
.tr-track::before {
    content: ""; position: absolute; left: 0; right: 0; top: 50%; height: 2px; margin-top: -1px;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 151, .55), transparent);
}
.tr-node--out .tr-track::before { background: linear-gradient(90deg, transparent, rgba(0, 194, 255, .55), transparent); }
.tr-packets { position: absolute; inset: 0; }
.tr-packets i {
    position: absolute; top: 50%; left: 12%; width: 7px; height: 7px; margin-top: -3.5px;
    border-radius: 50%; background: var(--color-primary); box-shadow: 0 0 12px var(--color-primary);
    animation: tr-packet-r 2.6s linear infinite;
}
.tr-packets i:nth-child(2) { animation-delay: 1.1s; animation-duration: 3.2s; }
.tr-packets i:nth-child(3) { animation-delay: 1.8s; animation-duration: 2.8s; }
.tr-packets--out i {
    left: auto; right: 12%; background: #00c2ff; box-shadow: 0 0 12px #00c2ff;
    animation-name: tr-packet-l;
}
.tr-packets--out i:nth-child(2) { animation-delay: .7s; animation-duration: 3.1s; }
@keyframes tr-packet-r { 0% { transform: translateX(0); } 100% { transform: translateX(660px); } }
@keyframes tr-packet-l { 0% { transform: translateX(0); } 100% { transform: translateX(-660px); } }
.tr-core {
    position: relative; width: 120px; height: 120px; border-radius: 50%;
    display: grid; place-items: center; color: #fff;
    background: radial-gradient(circle at 35% 30%, rgba(0, 255, 151, .35), rgba(5, 28, 128, .9) 70%);
    border: 1px solid rgba(0, 255, 151, .45);
    box-shadow: 0 0 50px rgba(0, 255, 151, .3), inset 0 0 40px rgba(0, 255, 151, .15);
    animation: core-pulse 3.5s ease-in-out infinite;
}
.tr-core::before, .tr-core::after {
    content: ""; position: absolute; border-radius: 50%; border: 1px dashed rgba(0, 255, 151, .4);
}
.tr-core::before { inset: -18%; animation: ring-spin 14s linear infinite; }
.tr-core::after { inset: -34%; border-color: rgba(0, 194, 255, .35); animation: ring-spin 20s linear infinite reverse; }
.tr-core svg { position: relative; z-index: 1; width: 34px; height: 34px; color: var(--color-primary); filter: drop-shadow(0 0 8px var(--color-primary)); }
.tr-unit { font-family: var(--font-heading); color: var(--color-muted); }

/* â”€â”€ Inner-page icons as SVG helpers â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.ai-pill span { display: inline-flex; align-items: center; gap: 8px; }
.feature-card__icon {
    width: 58px; height: 58px; border-radius: 16px; font-size: 0;
    background: var(--color-primary-dim); color: var(--color-primary);
    border: 1px solid rgba(0, 255, 151, .28);
    display: grid; place-items: center; margin-bottom: 18px;
}
.feature-card__icon svg { width: 26px; height: 26px; }

/* â”€â”€ Values grid â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.value-card {
    position: relative; padding: 36px 30px; border-radius: var(--radius);
    background: linear-gradient(160deg, rgba(255, 255, 255, .045), rgba(255, 255, 255, .015));
    border: 1px solid var(--color-border); overflow: hidden;
    transition: transform .45s var(--easing), border-color .45s, box-shadow .45s;
}
.value-card::before {
    content: ""; position: absolute; top: -1px; left: 0; right: 0; height: 2px;
    background: linear-gradient(90deg, transparent, var(--color-primary), transparent);
    opacity: 0; transition: opacity .45s;
}
.value-card:hover { transform: translateY(-8px); border-color: rgba(0, 255, 151, .35); box-shadow: 0 26px 60px rgba(0, 0, 0, .45); }
.value-card:hover::before { opacity: 1; }
.value-card__icon {
    width: 54px; height: 54px; border-radius: 15px; font-size: 0; margin-bottom: 20px;
    display: grid; place-items: center; color: var(--color-primary);
    background: var(--color-primary-dim); border: 1px solid rgba(0, 255, 151, .28);
}
.value-card__icon svg { width: 24px; height: 24px; }
.value-card__title { font-family: var(--font-heading); font-weight: 700; font-size: 20px; margin-bottom: 8px; }
.value-card__desc { color: var(--color-muted); font-size: 15px; line-height: 1.75; }

/* â”€â”€ Contact â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.contact-form {
    padding: 36px; border-radius: 24px;
    border: 1px solid var(--color-border);
    background: linear-gradient(160deg, rgba(255, 255, 255, .045), rgba(255, 255, 255, .015));
}
.contact-info__title { font-family: var(--font-heading); font-weight: 700; font-size: 26px; margin-bottom: 10px; }
.contact-info__desc { color: var(--color-muted); margin-bottom: 30px; }
.contact-info__item {
    display: flex; align-items: flex-start; gap: 16px; padding: 18px;
    border-radius: 16px; border: 1px solid var(--color-border); background: rgba(255, 255, 255, .03);
    transition: transform .35s var(--easing), border-color .35s, background .35s;
}
.contact-info__item + .contact-info__item { margin-top: 14px; }
.contact-info__item:hover { transform: translateX(6px); border-color: rgba(0, 255, 151, .35); background: rgba(0, 255, 151, .05); }
.contact-info__icon {
    flex: none; width: 46px; height: 46px; border-radius: 13px;
    display: grid; place-items: center; color: var(--color-primary);
    background: var(--color-primary-dim); border: 1px solid rgba(0, 255, 151, .28);
}
.contact-info__icon svg { width: 20px; height: 20px; }
.contact-info__label { font-family: var(--font-heading); font-weight: 700; font-size: 15px; }
.contact-info__value { color: var(--color-muted); font-size: 14.5px; }
.contact-form .form-input, .contact-form .form-textarea, .contact-form .form-select {
    transition: border-color .3s, box-shadow .3s, transform .3s;
}
.contact-form .form-input:focus, .contact-form .form-textarea:focus, .contact-form .form-select:focus {
    transform: translateY(-1px);
}

/* â”€â”€ Pricing â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.billing-switch {
    display: inline-flex; padding: 6px; gap: 4px;
    background: rgba(255, 255, 255, .05); border: 1px solid var(--color-border);
    border-radius: 14px; backdrop-filter: blur(10px);
}
.billing-switch button {
    padding: 12px 26px; border-radius: 10px;
    font-family: var(--font-heading); font-weight: 600; font-size: 14.5px;
    color: var(--color-muted); transition: color .3s, background .3s, box-shadow .3s;
}
.billing-switch button.is-active { background: var(--color-primary); color: #02060f; box-shadow: 0 8px 24px rgba(0, 255, 151, .3); }
.bs-save { background: var(--color-primary); color: #02060f; border-radius: 100px; padding: 2px 10px; font-size: 11px; font-weight: 700; margin-left: 6px; vertical-align: 1px; }
.pricing-card { display: flex; flex-direction: column; }
.pricing-card__desc { color: var(--color-muted); font-size: 14.5px; margin: 6px 0 14px; }
.pricing-card__period { color: var(--color-muted); font-size: 13px; margin: -4px 0 16px; }
.pricing-card__features { margin: 16px 0 26px; }
.pricing-card.is-flipping .pricing-card__price, .pricing-card.is-flipping .pricing-card__period { animation: price-flip .45s var(--easing); }
@keyframes price-flip {
    0% { opacity: 0; transform: translateY(10px) rotateX(38deg); }
    100% { opacity: 1; transform: none; }
}
.pricing-card__cta { margin-top: auto; justify-content: center; width: 100%; }

/* About hero inner animation extras */
.about-hero .hero__grid { opacity: .6; }

/* Responsive for new sections */
@media (max-width: 860px) {
    .transfer__panel { grid-template-columns: 1fr; }
    .tr-node--out { align-items: flex-start; text-align: left; }
    .tr-core { margin: 0 auto; }
    .values-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
    .transfer__panel { padding: 26px 18px; }
    .values-grid { grid-template-columns: 1fr; }
    .transfer__panel { gap: 24px; }
}

/* =========================================================
   v4.2 â€” data center animation + polish
   ========================================================= */
/* â”€â”€ Data center scene â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.dc { position: relative; padding: 96px 0 88px; overflow: hidden; background: #02040f; }
.dc::before {
    content: ""; position: absolute; inset: 0; pointer-events: none;
    background:
        radial-gradient(820px 460px at 15% 10%, rgba(5, 28, 128, .5), transparent 60%),
        radial-gradient(700px 420px at 90% 90%, rgba(0, 255, 151, .08), transparent 60%);
}
/* ── Isometric server cluster (theme-aware) ─────────── */
.dc__iso {
    position: relative; margin: 36px auto 0; max-width: 900px; line-height: 0;
    --iso-grid: rgba(96, 165, 250, .12);
    --iso-wire: rgba(103, 232, 249, .55);
    --iso-wire-soft: rgba(56, 189, 248, .1);
    --iso-plat: rgba(14, 22, 48, .5);
    --iso-face-r: #1c2753;
    --iso-face-l: #131c3e;
    --iso-topfill: rgba(96, 165, 250, .05);
}
.dc__iso svg { display: block; width: 100%; height: auto; }
.iso-grid line { stroke: var(--iso-grid); stroke-width: 1; opacity: .8; }
.iso-plat { fill: var(--iso-plat); stroke: rgba(125, 211, 252, .35); stroke-width: 1; opacity: .9; }
.iso-face--r { fill: var(--iso-face-r); stroke: var(--acc, #38bdf8); stroke-width: 1.2; opacity: .85; }
.iso-face--l { fill: var(--iso-face-l); stroke: var(--acc, #38bdf8); stroke-width: 1.2; opacity: .85; }
.iso-top { fill: var(--iso-topfill); stroke: var(--acc, #38bdf8); stroke-width: 1.2; opacity: .9; }

/* slot rows on the faces */
.iso-slots polygon { fill: var(--slc, #a78bfa); opacity: .82; }
.iso-slots--r { animation: iso-shimmer 5.2s ease-in-out infinite; }
.iso-slots--l { animation: iso-shimmer 6.4s ease-in-out infinite reverse; }
.iso-towers .iso-t:nth-child(2) .iso-slots, .iso-towers .iso-t:nth-child(3) .iso-slots { animation-delay: .8s; }
.iso-towers .iso-t:nth-child(4) .iso-slots, .iso-towers .iso-t:nth-child(5) .iso-slots { animation-delay: 1.6s; }
.iso-towers .iso-t:nth-child(6) .iso-slots, .iso-towers .iso-t:nth-child(7) .iso-slots { animation-delay: 2.3s; }
@keyframes iso-shimmer { 0%, 100% { opacity: .5; } 50% { opacity: 1; } }

/* towers assemble on scroll: slide in one-by-one from left/right */
.dc__iso.is-visible .iso-t,
.dc__iso.is-visible .iso-p {
    animation: iso-enter 2.6s cubic-bezier(.2, .75, .25, 1) both;
    animation-delay: var(--ed, 0s);
}
.dc__iso:not(.is-visible) .iso-t,
.dc__iso:not(.is-visible) .iso-p {
    animation: iso-leave 1.1s ease both;
    animation-delay: var(--ed, 0s);
}
@keyframes iso-enter {
    from { opacity: 0; transform: translateX(var(--edir, -160px)) translateY(60px); }
    to { opacity: 1; transform: translateX(0) translateY(0); }
}
@keyframes iso-leave {
    from { opacity: 1; transform: translateX(0) translateY(0); }
    to { opacity: 0; transform: translateX(var(--edir, -160px)) translateY(40px); }
}
.iso-t--main .iso-top { animation: iso-pulse 3.2s ease-in-out infinite; }
@keyframes iso-pulse { 0%, 100% { opacity: .8; } 50% { opacity: 1; } }
.iso-edge { stroke: var(--acc, #38bdf8); stroke-width: 1; opacity: .45; }
.iso-dot {
    fill: #e0f2fe; stroke: var(--slc, #a78bfa); stroke-width: 1.4;
    animation: dot-blink 1.9s ease-in-out infinite;
}

/* data-link wires on the floor */
.iso-wire-soft { fill: none; stroke: var(--iso-wire-soft); stroke-width: 10; stroke-linecap: round; }
.iso-wire {
    fill: none; stroke: var(--iso-wire); stroke-width: 1.6; stroke-linecap: round; opacity: .85;
}
.iso-wire-flow {
    fill: none; stroke: var(--iso-wire); stroke-width: 3; stroke-linecap: round;
    stroke-dasharray: 12 20; animation: iso-flow var(--wd, 1.8s) linear infinite;
}
@keyframes iso-flow { to { stroke-dashoffset: -32; } }

@media (prefers-reduced-motion: reduce) {
    .iso-slots, .iso-dot, .iso-wire-flow, .iso-t, .iso-p, .iso-t--main .iso-top { animation: none !important; }
}

/* â”€â”€ v4.2 polish â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
button, a { -webkit-tap-highlight-color: transparent; }
.roll-btn--primary, .btn--primary { position: relative; overflow: hidden; }
.roll-btn--primary::after, .btn--primary::after {
    content: ""; position: absolute; top: 0; left: -60%; width: 40%; height: 100%; pointer-events: none;
    background: linear-gradient(100deg, transparent, rgba(255, 255, 255, .5), transparent);
    transform: skewX(-20deg); animation: sheen 3.4s ease-in-out infinite;
}
@keyframes sheen { 0% { left: -60%; } 55% { left: 135%; } 100% { left: 135%; } }
.roll-btn:active { transform: translateY(0) scale(.97); }
.sec-title p { max-width: 640px; }
.sec-title.text-center p { margin-left: auto; margin-right: auto; }
.rn-item, .svc-card, .value-card, .feature-card, .pricing-card, .contact-info__item { }
.rn-item .rn-num, .realnums__big { text-shadow: 0 0 60px rgba(0, 255, 151, .18); }
.pricing-card__features li::before { flex: none; }
.feature-card { transition: transform .45s var(--easing), border-color .45s, box-shadow .45s, background .45s; }
.feature-card:hover { transform: translateY(-8px); border-color: rgba(0, 255, 151, .35); box-shadow: 0 26px 60px rgba(0, 0, 0, .45); }
.about-hero__sub .typing { min-height: 1.8em; }

@media (max-width: 640px) {
    .dc { padding: 70px 0 64px; }
    .dc__iso { margin-top: 26px; }
}
/* -----------------------------------------
   Theme toggle + Light theme
   ----------------------------------------- */
.theme-toggle {
    position: relative; width: 42px; height: 42px; border-radius: 14px;
    display: grid; place-items: center;
    color: rgba(255,255,255,.78);
    border: 1px solid var(--color-border-strong);
    background: rgba(255,255,255,.06);
    transition: background .3s, color .3s, border-color .3s, transform .3s;
}
.theme-toggle:hover { color: var(--color-primary); border-color: var(--color-primary); }
.theme-toggle:active { transform: scale(.94); }
.theme-toggle svg { width: 19px; height: 19px; position: absolute; transition: opacity .35s var(--easing), transform .5s var(--easing); }
:root .tt-sun { opacity: 1; transform: rotate(0) scale(1); }
:root .tt-moon { opacity: 0; transform: rotate(-90deg) scale(.5); }
:root[data-theme="light"] .tt-sun { opacity: 0; transform: rotate(90deg) scale(.5); }
:root[data-theme="light"] .tt-moon { opacity: 1; transform: rotate(0) scale(1); }

/* Floating theme toggle (bottom-right pill, Nexsas style) */
.theme-toggle-float {
    position: fixed; right: 0; bottom: 20px; z-index: 9999;
    width: 48px; height: 48px;
    border-radius: 16px 0 0 16px;
    display: grid; place-items: center;
    background: #ffffff; color: #10131f;
    box-shadow: -8px 14px 30px rgba(0,0,0,.35);
    transition: background .3s, color .3s, transform .3s;
}
.theme-toggle-float:hover { transform: translateY(-3px); color: var(--color-primary); }
.theme-toggle-float:active { transform: translateY(-3px) scale(.95); }
.theme-toggle-float svg { width: 18px; height: 18px; position: absolute; transition: opacity .35s var(--easing), transform .5s var(--easing); }
:root .tf-sun { opacity: 1; transform: rotate(0) scale(1); }
:root .tf-moon { opacity: 0; transform: rotate(-90deg) scale(.5); }
:root[data-theme="light"] .tf-sun { opacity: 0; transform: rotate(90deg) scale(.5); }
:root[data-theme="light"] .tf-moon { opacity: 1; transform: rotate(0) scale(1); }
:root[data-theme="light"] .theme-toggle-float { background: #10131f; color: #ffffff; box-shadow: -8px 14px 30px rgba(15,35,70,.35); }
:root[data-theme="light"] .theme-toggle-float:hover { color: var(--color-primary); }

:root[data-theme="light"] .theme-toggle { color: #4a5670; background: rgba(12,22,45,.04); }

:root[data-theme="light"] body::-webkit-scrollbar-track { background: #e6ecf8; }
:root[data-theme="light"] .hn-link { color: #33415e; }
:root[data-theme="light"] .hn-link:hover { color: #0b1020; background: rgba(12,22,45,.06); }
:root[data-theme="light"] .mobile-menu { background: rgba(255,255,255,.97); }
:root[data-theme="light"] .mobile-menu a.mm-link { color: #0b1020; }
:root[data-theme="light"] .mobile-menu a.mm-link:hover, :root[data-theme="light"] .mobile-menu a.mm-link.active { background: rgba(0,255,151,.08); color: var(--color-primary); }
:root[data-theme="light"] .mm-close { color: rgba(12,22,45,.7); }
:root[data-theme="light"] .mm-close:hover { color: #0b1020; background: rgba(12,22,45,.06); }

:root[data-theme="light"] .hero {
    background:
        radial-gradient(1200px 660px at 50% -14%, rgba(160,195,255,.55), transparent 64%),
        radial-gradient(800px 500px at 90% 100%, rgba(0,196,126,.10), transparent 55%),
        radial-gradient(600px 400px at 6% 90%, rgba(0,160,255,.10), transparent 55%),
        var(--color-body);
}
:root[data-theme="light"] .hero__grid {
    background-image:
        linear-gradient(rgba(12,22,45,.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(12,22,45,.05) 1px, transparent 1px);
}
:root[data-theme="light"] .hero__badge { background: rgba(12,22,45,.04); color: #33415e; }
:root[data-theme="light"] .hero__orb--1 { background: rgba(160,195,255,.4); }
:root[data-theme="light"] .hero__orb--2 { background: rgba(0,196,126,.12); }
:root[data-theme="light"] .hero__orb--3 { background: rgba(0,160,255,.14); }

:root[data-theme="light"] .hero__panel {
    background: rgba(255,255,255,.82);
    box-shadow: 0 40px 90px rgba(15,35,70,.16);
}
:root[data-theme="light"] .srv-row { background: rgba(12,22,45,.03); }
:root[data-theme="light"] .hp-url { color: rgba(12,22,45,.5); }

:root[data-theme="light"] .t-land { fill: rgba(12,22,45,.07); stroke: rgba(12,22,45,.22); }
:root[data-theme="light"] .t-bline { stroke: rgba(12,22,45,.22); }

:root[data-theme="light"] .realnums__badge { background: rgba(12,22,45,.04); }
:root[data-theme="light"] .rn-badge { background: #fff; color: #0a0f1f; box-shadow: 0 20px 50px rgba(15,35,70,.2); }
:root[data-theme="light"] .rn-badge::after { background: #fff; }

:root[data-theme="light"] .svc-card, :root[data-theme="light"] .value-card {
    background: linear-gradient(160deg, rgba(255,255,255,.85), rgba(255,255,255,.6));
}
:root[data-theme="light"] .svc-card:hover, :root[data-theme="light"] .value-card:hover { box-shadow: 0 30px 70px rgba(15,35,70,.14); }

:root[data-theme="light"] .perf-panel {
    background: rgba(255,255,255,.85);
    box-shadow: 0 40px 90px rgba(15,35,70,.16);
}
:root[data-theme="light"] .cm-chip { background: rgba(12,22,45,.03); color: #33415e; }
:root[data-theme="light"] .perf-bar .pb-track { background: rgba(12,22,45,.08); }
:root[data-theme="light"] .why__check { background: rgba(12,22,45,.025); }
:root[data-theme="light"] .billing-switch { background: rgba(12,22,45,.04); }

:root[data-theme="light"] .form-input, :root[data-theme="light"] .form-textarea, :root[data-theme="light"] .form-select { background: rgba(255,255,255,.9); color: #0b1020; }
:root[data-theme="light"] .contact-info__item { background: rgba(12,22,45,.03); }

:root[data-theme="light"] .tr-track { background: rgba(12,22,45,.04); border: 1px solid rgba(12,22,45,.08); }

:root[data-theme="light"] .cta { background: #dbe6ff; border-color: rgba(12,22,45,.1); }
:root[data-theme="light"] .cta__desc { color: #33415e; }
:root[data-theme="light"] .footer { background: #eef2fb; }
:root[data-theme="light"] .footer__bottom { color: rgba(12,22,45,.5); }
:root[data-theme="light"] .footer__socials a svg, :root[data-theme="light"] .footer__checks { color: #56617a; }
:root[data-theme="light"] .about-hero { background: radial-gradient(900px 400px at 50% 0%, rgba(160,195,255,.4), transparent 70%), var(--color-body); }
:root[data-theme="light"] .billing-switch .bs-btn { background: rgba(255,255,255,.85); }


/* =========================================================
   v5 â€” Nexsas-style layout (marquee, steps, FAQ, footer)
   Shared structure; colours follow the active theme tokens.
   ========================================================= */

/* â”€â”€ Logo/tech marquee band â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.marquee { position: relative; padding: 26px 0 46px; overflow: hidden; background: var(--color-body); }
.marquee::before { content: ""; position: absolute; inset: 0; pointer-events: none; background: radial-gradient(600px 120px at 50% 0%, rgba(0,255,151,.05), transparent 70%); }
.marquee__tag { display: inline-flex; align-items: center; gap: 10px; margin-bottom: 24px; padding: 8px 18px; border-radius: 100px; border: 1px solid var(--color-border); background: var(--color-panel); font-family: var(--font-mono); font-size: 11.5px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--color-muted); }
.marquee__tag i { width: 7px; height: 7px; border-radius: 50%; background: var(--color-primary); box-shadow: 0 0 10px var(--color-primary); animation: dot-blink 1.5s ease-in-out infinite; }
.marquee__viewport { position: relative; overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); }
.marquee__track { display: flex; width: max-content; animation: mq-scroll 34s linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__row { display: flex; align-items: center; flex: none; }
.marquee__word { flex: none; display: inline-flex; align-items: center; gap: 26px; padding: 10px 26px; font-family: var(--font-heading); font-weight: 700; font-size: clamp(28px, 4vw, 46px); line-height: 1; letter-spacing: -0.01em; color: var(--color-heading); opacity: .32; white-space: nowrap; transition: opacity .4s var(--easing), transform .4s var(--easing); }
.marquee__word svg { width: 0.9em; height: 0.9em; color: var(--color-primary); opacity: .9; }
.marquee__word:hover { opacity: .8; }
.marquee__dot { flex: none; width: 9px; height: 9px; border-radius: 50%; background: var(--color-primary); box-shadow: 0 0 14px var(--color-primary); opacity: .5; }
@keyframes mq-scroll { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee__track { width: 100%; flex-wrap: wrap; justify-content: center; animation: none; } }

/* â”€â”€ 4-step process â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.steps { position: relative; padding: 110px 0 120px; overflow: hidden; background: var(--color-body); contain: layout style; }
.steps__grid { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; margin-top: 56px; }

.step { position: relative; padding: 34px 28px; border-radius: var(--radius); border: 1px solid var(--color-border); background: var(--color-panel); transition: transform .5s var(--easing), border-color .5s, box-shadow .5s; }
.step:hover { transform: translateY(-10px); border-color: rgba(0,255,151,.4); box-shadow: 0 30px 60px rgba(0,0,0,.28); }
.step__num { width: 66px; height: 66px; border-radius: 20px; display: grid; place-items: center; margin-bottom: 24px; font-family: var(--font-mono); font-weight: 700; font-size: 20px; color: var(--color-primary); background: var(--color-primary-dim); border: 1px solid rgba(0,255,151,.28); transition: transform .5s var(--easing), color .5s, background .5s; }
.step:hover .step__num { background: var(--color-primary); color: #02060f; transform: rotate(-6deg) scale(1.08); }
.step__title { font-family: var(--font-heading); font-weight: 700; font-size: 21px; letter-spacing: -0.01em; margin-bottom: 10px; }
.step__desc { color: var(--color-muted); font-size: 15px; line-height: 1.75; }
.step__arrow { display: inline-flex; align-items: center; gap: 8px; margin-top: 18px; font-family: var(--font-heading); font-weight: 600; font-size: 13.5px; color: var(--color-primary); opacity: 0; transform: translateX(-8px); transition: opacity .4s var(--easing), transform .4s var(--easing); }
.step:hover .step__arrow { opacity: 1; transform: translateX(0); }
.step__arrow-svg { flex: none; }

/* â”€â”€ FAQ accordion â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.faq { position: relative; padding: 110px 0 120px; background: var(--color-body); contain: layout style; }
.faq__list { max-width: 840px; margin: 56px auto 0; display: grid; gap: 14px; }
.faq-item { border: 1px solid var(--color-border); border-radius: 18px; background: var(--color-panel); overflow: hidden; transition: border-color .4s, box-shadow .4s, background .4s; }
.faq-item:hover { border-color: rgba(0,255,151,.35); }
.faq-item[open] { border-color: rgba(0,255,151,.55); box-shadow: 0 24px 60px rgba(0,0,0,.22); }
.faq-item summary { list-style: none; cursor: pointer; display: flex; align-items: center; gap: 16px; padding: 22px 26px; font-family: var(--font-heading); font-weight: 600; font-size: 17px; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::marker { content: ""; }
.faq-item__ico { flex: none; width: 34px; height: 34px; border-radius: 12px; display: grid; place-items: center; color: var(--color-primary); background: var(--color-primary-dim); border: 1px solid rgba(0,255,151,.3); transition: transform .5s var(--easing), background .5s, color .5s; }
.faq-item[open] .faq-item__ico { background: var(--color-primary); color: #02060f; transform: rotate(45deg); }
.faq-item__answer { padding: 0 26px 24px 76px; color: var(--color-muted); font-size: 15px; line-height: 1.8; }
.faq-item__answer a { color: var(--color-primary); font-weight: 600; }

/* â”€â”€ Hover polish shared across sections â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
@media (hover: hover) {
    .svc-card__link .arrow, .step__arrow-svg { transition: transform .45s var(--easing); }
    .svc-card:hover .svc-card__link .arrow, .step:hover .step__arrow-svg { transform: translateX(6px); }
}
.sec-line { width: 46px; height: 3px; border-radius: 3px; margin: 18px 0 0; background: linear-gradient(90deg, var(--color-primary), transparent); }

/* =========================================================
   NEXSAS-STYLE LIGHT THEME (data-theme="light")
   ========================================================= */
:root[data-theme="light"] body { background-color: #ffffff; }
:root[data-theme="light"] .hero {
    background:
        radial-gradient(1200px 620px at 50% -12%, rgba(214,233,255,.9), transparent 62%),
        radial-gradient(820px 480px at 92% 100%, rgba(0,196,126,.1), transparent 55%),
        radial-gradient(760px 460px at 6% 92%, rgba(0,160,255,.1), transparent 55%),
        #ffffff;
}
:root[data-theme="light"] .hero__grid { background-image: linear-gradient(rgba(12,22,45,.05) 1px, transparent 1px), linear-gradient(90deg, rgba(12,22,45,.05) 1px, transparent 1px); }
:root[data-theme="light"] .hero__orb--1 { background: rgba(190,214,255,.55); }
:root[data-theme="light"] .hero__orb--2 { background: rgba(0,196,126,.1); }
:root[data-theme="light"] .hero__orb--3 { background: rgba(0,160,255,.12); }
:root[data-theme="light"] .upath-icon { background: rgba(255,255,255,.85); border-color: rgba(12,22,45,.1); box-shadow: 0 3px 8px rgba(15,35,70,.06); }
:root[data-theme="light"] .hero__badge { background: rgba(255,255,255,.8); color: #33415e; border-color: rgba(12,22,45,.12); box-shadow: 0 10px 30px rgba(15,35,70,.08); }
:root[data-theme="light"] .hero__title { background: linear-gradient(90deg, #0b1020, #7c5ce0, var(--color-primary), #00c2ff, #7c5ce0, #0b1020); background-size: 300% 100%; -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent; animation: hero-color-wave 7s ease-in-out infinite; }
:root[data-theme="light"] .hero__desc { color: #56617a; }
:root[data-theme="light"] .hero__scroll .mouse { border-color: rgba(12,22,45,.3); }
:root[data-theme="light"] .hero__scroll { color: #56617a; }

:root[data-theme="light"] .hero__panel { background: rgba(255,255,255,.9); box-shadow: 0 40px 100px rgba(15,35,70,.16); }
:root[data-theme="light"] .hero__panel::before { background: linear-gradient(130deg, rgba(0,196,126,.5), transparent 32%, transparent 68%, rgba(0,160,255,.45)); }
:root[data-theme="light"] .hp-chart { background: repeating-linear-gradient(0deg, transparent 0 23px, rgba(12,22,45,.05) 23px 24px), repeating-linear-gradient(90deg, transparent 0 29px, rgba(12,22,45,.05) 29px 30px); }
:root[data-theme="light"] .hp-title { color: #56617a; }
:root[data-theme="light"] .hp-url { color: rgba(12,22,45,.55); }
:root[data-theme="light"] .srv-row { background: rgba(12,22,45,.03); border-color: rgba(12,22,45,.06); }
:root[data-theme="light"] .srv-row .sr-name { color: #1c2238; }
:root[data-theme="light"] .ai-pill { color: #56617a; }
:root[data-theme="light"] .ai-pill .ai-val { color: #0b1020; }
:root[data-theme="light"] .hf-card { background: rgba(255,255,255,.94); box-shadow: 0 24px 60px rgba(15,35,70,.18); }

:root[data-theme="light"] .realnums { background: #f4f6fb; }
:root[data-theme="light"] .realnums__badge { background: rgba(255,255,255,.85); color: #4a5670; }
:root[data-theme="light"] .rn-counter { text-shadow: none; }

:root[data-theme="light"] .t-land { fill: rgba(12,22,45,.07); stroke: rgba(12,22,45,.22); }
:root[data-theme="light"] .t-bline { stroke: rgba(12,22,45,.22); }
:root[data-theme="light"] .rn-item { background: rgba(255,255,255,.9); color: #10131f; }
:root[data-theme="light"] .rn-item .rn-num { text-shadow: none; }
:root[data-theme="light"] .rn-item p { color: #56617a; }
:root[data-theme="light"] .rn-item:hover, :root[data-theme="light"] .value-card:hover, :root[data-theme="light"] .feature-card:hover, :root[data-theme="light"] .step:hover { box-shadow: 0 26px 60px rgba(15,35,70,.16); border-color: rgba(0,196,126,.5); }

:root[data-theme="light"] .realnums__head h2, :root[data-theme="light"] .sec-title h2.title { color: #10131f; }
:root[data-theme="light"] .realnums__head p, :root[data-theme="light"] .sec-title p { color: #56617a; }

:root[data-theme="light"] .services { background: #ffffff; }
:root[data-theme="light"] .services__bg-word { -webkit-text-stroke: 1.5px rgba(12,22,45,.12); }
:root[data-theme="light"] .svc-card { background: #ffffff; box-shadow: 0 4px 24px rgba(15,35,70,.04); }
:root[data-theme="light"] .svc-card:hover { box-shadow: 0 30px 70px rgba(15,35,70,.14); }

:root[data-theme="light"] .why { background: radial-gradient(900px 500px at 15% 8%, rgba(214,233,255,.7), transparent 60%), radial-gradient(700px 400px at 95% 100%, rgba(0,196,126,.08), transparent 60%), #ffffff; }
:root[data-theme="light"] .why__check { background: rgba(255,255,255,.85); }
:root[data-theme="light"] .why__check:hover { border-color: rgba(0,196,126,.5); background: rgba(255,255,255,1); }
:root[data-theme="light"] .perf-panel { background: rgba(255,255,255,.92); box-shadow: 0 30px 80px rgba(15,35,70,.14); }
:root[data-theme="light"] .perf-panel::before { background: linear-gradient(135deg, rgba(0,196,126,.45), transparent 35%, transparent 65%, rgba(0,160,255,.4)); }
:root[data-theme="light"] .perf-bar .pb-row { color: #56617a; }
:root[data-theme="light"] .perf-bar .pb-row b { color: #10131f; }
:root[data-theme="light"] .perf-bar .pb-track { background: rgba(12,22,45,.08); }
:root[data-theme="light"] .speed-meter { color: #10131f; }
:root[data-theme="light"] .cm-chip { background: rgba(255,255,255,.9); color: #1c2238; }
:root[data-theme="light"] .cm-chip:hover { background: #fff; }

:root[data-theme="light"] .dc { background: #f4f6fb; }
:root[data-theme="light"] .dc::before { background: radial-gradient(820px 460px at 15% 10%, rgba(214,233,255,.7), transparent 60%), radial-gradient(700px 420px at 90% 90%, rgba(0,196,126,.07), transparent 60%); }
:root[data-theme="light"] .dc__iso {
    --iso-grid: rgba(2, 132, 199, .16);
    --iso-wire: rgba(3, 105, 161, .6);
    --iso-wire-soft: rgba(2, 132, 199, .09);
    --iso-plat: rgba(255, 255, 255, .85);
    --iso-face-r: #ffffff;
    --iso-face-l: #e3e9f7;
    --iso-topfill: rgba(255, 255, 255, .8);
}
:root[data-theme="light"] .dc__iso .iso-face--r,
:root[data-theme="light"] .dc__iso .iso-face--l,
:root[data-theme="light"] .dc__iso .iso-top { stroke-opacity: .7; }
:root[data-theme="light"] .dc__iso .iso-edge { stroke: rgba(2, 132, 199, .45); }
:root[data-theme="light"] .dc__iso .iso-slots polygon { opacity: .95; }
:root[data-theme="light"] .dc__iso .iso-dot { fill: #0f172a; }
:root[data-theme="light"] .tr-track { background: rgba(12,22,45,.05); border: 1px solid rgba(12,22,45,.08); }
:root[data-theme="light"] .tr-core { border-color: rgba(0,196,126,.5); }

:root[data-theme="light"] .faq { background: #ffffff; }
:root[data-theme="light"] .faq-item { background: #ffffff; box-shadow: 0 4px 24px rgba(15,35,70,.04); }
:root[data-theme="light"] .faq-item[open], :root[data-theme="light"] .faq-item:hover { box-shadow: 0 24px 60px rgba(15,35,70,.14); }

:root[data-theme="light"] .cta { background: linear-gradient(130deg, #10131f, #0e2233 60%, #123f3c); }
:root[data-theme="light"] .cta__title { color: #fff; }
:root[data-theme="light"] .cta__desc { color: rgba(255,255,255,.78); }
:root[data-theme="light"] .cta .grad { background: linear-gradient(100deg, #00ffa3, #6fe8cf 40%, #7ad0ff 100%); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
:root[data-theme="light"] .cta .roll-btn--primary { background: #10131f; color: #fff; }
:root[data-theme="light"] .cta .roll-btn--primary:hover { box-shadow: 0 18px 44px rgba(0,255,163,.35); }

/* Footer â€” Nexsas-style elevated light panel */
:root[data-theme="light"] .footer { background: #eef1f8; }
:root[data-theme="light"] .footer__title { color: #10131f; }
:root[data-theme="light"] .footer__checks { color: #4a5670; }
:root[data-theme="light"] .footer__nav { border-color: rgba(12,22,45,.08); }
:root[data-theme="light"] .footer__brand p { color: #56617a; }
:root[data-theme="light"] .footer__heading { color: #10131f; }
:root[data-theme="light"] .footer__heading::before { background: var(--color-primary); box-shadow: 0 0 8px var(--color-primary); }
:root[data-theme="light"] .footer__link { color: #4a5670; }
:root[data-theme="light"] .footer__link:hover { color: #0b1020; }
:root[data-theme="light"] .footer__bottom { color: #4a5670; }
:root[data-theme="light"] .footer__social { border-color: rgba(12,22,45,.16); color: #56617a; }
:root[data-theme="light"] .footer__social:hover { background: var(--color-primary); color: #02060f; border-color: var(--color-primary); }

/* Light: buttons follow the Nexsas black-pill look */
:root[data-theme="light"] .roll-btn--primary { background: #10131f; color: #fff; box-shadow: 0 10px 26px rgba(15,35,70,.18); }
:root[data-theme="light"] .roll-btn--primary:hover { box-shadow: 0 16px 34px rgba(15,35,70,.26); }
:root[data-theme="light"] .roll-btn--ghost, :root[data-theme="light"] .btn--ghost { color: #0b1020; border-color: rgba(12,22,45,.35); }
:root[data-theme="light"] .roll-btn--ghost:hover, :root[data-theme="light"] .btn--ghost:hover { color: var(--color-primary); border-color: var(--color-primary); }

:root[data-theme="light"] .he-btn--solid { background: #10131f; color: #fff; box-shadow: 0 10px 26px rgba(15,35,70,.16); }
:root[data-theme="light"] .theme-toggle { color: #4a5670; background: rgba(255,255,255,.8); border-color: rgba(12,22,45,.14); }
:root[data-theme="light"] .theme-toggle:hover { color: var(--color-primary); border-color: var(--color-primary); }
:root[data-theme="light"] .hn-link { color: #33415e; }
:root[data-theme="light"] .hn-link:hover { color: #0b1020; background: rgba(12,22,45,.06); }
:root[data-theme="light"] .hn-link.active { color: var(--color-primary); background: rgba(0,196,126,.12); }
:root[data-theme="light"] .he-btn--ghost { color: #0b1020; border-color: rgba(12,22,45,.2); }
:root[data-theme="light"] .he-btn--ghost:hover { color: var(--color-primary); border-color: var(--color-primary); }
:root[data-theme="light"] .nav-burger span { background: #0b1020; }

:root[data-theme="light"] .header__logo-chip, :root[data-theme="light"] .header__navchip, :root[data-theme="light"] .header__action-chip { background: rgba(255,255,255,.82); box-shadow: 0 12px 40px rgba(15,35,70,.08); }
:root[data-theme="light"] .preloader__ring { border-color: rgba(12,22,45,.1); }
:root[data-theme="light"] .preloader__ring--2 { border-top-color: transparent; border-right-color: rgba(0,196,126,.5); }
:root[data-theme="light"] .cursor-dot { box-shadow: 0 0 12px var(--color-primary); }
:root[data-theme="light"] .flash { box-shadow: 0 20px 50px rgba(15,35,70,.2); }

/* Light form + pricing page tweaks */
:root[data-theme="light"] .form-input, :root[data-theme="light"] .form-textarea, :root[data-theme="light"] .form-select { background: #fff; color: #0b1020; border-color: rgba(12,22,45,.14); }
:root[data-theme="light"] .contact-info__item { background: rgba(255,255,255,.9); }
:root[data-theme="light"] .contact-info__value { color: #56617a; }
:root[data-theme="light"] .pricing-card { background: #ffffff; box-shadow: 0 4px 24px rgba(15,35,70,.04); }
:root[data-theme="light"] .pricing-card--featured { border-color: var(--color-primary); box-shadow: 0 0 50px rgba(0,196,126,.2); }
:root[data-theme="light"] .billing-switch { background: rgba(12,22,45,.06); }
:root[data-theme="light"] .billing-switch button.is-active { background: #10131f; color: #fff; box-shadow: none; }
:root[data-theme="light"] .feature-card { background: #ffffff; box-shadow: 0 4px 24px rgba(15,35,70,.04); }
:root[data-theme="light"] .value-card { background: #ffffff; box-shadow: 0 4px 24px rgba(15,35,70,.04); }
:root[data-theme="light"] .btn--primary { background: #10131f; color: #fff; }
:root[data-theme="light"] .btn--primary:hover { box-shadow: 0 16px 36px rgba(15,35,70,.26); }
:root[data-theme="light"] .btn--ghost { color: #10131f; border-color: rgba(12,22,45,.25); background: transparent; }
:root[data-theme="light"] .btn--ghost:hover { border-color: var(--color-primary); color: var(--color-primary); }
:root[data-theme="light"] .transfer__panel { background: rgba(255,255,255,.92); box-shadow: 0 30px 80px rgba(15,35,70,.14); }
:root[data-theme="light"] .about-hero { background: radial-gradient(900px 400px at 50% 0%, rgba(214,233,255,.8), transparent 70%), #ffffff; }
:root[data-theme="light"] .backtotop { background: #10131f; color: #fff; }
:root[data-theme="light"] .section--dark { background: var(--color-body); }
:root[data-theme="light"] .section--dark .feature-card { background: rgba(12,22,45,.03); border-color: rgba(12,22,45,.1); }
:root[data-theme="light"] .section--dark .feature-card__icon { background: rgba(0,196,126,.1); border-color: rgba(0,196,126,.2); }
:root[data-theme="light"] .section--dark .feature-card__title { color: #0b1020; }
:root[data-theme="light"] .section--dark .feature-card__desc { color: #56617a; }
:root[data-theme="light"] .pricing-card__features li { color: #56617a; }
:root[data-theme="light"] .about-hero__sub { color: #56617a; }
:root[data-theme="light"] .contact-info__desc { color: #56617a; }
:root[data-theme="light"] .form-label { color: #0b1020; }

:root[data-theme="light"] .marquee__word { color: #10131f; opacity: .35; }
:root[data-theme="light"] .marquee__word:hover { opacity: .85; }
:root[data-theme="light"] .step__title { color: #10131f; }


/* ── v5 responsive ─────────────────────────── */
@media (max-width: 1100px) {
    .steps__grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
    .steps__grid::before { display: none; }
}
@media (max-width: 640px) {
    .steps { padding: 80px 0 90px; }
    .faq { padding: 80px 0 90px; }
    .marquee { padding-bottom: 30px; }
    .marquee__word { font-size: 20px; padding: 8px 14px; gap: 14px; }
    .marquee__dot { width: 6px; height: 6px; }
    .faq-item summary { font-size: 15.5px; padding: 18px 20px; }
    .faq-item__answer { padding: 0 20px 20px 20px; }
}

/* v5 polish */
.marquee .container { text-align: center; }
.marquee__tag { margin-inline: auto; }

