:root {
  --bg: #07080d;
  --bg2: #0e1218;
  --card: #141920;
  --card2: #1a212c;
  --text: #eef2fb;
  --muted: #8b96ab;
  --accent: #3d9eff;
  --accent2: #5eb4ff;
  --danger: #c75c6e;
  --border: rgba(139, 150, 171, 0.22);
  --site-header-h: 64px;
  --grid: #2a3d55;
  --glow: rgba(61, 158, 255, 0.22);
  --radius: 12px;
  --mono: ui-monospace, "Cascadia Mono", "Segoe UI Mono", monospace;
  --display: "DM Sans", system-ui, sans-serif;
  --max: 1120px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { background: #07080d; }

body {
  font-family: "DM Sans", "Segoe UI", system-ui, sans-serif;
  background:
    radial-gradient(ellipse 90% 55% at 50% -8%, var(--glow), transparent 58%),
    linear-gradient(145deg, #0c121a 0%, #07080d 50%, #050608 100%);
  background-attachment: fixed;
  color: var(--text);
  line-height: 1.7;
  font-size: 1rem;
  min-height: 100vh;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.5;
  background-image:
    linear-gradient(var(--grid) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 30%, #000 20%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 30%, #000 20%, transparent 75%);
}

body::after {
  content: "";
  position: fixed;
  width: min(720px, 90vw);
  height: min(720px, 90vw);
  top: -8rem;
  right: -10rem;
  border-radius: 50%;
  background: rgb(61, 158, 255);
  opacity: 0.16;
  filter: blur(140px);
  pointer-events: none;
  z-index: 0;
  animation: site-orb-drift 12s ease-in-out infinite;
}

@keyframes site-orb-drift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-40px, 30px) scale(1.08); }
}

body > * { position: relative; z-index: 1; }

@media (max-width: 767px) { body { background-attachment: scroll; } }
@media (prefers-reduced-motion: reduce) { body::after { animation: none; } }

a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

header.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  min-height: var(--site-header-h);
  padding: 0 clamp(1rem, 3vw, 2rem);
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(61, 158, 255, 0.18);
  background: rgba(7, 8, 13, 0.92);
}
.site-header__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(61, 158, 255, 0.16) 0%, rgba(61, 158, 255, 0.05) 28%, rgba(7, 8, 13, 0.97) 55%, #07080d 100%);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.site-header__inner {
  position: relative;
  z-index: 1;
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  align-items: center;
  width: 100%;
  gap: 1rem;
  min-height: var(--site-header-h);
}
.site-logo-link {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  flex-shrink: 0;
  margin-right: auto;
  text-decoration: none !important;
  color: #fff;
  line-height: 1.05;
}
.site-logo-link:hover { opacity: 0.88; }
.lockup-mark {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}
.lockup-word {
  display: flex;
  flex-direction: column;
  gap: 0.08rem;
}
.lockup-word strong {
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.lockup-word span {
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent2);
  font-weight: 700;
}
header.site-header nav.site-nav-main {
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: stretch;
  justify-content: center;
}
header.site-header nav.site-nav-main > a {
  font-size: 0.82rem;
  font-weight: 700;
  color: #f0f2f6;
  padding: 0 0.85rem;
  min-height: var(--site-header-h);
  display: flex;
  align-items: center;
  border-bottom: 2px solid transparent;
  text-decoration: none;
}
header.site-header nav.site-nav-main > a:hover {
  color: var(--text);
  text-decoration: none;
  border-bottom-color: var(--accent);
}
.site-header__tail {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-shrink: 0;
  margin-left: auto;
}
.site-header__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.48rem 1.15rem;
  border: 1px solid var(--accent);
  border-radius: 999px;
  box-shadow: 0 0 18px rgba(61, 158, 255, 0.25);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff !important;
  text-decoration: none !important;
  white-space: nowrap;
}
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--card2);
  cursor: pointer;
  align-items: center;
  justify-content: center;
}
.nav-toggle-inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 20px;
}
.nav-toggle-bar {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--text);
  border-radius: 1px;
}

main {
  max-width: var(--max);
  margin: 0 auto;
  padding: 3rem 1.5rem 5rem;
}

.hybrid-page section { margin-bottom: 2.6rem; }
.hybrid-page .kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-family: var(--mono);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  padding: 0.28rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(61, 158, 255, 0.35);
  background: rgba(61, 158, 255, 0.08);
  color: #cfe6ff;
  margin-bottom: 1rem;
}
.hybrid-page .kicker .p {
  color: var(--accent);
  animation: kicker-pulse 2.4s ease-in-out infinite;
}
@keyframes kicker-pulse {
  0%, 100% { filter: drop-shadow(0 0 0 rgba(61,158,255,0)); }
  50% { filter: drop-shadow(0 0 8px rgba(61,158,255,0.9)); }
}
.hybrid-page h1 {
  font-family: var(--display);
  font-size: clamp(2.35rem, 6.2vw, 4.15rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
  font-weight: 700;
  margin-bottom: 1rem;
  text-wrap: balance;
}
.hybrid-page .hl {
  color: var(--accent2);
  text-shadow: 0 0 28px rgba(61, 158, 255, 0.45);
}
.hybrid-page .lede {
  font-size: 1.12rem;
  color: #c9d3e4;
  max-width: 36rem;
  margin-bottom: 1.4rem;
}
.hybrid-page .btns { display: flex; flex-wrap: wrap; gap: 0.7rem; }
.hybrid-page .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.78rem 1.3rem;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.92rem;
  text-decoration: none !important;
  border: 1px solid transparent;
  cursor: pointer;
  font-family: inherit;
}
.hybrid-page .btn-ice {
  background: linear-gradient(180deg, #5eb4ff, var(--accent));
  color: #041018 !important;
  box-shadow: 0 8px 28px rgba(61, 158, 255, 0.38);
  transition: transform 0.15s, filter 0.15s, box-shadow 0.15s;
}
.hybrid-page .btn-ice:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(61, 158, 255, 0.5);
  filter: brightness(1.08);
}
.hybrid-page .btn-ghost {
  border-color: var(--border);
  color: #fff !important;
  background: rgba(255,255,255,0.04);
}
.hybrid-page .btn-ghost:hover {
  border-color: var(--accent);
  background: rgba(61, 158, 255, 0.08);
}
.hybrid-page .sec-title {
  font-family: var(--display);
  font-size: clamp(1.45rem, 3vw, 2rem);
  letter-spacing: -0.045em;
  font-weight: 700;
  margin: 0 0 1.15rem;
}
.hybrid-page .sec-sub { color: var(--muted); margin: 0 0 1.3rem; max-width: 40rem; }
.hybrid-page .grid3 {
  display: grid;
  gap: 1.1rem;
  grid-template-columns: 1fr;
}
@media (min-width: 860px) {
  .hybrid-page .grid3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
.hybrid-page .card {
  border: 1px solid var(--border);
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(22, 30, 42, 0.92), rgba(12, 16, 22, 0.92));
  padding: 1.1rem;
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.28);
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
}
.hybrid-page .card:hover {
  transform: translateY(-4px);
  border-color: rgba(61, 158, 255, 0.55);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(61, 158, 255, 0.2);
}
.hybrid-page .card h3 { margin: 0 0 0.4rem; font-size: 1.08rem; }
.hybrid-page .card p { color: #a8b3c4; font-size: 0.94rem; }
.hybrid-page .art {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  margin-bottom: 0.9rem;
  background: #10151c;
}
.hybrid-page .art svg { display: block; width: 100%; height: auto; }
.hybrid-page .card:hover .art { border-color: rgba(61, 158, 255, 0.55); }
.hybrid-page .hero-cine {
  display: grid;
  gap: 2rem;
  align-items: start;
  margin: 0.4rem 0 2.6rem;
}
@media (min-width: 980px) {
  .hybrid-page .hero-cine { grid-template-columns: 1.05fr 1fr; gap: 2.6rem; }
}
.hybrid-page .tool-shell {
  position: relative;
  border-radius: 18px;
  padding: 1px;
  background: linear-gradient(160deg, rgba(94, 180, 255, 0.85), rgba(61, 158, 255, 0.15) 40%, rgba(255,255,255,0.08));
  box-shadow:
    0 0 0 1px rgba(61, 158, 255, 0.2),
    0 24px 70px rgba(0, 0, 0, 0.45),
    0 0 80px rgba(61, 158, 255, 0.18);
}
.hybrid-page .tool-shell__in {
  border-radius: 17px;
  background: rgba(8, 12, 18, 0.96);
  overflow: hidden;
}
.hybrid-page .tool-chrome {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.75rem 0.95rem;
  background: rgba(14, 20, 28, 0.95);
  border-bottom: 1px solid rgba(61, 158, 255, 0.18);
}
.hybrid-page .tool-chrome .dot { width: 9px; height: 9px; border-radius: 50%; }
.hybrid-page .tool-url {
  flex: 1;
  font-family: var(--mono);
  font-size: 0.7rem;
  color: var(--muted);
  background: #07080d;
  border: 1px solid rgba(61, 158, 255, 0.22);
  border-radius: 999px;
  padding: 0.28rem 0.75rem;
  margin-left: 0.4rem;
}
.hybrid-page .tool { padding: 1.15rem 1.15rem 1.25rem; }
.hybrid-page .tool label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0.85rem 0 0.4rem;
}
.hybrid-page .tool label:first-child { margin-top: 0; }
.hybrid-page .tool .fake-input {
  width: 100%;
  padding: 0.75rem 0.9rem;
  border-radius: 8px;
  border: 1px solid rgba(139, 150, 171, 0.35);
  background: #07080d;
  color: #fff;
  font-size: 0.95rem;
}
.hybrid-page .pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  list-style: none;
}
.hybrid-page .pills li {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: 999px;
  padding: 0.28rem 0.65rem;
  border: 1px solid var(--border);
  color: var(--muted);
}
.hybrid-page .pills .on {
  border-color: #3ecf8e;
  color: #3ecf8e;
  background: rgba(62, 207, 142, 0.08);
}
.hybrid-page .tool-actions { display: flex; flex-wrap: wrap; gap: 0.55rem; margin-top: 0.95rem; }
.hybrid-page .note {
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 0.65rem;
}
.hybrid-page .ticker-wrap {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  margin: 0 0 2.4rem;
}
.hybrid-page .ticker {
  display: flex;
  gap: 1.4rem;
  width: max-content;
  font-family: var(--mono);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #7f8ca3;
  animation: ticker 28s linear infinite;
}
.hybrid-page .ticker span { white-space: nowrap; }
.hybrid-page .ticker b { color: var(--accent2); font-weight: 600; }
@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.hybrid-page .steps { list-style: none; display: grid; gap: 0.85rem; }
.hybrid-page .steps li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  padding: 1.05rem 1.15rem;
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius);
  background: linear-gradient(90deg, rgba(61, 158, 255, 0.1), rgba(20, 25, 32, 0.7));
}
.hybrid-page .steps .n {
  font-family: var(--mono);
  color: var(--accent);
  font-weight: 600;
  padding-top: 0.15rem;
}
.hybrid-page .steps strong { display: block; margin-bottom: 0.2rem; }
.hybrid-page .steps p { color: var(--muted); font-size: 0.92rem; margin: 0; }
.hybrid-page .cta-band {
  text-align: center;
  margin-top: 2.5rem;
  padding: 2.8rem 1.4rem;
  border-radius: 16px;
  border: 1px solid rgba(61, 158, 255, 0.32);
  background: radial-gradient(ellipse 70% 80% at 50% 0%, rgba(61, 158, 255, 0.14), transparent 60%), rgba(20, 25, 32, 0.8);
  box-shadow: 0 20px 60px rgba(61, 158, 255, 0.12);
}
.hybrid-page .cta-band h2 {
  font-family: var(--display);
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  letter-spacing: -0.045em;
  font-weight: 700;
  margin-bottom: 0.55rem;
}
.hybrid-page .cta-band p {
  color: var(--muted);
  max-width: 38rem;
  margin: 0 auto 1.1rem;
}
.hybrid-page .cta-band .btns { justify-content: center; }

footer.site-footer {
  border-top: 1px solid var(--border);
  text-align: left;
  padding: 2.4rem 1.5rem 1.4rem;
  max-width: var(--max);
  margin: 0 auto;
  font-size: 0.9rem;
  color: var(--muted);
}
.foot-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 760px) {
  .foot-grid { grid-template-columns: 1.4fr 1fr; }
  .foot-grid--legal { grid-template-columns: 1.4fr 1fr 1fr; }
}
.foot-name {
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
}
.foot-name span { color: var(--accent); }
.foot-name:hover { text-decoration: none; opacity: 0.92; }
.foot-tag {
  color: var(--muted);
  font-size: 0.9rem;
  margin-top: 0.45rem;
  max-width: 22rem;
  line-height: 1.55;
}
.foot-h {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.55rem;
  font-weight: 700;
}
.foot-nav { display: flex; flex-direction: column; gap: 0.35rem; }
.foot-nav a { color: #c5cedd; }
.foot-nav a:hover { color: #fff; }
.foot-bottom {
  margin-top: 1.6rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  font-size: 0.8rem;
  color: var(--muted);
}
.foot-bottom a { color: #c5cedd; }
.foot-bottom a:hover { color: #fff; }

.legal-doc {
  max-width: 44rem;
  margin: 0 auto;
  padding: calc(var(--site-header-h) + 2.2rem) 1.5rem 3.5rem;
}
.legal-doc .kicker { margin-bottom: 0.75rem; }
.legal-doc h1 {
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 0.4rem;
}
.legal-meta {
  color: var(--muted);
  font-size: 0.92rem;
  margin-bottom: 1.35rem;
}
.legal-doc h2 {
  font-size: 1.15rem;
  font-weight: 800;
  margin: 1.85rem 0 0.55rem;
  letter-spacing: -0.02em;
}
.legal-doc p { margin-bottom: 0.85rem; color: #d5dce8; }
.legal-doc ul, .legal-doc ol { margin: 0 0 0.9rem 1.15rem; color: #d5dce8; }
.legal-doc li { margin-bottom: 0.4rem; }
.legal-doc code {
  font-family: var(--mono);
  font-size: 0.86em;
  color: var(--accent2);
}
.legal-doc .legal-steps { list-style: decimal; }
header.site-header nav.site-nav-main > a[aria-current="page"] { color: #fff; }

@media (max-width: 767px) {
  .nav-toggle { display: inline-flex; }
  header.site-header nav.site-nav-main {
    position: fixed;
    top: var(--site-header-h);
    right: 0;
    width: min(20rem, 92vw);
    height: calc(100dvh - var(--site-header-h));
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    background: var(--card);
    border-left: 1px solid var(--border);
    padding: 0.75rem 0 1.5rem;
    transform: translateX(100%);
    visibility: hidden;
    pointer-events: none;
    z-index: 200;
  }
  header.site-header nav.site-nav-main.is-open {
    transform: translateX(0);
    visibility: visible;
    pointer-events: auto;
  }
  header.site-header nav.site-nav-main > a {
    min-height: 48px;
    padding: 0 1.2rem;
    border-bottom: 1px solid var(--border);
  }
  .site-header__cta { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  .hybrid-page .kicker .p,
  .hybrid-page .ticker { animation: none; }
}
