/* ==========================================================================
   OmniMod — Premium Interface System
   Dark machined surfaces, restrained violet light, crisp technical hierarchy.
   ========================================================================== */

:root {
  --void: #07070a;
  --void-2: #09090d;
  --charcoal: #0d0d12;
  --panel: #111117;
  --panel-2: #15151d;
  --raised: #191923;
  --raised-2: #1e1e29;

  --line: rgba(255, 255, 255, 0.085);
  --line-soft: rgba(255, 255, 255, 0.045);
  --line-bright: rgba(255, 255, 255, 0.15);

  --violet: #7c4dff;
  --violet-deep: #5d36dd;
  --violet-2: #bbaaff;
  --violet-3: #ded5ff;
  --cyan: #7ed7ff;
  --green: #6fe0a5;
  --amber: #ffc76b;
  --red: #ff7b88;

  --white: #f8f7fc;
  --silver-2: #eeedf5;
  --silver: #c9c7d4;
  --steel: #92909f;
  --muted: #646271;

  --display: "Space Grotesk", system-ui, sans-serif;
  --body: "Inter", system-ui, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, SFMono-Regular, Consolas, monospace;

  --maxw: 1200px;
  --nav-h: 76px;
  --radius-xs: 8px;
  --radius-sm: 12px;
  --radius: 18px;
  --radius-lg: 26px;
  --radius-xl: 34px;

  --ease: cubic-bezier(0.22, 0.75, 0.2, 1);
  --ease-spring: cubic-bezier(0.2, 0.95, 0.25, 1.18);
  --shadow-card: 0 24px 70px -38px rgba(0, 0, 0, 0.92);
  --shadow-violet: 0 24px 70px -34px rgba(124, 77, 255, 0.72);
  --glow-soft: 0 0 0 1px rgba(124, 77, 255, 0.18), 0 18px 50px -30px rgba(124, 77, 255, 0.7);
}

/* Reset ------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html {
  max-width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: calc(var(--nav-h) + 18px);
}
body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  background: var(--void);
  color: var(--silver);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.65;
  letter-spacing: -0.005em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body::selection { background: rgba(124, 77, 255, 0.34); color: var(--white); }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }
button, summary { -webkit-tap-highlight-color: transparent; }
button:disabled { cursor: not-allowed; opacity: 0.55; }
:focus-visible { outline: 2px solid var(--violet-2); outline-offset: 3px; }

.skip-link {
  position: fixed;
  z-index: 1000;
  left: 18px;
  top: 14px;
  transform: translateY(-160%);
  padding: 10px 14px;
  border-radius: 10px;
  background: var(--white);
  color: #0a0910;
  font-weight: 700;
  transition: transform 0.2s;
}
.skip-link:focus { transform: translateY(0); }

/* Ambient background ------------------------------------------------------ */
.ambient { position: fixed; inset: 0; z-index: -10; pointer-events: none; overflow: hidden; }
.bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.022) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 90% 65% at 50% 12%, #000 8%, transparent 80%);
}
.bg-glow { position: absolute; border-radius: 50%; filter: blur(90px); opacity: 0.38; }
.bg-glow-a { width: 760px; height: 760px; left: 50%; top: -490px; transform: translateX(-50%); background: rgba(124, 77, 255, 0.55); }
.bg-glow-b { width: 520px; height: 520px; right: -300px; top: 38%; background: rgba(94, 54, 221, 0.2); }
.bg-noise {
  position: absolute;
  inset: 0;
  opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.5'/%3E%3C/svg%3E");
}
#particles { position: fixed; inset: 0; z-index: -2; pointer-events: none; opacity: 0.34; }

/* Shared layout ----------------------------------------------------------- */
.wrap { width: min(calc(100% - 40px), var(--maxw)); margin-inline: auto; }
.section { position: relative; padding: 124px 0; }
.section-shell { position: relative; }
.page-shell { min-height: calc(100vh - var(--nav-h)); padding: 68px 0 110px; }
.section-tint::before,
.pricing-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(255,255,255,0.015), rgba(124,77,255,0.018) 50%, rgba(255,255,255,0.008));
  border-block: 1px solid var(--line-soft);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--violet-2);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 28px; height: 1px; background: linear-gradient(90deg, var(--violet-2), transparent); }
.micro-label {
  display: block;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  line-height: 1.3;
  text-transform: uppercase;
}
.h-sec {
  margin: 0 0 18px;
  color: var(--white);
  font-family: var(--display);
  font-size: clamp(2.2rem, 4.4vw, 3.65rem);
  font-weight: 650;
  letter-spacing: -0.047em;
  line-height: 1.02;
}
.sub { max-width: 61ch; margin: 0; color: var(--steel); font-size: 1.05rem; line-height: 1.78; }
.grad {
  background: linear-gradient(112deg, var(--white) 15%, var(--violet-3) 52%, var(--violet-2) 72%, var(--violet));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.inline-link { display: inline-flex; align-items: center; gap: 8px; color: var(--violet-2); font-weight: 650; transition: color 0.2s, gap 0.2s; }
.inline-link:hover { color: var(--white); gap: 12px; }

/* Navigation -------------------------------------------------------------- */
.nav {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid transparent;
  transition: background 0.3s, border-color 0.3s, box-shadow 0.3s, backdrop-filter 0.3s;
}
.nav.scrolled,
.nav:hover {
  background: rgba(7, 7, 10, 0.78);
  border-bottom-color: var(--line-soft);
  box-shadow: 0 18px 50px -38px #000;
  backdrop-filter: blur(22px) saturate(135%);
}
.nav-inner { height: var(--nav-h); display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 12px; flex: 0 0 auto; }
.brand-mark-wrap {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(185, 168, 255, 0.2);
  border-radius: 12px;
  background: linear-gradient(145deg, rgba(124,77,255,0.15), rgba(255,255,255,0.02));
  box-shadow: 0 12px 34px -18px rgba(124,77,255,0.9);
}
.brand-mark { width: 26px; height: 26px; object-fit: contain; filter: drop-shadow(0 0 10px rgba(124,77,255,0.6)); }
.brand .wm { width: auto; height: 19px; object-fit: contain; }
.nav-links { display: flex; align-items: center; justify-content: center; gap: clamp(18px, 2.2vw, 32px); }
.nav-links a {
  position: relative;
  color: var(--steel);
  font-size: 0.88rem;
  font-weight: 550;
  white-space: nowrap;
  transition: color 0.2s;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -11px;
  height: 1px;
  transform: scaleX(0);
  background: linear-gradient(90deg, transparent, var(--violet-2), transparent);
  transition: transform 0.25s var(--ease);
}
.nav-links a:hover,
.nav-links a[aria-current="page"] { color: var(--white); }
.nav-links a:hover::after,
.nav-links a[aria-current="page"]::after { transform: scaleX(1); }
.nav-cta { display: flex; align-items: center; justify-content: flex-end; gap: 12px; flex: 0 0 auto; }
.nav-text-link { padding: 8px 2px; border: 0; background: transparent; color: var(--silver); font-size: 0.88rem; font-weight: 600; cursor: pointer; transition: color 0.2s; }
.nav-text-link:hover { color: var(--white); }
.nav-user { display: inline-flex; align-items: center; gap: 8px; color: var(--steel); font-family: var(--mono); font-size: 11px; }
.status-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green); box-shadow: 0 0 12px rgba(111,224,165,0.7); }
.nav-toggle { display: none; width: 42px; height: 42px; place-items: center; padding: 0; border: 1px solid var(--line); border-radius: 11px; background: rgba(255,255,255,0.025); cursor: pointer; }
.nav-toggle svg { width: 21px; height: 21px; }
.nav-toggle .icon-close { display: none; }
.nav.mobile-open .nav-toggle .icon-menu { display: none; }
.nav.mobile-open .nav-toggle .icon-close { display: block; }

/* Buttons ----------------------------------------------------------------- */
.btn {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 44px;
  padding: 11px 19px;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: 12px;
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  cursor: pointer;
  transition: transform 0.25s var(--ease), border-color 0.25s, background 0.25s, color 0.25s, box-shadow 0.25s;
}
.btn::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  transform: translateX(-120%);
  background: linear-gradient(100deg, transparent 20%, rgba(255,255,255,0.24), transparent 80%);
  transition: transform 0.65s var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn:hover::before { transform: translateX(120%); }
.btn svg { width: 17px; height: 17px; }
.btn-primary {
  color: #0c0a13;
  background: linear-gradient(180deg, #cbbfff, #9b7fff 44%, #7c4dff);
  border-color: rgba(218,208,255,0.45);
  box-shadow: 0 13px 34px -17px rgba(124,77,255,0.95), inset 0 1px rgba(255,255,255,0.38);
}
.btn-primary:hover { box-shadow: 0 18px 46px -19px rgba(124,77,255,1), inset 0 1px rgba(255,255,255,0.4); }
.btn-ghost { color: var(--silver-2); background: rgba(255,255,255,0.025); border-color: var(--line); box-shadow: inset 0 1px rgba(255,255,255,0.025); }
.btn-ghost:hover { color: var(--white); border-color: rgba(185,168,255,0.35); background: rgba(124,77,255,0.07); }
.btn-sm { min-height: 40px; padding: 10px 16px; font-size: 0.84rem; }
.btn-lg { min-height: 50px; padding: 14px 23px; font-size: 0.94rem; border-radius: 14px; }
.btn-block { width: 100%; }

/* Generic card ------------------------------------------------------------ */
.card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255,255,255,0.038), rgba(255,255,255,0.014));
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(16px);
  transition: transform 0.35s var(--ease), border-color 0.35s, box-shadow 0.35s;
}
.card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(480px circle at var(--mx, 50%) var(--my, 0%), rgba(124,77,255,0.15), transparent 44%);
  opacity: 0;
  transition: opacity 0.35s;
}
.card:hover { transform: translateY(-5px); border-color: rgba(185,168,255,0.3); box-shadow: var(--shadow-violet); }
.card:hover::before { opacity: 1; }

/* Hero -------------------------------------------------------------------- */
.hero { padding: 88px 0 0; }
.hero-grid { min-height: 690px; display: grid; grid-template-columns: 0.92fr 1.08fr; align-items: center; gap: clamp(48px, 6vw, 86px); }
.hero-copy { position: relative; z-index: 2; padding-bottom: 28px; }
.hero-badge {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 27px;
  padding: 8px 12px;
  border: 1px solid rgba(185,168,255,0.22);
  border-radius: 999px;
  background: rgba(124,77,255,0.055);
  color: var(--violet-3);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}
.hero-badge-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--violet-2); box-shadow: 0 0 12px var(--violet); animation: pulse 2.3s infinite; }
.hero h1 { margin: 0; color: var(--white); font-family: var(--display); font-size: clamp(3.35rem, 6.3vw, 5.6rem); font-weight: 680; letter-spacing: -0.065em; line-height: 0.94; }
.hero-lead { max-width: 58ch; margin: 28px 0 0; color: var(--steel); font-size: clamp(1rem, 1.5vw, 1.12rem); line-height: 1.78; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.hero-proof { display: flex; flex-wrap: wrap; gap: 0; margin-top: 48px; }
.hero-proof-item { min-width: 120px; padding: 0 24px; border-left: 1px solid var(--line); }
.hero-proof-item:first-child { padding-left: 0; border-left: 0; }
.proof-value { display: block; color: var(--white); font-family: var(--display); font-size: 1.2rem; font-weight: 650; line-height: 1.2; }
.proof-label { display: block; margin-top: 5px; color: var(--muted); font-family: var(--mono); font-size: 9px; letter-spacing: 0.08em; text-transform: uppercase; }

.hero-console { position: relative; width: 100%; perspective: 1500px; }
.console-window {
  position: relative;
  z-index: 2;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 24px;
  background: rgba(13,13,18,0.92);
  box-shadow: 0 50px 120px -48px rgba(0,0,0,1), 0 35px 100px -48px rgba(124,77,255,0.65), inset 0 1px rgba(255,255,255,0.05);
  transform: rotateY(-4deg) rotateX(1deg);
  backdrop-filter: blur(20px);
}
.console-window::after { content: ""; position: absolute; inset: 0; pointer-events: none; background: linear-gradient(135deg, rgba(255,255,255,0.05), transparent 24%); }
.console-titlebar { height: 52px; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 14px; padding: 0 18px; border-bottom: 1px solid var(--line-soft); background: rgba(255,255,255,0.015); }
.window-dots { display: flex; gap: 7px; }
.window-dots span { width: 8px; height: 8px; border-radius: 50%; background: #3d3c46; }
.window-dots span:first-child { background: #7c4dff; box-shadow: 0 0 8px rgba(124,77,255,0.5); }
.console-title { color: var(--muted); font-family: var(--mono); font-size: 9px; letter-spacing: 0.08em; }
.console-status { justify-self: end; display: inline-flex; align-items: center; gap: 7px; color: var(--green); font-family: var(--mono); font-size: 9px; }
.console-status i { width: 6px; height: 6px; border-radius: 50%; background: currentColor; box-shadow: 0 0 9px currentColor; }
.console-body { min-height: 480px; display: grid; grid-template-columns: 126px 1fr; }
.console-sidebar { padding: 18px 10px; border-right: 1px solid var(--line-soft); background: rgba(0,0,0,0.14); }
.console-nav { width: 100%; display: flex; align-items: center; gap: 9px; padding: 10px; border: 0; border-radius: 9px; background: transparent; color: var(--muted); font-size: 10px; text-align: left; }
.console-nav.active { color: var(--violet-3); background: rgba(124,77,255,0.09); box-shadow: inset 0 0 0 1px rgba(124,77,255,0.13); }
.console-nav-icon { color: var(--muted); font-family: var(--mono); font-size: 8px; }
.console-main { padding: 26px; }
.console-section-head { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.console-section-head h3 { margin: 5px 0 0; color: var(--white); font-family: var(--display); font-size: 1.17rem; }
.analysis-pill { padding: 5px 9px; border: 1px solid rgba(111,224,165,0.22); border-radius: 999px; background: rgba(111,224,165,0.06); color: var(--green); font-family: var(--mono); font-size: 8px; letter-spacing: 0.1em; text-transform: uppercase; }
.runtime-card { display: flex; align-items: center; gap: 13px; margin-top: 24px; padding: 15px; border: 1px solid var(--line); border-radius: 13px; background: linear-gradient(135deg, rgba(124,77,255,0.08), rgba(255,255,255,0.015)); }
.runtime-icon { width: 38px; height: 38px; display: grid; place-items: center; flex: 0 0 auto; border: 1px solid rgba(185,168,255,0.2); border-radius: 10px; background: rgba(124,77,255,0.09); }
.runtime-icon img { width: 22px; filter: drop-shadow(0 0 8px rgba(124,77,255,0.5)); }
.runtime-card strong, .runtime-card span { display: block; }
.runtime-card strong { color: var(--silver-2); font-size: 0.82rem; }
.runtime-card div:nth-child(2) span { color: var(--muted); font-size: 0.66rem; }
.runtime-health { margin-left: auto; display: inline-flex !important; align-items: center; gap: 6px; color: var(--green); font-family: var(--mono); font-size: 8px; }
.runtime-health i { width: 5px; height: 5px; border-radius: 50%; background: currentColor; }
.signal-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 12px; }
.signal-card { padding: 14px; border: 1px solid var(--line-soft); border-radius: 12px; background: rgba(255,255,255,0.018); }
.signal-card span, .signal-card strong, .signal-card small { display: block; }
.signal-card span { color: var(--muted); font-family: var(--mono); font-size: 7px; letter-spacing: 0.1em; text-transform: uppercase; }
.signal-card strong { margin-top: 7px; color: var(--violet-3); font-family: var(--display); font-size: 0.84rem; }
.signal-card small { margin-top: 4px; color: var(--muted); font-size: 0.58rem; line-height: 1.4; }
.activity-panel { margin-top: 12px; overflow: hidden; border: 1px solid var(--line-soft); border-radius: 12px; background: rgba(0,0,0,0.12); }
.activity-head { display: flex; justify-content: space-between; padding: 11px 13px; border-bottom: 1px solid var(--line-soft); color: var(--muted); font-family: var(--mono); font-size: 7px; letter-spacing: 0.08em; text-transform: uppercase; }
.activity-line { display: grid; grid-template-columns: 8px 1fr auto; align-items: center; gap: 9px; padding: 9px 13px; border-bottom: 1px solid var(--line-soft); }
.activity-line:last-child { border-bottom: 0; }
.activity-line i { width: 5px; height: 5px; border-radius: 50%; background: var(--green); }
.activity-line i.warn { background: var(--amber); }
.activity-line code { color: var(--silver); font-family: var(--mono); font-size: 7px; }
.activity-line time { color: var(--muted); font-family: var(--mono); font-size: 7px; }
.console-orbit { position: absolute; border: 1px solid rgba(124,77,255,0.13); border-radius: 50%; }
.orbit-one { width: 530px; height: 530px; right: -165px; top: -70px; }
.orbit-two { width: 410px; height: 410px; right: -105px; top: -10px; border-style: dashed; animation: spin 40s linear infinite; }
.capability-strip { display: flex; align-items: center; gap: 28px; min-height: 92px; margin-top: 38px; border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); }
.capability-label { flex: 0 0 auto; color: var(--muted); font-family: var(--mono); font-size: 9px; letter-spacing: 0.18em; text-transform: uppercase; }
.capability-items { width: 100%; display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; }
.capability-items span { color: #777582; font-family: var(--display); font-size: 0.82rem; font-weight: 600; text-align: center; }

/* About ------------------------------------------------------------------- */
.about-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; align-items: center; gap: clamp(56px, 8vw, 110px); }
.about-points { display: grid; gap: 0; margin-top: 40px; }
.about-point { display: grid; grid-template-columns: 46px 1fr; gap: 18px; padding: 24px 0; border-top: 1px solid var(--line-soft); }
.about-point:last-child { border-bottom: 1px solid var(--line-soft); }
.about-point-index { padding-top: 3px; color: var(--violet-2); font-family: var(--mono); font-size: 10px; letter-spacing: 0.12em; }
.about-point h3 { margin: 0 0 6px; color: var(--silver-2); font-family: var(--display); font-size: 1.02rem; }
.about-point p { margin: 0; color: var(--steel); font-size: 0.92rem; line-height: 1.7; }
.about-stack { position: relative; min-height: 500px; display: grid; place-items: center; }
.about-stack::before { content: ""; position: absolute; width: 420px; height: 420px; border-radius: 50%; background: radial-gradient(circle, rgba(124,77,255,0.16), transparent 66%); filter: blur(10px); }
.stack-card { position: relative; border: 1px solid var(--line); background: rgba(17,17,23,0.88); box-shadow: var(--shadow-card); backdrop-filter: blur(18px); }
.stack-card-main { z-index: 2; width: min(100%, 390px); padding: 28px; border-radius: 24px; }
.stack-card-main::after { content: ""; position: absolute; inset: 0; pointer-events: none; border-radius: inherit; background: linear-gradient(140deg, rgba(185,168,255,0.12), transparent 35%); }
.stack-card-top { display: flex; align-items: center; justify-content: space-between; color: var(--steel); font-family: var(--mono); font-size: 9px; letter-spacing: 0.12em; text-transform: uppercase; }
.health-score { color: var(--green); }
.health-ring { width: 160px; height: 160px; display: grid; place-items: center; align-content: center; margin: 26px auto; border: 12px solid rgba(255,255,255,0.04); border-top-color: var(--violet-2); border-right-color: var(--violet); border-radius: 50%; box-shadow: inset 0 0 35px rgba(124,77,255,0.1), 0 0 32px rgba(124,77,255,0.11); transform: rotate(14deg); }
.health-ring span, .health-ring small { transform: rotate(-14deg); }
.health-ring span { color: var(--white); font-family: var(--display); font-size: 2.2rem; font-weight: 700; line-height: 1; }
.health-ring small { margin-top: 4px; color: var(--muted); font-family: var(--mono); font-size: 8px; letter-spacing: 0.14em; text-transform: uppercase; }
.health-bars { display: grid; gap: 13px; }
.health-bars div { display: grid; grid-template-columns: 1fr 110px; align-items: center; gap: 16px; color: var(--muted); font-size: 0.7rem; }
.health-bars i { position: relative; height: 4px; overflow: hidden; border-radius: 999px; background: rgba(255,255,255,0.05); }
.health-bars i::before { content: ""; position: absolute; inset: 0 auto 0 0; width: var(--value); border-radius: inherit; background: linear-gradient(90deg, var(--violet), var(--violet-2)); box-shadow: 0 0 10px rgba(124,77,255,0.6); }
.stack-card-float { z-index: 3; position: absolute; min-width: 220px; display: flex; align-items: center; gap: 12px; padding: 14px 16px; border-radius: 14px; }
.stack-card-float.top { top: 62px; right: -8px; animation: float 6s ease-in-out infinite; }
.stack-card-float.bottom { left: -22px; bottom: 62px; animation: float 7s ease-in-out 1s infinite reverse; }
.stack-icon { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 10px; background: rgba(124,77,255,0.1); color: var(--violet-2); font-family: var(--mono); font-size: 0.9rem; }
.stack-card-float strong, .stack-card-float small { display: block; }
.stack-card-float strong { color: var(--silver-2); font-size: 0.78rem; }
.stack-card-float small { margin-top: 2px; color: var(--muted); font-size: 0.64rem; }

/* Services ---------------------------------------------------------------- */
.section-head { display: flex; align-items: end; justify-content: space-between; gap: 50px; margin-bottom: 54px; }
.section-head > div { max-width: 680px; }
.section-head > .sub { max-width: 470px; padding-bottom: 4px; }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.service-card {
  position: relative;
  min-height: 350px;
  display: flex;
  flex-direction: column;
  padding: 28px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: linear-gradient(165deg, rgba(255,255,255,0.035), rgba(255,255,255,0.012));
  box-shadow: var(--shadow-card);
  transition: transform 0.35s var(--ease), border-color 0.35s, background 0.35s;
}
.service-card::before { content: ""; position: absolute; width: 190px; height: 190px; right: -90px; top: -100px; border-radius: 50%; background: rgba(124,77,255,0.12); filter: blur(45px); opacity: 0; transition: opacity 0.35s; }
.service-card:hover { transform: translateY(-7px); border-color: rgba(185,168,255,0.27); background: linear-gradient(165deg, rgba(124,77,255,0.055), rgba(255,255,255,0.014)); }
.service-card:hover::before { opacity: 1; }
.service-card-large { grid-row: span 2; min-height: 718px; }
.service-card-accent { background: linear-gradient(150deg, rgba(124,77,255,0.11), rgba(255,255,255,0.016)); border-color: rgba(124,77,255,0.22); }
.service-card-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 44px; }
.service-number { color: var(--muted); font-family: var(--mono); font-size: 10px; }
.service-tag { padding: 4px 8px; border: 1px solid var(--line); border-radius: 999px; color: var(--muted); font-family: var(--mono); font-size: 8px; letter-spacing: 0.08em; text-transform: uppercase; }
.service-icon { width: 52px; height: 52px; display: grid; place-items: center; margin-bottom: 22px; border: 1px solid rgba(185,168,255,0.2); border-radius: 15px; background: linear-gradient(150deg, rgba(124,77,255,0.14), rgba(255,255,255,0.02)); color: var(--violet-2); box-shadow: 0 14px 34px -23px rgba(124,77,255,0.9); }
.service-icon svg { width: 24px; height: 24px; }
.service-card h3 { margin: 0 0 12px; color: var(--white); font-family: var(--display); font-size: 1.32rem; letter-spacing: -0.025em; }
.service-card p { margin: 0; color: var(--steel); font-size: 0.91rem; line-height: 1.75; }
.service-list { display: grid; gap: 11px; margin: auto 0 0; padding: 28px 0 0; border-top: 1px solid var(--line-soft); list-style: none; }
.service-list li { display: flex; align-items: center; gap: 10px; color: var(--silver); font-size: 0.82rem; }
.service-list li::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--violet-2); box-shadow: 0 0 9px rgba(124,77,255,0.6); }
.service-meta { margin-top: auto; padding-top: 28px; color: var(--muted); font-family: var(--mono); font-size: 9px; letter-spacing: 0.08em; }
.service-card .inline-link { margin-top: auto; padding-top: 28px; font-size: 0.85rem; }

/* Process ----------------------------------------------------------------- */
.process-grid { display: grid; grid-template-columns: 0.75fr 1.25fr; align-items: start; gap: clamp(60px, 9vw, 130px); }
.process-intro { position: sticky; top: calc(var(--nav-h) + 34px); }
.process-intro .btn { margin-top: 30px; }
.process-list { border-top: 1px solid var(--line); }
.process-step { display: grid; grid-template-columns: 50px 1fr auto; align-items: start; gap: 20px; padding: 28px 0; border-bottom: 1px solid var(--line); }
.process-index { padding-top: 4px; color: var(--violet-2); font-family: var(--mono); font-size: 10px; letter-spacing: 0.12em; }
.process-step h3 { margin: 0 0 7px; color: var(--white); font-family: var(--display); font-size: 1.08rem; }
.process-step p { max-width: 58ch; margin: 0; color: var(--steel); font-size: 0.91rem; }
.process-state { margin-top: 3px; padding: 5px 8px; border: 1px solid var(--line); border-radius: 999px; color: var(--muted); font-family: var(--mono); font-size: 8px; letter-spacing: 0.08em; text-transform: uppercase; }

/* Pricing ----------------------------------------------------------------- */
.pricing-section { overflow: hidden; }
.pricing-section::after { content: ""; position: absolute; z-index: -1; width: 620px; height: 620px; right: -260px; top: 50%; transform: translateY(-50%); border-radius: 50%; background: rgba(124,77,255,0.08); filter: blur(90px); }
.pricing-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; align-items: center; gap: clamp(54px, 8vw, 110px); }
.pricing-assurance { display: grid; gap: 18px; margin-top: 34px; }
.pricing-assurance > div { display: flex; align-items: flex-start; gap: 13px; }
.assurance-icon { width: 30px; height: 30px; display: grid; place-items: center; flex: 0 0 auto; border: 1px solid rgba(124,77,255,0.2); border-radius: 9px; background: rgba(124,77,255,0.07); color: var(--violet-2); font-family: var(--mono); font-size: 0.75rem; }
.pricing-assurance p, .pricing-assurance strong, .pricing-assurance small { display: block; margin: 0; }
.pricing-assurance strong { color: var(--silver-2); font-size: 0.9rem; }
.pricing-assurance small { margin-top: 2px; color: var(--muted); font-size: 0.78rem; }
.price-card { position: relative; overflow: hidden; padding: clamp(32px, 5vw, 50px); border: 1px solid rgba(185,168,255,0.28); border-radius: 28px; background: linear-gradient(155deg, rgba(124,77,255,0.12), rgba(18,18,25,0.96) 40%, rgba(255,255,255,0.015)); box-shadow: 0 45px 110px -55px rgba(124,77,255,0.78), inset 0 1px rgba(255,255,255,0.06); }
.price-card::before { content: ""; position: absolute; inset: 0; pointer-events: none; border-radius: inherit; background: linear-gradient(135deg, rgba(255,255,255,0.055), transparent 30%); }
.price-card-glow { position: absolute; width: 320px; height: 320px; right: -160px; top: -160px; border-radius: 50%; background: rgba(124,77,255,0.24); filter: blur(60px); }
.price-card-head { position: relative; display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; }
.price-card-head h3 { margin: 8px 0 0; color: var(--white); font-family: var(--display); font-size: 1.34rem; letter-spacing: -0.03em; }
.price-tier { color: var(--violet-2); font-family: var(--mono); font-size: 10px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; }
.popular-badge { flex: 0 0 auto; padding: 6px 9px; border: 1px solid rgba(185,168,255,0.26); border-radius: 999px; background: rgba(124,77,255,0.08); color: var(--violet-3); font-family: var(--mono); font-size: 8px; letter-spacing: 0.08em; text-transform: uppercase; }
.price-amt { position: relative; display: flex; align-items: flex-start; margin-top: 34px; color: var(--white); font-family: var(--display); }
.price-amt .currency { margin-top: 11px; font-size: 1.35rem; font-weight: 600; }
.price-amt .amt { font-size: clamp(4rem, 8vw, 5.7rem); font-weight: 700; letter-spacing: -0.075em; line-height: 0.86; }
.price-amt .per { align-self: flex-end; margin: 0 0 8px 13px; color: var(--steel); font-family: var(--body); font-size: 0.9rem; }
.price-trial { margin: 15px 0 28px; color: var(--violet-3); font-size: 0.88rem; }
.price-features { position: relative; display: grid; gap: 13px; margin: 0; padding: 25px 0 0; border-top: 1px solid var(--line); list-style: none; }
.price-features li { display: flex; align-items: flex-start; gap: 11px; color: var(--silver); font-size: 0.88rem; }
.price-features .chk { width: 19px; height: 19px; display: grid; place-items: center; flex: 0 0 auto; margin-top: 1px; border-radius: 6px; background: rgba(124,77,255,0.13); color: var(--violet-2); font-size: 0.68rem; }
.price-card .btn { position: relative; margin-top: 30px; }
.fine { margin: 13px 0 0; color: var(--muted); font-family: var(--mono); font-size: 9px; letter-spacing: 0.04em; text-align: center; }

/* Catalog / dynamic project cards ----------------------------------------- */
.catalog-head { display: flex; align-items: end; justify-content: space-between; gap: 40px; margin-bottom: 42px; }
.catalog-head.compact { display: block; }
.catalog-search { width: min(100%, 330px); display: flex; align-items: center; gap: 9px; flex: 0 0 auto; padding: 0 14px; border: 1px solid var(--line); border-radius: 13px; background: rgba(255,255,255,0.025); transition: border-color 0.2s, background 0.2s; }
.catalog-search:focus-within { border-color: rgba(185,168,255,0.38); background: rgba(124,77,255,0.045); }
.catalog-search svg { width: 17px; flex: 0 0 auto; color: var(--muted); }
.catalog-search .input { padding-inline: 0; border: 0; background: transparent; box-shadow: none; }
.grid-projects { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.proj, .game-card {
  position: relative;
  min-width: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: linear-gradient(165deg, rgba(255,255,255,0.035), rgba(255,255,255,0.012));
  box-shadow: var(--shadow-card);
  transition: transform 0.35s var(--ease), border-color 0.35s, box-shadow 0.35s;
}
.proj { padding: 25px; }
.proj:hover, .game-card:hover { transform: translateY(-6px); border-color: rgba(185,168,255,0.3); box-shadow: var(--shadow-violet); }
.proj-top { display: flex; align-items: center; justify-content: space-between; gap: 14px; margin-bottom: 20px; }
.proj-icon { width: 42px; height: 42px; display: grid; place-items: center; border: 1px solid rgba(185,168,255,0.18); border-radius: 12px; background: rgba(124,77,255,0.07); color: var(--violet-2); }
.proj-icon svg { width: 20px; height: 20px; }
.proj-badge, .dl-badge { width: fit-content; padding: 5px 8px; border: 1px solid rgba(185,168,255,0.18); border-radius: 999px; background: rgba(124,77,255,0.07); color: var(--violet-2); font-family: var(--mono); font-size: 8px; letter-spacing: 0.08em; text-transform: uppercase; }
.proj h3 { margin: 0 0 8px; color: var(--white); font-family: var(--display); font-size: 1.08rem; }
.proj p { flex: 1; margin: 0 0 19px; color: var(--steel); font-size: 0.86rem; line-height: 1.7; }
.proj-meta, .platforms-list { display: flex; flex-wrap: wrap; gap: 6px; }
.proj-meta { margin-bottom: 20px; }
.proj-meta span, .plat-badge { padding: 4px 7px; border: 1px solid var(--line); border-radius: 6px; color: var(--muted); font-family: var(--mono); font-size: 8px; letter-spacing: 0.04em; text-transform: uppercase; }
.plat-badge.steam { color: var(--violet-2); border-color: rgba(124,77,255,0.22); background: rgba(124,77,255,0.06); }
.plat-badge.epic { color: var(--silver); }
.plat-badge.gog { color: #f1a8ef; border-color: rgba(241,168,239,0.2); }
.plat-badge.xbox { color: var(--green); border-color: rgba(111,224,165,0.2); }
.proj-actions { display: flex; gap: 9px; }
.proj-actions .btn { flex: 1; min-width: 0; padding-inline: 12px; font-size: 0.8rem; }
.game-card-banner { height: 168px; background-position: center; background-size: cover; transition: transform 0.55s var(--ease), filter 0.55s; }
.game-card-banner::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(17,17,23,0.05), rgba(17,17,23,0.35) 55%, var(--panel) 100%); }
.game-card:hover .game-card-banner { transform: scale(1.05); filter: saturate(1.08); }
.game-card-content { position: relative; z-index: 2; display: flex; flex: 1; flex-direction: column; margin-top: -34px; padding: 24px; }
.game-dev { margin: 0; color: var(--muted); font-size: 0.75rem; }

/* Custom request ---------------------------------------------------------- */
.custom-grid { display: grid; grid-template-columns: 0.82fr 1.18fr; align-items: start; gap: clamp(54px, 8vw, 105px); }
.request-notes { display: grid; gap: 18px; margin-top: 36px; }
.request-notes > div { display: grid; grid-template-columns: 36px 1fr; gap: 13px; }
.request-notes > div > span { color: var(--violet-2); font-family: var(--mono); font-size: 9px; }
.request-notes p, .request-notes strong, .request-notes small { display: block; margin: 0; }
.request-notes strong { color: var(--silver-2); font-size: 0.9rem; }
.request-notes small { margin-top: 3px; color: var(--muted); font-size: 0.77rem; }
.authorization-note { display: flex; align-items: flex-start; gap: 12px; margin-top: 34px; padding: 16px; border: 1px solid rgba(111,224,165,0.15); border-radius: 13px; background: rgba(111,224,165,0.035); }
.authorization-note svg { width: 19px; flex: 0 0 auto; margin-top: 1px; color: var(--green); }
.authorization-note p { margin: 0; color: var(--steel); font-size: 0.8rem; }
.authorization-note strong { color: var(--silver-2); }
.request-form {
  position: relative;
  padding: clamp(28px, 4vw, 40px);
  border: 1px solid var(--line);
  border-radius: 24px;
  background: linear-gradient(160deg, rgba(255,255,255,0.04), rgba(255,255,255,0.013));
  box-shadow: var(--shadow-card);
}
.request-form::before { content: ""; position: absolute; inset: 0; pointer-events: none; border-radius: inherit; background: linear-gradient(135deg, rgba(185,168,255,0.06), transparent 28%); }
.form-head { position: relative; display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; margin-bottom: 28px; padding-bottom: 22px; border-bottom: 1px solid var(--line-soft); }
.form-head h3 { margin: 6px 0 0; color: var(--white); font-family: var(--display); font-size: 1.3rem; }
.form-step { color: var(--muted); font-family: var(--mono); font-size: 9px; }
.field { position: relative; margin-bottom: 18px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field label { display: block; margin-bottom: 8px; color: var(--silver); font-size: 0.79rem; font-weight: 600; }
.req { color: var(--violet-2); }
.input, .select, .textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 11px;
  background-color: rgba(0,0,0,0.15);
  color: var(--silver-2);
  font-family: var(--body);
  font-size: 0.88rem;
  line-height: 1.4;
  box-shadow: inset 0 1px rgba(255,255,255,0.018);
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
}
.input::placeholder, .textarea::placeholder { color: #555360; }
.input:hover, .select:hover, .textarea:hover { border-color: rgba(255,255,255,0.13); }
.input:focus, .select:focus, .textarea:focus { outline: 0; border-color: rgba(185,168,255,0.45); background-color: rgba(124,77,255,0.035); box-shadow: 0 0 0 3px rgba(124,77,255,0.07); }
.textarea { min-height: 132px; resize: vertical; }
.select { appearance: none; padding-right: 40px; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%2392909f' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; }
.select option { color: var(--silver-2); background: var(--panel); }
.consent-check { display: flex; align-items: flex-start; gap: 10px; margin: 4px 0 20px; color: var(--steel); font-size: 0.78rem; cursor: pointer; }
.consent-check input { width: 16px; height: 16px; flex: 0 0 auto; margin: 3px 0 0; accent-color: var(--violet); }
.form-footnote { margin: 12px 0 0; color: var(--muted); font-size: 0.72rem; text-align: center; }

/* FAQ --------------------------------------------------------------------- */
.faq-layout { display: grid; grid-template-columns: 0.72fr 1.28fr; align-items: start; gap: clamp(55px, 8vw, 100px); }
.faq-intro { position: sticky; top: calc(var(--nav-h) + 34px); }
.faq-intro .inline-link { margin-top: 26px; }
.faq-list { display: grid; gap: 11px; }
.faq-item { overflow: hidden; border: 1px solid var(--line); border-radius: 14px; background: rgba(255,255,255,0.018); transition: border-color 0.25s, background 0.25s; }
.faq-item[open] { border-color: rgba(185,168,255,0.27); background: rgba(124,77,255,0.035); }
.faq-item summary { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 19px 21px; color: var(--silver-2); font-family: var(--display); font-size: 0.98rem; font-weight: 600; list-style: none; cursor: pointer; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item .plus { width: 19px; flex: 0 0 auto; color: var(--violet-2); transition: transform 0.25s var(--ease); }
.faq-item[open] .plus { transform: rotate(45deg); }
.faq-item .ans { padding: 0 21px 20px; color: var(--steel); font-size: 0.88rem; line-height: 1.75; }

/* Dashboard --------------------------------------------------------------- */
.dashboard-page { padding-top: 54px; }
.dashboard-hero { display: flex; align-items: flex-end; justify-content: space-between; gap: 40px; padding: 20px 0 38px; }
.dashboard-hero h1 { margin: 0; color: var(--white); font-family: var(--display); font-size: clamp(2.25rem, 5vw, 3.7rem); letter-spacing: -0.055em; line-height: 1.02; }
.dashboard-hero > div > p:last-child { max-width: 650px; margin: 16px 0 0; color: var(--steel); }
.dashboard-hero-actions { display: flex; flex-wrap: wrap; gap: 10px; flex: 0 0 auto; }
.dashboard-stat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.dashboard-stat-card { display: flex; align-items: center; gap: 16px; min-height: 126px; padding: 22px; border: 1px solid var(--line); border-radius: 18px; background: linear-gradient(155deg, rgba(255,255,255,0.035), rgba(255,255,255,0.012)); box-shadow: var(--shadow-card); }
.stat-icon { width: 46px; height: 46px; display: grid; place-items: center; flex: 0 0 auto; border: 1px solid rgba(185,168,255,0.18); border-radius: 13px; background: rgba(124,77,255,0.07); color: var(--violet-2); }
.stat-icon svg { width: 22px; }
.dashboard-stat-card div > span, .dashboard-stat-card strong, .dashboard-stat-card small { display: block; }
.stat-label { color: var(--muted); font-family: var(--mono); font-size: 9px; letter-spacing: 0.1em; text-transform: uppercase; }
.dashboard-stat-card strong { margin-top: 5px; overflow: hidden; color: var(--white); font-family: var(--display); font-size: 1.2rem; line-height: 1.25; text-overflow: ellipsis; white-space: nowrap; }
.dashboard-stat-card small { margin-top: 3px; color: var(--muted); font-size: 0.7rem; }
.dashboard-layout { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(310px, 0.65fr); align-items: start; gap: 18px; margin-top: 18px; }
.dashboard-main-column, .dashboard-side-column { display: grid; gap: 18px; }
.dashboard-panel { padding: 27px; border: 1px solid var(--line); border-radius: 20px; background: linear-gradient(160deg, rgba(255,255,255,0.034), rgba(255,255,255,0.012)); box-shadow: var(--shadow-card); }
.panel-heading { display: flex; align-items: flex-start; justify-content: space-between; gap: 22px; margin-bottom: 23px; }
.panel-heading.compact { align-items: center; }
.panel-heading h2 { margin: 6px 0 0; color: var(--white); font-family: var(--display); font-size: 1.25rem; }
.panel-heading p { margin: 5px 0 0; color: var(--muted); font-size: 0.8rem; }
.panel-badge, .live-badge { flex: 0 0 auto; padding: 5px 8px; border: 1px solid var(--line); border-radius: 999px; color: var(--muted); font-family: var(--mono); font-size: 8px; letter-spacing: 0.08em; text-transform: uppercase; }
.live-badge { display: inline-flex; align-items: center; gap: 6px; color: var(--green); border-color: rgba(111,224,165,0.16); background: rgba(111,224,165,0.04); }
.live-badge i { width: 5px; height: 5px; border-radius: 50%; background: currentColor; box-shadow: 0 0 8px currentColor; }
.quick-action-grid { display: grid; gap: 10px; }
.quick-action-card { display: grid; grid-template-columns: 44px 1fr auto; align-items: center; gap: 14px; padding: 16px; border: 1px solid var(--line-soft); border-radius: 14px; background: rgba(255,255,255,0.015); transition: transform 0.25s var(--ease), border-color 0.25s, background 0.25s; }
.quick-action-card:hover { transform: translateX(5px); border-color: rgba(185,168,255,0.25); background: rgba(124,77,255,0.035); }
.quick-action-icon { width: 44px; height: 44px; display: grid; place-items: center; border: 1px solid rgba(185,168,255,0.16); border-radius: 12px; background: rgba(124,77,255,0.06); color: var(--violet-2); }
.quick-action-icon svg { width: 20px; }
.quick-action-card h3 { margin: 0 0 3px; color: var(--silver-2); font-size: 0.91rem; }
.quick-action-card p { margin: 0; color: var(--muted); font-size: 0.74rem; line-height: 1.5; }
.quick-action-arrow { color: var(--muted); font-size: 1.1rem; transition: color 0.2s, transform 0.2s; }
.quick-action-card:hover .quick-action-arrow { color: var(--violet-2); transform: translateX(2px); }
.status-list { display: grid; }
.status-row { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 13px 0; border-top: 1px solid var(--line-soft); color: var(--steel); font-size: 0.79rem; }
.status-row span { display: inline-flex; align-items: center; gap: 9px; }
.status-row strong { color: var(--green); font-family: var(--mono); font-size: 8px; letter-spacing: 0.08em; text-transform: uppercase; }
.status-indicator { width: 6px; height: 6px; border-radius: 50%; background: var(--green); box-shadow: 0 0 8px rgba(111,224,165,0.55); }
.membership-panel { min-height: 330px; border-color: rgba(124,77,255,0.22); background: linear-gradient(155deg, rgba(124,77,255,0.1), rgba(255,255,255,0.014)); }
.member-sync-state { min-height: 275px; display: grid; place-items: center; align-content: center; text-align: center; }
.sync-spinner { width: 34px; height: 34px; margin-bottom: 16px; border: 2px solid rgba(255,255,255,0.06); border-top-color: var(--violet-2); border-radius: 50%; animation: spin 1s linear infinite; }
.member-sync-state strong { color: var(--silver-2); font-family: var(--display); }
.member-sync-state p { max-width: 230px; margin: 5px 0 0; color: var(--muted); font-size: 0.76rem; }
.member-row { display: flex; justify-content: space-between; gap: 20px; padding: 12px 0; border-bottom: 1px solid var(--line-soft); font-size: 0.83rem; }
.member-row span:first-child { color: var(--muted); }
.member-row span:last-child { color: var(--silver-2); font-weight: 600; text-align: right; }
.status-pill { width: fit-content; display: inline-flex; align-items: center; gap: 7px; padding: 6px 10px; border: 1px solid rgba(124,77,255,0.24); border-radius: 999px; background: rgba(124,77,255,0.07); color: var(--violet-2); font-family: var(--mono); font-size: 8px; letter-spacing: 0.1em; text-transform: uppercase; }
.status-pill .dot { width: 5px; height: 5px; border-radius: 50%; background: currentColor; box-shadow: 0 0 8px currentColor; }
.account-help-panel { position: relative; overflow: hidden; }
.account-help-panel::after { content: "?"; position: absolute; right: 16px; bottom: -38px; color: rgba(255,255,255,0.018); font-family: var(--display); font-size: 9rem; font-weight: 700; line-height: 1; }
.help-icon { width: 40px; height: 40px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 12px; background: rgba(255,255,255,0.02); color: var(--violet-2); }
.help-icon svg { width: 20px; }
.account-help-panel h3 { margin: 18px 0 7px; color: var(--white); font-family: var(--display); font-size: 1rem; }
.account-help-panel p { margin: 0 0 14px; color: var(--muted); font-size: 0.77rem; }
.account-help-panel .inline-link { position: relative; z-index: 2; font-size: 0.79rem; }

/* Downloads --------------------------------------------------------------- */
.downloads-page { padding-top: 48px; }
.downloads-hero { min-height: 350px; display: grid; grid-template-columns: 1.05fr 0.95fr; align-items: center; gap: 60px; padding: 28px 0 55px; }
.downloads-hero h1 { margin: 0; color: var(--white); font-family: var(--display); font-size: clamp(2.8rem, 6vw, 4.8rem); letter-spacing: -0.06em; line-height: 0.98; }
.downloads-hero-copy > p:last-of-type { max-width: 620px; margin: 20px 0 0; color: var(--steel); font-size: 1.02rem; }
.downloads-meta-row { display: flex; flex-wrap: wrap; gap: 10px 22px; margin-top: 25px; color: var(--muted); font-family: var(--mono); font-size: 9px; letter-spacing: 0.07em; text-transform: uppercase; }
.downloads-meta-row span { display: inline-flex; align-items: center; gap: 7px; }
.downloads-meta-row i { width: 6px; height: 6px; border-radius: 50%; background: var(--green); box-shadow: 0 0 9px rgba(111,224,165,0.65); }
.download-visual { position: relative; min-height: 290px; display: grid; place-items: center; }
.download-logo-shell { z-index: 3; width: 132px; height: 132px; display: grid; place-items: center; border: 1px solid rgba(185,168,255,0.22); border-radius: 32px; background: linear-gradient(145deg, rgba(124,77,255,0.16), rgba(255,255,255,0.025)); box-shadow: 0 30px 80px -34px rgba(124,77,255,0.9), inset 0 1px rgba(255,255,255,0.08); }
.download-logo-shell img { width: 82px; filter: drop-shadow(0 0 22px rgba(124,77,255,0.68)); }
.download-ring { position: absolute; border: 1px solid rgba(124,77,255,0.16); border-radius: 50%; }
.download-ring.ring-a { width: 260px; height: 260px; }
.download-ring.ring-b { width: 360px; height: 360px; border-style: dashed; animation: spin 34s linear infinite; }
.download-chip { position: absolute; z-index: 4; padding: 7px 10px; border: 1px solid var(--line); border-radius: 999px; background: rgba(13,13,18,0.8); color: var(--silver); font-family: var(--mono); font-size: 8px; letter-spacing: 0.08em; text-transform: uppercase; backdrop-filter: blur(10px); }
.download-chip.chip-a { top: 36px; right: 58px; }
.download-chip.chip-b { left: 42px; bottom: 42px; color: var(--green); }
.download-layout { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr); align-items: stretch; gap: 18px; }
.download-primary-card, .download-side-card { border: 1px solid var(--line); border-radius: 22px; background: linear-gradient(155deg, rgba(255,255,255,0.036), rgba(255,255,255,0.012)); box-shadow: var(--shadow-card); }
.download-primary-card { padding: 30px; }
.download-card-header { display: grid; grid-template-columns: 58px 1fr auto; align-items: center; gap: 16px; }
.download-app-icon { width: 58px; height: 58px; display: grid; place-items: center; border: 1px solid rgba(185,168,255,0.18); border-radius: 16px; background: rgba(124,77,255,0.08); }
.download-app-icon img { width: 34px; filter: drop-shadow(0 0 10px rgba(124,77,255,0.55)); }
.download-card-header h2 { margin: 5px 0 3px; color: var(--white); font-family: var(--display); font-size: 1.35rem; }
.download-card-header p { margin: 0; color: var(--muted); font-size: 0.77rem; }
.release-badge { align-self: start; padding: 5px 8px; border: 1px solid rgba(111,224,165,0.18); border-radius: 999px; background: rgba(111,224,165,0.04); color: var(--green); font-family: var(--mono); font-size: 8px; letter-spacing: 0.08em; text-transform: uppercase; }
.download-detail-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-top: 28px; padding: 20px 0; border-block: 1px solid var(--line-soft); }
.download-detail-grid span, .download-detail-grid strong { display: block; }
.download-detail-grid span { color: var(--muted); font-family: var(--mono); font-size: 8px; letter-spacing: 0.08em; text-transform: uppercase; }
.download-detail-grid strong { margin-top: 5px; color: var(--silver-2); font-size: 0.8rem; }
.download-card-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.download-integrity-note { display: flex; align-items: flex-start; gap: 11px; margin-top: 22px; padding: 14px; border: 1px solid rgba(111,224,165,0.13); border-radius: 12px; background: rgba(111,224,165,0.025); }
.download-integrity-note svg { width: 18px; flex: 0 0 auto; margin-top: 1px; color: var(--green); }
.download-integrity-note p { margin: 0; color: var(--muted); font-size: 0.72rem; }
.download-integrity-note strong { color: var(--silver); }
.download-side-card { padding: 27px; }
.download-side-card h3 { margin: 7px 0 20px; color: var(--white); font-family: var(--display); font-size: 1.17rem; }
.checklist { display: grid; gap: 12px; margin: 0; padding: 0; list-style: none; }
.checklist li { display: flex; align-items: flex-start; gap: 10px; color: var(--steel); font-size: 0.78rem; }
.checklist li span { width: 18px; height: 18px; display: grid; place-items: center; flex: 0 0 auto; border-radius: 6px; background: rgba(124,77,255,0.09); color: var(--violet-2); font-size: 0.67rem; }
.support-callout { margin-top: 24px; padding-top: 20px; border-top: 1px solid var(--line-soft); }
.support-callout strong { color: var(--silver-2); font-size: 0.82rem; }
.support-callout p { margin: 5px 0 10px; color: var(--muted); font-size: 0.73rem; }
.support-callout a { color: var(--violet-2); font-size: 0.76rem; font-weight: 600; }
.downloads-catalog { margin-top: 95px; }

/* Legal ------------------------------------------------------------------- */
.legal-page { padding-top: 48px; }
.legal-layout { display: grid; grid-template-columns: 280px minmax(0, 760px); justify-content: center; align-items: start; gap: clamp(48px, 7vw, 90px); }
.legal-sidebar { position: sticky; top: calc(var(--nav-h) + 28px); }
.legal-back { display: inline-flex; margin-bottom: 20px; color: var(--muted); font-size: 0.78rem; transition: color 0.2s, transform 0.2s; }
.legal-back:hover { color: var(--silver-2); transform: translateX(-3px); }
.legal-sidebar-card { padding: 22px; border: 1px solid var(--line); border-radius: 18px; background: linear-gradient(155deg, rgba(124,77,255,0.07), rgba(255,255,255,0.012)); }
.legal-sidebar-card h2 { margin: 8px 0 6px; color: var(--white); font-family: var(--display); font-size: 1.18rem; }
.legal-sidebar-card p { margin: 0; color: var(--muted); font-size: 0.74rem; }
.legal-meta { display: flex; align-items: center; justify-content: space-between; gap: 14px; margin-top: 19px; padding-top: 16px; border-top: 1px solid var(--line-soft); font-size: 0.7rem; }
.legal-meta span { color: var(--muted); }
.legal-meta strong { color: var(--silver); font-family: var(--mono); font-size: 8px; }
.legal-toc { display: grid; gap: 3px; margin-top: 16px; }
.legal-toc a { padding: 8px 10px; border-radius: 8px; color: var(--muted); font-size: 0.72rem; transition: color 0.2s, background 0.2s; }
.legal-toc a:hover { color: var(--silver-2); background: rgba(255,255,255,0.025); }
.legal-document { min-width: 0; }
.legal-document-head { padding-bottom: 32px; border-bottom: 1px solid var(--line); }
.legal-document h1 { margin: 0; color: var(--white); font-family: var(--display); font-size: clamp(2.6rem, 6vw, 4.3rem); letter-spacing: -0.06em; line-height: 1; }
.legal-lead { margin: 22px 0 0; color: var(--steel); font-size: 1.02rem; line-height: 1.8; }
.legal-callout { display: flex; align-items: flex-start; gap: 13px; margin: 30px 0 6px; padding: 18px; border: 1px solid rgba(255,199,107,0.16); border-radius: 14px; background: rgba(255,199,107,0.035); }
.legal-callout svg { width: 20px; flex: 0 0 auto; margin-top: 2px; color: var(--amber); }
.legal-callout p { margin: 0; color: var(--steel); font-size: 0.78rem; }
.legal-callout strong { color: var(--silver-2); }
.legal-document section { padding-top: 42px; scroll-margin-top: calc(var(--nav-h) + 18px); }
.legal-document h2 { display: flex; align-items: baseline; gap: 12px; margin: 0 0 15px; color: var(--white); font-family: var(--display); font-size: 1.3rem; letter-spacing: -0.025em; }
.legal-document h2 span { color: var(--violet-2); font-family: var(--mono); font-size: 9px; letter-spacing: 0.1em; }
.legal-document p, .legal-document li { color: var(--steel); font-size: 0.88rem; line-height: 1.85; }
.legal-document p { margin: 0 0 14px; }
.legal-document ul { display: grid; gap: 9px; margin: 0; padding-left: 20px; }
.legal-document li::marker { color: var(--violet-2); }
.legal-document a { color: var(--violet-2); text-decoration: underline; text-decoration-color: rgba(185,168,255,0.35); text-underline-offset: 3px; }
.legal-end-note { margin-top: 46px; padding: 18px; border: 1px solid var(--line); border-radius: 14px; background: rgba(255,255,255,0.018); color: var(--muted); font-family: var(--mono); font-size: 9px; line-height: 1.7; }

/* Footer ------------------------------------------------------------------ */
.footer { position: relative; padding: 72px 0 34px; border-top: 1px solid var(--line); background: linear-gradient(180deg, rgba(255,255,255,0.008), transparent); }
.footer-top { display: grid; grid-template-columns: 1.5fr repeat(3, 0.75fr); gap: 44px; margin-bottom: 46px; }
.footer-brand-lockup { display: flex; align-items: center; gap: 11px; }
.footer-mark { width: 35px; height: 35px; object-fit: contain; filter: drop-shadow(0 0 12px rgba(124,77,255,0.45)); }
.footer-wordmark { width: auto; height: 19px; }
.footer-brand > p { max-width: 42ch; margin: 17px 0 0; color: var(--muted); font-size: 0.81rem; }
.footer-status { width: fit-content; display: inline-flex; align-items: center; gap: 8px; margin-top: 18px; color: var(--muted); font-family: var(--mono); font-size: 8px; letter-spacing: 0.08em; text-transform: uppercase; }
.footer-col h4 { margin: 0 0 16px; color: var(--muted); font-family: var(--mono); font-size: 9px; letter-spacing: 0.17em; text-transform: uppercase; }
.footer-col a { width: fit-content; display: block; margin-bottom: 10px; color: var(--steel); font-size: 0.8rem; transition: color 0.2s, transform 0.2s; }
.footer-col a:hover { color: var(--silver-2); transform: translateX(2px); }
.legal-note { display: flex; align-items: flex-start; gap: 12px; padding: 16px 18px; border: 1px solid var(--line-soft); border-radius: 13px; background: rgba(255,255,255,0.012); color: var(--muted); font-size: 0.75rem; }
.legal-note strong { color: var(--silver); }
.legal-note-icon { width: 20px; flex: 0 0 auto; margin-top: 1px; color: var(--violet-2); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 18px; margin-top: 25px; padding-top: 24px; border-top: 1px solid var(--line-soft); }
.footer-bottom p { margin: 0; color: var(--muted); font-size: 0.74rem; }
.footer-legal-links { display: flex; gap: 22px; }
.footer-legal-links a { color: var(--muted); font-size: 0.74rem; transition: color 0.2s; }
.footer-legal-links a:hover { color: var(--silver-2); }

/* Modals ------------------------------------------------------------------ */
.modal-overlay { position: fixed; z-index: 300; inset: 0; display: none; align-items: center; justify-content: center; padding: 20px; background: rgba(4,4,7,0.78); backdrop-filter: blur(14px); }
.modal-overlay.open { display: flex; animation: fadeIn 0.2s; }
.modal { position: relative; width: min(100%, 460px); max-height: calc(100vh - 40px); overflow-y: auto; padding: 36px; border: 1px solid var(--line-bright); border-radius: 24px; background: rgba(17,17,23,0.96); box-shadow: 0 60px 150px -45px rgba(0,0,0,1), 0 25px 80px -50px rgba(124,77,255,0.8); animation: modalRise 0.3s var(--ease); }
.modal-accent { position: absolute; width: 220px; height: 220px; left: 50%; top: -175px; transform: translateX(-50%); border-radius: 50%; background: rgba(124,77,255,0.3); filter: blur(55px); pointer-events: none; }
.modal-close { position: absolute; z-index: 2; top: 15px; right: 15px; width: 36px; height: 36px; display: grid; place-items: center; padding: 0; border: 1px solid var(--line-soft); border-radius: 10px; background: rgba(255,255,255,0.018); color: var(--muted); cursor: pointer; transition: color 0.2s, background 0.2s; }
.modal-close:hover { color: var(--white); background: rgba(255,255,255,0.04); }
.modal-close svg { width: 18px; }
.modal-brand { width: 54px; height: 54px; display: grid; place-items: center; margin: 0 auto 16px; border: 1px solid rgba(185,168,255,0.18); border-radius: 16px; background: rgba(124,77,255,0.08); }
.modal-logo { width: 32px; filter: drop-shadow(0 0 11px rgba(124,77,255,0.5)); }
.modal-kicker { margin: 0 0 7px; color: var(--violet-2); font-family: var(--mono); font-size: 9px; font-weight: 600; letter-spacing: 0.14em; text-align: center; text-transform: uppercase; }
.modal h2 { margin: 0; color: var(--white); font-family: var(--display); font-size: 1.55rem; letter-spacing: -0.03em; text-align: center; }
.modal-sub { margin: 8px auto 25px; color: var(--muted); font-size: 0.81rem; line-height: 1.6; text-align: center; }
.auth-form .field:last-of-type { margin-bottom: 22px; }
.modal-switch { margin: 18px 0 0; color: var(--muted); font-size: 0.78rem; text-align: center; }
.modal-switch a { color: var(--violet-2); font-weight: 600; cursor: pointer; }
.checkout-summary { margin-bottom: 18px; padding: 5px 16px; border: 1px solid var(--line-soft); border-radius: 13px; background: rgba(0,0,0,0.12); }
.checkout-row { display: flex; justify-content: space-between; gap: 18px; padding: 12px 0; border-bottom: 1px solid var(--line-soft); color: var(--steel); font-size: 0.78rem; }
.checkout-row:last-child { border-bottom: 0; }
.checkout-row span:last-child { color: var(--silver-2); font-weight: 600; text-align: right; }
.checkout-row.total { color: var(--silver-2); font-size: 0.86rem; }
.payment-placeholder { display: flex; align-items: flex-start; gap: 12px; margin: 18px 0; padding: 15px; border: 1px solid rgba(111,224,165,0.14); border-radius: 13px; background: rgba(111,224,165,0.025); }
.payment-lock { width: 32px; height: 32px; display: grid; place-items: center; flex: 0 0 auto; border-radius: 9px; background: rgba(111,224,165,0.06); color: var(--green); }
.payment-lock svg { width: 17px; }
.payment-placeholder strong, .payment-placeholder span { display: block; }
.payment-placeholder strong { color: var(--silver-2); font-size: 0.78rem; }
.payment-placeholder div span { margin-top: 3px; color: var(--muted); font-size: 0.68rem; line-height: 1.55; }
.trainer-mods-container { display: grid; gap: 12px; max-height: 380px; overflow-y: auto; padding-right: 5px; }

/* Dynamic trainer controls ------------------------------------------------ */
.switch-container { position: relative; width: 42px; height: 22px; display: inline-block; }
.switch-container input { width: 0; height: 0; opacity: 0; }
.slider-toggle { position: absolute; inset: 0; border: 1px solid var(--line); border-radius: 999px; background: rgba(255,255,255,0.05); cursor: pointer; transition: 0.25s var(--ease); }
.slider-toggle::before { content: ""; position: absolute; width: 14px; height: 14px; left: 3px; bottom: 3px; border-radius: 50%; background: var(--steel); transition: 0.25s var(--ease); }
.switch-container input:checked + .slider-toggle { border-color: rgba(185,168,255,0.42); background: var(--violet); box-shadow: 0 0 14px rgba(124,77,255,0.35); }
.switch-container input:checked + .slider-toggle::before { transform: translateX(20px); background: #fff; }
.mod-slider { width: 130px; height: 4px; appearance: none; border-radius: 999px; background: rgba(255,255,255,0.08); outline: none; }
.mod-slider::-webkit-slider-thumb { width: 14px; height: 14px; appearance: none; border: 0; border-radius: 50%; background: var(--violet-2); box-shadow: 0 0 9px rgba(124,77,255,0.65); cursor: pointer; }
.trainer-mods-container::-webkit-scrollbar, .modal::-webkit-scrollbar { width: 6px; }
.trainer-mods-container::-webkit-scrollbar-thumb, .modal::-webkit-scrollbar-thumb { border-radius: 999px; background: rgba(124,77,255,0.25); }

/* Download button progress ------------------------------------------------ */
.btn-primary .dl-progress-bar { position: absolute; z-index: 0; inset: 0 auto 0 0; width: 0; background: rgba(255,255,255,0.18); transition: width 0.15s linear; pointer-events: none; }
.btn-primary.downloading { color: var(--violet-3); border-color: rgba(124,77,255,0.5); background: var(--panel); cursor: wait; }
.btn-primary.downloading .dl-icon { position: relative; z-index: 1; animation: spin 1s linear infinite; }
.btn-primary.downloading .btn-text { position: relative; z-index: 1; }

/* Toast ------------------------------------------------------------------- */
.toast { position: fixed; z-index: 400; left: 50%; bottom: 24px; display: flex; align-items: center; gap: 10px; max-width: min(calc(100% - 32px), 520px); padding: 12px 16px; border: 1px solid rgba(185,168,255,0.28); border-radius: 12px; background: rgba(25,25,35,0.96); color: var(--silver-2); font-size: 0.8rem; box-shadow: 0 24px 70px -30px #000; opacity: 0; pointer-events: none; transform: translate(-50%, 16px); transition: opacity 0.25s, transform 0.25s var(--ease); backdrop-filter: blur(14px); }
.toast.show { opacity: 1; transform: translate(-50%, 0); }
.toast-icon { width: 18px; flex: 0 0 auto; color: var(--violet-2); }

/* Reveal / animation ------------------------------------------------------ */
.reveal { opacity: 1; transform: none; }
.js .reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.72s var(--ease), transform 0.72s var(--ease); }
.js .reveal.in { opacity: 1; transform: none; }
.js .reveal[data-delay="1"] { transition-delay: 0.08s; }
.js .reveal[data-delay="2"] { transition-delay: 0.16s; }
.js .reveal[data-delay="3"] { transition-delay: 0.24s; }
.js .reveal[data-delay="4"] { transition-delay: 0.32s; }
@keyframes pulse { 0%,100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.45; transform: scale(0.8); } }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }
@keyframes fadeIn { from { opacity: 0; } }
@keyframes modalRise { from { opacity: 0; transform: translateY(16px) scale(0.985); } }

/* Responsive -------------------------------------------------------------- */
@media (max-width: 1080px) {
  .nav-links { gap: 18px; }
  .nav-links a { font-size: 0.82rem; }
  .hero-grid { grid-template-columns: 0.95fr 1.05fr; gap: 42px; }
  .console-body { grid-template-columns: 105px 1fr; }
  .console-main { padding: 21px; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .service-card-large { grid-row: span 1; min-height: 350px; }
  .capability-items { grid-template-columns: repeat(3, 1fr); row-gap: 18px; }
  .grid-projects { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-top { grid-template-columns: 1.35fr 1fr 1fr; }
  .footer-col:last-child { grid-column: 2 / -1; display: flex; flex-wrap: wrap; align-content: start; gap: 0 20px; }
  .footer-col:last-child h4 { width: 100%; }
}

@media (max-width: 940px) {
  :root { --nav-h: 70px; }
  .nav-inner { position: relative; }
  .brand .wm { display: none; }
  .nav-links { display: none; }
  .nav-toggle { display: grid; }
  .nav-cta > .btn, .nav-cta > .nav-text-link, .nav-user { display: none; }
  .nav.mobile-open { background: rgba(7,7,10,0.96); backdrop-filter: blur(22px); }
  .nav.mobile-open .nav-links {
    position: absolute;
    top: var(--nav-h);
    left: -20px;
    right: -20px;
    display: flex;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    padding: 10px 20px 18px;
    border-bottom: 1px solid var(--line);
    background: rgba(7,7,10,0.98);
    box-shadow: 0 30px 60px -40px #000;
  }
  .nav.mobile-open .nav-links a { padding: 13px 5px; border-bottom: 1px solid var(--line-soft); }
  .nav.mobile-open .nav-links a:last-child { border-bottom: 0; }
  .nav.mobile-open .nav-links a::after { display: none; }

  .hero { padding-top: 62px; }
  .hero-grid { min-height: auto; grid-template-columns: 1fr; gap: 70px; }
  .hero-copy { max-width: 720px; }
  .hero-console { width: min(100%, 720px); margin-inline: auto; }
  .console-window { transform: none; }
  .capability-strip { align-items: flex-start; flex-direction: column; gap: 16px; padding: 24px 0; }
  .capability-items { width: 100%; }

  .about-grid, .pricing-grid, .custom-grid, .faq-layout, .downloads-hero, .legal-layout { grid-template-columns: 1fr; }
  .about-stack { width: min(100%, 520px); margin-inline: auto; }
  .section-head { align-items: flex-start; flex-direction: column; gap: 16px; }
  .section-head > .sub { max-width: 620px; }
  .process-grid { grid-template-columns: 1fr; gap: 45px; }
  .process-intro, .faq-intro, .legal-sidebar { position: static; }
  .pricing-copy { max-width: 650px; }
  .custom-copy { max-width: 680px; }
  .faq-intro { max-width: 600px; }
  .dashboard-hero { align-items: flex-start; flex-direction: column; }
  .dashboard-layout, .download-layout { grid-template-columns: 1fr; }
  .dashboard-side-column { grid-template-columns: 1fr 1fr; }
  .membership-panel { min-height: auto; }
  .member-sync-state { min-height: 220px; }
  .downloads-hero { gap: 20px; }
  .download-visual { width: min(100%, 520px); margin-inline: auto; }
  .legal-layout { max-width: 790px; }
  .legal-sidebar { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
  .legal-back { grid-column: 1 / -1; margin-bottom: 0; }
  .legal-toc { margin-top: 0; padding: 8px; border: 1px solid var(--line-soft); border-radius: 16px; }
}

@media (max-width: 720px) {
  .wrap { width: min(calc(100% - 28px), var(--maxw)); }
  .section { padding: 88px 0; }
  .page-shell { padding-top: 38px; }
  .h-sec { font-size: clamp(2rem, 10vw, 3rem); }
  .hero h1 { font-size: clamp(3rem, 15vw, 4.3rem); }
  .hero-proof { gap: 22px 0; }
  .hero-proof-item { width: 50%; min-width: 0; padding: 0 16px; }
  .hero-proof-item:nth-child(3) { padding-left: 0; border-left: 0; }
  .console-titlebar { grid-template-columns: 1fr auto; }
  .console-title { display: none; }
  .console-body { grid-template-columns: 1fr; }
  .console-sidebar { display: none; }
  .signal-grid { grid-template-columns: 1fr; }
  .console-main { padding: 18px; }
  .console-window { border-radius: 18px; }
  .capability-items { grid-template-columns: repeat(2, 1fr); }
  .service-grid, .grid-projects { grid-template-columns: 1fr; }
  .catalog-head { align-items: stretch; flex-direction: column; gap: 22px; }
  .catalog-search { width: 100%; flex: 1 1 auto; }
  .service-card, .service-card-large { min-height: 330px; }
  .process-step { grid-template-columns: 38px 1fr; }
  .process-state { grid-column: 2; width: fit-content; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .dashboard-stat-grid { grid-template-columns: 1fr; }
  .dashboard-stat-card { min-height: 105px; }
  .dashboard-side-column { grid-template-columns: 1fr; }
  .download-card-header { grid-template-columns: 52px 1fr; }
  .release-badge { grid-column: 2; width: fit-content; }
  .download-detail-grid { grid-template-columns: 1fr 1fr; }
  .download-card-actions .btn { width: 100%; }
  .legal-sidebar { grid-template-columns: 1fr; }
  .legal-toc { display: none; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-col:last-child { grid-column: auto; display: block; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 520px) {
  .nav-inner { gap: 10px; }
  .brand-mark-wrap { width: 37px; height: 37px; }
  .hero { padding-top: 44px; }
  .hero-badge { max-width: 100%; font-size: 8px; letter-spacing: 0.08em; }
  .hero h1 { font-size: clamp(2.75rem, 16vw, 3.75rem); }
  .hero-cta .btn { width: 100%; }
  .hero-proof-item { width: 100%; padding: 0 0 0 14px; }
  .hero-proof-item:first-child { padding-left: 14px; border-left: 1px solid var(--line); }
  .hero-proof-item:nth-child(3) { padding-left: 14px; border-left: 1px solid var(--line); }
  .about-stack { min-height: 430px; }
  .stack-card-main { padding: 22px; }
  .stack-card-float { min-width: 190px; }
  .stack-card-float.top { right: -8px; top: 30px; }
  .stack-card-float.bottom { left: -8px; bottom: 30px; }
  .price-card { padding: 27px 21px; }
  .price-card-head { flex-direction: column; }
  .request-form, .dashboard-panel, .download-primary-card, .download-side-card { padding: 22px 18px; }
  .quick-action-card { grid-template-columns: 40px 1fr; }
  .quick-action-arrow { display: none; }
  .download-detail-grid { grid-template-columns: 1fr; }
  .download-visual { transform: scale(0.84); margin-block: -24px; }
  .legal-document h1 { font-size: 2.7rem; }
  .modal { padding: 34px 20px 24px; border-radius: 20px; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
}

/* Pricing selector + dynamic plan card ----------------------------------- */
.pricing-head { max-width: 640px; margin: 0 auto 34px; text-align: center; }
.pricing-head .sub { margin-inline: auto; }
.plan-selector { display: flex; flex-wrap: wrap; justify-content: center; gap: 6px; max-width: 720px; margin: 0 auto 32px; padding: 6px; border: 1px solid var(--line); border-radius: 16px; background: rgba(255,255,255,0.02); }
.plan-pill { padding: 10px 15px; border: 1px solid transparent; border-radius: 11px; background: transparent; color: var(--steel); font-family: var(--mono); font-size: 0.7rem; letter-spacing: 0.05em; text-transform: uppercase; cursor: pointer; transition: color 0.2s, background 0.2s, border-color 0.2s, box-shadow 0.2s; white-space: nowrap; }
.plan-pill:hover { color: var(--silver-2); }
.plan-pill.active { color: #fff; background: var(--violet); border-color: rgba(185,168,255,0.4); box-shadow: 0 0 18px rgba(124,77,255,0.35); }
.plan-stage { max-width: 460px; margin: 0 auto; }
.plan-stage .price-card { margin: 0; }
.plan-foot { max-width: 560px; margin: 26px auto 0; text-align: center; color: var(--muted); font-size: 0.8rem; line-height: 1.7; }
@media (max-width: 640px) {
  .plan-selector { gap: 4px; }
  .plan-pill { padding: 9px 11px; font-size: 0.64rem; }
}

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

/* Payment Methods Selector inside Checkout Modal */
.pay-methods {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 20px;
}
.pay-method {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 11px;
  background-color: rgba(0,0,0,0.15);
  color: var(--steel);
  font-family: var(--body);
  font-size: 0.88rem;
  font-weight: 500;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, color 0.2s, box-shadow 0.2s;
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.018);
}
.pay-method:hover {
  border-color: rgba(255, 255, 255, 0.13);
  color: var(--silver-2);
}
.pay-method.active {
  background-color: rgba(124, 77, 255, 0.08);
  border-color: var(--violet);
  color: #fff;
  box-shadow: 0 0 16px rgba(124, 77, 255, 0.22);
}
.pay-method-icon {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  flex-shrink: 0;
}

/* Trial Notice Box on Dashboard */
.trial-notice-box {
  margin-bottom: 24px;
  border: 1px solid rgba(185, 168, 255, 0.25);
  border-radius: 20px;
  background: linear-gradient(160deg, rgba(124, 77, 255, 0.06), rgba(124, 77, 255, 0.01));
  box-shadow: 0 4px 24px rgba(124, 77, 255, 0.05);
  padding: 22px 27px;
}
.trial-notice-content {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.trial-notice-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(124, 77, 255, 0.1);
  color: var(--violet);
  flex-shrink: 0;
}
.trial-notice-icon svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
}
.trial-notice-content strong {
  display: block;
  margin-bottom: 4px;
  color: #fff;
  font-size: 1.05rem;
  font-family: var(--display);
}
.trial-notice-content p {
  margin: 0;
  color: var(--silver-2);
  font-size: 0.88rem;
  line-height: 1.6;
}

@media (max-width: 520px) {
  .pay-methods {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .trial-notice-box {
    padding: 22px 18px;
  }
  .trial-notice-content {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }
  .trial-notice-icon {
    width: 34px;
    height: 34px;
  }
  .trial-notice-icon svg {
    width: 17px;
    height: 17px;
  }
}
