:root{
  --bg:#0a0a0a;
  --panel:#0f0f10;
  --panel2:#0c0c0d;
  --text:#e8e8ea;
  --muted:#a0a0a6;
  --red:#ff2b2b;
  --red2:#ff4d4d;
  --border:rgba(255,255,255,.08);
  --border2:rgba(255,43,43,.25);
  --shadow: 0 0 0 1px var(--border), 0 20px 60px rgba(0,0,0,.55);
  --glow: 0 0 16px rgba(255,43,43,.35), 0 0 60px rgba(255,43,43,.10);
  --radius: 16px;
  --radius2: 22px;
  --mono: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family:var(--sans);
  color:var(--text);
  background:var(--bg);
  line-height:1.6;
}

.skip-link{
  position:absolute;
  left:-9999px;
  top:10px;
  background:var(--panel);
  border:1px solid var(--border2);
  color:var(--text);
  padding:10px 12px;
  border-radius:12px;
  z-index:9999;
}
.skip-link:focus{ left:10px; }

.bg{ position:fixed; inset:0; pointer-events:none; z-index:-1; }
.bg__particles{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  opacity:.6;
  mix-blend-mode: screen;
}
.bg__glow{
  position:absolute; inset:-30%;
  background:
    radial-gradient(60% 40% at 20% 10%, rgba(255,43,43,.20), transparent 55%),
    radial-gradient(55% 45% at 85% 20%, rgba(255,43,43,.10), transparent 60%),
    radial-gradient(65% 55% at 35% 85%, rgba(255,43,43,.10), transparent 60%);
  filter: blur(18px);
  opacity:.9;
}
.bg__scanlines{
  position:absolute; inset:0;
  background: linear-gradient(to bottom, rgba(255,255,255,.03), rgba(255,255,255,0));
  background-size: 100% 3px;
  opacity:.10;
  mix-blend-mode: overlay;
}
.bg__noise{
  position:absolute; inset:0;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='120' height='120' filter='url(%23n)' opacity='.35'/%3E%3C/svg%3E");
  opacity:.05;
  mix-blend-mode: overlay;
}

.container{
  width:min(1100px, calc(100% - 40px));
  margin:0 auto;
}

.topbar{
  position:sticky;
  top:0;
  z-index:50;
  background: rgba(10,10,10,.55);
  backdrop-filter: blur(12px);
  border-bottom:1px solid var(--border);
}
.topbar__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:14px 0;
}
.brand{
  display:flex;
  align-items:center;
  gap:10px;
  user-select:none;
}
.brand__dot{
  width:10px; height:10px; border-radius:999px;
  background:var(--red);
  box-shadow: var(--glow);
}
.brand__text{ font-weight:800; letter-spacing:.16em; }

.nav{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  justify-content:center;
}
.nav__link{
  color:var(--muted);
  text-decoration:none;
  font-size:13px;
  padding:8px 10px;
  border-radius:12px;
}
.nav__link:hover{
  color:var(--text);
  background: rgba(255,255,255,.04);
  box-shadow: 0 0 0 1px rgba(255,255,255,.06) inset;
}
.topbar__cta{ display:flex; gap:10px; }

.btn{
  appearance:none;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  color:var(--text);
  font-weight:700;
  letter-spacing:.02em;
  padding:12px 14px;
  border-radius: 14px;
  text-decoration:none;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  transition: transform .25s cubic-bezier(0.4, 0, 0.2, 1), 
              box-shadow .25s cubic-bezier(0.4, 0, 0.2, 1), 
              border-color .25s cubic-bezier(0.4, 0, 0.2, 1), 
              background .25s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.btn::before{
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,43,43,.1) 0%, transparent 50%);
  opacity: 0;
  transition: opacity .3s ease;
  pointer-events: none;
}
.btn:hover::before{
  opacity: 1;
}
.btn:hover{
  transform: translateY(-2px);
  border-color: rgba(255,43,43,.4);
  box-shadow: 
    0 0 0 1px rgba(255,43,43,.15) inset,
    0 0 16px rgba(255,43,43,.25),
    0 0 32px rgba(255,43,43,.1),
    0 4px 12px rgba(0,0,0,.3);
}
.btn:active{ 
  transform: translateY(0px);
  transition-duration: .1s;
}
.btn--primary{
  background: var(--red);
  border-color: var(--red);
  color: #fff;
  box-shadow: 0 0 0 1px rgba(255,43,43,.20) inset, 0 0 20px rgba(255,43,43,.30), 0 4px 12px rgba(0,0,0,.3);
}
.btn--primary:hover{
  background: var(--red2);
  border-color: var(--red2);
  box-shadow: 0 0 0 1px rgba(255,43,43,.30) inset, 0 0 30px rgba(255,43,43,.40), 0 6px 16px rgba(0,0,0,.4);
  transform: translateY(-2px);
}
.btn--ghost{
  background: rgba(255,255,255,.02);
  border-color: rgba(255,255,255,.12);
}
.btn--block{ width:100%; }
.btn--sm{ padding:9px 12px; font-size:13px; }

.section{ padding:72px 0; }
.section--alt{
  background: linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,0));
  border-top:1px solid var(--border);
  border-bottom:1px solid var(--border);
}
.trust{
  padding: 24px 0 0;
}
.trust__inner{
  border:1px solid var(--border);
  border-radius: var(--radius2);
  background: rgba(255,255,255,.02);
  padding: 16px 18px;
  box-shadow: 0 0 0 1px rgba(255,255,255,.03) inset;
}
.trust__label{
  font-size: 12px;
  letter-spacing:.12em;
  margin-bottom: 10px;
}
.trust__row{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}
.trust__badge{
  border:1px solid rgba(255,43,43,.20);
  background: rgba(255,43,43,.06);
  color: rgba(255,255,255,.78);
  padding:6px 10px;
  border-radius: 999px;
  font-size:12px;
}
.trust__stats{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.trust__stat{
  text-align: center;
  padding: 12px;
  border-radius: 14px;
  border: 1px solid rgba(255,43,43,.15);
  background: rgba(255,43,43,.05);
  box-shadow: 0 0 0 1px rgba(255,43,43,.08) inset;
  transition: all .25s ease;
}
.trust__stat:hover{
  border-color: rgba(255,43,43,.30);
  background: rgba(255,43,43,.10);
  box-shadow: 0 0 0 1px rgba(255,43,43,.15) inset, 0 0 12px rgba(255,43,43,.20);
  transform: translateY(-2px);
}
.trust__stat-value{
  font-size: 28px;
  font-weight: 900;
  color: var(--red2);
  text-shadow: 0 0 12px rgba(255,43,43,.4);
  font-family: var(--mono);
  letter-spacing: .02em;
  margin-bottom: 4px;
}
.trust__stat-label{
  font-size: 11px;
  color: rgba(255,255,255,.70);
  letter-spacing: .06em;
  text-transform: uppercase;
  font-weight: 600;
}
.trust__note{
  margin-top: 10px;
  font-size: 12px;
}
.section__head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:18px;
  margin-bottom:22px;
}
.section__actions{
  display:flex;
  justify-content:center;
  margin-top:18px;
}
.section__sub{ 
  color:var(--muted); 
  margin:0; 
  max-width: 62ch;
  position: relative;
  padding-left: 16px;
  animation: subtitleFadeIn 0.8s ease-out backwards;
}
.section__sub::before{
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 0;
  background: linear-gradient(180deg, var(--red2), transparent);
  box-shadow: 0 0 8px rgba(255,43,43,.5);
  animation: subtitleAccentGrow 0.8s ease-out 0.3s forwards;
}
.section__sub::after{
  content: '';
  position: absolute;
  bottom: -4px;
  left: 16px;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--red2), transparent);
  animation: subtitleUnderline 1s ease-out 0.5s forwards;
}
@keyframes subtitleFadeIn{
  from{
    opacity: 0;
    transform: translateY(8px);
  }
  to{
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes subtitleAccentGrow{
  from{
    height: 0;
    opacity: 0;
  }
  to{
    height: 60%;
    opacity: 1;
  }
}
@keyframes subtitleUnderline{
  from{
    width: 0;
    opacity: 0;
  }
  to{
    width: 40px;
    opacity: 0.6;
  }
}

.hero{
  padding:72px 0 46px;
}
.hero__grid{
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap:24px;
  align-items:start;
}
.hero__right{
  position: relative;
}
.hero__right::before{
  content: '';
  position: absolute;
  left: -12px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(255,43,43,.15) 20%, rgba(255,43,43,.15) 80%, transparent);
  opacity: 0.5;
}
.hero__chart-wrapper{
  position: relative;
  border-radius: var(--radius2);
  overflow: hidden;
  box-shadow: 0 0 0 1px rgba(255,43,43,.15) inset, 0 0 30px rgba(255,43,43,.20), 0 4px 24px rgba(0,0,0,.4);
  background: linear-gradient(135deg, rgba(10,10,15,.3) 0%, rgba(5,5,10,.2) 100%);
}
.hero__chart{
  position: relative;
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(10,10,15,.2) 0%, rgba(5,5,10,.1) 100%);
  min-height: 300px;
}
.hero__chart-image{
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.85;
}
.hero__chart-overlay{
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.1) 0%, rgba(0,0,0,.3) 100%);
  pointer-events: none;
}
.terminal--overlay{
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  max-width: calc(100% - 32px);
  background: rgba(10,10,10,.92);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,43,43,.30);
  box-shadow: 0 0 20px rgba(255,43,43,.25), 0 4px 16px rgba(0,0,0,.5);
  z-index: 5;
}
.ascii{
  margin:0 0 18px;
  color:var(--red);
  text-shadow: 0 0 18px rgba(255,43,43,.45);
  line-height:1.08;
  font-weight:800;
  font-size: 14px;
  white-space:pre;
  overflow:auto;
  padding:14px 16px;
  border-radius: var(--radius2);
  border:1px solid rgba(255,43,43,.20);
  background: rgba(255,255,255,.015);
  box-shadow: 0 0 0 1px rgba(255,43,43,.10) inset;
}
.h1{
  font-size: clamp(28px, 3.2vw, 44px);
  line-height:1.12;
  margin: 0 0 12px;
  font-family: var(--mono);
}
.h1__accent{ color:var(--red2); text-shadow: 0 0 14px rgba(255,43,43,.35); }
.subhead{ 
  color:var(--muted); 
  margin: 0 0 18px; 
  max-width: 64ch;
  position: relative;
  padding-left: 16px;
  animation: subtitleFadeIn 0.8s ease-out backwards;
}
.subhead::before{
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 0;
  background: linear-gradient(180deg, var(--red2), transparent);
  box-shadow: 0 0 8px rgba(255,43,43,.5);
  animation: subtitleAccentGrow 0.8s ease-out 0.3s forwards;
}
.subhead::after{
  content: '';
  position: absolute;
  bottom: -4px;
  left: 16px;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--red2), transparent);
  animation: subtitleUnderline 1s ease-out 0.5s forwards;
}
.hero__actions{ display:flex; gap:12px; flex-wrap:wrap; margin-bottom:18px; }

.hero__stats{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  margin-top: 10px;
}
.stat{
  padding:12px 14px;
  border-radius: 16px;
  border:1px solid var(--border);
  background: rgba(255,255,255,.02);
  min-width: 150px;
}
.stat__k{ font-weight:800; color:var(--red2); }
.stat__v{ color:var(--muted); font-size:12px; margin-top:2px; }

.fineprint{ color:rgba(255,255,255,.55); font-size:12px; margin:10px 0 0; }
.fineprint.center{ text-align:center; }
.mono{ font-family:var(--mono); }
.dim{ color:rgba(255,255,255,.55); }
.em{ color:var(--text); font-weight:700; }
.center{ text-align:center; }

.terminal{
  border-radius: var(--radius2);
  border:1px solid rgba(255,43,43,.22);
  background: linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,.01));
  box-shadow: var(--shadow), var(--glow);
  overflow:hidden;
}
.terminal--overlay{
  border-radius: 12px;
}
.terminal__bar{
  display:flex;
  align-items:center;
  gap:8px;
  padding:10px 12px;
  background: rgba(0,0,0,.35);
  border-bottom:1px solid rgba(255,255,255,.06);
}
.terminal__pill{ width:10px; height:10px; border-radius:999px; opacity:.85; }
.terminal__pill--red{ background:#ff5b5b; }
.terminal__pill--amber{ background:#ffcf5b; }
.terminal__pill--green{ background:#63ff8f; }
.terminal__title{
  margin-left:8px;
  font-size:12px;
  letter-spacing:.02em;
  color:rgba(255,255,255,.72);
}
.terminal__body{ padding:14px 14px 16px; font-size:12.5px; }
.terminal__body--chart{
  padding: 0;
  overflow: hidden;
  background: rgba(0,0,0,.3);
}
.terminal__body--stream{
  position: relative;
  padding: 0;
  overflow: hidden;
  background: rgba(0,0,0,.4);
  min-height: 230px;
  max-height: 230px;
  display: flex;
  flex-direction: column;
}
.terminal__chart{
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}
.terminal__chart--bg{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .16;
  filter: saturate(1.05) contrast(1.05) blur(.3px);
  transform: scale(1.02);
  pointer-events: none;
}
.terminal__stream{
  position: relative;
  z-index: 1;
  padding: 12px 12px 8px;
  font-family: var(--mono);
  font-size: 12px;
  line-height: 1.45;
  overflow-y: auto;
  overflow-x: hidden;
  flex: 1;
  min-height: 0;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE and Edge */
  -webkit-overflow-scrolling: touch; /* iOS smooth scrolling */
}
.terminal__stream::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
  width: 0;
  height: 0;
}
.terminal__line{
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin: 6px 0;
  opacity: 0;
  transform: translateY(6px);
  animation: termLineIn .24s ease-out forwards;
}
.terminal__time{
  color: rgba(255,255,255,.50);
  flex: 0 0 auto;
  font-variant-numeric: tabular-nums;
}
.terminal__tag{
  flex: 0 0 auto;
  font-weight: 900;
  letter-spacing: .08em;
  font-size: 11px;
  padding: 2px 6px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  color: rgba(255,255,255,.82);
}
.terminal__tag--buy{
  border-color: rgba(120,255,170,.35);
  background: rgba(120,255,170,.10);
  color: rgba(120,255,170,.95);
}
.terminal__tag--sell{
  border-color: rgba(255,43,43,.40);
  background: rgba(255,43,43,.10);
  color: var(--red2);
}
.terminal__tag--bos,
.terminal__tag--mss,
.terminal__tag--sweep{
  border-color: rgba(255,205,120,.35);
  background: rgba(255,205,120,.10);
  color: rgba(255,205,120,.95);
}
.terminal__tag--ok{
  border-color: rgba(120,255,170,.30);
  background: rgba(120,255,170,.08);
  color: rgba(120,255,170,.90);
}
.terminal__tag--warn{
  border-color: rgba(255,205,120,.30);
  background: rgba(255,205,120,.08);
  color: rgba(255,205,120,.92);
}
.terminal__tag--err{
  border-color: rgba(255,43,43,.35);
  background: rgba(255,43,43,.08);
  color: rgba(255,120,120,.95);
}
.terminal__msg{
  color: rgba(255,255,255,.85);
}
.terminal__msg .kw{
  color: var(--text);
  font-weight: 800;
}
.terminal__msg .num{
  color: rgba(255,255,255,.92);
  font-variant-numeric: tabular-nums;
}
.terminal__msg .accent{
  color: var(--red2);
  font-weight: 900;
}
.terminal__cursorline{
  position: relative;
  z-index: 1;
  padding: 0 12px 12px;
  opacity: .9;
}
.terminal__body--stream::after{
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(120% 60% at 50% 0%, rgba(255,43,43,.10), transparent 55%);
  opacity: .6;
}
@keyframes termLineIn{
  to{ opacity: 1; transform: translateY(0); }
}
.termline{ margin:6px 0; }
.prompt{ color:var(--red2); font-weight:800; }
.path{ color:rgba(255,255,255,.75); }
.cmd{ color:rgba(255,255,255,.88); }
.ok{ color: rgba(120,255,170,.95); }
.warn{ color: rgba(255,205,120,.95); }
.cursor{
  display:inline-block;
  transform: translateY(1px);
  animation: blink 1.1s steps(2, start) infinite;
  color: var(--red2);
}
@keyframes blink{ to { opacity:0; } }

.hero__badge{
  margin-top:18px;
  border-radius: 16px;
  border:1px solid rgba(255,43,43,.20);
  background: rgba(255,255,255,.02);
  padding:12px 14px;
  box-shadow: 0 0 0 1px rgba(255,43,43,.10) inset, 0 0 12px rgba(255,43,43,.10);
  transition: all .25s ease;
}
.hero__badge:hover{
  border-color: rgba(255,43,43,.30);
  box-shadow: 0 0 0 1px rgba(255,43,43,.15) inset, 0 0 20px rgba(255,43,43,.20);
}
.badge__label{ color:rgba(255,255,255,.55); font-size:12px; }
.badge__value{ display:block; margin-top:4px; font-weight:700; }
.hero__compatibility{
  margin-top: 18px;
}
.compatibility-badge{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,43,43,.25);
  background: rgba(255,43,43,.08);
  color: rgba(255,255,255,.85);
  font-size: 13px;
  font-weight: 700;
  transition: all .25s ease;
}
.compatibility-badge:hover{
  border-color: rgba(255,43,43,.4);
  background: rgba(255,43,43,.12);
  box-shadow: 0 0 12px rgba(255,43,43,.2);
}
.compatibility-badge__icon{
  width: 16px;
  height: 16px;
  stroke: var(--red2);
  fill: none;
  stroke-width: 2;
}
.compatibility-badge__text{
  letter-spacing: .02em;
}

.grid3{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:16px;
}
.card, .product, .price, .panel{
  border-radius: var(--radius2);
  border:1px solid var(--border);
  background: rgba(255,255,255,.02);
  padding:18px 18px 16px;
  box-shadow: 0 0 0 1px rgba(255,255,255,.03) inset;
  position: relative;
  overflow: hidden;
}
.product{
  display: flex;
  flex-direction: column;
}
.card::before, .product::before, .price::before, .panel::before{
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,43,43,.03) 0%, transparent 50%, rgba(255,43,43,.03) 100%);
  opacity: 0;
  transition: opacity .3s ease;
  pointer-events: none;
  z-index: 0;
}
.card:hover::before, .product:hover::before, .price:hover::before, .panel:hover::before{
  opacity: 1;
}
.card > *, .product > *, .price > *, .panel > *{
  position: relative;
  z-index: 1;
}
.card:hover, .product:hover, .price:hover{
  border-color: rgba(255,43,43,.50);
  box-shadow: 
    0 0 0 2px rgba(255,43,43,.25) inset, 
    0 0 30px rgba(255,43,43,.35),
    0 0 60px rgba(255,43,43,.15),
    0 6px 32px rgba(0,0,0,.5);
  transform: translateY(-4px) scale(1.02);
}
.card, .product, .price{ 
  transition: transform .25s cubic-bezier(0.4, 0, 0.2, 1), 
              box-shadow .25s cubic-bezier(0.4, 0, 0.2, 1), 
              border-color .25s cubic-bezier(0.4, 0, 0.2, 1);
  animation: cardFadeIn .6s ease-out backwards;
}
.product:nth-child(1){ animation-delay: .1s; }
.product:nth-child(2){ animation-delay: .2s; }
.product:nth-child(3){ animation-delay: .3s; }

@keyframes cardFadeIn{
  from{
    opacity: 0;
    transform: translateY(20px);
  }
  to{
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce){
  .card, .product, .price{
    animation: none;
    transition: none;
  }
  .product__image{
    transition: none;
  }
  .product:hover .product__image{
    transform: none;
  }
  .product:hover, .card:hover, .price:hover{
    transform: none;
  }
  .btn{
    transition: none;
  }
  .btn:hover{
    transform: none;
  }
  .product__badge::before{
    display: none;
  }
  .section__sub,
  .subhead{
    animation: none;
  }
  .section__sub::before,
  .section__sub::after,
  .subhead::before,
  .subhead::after{
    animation: none;
    opacity: 0.5;
  }
  .h2{
    animation: none;
  }
  .h2::after{
    animation: none;
    width: 50px;
    opacity: 0.6;
  }
}

.h2{
  margin:0;
  font-size: clamp(20px, 2.2vw, 28px);
  letter-spacing:.02em;
  position: relative;
  display: inline-block;
  animation: h2FadeIn 0.8s ease-out backwards;
  font-family: var(--mono);
}
.h2::after{
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--red2), rgba(255,43,43,.3), transparent);
  box-shadow: 0 0 8px rgba(255,43,43,.5);
  animation: h2Underline 1.2s ease-out 0.4s forwards;
}
.h2:hover::after{
  width: 100%;
  animation: h2UnderlineHover 0.4s ease-out forwards;
}
@keyframes h2FadeIn{
  from{
    opacity: 0;
    transform: translateY(-10px);
  }
  to{
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes h2Underline{
  from{
    width: 0;
    opacity: 0;
  }
  to{
    width: 50px;
    opacity: 1;
  }
}
@keyframes h2UnderlineHover{
  from{
    width: 50px;
  }
  to{
    width: 100%;
  }
}
.h3{ margin:0 0 8px; font-size: 16px; font-family: var(--mono); }
.p{ margin:0; color:rgba(255,255,255,.70); }
.tagrow{ display:flex; flex-wrap:wrap; gap:8px; margin-top:12px; }
.tag{
  border:1px solid rgba(255,43,43,.20);
  background: rgba(255,43,43,.06);
  color: rgba(255,255,255,.78);
  padding:6px 10px;
  border-radius: 999px;
  font-size:12px;
}

.product__top{
  display:flex;
  align-items:center;
  justify-content:flex-start;
  gap:12px;
  margin-bottom:10px;
}
.product__media{
  border-radius: 14px;
  overflow: hidden;
  border:1px solid rgba(255,255,255,.08);
  background: rgba(0,0,0,.22);
  margin-bottom: 12px;
  box-shadow: 0 0 0 1px rgba(255,255,255,.03) inset;
  position: relative;
  transition: border-color .25s ease, box-shadow .25s ease;
}
.product:hover .product__media{
  border-color: rgba(255,43,43,.25);
  box-shadow: 0 0 0 1px rgba(255,43,43,.10) inset, 0 0 12px rgba(255,43,43,.15);
}
.product__image{
  display:block;
  width:100%;
  height:auto;
  cursor: pointer;
  transition: transform .4s cubic-bezier(0.4, 0, 0.2, 1), opacity .3s ease;
}
.product__image:hover{
  transform: scale(1.02);
  opacity: 0.9;
}
.product__media-note{
  font-size: 11px;
  text-align: center;
  margin-top: 6px;
}
.product__name{ font-weight:800; letter-spacing:.02em; font-family: var(--mono); }
.product__badge{
  font-size:12px;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid rgba(255,43,43,.45);
  background: rgba(10,10,15,.85);
  backdrop-filter: blur(8px);
  color:rgba(255,255,255,.95);
  box-shadow: 0 0 0 1px rgba(255,43,43,.15) inset, 0 2px 8px rgba(0,0,0,.4);
  transition: all .25s ease;
  position: relative;
  overflow: hidden;
  font-weight: 600;
}
.product__badge--corner{
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 10;
  font-size: 11px;
  padding: 5px 10px;
  white-space: nowrap;
}
.product__tag{
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 10;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
  padding: 4px 8px;
  border-radius: 999px;
  white-space: nowrap;
  font-family: var(--mono);
}
.product__tag--new{
  background: rgba(10,10,15,.9);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(120,255,170,.5);
  color: rgba(120,255,170,1);
  box-shadow: 0 0 0 1px rgba(120,255,170,.2) inset, 0 2px 8px rgba(0,0,0,.4), 0 0 12px rgba(120,255,170,.3);
}
.product__tag--bestseller{
  background: rgba(10,10,15,.9);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,43,43,.5);
  color: var(--red2);
  box-shadow: 0 0 0 1px rgba(255,43,43,.2) inset, 0 2px 8px rgba(0,0,0,.4), 0 0 12px rgba(255,43,43,.3);
}
.product__tag--v6{
  background: rgba(10,10,15,.9);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,205,120,.5);
  color: rgba(255,205,120,1);
  box-shadow: 0 0 0 1px rgba(255,205,120,.2) inset, 0 2px 8px rgba(0,0,0,.4), 0 0 12px rgba(255,205,120,.3);
}
.product__badge::before{
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.1), transparent);
  transform: translateX(-100%);
  transition: transform .6s ease;
}
.product:hover .product__badge{
  border-color: rgba(255,43,43,.4);
  background: rgba(255,43,43,.12);
  box-shadow: 0 0 0 1px rgba(255,43,43,.12) inset, 0 0 8px rgba(255,43,43,.2);
}
.product:hover .product__badge::before{
  transform: translateX(100%);
}
.product .btn{
  margin-top: auto;
  margin-bottom: 0;
}

.list{
  margin:12px 0 0;
  padding-left: 18px;
  color: rgba(255,255,255,.72);
}
.list li{ margin: 8px 0; }
.list--icon{
  padding-left: 0;
  list-style: none;
}
.list--icon li{
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 10px 0;
  padding-left: 0;
}
.list__icon{
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  stroke: var(--red2);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.testimonial{
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.testimonial__quote{
  font-style: italic;
  color: rgba(255,255,255,.85);
  line-height: 1.6;
  margin-bottom: 16px;
  position: relative;
  padding-left: 20px;
}
.testimonial__quote::before{
  content: '"';
  position: absolute;
  left: 0;
  top: -4px;
  font-size: 32px;
  color: var(--red2);
  opacity: .5;
  font-family: serif;
}
.testimonial__author{
  margin-top: auto;
}
.testimonial__name{
  font-weight: 800;
  color: var(--text);
  margin-bottom: 2px;
}
.testimonial__role{
  font-size: 12px;
}

.split{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:16px;
  align-items:start;
}
.panel__title{
  font-weight:800;
  letter-spacing:.08em;
  color: rgba(255,255,255,.78);
  margin-bottom:10px;
}
.chipgrid{
  margin-top:14px;
  display:grid;
  grid-template-columns: 1fr;
  gap:10px;
}
.chip{
  border-radius: 16px;
  border:1px solid rgba(255,255,255,.08);
  background: rgba(0,0,0,.18);
  padding:12px 12px;
}
.chip__k{ font-weight:800; color:var(--red2); }
.chip__v{ color: rgba(255,255,255,.68); font-size:12px; margin-top:4px; }

.callout{
  border-radius: var(--radius2);
  border:1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.015);
  padding:16px 16px;
}
.callout__k{ color: rgba(255,255,255,.60); font-size:12px; }
.callout__v{ margin-top:6px; font-weight:800; letter-spacing:.01em; }

.price{ position:relative; }
.price__head{ margin-bottom:10px; }
.price__name{ font-weight:800; letter-spacing:.08em; }
.price__value{
  margin-top:8px;
  font-weight:900;
  font-size: 30px;
  color: var(--red2);
  text-shadow: 0 0 14px rgba(255,43,43,.35);
}
.price__unit{ font-size: 12px; color: rgba(255,255,255,.62); font-weight:700; margin-left:6px; }
.price__note{
  margin: 10px 0 12px;
  color: rgba(255,255,255,.62);
  font-size: 12px;
}
.price--featured{
  border-color: rgba(255,43,43,.45);
  box-shadow: 0 0 0 1px rgba(255,43,43,.12) inset, var(--glow);
  background: linear-gradient(180deg, rgba(255,43,43,.08), rgba(255,255,255,.02));
}
.supportline{
  margin: 18px 0 0;
  display:flex;
  gap:10px;
  align-items:center;
  justify-content:center;
  font-size: 13px;
}
.link{
  color: var(--red2);
  text-decoration:none;
  font-weight:700;
}
.link:hover{ text-decoration:underline; }
.ribbon{
  position:absolute;
  top:14px;
  right:14px;
  font-size:12px;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid rgba(255,43,43,.35);
  background: rgba(255,43,43,.12);
  box-shadow: 0 0 0 1px rgba(255,43,43,.10) inset;
}

.timeline{
  position:relative;
  margin-top: 6px;
  padding-left: 18px;
}
.timeline::before{
  content:"";
  position:absolute;
  top:0; bottom:0;
  left:8px;
  width:2px;
  background: linear-gradient(180deg, rgba(255,43,43,.35), rgba(255,255,255,.08));
}
.milestone{
  position:relative;
  display:grid;
  grid-template-columns: 18px 1fr;
  gap:14px;
  padding: 14px 0;
}
.milestone__dot{
  width:14px; height:14px; border-radius:999px;
  background: var(--red);
  box-shadow: var(--glow);
  margin-top: 4px;
}
.milestone__content{
  border-radius: var(--radius2);
  border:1px solid var(--border);
  background: rgba(255,255,255,.02);
  padding: 14px 14px;
}
.milestone__date{ color: rgba(255,255,255,.55); font-size:12px; letter-spacing:.10em; }
.milestone__title{ font-weight:900; margin-top:6px; }
.milestone__desc{ margin-top:6px; color: rgba(255,255,255,.70); }

/* Roadmap v2 */
.timeline-centered{
  position:relative;
  padding: 6px 0;
  margin-top: 8px;
}
.timeline-centered::before{
  content:"";
  position:absolute;
  left:50%;
  top:0;
  bottom:0;
  width:2px;
  transform: translateX(-50%);
  background: linear-gradient(180deg, rgba(255,43,43,.6), rgba(255,255,255,.08));
}
.timeline-item{
  position:relative;
  width:50%;
  padding: 12px 0;
}
.timeline-item--left{ left:0; padding-right:32px; text-align:right; }
.timeline-item--right{ left:50%; padding-left:32px; text-align:left; }
.timeline-item__dot{
  position:absolute;
  top:22px;
  width:14px;
  height:14px;
  border-radius:999px;
  background: var(--red);
  box-shadow: var(--glow);
}
.timeline-item--left .timeline-item__dot{ right:-7px; }
.timeline-item--right .timeline-item__dot{ left:-7px; }
.timeline-item__card{
  display:inline-block;
  max-width: 420px;
  text-align:left;
  border-radius: var(--radius2);
  border:1px solid var(--border);
  background: rgba(255,255,255,.02);
  padding:16px 16px 14px;
  box-shadow: 0 0 0 1px rgba(255,255,255,.03) inset;
  position:relative;
  animation: roadmapFloat 4.5s ease-in-out infinite;
}
.timeline-item--right .timeline-item__card{ text-align:left; }
.timeline-item--left .timeline-item__card{ text-align:left; }
.timeline-item__card::before{
  content:"";
  position:absolute;
  top:14px;
  width:16px;
  height:2px;
  background: linear-gradient(90deg, rgba(255,43,43,.5), rgba(255,43,43,.1));
}
.timeline-item--left .timeline-item__card::before{ right:-16px; }
.timeline-item--right .timeline-item__card::before{ left:-16px; }
.timeline-item__meta{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  margin-bottom:10px;
}
.timeline-item__date{
  font-size:12px;
  letter-spacing:.10em;
  color: rgba(255,255,255,.60);
}
.timeline-item__chip{
  font-size:11px;
  padding:4px 8px;
  border-radius:999px;
  border:1px solid rgba(255,43,43,.25);
  background: rgba(255,43,43,.08);
  color: rgba(255,255,255,.85);
}
.timeline-item__title{
  font-weight:900;
  letter-spacing:.01em;
}
.timeline-item__desc{
  margin-top:6px;
  color: rgba(255,255,255,.70);
}
@keyframes roadmapFloat{
  0%, 100%{ transform: translateY(0px); }
  50%{ transform: translateY(-6px); }
}

.faq{
  display:grid;
  gap:10px;
}
.faq__item{
  border-radius: var(--radius2);
  border:1px solid var(--border);
  background: rgba(255,255,255,.02);
  padding: 0;
  overflow:hidden;
}
.faq__q{
  cursor:pointer;
  list-style:none;
  padding: 14px 16px;
  font-weight:900;
  position:relative;
}
.faq__q::-webkit-details-marker{ display:none; }
.faq__q::after{
  content:"+";
  position:absolute;
  right:16px; top: 14px;
  color: var(--red2);
  font-weight:900;
}
details[open] > .faq__q::after{ content:"–"; }
.faq__a{
  padding: 0 16px 14px;
  color: rgba(255,255,255,.72);
}
details[open]{ border-color: rgba(255,43,43,.25); box-shadow: 0 0 0 1px rgba(255,43,43,.10) inset; }

.footer{
  padding: 54px 0 40px;
  border-top:1px solid var(--border);
}
.footer__grid{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 18px;
  align-items:start;
}
.footer__logo{
  font-weight:900;
  letter-spacing:.16em;
  margin-bottom:10px;
}
.footer__meta{ margin-top: 14px; display:flex; gap:18px; flex-wrap:wrap; font-size:12px; }
.footer__legal{ margin-top: 10px; font-size: 12px; }

.newsletter{
  border-radius: var(--radius2);
  border:1px solid rgba(255,43,43,.18);
  background: rgba(255,255,255,.02);
  padding: 18px 18px;
  box-shadow: 0 0 0 1px rgba(255,43,43,.06) inset;
}
.newsletter__label{ display:block; font-weight:900; letter-spacing:.08em; margin-bottom:10px; }
.newsletter__row{ display:flex; gap:10px; }
.input{
  flex:1;
  padding: 12px 12px;
  border-radius: 14px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.30);
  color: var(--text);
  outline:none;
}
.input::placeholder{ color: rgba(255,255,255,.45); }
.input:focus{
  border-color: rgba(255,43,43,.35);
  box-shadow: 0 0 0 3px rgba(255,43,43,.15);
}

.toast{
  position:fixed;
  bottom:16px;
  left:50%;
  transform: translateX(-50%);
  background: rgba(10,10,10,.85);
  border:1px solid rgba(255,43,43,.25);
  box-shadow: var(--shadow), var(--glow);
  padding:10px 12px;
  border-radius: 14px;
  color: rgba(255,255,255,.85);
  font-size:12px;
  opacity:0;
  pointer-events:none;
  transition: opacity .18s ease, transform .18s ease;
}

/* Checkout pages */
.checkout__head{ margin-bottom: 18px; }
.checkout__grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:16px;
  align-items:start;
}
.checkout__hint{ margin-top: 12px; font-size: 12px; }
.checkoutform{
  margin-top: 12px;
  display:grid;
  gap:10px;
}
.checkoutform__label{
  font-size: 12px;
  color: rgba(255,255,255,.62);
  font-weight: 800;
  letter-spacing: .06em;
  margin-top: 6px;
}
.toast.show{
  opacity:1;
  transform: translateX(-50%) translateY(-2px);
}

/* Modals */
.modal{
  position:fixed;
  inset:0;
  z-index:1000;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:20px;
  opacity:0;
  pointer-events:none;
  transition: opacity .2s ease;
}
.modal[aria-hidden="false"]{
  opacity:1;
  pointer-events:auto;
}
.modal__backdrop{
  position:absolute;
  inset:0;
  background: rgba(0,0,0,.85);
  backdrop-filter: blur(8px);
}
.modal__card{
  position:relative;
  z-index:1;
  width:min(90vw, 640px);
  max-height:90vh;
  overflow-y:auto;
  border-radius: var(--radius2);
  border:1px solid rgba(255,43,43,.35);
  background: linear-gradient(180deg, rgba(15,15,16,.98), rgba(10,10,10,.98));
  box-shadow: var(--shadow), var(--glow);
  padding:28px 24px;
  transform: scale(0.95) translateY(20px);
  transition: transform .25s ease;
}
.modal[aria-hidden="false"] .modal__card{
  transform: scale(1) translateY(0);
}
.modal__close{
  position:absolute;
  top:16px;
  right:16px;
  width:32px;
  height:32px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.15);
  background: rgba(0,0,0,.4);
  color:var(--text);
  font-size:24px;
  line-height:1;
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:center;
  transition: background .12s ease, border-color .12s ease;
}
.modal__close:hover{
  background: rgba(255,43,43,.15);
  border-color: rgba(255,43,43,.35);
}
.modal__header{
  display:flex;
  align-items:flex-start;
  gap:14px;
  margin-bottom:18px;
}
.modal__icon{
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(255,43,43,.1);
  border: 1px solid rgba(255,43,43,.25);
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}
.modal__icon::before{
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,43,43,.2) 0%, transparent 100%);
  opacity: 0;
  transition: opacity .3s ease;
}
.modal__icon svg{
  width: 20px;
  height: 20px;
  stroke: var(--red2);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  position: relative;
  z-index: 1;
}
.modal__icon:hover::before{
  opacity: 1;
}
.modal__title{
  margin:0 0 4px;
  font-size:24px;
  font-weight:900;
  letter-spacing:.02em;
}
.modal__subtitle{
  margin:0;
  color:var(--muted);
  font-size:14px;
}
.modal__chart{
  border-radius:14px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.08);
  background: rgba(0,0,0,.22);
  margin-bottom:18px;
}
.modal__chart img{
  display:block;
  width:100%;
  height:auto;
}
.modal__desc{
  margin:0 0 18px;
  color: rgba(255,255,255,.75);
  line-height:1.6;
}
.modal__features{
  margin:0 0 24px;
  padding:0;
  list-style:none;
}
.modal__features li{
  position:relative;
  padding-left:24px;
  margin-bottom:10px;
  color: rgba(255,255,255,.72);
  line-height:1.5;
}
.modal__features li::before{
  content:"";
  position:absolute;
  left:0;
  top:8px;
  width:8px;
  height:8px;
  border-radius:999px;
  background:var(--red2);
  box-shadow: 0 0 8px rgba(255,43,43,.5);
}

/* Lightbox */
.lightbox{
  position:fixed;
  inset:0;
  z-index:2000;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:20px;
  opacity:0;
  pointer-events:none;
  transition: opacity .2s ease;
}
.lightbox[aria-hidden="false"]{
  opacity:1;
  pointer-events:auto;
}
.lightbox__backdrop{
  position:absolute;
  inset:0;
  background: rgba(0,0,0,.95);
  backdrop-filter: blur(8px);
}
.lightbox__content{
  position:relative;
  z-index:1;
  max-width:95vw;
  max-height:95vh;
  display:flex;
  align-items:center;
  justify-content:center;
  transform: scale(0.9);
  transition: transform .25s ease;
}
.lightbox[aria-hidden="false"] .lightbox__content{
  transform: scale(1);
}
.lightbox__close{
  position:absolute;
  top:-40px;
  right:0;
  width:36px;
  height:36px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.2);
  background: rgba(0,0,0,.6);
  color:var(--text);
  font-size:24px;
  line-height:1;
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:center;
  transition: background .12s ease, border-color .12s ease;
  z-index:2;
}
.lightbox__close:hover{
  background: rgba(255,43,43,.2);
  border-color: rgba(255,43,43,.4);
}
.lightbox__image{
  max-width:100%;
  max-height:95vh;
  width:auto;
  height:auto;
  border-radius: var(--radius2);
  border:1px solid rgba(255,43,43,.25);
  box-shadow: var(--shadow), var(--glow);
  object-fit:contain;
}

/* a11y */
.sr-only{
  position:absolute !important;
  width:1px !important;
  height:1px !important;
  padding:0 !important;
  margin:-1px !important;
  overflow:hidden !important;
  clip:rect(0,0,0,0) !important;
  white-space:nowrap !important;
  border:0 !important;
}

@media (max-width: 980px){
  .nav{ display:none; }
  .hero__grid{ grid-template-columns: 1fr; }
  .trust__stats{ grid-template-columns: repeat(2, 1fr); }
  .split{ grid-template-columns: 1fr; }
  .footer__grid{ grid-template-columns: 1fr; }
  .checkout__grid{ grid-template-columns: 1fr; }
}

@media (max-width: 760px){
  .grid3{ grid-template-columns: 1fr; }
  .topbar__inner{ align-items:flex-start; }
  .topbar__cta{ flex-direction:column; width: 170px; }
  .ascii{ font-size: 12.5px; }
  .trust__stats{ grid-template-columns: 1fr; }
  .hero__chart-wrapper{
    margin-bottom: 16px;
  }
  .hero__chart{
    aspect-ratio: 16/9;
    min-height: 250px;
  }
  .hero__chart-wrapper{
    margin-bottom: 16px;
  }
  .hero__chart{
    aspect-ratio: 16/9;
    min-height: 250px;
  }
  .terminal--overlay{
    position: relative !important;
    bottom: auto !important;
    left: auto !important;
    right: auto !important;
    max-width: 100% !important;
    margin: 16px 0 0 !important;
    border-radius: var(--radius2);
    width: 100%;
  }
  .terminal__body--stream{
    min-height: 180px;
    max-height: 200px;
  }
  .terminal__stream{
    min-height: 150px;
    font-size: 11px;
    padding: 10px;
  }
  .terminal__line{
    margin: 4px 0;
    gap: 8px;
  }
  .timeline-centered::before{ left:16px; transform:none; }
  .timeline-item{ width:100%; padding-left:32px; padding-right:0; text-align:left; }
  .timeline-item--left, .timeline-item--right{ left:0; }
  .timeline-item__dot{ left:9px; right:auto; }
  .timeline-item__card::before{ left:-16px; right:auto; }
  .modal__card{ width:95vw; padding:20px 16px; }
  .modal__title{ font-size:20px; }
  .modal__header{ gap:12px; }
  .modal__icon{ font-size:28px; }
}

@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior:auto; }
  .cursor{ animation:none; }
  .btn, .card, .product, .price{ transition:none; }
  .timeline-item__card{ animation:none; }
  .lightbox__content{ transition:none; }
  .terminal__line{
    animation: none;
    opacity: 1;
    transform: none;
  }
  .section__sub,
  .subhead{
    animation: none;
  }
  .section__sub::before,
  .section__sub::after,
  .subhead::before,
  .subhead::after{
    animation: none;
    opacity: 0.5;
  }
  .h2{
    animation: none;
  }
  .h2::after{
    animation: none;
    width: 50px;
    opacity: 0.6;
  }
}

