/* FITVM modern redesign — production-ready static styles */
:root {
  --brand: #e63224;
  --brand-deep: #c71d15;
  --brand-soft: #fff0ee;
  --ink: #17213a;
  --ink-2: #34405c;
  --muted: #69738a;
  --line: #e3e8f2;
  --line-strong: #d5ddeb;
  --surface: #ffffff;
  --surface-2: #f6f8fc;
  --surface-3: #eef2f8;
  --navy: #0c1428;
  --navy-2: #111c36;
  --navy-3: #182746;
  --blue: #2867f0;
  --cyan: #15b5c8;
  --green: #16a66a;
  --amber: #ee9c19;
  --purple: #7256e8;
  --shadow-sm: 0 8px 24px rgba(19, 31, 61, .07);
  --shadow: 0 22px 60px rgba(20, 33, 67, .12);
  --shadow-lg: 0 35px 90px rgba(6, 14, 34, .2);
  --radius-sm: 12px;
  --radius: 20px;
  --radius-lg: 30px;
  --container: 1180px;
  --header-h: 82px;
  color-scheme: light;
}

html[data-theme="dark"] {
  --ink: #f6f8ff;
  --ink-2: #d6dcef;
  --muted: #9aa8c4;
  --line: #263451;
  --line-strong: #334263;
  --surface: #111a2e;
  --surface-2: #0b1325;
  --surface-3: #18233b;
  --brand-soft: #331a1f;
  --shadow-sm: 0 8px 24px rgba(0, 0, 0, .2);
  --shadow: 0 22px 60px rgba(0, 0, 0, .3);
  --shadow-lg: 0 35px 90px rgba(0, 0, 0, .4);
  color-scheme: dark;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 104px; }
body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--surface);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }
::selection { color: #fff; background: var(--brand); }

.skip-link {
  position: fixed;
  z-index: 9999;
  left: 18px;
  top: -80px;
  padding: 10px 16px;
  border-radius: 10px;
  color: #fff;
  background: var(--brand);
  transition: top .2s ease;
}
.skip-link:focus { top: 16px; }

.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.container-wide { width: min(calc(100% - 40px), 1320px); margin-inline: auto; }
.section { position: relative; padding: 104px 0; }
.section-sm { padding: 74px 0; }
.section-surface { background: var(--surface-2); }
.section-dark {
  color: #fff;
  background:
    radial-gradient(circle at 10% 10%, rgba(230, 50, 36, .17), transparent 31%),
    radial-gradient(circle at 92% 86%, rgba(40, 103, 240, .14), transparent 29%),
    var(--navy);
}
.section-dark .section-copy,
.section-dark .muted { color: #aebbd3; }
.section-head { max-width: 720px; margin-bottom: 46px; }
.section-head.center { margin-inline: auto; text-align: center; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 14px;
  color: var(--brand);
  font-size: .77rem;
  font-weight: 800;
  letter-spacing: .14em;
  line-height: 1.1;
  text-transform: uppercase;
}
.eyebrow::before {
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  content: "";
}
.eyebrow.light { color: #ff8e83; }
.section-title {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.55rem);
  line-height: 1.08;
  letter-spacing: -.045em;
}
.section-title span, .text-gradient {
  color: var(--brand);
  background: linear-gradient(100deg, var(--brand), #ff775b);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.section-copy { margin: 20px 0 0; color: var(--muted); font-size: 1.08rem; }
.muted { color: var(--muted); }
.kicker { margin: 0 0 8px; font-size: .86rem; font-weight: 800; text-transform: uppercase; letter-spacing: .11em; }

.icon {
  width: 1.15em;
  height: 1.15em;
  vertical-align: -.17em;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.icon.fill { fill: currentColor; stroke: none; }

.btn {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 21px;
  border: 1px solid transparent;
  border-radius: 13px;
  cursor: pointer;
  font-size: .92rem;
  font-weight: 800;
  line-height: 1.2;
  transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease, border-color .2s ease, color .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn:focus-visible { outline: 3px solid rgba(40, 103, 240, .28); outline-offset: 3px; }
.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--brand), #f05235);
  box-shadow: 0 13px 30px rgba(230, 50, 36, .24);
}
.btn-primary:hover { box-shadow: 0 17px 38px rgba(230, 50, 36, .34); }
.btn-dark { color: #fff; background: var(--navy); box-shadow: 0 13px 30px rgba(6, 14, 34, .19); }
.btn-dark:hover { background: #172441; }
.btn-outline { color: var(--ink); border-color: var(--line-strong); background: rgba(255,255,255,.58); }
html[data-theme="dark"] .btn-outline { background: rgba(17,26,46,.58); }
.btn-outline:hover { border-color: var(--brand); color: var(--brand); }
.btn-light { color: var(--navy); background: #fff; box-shadow: 0 14px 35px rgba(0,0,0,.16); }
.btn-ghost-light { color: #fff; border-color: rgba(255,255,255,.22); background: rgba(255,255,255,.05); }
.btn-sm { min-height: 44px; padding: 10px 16px; border-radius: 11px; font-size: .84rem; }
.btn svg { flex: 0 0 auto; transition: transform .2s ease; }
.btn:hover svg.arrow { transform: translateX(3px); }
.button-row { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; }

.announcement {
  position: relative;
  z-index: 110;
  color: #dce5f7;
  background: #080e1e;
  font-size: .78rem;
}
.announcement-inner {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.announcement-note { display: flex; align-items: center; gap: 9px; }
.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #30d17d;
  box-shadow: 0 0 0 5px rgba(48,209,125,.12);
}
.announcement-links { display: flex; align-items: center; gap: 20px; }
.announcement a { color: #fff; font-weight: 700; }
.announcement a:hover { color: #ff9a8c; }

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid transparent;
  background: color-mix(in srgb, var(--surface) 91%, transparent);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition: box-shadow .2s ease, border-color .2s ease;
}
.site-header.is-scrolled { border-color: var(--line); box-shadow: 0 10px 30px rgba(17,29,58,.07); }
.nav-wrap { min-height: var(--header-h); display: flex; align-items: center; gap: 30px; }
.brand { flex: 0 0 auto; display: inline-flex; align-items: center; }
.brand img { width: 149px; height: auto; }
.nav-main { display: flex; align-items: center; gap: 4px; margin-left: auto; }
.nav-item { position: relative; }
.nav-link {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  gap: 6px;
  padding: 10px 12px;
  border-radius: 10px;
  color: var(--ink-2);
  font-size: .88rem;
  font-weight: 750;
  white-space: nowrap;
  transition: color .2s ease, background-color .2s ease;
}
.nav-link:hover, .nav-link.is-active, .nav-item.open > .nav-link { color: var(--brand); background: var(--brand-soft); }
.nav-link .chev { width: 13px; height: 13px; transition: transform .2s ease; }
.nav-item.open .chev { transform: rotate(180deg); }
.dropdown {
  position: absolute;
  top: calc(100% + 9px);
  left: 50%;
  width: 560px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--surface);
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 8px);
  transition: opacity .18s ease, visibility .18s ease, transform .18s ease;
}
.dropdown.compact { width: 340px; }
.nav-item:hover > .dropdown,
.nav-item:focus-within > .dropdown,
.nav-item.open > .dropdown { opacity: 1; visibility: visible; transform: translate(-50%, 0); }
.dropdown-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 5px; }
.dropdown.compact .dropdown-grid { grid-template-columns: 1fr; }
.menu-card {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 11px;
  align-items: center;
  padding: 11px;
  border-radius: 13px;
  transition: background-color .18s ease;
}
.menu-card:hover { background: var(--surface-2); }
.menu-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: var(--menu-color, var(--brand));
  background: color-mix(in srgb, var(--menu-color, var(--brand)) 11%, var(--surface));
}
.menu-icon svg { width: 21px; height: 21px; }
.menu-card strong { display: block; color: var(--ink); font-size: .86rem; line-height: 1.2; }
.menu-card small { display: block; margin-top: 3px; color: var(--muted); font-size: .71rem; line-height: 1.3; }
.nav-actions { display: flex; align-items: center; gap: 9px; }
.theme-toggle, .nav-toggle {
  width: 43px;
  height: 43px;
  display: inline-grid;
  place-items: center;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--ink-2);
  background: var(--surface);
  cursor: pointer;
  transition: border-color .2s ease, color .2s ease, transform .2s ease;
}
.theme-toggle:hover, .nav-toggle:hover { color: var(--brand); border-color: var(--brand); transform: translateY(-1px); }
.theme-toggle .sun { display: none; }
html[data-theme="dark"] .theme-toggle .sun { display: block; }
html[data-theme="dark"] .theme-toggle .moon { display: none; }
.nav-toggle { display: none; }

.home-hero {
  position: relative;
  min-height: 730px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 22%, rgba(230, 50, 36, .1), transparent 30%),
    radial-gradient(circle at 92% 14%, rgba(40, 103, 240, .09), transparent 31%),
    linear-gradient(180deg, var(--surface), var(--surface-2));
}
.home-hero::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .38;
  content: "";
  background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.8), transparent 86%);
}
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, 1.02fr) minmax(440px, .98fr); gap: 58px; align-items: center; padding: 86px 0 98px; }
.hero-copy { max-width: 650px; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 23px;
  padding: 8px 12px;
  border: 1px solid color-mix(in srgb, var(--brand) 25%, var(--line));
  border-radius: 999px;
  color: var(--brand-deep);
  background: color-mix(in srgb, var(--brand) 6%, var(--surface));
  font-size: .75rem;
  font-weight: 850;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.hero-badge .spark { width: 22px; height: 22px; display: grid; place-items: center; border-radius: 50%; color: #fff; background: var(--brand); }
.hero-title { margin: 0; max-width: 700px; font-size: clamp(3rem, 5.5vw, 5.2rem); line-height: .99; letter-spacing: -.065em; }
.hero-title .underline { position: relative; display: inline-block; color: var(--brand); }
.hero-title .underline::after { position: absolute; left: 2%; right: 1%; bottom: -.08em; height: .11em; border-radius: 99px; background: linear-gradient(90deg, var(--brand), #ff8e63); opacity: .28; content: ""; }
.hero-lead { max-width: 610px; margin: 27px 0 30px; color: var(--muted); font-size: 1.16rem; line-height: 1.75; }
.hero-points { display: flex; flex-wrap: wrap; gap: 9px 20px; margin: 29px 0 0; padding: 0; list-style: none; color: var(--ink-2); font-size: .85rem; font-weight: 750; }
.hero-points li { display: flex; align-items: center; gap: 8px; }
.check-dot { width: 20px; height: 20px; display: grid; place-items: center; border-radius: 50%; color: #fff; background: var(--green); }
.hero-meta { display: flex; align-items: center; flex-wrap: wrap; gap: 23px; margin-top: 35px; }
.hero-stat { display: flex; align-items: center; gap: 11px; }
.hero-stat-icon { width: 40px; height: 40px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 11px; color: var(--brand); background: var(--surface); box-shadow: var(--shadow-sm); }
.hero-stat strong { display: block; font-size: .89rem; line-height: 1.1; }
.hero-stat small { display: block; margin-top: 4px; color: var(--muted); font-size: .72rem; }
.hero-visual { position: relative; min-height: 560px; display: grid; place-items: center; }
.hero-orbit {
  position: absolute;
  width: 520px;
  height: 520px;
  border: 1px dashed color-mix(in srgb, var(--blue) 28%, transparent);
  border-radius: 50%;
  animation: spin-slow 28s linear infinite;
}
.hero-orbit::before, .hero-orbit::after { position: absolute; width: 12px; height: 12px; border-radius: 50%; content: ""; }
.hero-orbit::before { left: 23px; top: 135px; background: var(--brand); box-shadow: 0 0 0 7px rgba(230,50,36,.1); }
.hero-orbit::after { right: 33px; bottom: 109px; background: var(--blue); box-shadow: 0 0 0 7px rgba(40,103,240,.1); }
@keyframes spin-slow { to { transform: rotate(360deg); } }
.hero-figure {
  position: relative;
  z-index: 2;
  width: min(100%, 525px);
  padding: 23px;
  border: 1px solid rgba(255,255,255,.62);
  border-radius: 34px;
  background: linear-gradient(145deg, rgba(255,255,255,.86), rgba(255,255,255,.42));
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(12px);
}
html[data-theme="dark"] .hero-figure { border-color: rgba(255,255,255,.09); background: linear-gradient(145deg, rgba(23,35,60,.9), rgba(14,24,44,.75)); }
.hero-figure img { width: 100%; filter: drop-shadow(0 24px 30px rgba(2,24,87,.15)); }
.float-card {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: color-mix(in srgb, var(--surface) 90%, transparent);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
  animation: float 5s ease-in-out infinite;
}
.float-card strong { display: block; font-size: .82rem; line-height: 1.2; }
.float-card small { display: block; margin-top: 3px; color: var(--muted); font-size: .69rem; }
.float-icon { width: 41px; height: 41px; display: grid; place-items: center; border-radius: 12px; color: #fff; background: var(--float-color, var(--brand)); box-shadow: 0 9px 22px color-mix(in srgb, var(--float-color, var(--brand)) 27%, transparent); }
.float-card.one { top: 50px; left: -38px; }
.float-card.two { right: -32px; top: 178px; animation-delay: -1.7s; }
.float-card.three { left: 16px; bottom: 31px; animation-delay: -3.1s; }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }

.trust-strip { position: relative; z-index: 3; margin-top: -34px; }
.trust-panel {
  min-height: 110px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--surface);
  box-shadow: var(--shadow);
}
.trust-item { min-height: 62px; display: flex; align-items: center; gap: 13px; padding: 20px 25px; border-right: 1px solid var(--line); }
.trust-item:last-child { border-right: 0; }
.trust-icon { width: 43px; height: 43px; flex: 0 0 auto; display: grid; place-items: center; border-radius: 13px; color: var(--trust-color, var(--brand)); background: color-mix(in srgb, var(--trust-color, var(--brand)) 10%, var(--surface)); }
.trust-item strong { display: block; font-size: .88rem; line-height: 1.25; }
.trust-item span { display: block; margin-top: 3px; color: var(--muted); font-size: .72rem; line-height: 1.3; }

.service-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 20px; }
.service-card {
  position: relative;
  min-height: 330px;
  grid-column: span 6;
  padding: 32px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.service-card:hover { transform: translateY(-6px); border-color: color-mix(in srgb, var(--service-color, var(--brand)) 35%, var(--line)); box-shadow: var(--shadow); }
.service-card.featured { grid-column: span 7; }
.service-card.compact { grid-column: span 5; }
.service-card::after {
  position: absolute;
  right: -80px;
  bottom: -95px;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--service-color, var(--brand)) 8%, transparent);
  content: "";
}
.service-top { position: relative; z-index: 1; display: flex; align-items: flex-start; justify-content: space-between; gap: 15px; }
.service-icon { width: 58px; height: 58px; display: grid; place-items: center; border-radius: 16px; color: var(--service-color, var(--brand)); background: color-mix(in srgb, var(--service-color, var(--brand)) 10%, var(--surface)); }
.service-icon svg { width: 29px; height: 29px; }
.price-pill { padding: 8px 11px; border: 1px solid var(--line); border-radius: 999px; color: var(--muted); background: var(--surface-2); font-size: .7rem; font-weight: 750; }
.price-pill strong { color: var(--ink); font-size: .9rem; }
.service-card h3 { position: relative; z-index: 1; margin: 27px 0 11px; font-size: 1.45rem; letter-spacing: -.025em; }
.service-card p { position: relative; z-index: 1; max-width: 510px; margin: 0; color: var(--muted); font-size: .93rem; }
.service-meta { position: relative; z-index: 1; display: flex; flex-wrap: wrap; gap: 8px; margin-top: 22px; }
.mini-chip { display: inline-flex; align-items: center; gap: 6px; padding: 7px 9px; border: 1px solid var(--line); border-radius: 9px; color: var(--ink-2); background: var(--surface-2); font-size: .7rem; font-weight: 720; }
.service-link { position: relative; z-index: 1; display: inline-flex; align-items: center; gap: 8px; margin-top: 25px; color: var(--service-color, var(--brand)); font-size: .85rem; font-weight: 850; }
.service-link svg { transition: transform .2s ease; }
.service-card:hover .service-link svg { transform: translateX(4px); }

.app-showcase {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 8% 15%, rgba(230,50,36,.18), transparent 27%),
    radial-gradient(circle at 88% 75%, rgba(40,103,240,.17), transparent 31%),
    var(--navy);
}
.app-showcase-inner { display: grid; grid-template-columns: .86fr 1.14fr; gap: 55px; align-items: center; padding: 72px; }
.app-showcase-copy { color: #fff; }
.app-showcase-copy h2 { margin: 0; font-size: clamp(2.25rem, 4vw, 3.8rem); line-height: 1.06; letter-spacing: -.048em; }
.app-showcase-copy p { margin: 20px 0 28px; color: #afbdd5; font-size: 1.05rem; }
.app-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.app-card {
  position: relative;
  min-height: 190px;
  padding: 23px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 19px;
  color: #fff;
  background: rgba(255,255,255,.055);
  backdrop-filter: blur(13px);
  transition: transform .22s ease, background-color .22s ease, border-color .22s ease;
}
.app-card:hover { transform: translateY(-5px); border-color: color-mix(in srgb, var(--app-color, #fff) 50%, transparent); background: rgba(255,255,255,.09); }
.app-card-icon { width: 48px; height: 48px; display: grid; place-items: center; border-radius: 14px; color: #fff; background: var(--app-color, var(--brand)); box-shadow: 0 12px 26px color-mix(in srgb, var(--app-color, var(--brand)) 30%, transparent); }
.app-card h3 { margin: 17px 0 5px; font-size: 1.05rem; }
.app-card p { margin: 0; color: #aebbd3; font-size: .78rem; line-height: 1.5; }
.app-card a { position: absolute; inset: 0; z-index: 2; }
.app-card .corner-arrow { position: absolute; right: 18px; top: 20px; color: rgba(255,255,255,.5); }

.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.feature-card { padding: 27px; border: 1px solid var(--line); border-radius: 18px; background: var(--surface); transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease; }
.feature-card:hover { transform: translateY(-5px); border-color: color-mix(in srgb, var(--feature-color, var(--brand)) 30%, var(--line)); box-shadow: var(--shadow-sm); }
.feature-icon { width: 51px; height: 51px; display: grid; place-items: center; border-radius: 15px; color: var(--feature-color, var(--brand)); background: color-mix(in srgb, var(--feature-color, var(--brand)) 10%, var(--surface)); }
.feature-card h3 { margin: 20px 0 8px; font-size: 1.02rem; }
.feature-card p { margin: 0; color: var(--muted); font-size: .85rem; }

.infrastructure-grid { display: grid; grid-template-columns: .92fr 1.08fr; gap: 75px; align-items: center; }
.infra-visual { position: relative; min-height: 520px; display: grid; place-items: center; }
.terminal {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 540px;
  overflow: hidden;
  border: 1px solid #263653;
  border-radius: 22px;
  color: #dce7ff;
  background: #0c1428;
  box-shadow: var(--shadow-lg);
}
.terminal-top { display: flex; align-items: center; justify-content: space-between; padding: 15px 18px; border-bottom: 1px solid #25324c; background: #111c33; }
.window-dots { display: flex; gap: 7px; }
.window-dots i { width: 9px; height: 9px; border-radius: 50%; background: #40506e; }
.window-dots i:nth-child(1) { background: #ff695f; }
.window-dots i:nth-child(2) { background: #ffc650; }
.window-dots i:nth-child(3) { background: #2fd47d; }
.terminal-name { color: #8fa0bd; font-size: .68rem; font-weight: 700; }
.terminal-body { min-height: 330px; padding: 25px; font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace; font-size: .77rem; line-height: 1.85; }
.terminal-line { opacity: 0; transform: translateY(8px); animation: terminal-in .45s ease forwards; }
.terminal-line:nth-child(2) { animation-delay: .4s; }
.terminal-line:nth-child(3) { animation-delay: .8s; }
.terminal-line:nth-child(4) { animation-delay: 1.2s; }
.terminal-line:nth-child(5) { animation-delay: 1.6s; }
.terminal-line:nth-child(6) { animation-delay: 2s; }
@keyframes terminal-in { to { opacity: 1; transform: none; } }
.prompt { color: #46d68a; }
.command { color: #fff; }
.output { color: #8697b6; }
.success { color: #4de291; }
.terminal-badge { position: absolute; z-index: 4; right: -17px; bottom: 55px; padding: 13px 15px; border: 1px solid var(--line); border-radius: 14px; background: var(--surface); box-shadow: var(--shadow); }
.terminal-badge strong { display: block; font-size: .8rem; }
.terminal-badge span { display: block; margin-top: 3px; color: var(--green); font-size: .7rem; font-weight: 800; }
.infra-glow { position: absolute; width: 330px; height: 330px; border-radius: 50%; background: radial-gradient(circle, rgba(40,103,240,.18), transparent 65%); filter: blur(5px); }
.check-list { display: grid; gap: 14px; margin: 28px 0 0; padding: 0; list-style: none; }
.check-list li { display: grid; grid-template-columns: 28px 1fr; gap: 12px; align-items: start; color: var(--ink-2); }
.check-list .check-dot { margin-top: 1px; }
.check-list strong { display: block; color: var(--ink); font-size: .9rem; }
.check-list span { display: block; margin-top: 3px; color: var(--muted); font-size: .8rem; }

.pricing-highlight { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.plan-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.plan-card:hover { transform: translateY(-5px); border-color: color-mix(in srgb, var(--plan-color, var(--brand)) 35%, var(--line)); box-shadow: var(--shadow); }
.plan-card.recommended { border-color: var(--brand); box-shadow: 0 24px 65px rgba(230,50,36,.14); }
.plan-card.recommended::before {
  position: absolute;
  top: -14px;
  left: 50%;
  padding: 7px 12px;
  border-radius: 999px;
  color: #fff;
  background: var(--brand);
  content: attr(data-label);
  font-size: .66rem;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
  transform: translateX(-50%);
  white-space: nowrap;
}
.plan-name-row { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.plan-name { margin: 0; font-size: 1.12rem; letter-spacing: -.02em; }
.plan-tag { padding: 6px 9px; border-radius: 8px; color: var(--plan-color, var(--brand)); background: color-mix(in srgb, var(--plan-color, var(--brand)) 9%, var(--surface)); font-size: .64rem; font-weight: 850; text-transform: uppercase; }
.plan-desc { min-height: 48px; margin: 12px 0 0; color: var(--muted); font-size: .78rem; }
.plan-price { display: flex; align-items: flex-end; gap: 5px; margin: 24px 0 6px; }
.plan-price .currency { align-self: flex-start; margin-top: 8px; color: var(--ink-2); font-size: 1rem; font-weight: 800; }
.plan-price .amount { font-size: 2.8rem; font-weight: 850; line-height: .9; letter-spacing: -.06em; }
.plan-price .period { padding-bottom: 3px; color: var(--muted); font-size: .76rem; }
.plan-setup { min-height: 20px; margin: 0; color: var(--muted); font-size: .68rem; }
.plan-divider { height: 1px; margin: 23px 0; background: var(--line); }
.plan-specs { display: grid; gap: 11px; margin: 0 0 26px; padding: 0; list-style: none; }
.plan-specs li { display: flex; align-items: center; justify-content: space-between; gap: 15px; color: var(--muted); font-size: .78rem; }
.plan-specs li span:first-child { display: flex; align-items: center; gap: 8px; }
.plan-specs li strong { color: var(--ink); font-size: .8rem; text-align: right; }
.plan-specs svg { width: 16px; height: 16px; color: var(--plan-color, var(--brand)); }
.plan-card .btn { width: 100%; margin-top: auto; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; }
.pricing-grid.four { grid-template-columns: repeat(4, 1fr); }
.pricing-note { display: flex; align-items: flex-start; gap: 12px; margin-top: 29px; padding: 17px 19px; border: 1px solid var(--line); border-radius: 14px; color: var(--muted); background: var(--surface-2); font-size: .78rem; }
.pricing-note svg { flex: 0 0 auto; color: var(--blue); }

.faq-wrap { display: grid; grid-template-columns: .75fr 1.25fr; gap: 70px; align-items: start; }
.faq-aside { position: sticky; top: 120px; }
.faq-aside .support-card { margin-top: 28px; }
.faq-list { display: grid; gap: 12px; }
.faq-item { border: 1px solid var(--line); border-radius: 15px; background: var(--surface); overflow: hidden; transition: border-color .2s ease, box-shadow .2s ease; }
.faq-item.is-open { border-color: color-mix(in srgb, var(--brand) 40%, var(--line)); box-shadow: var(--shadow-sm); }
.faq-question { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 20px 22px; border: 0; color: var(--ink); background: transparent; cursor: pointer; text-align: left; font-weight: 780; }
.faq-toggle { width: 29px; height: 29px; flex: 0 0 auto; display: grid; place-items: center; border-radius: 9px; color: var(--brand); background: var(--brand-soft); transition: transform .2s ease; }
.faq-item.is-open .faq-toggle { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .27s ease; }
.faq-answer-inner { padding: 0 22px 20px; color: var(--muted); font-size: .86rem; }
.faq-answer-inner p { margin: 0; }
.support-card { padding: 23px; border: 1px solid var(--line); border-radius: 17px; background: var(--surface-2); }
.support-card-icon { width: 45px; height: 45px; display: grid; place-items: center; border-radius: 13px; color: #fff; background: var(--brand); }
.support-card h3 { margin: 17px 0 6px; font-size: .98rem; }
.support-card p { margin: 0 0 16px; color: var(--muted); font-size: .78rem; }
.support-card a { color: var(--brand); font-size: .8rem; font-weight: 800; }

.cta-shell {
  position: relative;
  overflow: hidden;
  padding: 65px 70px;
  border-radius: var(--radius-lg);
  color: #fff;
  background:
    radial-gradient(circle at 10% 20%, rgba(255,255,255,.14), transparent 28%),
    radial-gradient(circle at 90% 80%, rgba(40,103,240,.28), transparent 35%),
    linear-gradient(125deg, #d9251a, #f04b30 58%, #db251b);
  box-shadow: 0 28px 80px rgba(230,50,36,.22);
}
.cta-shell::before { position: absolute; right: -70px; top: -120px; width: 350px; height: 350px; border: 1px solid rgba(255,255,255,.15); border-radius: 50%; content: ""; }
.cta-shell::after { position: absolute; right: 20px; top: -45px; width: 230px; height: 230px; border: 1px solid rgba(255,255,255,.13); border-radius: 50%; content: ""; }
.cta-inner { position: relative; z-index: 1; display: flex; align-items: center; justify-content: space-between; gap: 50px; }
.cta-copy { max-width: 690px; }
.cta-copy h2 { margin: 0; font-size: clamp(2rem, 4vw, 3.25rem); line-height: 1.07; letter-spacing: -.045em; }
.cta-copy p { margin: 14px 0 0; color: rgba(255,255,255,.78); font-size: .98rem; }
.cta-actions { flex: 0 0 auto; display: flex; flex-wrap: wrap; gap: 10px; }

.page-hero {
  position: relative;
  min-height: 470px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 8% 18%, rgba(230,50,36,.23), transparent 30%),
    radial-gradient(circle at 87% 80%, rgba(40,103,240,.2), transparent 34%),
    var(--navy);
}
.page-hero::after { position: absolute; inset: 0; opacity: .19; content: ""; background-image: linear-gradient(rgba(255,255,255,.14) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.14) 1px, transparent 1px); background-size: 48px 48px; mask-image: linear-gradient(90deg, #000, transparent 85%); }
.page-hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr .76fr; gap: 70px; align-items: center; padding: 78px 0; }
.breadcrumb { display: flex; align-items: center; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; color: #9cabc5; font-size: .74rem; font-weight: 740; }
.breadcrumb a:hover { color: #fff; }
.breadcrumb svg { width: 13px; height: 13px; }
.page-hero h1 { margin: 0; font-size: clamp(2.8rem, 5vw, 4.65rem); line-height: 1.01; letter-spacing: -.06em; }
.page-hero h1 span { color: #ff8376; }
.page-hero p { max-width: 660px; margin: 22px 0 28px; color: #b3bfd5; font-size: 1.05rem; }
.page-hero-points { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; }
.page-hero-point { display: inline-flex; align-items: center; gap: 7px; padding: 8px 10px; border: 1px solid rgba(255,255,255,.12); border-radius: 9px; color: #d8e1f0; background: rgba(255,255,255,.05); font-size: .72rem; font-weight: 720; }
.page-hero-art { position: relative; min-height: 290px; display: grid; place-items: center; }
.server-stack { position: relative; width: min(100%, 380px); }
.server-unit { position: relative; z-index: 3; height: 82px; display: flex; align-items: center; gap: 18px; margin: -4px 0 0; padding: 17px 21px; border: 1px solid rgba(255,255,255,.12); border-radius: 14px; background: linear-gradient(155deg, #1a2948, #101a30); box-shadow: 0 20px 45px rgba(0,0,0,.28); transform: perspective(900px) rotateY(-7deg); }
.server-unit:nth-child(2) { z-index: 2; opacity: .9; transform: translateX(12px) perspective(900px) rotateY(-7deg); }
.server-unit:nth-child(3) { z-index: 1; opacity: .78; transform: translateX(24px) perspective(900px) rotateY(-7deg); }
.server-lights { display: flex; gap: 6px; }
.server-lights i { width: 8px; height: 8px; border-radius: 50%; background: #37d683; box-shadow: 0 0 12px rgba(55,214,131,.7); }
.server-lights i:nth-child(2) { background: #ffc44d; box-shadow: 0 0 12px rgba(255,196,77,.7); }
.server-line { flex: 1; height: 6px; border-radius: 99px; background: #263856; box-shadow: inset 0 0 0 1px rgba(255,255,255,.03); }
.server-port { width: 44px; height: 26px; border: 1px solid #425675; border-radius: 5px; background: #0b1324; }
.server-halo { position: absolute; inset: -30px; border-radius: 50%; background: radial-gradient(circle, rgba(40,103,240,.22), transparent 64%); filter: blur(8px); }
.hero-price-card { position: absolute; z-index: 5; right: -18px; bottom: -22px; padding: 15px 17px; border: 1px solid rgba(255,255,255,.13); border-radius: 15px; background: rgba(13,23,43,.82); box-shadow: 0 18px 45px rgba(0,0,0,.3); backdrop-filter: blur(15px); }
.hero-price-card span { display: block; color: #9dacc7; font-size: .64rem; font-weight: 750; text-transform: uppercase; letter-spacing: .09em; }
.hero-price-card strong { display: block; margin-top: 3px; font-size: 1.35rem; }
.hero-price-card strong small { color: #a7b4ca; font-size: .65rem; }

.product-intro { display: grid; grid-template-columns: .82fr 1.18fr; gap: 75px; align-items: start; }
.intro-sticky { position: sticky; top: 120px; }
.stat-panel { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-top: 28px; }
.stat-box { padding: 18px; border: 1px solid var(--line); border-radius: 14px; background: var(--surface-2); }
.stat-box strong { display: block; font-size: 1.27rem; line-height: 1.1; }
.stat-box span { display: block; margin-top: 5px; color: var(--muted); font-size: .71rem; }
.product-feature-list { display: grid; gap: 15px; }
.product-feature-row { display: grid; grid-template-columns: 53px 1fr; gap: 16px; padding: 22px; border: 1px solid var(--line); border-radius: 17px; background: var(--surface); }
.product-feature-row .feature-icon { width: 53px; height: 53px; }
.product-feature-row h3 { margin: 2px 0 5px; font-size: .98rem; }
.product-feature-row p { margin: 0; color: var(--muted); font-size: .8rem; }

.app-hero {
  --page-accent: #e63224;
  position: relative;
  min-height: 610px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 15% 22%, color-mix(in srgb, var(--page-accent) 28%, transparent), transparent 31%),
    radial-gradient(circle at 89% 80%, rgba(40,103,240,.2), transparent 34%),
    var(--navy);
}
.app-hero::before { position: absolute; inset: 0; opacity: .16; content: ""; background-image: radial-gradient(rgba(255,255,255,.5) 1px, transparent 1px); background-size: 27px 27px; mask-image: linear-gradient(90deg, transparent, #000 35%, #000); }
.app-hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: .96fr 1.04fr; gap: 70px; align-items: center; padding: 84px 0 95px; }
.app-hero h1 { margin: 0; font-size: clamp(3.05rem, 5.6vw, 5.2rem); line-height: .98; letter-spacing: -.065em; }
.app-hero h1 span { color: color-mix(in srgb, var(--page-accent) 70%, #fff); }
.app-hero p { max-width: 640px; margin: 23px 0 30px; color: #b5c1d7; font-size: 1.06rem; }
.app-label { display: inline-flex; align-items: center; gap: 9px; margin-bottom: 21px; padding: 8px 12px; border: 1px solid color-mix(in srgb, var(--page-accent) 45%, transparent); border-radius: 999px; color: color-mix(in srgb, var(--page-accent) 55%, #fff); background: color-mix(in srgb, var(--page-accent) 12%, transparent); font-size: .72rem; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.app-label i { width: 8px; height: 8px; border-radius: 50%; background: var(--page-accent); box-shadow: 0 0 0 5px color-mix(in srgb, var(--page-accent) 14%, transparent); }
.app-console {
  position: relative;
  width: min(100%, 570px);
  margin-left: auto;
  padding: 18px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 27px;
  background: rgba(255,255,255,.055);
  box-shadow: 0 35px 80px rgba(0,0,0,.34);
  backdrop-filter: blur(12px);
}
.app-console-window { overflow: hidden; border: 1px solid rgba(255,255,255,.09); border-radius: 18px; background: #0a1224; }
.app-console-top { display: flex; align-items: center; justify-content: space-between; padding: 13px 15px; border-bottom: 1px solid #24314a; background: #121d34; }
.app-brand-mini { display: flex; align-items: center; gap: 8px; color: #ced8e9; font-size: .7rem; font-weight: 760; }
.app-mini-icon { width: 27px; height: 27px; display: grid; place-items: center; border-radius: 8px; color: #fff; background: var(--page-accent); }
.app-console-main { display: grid; grid-template-columns: 70px 1fr; min-height: 320px; }
.app-sidebar { padding: 18px 12px; border-right: 1px solid #202d47; background: #0e172a; }
.app-side-dot { width: 35px; height: 35px; display: grid; place-items: center; margin: 0 auto 10px; border-radius: 10px; color: #61728f; background: #17233a; }
.app-side-dot.active { color: #fff; background: var(--page-accent); }
.app-dashboard { padding: 24px; }
.app-dashboard-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; }
.app-dashboard h3 { margin: 0; color: #fff; font-size: .94rem; }
.app-dashboard small { color: #6f809f; font-size: .62rem; }
.status-pill { display: inline-flex; align-items: center; gap: 6px; padding: 6px 8px; border-radius: 7px; color: #65e5a0; background: rgba(50,207,120,.09); font-size: .58rem; font-weight: 800; }
.status-pill i { width: 5px; height: 5px; border-radius: 50%; background: currentColor; }
.dashboard-metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 9px; margin-top: 20px; }
.dash-metric { padding: 13px; border: 1px solid #202e47; border-radius: 10px; background: #111b30; }
.dash-metric span { display: block; color: #6d7e9b; font-size: .55rem; }
.dash-metric strong { display: block; margin-top: 4px; color: #e9effa; font-size: .85rem; }
.dashboard-chart { position: relative; height: 103px; margin-top: 12px; overflow: hidden; border: 1px solid #202e47; border-radius: 11px; background: linear-gradient(180deg, color-mix(in srgb, var(--page-accent) 10%, #101a2d), #101a2d); }
.dashboard-chart svg { position: absolute; inset: 0; width: 100%; height: 100%; color: var(--page-accent); }
.dashboard-log { display: grid; gap: 7px; margin-top: 12px; }
.log-line { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 8px 9px; border-radius: 8px; color: #8e9db7; background: #111b30; font-size: .56rem; }
.log-line strong { color: #b7c3d6; }
.app-float { position: absolute; z-index: 4; display: flex; align-items: center; gap: 9px; padding: 10px 12px; border: 1px solid rgba(255,255,255,.12); border-radius: 13px; color: #fff; background: rgba(14,23,42,.9); box-shadow: 0 18px 40px rgba(0,0,0,.32); backdrop-filter: blur(15px); }
.app-float strong { display: block; font-size: .7rem; }
.app-float span { display: block; margin-top: 2px; color: #8ea0bc; font-size: .56rem; }
.app-float-icon { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 10px; color: #fff; background: var(--page-accent); }
.app-float.deploy { left: -23px; bottom: 60px; }
.app-float.secure { right: -20px; top: 63px; }

.app-overview { --page-accent: var(--brand); display: grid; grid-template-columns: .86fr 1.14fr; gap: 75px; align-items: center; }
.app-logo-panel { position: relative; min-height: 440px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 26px; background: linear-gradient(145deg, color-mix(in srgb, var(--page-accent) 9%, var(--surface)), var(--surface-2)); overflow: hidden; }
.app-logo-panel::before, .app-logo-panel::after { position: absolute; border: 1px solid color-mix(in srgb, var(--page-accent) 20%, transparent); border-radius: 50%; content: ""; }
.app-logo-panel::before { width: 330px; height: 330px; }
.app-logo-panel::after { width: 430px; height: 430px; }
.app-logo-large { position: relative; z-index: 2; width: 130px; height: 130px; display: grid; place-items: center; border-radius: 34px; color: #fff; background: var(--page-accent); box-shadow: 0 30px 70px color-mix(in srgb, var(--page-accent) 35%, transparent); }
.app-logo-large svg { width: 67px; height: 67px; }
.app-logo-badge { position: absolute; z-index: 3; right: 28px; bottom: 28px; padding: 13px 15px; border: 1px solid var(--line); border-radius: 13px; background: var(--surface); box-shadow: var(--shadow); }
.app-logo-badge span { display: block; color: var(--muted); font-size: .64rem; }
.app-logo-badge strong { display: block; margin-top: 3px; font-size: .84rem; }
.benefit-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-top: 28px; }
.benefit-item { display: grid; grid-template-columns: 37px 1fr; gap: 10px; padding: 14px; border: 1px solid var(--line); border-radius: 13px; background: var(--surface-2); }
.benefit-item-icon { width: 37px; height: 37px; display: grid; place-items: center; border-radius: 10px; color: var(--page-accent); background: color-mix(in srgb, var(--page-accent) 10%, var(--surface)); }
.benefit-item strong { display: block; font-size: .75rem; }
.benefit-item span { display: block; margin-top: 2px; color: var(--muted); font-size: .65rem; line-height: 1.35; }

.setup-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; counter-reset: setup; }
.setup-step { position: relative; padding: 27px 24px; border: 1px solid rgba(255,255,255,.11); border-radius: 18px; background: rgba(255,255,255,.05); counter-increment: setup; }
.setup-step::before { display: grid; width: 39px; height: 39px; place-items: center; border-radius: 12px; color: #fff; background: var(--page-accent, var(--brand)); content: counter(setup, decimal-leading-zero); font-size: .72rem; font-weight: 850; }
.setup-step:not(:last-child)::after { position: absolute; top: 46px; left: calc(100% - 4px); width: 26px; height: 1px; border-top: 1px dashed rgba(255,255,255,.24); content: ""; }
.setup-step h3 { margin: 18px 0 7px; font-size: .94rem; }
.setup-step p { margin: 0; color: #9eacc5; font-size: .74rem; }

.compare-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: 18px; background: var(--surface); }
.compare-table { width: 100%; min-width: 720px; border-collapse: collapse; }
.compare-table th, .compare-table td { padding: 18px 20px; border-bottom: 1px solid var(--line); text-align: left; font-size: .78rem; }
.compare-table th { color: var(--muted); background: var(--surface-2); font-size: .68rem; text-transform: uppercase; letter-spacing: .08em; }
.compare-table tr:last-child td { border-bottom: 0; }
.compare-table td:first-child { color: var(--ink); font-weight: 780; }
.compare-check { color: var(--green); }

.about-story { display: grid; grid-template-columns: .95fr 1.05fr; gap: 70px; align-items: center; }
.story-visual { position: relative; min-height: 510px; }
.story-main { position: absolute; inset: 0 75px 55px 0; overflow: hidden; border-radius: 27px; background: linear-gradient(140deg, #162847, #0d162a); box-shadow: var(--shadow-lg); }
.story-main::before { position: absolute; inset: 0; opacity: .25; content: ""; background-image: linear-gradient(rgba(255,255,255,.12) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.12) 1px, transparent 1px); background-size: 35px 35px; }
.story-server { position: absolute; inset: 65px 50px; display: grid; gap: 12px; }
.story-server-row { display: flex; align-items: center; gap: 14px; padding: 15px 18px; border: 1px solid rgba(255,255,255,.1); border-radius: 12px; background: rgba(255,255,255,.055); }
.story-server-row .lights { display: flex; gap: 5px; }
.story-server-row .lights i { width: 6px; height: 6px; border-radius: 50%; background: #3add83; }
.story-server-row span { flex: 1; height: 6px; border-radius: 20px; background: rgba(255,255,255,.1); }
.story-server-row b { width: 35px; height: 21px; border: 1px solid rgba(255,255,255,.15); border-radius: 4px; background: rgba(0,0,0,.25); }
.story-badge { position: absolute; right: 0; bottom: 0; width: 190px; padding: 23px; border: 1px solid var(--line); border-radius: 20px; background: var(--surface); box-shadow: var(--shadow); }
.story-badge strong { display: block; color: var(--brand); font-size: 2.25rem; line-height: 1; letter-spacing: -.05em; }
.story-badge span { display: block; margin-top: 7px; color: var(--muted); font-size: .73rem; }
.value-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.value-card { padding: 25px; border: 1px solid var(--line); border-radius: 17px; background: var(--surface); }
.value-card h3 { margin: 16px 0 7px; font-size: .95rem; }
.value-card p { margin: 0; color: var(--muted); font-size: .78rem; }

.legal-layout { display: grid; grid-template-columns: 265px minmax(0,1fr); gap: 50px; align-items: start; }
.legal-nav { position: sticky; top: 115px; padding: 18px; border: 1px solid var(--line); border-radius: 17px; background: var(--surface-2); }
.legal-nav strong { display: block; margin: 0 0 11px; font-size: .8rem; }
.legal-nav a { display: block; padding: 8px 10px; border-radius: 8px; color: var(--muted); font-size: .72rem; line-height: 1.35; }
.legal-nav a:hover { color: var(--brand); background: var(--brand-soft); }
.legal-content { max-width: 860px; }
.legal-content > *:first-child { margin-top: 0; }
.legal-content h2, .legal-content h3, .legal-content h4 { scroll-margin-top: 120px; color: var(--ink); letter-spacing: -.025em; }
.legal-content h2 { margin: 50px 0 13px; padding-top: 12px; border-top: 1px solid var(--line); font-size: 1.55rem; }
.legal-content h3, .legal-content h4 { margin: 35px 0 10px; font-size: 1.18rem; }
.legal-content p { margin: 0 0 16px; color: var(--muted); font-size: .86rem; text-align: left !important; }
.legal-content ul, .legal-content ol { margin: 0 0 20px; padding-left: 22px; color: var(--muted); font-size: .86rem; }
.legal-content li { margin-bottom: 8px; }
.legal-note { margin-bottom: 30px; padding: 18px 20px; border: 1px solid color-mix(in srgb, var(--blue) 24%, var(--line)); border-radius: 14px; color: var(--muted); background: color-mix(in srgb, var(--blue) 5%, var(--surface)); font-size: .8rem; }

.error-page { min-height: calc(100vh - 120px); display: grid; place-items: center; padding: 80px 0; text-align: center; background: radial-gradient(circle at 50% 25%, rgba(230,50,36,.11), transparent 30%), var(--surface-2); }
.error-code { margin: 0; color: var(--brand); font-size: clamp(6rem, 18vw, 12rem); line-height: .85; letter-spacing: -.08em; }
.error-page h1 { margin: 25px 0 8px; font-size: clamp(2rem,4vw,3rem); }
.error-page p { max-width: 550px; margin: 0 auto 25px; color: var(--muted); }

.site-footer { margin-top: 105px; color: #c1cbe0; background: #080e1e; }
.site-footer.no-margin { margin-top: 0; }
.footer-top { padding: 77px 0 55px; }
.footer-grid { display: grid; grid-template-columns: 1.35fr repeat(3, .8fr); gap: 55px; }
.footer-brand img { width: 155px; }
.footer-brand p { max-width: 330px; margin: 20px 0 24px; color: #8290ad; font-size: .82rem; }
.footer-contact { display: grid; gap: 9px; }
.footer-contact a { display: flex; align-items: center; gap: 8px; color: #a6b3cb; font-size: .78rem; }
.footer-contact a:hover { color: #fff; }
.footer-col h3 { margin: 0 0 17px; color: #fff; font-size: .87rem; }
.footer-links { display: grid; gap: 10px; }
.footer-links a { color: #8795b1; font-size: .76rem; transition: color .2s ease, transform .2s ease; }
.footer-links a:hover { color: #fff; transform: translateX(3px); }
.footer-payments { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
.payment-chip { min-width: 53px; height: 32px; display: grid; place-items: center; padding: 5px 8px; border: 1px solid rgba(255,255,255,.09); border-radius: 8px; background: #111a2c; }
.payment-chip img { max-height: 18px; width: auto; filter: grayscale(.2); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); }
.footer-bottom-inner { min-height: 70px; display: flex; align-items: center; justify-content: space-between; gap: 22px; color: #71809e; font-size: .7rem; }
.footer-legal { display: flex; gap: 16px; }
.footer-legal a:hover { color: #fff; }

.back-to-top { position: fixed; z-index: 80; right: 24px; bottom: 24px; width: 45px; height: 45px; display: grid; place-items: center; border: 0; border-radius: 13px; color: #fff; background: var(--brand); box-shadow: 0 12px 30px rgba(230,50,36,.3); cursor: pointer; opacity: 0; visibility: hidden; transform: translateY(10px); transition: opacity .2s ease, visibility .2s ease, transform .2s ease; }
.back-to-top.show { opacity: 1; visibility: visible; transform: none; }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .65s ease, transform .65s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal.delay-1 { transition-delay: .08s; }
.reveal.delay-2 { transition-delay: .16s; }
.reveal.delay-3 { transition-delay: .24s; }
.no-js .reveal { opacity: 1; transform: none; }

/* Responsive */
@media (max-width: 1180px) {
  :root { --container: 1080px; }
  .nav-wrap { gap: 18px; }
  .nav-link { padding-inline: 9px; font-size: .82rem; }
  .nav-actions .btn { display: none; }
  .hero-grid { grid-template-columns: 1fr .88fr; gap: 35px; }
  .hero-title { font-size: clamp(3rem, 6.3vw, 4.65rem); }
  .float-card.one { left: -8px; }
  .float-card.two { right: -4px; }
  .app-showcase-inner { padding: 55px; gap: 40px; }
  .pricing-grid.four { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 1024px) {
  :root { --header-h: 72px; }
  .section { padding: 88px 0; }
  .section-sm { padding: 64px 0; }
  .announcement-links a:first-child { display: none; }
  .nav-main {
    position: fixed;
    z-index: 102;
    top: calc(38px + var(--header-h));
    right: 18px;
    left: 18px;
    max-height: calc(100vh - 135px);
    display: block;
    padding: 13px;
    overflow-y: auto;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: var(--surface);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity .2s ease, visibility .2s ease, transform .2s ease;
  }
  .menu-open .nav-main { opacity: 1; visibility: visible; transform: none; }
  .nav-link { width: 100%; justify-content: space-between; padding: 12px 13px; font-size: .88rem; }
  .nav-item { width: 100%; }
  .dropdown, .dropdown.compact {
    position: static;
    width: 100%;
    max-height: 0;
    padding: 0;
    overflow: hidden;
    border: 0;
    border-radius: 13px;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    transition: max-height .25s ease, padding .25s ease;
  }
  .nav-item:hover > .dropdown, .nav-item:focus-within > .dropdown { transform: none; }
  .nav-item.open > .dropdown { max-height: 720px; padding: 7px; background: var(--surface-2); }
  .dropdown-grid { grid-template-columns: repeat(2, 1fr); }
  .nav-actions { margin-left: auto; }
  .nav-toggle { display: inline-grid; }
  .nav-actions .btn { display: inline-flex; }
  .home-hero { min-height: auto; }
  .hero-grid { grid-template-columns: 1fr; padding: 75px 0 125px; text-align: center; }
  .hero-copy { margin-inline: auto; }
  .hero-lead { margin-inline: auto; }
  .button-row.hero-buttons, .hero-points, .hero-meta { justify-content: center; }
  .hero-visual { width: min(100%, 620px); margin: -18px auto 0; }
  .hero-orbit { width: 500px; height: 500px; }
  .trust-panel { grid-template-columns: repeat(2, 1fr); }
  .trust-item:nth-child(2) { border-right: 0; }
  .trust-item:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .app-showcase-inner { grid-template-columns: 1fr; padding: 58px; }
  .app-showcase-copy { text-align: center; }
  .app-showcase-copy .button-row { justify-content: center; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .infrastructure-grid { grid-template-columns: 1fr; gap: 45px; }
  .infra-copy { order: -1; }
  .infra-visual { width: min(100%, 620px); min-height: 430px; margin-inline: auto; }
  .pricing-highlight { grid-template-columns: repeat(2, 1fr); }
  .pricing-highlight .plan-card:last-child { grid-column: 1 / -1; width: calc(50% - 10px); justify-self: center; }
  .faq-wrap { grid-template-columns: 1fr; gap: 35px; }
  .faq-aside { position: static; }
  .faq-aside .support-card { display: none; }
  .cta-inner { display: block; text-align: center; }
  .cta-actions { justify-content: center; margin-top: 28px; }
  .page-hero-grid, .app-hero-grid { grid-template-columns: 1fr; gap: 42px; }
  .page-hero-copy, .app-hero-copy { text-align: center; }
  .breadcrumb, .page-hero .button-row, .page-hero-points, .app-hero .button-row { justify-content: center; }
  .page-hero p, .app-hero p { margin-inline: auto; }
  .page-hero-art { width: min(100%, 540px); margin-inline: auto; }
  .app-console { margin-inline: auto; }
  .product-intro { grid-template-columns: 1fr; gap: 38px; }
  .intro-sticky { position: static; }
  .app-overview { grid-template-columns: 1fr; gap: 45px; }
  .app-logo-panel { width: min(100%, 630px); margin-inline: auto; }
  .setup-steps { grid-template-columns: repeat(2, 1fr); }
  .setup-step:nth-child(2)::after { display: none; }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .about-story { grid-template-columns: 1fr; gap: 46px; }
  .story-visual { width: min(100%, 640px); margin-inline: auto; }
  .legal-layout { grid-template-columns: 1fr; gap: 30px; }
  .legal-nav { position: static; display: flex; flex-wrap: wrap; gap: 4px; }
  .legal-nav strong { width: 100%; }
  .footer-grid { grid-template-columns: 1.3fr repeat(3, 1fr); gap: 35px; }
}

@media (max-width: 760px) {
  .container, .container-wide { width: min(calc(100% - 28px), var(--container)); }
  .section { padding: 72px 0; }
  .section-sm { padding: 54px 0; }
  .section-head { margin-bottom: 34px; }
  .announcement-inner { justify-content: center; }
  .announcement-links { display: none; }
  .brand img { width: 130px; }
  .nav-wrap { gap: 10px; }
  .nav-actions { gap: 7px; }
  .nav-actions .btn { display: none; }
  .theme-toggle, .nav-toggle { width: 40px; height: 40px; }
  .nav-main { top: calc(38px + var(--header-h)); }
  .dropdown-grid { grid-template-columns: 1fr; }
  .menu-card { padding: 9px; }
  .home-hero::before { opacity: .24; }
  .hero-grid { padding: 60px 0 115px; }
  .hero-badge { margin-bottom: 18px; font-size: .66rem; }
  .hero-title { font-size: clamp(2.75rem, 13.5vw, 4rem); }
  .hero-lead { margin-top: 22px; font-size: 1rem; }
  .hero-points { display: grid; grid-template-columns: repeat(2, auto); gap: 10px 14px; text-align: left; }
  .hero-meta { gap: 14px; }
  .hero-stat { min-width: 145px; }
  .hero-visual { min-height: 440px; }
  .hero-orbit { width: 390px; height: 390px; }
  .hero-figure { width: min(92%, 430px); padding: 15px; border-radius: 25px; }
  .float-card { padding: 9px 10px; }
  .float-icon { width: 34px; height: 34px; }
  .float-card strong { font-size: .71rem; }
  .float-card small { font-size: .58rem; }
  .float-card.one { top: 36px; left: 2px; }
  .float-card.two { top: 135px; right: 0; }
  .float-card.three { bottom: 25px; left: 12px; }
  .trust-panel { grid-template-columns: 1fr; }
  .trust-item { border-right: 0; border-bottom: 1px solid var(--line); }
  .trust-item:nth-child(3) { border-bottom: 1px solid var(--line); }
  .trust-item:last-child { border-bottom: 0; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card, .service-card.featured, .service-card.compact { grid-column: auto; min-height: 315px; padding: 27px; }
  .service-top { align-items: center; }
  .app-showcase { border-radius: 23px; }
  .app-showcase-inner { padding: 42px 22px; }
  .app-grid { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature-card { padding: 24px; }
  .infra-visual { min-height: 390px; }
  .terminal-body { min-height: 290px; padding: 19px; font-size: .67rem; }
  .terminal-badge { right: 5px; bottom: 25px; }
  .pricing-highlight, .pricing-grid, .pricing-grid.four { grid-template-columns: 1fr; }
  .pricing-highlight .plan-card:last-child { grid-column: auto; width: 100%; }
  .plan-card { padding: 25px; }
  .faq-question { padding: 18px; font-size: .88rem; }
  .faq-answer-inner { padding: 0 18px 18px; }
  .cta-shell { padding: 45px 24px; border-radius: 23px; }
  .page-hero { min-height: 420px; }
  .page-hero-grid { padding: 62px 0 75px; }
  .page-hero h1 { font-size: clamp(2.7rem, 12vw, 4rem); }
  .page-hero-art { min-height: 250px; }
  .server-stack { width: 310px; }
  .server-unit { height: 70px; }
  .hero-price-card { right: 4px; bottom: -15px; }
  .product-feature-row { padding: 18px; }
  .app-hero { min-height: 570px; }
  .app-hero-grid { padding: 65px 0 78px; }
  .app-hero h1 { font-size: clamp(2.85rem, 13vw, 4.1rem); }
  .app-console { padding: 10px; border-radius: 20px; }
  .app-console-main { grid-template-columns: 48px 1fr; min-height: 290px; }
  .app-sidebar { padding: 14px 6px; }
  .app-side-dot { width: 31px; height: 31px; }
  .app-dashboard { padding: 17px 13px; }
  .dashboard-metrics { gap: 6px; }
  .dash-metric { padding: 9px 7px; }
  .dash-metric strong { font-size: .7rem; }
  .app-float { padding: 8px 9px; }
  .app-float.deploy { left: -2px; bottom: 28px; }
  .app-float.secure { right: -2px; top: 58px; }
  .benefit-grid { grid-template-columns: 1fr; }
  .app-logo-panel { min-height: 365px; }
  .setup-steps { grid-template-columns: 1fr; }
  .setup-step::after { display: none; }
  .stat-panel { grid-template-columns: 1fr; }
  .story-visual { min-height: 430px; }
  .story-main { inset: 0 36px 55px 0; }
  .story-server { inset: 45px 25px; }
  .story-badge { width: 170px; }
  .value-grid { grid-template-columns: 1fr; }
  .legal-nav { max-height: 260px; overflow-y: auto; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 38px 22px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom-inner { padding: 20px 0; flex-direction: column; text-align: center; }
  .site-footer { margin-top: 82px; }
  .back-to-top { right: 16px; bottom: 16px; }
}

@media (max-width: 460px) {
  .button-row .btn { width: 100%; }
  .hero-points { grid-template-columns: 1fr; }
  .hero-meta { display: grid; grid-template-columns: 1fr 1fr; width: 100%; }
  .hero-stat { min-width: 0; text-align: left; }
  .hero-visual { min-height: 380px; }
  .hero-orbit { width: 320px; height: 320px; }
  .float-card.one { top: 28px; }
  .float-card.two { top: 125px; }
  .float-card.three { bottom: 13px; }
  .service-card { padding: 23px; }
  .service-top { align-items: flex-start; }
  .service-icon { width: 51px; height: 51px; }
  .price-pill { font-size: .62rem; }
  .terminal-badge { display: none; }
  .page-hero .button-row .btn, .app-hero .button-row .btn { width: 100%; }
  .page-hero-points { justify-content: flex-start; }
  .server-stack { width: 280px; }
  .server-unit { padding: 13px 16px; }
  .app-console-main { grid-template-columns: 1fr; }
  .app-sidebar { display: none; }
  .dashboard-metrics { grid-template-columns: repeat(3, 1fr); }
  .app-float.secure { display: none; }
  .app-logo-panel { min-height: 330px; }
  .app-logo-panel::before { width: 250px; height: 250px; }
  .app-logo-panel::after { width: 330px; height: 330px; }
  .app-logo-large { width: 105px; height: 105px; border-radius: 28px; }
  .app-logo-large svg { width: 54px; height: 54px; }
  .app-logo-badge { right: 15px; bottom: 15px; }
  .story-main { inset: 0 20px 70px 0; }
  .story-badge { right: 0; width: 150px; padding: 18px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
  .footer-legal { flex-wrap: wrap; justify-content: center; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* Homepage refinement — premium hero, clearer product paths and focused payments */
.home-page .home-hero-v2 {
  position: relative;
  min-height: 780px;
  color: #fff;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 11% 18%, rgba(230, 50, 36, .28), transparent 31%),
    radial-gradient(circle at 84% 21%, rgba(40, 103, 240, .28), transparent 34%),
    radial-gradient(circle at 63% 92%, rgba(114, 86, 232, .18), transparent 33%),
    linear-gradient(135deg, #080e1e 0%, #0b152b 52%, #0d1831 100%);
}
.home-page .home-hero-v2::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  content: "";
  opacity: .2;
  background-image:
    linear-gradient(rgba(255,255,255,.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.1) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(90deg, rgba(0,0,0,.95), rgba(0,0,0,.48) 58%, transparent 96%);
}
.home-page .home-hero-v2::after {
  position: absolute;
  inset: auto 0 0;
  z-index: -1;
  height: 180px;
  pointer-events: none;
  content: "";
  background: linear-gradient(180deg, transparent, rgba(3,8,19,.33));
}
.home-page .hero-ambient {
  position: absolute;
  z-index: -1;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  filter: blur(90px);
  opacity: .22;
  pointer-events: none;
}
.home-page .hero-ambient-one { left: -170px; bottom: -210px; background: #e63224; }
.home-page .hero-ambient-two { right: -190px; top: -190px; background: #2867f0; }
.home-page .home-hero-v2 .hero-grid {
  z-index: 2;
  grid-template-columns: minmax(0, 1.02fr) minmax(500px, .98fr);
  gap: 66px;
  padding: 94px 0 102px;
}
.home-page .home-hero-v2 .hero-copy { max-width: 690px; }
.home-page .home-hero-v2 .hero-badge {
  margin-bottom: 24px;
  color: #ffe9e5;
  border-color: rgba(255,255,255,.14);
  background: rgba(255,255,255,.065);
  box-shadow: inset 0 1px rgba(255,255,255,.08);
  backdrop-filter: blur(12px);
}
.home-page .home-hero-v2 .hero-badge .spark {
  color: #fff;
  background: linear-gradient(135deg, #ff5c4e, #e63224);
  box-shadow: 0 9px 24px rgba(230,50,36,.34);
}
.home-page .home-hero-v2 .hero-title {
  max-width: 730px;
  color: #fff;
  font-size: clamp(3.2rem, 5.25vw, 5.15rem);
  line-height: .98;
  letter-spacing: -.066em;
}
.home-page .home-hero-v2 .hero-title .underline {
  color: #fff;
  background: linear-gradient(105deg, #ff6f5f 8%, #ffac78 52%, #7ea7ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.home-page .home-hero-v2 .hero-title .underline::after {
  bottom: -.06em;
  height: .09em;
  background: linear-gradient(90deg, #ff6f5f, #7ea7ff);
  opacity: .44;
}
.home-page .home-hero-v2 .hero-lead {
  max-width: 650px;
  margin: 28px 0 31px;
  color: #b8c4db;
  font-size: 1.1rem;
  line-height: 1.78;
}
.home-page .btn-hero-ghost {
  color: #fff;
  border-color: rgba(255,255,255,.2);
  background: rgba(255,255,255,.055);
  box-shadow: inset 0 1px rgba(255,255,255,.06);
  backdrop-filter: blur(12px);
}
.home-page .btn-hero-ghost:hover {
  color: #fff;
  border-color: rgba(255,255,255,.38);
  background: rgba(255,255,255,.1);
}
.home-page .home-hero-v2 .hero-points {
  margin-top: 28px;
  color: #d7e0ef;
  font-size: .82rem;
}
.home-page .home-hero-v2 .check-dot {
  color: #fff;
  background: rgba(48,209,125,.16);
  border: 1px solid rgba(69,225,143,.38);
}
.home-page .home-hero-v2 .hero-meta { margin-top: 36px; gap: 28px; }
.home-page .home-hero-v2 .hero-stat-icon {
  border-color: rgba(255,255,255,.11);
  color: #ff8d81;
  background: rgba(255,255,255,.06);
  box-shadow: inset 0 1px rgba(255,255,255,.08);
}
.home-page .home-hero-v2 .hero-stat strong { color: #fff; }
.home-page .home-hero-v2 .hero-stat small { color: #8999b7; }

.home-page .hero-console-wrap {
  min-height: 590px;
  display: grid;
  place-items: center;
  isolation: isolate;
}
.home-page .console-orbit {
  position: absolute;
  z-index: -1;
  border: 1px solid rgba(123,158,255,.2);
  border-radius: 50%;
  pointer-events: none;
}
.home-page .console-orbit-one {
  width: 570px;
  height: 570px;
  animation: spin-slow 32s linear infinite;
}
.home-page .console-orbit-one::before,
.home-page .console-orbit-one::after,
.home-page .console-orbit-two::before {
  position: absolute;
  border-radius: 50%;
  content: "";
}
.home-page .console-orbit-one::before {
  left: 27px;
  top: 142px;
  width: 11px;
  height: 11px;
  background: #ff6658;
  box-shadow: 0 0 0 8px rgba(230,50,36,.12), 0 0 32px rgba(230,50,36,.5);
}
.home-page .console-orbit-one::after {
  right: 30px;
  bottom: 126px;
  width: 10px;
  height: 10px;
  background: #5f8fff;
  box-shadow: 0 0 0 8px rgba(40,103,240,.12), 0 0 32px rgba(40,103,240,.5);
}
.home-page .console-orbit-two {
  width: 470px;
  height: 470px;
  border-style: dashed;
  opacity: .65;
  animation: spin-slow 24s linear infinite reverse;
}
.home-page .console-orbit-two::before {
  right: 46px;
  top: 76px;
  width: 8px;
  height: 8px;
  background: #8e79ff;
  box-shadow: 0 0 0 7px rgba(114,86,232,.12);
}
.home-page .cloud-console {
  position: relative;
  z-index: 3;
  width: min(100%, 555px);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 29px;
  background: linear-gradient(155deg, rgba(23,38,70,.93), rgba(10,20,41,.95));
  box-shadow: 0 42px 110px rgba(0,0,0,.48), inset 0 1px rgba(255,255,255,.08);
  backdrop-filter: blur(22px);
  transform: perspective(1400px) rotateY(-2.5deg) rotateX(1deg);
  transition: transform .35s ease, box-shadow .35s ease;
}
.home-page .hero-console-wrap:hover .cloud-console {
  transform: perspective(1400px) rotateY(0) rotateX(0) translateY(-4px);
  box-shadow: 0 48px 125px rgba(0,0,0,.56), inset 0 1px rgba(255,255,255,.09);
}
.home-page .cloud-console::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background: linear-gradient(120deg, rgba(255,255,255,.055), transparent 34%, rgba(40,103,240,.04));
}
.home-page .cloud-console-head {
  position: relative;
  z-index: 2;
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 19px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.025);
}
.home-page .console-brand { display: flex; align-items: center; gap: 11px; }
.home-page .console-mark {
  width: 39px;
  height: 39px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: #fff;
  background: linear-gradient(135deg, #e63224, #ff6757);
  box-shadow: 0 12px 28px rgba(230,50,36,.3);
}
.home-page .console-brand small,
.home-page .console-title-row small {
  display: block;
  color: #788aa9;
  font-size: .61rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.home-page .console-brand strong { display: block; margin-top: 1px; color: #eef4ff; font-size: .8rem; }
.home-page .console-status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 10px;
  border: 1px solid rgba(62,220,141,.18);
  border-radius: 999px;
  color: #a8eac8;
  background: rgba(33,177,103,.09);
  font-size: .62rem;
  font-weight: 800;
}
.home-page .console-status i,
.home-page .console-footer-row i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #35d584;
  box-shadow: 0 0 0 5px rgba(53,213,132,.11), 0 0 15px rgba(53,213,132,.5);
}
.home-page .cloud-console-body { position: relative; z-index: 2; padding: 20px; }
.home-page .console-title-row { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.home-page .console-title-row strong { display: block; margin-top: 2px; color: #fff; font-size: 1rem; letter-spacing: -.02em; }
.home-page .console-node-tag {
  padding: 7px 9px;
  border: 1px solid rgba(126,166,255,.17);
  border-radius: 9px;
  color: #a8bdf1;
  background: rgba(40,103,240,.08);
  font-size: .61rem;
  font-weight: 780;
}
.home-page .console-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
  margin-top: 16px;
}
.home-page .console-metrics > div {
  padding: 12px 13px;
  border: 1px solid rgba(255,255,255,.075);
  border-radius: 12px;
  background: rgba(255,255,255,.035);
}
.home-page .console-metrics span { display: block; color: #7184a6; font-size: .58rem; font-weight: 750; text-transform: uppercase; letter-spacing: .07em; }
.home-page .console-metrics strong { display: block; margin-top: 4px; color: #f1f5ff; font-size: .78rem; }
.home-page .console-scene {
  position: relative;
  min-height: 300px;
  display: grid;
  place-items: center;
  margin-top: 12px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.065);
  border-radius: 18px;
  background: radial-gradient(circle at 50% 52%, rgba(42,104,240,.2), transparent 49%), rgba(4,12,27,.42);
}
.home-page .scene-grid {
  position: absolute;
  inset: 0;
  opacity: .15;
  background-image: linear-gradient(rgba(255,255,255,.12) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.12) 1px, transparent 1px);
  background-size: 30px 30px;
  mask-image: radial-gradient(circle, #000 20%, transparent 76%);
}
.home-page .scene-halo {
  position: absolute;
  width: 240px;
  height: 240px;
  border: 1px solid rgba(89,132,255,.2);
  border-radius: 50%;
  box-shadow: 0 0 80px rgba(40,103,240,.2), inset 0 0 45px rgba(40,103,240,.1);
}
.home-page .console-scene img {
  position: relative;
  z-index: 2;
  width: 270px;
  opacity: .92;
  filter: drop-shadow(0 24px 35px rgba(0,0,0,.35)) saturate(1.05);
}
.home-page .console-app {
  position: absolute;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 9px 7px 7px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 11px;
  color: #dce7fb;
  background: rgba(13,25,49,.8);
  box-shadow: 0 14px 30px rgba(0,0,0,.25);
  backdrop-filter: blur(10px);
  font-size: .61rem;
  font-weight: 780;
  animation: float 5.2s ease-in-out infinite;
}
.home-page .console-app b {
  width: 27px;
  height: 27px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: #fff;
  background: var(--app-accent);
}
.home-page .console-app b svg { width: 14px; height: 14px; }
.home-page .app-openclaw { left: 14px; top: 20px; }
.home-page .app-coolify { right: 14px; top: 50px; animation-delay: -1.2s; }
.home-page .app-n8n { left: 22px; bottom: 25px; animation-delay: -2.4s; }
.home-page .app-hermes { right: 18px; bottom: 17px; animation-delay: -3.4s; }
.home-page .console-footer-row {
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  margin-top: 12px;
  padding: 0 3px;
  color: #7184a6;
  font-size: .61rem;
  font-weight: 740;
}
.home-page .console-footer-row span:first-child { display: inline-flex; align-items: center; gap: 8px; color: #a4b6d3; }
.home-page .hero-float-card {
  position: absolute;
  z-index: 6;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 15px;
  color: #fff;
  background: rgba(16,28,52,.86);
  box-shadow: 0 20px 55px rgba(0,0,0,.38), inset 0 1px rgba(255,255,255,.07);
  backdrop-filter: blur(16px);
  animation: float 5.6s ease-in-out infinite;
}
.home-page .hero-float-price { right: -17px; top: 76px; min-width: 118px; padding: 12px 14px; }
.home-page .hero-float-price span { display: block; color: #8293b1; font-size: .59rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.home-page .hero-float-price strong { display: block; margin-top: 3px; font-size: 1.25rem; letter-spacing: -.04em; }
.home-page .hero-float-price small { margin-left: 2px; color: #8fa1be; font-size: .58rem; }
.home-page .hero-float-deploy { left: -30px; bottom: 72px; display: flex; align-items: center; gap: 10px; padding: 11px 13px; animation-delay: -2.8s; }
.home-page .deploy-check { width: 35px; height: 35px; display: grid; place-items: center; border-radius: 10px; color: #fff; background: linear-gradient(135deg, #17a86c, #35d78a); box-shadow: 0 10px 25px rgba(22,166,106,.26); }
.home-page .hero-float-deploy strong { display: block; font-size: .72rem; }
.home-page .hero-float-deploy small { display: block; margin-top: 2px; color: #8596b3; font-size: .57rem; }

.home-product-strip {
  position: relative;
  z-index: 8;
  margin-top: -46px;
}
.home-product-panel {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 23px;
  background: color-mix(in srgb, var(--surface) 94%, transparent);
  box-shadow: 0 26px 75px rgba(10,22,49,.15);
  backdrop-filter: blur(20px);
}
.quick-product {
  position: relative;
  min-width: 0;
  display: grid;
  grid-template-columns: 47px minmax(0, 1fr) 18px;
  grid-template-rows: auto auto;
  column-gap: 12px;
  align-items: center;
  padding: 19px 17px;
  border-right: 1px solid var(--line);
  transition: background-color .22s ease, transform .22s ease;
}
.quick-product:last-child { border-right: 0; }
.quick-product:hover { background: color-mix(in srgb, var(--quick-color) 7%, var(--surface)); }
.quick-product-icon {
  grid-row: 1 / 3;
  width: 47px;
  height: 47px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: var(--quick-color);
  background: color-mix(in srgb, var(--quick-color) 10%, var(--surface));
  transition: transform .22s ease;
}
.quick-product:hover .quick-product-icon { transform: translateY(-2px) rotate(-2deg); }
.quick-product-icon svg { width: 23px; height: 23px; }
.quick-product-copy { min-width: 0; align-self: end; }
.quick-product-copy small { display: block; overflow: hidden; color: var(--muted); font-size: .58rem; font-weight: 740; text-overflow: ellipsis; text-transform: uppercase; letter-spacing: .055em; white-space: nowrap; }
.quick-product-copy strong { display: block; margin-top: 2px; overflow: hidden; font-size: .84rem; line-height: 1.2; text-overflow: ellipsis; white-space: nowrap; }
.quick-product-price { grid-column: 2; align-self: start; color: var(--muted); font-size: .62rem; }
.quick-product-price b { color: var(--quick-color); font-size: .72rem; }
.quick-arrow { grid-column: 3; grid-row: 1 / 3; color: var(--muted); opacity: .55; transition: transform .2s ease, color .2s ease, opacity .2s ease; }
.quick-product:hover .quick-arrow { color: var(--quick-color); opacity: 1; transform: translateX(3px); }

.home-page .home-cloud-products { padding-top: 138px; }
.home-page .home-service-grid .service-card {
  min-height: 350px;
  border-radius: 24px;
  box-shadow: 0 12px 35px rgba(19,31,61,.065);
}
.home-page .home-service-grid .service-card::before {
  position: absolute;
  inset: 0 auto auto 0;
  z-index: 2;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--service-color), color-mix(in srgb, var(--service-color) 20%, transparent));
  content: "";
  opacity: .9;
}
.home-page .home-service-grid .service-card::after {
  right: -62px;
  bottom: -75px;
  width: 230px;
  height: 230px;
  background:
    radial-gradient(circle at 35% 35%, color-mix(in srgb, var(--service-color) 18%, transparent), transparent 63%);
}
.home-page .home-service-grid .service-card.featured {
  background:
    radial-gradient(circle at 92% 88%, color-mix(in srgb, var(--service-color) 11%, transparent), transparent 38%),
    linear-gradient(145deg, color-mix(in srgb, var(--service-color) 4%, var(--surface)), var(--surface));
}
.home-page .home-service-grid .service-card:nth-child(n+3) { grid-column: span 4; }
.home-page .home-service-grid .service-card:nth-child(n+3) h3 { font-size: 1.3rem; }
.home-page .home-service-grid .service-card:nth-child(n+3) p { font-size: .86rem; }
.home-page .home-service-grid .service-card:hover { transform: translateY(-7px); box-shadow: 0 24px 58px rgba(17,31,62,.12); }
.home-page .home-service-grid .service-icon { width: 61px; height: 61px; border-radius: 18px; }
.home-page .home-service-grid .price-pill { padding: 8px 12px; background: color-mix(in srgb, var(--surface-2) 86%, transparent); }
.home-page .home-service-grid .service-link { margin-top: 27px; }

.home-page .home-app-section { padding: 82px 0; }
.home-page .home-app-section .container { width: min(calc(100% - 40px), 1260px); }
.home-page .app-showcase {
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 34px;
  background:
    radial-gradient(circle at 4% 5%, rgba(230,50,36,.24), transparent 27%),
    radial-gradient(circle at 93% 89%, rgba(40,103,240,.25), transparent 31%),
    linear-gradient(135deg, #080f20, #101c38 58%, #0c1730);
  box-shadow: 0 34px 90px rgba(8,17,38,.24);
}
.home-page .app-showcase::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  opacity: .12;
  background-image: linear-gradient(rgba(255,255,255,.12) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.12) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(90deg, rgba(0,0,0,.8), transparent 70%);
}
.home-page .app-showcase-inner { position: relative; z-index: 1; grid-template-columns: .82fr 1.18fr; padding: 76px; }
.home-page .app-showcase-copy h2 { max-width: 490px; font-size: clamp(2.4rem, 4vw, 3.9rem); }
.home-page .app-showcase-copy p { max-width: 510px; color: #aab8d2; }
.home-page .app-showcase-highlights { display: flex; flex-wrap: wrap; gap: 9px 13px; margin: -6px 0 28px; }
.home-page .app-showcase-highlights span { display: inline-flex; align-items: center; gap: 7px; color: #c4cee0; font-size: .68rem; font-weight: 740; }
.home-page .app-showcase-highlights i { width: 6px; height: 6px; border-radius: 50%; background: #39d287; box-shadow: 0 0 0 4px rgba(57,210,135,.1); }
.home-page .app-grid { gap: 15px; }
.home-page .app-card-v2 {
  min-height: 215px;
  padding: 22px;
  border-radius: 21px;
  background: linear-gradient(145deg, rgba(255,255,255,.07), rgba(255,255,255,.035));
}
.home-page .app-card-v2::before {
  position: absolute;
  right: -55px;
  bottom: -70px;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  background: radial-gradient(circle, color-mix(in srgb, var(--app-color) 23%, transparent), transparent 65%);
  content: "";
}
.home-page .app-card-v2 .app-card-icon,
.home-page .app-card-v2 h3,
.home-page .app-card-v2 p,
.home-page .app-card-v2 .app-price { position: relative; z-index: 2; }
.home-page .app-card-v2 h3 { margin-top: 16px; }
.home-page .app-card-v2 p { max-width: 230px; }
.home-page .app-price {
  position: absolute !important;
  left: 22px;
  bottom: 18px;
  color: #8495b3;
  font-size: .62rem;
  font-weight: 720;
}
.home-page .app-price strong { color: #fff; font-size: .74rem; }
.home-page .app-card-v2 .corner-arrow { z-index: 3; width: 30px; height: 30px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.1); border-radius: 9px; background: rgba(255,255,255,.04); }

.home-page .home-feature-section { padding-top: 94px; }
.home-page .home-feature-section .feature-grid { gap: 22px; }
.home-page .home-feature-section .feature-card {
  position: relative;
  min-height: 225px;
  overflow: hidden;
  padding: 29px;
  border-radius: 22px;
  background: linear-gradient(155deg, color-mix(in srgb, var(--feature-color) 3.5%, var(--surface)), var(--surface));
}
.home-page .home-feature-section .feature-card::before {
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--feature-color), transparent 80%);
  content: "";
  opacity: .9;
}
.home-page .home-feature-section .feature-card::after {
  position: absolute;
  right: -55px;
  bottom: -75px;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--feature-color) 6%, transparent);
  content: "";
}
.home-page .home-feature-section .feature-icon,
.home-page .home-feature-section .feature-card h3,
.home-page .home-feature-section .feature-card p { position: relative; z-index: 2; }
.home-page .home-feature-section .feature-card h3 { font-size: 1.06rem; }
.home-page .home-infra-section { overflow: hidden; }
.home-page .home-infra-section::before {
  position: absolute;
  left: -180px;
  top: 40px;
  width: 430px;
  height: 430px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(40,103,240,.09), transparent 67%);
  content: "";
}
.home-page .pricing-highlight .plan-card { border-radius: 22px; }
.home-page .cta-shell { border-radius: 31px; }

.footer-payments { align-items: center; gap: 7px; }
.payment-chip.payment-icon-only {
  width: 50px;
  min-width: 50px;
  height: 32px;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 5px 14px rgba(0,0,0,.12);
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.payment-chip.payment-icon-only:hover {
  transform: translateY(-2px);
  border-color: rgba(255,255,255,.28);
  box-shadow: 0 8px 20px rgba(0,0,0,.2);
}
.payment-chip.payment-icon-only img {
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: contain;
  filter: none;
}

@media (max-width: 1120px) {
  .home-page .home-hero-v2 .hero-grid { grid-template-columns: minmax(0, .96fr) minmax(450px, 1.04fr); gap: 42px; }
  .home-page .hero-float-price { right: 0; }
  .home-page .hero-float-deploy { left: 0; }
  .home-page .home-service-grid .service-card:nth-child(n+3) { grid-column: span 6; }
  .home-page .home-service-grid .service-card:nth-child(5) { grid-column: 1 / -1; }
  .home-page .app-showcase-inner { padding: 62px; gap: 42px; }
}

@media (max-width: 1024px) {
  .home-page .home-hero-v2 { min-height: auto; }
  .home-page .home-hero-v2 .hero-grid {
    grid-template-columns: 1fr;
    gap: 42px;
    padding: 76px 0 96px;
    text-align: center;
  }
  .home-page .home-hero-v2 .hero-copy { margin-inline: auto; }
  .home-page .home-hero-v2 .hero-lead { margin-inline: auto; }
  .home-page .home-hero-v2 .hero-buttons,
  .home-page .home-hero-v2 .hero-points,
  .home-page .home-hero-v2 .hero-meta { justify-content: center; }
  .home-page .hero-console-wrap { width: min(100%, 650px); min-height: 575px; margin: 0 auto; }
  .home-page .cloud-console { transform: none; }
  .home-page .hero-console-wrap:hover .cloud-console { transform: translateY(-4px); }
  .home-product-panel { grid-template-columns: repeat(2, 1fr); }
  .quick-product:nth-child(2) { border-right: 0; }
  .quick-product:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .home-page .home-cloud-products { padding-top: 118px; }
  .home-page .home-service-grid .service-card.featured,
  .home-page .home-service-grid .service-card.compact { grid-column: span 6; }
  .home-page .app-showcase-inner { grid-template-columns: 1fr; padding: 58px; }
  .home-page .app-showcase-copy { text-align: center; }
  .home-page .app-showcase-copy h2,
  .home-page .app-showcase-copy p { margin-inline: auto; }
  .home-page .app-showcase-highlights,
  .home-page .app-showcase-copy .button-row { justify-content: center; }
}

@media (max-width: 760px) {
  .home-page .home-hero-v2 .hero-grid { padding: 62px 0 84px; }
  .home-page .home-hero-v2 .hero-title { font-size: clamp(2.75rem, 12vw, 4rem); }
  .home-page .home-hero-v2 .hero-lead { font-size: 1rem; }
  .home-page .home-hero-v2 .hero-points { display: grid; grid-template-columns: repeat(2, auto); gap: 10px 14px; text-align: left; }
  .home-page .hero-console-wrap { min-height: 500px; }
  .home-page .console-orbit-one { width: 480px; height: 480px; }
  .home-page .console-orbit-two { width: 390px; height: 390px; }
  .home-page .cloud-console { width: min(100%, 520px); border-radius: 23px; }
  .home-page .cloud-console-head { padding: 13px 14px; }
  .home-page .cloud-console-body { padding: 14px; }
  .home-page .console-scene { min-height: 275px; }
  .home-page .console-scene img { width: 235px; }
  .home-page .hero-float-price { right: 3px; top: 56px; }
  .home-page .hero-float-deploy { left: 3px; bottom: 46px; }
  .home-product-strip { margin-top: -34px; }
  .home-product-panel { border-radius: 19px; }
  .quick-product { padding: 17px 15px; }
  .home-page .home-cloud-products { padding-top: 102px; }
  .home-page .home-service-grid .service-card,
  .home-page .home-service-grid .service-card.featured,
  .home-page .home-service-grid .service-card.compact,
  .home-page .home-service-grid .service-card:nth-child(n+3),
  .home-page .home-service-grid .service-card:nth-child(5) { grid-column: auto; }
  .home-page .home-service-grid .service-card { min-height: 320px; }
  .home-page .home-app-section .container { width: min(calc(100% - 28px), 1260px); }
  .home-page .app-showcase { border-radius: 25px; }
  .home-page .app-showcase-inner { padding: 42px 22px; }
  .home-page .app-grid { grid-template-columns: 1fr; }
  .home-page .app-card-v2 { min-height: 205px; }
  .home-page .home-feature-section .feature-card { min-height: 0; }
  .payment-chip.payment-icon-only { width: 48px; min-width: 48px; height: 30px; }
}

@media (max-width: 520px) {
  .home-page .home-hero-v2 .hero-badge { font-size: .59rem; letter-spacing: .035em; }
  .home-page .home-hero-v2 .hero-points { grid-template-columns: 1fr; width: max-content; max-width: 100%; margin-inline: auto; }
  .home-page .home-hero-v2 .hero-meta { display: grid; grid-template-columns: 1fr 1fr; width: 100%; gap: 13px; }
  .home-page .home-hero-v2 .hero-stat { min-width: 0; text-align: left; }
  .home-page .hero-console-wrap { min-height: 430px; }
  .home-page .cloud-console-head { min-height: 62px; }
  .home-page .console-status { padding: 6px 8px; font-size: .54rem; }
  .home-page .console-brand strong { font-size: .72rem; }
  .home-page .console-metrics > div { padding: 9px 8px; }
  .home-page .console-metrics strong { font-size: .67rem; }
  .home-page .console-scene { min-height: 235px; }
  .home-page .console-scene img { width: 195px; }
  .home-page .scene-halo { width: 190px; height: 190px; }
  .home-page .console-app { gap: 5px; padding: 5px 7px 5px 5px; font-size: .51rem; }
  .home-page .console-app b { width: 23px; height: 23px; }
  .home-page .app-openclaw { left: 7px; top: 13px; }
  .home-page .app-coolify { right: 7px; top: 36px; }
  .home-page .app-n8n { left: 9px; bottom: 18px; }
  .home-page .app-hermes { right: 8px; bottom: 12px; }
  .home-page .hero-float-price { top: 44px; min-width: 102px; padding: 9px 11px; }
  .home-page .hero-float-price strong { font-size: 1.05rem; }
  .home-page .hero-float-deploy { bottom: 32px; padding: 8px 10px; }
  .home-page .hero-float-deploy small { display: none; }
  .home-product-panel { grid-template-columns: 1fr; }
  .quick-product { border-right: 0; border-bottom: 1px solid var(--line); }
  .quick-product:nth-child(3) { border-bottom: 1px solid var(--line); }
  .quick-product:last-child { border-bottom: 0; }
  .home-page .home-cloud-products { padding-top: 92px; }
  .home-page .app-showcase-inner { padding-inline: 18px; }
  .home-page .app-showcase-copy h2 { font-size: 2.25rem; }
  .footer-payments { max-width: 360px; }
}

/* Keep desktop dropdown layers fully out of the rendering tree until opened. */
@media (min-width: 1025px) {
  .nav-item > .dropdown { display: none; }
  .nav-item:hover > .dropdown,
  .nav-item:focus-within > .dropdown,
  .nav-item.open > .dropdown { display: block; }
}

/* FITVM homepage + navigation refinement — compact hero and easier menus */
.site-header { z-index: 500; }
.nav-wrap { position: relative; }
.nav-link {
  min-height: 50px;
  padding: 12px 15px;
  border: 1px solid transparent;
}
.nav-link:focus-visible,
.menu-card:focus-visible {
  outline: 3px solid rgba(40,103,240,.28);
  outline-offset: 2px;
}
.dropdown { z-index: 650; pointer-events: none; }
.nav-item:hover > .dropdown,
.nav-item:focus-within > .dropdown,
.nav-item.open > .dropdown { pointer-events: auto; }

@media (min-width: 1025px) {
  .nav-main { gap: 7px; }
  .nav-item::after {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    height: 14px;
    content: "";
  }
  .nav-item > .dropdown {
    display: block;
    top: calc(100% + 8px);
    pointer-events: none;
  }
  .nav-item:hover > .dropdown,
  .nav-item:focus-within > .dropdown,
  .nav-item.open > .dropdown { pointer-events: auto; }
}

.home-page .announcement { display: none; }
.home-page .site-header {
  top: 0;
  padding: 12px 0 10px;
  border: 0;
  background:
    radial-gradient(circle at 10% 0%, rgba(230,50,36,.14), transparent 34%),
    radial-gradient(circle at 88% 0%, rgba(40,103,240,.13), transparent 35%),
    #071020;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
.home-page .site-header.is-scrolled {
  border: 0;
  background: rgba(5,12,25,.94);
  box-shadow: 0 14px 38px rgba(0,0,0,.28);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}
.home-page .nav-wrap {
  width: min(calc(100% - 36px), 1320px);
  min-height: 70px;
  gap: 20px;
  padding: 0 16px 0 18px;
  border: 1px solid rgba(148,171,217,.18);
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(11,24,48,.94), rgba(10,19,38,.9));
  box-shadow: 0 18px 55px rgba(0,0,0,.25), inset 0 1px rgba(255,255,255,.055);
}
.home-page .brand img {
  width: 141px;
  content: url("../img/logo-white.png");
}
.home-page .nav-main { margin-left: auto; }
.home-page .nav-link {
  color: #d9e3f4;
  background: transparent;
  font-size: .86rem;
  font-weight: 760;
}
.home-page .nav-link:hover,
.home-page .nav-link.is-active,
.home-page .nav-item.open > .nav-link {
  color: #fff;
  border-color: rgba(255,255,255,.08);
  background: rgba(255,255,255,.075);
}
.home-page .nav-link .chev { color: #93a7c7; }
.home-page .dropdown {
  border-color: rgba(151,174,219,.17);
  color: #eef4ff;
  background: linear-gradient(155deg, #111f3a, #0b162c);
  box-shadow: 0 30px 80px rgba(0,0,0,.46), inset 0 1px rgba(255,255,255,.05);
}
.home-page .menu-card:hover { background: rgba(255,255,255,.065); }
.home-page .menu-card strong { color: #f2f6ff; }
.home-page .menu-card small { color: #92a3c0; }
.home-page .menu-icon { background: color-mix(in srgb, var(--menu-color, var(--brand)) 18%, #101d35); }
.home-page .theme-toggle,
.home-page .nav-toggle {
  color: #dbe5f6;
  border-color: rgba(255,255,255,.13);
  background: rgba(255,255,255,.045);
}
.home-page .theme-toggle:hover,
.home-page .nav-toggle:hover {
  color: #fff;
  border-color: rgba(255,117,101,.58);
  background: rgba(255,255,255,.08);
}
.home-page .nav-actions .btn-outline {
  color: #eef4ff;
  border-color: rgba(255,255,255,.16);
  background: rgba(255,255,255,.025);
}
.home-page .nav-actions .btn-outline:hover {
  color: #fff;
  border-color: rgba(255,255,255,.34);
  background: rgba(255,255,255,.07);
}

.home-page .home-hero-v2 {
  min-height: auto;
  background:
    radial-gradient(circle at 8% 18%, rgba(230,50,36,.24), transparent 31%),
    radial-gradient(circle at 86% 22%, rgba(40,103,240,.24), transparent 34%),
    radial-gradient(circle at 60% 96%, rgba(114,86,232,.13), transparent 31%),
    linear-gradient(135deg, #071020 0%, #09152a 53%, #0b1730 100%);
}
.home-page .home-hero-v2::before {
  opacity: .15;
  background-size: 56px 56px;
}
.home-page .home-hero-v2::after { height: 120px; }
.home-page .home-hero-v2 .hero-grid {
  grid-template-columns: minmax(0, 1fr) minmax(520px, .96fr);
  gap: 54px;
  align-items: center;
  padding: 48px 0 68px;
}
.home-page .home-hero-v2 .hero-copy { max-width: 650px; }
.home-page .home-hero-v2 .hero-badge {
  margin-bottom: 19px;
  padding: 7px 11px;
  font-size: .7rem;
}
.home-page .home-hero-v2 .hero-title {
  max-width: 690px;
  font-size: clamp(3.15rem, 4.7vw, 4.72rem);
  line-height: .98;
  letter-spacing: -.064em;
}
.home-page .home-hero-v2 .hero-lead {
  max-width: 620px;
  margin: 23px 0 26px;
  font-size: 1.04rem;
  line-height: 1.7;
}
.home-page .home-hero-v2 .hero-buttons .btn {
  min-height: 50px;
  padding-inline: 20px;
}
.home-page .home-hero-v2 .hero-points {
  gap: 9px 18px;
  margin-top: 23px;
  font-size: .79rem;
}
.home-page .home-hero-v2 .check-dot { width: 19px; height: 19px; }

.home-page .hero-console-wrap {
  min-height: 470px;
  display: grid;
  place-items: center;
}
.home-page .console-backlight {
  position: absolute;
  z-index: -1;
  width: 88%;
  height: 82%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37,107,244,.27), rgba(37,107,244,.06) 48%, transparent 73%);
  filter: blur(24px);
  pointer-events: none;
}
.home-page .cloud-console {
  width: min(100%, 590px);
  border-radius: 25px;
  transform: none;
  box-shadow: 0 34px 95px rgba(0,0,0,.43), inset 0 1px rgba(255,255,255,.075);
}
.home-page .hero-console-wrap:hover .cloud-console {
  transform: translateY(-4px);
  box-shadow: 0 41px 110px rgba(0,0,0,.51), inset 0 1px rgba(255,255,255,.085);
}
.home-page .cloud-console-head {
  min-height: 64px;
  padding: 12px 16px;
}
.home-page .console-mark {
  width: 38px;
  height: 38px;
  border-radius: 11px;
}
.home-page .console-brand strong { font-size: .79rem; }
.home-page .console-brand small { font-size: .58rem; }
.home-page .console-status { padding: 6px 9px; font-size: .59rem; }
.home-page .cloud-console-body { padding: 15px 16px 13px; }
.home-page .console-overview {
  min-height: 43px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.home-page .console-overview > span:first-child small,
.home-page .console-price small {
  display: block;
  color: #778aa9;
  font-size: .57rem;
  font-weight: 800;
  letter-spacing: .075em;
  line-height: 1.1;
  text-transform: uppercase;
}
.home-page .console-overview > span:first-child strong {
  display: block;
  margin-top: 3px;
  color: #fff;
  font-size: .97rem;
  line-height: 1.1;
}
.home-page .console-price {
  min-width: 112px;
  padding: 7px 10px;
  border: 1px solid rgba(126,166,255,.18);
  border-radius: 11px;
  background: rgba(40,103,240,.075);
}
.home-page .console-price strong {
  display: block;
  margin-top: 2px;
  color: #fff;
  font-size: 1.06rem;
  line-height: 1.05;
  letter-spacing: -.035em;
}
.home-page .console-price strong span { margin-left: 2px; color: #8ca0c0; font-size: .55rem; letter-spacing: 0; }
.home-page .console-metrics {
  gap: 8px;
  margin-top: 10px;
}
.home-page .console-metrics > div {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 9px 10px;
  border-radius: 11px;
}
.home-page .console-metrics .metric-icon {
  width: 31px;
  height: 31px;
  flex: 0 0 31px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(132,168,239,.15);
  border-radius: 9px;
  color: #9abaff;
  background: rgba(40,103,240,.07);
  font-size: .85rem;
  letter-spacing: 0;
  text-transform: none;
}
.home-page .console-metrics .metric-copy {
  min-width: 0;
  display: block;
  color: inherit;
  font-size: inherit;
  letter-spacing: normal;
  text-transform: none;
}
.home-page .console-metrics .metric-copy small {
  display: block;
  color: #7184a6;
  font-size: .54rem;
  font-weight: 760;
  letter-spacing: .05em;
  line-height: 1.15;
  text-transform: uppercase;
}
.home-page .console-metrics .metric-copy strong {
  display: block;
  margin-top: 3px;
  overflow: hidden;
  color: #f1f5ff;
  font-size: .72rem;
  line-height: 1.15;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.home-page .console-scene {
  min-height: 205px;
  margin-top: 10px;
  border-radius: 16px;
  background:
    radial-gradient(circle at 50% 56%, rgba(42,104,240,.23), transparent 50%),
    linear-gradient(180deg, rgba(4,12,27,.62), rgba(3,10,24,.45));
}
.home-page .scene-grid { background-size: 34px 34px; opacity: .12; }
.home-page .scene-halo {
  width: 255px;
  height: 155px;
  border-radius: 50%;
  border-color: rgba(89,132,255,.15);
  box-shadow: 0 0 65px rgba(40,103,240,.18), inset 0 0 40px rgba(40,103,240,.08);
}
.home-page .console-scene img {
  width: min(76%, 360px);
  max-height: 195px;
  object-fit: contain;
  opacity: 1;
  filter: drop-shadow(0 18px 25px rgba(0,0,0,.36)) saturate(1.06);
}
.home-page .console-app {
  padding: 6px 8px 6px 6px;
  border-radius: 10px;
  font-size: .57rem;
  animation-duration: 6s;
  transition: transform .2s ease, border-color .2s ease, background-color .2s ease;
}
.home-page a.console-app:hover {
  border-color: color-mix(in srgb, var(--app-accent) 58%, rgba(255,255,255,.18));
  background: color-mix(in srgb, var(--app-accent) 13%, rgba(13,25,49,.9));
  transform: translateY(-2px);
}
.home-page .console-app b { width: 25px; height: 25px; border-radius: 7px; }
.home-page .console-app b svg { width: 13px; height: 13px; }
.home-page .app-openclaw { left: 13px; top: 16px; }
.home-page .app-coolify { right: 13px; top: 20px; }
.home-page .app-n8n { left: 17px; bottom: 14px; }
.home-page .console-action-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 9px;
}
.home-page .console-action {
  min-width: 0;
  min-height: 49px;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 8px 10px;
  border: 1px solid rgba(255,255,255,.075);
  border-radius: 12px;
  color: #e8effd;
  background: rgba(255,255,255,.028);
  transition: transform .2s ease, border-color .2s ease, background-color .2s ease;
}
.home-page a.console-action:hover {
  transform: translateY(-2px);
  border-color: rgba(139,118,255,.35);
  background: rgba(114,86,232,.08);
}
.home-page .console-action-icon {
  width: 31px;
  height: 31px;
  flex: 0 0 31px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  color: #fff;
}
.home-page .console-action-icon.success { background: linear-gradient(135deg, #17a86c, #35d78a); }
.home-page .console-action-icon.hermes { background: linear-gradient(135deg, #7256e8, #957df7); }
.home-page .console-action strong {
  display: block;
  overflow: hidden;
  font-size: .66rem;
  line-height: 1.15;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.home-page .console-action small {
  display: block;
  margin-top: 3px;
  overflow: hidden;
  color: #788aa8;
  font-size: .52rem;
  line-height: 1.15;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.home-page .console-footer-row {
  min-height: 28px;
  margin-top: 6px;
  font-size: .57rem;
}

.home-page .hero-benefit-bar {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 0;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.105);
  border-radius: 20px;
  background: rgba(10,21,42,.72);
  box-shadow: inset 0 1px rgba(255,255,255,.045), 0 22px 65px rgba(0,0,0,.2);
  backdrop-filter: blur(14px);
}
.home-page .hero-benefit {
  min-width: 0;
  min-height: 72px;
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 13px 20px;
  border-right: 1px solid rgba(255,255,255,.08);
}
.home-page .hero-benefit:last-child { border-right: 0; }
.home-page .hero-benefit-icon {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,115,98,.24);
  border-radius: 12px;
  color: #ff796b;
  background: rgba(230,50,36,.075);
}
.home-page .hero-benefit strong {
  display: block;
  color: #f4f7ff;
  font-size: .82rem;
  line-height: 1.2;
}
.home-page .hero-benefit small {
  display: block;
  margin-top: 4px;
  color: #8495b2;
  font-size: .64rem;
  line-height: 1.25;
}
.home-page .home-product-strip { margin-top: -30px; }

@media (max-width: 1180px) and (min-width: 1025px) {
  .home-page .nav-wrap { gap: 14px; padding-inline: 14px; }
  .home-page .nav-link { padding-inline: 11px; font-size: .8rem; }
  .home-page .nav-actions .btn-outline { display: none; }
  .home-page .nav-actions .btn-primary { display: inline-flex; }
  .home-page .home-hero-v2 .hero-grid {
    grid-template-columns: minmax(0, .95fr) minmax(475px, 1.05fr);
    gap: 38px;
  }
  .home-page .home-hero-v2 .hero-title { font-size: clamp(3rem, 5.5vw, 4.25rem); }
}

@media (max-width: 1024px) {
  .home-page .site-header { padding: 9px 0; }
  .home-page .nav-wrap {
    width: min(calc(100% - 28px), 960px);
    min-height: 64px;
    padding-inline: 13px;
    border-radius: 17px;
  }
  .home-page .nav-main {
    top: 88px;
    right: 14px;
    left: 14px;
    border-color: rgba(151,174,219,.19);
    color: #edf3ff;
    background: linear-gradient(155deg, #111f3a, #0b162c);
    box-shadow: 0 30px 80px rgba(0,0,0,.48);
  }
  .home-page .nav-item.open > .dropdown { background: rgba(255,255,255,.04); }
  .home-page .nav-actions .btn-outline { display: none; }
  .home-page .nav-actions .btn-primary { display: inline-flex; }
  .home-page .home-hero-v2 .hero-grid {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 54px 0 72px;
    text-align: center;
  }
  .home-page .home-hero-v2 .hero-copy { margin-inline: auto; }
  .home-page .home-hero-v2 .hero-lead { margin-inline: auto; }
  .home-page .home-hero-v2 .hero-buttons,
  .home-page .home-hero-v2 .hero-points { justify-content: center; }
  .home-page .hero-console-wrap {
    width: min(100%, 640px);
    min-height: 455px;
    margin: 0 auto;
  }
  .home-page .hero-benefit-bar { width: min(100%, 760px); margin-inline: auto; }
}

@media (max-width: 760px) {
  .home-page .site-header { padding: 8px 0; }
  .home-page .nav-wrap {
    width: calc(100% - 20px);
    min-height: 60px;
    padding-inline: 11px;
    border-radius: 15px;
  }
  .home-page .brand img { width: 121px; }
  .home-page .nav-main { top: 80px; }
  .home-page .home-hero-v2 .hero-grid { gap: 30px; padding: 43px 0 62px; }
  .home-page .home-hero-v2 .hero-title { font-size: clamp(2.75rem, 11.5vw, 3.8rem); }
  .home-page .home-hero-v2 .hero-lead { margin-top: 20px; font-size: .98rem; line-height: 1.65; }
  .home-page .home-hero-v2 .hero-points { grid-template-columns: repeat(2, auto); margin-top: 21px; }
  .home-page .hero-console-wrap { min-height: 420px; }
  .home-page .cloud-console { width: min(100%, 555px); border-radius: 21px; }
  .home-page .cloud-console-head { min-height: 59px; padding: 10px 12px; }
  .home-page .cloud-console-body { padding: 12px; }
  .home-page .console-scene { min-height: 188px; }
  .home-page .console-scene img { width: min(76%, 330px); max-height: 178px; }
  .home-page .console-action small { display: none; }
  .home-page .console-action { min-height: 43px; }
  .home-page .hero-benefit { padding: 12px 14px; }
  .home-page .hero-benefit-icon { width: 38px; height: 38px; flex-basis: 38px; }
  .home-page .home-product-strip { margin-top: -24px; }
}

@media (max-width: 620px) {
  .home-page .hero-benefit-bar { grid-template-columns: repeat(3, 1fr); }
  .home-page .hero-benefit {
    min-height: 84px;
    flex-direction: column;
    justify-content: center;
    gap: 7px;
    padding: 10px 7px;
    text-align: center;
  }
  .home-page .hero-benefit-icon { width: 34px; height: 34px; flex-basis: 34px; border-radius: 10px; }
  .home-page .hero-benefit strong { font-size: .67rem; }
  .home-page .hero-benefit small { display: none; }
}

@media (max-width: 520px) {
  .home-page .home-hero-v2 .hero-grid { padding-top: 36px; }
  .home-page .home-hero-v2 .hero-badge { margin-bottom: 16px; }
  .home-page .home-hero-v2 .hero-title { font-size: clamp(2.65rem, 12.7vw, 3.35rem); }
  .home-page .home-hero-v2 .hero-points {
    width: max-content;
    max-width: 100%;
    grid-template-columns: 1fr;
    margin-inline: auto;
  }
  .home-page .hero-console-wrap { min-height: 392px; }
  .home-page .console-brand { gap: 8px; }
  .home-page .console-mark { width: 34px; height: 34px; }
  .home-page .console-status { gap: 5px; padding: 5px 7px; font-size: .5rem; }
  .home-page .console-overview { min-height: 39px; }
  .home-page .console-price { min-width: 94px; padding: 6px 8px; }
  .home-page .console-price strong { font-size: .92rem; }
  .home-page .console-metrics > div { gap: 5px; padding: 7px 6px; }
  .home-page .console-metrics .metric-icon { width: 27px; height: 27px; flex-basis: 27px; }
  .home-page .console-metrics .metric-copy small { font-size: .47rem; }
  .home-page .console-metrics .metric-copy strong { font-size: .62rem; }
  .home-page .console-scene { min-height: 172px; }
  .home-page .console-scene img { width: min(82%, 300px); max-height: 162px; }
  .home-page .console-app { padding: 5px 6px 5px 5px; font-size: .49rem; }
  .home-page .console-app b { width: 22px; height: 22px; }
  .home-page .app-openclaw { left: 7px; top: 10px; }
  .home-page .app-coolify { right: 7px; top: 13px; }
  .home-page .app-n8n { left: 9px; bottom: 9px; }
  .home-page .console-action { gap: 6px; padding: 7px; }
  .home-page .console-action-icon { width: 27px; height: 27px; flex-basis: 27px; }
  .home-page .console-action strong { font-size: .57rem; }
  .home-page .console-footer-row { font-size: .49rem; }
}

@media (max-width: 390px) {
  .home-page .console-brand small { display: none; }
  .home-page .console-status { font-size: .46rem; }
  .home-page .app-n8n { display: none; }
  .home-page .console-action strong { font-size: .52rem; }
}

/* Mobile hero compression: keep the first screen focused and reduce vertical scrolling. */
@media (max-width: 520px) {
  .home-page .nav-actions .btn-primary { display: none; }
  .home-page .hero-buttons { width: 100%; gap: 8px; }
  .home-page .hero-buttons .btn {
    width: auto;
    min-width: 0;
    flex: 1 1 0;
    padding-inline: 9px;
    font-size: .76rem;
  }
  .home-page .home-hero-v2 .hero-points {
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, auto));
    justify-content: center;
    gap: 10px 13px;
  }
  .home-page .hero-benefit-bar { display: none; }
  .home-page .hero-console-wrap { min-height: 382px; }
}

@media (max-width: 350px) {
  .home-page .home-hero-v2 .hero-points {
    width: max-content;
    grid-template-columns: 1fr;
  }
}
