﻿:root {
  --bg:          #F2EDEC;
  --bg-alt:      #EDE7E6;
  --surface:     #FCFAF9;
  --surface-2:   #FFFFFF;
  --line:        rgba(15,10,44,0.08);
  --line-strong: rgba(15,10,44,0.16);
  --ink:         #0F0A2C;
  --ink-2:       #1B1640;
  --ink-muted:   #5B5572;
  --ink-soft:    #8B859E;
  --blue:        #2563EB;
  --blue-soft:   #DCE6FE;
  --magenta:     #2563EB;
  --magenta-deep:#1e40af;
  --accent:      #A5B4FC;
  --accent-deep: #818CF8;
  --accent-soft: #EEF2FF;
  --tri-green:   #009344;
  --tri-blue:    #FFFFFF;
  --tri-red:     #CF2734;
  --f-display:   'Geist', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --f-body:      'Geist', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --f-mono:      'JetBrains Mono', ui-monospace, 'SF Mono', monospace;
  --r-sm:  10px;
  --r-md:  16px;
  --r-lg:  24px;
  --r-xl:  32px;
  --r-2xl: 44px;
  --r-pill:999px;
  --sh-card:   0 1px 0 rgba(15,10,44,0.04), 0 8px 30px -10px rgba(15,10,44,0.10);
  --sh-float:  0 10px 40px -8px rgba(15,10,44,0.18), 0 2px 6px rgba(15,10,44,0.06);
  --sh-magenta:0 14px 32px -10px rgba(37,99,235,0.55), 0 4px 12px rgba(37,99,235,0.25);
  --sh-accent: 0 12px 28px -8px rgba(165,180,252,0.55);
  --max: 1280px;
  --pad: clamp(20px, 4vw, 48px);
}
*,*::before,*::after { box-sizing: border-box }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth }
body {
  margin: 0;
  font-family: var(--f-body);
  background: var(--bg);
  color: var(--ink);
  font-feature-settings: "ss01","cv11","kern";
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100% }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; padding: 0 }
a { color: inherit; text-decoration: none }
::selection { background: var(--ink); color: var(--accent) }
.eyebrow {
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--magenta);
  font-weight: 500;
}
.eyebrow.dim { color: var(--ink-muted) }
h1,h2,h3,h4 { margin: 0; font-family: var(--f-display); letter-spacing: -0.02em; line-height: 1.02; color: var(--ink) }
.h-display {
  font-size: clamp(48px, 8.4vw, 118px);
  font-weight: 800;
  line-height: 0.96;
  letter-spacing: -0.035em;
}
.h-display em {
  font-style: normal;
  background: linear-gradient(135deg, var(--magenta), #818CF8);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.h-1 { font-size: clamp(40px, 5.4vw, 76px); font-weight: 800; letter-spacing: -0.03em; line-height: 1 }
.h-2 { font-size: clamp(28px, 3.2vw, 44px); font-weight: 700; letter-spacing: -0.025em; line-height: 1.05 }
.h-3 { font-size: 22px; font-weight: 600; letter-spacing: -0.015em; line-height: 1.2 }
p { margin: 0 }
.lead { font-size: clamp(16px,1.25vw,19px); color: var(--ink-muted); line-height: 1.55; max-width: 54ch }
.mono { font-family: var(--f-mono) }
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 22px;
  border-radius: var(--r-pill);
  font-weight: 600; font-size: 15px;
  transition: transform .25s cubic-bezier(.2,.7,.2,1), box-shadow .25s ease, background .2s;
  white-space: nowrap;
  will-change: transform;
}
.btn-magenta { background: var(--magenta); color: #fff; box-shadow: var(--sh-magenta) }
.btn-magenta:hover { transform: translateY(-1px); background: var(--magenta-deep) }
.btn-magenta:active { transform: translateY(0) }
.btn-white { background: var(--surface-2); color: var(--ink); border: 1px solid var(--line); box-shadow: 0 1px 0 rgba(15,10,44,.04) }
.btn-white:hover { transform: translateY(-1px); border-color: var(--line-strong) }
.btn-dark { background: var(--ink); color: #fff }
.btn-dark:hover { background: var(--ink-2); transform: translateY(-1px) }
.btn-ghost { padding: 14px 18px; color: var(--ink) }
.btn-ghost:hover { color: var(--magenta) }
.btn .ico { width: 18px; height: 18px }
.promo {
  background: var(--ink);
  color: #fff;
  font-size: 14px; font-weight: 500;
  display: flex; justify-content: center; align-items: center; gap: 18px;
  padding: 12px var(--pad);
  letter-spacing: -0.005em;
}
.promo .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 12px var(--accent) }
.promo a { color: var(--magenta); font-weight: 600; display: inline-flex; align-items: center; gap: 6px; text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1.5px }
.promo a:hover { color: #fff }
@media (max-width: 640px) { .promo .hide-sm { display: none } }
.nav-wrap { position: sticky; top: 14px; z-index: 50; padding: 0 var(--pad); margin-top: 14px }
.nav {
  max-width: var(--max);
  margin: 0 auto;
  background: var(--surface-2);
  border-radius: var(--r-pill);
  padding: 10px 12px 10px 22px;
  display: flex; align-items: center; gap: 12px;
  box-shadow: 0 8px 28px -12px rgba(15,10,44,.20), 0 1px 0 rgba(15,10,44,.04);
  border: 1px solid var(--line);
}
.brand { display: inline-flex; align-items: center; font-family: var(--f-display); font-weight: 800; font-size: 20px; letter-spacing: -0.02em }
.brand .g { color: var(--tri-green); font-weight: 800 }
.brand .b { color: var(--tri-blue); -webkit-text-stroke: 1.5px var(--ink); paint-order: stroke fill; font-weight: 800 }
.brand .r { color: var(--tri-red); font-weight: 800 }
.brand .sep { color: var(--line-strong); font-weight: 300; margin:0; font-size: 0.85em }
.brand .com { color: var(--tri-red); font-weight: 800 }
.nav-links { display: flex; gap: 4px; margin-left: 18px }
.nav-links a { padding: 9px 14px; border-radius: var(--r-pill); font-size: 14px; font-weight: 500; color: var(--ink-muted); transition: color .2s, background .2s }
.nav-links a:hover, .nav-links a.active { color: var(--ink); background: var(--bg) }
.nav-spacer { flex: 1 }
.nav-cta { display: flex; gap: 8px; align-items: center }
.nav-cta .btn { padding: 11px 18px; font-size: 14px }
.nav-link-imagine { color: #2563EB !important }
.nav-link-imagine:hover { color: #1e40af !important }
.nav-link-pdf { color: #EE3A8C !important }
.nav-link-pdf:hover { color: #D11F73 !important }
.nav-link-convert { color: #F9C846 !important }
.nav-link-convert:hover { color: #F2A93D !important }
.nav-link-compress { color: #009344 !important }
.nav-link-compress:hover { color: #007a33 !important }
.nav-link-calc { color: #8B5CF6 !important }
.nav-link-calc:hover { color: #7c3aed !important }
@media (max-width: 880px) { .nav-links { display: none } }
@media (max-width: 520px) { .nav-cta .btn-white { display: none } }
.section { padding: clamp(60px, 8vw, 120px) var(--pad) }
.section.tight { padding: clamp(40px, 5vw, 70px) var(--pad) }
.wrap { max-width: var(--max); margin: 0 auto }
.hero { padding: clamp(48px, 6vw, 96px) var(--pad) clamp(32px, 4vw, 56px) }
.hero-center {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero-center .eyebrow { margin-bottom: 22px }
.hero-center h1 { margin-bottom: 26px }
.hero-center .lead { margin-bottom: 30px; text-align: center }
.checks-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 28px;
  margin-bottom: 32px;
  padding: 0;
  list-style: none;
}
.check {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--ink);
  font-weight: 500;
}
.check svg { flex: 0 0 16px; color: var(--magenta) }
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; justify-content: center; margin-bottom: 20px }
.hero-byline {
  display: flex; align-items: center; gap: 14px;
  font-family: var(--f-mono); font-size: 12px; color: var(--ink-muted);
  flex-wrap: wrap; justify-content: center;
}
.hero-byline .stars { color: var(--magenta); letter-spacing: 2px }
.hero-byline .sep { width: 1px; height: 14px; background: var(--line-strong) }
.hero-widget {
  max-width: 920px;
  margin: 48px auto 0;
  position: relative;
}
.split-card {
  background: linear-gradient(135deg, #F7F1F0 0%, #ECE6E5 100%);
  border: 1px solid var(--line);
  border-radius: var(--r-2xl);
  padding: 24px;
  box-shadow: var(--sh-card);
  position: relative;
  isolation: isolate;
}
.split-card-tabs {
  display: flex; gap: 8px; margin-bottom: 16px;
  font-family: var(--f-mono); font-size: 11px;
}
.split-card-tabs .tab {
  padding: 6px 12px; border-radius: var(--r-pill);
  background: rgba(15,10,44,.06); color: var(--ink-muted);
  display: inline-flex; align-items: center; gap: 6px;
}
.split-card-tabs .tab.active { background: var(--ink); color: #fff }
.split-card-tabs .tab .pip { width: 6px; height: 6px; border-radius: 50%; background: var(--accent) }
.censor-scene {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  user-select: none;
}
.censor-base {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  pointer-events: none;
}
.cz {
  position: absolute;
  backdrop-filter: blur(26px) saturate(0.25) brightness(0.88);
  -webkit-backdrop-filter: blur(26px) saturate(0.25) brightness(0.88);
  border: 1.5px solid rgba(129, 140, 248, 0.85);
  border-radius: 4px;
  box-shadow: 0 0 0 1px rgba(129,140,248,.25), 0 0 24px -6px rgba(129,140,248,.45);
  z-index: 10;
  pointer-events: none;
  clip-path: inset(0 100% 100% 0 round 4px);
}
.cz-handle {
  position: absolute;
  width: 8px; height: 8px;
  background: #818CF8;
  border-radius: 2px;
  box-shadow: 0 1px 4px rgba(0,0,0,.35);
}
.cz-handle.tl { top: -3px; left: -3px }
.cz-handle.tr { top: -3px; right: -3px }
.cz-handle.bl { bottom: -3px; left: -3px }
.cz-handle.br { bottom: -3px; right: -3px }
.cz-tag {
  position: absolute;
  bottom: 5px; left: 7px;
  font-family: var(--f-mono); font-size: 9px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: #c7d2fe;
  background: rgba(10,8,30,.55);
  padding: 2px 6px; border-radius: 3px;
  white-space: nowrap;
}
.cz-1 { left: 8%;  top: 12%; width: 24%; height: 48% }
.cz-2 { left: 38%; top: 8%;  width: 28%; height: 54% }
.cz-3 { left: 68%; top: 16%; width: 24%; height: 48% }
.cz-1 { animation: cz1Draw 14s linear infinite }
.cz-2 { animation: cz2Draw 14s linear infinite }
.cz-3 { animation: cz3Draw 14s linear infinite }
@keyframes cz1Draw {
  0%, 2.5% { clip-path: inset(0 100% 100% 0 round 4px) }
  20%       { clip-path: inset(0 0% 0% 0 round 4px) }
  62%       { clip-path: inset(0 0% 0% 0 round 4px) }
  70%, 100% { clip-path: inset(0 100% 100% 0 round 4px) }
}
@keyframes cz2Draw {
  0%, 20.5% { clip-path: inset(0 100% 100% 0 round 4px) }
  38%        { clip-path: inset(0 0% 0% 0 round 4px) }
  62%        { clip-path: inset(0 0% 0% 0 round 4px) }
  70%, 100%  { clip-path: inset(0 100% 100% 0 round 4px) }
}
@keyframes cz3Draw {
  0%, 38.5% { clip-path: inset(0 100% 100% 0 round 4px) }
  56%        { clip-path: inset(0 0% 0% 0 round 4px) }
  62%        { clip-path: inset(0 0% 0% 0 round 4px) }
  70%, 100%  { clip-path: inset(0 100% 100% 0 round 4px) }
}
.cz-cursor {
  position: absolute;
  z-index: 20;
  pointer-events: none;
  animation: czCursorMove 14s linear infinite;
  opacity: 0;
}
.cz-cursor svg { display: block; filter: drop-shadow(0 1px 4px rgba(0,0,0,.6)) }
@keyframes czCursorMove {
  0%    { left: 8%;  top: 12%; opacity: 0 }
  2%    { left: 8%;  top: 12%; opacity: 1 }   
  2.5%  { left: 8%;  top: 12%; opacity: 1 }
  20%   { left: 32%; top: 60%; opacity: 1 }
  21%   { left: 38%; top: 8%;  opacity: 1 }
  38%   { left: 66%; top: 62%; opacity: 1 }
  39%   { left: 68%; top: 16%; opacity: 1 }
  56%   { left: 92%; top: 64%; opacity: 1 }
  62%   { left: 92%; top: 64%; opacity: 1 }
  68%   { left: 92%; top: 64%; opacity: 0 }
  100%  { left: 8%;  top: 12%; opacity: 0 }
}
.cz-counter {
  position: absolute;
  bottom: 14px; right: 14px;
  z-index: 20;
  background: rgba(10,8,30,.72);
  color: #c7d2fe;
  font-family: var(--f-mono); font-size: 11px; font-weight: 600;
  padding: 5px 11px; border-radius: var(--r-pill);
  border: 1px solid rgba(129,140,248,.35);
  pointer-events: none;
  opacity: 0;
  animation: czCounter 14s ease-in-out infinite;
}
@keyframes czCounter {
  0%, 19% { opacity: 0; content: ''; }
  20%     { opacity: 1 }
  67%     { opacity: 1 }
  72%, 100% { opacity: 0 }
}
.float {
  position: absolute;
  background: var(--surface-2);
  border-radius: 18px;
  box-shadow: var(--sh-float);
  padding: 12px 16px;
  border: 1px solid var(--line);
  z-index: 3;
}
.float .lbl {
  font-family: var(--f-mono); font-size: 10.5px; letter-spacing: 0.08em;
  color: var(--ink-soft); text-transform: uppercase;
  display: flex; align-items: center; gap: 6px;
  margin-bottom: 4px;
}
.float .lbl .chk {
  display: inline-flex; width: 14px; height: 14px; border-radius: 50%;
  background: var(--magenta); color: #fff;
  align-items: center; justify-content: center;
}
.float .lbl .chk svg { width: 8px; height: 8px }
.float .val {
  font-family: var(--f-display); font-weight: 700; font-size: 20px;
  color: var(--ink); letter-spacing: -0.02em;
  display: flex; align-items: baseline; gap: 6px;
}
.float .unit { font-size: 12px; color: var(--ink-muted); font-weight: 500 }
.float .row { display: flex; align-items: center; gap: 8px; font-family: var(--f-mono); font-size: 11px }
.float .badge { padding: 2px 7px; background: var(--accent); color: var(--ink); border-radius: var(--r-pill); font-weight: 700; font-size: 10px }
.float-radius-card {
  top: -22px; left: -16px;
  animation: floatA 6s ease-in-out infinite;
}
.float-passes {
  bottom: 28px; left: -30px;
  animation: floatB 7s ease-in-out infinite 0.5s;
}
.float-passes .val { color: var(--accent-deep) }
.float-passes .val::before {
  content: ''; display: inline-block; width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent); box-shadow: 0 0 0 5px var(--accent-soft);
  margin-right: 6px; transform: translateY(-2px);
}
.float-algo {
  bottom: -20px; right: 32px;
  animation: floatB 8s ease-in-out infinite 2s;
  background: var(--ink); color: #fff; border-color: transparent;
}
.float-algo .badge { background: var(--accent); color: var(--ink) }
.float-sigma {
  top: 32px; right: -22px;
  animation: floatA 7.5s ease-in-out infinite 1s;
  min-width: 130px;
}
.float-sigma .slider {
  margin-top: 10px; height: 6px; border-radius: var(--r-pill); background: var(--bg); position: relative;
}
.float-sigma .slider .fill {
  position: absolute; left: 0; top: 0; bottom: 0; width: 68%;
  background: linear-gradient(90deg, var(--magenta), var(--accent));
  border-radius: var(--r-pill);
}
.float-sigma .slider .knob {
  position: absolute; left: 68%; top: 50%; transform: translate(-50%,-50%);
  width: 16px; height: 16px; border-radius: 50%;
  background: #fff; border: 2.5px solid var(--ink);
  box-shadow: 0 3px 8px rgba(15,10,44,.25);
}
@keyframes floatA { 0%,100% { transform: translateY(0) } 50% { transform: translateY(-10px) } }
@keyframes floatB { 0%,100% { transform: translateY(0) } 50% { transform: translateY(8px) } }
@media (prefers-reduced-motion: reduce) {
  .float-radius-card, .float-passes, .float-algo, .float-sigma { animation: none }
  .cz-1, .cz-2, .cz-3, .cz-cursor, .cz-counter { animation: none }
  .cz-1, .cz-2, .cz-3 { clip-path: inset(0 0 0 0 round 4px) }
  .cz-cursor { opacity: 0 }
}
@media (max-width: 640px) {
  .float-sigma { display: none }
  .float-radius-card { left: 8px; top: -18px }
  .float-passes { left: -10px }
  .float-algo { right: 20px }
  .split-card { padding: 16px }
}
.formats {
  display: flex; justify-content: space-between; align-items: center;
  gap: 24px; flex-wrap: wrap;
  padding: 24px 8px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  max-width: var(--max); margin: clamp(40px,5vw,70px) auto 0;
}
.formats .label { font-family: var(--f-mono); font-size: 12px; letter-spacing: 0.08em; color: var(--ink-muted); text-transform: uppercase }
.formats .row { display: flex; gap: clamp(18px,3vw,44px); flex-wrap: wrap; align-items: center }
.fmt {
  font-family: var(--f-display); font-weight: 800; font-size: 22px;
  color: var(--ink-soft); letter-spacing: -0.02em;
  display: inline-flex; align-items: center; gap: 6px;
  transition: color .2s;
}
.fmt:hover { color: var(--ink) }
.fmt .dot { width: 8px; height: 8px; border-radius: 50%; background: currentColor; opacity: .5 }
.trust {
  background: var(--ink);
  color: #fff;
  border-radius: var(--r-2xl);
  padding: 36px 40px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 32px;
  align-items: center;
  max-width: var(--max);
  margin: 0 auto;
}
.trust .badge {
  width: 64px; height: 64px; 
  
  display: grid; place-items: center;
  font-family: var(--f-display); font-weight: 800; font-size: 22px;
  flex: 0 0 auto;
}
.trust h3 { color: #fff; font-size: clamp(20px,2vw,28px); font-weight: 700; letter-spacing: -0.02em }
.trust p { color: rgba(255,255,255,.7); font-size: 14px; margin-top: 4px; max-width: 55ch }
.trust .stats { display: flex; gap: 30px; align-items: center }
.trust .stat { text-align: right; font-family: var(--f-mono) }
.trust .stat .n { font-size: 28px; font-weight: 700; color: var(--accent); letter-spacing: -0.02em; font-family: var(--f-display) }
.trust .stat .l { font-size: 11px; color: rgba(255,255,255,.55); text-transform: uppercase; letter-spacing: 0.12em; margin-top: 4px }
@media (max-width: 820px) { .trust { grid-template-columns: 1fr; text-align: center } .trust .stats { justify-content: center } }
.reviews-section { padding: clamp(40px,5vw,70px) 0; overflow: hidden }
.reviews-label { text-align: center; margin-bottom: 36px; padding: 0 var(--pad); display: flex; flex-direction: column; align-items: center; gap: 12px }
.reviews-label .eyebrow { display: inline-block }
.reviews-label h2 { font-size: clamp(24px,2.8vw,36px); font-weight: 700; letter-spacing: -0.025em }
.marquee-outer {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
}
.marquee-track { display: flex; gap: 16px; width: max-content; animation: marquee-roll 48s linear infinite }

@keyframes marquee-roll { from { transform: translateX(0) } to { transform: translateX(-50%) } }
.review-card {
  flex: 0 0 300px; background: var(--surface-2); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: 22px 24px;
  display: flex; flex-direction: column; gap: 12px;
  box-shadow: var(--sh-card); transition: border-color .2s, box-shadow .2s;
}
.review-card:hover { border-color: var(--line-strong); box-shadow: var(--sh-float) }
.review-stars { color: var(--magenta); font-size: 13px; letter-spacing: 3px }
.review-text { font-size: 14px; color: var(--ink); line-height: 1.65; flex: 1; font-style: italic }
.review-text::before { content: '\201C'; color: var(--ink-soft); font-size: 18px; font-style: normal; margin-right: 2px }
.review-text::after { content: '\201D'; color: var(--ink-soft); font-size: 18px; font-style: normal; margin-left: 2px }
.review-author { display: flex; align-items: center; gap: 10px; padding-top: 10px; border-top: 1px solid var(--line) }
.review-avatar { width: 34px; height: 34px; border-radius: 50%; flex: 0 0 auto; background: var(--bg-alt); display: grid; place-items: center; font-family: var(--f-mono); font-size: 12px; font-weight: 700; color: var(--ink-muted) }
.review-name { font-size: 13px; font-weight: 600; color: var(--ink); line-height: 1.2 }
.review-role { font-size: 11px; color: var(--ink-soft); font-family: var(--f-mono); letter-spacing: 0.04em; text-transform: uppercase; margin-top: 2px }
.alt {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
  max-width: var(--max); margin: 0 auto;
}
.alt.reverse .alt-visual { order: -1 }
.alt-visual {
  position: relative;
  border-radius: var(--r-xl);
  aspect-ratio: 4 / 3;
  background: var(--surface);
  border: 1px solid var(--line);
  overflow: hidden;
  box-shadow: var(--sh-card);
}
.alt-copy .eyebrow { margin-bottom: 18px; display: inline-block }
.alt-copy h2 { margin-bottom: 20px }
.alt-copy .lead { margin-bottom: 28px }
.alt-list { display: grid; gap: 16px; margin-top: 24px; padding: 0; list-style: none }
.alt-list li { display: flex; gap: 14px; padding: 14px 16px; background: var(--surface-2); border: 1px solid var(--line); border-radius: var(--r-md); align-items: flex-start }
.alt-list .num { font-family: var(--f-mono); font-size: 11px; font-weight: 600; color: var(--magenta); letter-spacing: 0.08em; width: 48px; flex: 0 0 auto; margin-top: 2px }
.alt-list strong { display: block; font-size: 15px; color: var(--ink); margin-bottom: 2px }
.alt-list .d { color: var(--ink-muted); font-size: 14px }
@media (max-width: 880px) { .alt { grid-template-columns: 1fr; gap: 40px } .alt.reverse .alt-visual { order: 0 } }
.kernel-visual {
  position: absolute; inset: 0;
  display: grid; grid-template-columns: repeat(5, 1fr);
  padding: 18%; gap: 5px;
}
.kernel-visual span {
  background: var(--accent);
  opacity: var(--kw);
  border-radius: 4px;
}
.kernel-visual::after {
  content: '5×5 kernel · σ = 1.4';
  position: absolute; bottom: 16px; left: 50%; transform: translateX(-50%);
  font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.08em;
  color: var(--ink-muted); text-transform: uppercase; white-space: nowrap;
}
.use-cases-visual {
  position: absolute; inset: 0;
  padding: 22px;
  display: flex; flex-direction: column; gap: 12px; justify-content: center;
}
.use-vis-card {
  display: flex; align-items: center; gap: 14px;
  background: var(--surface-2); border: 1px solid var(--line);
  border-radius: var(--r-md); padding: 14px 16px;
  box-shadow: var(--sh-card);
  transition: transform .3s cubic-bezier(.2,.7,.2,1), box-shadow .3s;
}
.use-vis-card:hover { transform: translateX(6px); box-shadow: var(--sh-float) }
.use-vis-icon {
  width: 36px; height: 36px; flex: 0 0 auto;
  border-radius: 10px; background: var(--accent-soft);
  display: grid; place-items: center;
  color: var(--accent-deep);
}
.use-vis-icon svg { width: 18px; height: 18px }
.use-vis-info strong { display: block; font-size: 14px; font-weight: 600; color: var(--ink) }
.use-vis-info span { font-size: 12px; color: var(--ink-muted); font-family: var(--f-mono); letter-spacing: 0.04em }
.use-vis-tag {
  margin-left: auto; font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.1em;
  text-transform: uppercase; font-weight: 600;
  padding: 3px 8px; border-radius: var(--r-pill);
  background: var(--accent-soft); color: var(--accent-deep);
}
.modes-grid {
  max-width: var(--max); margin: 0 auto;
  display: grid; gap: 20px;
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 640px) { .modes-grid { grid-template-columns: 1fr } }
.mode-card {
  background: var(--surface-2); border: 1px solid var(--line);
  border-radius: var(--r-xl); overflow: hidden;
  transition: transform .35s cubic-bezier(.2,.7,.2,1), box-shadow .35s;
}
.mode-card:hover { transform: translateY(-6px); box-shadow: var(--sh-float) }
.mode-thumb-wrap {
  aspect-ratio: 16 / 9; overflow: hidden; position: relative;
}
.mode-thumb-img {
  width: 114%; height: 114%;
  position: absolute; top: -7%; left: -7%;
  object-fit: cover;
}
.mode-thumb-gaussian { filter: blur(7px) }
.mode-thumb-motion   { filter: blur(4px); transform: scaleX(1.08) translateX(-4%) }
.mode-thumb-radial   { filter: blur(10px) brightness(1.06) }
.mode-thumb-box      { filter: blur(6px) saturate(0.7) contrast(1.05) }
.mode-copy { padding: 22px 24px }
.mode-copy .eyebrow { margin-bottom: 10px; display: inline-block }
.mode-copy h3 { font-size: 20px; font-weight: 700; letter-spacing: -0.015em; margin-bottom: 8px }
.mode-copy .d { font-size: 14px; color: var(--ink-muted); line-height: 1.55 }
.s-head { max-width: 860px; margin: 0 auto clamp(40px,5vw,70px); text-align: center; padding: 0 var(--pad) }
.s-head .eyebrow { margin-bottom: 18px; display: inline-block }
.s-head h2 { margin-bottom: 18px }
.s-head .lead { margin: 0 auto }
.how-grid { max-width: var(--max); margin: 0 auto; display: grid; gap: 20px; grid-template-columns: repeat(3, 1fr) }
@media (max-width: 880px) { .how-grid { grid-template-columns: 1fr } .how-card { min-height: auto } .how-stage { min-height: 150px } }
.how-card {
  background: var(--surface-2); border: 1px solid var(--line);
  border-radius: var(--r-xl); padding: 28px;
  position: relative; overflow: hidden;
  transition: transform .35s cubic-bezier(.2,.7,.2,1), box-shadow .35s;
  min-height: 360px;
  display: flex; flex-direction: column; gap: 16px;
}
.how-card:hover { transform: translateY(-6px); box-shadow: var(--sh-float) }
.how-num { font-family: var(--f-mono); font-size: 11px; font-weight: 600; color: var(--magenta); letter-spacing: 0.14em }
.how-card h3 { font-size: 22px; font-weight: 700; letter-spacing: -0.02em }
.how-card p { font-size: 14px; color: var(--ink-muted); line-height: 1.55 }
.how-stage {
  flex: 1; min-height: 160px; margin-top: 14px;
  border-radius: var(--r-lg);
  background: linear-gradient(180deg, var(--bg-alt), var(--bg));
  position: relative; overflow: hidden;
  border: 1px solid var(--line);
  display: grid; place-items: center;
}
.blur-target {
  position: relative;
  width: 120px; height: 120px;
  display: grid; place-items: center;
  cursor: pointer;
}
.bt-ring {
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid rgba(165,180,252,0.5);
  transition: opacity .4s, transform .4s cubic-bezier(.2,.7,.2,1);
}
.bt-ring-1 { width: 44px; height: 44px }
.bt-ring-2 { width: 76px; height: 76px; border-color: rgba(165,180,252,.35) }
.bt-ring-3 { width: 112px; height: 112px; border-color: rgba(165,180,252,.2) }
.how-card:hover .bt-ring-1 { transform: scale(1.18); border-color: rgba(165,180,252,.8) }
.how-card:hover .bt-ring-2 { transform: scale(1.12); border-color: rgba(165,180,252,.55) }
.how-card:hover .bt-ring-3 { transform: scale(1.06); border-color: rgba(165,180,252,.35) }
.bt-center {
  z-index: 1; background: var(--surface-2);
  width: 36px; height: 36px; border-radius: 50%;
  display: grid; place-items: center;
  box-shadow: var(--sh-card);
  border: 1px solid var(--line);
  color: var(--magenta);
  transition: box-shadow .3s, transform .3s;
}
.how-card:hover .bt-center { box-shadow: var(--sh-float); transform: scale(1.12) }
.stage-dial { padding: 28px 20px }
.blur-dial { width: 100%; max-width: 200px; display: flex; flex-direction: column; gap: 14px }
.blur-dial .label { display: flex; justify-content: space-between; font-family: var(--f-mono); font-size: 11px; color: var(--ink-muted); text-transform: uppercase; letter-spacing: 0.1em }
.blur-dial .label b { font-family: var(--f-display); color: var(--ink); font-size: 14px }
.blur-dial .track { height: 48px; background: var(--surface-2); border-radius: 14px; border: 1px solid var(--line); position: relative; overflow: hidden }
.blur-dial .track::before { content: ''; position: absolute; inset: 8px; background-image: repeating-linear-gradient(90deg, var(--ink-soft) 0 1px, transparent 1px 8px); opacity: .35 }
.blur-dial .knob { position: absolute; top: 50%; transform: translate(-50%,-50%); width: 36px; height: 36px; border-radius: 50%; background: var(--ink); border: 3px solid #fff; box-shadow: 0 6px 14px rgba(15,10,44,.3); transition: left .8s cubic-bezier(.2,.7,.2,1); left: 42% }
.how-card:hover .blur-dial .knob { left: 76%; background: var(--magenta) }
.blur-chip { font-family: var(--f-mono); font-size: 11px; text-align: center; padding: 4px 10px; background: var(--accent-soft); color: var(--accent-deep); border-radius: var(--r-pill); margin: 0 auto }
.stage-download { display: grid; place-items: center; position: relative }
.dl-file {
  width: 120px; height: 150px; background: #fff;
  border-radius: 12px; border: 1px solid var(--line);
  box-shadow: 0 12px 30px -10px rgba(15,10,44,.25);
  position: relative;
  transform: rotate(-4deg);
  transition: transform .6s cubic-bezier(.2,.7,.2,1);
  padding: 14px;
}
.how-card:hover .dl-file { transform: rotate(0deg) translateY(-8px) }
.dl-file .corner { position: absolute; top: 0; right: 0; width: 24px; height: 24px; background: var(--bg); clip-path: polygon(0 0, 100% 100%, 100% 0) }
.dl-file .preview {
  width: 100%; aspect-ratio: 1 / 1; border-radius: 6px;
  background-image: url('/colosseo.png');
  background-size: cover; background-position: center;
  margin-bottom: 10px;
  filter: blur(4px);
  transform: scale(1.04);
  overflow: hidden;
}
.dl-file .meta { font-family: var(--f-mono); font-size: 9px; color: var(--ink-muted); line-height: 1.4 }
.dl-file .meta b { color: var(--accent-deep); font-family: var(--f-display); font-size: 13px; display: block; letter-spacing: -0.02em }
.dl-file .check {
  position: absolute; top: -12px; right: -12px;
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--magenta); color: #fff;
  display: grid; place-items: center;
  box-shadow: var(--sh-magenta);
  transform: scale(0); transition: transform .4s cubic-bezier(.4,2,.4,1) .2s;
}
.how-card:hover .dl-file .check { transform: scale(1) }
.cmp {
  max-width: var(--max); margin: 0 auto;
  background: var(--surface-2); border: 1px solid var(--line);
  border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--sh-card);
}
.cmp-row { display: grid; grid-template-columns: 1.4fr repeat(4, 1fr); border-bottom: 1px solid var(--line) }
.cmp-row:last-child { border-bottom: 0 }
.cmp-row > div { padding: 20px 24px; font-size: 14px; display: flex; align-items: center }
.cmp-row.head > div { font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.12em; color: var(--ink-muted); text-transform: uppercase; font-weight: 500; background: var(--bg); padding: 22px 24px }
.cmp-row.head > div:first-child { font-family: var(--f-display); font-size: 13px; letter-spacing: -0.01em; font-weight: 600; color: var(--ink); text-transform: none }
.cmp-row.head .us { background: var(--ink); color: #fff; position: relative; flex-direction: column; align-items: flex-start; gap: 5px; box-shadow: inset 0 3px 0 var(--accent) }
.us-badge { display: inline-flex; align-items: center; gap: 4px; font-size: 10px; font-family: var(--f-mono); letter-spacing: 0.12em; text-transform: uppercase; font-weight: 700; color: var(--accent) }
.us-name { font-family: var(--f-display); font-weight: 800; font-size: 15px; letter-spacing: -0.02em; color: #fff }
.cmp-row .us { background: linear-gradient(180deg, rgba(165,180,252,.08) 0%, rgba(165,180,252,.03) 100%); font-weight: 600; border-left: 1px solid rgba(165,180,252,.2); border-right: 1px solid rgba(165,180,252,.2) }
.cmp-row.head .b { font-family: var(--f-display); font-weight: 700; font-size: 14px; color: var(--ink); letter-spacing: -0.01em; text-transform: none }
.cmp-cell { gap: 8px }
.cmp-cell svg { flex: 0 0 18px }
.cmp-yes { color: var(--accent-deep); font-weight: 500 }
.cmp-no { color: var(--ink-soft) }
.cmp-row .feat { font-weight: 500; color: var(--ink); font-size: 14px }
.cmp-row:nth-child(even):not(.head) > div:not(.us) { background: rgba(15,10,44,.015) }
@media (max-width: 760px) { .cmp-row { grid-template-columns: 1fr 1fr } .cmp-row > div:nth-child(n+3) { display: none } .cmp-row .us { border-left: 0; border-right: 0 } }
.faq-wrap { max-width: 920px; margin: 0 auto; display: grid; gap: 8px }
.faq { background: var(--surface-2); border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; transition: border-color .2s }
.faq[open] { border-color: var(--line-strong) }
.faq summary { cursor: pointer; padding: 22px 26px; display: flex; align-items: center; justify-content: space-between; gap: 20px; font-size: 17px; font-weight: 600; letter-spacing: -0.01em; list-style: none }
.faq summary::-webkit-details-marker { display: none }
.faq summary .plus { width: 34px; height: 34px; border-radius: 50%; flex: 0 0 auto; background: var(--bg); display: grid; place-items: center; transition: background .2s, transform .3s; color: var(--ink) }
.faq[open] summary .plus { background: var(--magenta); color: #fff; transform: rotate(45deg) }
.faq .body { padding: 0 26px 24px; color: var(--ink-muted); font-size: 15px; line-height: 1.65; max-width: 70ch }
.faq .body code { font-family: var(--f-mono); background: var(--bg); padding: 2px 6px; border-radius: 6px; font-size: 13px; color: var(--ink) }
.rel-grid { max-width: var(--max); margin: 0 auto; display: grid; gap: 14px; grid-template-columns: repeat(5, 1fr) }
@media (max-width: 980px) { .rel-grid { grid-template-columns: repeat(3, 1fr) } }
@media (max-width: 560px) { .rel-grid { grid-template-columns: repeat(2, 1fr) } }
.rel { display: flex; flex-direction: column; gap: 12px; padding: 22px; background: var(--surface-2); border: 1px solid var(--line); border-radius: var(--r-lg); transition: transform .3s, border-color .2s }
.rel:hover { transform: translateY(-4px); border-color: var(--line-strong) }
.rel .ico { width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center; background: var(--bg); color: var(--ink) }
.rel .name { font-size: 15px; font-weight: 600; letter-spacing: -0.01em }
.rel .d { font-size: 13px; color: var(--ink-muted) }
.rel .arrow { margin-top: 6px; font-family: var(--f-mono); font-size: 11px; color: var(--ink-soft); letter-spacing: 0.1em; text-transform: uppercase; display: inline-flex; align-items: center; gap: 6px }
.rel:hover .arrow { color: var(--magenta) }
.final { max-width: var(--max); margin: 0 auto; background: var(--ink); border-radius: var(--r-2xl); padding: clamp(40px,6vw,80px); position: relative; overflow: hidden; color: #fff }
.final::before { content: ''; position: absolute; top: -40%; right: -10%; width: 60%; aspect-ratio: 1/1; background: radial-gradient(circle, rgba(165,180,252,.22), transparent 60%); filter: blur(40px) }
.final::after { content: ''; position: absolute; bottom: -50%; left: -10%; width: 50%; aspect-ratio: 1/1; background: radial-gradient(circle, rgba(37,99,235,.30), transparent 60%); filter: blur(50px) }
.final-inner { position: relative; z-index: 1; display: grid; gap: 30px; max-width: 760px }
.final h2 { color: #fff; font-size: clamp(36px,5vw,64px); font-weight: 800; letter-spacing: -0.03em }
.final p { color: rgba(255,255,255,.75); font-size: 17px; max-width: 55ch; line-height: 1.55 }
.final-input { display: flex; gap: 8px; background: var(--surface-2); padding: 8px; border-radius: var(--r-pill); align-items: center; max-width: 540px }
.final-input input { flex: 1; border: 0; background: transparent; padding: 14px 20px; font: inherit; color: var(--ink); outline: none; font-size: 15px }
.final-input input::placeholder { color: var(--ink-soft) }
.final-bullets { display: flex; gap: 24px; flex-wrap: wrap; font-family: var(--f-mono); font-size: 12px; color: rgba(255,255,255,.55); text-transform: uppercase; letter-spacing: 0.1em }
.final-bullets span::before { content: '✓'; color: var(--accent); margin-right: 6px }
.foot { background: var(--ink); color: rgba(255,255,255,.7); margin-top: 60px; position: relative; padding: 80px var(--pad) 32px }
.foot-wave { position: absolute; top: 0; left: 0; right: 0; transform: translateY(-99%); width: 100%; height: 80px; pointer-events: none }
.foot-grid { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 50px; border-bottom: 1px solid rgba(255,255,255,.08) }
@media (max-width: 880px) { .foot-grid { grid-template-columns: 1fr 1fr } }
@media (max-width: 520px) { .foot-grid { grid-template-columns: 1fr } }
.foot-grid h4 { color: #fff; font-size: 14px; font-weight: 600; letter-spacing: -0.005em; margin-bottom: 18px }
.foot-grid ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px }
.foot-grid a { color: rgba(255,255,255,.6); font-size: 14px; transition: color .2s }
.foot-grid a:hover { color: #fff }
.foot-brand .brand { color: #fff; font-size: 24px }
.foot-brand .brand .sep { color: rgba(255,255,255,.3) }
.foot-brand .brand .com { color: #CF2734 }
.foot-brand .brand .b { -webkit-text-stroke: 0; text-shadow: none; color: #fff }
.foot-brand p { margin-top: 14px; font-size: 14px; max-width: 36ch; color: rgba(255,255,255,.6) }
.foot-bottom { max-width: var(--max); margin: 32px auto 0; display: flex; justify-content: space-between; align-items: center; font-family: var(--f-mono); font-size: 11px; color: rgba(255,255,255,.5); letter-spacing: 0.06em; text-transform: uppercase; flex-wrap: wrap; gap: 14px }
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .8s cubic-bezier(.2,.7,.2,1), transform .8s cubic-bezier(.2,.7,.2,1) }
.reveal.in { opacity: 1; transform: translateY(0) }
.reveal.delay-1 { transition-delay: .1s }
.reveal.delay-2 { transition-delay: .2s }
.reveal.delay-3 { transition-delay: .3s }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none } }
@media (max-width: 767px) {
  section#how { display: none !important; }
  .trust { display: none !important; }
  .cmp { display: none !important; }
}

.kt-modal {
  position: fixed;
  inset: 0;
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(30, 28, 50, 0.45);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease;
}
.kt-modal--open { opacity: 1; pointer-events: auto; }
.kt-no-scroll   { overflow: hidden; }
.kt-modal .button {
  position: relative; display: flex; align-items: center; justify-content: center;
  width: 8em; height: 8em; border: none; cursor: pointer;
  background: transparent; outline: none; transition: filter 0.2s ease;
}
.kt-modal .button:active { transform: scale(0.97); }
.kt-modal .container {
  position: relative; width: 5.2em; height: 4.6em; transform-style: preserve-3d;
}
.kt-modal .folder_back_group {
  position: absolute; bottom: 0; width: 100%; height: 100%; transform: translateZ(-5px);
}
.kt-modal .folder_two {
  position: absolute; top: 5%; width: 38%; height: 19%;
  border-top-left-radius: 5px; border-top-right-radius: 5px;
  background-color: rgb(221,157,0);
}
.kt-modal .folder_two::before {
  content: ""; position: absolute; left: 95%; width: 0; height: 0;
  border-left: 8px solid rgb(221,157,0);
  border-top: 0.4em solid transparent; border-bottom: 0.4em solid transparent;
}
.kt-modal .folder_back {
  position: absolute; bottom: 0; width: 100%; height: 88%;
  border-radius: 5px; background-color: rgb(221,157,0);
}
.kt-modal .paper {
  position: absolute; bottom: 0; left: 5%; width: 90%; height: 80%;
  border-radius: 4px; transform-origin: bottom center;
  transition: transform 0.35s cubic-bezier(0.175,0.885,0.32,1.275);
  backface-visibility: hidden;
}
.kt-modal .paper-1 { background-color:#a1a1aa; transform:translateZ(-3px); }
.kt-modal .paper-2 { background-color:#d4d4d8; transform:translateZ(-1px); }
.kt-modal .paper-3 { background-color:#e4e4e7; transform:translateZ(1px);  }
.kt-modal .paper-fly {
  position:absolute; bottom:10%; left:10%; width:80%; height:70%;
  background:linear-gradient(135deg,#fff,#f8fafc);
  border:1px solid rgba(0,0,0,0.1); border-radius:3px;
  opacity:0; pointer-events:none; z-index:30;
  box-shadow:0 4px 8px rgba(0,0,0,0.1); will-change:transform,opacity;
  transition:transform 0.85s cubic-bezier(0.2,0.9,0.4,1.2),opacity 0.65s ease-out;
  transform:translateX(0) translateY(0) translateZ(0) rotateX(0) rotateY(0) rotateZ(0);
}
.kt-modal .fly-1{background:linear-gradient(145deg,#fff,#fef9e6)}
.kt-modal .fly-2{background:linear-gradient(145deg,#fffef7,#f5f0e0)}
.kt-modal .fly-3{background:linear-gradient(145deg,#fff,#f0f4fa)}
.kt-modal .folder_front {
  position:absolute; bottom:0; width:100%; height:82%; border-radius:5px;
  background:linear-gradient(-35deg,rgb(255,202,58),rgb(255,215,100));
  transform-origin:bottom center;
  transform:perspective(1000px) translateZ(4px) rotateX(0deg);
  transition:transform 0.35s cubic-bezier(0.175,0.885,0.32,1.275);
  will-change:transform; backface-visibility:hidden;
  border-top:2px solid rgba(255,255,255,0.4); box-shadow:0 2px 6px rgba(0,0,0,0.1);
}
.kt-modal .folder_three {
  position:absolute; display:flex; align-items:center; justify-content:center;
  left:50%; transform:translateX(-50%); bottom:0.25em;
  width:3.6em; height:1.3em; border-radius:4px;
  background:linear-gradient(-35deg,#2563EB,#60a5fa);
}
.kt-modal .folder_four {
  width:2.2em; height:0.25em; border-radius:1em;
  background-color:rgba(255,255,255,0.4);
}
.kt-dz:hover .paper-1,
.kt-dz.kt-dz--over .paper-1 { transform:perspective(1000px) translateZ(-3px) rotateX(-22deg); transition-delay:0.06s; }
.kt-dz:hover .paper-2,
.kt-dz.kt-dz--over .paper-2 { transform:perspective(1000px) translateZ(-1px) rotateX(-32deg); transition-delay:0.04s; }
.kt-dz:hover .paper-3,
.kt-dz.kt-dz--over .paper-3 { transform:perspective(1000px) translateZ(1px)  rotateX(-40deg); transition-delay:0.02s; }
.kt-dz:hover .folder_front,
.kt-dz.kt-dz--over .folder_front { transform:perspective(1000px) translateZ(4px) rotateX(-48deg); }
.kt-modal .button.upload-triggered { filter:drop-shadow(0 0 6px rgba(255,200,50,0.6)); }
.kt-modal__panel {
  position: relative;
  background: #ffffff;
  border-radius: 28px;
  padding: 28px 28px 24px;
  width: min(94vw, 600px);
  box-shadow: 0 40px 100px -20px rgba(10,8,30,0.30), 0 0 0 1px rgba(10,8,30,0.06);
  transform: translateY(14px) scale(0.98);
  transition: transform 0.28s cubic-bezier(.2,.7,.2,1);
}
.kt-modal--open .kt-modal__panel { transform: translateY(0) scale(1); }
.kt-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #ffffff;
  border: 1.5px solid #e5e5ea;
  display: grid;
  place-items: center;
  cursor: pointer;
  color: #888;
  transition: background 0.15s, border-color 0.15s;
  z-index: 2;
}
.kt-modal__close:hover { background: #f5f5f7; border-color: #ccc; }
.kt-dz {
  position: relative;
  border: 2px dashed #c8c8e0;
  border-radius: 18px;
  background: #f7f7fb;
  height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  overflow: hidden;
}
.kt-dz:hover          { border-color: #a0a0d0; background: #f2f2f8; }
.kt-dz.kt-dz--over    { border-color: #6366f1; background: #eeeeff; }
.kt-dz input[type=file] {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
  z-index: 3;
}
.kt-sep {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 20px 0;
}
.kt-sep__line {
  flex: 1;
  height: 1px;
  background: #e5e5ea;
}
.kt-sep__label {
  font-size: 13px;
  font-weight: 500;
  color: #888;
  background: #fff;
  border: 1.5px solid #e5e5ea;
  border-radius: 999px;
  padding: 4px 12px;
  line-height: 1;
  white-space: nowrap;
}
.kt-url-row {
  display: flex;
  align-items: center;
  gap: 0;
  background: #f2f2f7;
  border-radius: 999px;
  padding: 0 6px 0 18px;
  height: 54px;
  margin-bottom: 16px;
}
.kt-url-row svg { flex: 0 0 auto; color: #5058d8; }
.kt-url-row input {
  flex: 1;
  border: none;
  background: transparent;
  outline: none;
  font-size: 15px;
  color: #1c1c1e;
  padding: 0 10px;
  font-family: inherit;
}
.kt-url-row input::placeholder { color: #aaa; }
.kt-url-submit {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #5058d8;
  border: none;
  display: grid;
  place-items: center;
  cursor: pointer;
  flex: 0 0 auto;
  color: #fff;
  transition: background 0.15s;
}
.kt-url-submit:hover { background: #3b43c4; }
