﻿:root{
  --bg:#000000;
  --panel:#070707;
  --panel-2:#0b0b0b;
  --text:#f3f5f7;
  --muted:#a9b0b7;
  --line:#1a1a1a;

  --red:#ff1e3a;
  --red-2:#ff3d55;
  --shadow: 0 0 22px rgba(255, 30, 58, .35);
  --shadow-strong: 0 0 38px rgba(255, 30, 58, .55);

  --radius: 18px;
  --radius-2: 22px;
  --max: 1140px;
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family: "Space Grotesk", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--text);
  background:var(--bg);
  overflow-x:hidden;
}

a{ color:inherit; text-decoration:none; }
button, input, select, textarea{ font:inherit; color:inherit; }
::selection{ background: rgba(255,30,58,.35); }

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

.section{ padding: 72px 0; }
.section-head{ margin-bottom: 28px; }
.section-title{
  font-size: clamp(28px, 3vw, 40px);
  line-height:1.05;
  letter-spacing: -0.02em;
  margin:0 0 10px 0;
  text-shadow: 0 0 18px rgba(255,30,58,.18);
}
.section-subtitle{
  margin:0;
  color:var(--muted);
  max-width: 760px;
}


#bg{
  position:fixed;
  inset:0;
  z-index:-2;
}


.bg-shield{
  position:fixed;
  inset:0;
  z-index:-1;
  pointer-events:none;

  
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  background: rgba(0,0,0,0.62);

  -webkit-mask-image: linear-gradient(90deg,
    transparent 0%,
    transparent 12%,
    black 22%,
    black 78%,
    transparent 88%,
    transparent 100%
  );
  mask-image: linear-gradient(90deg,
    transparent 0%,
    transparent 12%,
    black 22%,
    black 78%,
    transparent 88%,
    transparent 100%
  );
}


body::before{
  content:"";
  position:fixed;
  inset:-20vmax;
  background:
    radial-gradient(55vmax 55vmax at 20% 10%, rgba(255,30,58,.16), transparent 55%),
    radial-gradient(45vmax 45vmax at 80% 0%, rgba(255,30,58,.10), transparent 55%),
    radial-gradient(55vmax 55vmax at 50% 110%, rgba(255,30,58,.08), transparent 60%);
  z-index:-3;
}


.site-header{
  position:sticky;
  top:0;
  z-index:50;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom:1px solid #0f0f0f;
  box-shadow: 0 10px 30px rgba(0,0,0,.35);
}
.site-header::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:-22px;
  height: 22px;
  background: linear-gradient(to bottom, rgba(0,0,0,0.55), rgba(0,0,0,0));
  pointer-events:none;
}
.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 16px 0;
  gap: 18px;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
  font-weight:700;
  letter-spacing:0.02em;
}
.brand.small{ opacity:.95; }
.brand-text{ font-size: 18px; }
.brand-mark{
  width: 14px;
  height: 14px;
  border-radius: 5px;
  background: var(--red);
  box-shadow: var(--shadow-strong);
}

.nav{
  display:flex;
  gap: 18px;
  align-items:center;
}
.nav-link{
  color: var(--muted);
  font-weight:600;
  font-size: 14px;
  letter-spacing:0.02em;
  padding: 10px 12px;
  border-radius: 12px;
  transition: transform .18s ease, color .18s ease, box-shadow .18s ease, background .18s ease;
}
.nav-link:hover{
  color: var(--text);
  background:#0a0a0a;
  box-shadow: 0 0 0 1px #171717, var(--shadow);
  transform: translateY(-1px);
}

.header-cta{
  display:flex;
  gap: 10px;
  align-items:center;
}
.burger{
  display:none;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border:1px solid #1a1a1a;
  background:#060606;
  box-shadow: 0 0 0 1px #0f0f0f;
  cursor:pointer;
}
.burger span{
  display:block;
  height:2px;
  width: 18px;
  background: var(--text);
  margin: 4px auto;
  border-radius:999px;
  box-shadow: 0 0 10px rgba(255,30,58,.22);
}


.mobile-nav{
  display:none;
  border-top:1px solid #0f0f0f;
  background:#000;
}
.mobile-nav-inner{
  padding: 16px 0 20px 0;
  display:grid;
  gap: 6px;
}
.mobile-actions{
  display:flex;
  gap:10px;
  margin-top: 10px;
}


.btn{
  border-radius: 16px;
  padding: 12px 16px;
  border:1px solid transparent;
  cursor:pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease, color .18s ease;
  user-select:none;
}
.btn:active{ transform: translateY(0px) scale(.99); }

.btn-primary{
  background: var(--red);
  color:#090909;
  font-weight:800;
  letter-spacing:.02em;
  box-shadow: var(--shadow);
}
.btn-primary:hover{
  background: var(--red-2);
  box-shadow: var(--shadow-strong);
  transform: translateY(-1px);
}
.btn-ghost{
  background: #050505;
  border-color:#1a1a1a;
  color: var(--text);
  box-shadow: 0 0 0 1px #0f0f0f;
}
.btn-ghost:hover{
  border-color: #2a2a2a;
  box-shadow: 0 0 0 1px #1a1a1a, var(--shadow);
  transform: translateY(-1px);
}
.btn-block{ width:100%; }


.hero{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 22px;
  padding-top: 36px;
}
.kicker{
  display:inline-flex;
  align-items:center;
  gap: 10px;
  color: var(--muted);
  font-weight:700;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: 12px;
}
.kicker::before{
  content:"";
  width: 28px;
  height: 2px;
  background: var(--red);
  box-shadow: var(--shadow);
  border-radius:999px;
}
.hero-title{
  margin: 14px 0 14px 0;
  font-size: clamp(32px, 4.2vw, 52px);
  line-height: 1.03;
  letter-spacing: -0.03em;
}
.hero-sub{
  color: var(--muted);
  font-size: 16px;
  line-height:1.6;
  max-width: 720px;
  margin:0 0 18px 0;
}
.hero-actions{ display:flex; gap: 12px; flex-wrap:wrap; }
.badges{
  display:flex;
  gap: 10px;
  flex-wrap:wrap;
  margin-top: 18px;
}
.badge{
  display:flex;
  align-items:center;
  gap:10px;
  padding: 10px 12px;
  border-radius: 999px;
  background: #060606;
  border: 1px solid #141414;
  color: var(--muted);
  font-weight:600;
  font-size: 13px;
}
.badge .dot{
  width: 8px; height: 8px;
  border-radius: 999px;
  background: var(--red);
  box-shadow: var(--shadow-strong);
}
.neon{
  color: var(--text);
  text-shadow: 0 0 12px rgba(255,30,58,.45), 0 0 32px rgba(255,30,58,.22);
}
.neon-soft{
  color: var(--text);
  text-shadow: 0 0 12px rgba(255,30,58,.22);
}


.hero-right{
  display:flex;
  align-items:center;
  justify-content:center;
  min-height: 340px;
}

.services-block{
  position: relative;
  margin: 10px 0 14px 0;
  max-width: 760px;
}
.services-title{
  font-family: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.services-strip{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}
.service-chip{
  display:inline-flex;
  align-items:center;
  gap: 10px;
  min-height: 42px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.14);
  color: rgba(255,255,255,0.92);
  font-size: 14px;
  line-height: 1;
  white-space: nowrap;
  user-select:none;
  -webkit-user-select:none;
  -webkit-tap-highlight-color: transparent;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, background .18s ease, color .18s ease;
}
.service-chip.subtle{
  padding: 10px 14px;
  color: var(--muted);
  border-style: dashed;
}
.service-chip:hover{
  transform: translateY(-2px);
  border-color: rgba(255,30,58,0.65);
  background: rgba(255,30,58,0.10);
  box-shadow: 0 0 0 1px rgba(255,30,58,0.18), var(--shadow);
}
.service-icon{
  width: 18px;
  height: 18px;
  display:block;
  flex: 0 0 18px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: .92;
  transition: filter .18s ease, opacity .18s ease;
}
.service-chip:hover .service-icon,
.service-chip:focus-within .service-icon{
  
  filter: brightness(0) saturate(100%) invert(16%) sepia(88%) saturate(7440%) hue-rotate(345deg) brightness(106%) contrast(118%);
  opacity: 1;
}

.monogram{
  position:relative;
  font-weight: 800;
  font-size: clamp(190px, 26vw, 340px);
  line-height: .9;
  letter-spacing: -0.08em;
  color: transparent;
  -webkit-text-stroke: 2px rgba(255,30,58,0.85);
  text-shadow: 0 0 18px rgba(255,30,58,.18);
  user-select:none;
  transition: text-shadow .6s ease, -webkit-text-stroke-color .6s ease;
}
.monogram::before{
  content:"R";
  position:absolute;
  inset:0;
  color: transparent;
  background:
    repeating-linear-gradient(135deg,
      rgba(255,30,58,0.00) 0 12px,
      rgba(255,30,58,0.55) 12px 14px,
      rgba(255,30,58,0.00) 14px 26px
    );
  -webkit-background-clip:text;
  background-clip:text;
  opacity: .06;
  filter: drop-shadow(0 0 16px rgba(255,30,58,.30));
  transition: opacity .6s ease, filter .6s ease;
}
.hero-right:hover .monogram{
  text-shadow: 0 0 28px rgba(255,30,58,.30), 0 0 72px rgba(255,30,58,.16);
  -webkit-text-stroke-color: rgba(255,30,58,0.95);
}
.hero-right:hover .monogram::before{
  opacity: .22;
  filter: drop-shadow(0 0 22px rgba(255,30,58,.42));
}

.monogram-sub{
  margin-top: 10px;
  text-align:center;
  color: var(--muted);
  font-family: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
}


.frame{
  background: #050505;
  border: 1px solid #1a1a1a;
  border-radius: var(--radius-2);
  padding: 18px;
  box-shadow: 0 0 0 1px #0f0f0f, var(--shadow);
  position:relative;
  overflow:hidden;
}
.frame::after{
  content:"";
  position:absolute;
  inset:0;
  border-radius: inherit;
  pointer-events:none;
  box-shadow: inset 0 0 0 1px rgba(255,30,58,.16);
}
.frame-title{
  font-family: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 12px;
  letter-spacing:.08em;
  color: var(--muted);
  text-transform: uppercase;
  margin-bottom: 14px;
}
.frame-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.frame-item{
  background: #070707;
  border:1px solid #171717;
  border-radius: 16px;
  padding: 12px;
}
.frame-label{
  color: var(--muted);
  font-size: 12px;
  letter-spacing:.06em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.frame-value{
  font-weight:800;
  letter-spacing:.02em;
  font-size: 18px;
  text-shadow: 0 0 14px rgba(255,30,58,.18);
}
.frame-note{
  margin-top: 14px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}


.card{
  background: var(--panel);
  border: 1px solid #171717;
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: 0 0 0 1px #0f0f0f;
}
.card-tight{ padding: 16px; }
.card-title{
  margin: 0 0 8px 0;
  font-size: 18px;
  letter-spacing:-0.01em;
}
.card-text{ margin:0; color: var(--muted); line-height:1.6; }

.grid-3{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}


.gauges{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  align-items:stretch;
}
.gauge-head{
  display:flex;
  justify-content:space-between;
  align-items:flex-end;
  gap: 12px;
  margin-bottom: 8px;
}
.gauge-title{ font-weight:800; letter-spacing:.02em; }
.gauge-caption{ color: var(--muted); font-size: 13px; }
.gauge-body{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 14px;
}
.meter{ width: 260px; max-width: 100%; }
.meter-track{
  fill:none;
  stroke: #1a1a1a;
  stroke-width: 10;
  stroke-linecap: round;
}
.meter-fill{
  fill:none;
  stroke: var(--red);
  stroke-width: 10;
  stroke-linecap: round;
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  filter: drop-shadow(0 0 8px rgba(255,30,58,.35));
}
.meter-needle circle{
  fill: var(--red);
  filter: drop-shadow(0 0 10px rgba(255,30,58,.35));
}
.meter-needle path{
  stroke: var(--text);
  stroke-width: 3.5;
  stroke-linecap: round;
  filter: drop-shadow(0 0 10px rgba(255,30,58,.25));
}


.gauge--slow .meter-fill{
  stroke: rgba(200,205,212,.55);
  filter: drop-shadow(0 0 8px rgba(255,255,255,.10));
}
.gauge--slow .meter-needle circle{
  fill: rgba(200,205,212,.9);
  filter: drop-shadow(0 0 10px rgba(255,255,255,.10));
}
.gauge--slow .meter-needle path{
  stroke: rgba(225,230,236,.9);
  filter: drop-shadow(0 0 8px rgba(255,255,255,.08));
}
.gauge--slow .gauge-value .num{
  text-shadow: 0 0 14px rgba(255,255,255,.10);
}

.fineprint{
  margin-top: 14px;
  color: var(--muted);
  line-height:1.6;
  font-size: 13px;
  border-left: 2px solid rgba(255,30,58,.55);
  padding-left: 12px;
}
.meter-label{
  fill: var(--muted);
  font-size: 12px;
  letter-spacing: .1em;
  font-family: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
}
.gauge-value{
  min-width: 140px;
  text-align:right;
  display:flex;
  align-items:baseline;
  justify-content:flex-end;
  gap: 8px;
}
.gauge-value .num{
  font-weight:900;
  font-size: 44px;
  letter-spacing:-0.03em;
  text-shadow: 0 0 18px rgba(255,30,58,.24);
}
.gauge-value .suffix{
  color: var(--muted);
  font-weight:700;
  letter-spacing:.06em;
  text-transform: uppercase;
  font-size: 12px;
  font-family: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
}
.note{
  margin-top: 14px;
}
.note-title{
  font-weight:900;
  letter-spacing:.02em;
  margin-bottom: 6px;
}
.note-text{ color: var(--muted); line-height:1.6; }


.product-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.product-subsection-title{
  grid-column: 1 / -1;
  margin-top: 2px;
  margin-bottom: 2px;
  padding: 10px 14px;
  border-radius: 14px;
  border: 1px solid #1b1b1b;
  background: linear-gradient(180deg, rgba(255,30,58,0.08), rgba(0,0,0,0.0));
  color: #ffe7eb;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: 13px;
  text-align: center;
  box-shadow: 0 0 0 1px #0f0f0f, var(--shadow);
}
.product{
  display:flex;
  flex-direction:column;
  gap: 10px;
  padding: 18px;
}
.product.card{ padding: 18px; }
.product-media{ margin-bottom: 2px; }
.product-top{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap: 12px;
}
.product-kicker{
  margin-top: 6px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
}
.price-tag{
  flex: 0 0 auto;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(255,30,58,0.10);
  border: 1px solid rgba(255,30,58,0.28);
  box-shadow: 0 0 0 1px rgba(0,0,0,0.35), var(--shadow);
  font-weight: 950;
  letter-spacing: -0.02em;
  line-height: 1;
  white-space: nowrap;
}
.product-list{
  margin: 0;
  padding: 0;
  list-style:none;
  display:grid;
  gap: 8px;
  color: var(--text);
}
.product-list li{
  position:relative;
  padding-left: 18px;
  color: rgba(255,255,255,0.88);
  font-size: 13px;
  line-height: 1.45;
}
.product-list li::before{
  content:"";
  position:absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 2px;
  border-radius: 999px;
  background: rgba(255,30,58,0.85);
  box-shadow: 0 0 12px rgba(255,30,58,.30);
}
.product-list--compact{
  margin-top: 10px;
  gap: 6px;
}
.product-foot{
  margin-top:auto;
  display:grid;
  gap: 8px;
}

/* Subscription (wide card without photo) */
.product--subscription{
  padding: 22px;
  position: relative;
  overflow: hidden;
}
.product--subscription::before{
  content:"";
  position:absolute;
  inset:-2px;
  background:
    radial-gradient(60% 120% at 18% 20%, rgba(255,30,58,0.18), transparent 55%),
    radial-gradient(55% 120% at 80% 0%, rgba(255,30,58,0.12), transparent 55%);
  pointer-events:none;
  opacity: .9;
}
.subscription-wide{
  position: relative;
  display:grid;
  gap: 16px;
}
.subscription-head{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap: 14px;
}
.subscription-pills{
  display:flex;
  flex-wrap:wrap;
  gap: 8px;
  justify-content:flex-end;
  align-items:flex-start;
  max-width: 420px;
}
.subscription-compact .product-desc{
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  max-width: 880px;
}
.subscription-foot{
  display:flex;
  gap: 10px;
  align-items:center;
  flex-wrap:wrap;
  padding-top: 4px;
}
.subscription-foot .tiny-note{
  flex: 1 1 320px;
}

@media (max-width: 860px){
  .subscription-head{ flex-direction:column; align-items:flex-start; }
  .subscription-pills{ justify-content:flex-start; max-width:none; }
}
.lift{
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.lift:hover{
  transform: translateY(-6px);
  border-color: #2a2a2a;
  box-shadow: 0 0 0 1px #151515, var(--shadow);
}
.product-media{ margin-bottom: 12px; }
.product-placeholder{
  height: 160px;
  border-radius: 16px;
  border: 1px solid #171717;
  background: #060606;
  position:relative;
  overflow:hidden;
  display:flex;
  align-items:center;
  justify-content:center;
}
.product-placeholder::before{
  content:"";
  position:absolute;
  inset:-50%;
  background: linear-gradient(90deg, transparent, rgba(255,30,58,.18), transparent);
  transform: rotate(18deg);
  animation: shimmer 2.6s linear infinite;
}
@keyframes shimmer{
  0%{ transform: translateX(-30%) rotate(18deg); }
  100%{ transform: translateX(30%) rotate(18deg); }
}
.ph-line{
  width: 70%;
  height: 8px;
  border-radius: 999px;
  background: #101010;
  margin: 6px 0;
  box-shadow: inset 0 0 0 1px #151515;
}
.product-title{
  margin: 0 0 6px 0;
  font-size: 20px;
  letter-spacing:-0.02em;
}
.product-desc{
  margin:0 0 12px 0;
  color: var(--muted);
  line-height:1.6;
  font-size: 13px;
}
.product-meta{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
  margin-bottom: 14px;
}
.pill{
  font-size: 12px;
  color: var(--muted);
  border:1px solid #191919;
  border-radius: 999px;
  padding: 8px 10px;
  background:#060606;
  letter-spacing:.02em;
}
.below-products{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
  flex-wrap:wrap;
  margin-top: 16px;
}
.fineprint{ color: var(--muted); font-size: 13px; line-height:1.5; }


.site-footer{
  padding: 38px 0 48px 0;
  border-top: 1px solid #0f0f0f;
}
.footer-inner{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap: 18px;
  flex-wrap:wrap;
}
.footer-note{ margin-top: 10px; color: var(--muted); font-size: 13px; }
.footer-right{
  display:flex;
  gap: 28px;
  flex-wrap:wrap;
}
.footer-title{
  font-weight:900;
  letter-spacing:.02em;
  margin-bottom: 10px;
}
.footer-link{
  display:block;
  color: var(--muted);
  padding: 6px 0;
  transition: color .18s ease, text-shadow .18s ease, transform .18s ease;
}
.footer-link:hover{
  color: var(--text);
  text-shadow: 0 0 14px rgba(255,30,58,.18);
  transform: translateY(-1px);
}
.as-btn{
  background:none;
  border:none;
  text-align:left;
  cursor:pointer;
  font:inherit;
}


.modal{
  position:fixed;
  inset:0;
  display:none;
  z-index: 80;
}
.modal[aria-hidden="false"]{ display:block; }
.modal-backdrop{
  position:absolute;
  inset:0;
  background: #000;
}
.modal-panel{
  position:absolute;
  left:50%;
  top:50%;
  transform: translate(-50%, -50%);
  width: min(720px, calc(100% - 28px));
  background: #050505;
  border: 1px solid #222;
  border-radius: var(--radius-2);
  box-shadow: 0 0 0 1px #0f0f0f, var(--shadow-strong);
  padding: 18px;
}
.modal-panel-compact{
  width: min(560px, calc(100% - 28px));
}
.modal-head{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap: 16px;
  margin-bottom: 12px;
}
.modal-title{
  font-size: 20px;
  font-weight:900;
  letter-spacing:-0.01em;
}
.modal-sub{
  margin-top: 6px;
  color: var(--muted);
  font-size: 13px;
  line-height:1.5;
}
.icon-btn{
  width: 40px;
  height: 40px;
  border-radius: 14px;
  border:1px solid #1a1a1a;
  background: #060606;
  cursor:pointer;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.icon-btn:hover{
  border-color:#2a2a2a;
  box-shadow: var(--shadow);
  transform: translateY(-1px);
}

.form{ display:grid; gap: 12px; }
.form-row{ display:grid; gap: 12px; }
.form-row .field{ width:100%; }
.field{ display:grid; gap: 6px; }
.field-label{
  color: var(--muted);
  font-size: 12px;
  letter-spacing:.08em;
  text-transform: uppercase;
  font-family: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
}
.field-hint{
  color: var(--muted);
  font-size: 12px;
  line-height:1.4;
}
.input{
  width:100%;
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid #1a1a1a;
  background: #070707;
  outline:none;
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}
.input:focus{
  border-color: #2a2a2a;
  box-shadow: 0 0 0 1px #1a1a1a, var(--shadow);
}
.input.invalid{
  border-color: var(--red);
  box-shadow: var(--shadow);
}
.textarea{ resize: vertical; min-height: 110px; }

.form-actions{
  display:flex;
  justify-content:flex-end;
  gap: 10px;
  flex-wrap:wrap;
  margin-top: 6px;
}
.form-foot{
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
  line-height:1.4;
}
.muted{ color: var(--muted); }


.stepper{
  display:grid;
  grid-template-columns: 44px 1fr 44px;
  gap: 8px;
  align-items:center;
}
.stepper-btn{
  width: 44px;
  height: 44px;
  border-radius: 16px;
  border: 1px solid #1a1a1a;
  background: #060606;
  cursor:pointer;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.stepper-btn:hover{
  border-color:#2a2a2a;
  box-shadow: var(--shadow);
  transform: translateY(-1px);
}
.stepper-input{
  text-align:center;
  font-weight:900;
  letter-spacing:.02em;
}


.checkline{
  display:flex;
  gap:10px;
  align-items:flex-start;
  color: var(--muted);
  font-size: 13px;
  line-height:1.4;
  background:#060606;
  border:1px solid #171717;
  border-radius: 16px;
  padding: 12px 14px;
}
.checkbox{
  margin-top: 2px;
  accent-color: var(--red);
}


.accordion details{
  border:1px solid #171717;
  border-radius: 16px;
  background:#070707;
  overflow:hidden;
}
.accordion{ display:grid; gap: 10px; }
.accordion summary{
  cursor:pointer;
  list-style:none;
  padding: 14px 14px;
  font-weight:900;
  letter-spacing:.01em;
}
.accordion summary::-webkit-details-marker{ display:none; }
.acc-body{
  padding: 0 14px 14px 14px;
  color: var(--muted);
  line-height:1.6;
}
.list{ margin: 0; padding-left: 18px; }
.list li{ margin: 6px 0; }


.support-fab{
  position:fixed;
  right: 18px;
  bottom: 18px;
  z-index: 90;
  display:flex;
  align-items:center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 999px;
  border:1px solid #1a1a1a;
  background:#060606;
  color: var(--text);
  cursor:pointer;
  box-shadow: 0 0 0 1px #0f0f0f, var(--shadow);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.modal-open .support-fab{
  z-index: 70;
}
.modal-open .support-panel{
  z-index: 70;
}
.support-fab:hover{
  transform: translateY(-2px);
  border-color:#2a2a2a;
  box-shadow: var(--shadow-strong);
}
.support-fab-dot{
  width: 10px; height:10px;
  border-radius: 999px;
  background: var(--red);
  box-shadow: var(--shadow-strong);
}
.support-fab-text{
  font-weight:900;
  letter-spacing:.02em;
  font-size: 14px;
}

.support-panel{
  position:fixed;
  right: 18px;
  bottom: 78px;
  width: min(420px, calc(100% - 36px));
  z-index: 95;
  background: #050505;
  border:1px solid #222;
  border-radius: var(--radius-2);
  box-shadow: 0 0 0 1px #0f0f0f, var(--shadow-strong);
  transform: translateY(14px);
  opacity:0;
  pointer-events:none;
  transition: transform .22s ease, opacity .22s ease;
}
.support-panel[aria-hidden="false"]{
  opacity:1;
  transform: translateY(0px);
  pointer-events:auto;
}
.support-head{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap: 12px;
  padding: 16px 16px 10px 16px;
  border-bottom: 1px solid #121212;
}
.support-title{
  font-weight:900;
  font-size: 18px;
  letter-spacing:-0.01em;
}
.support-sub{
  margin-top: 6px;
  color: var(--muted);
  font-size: 12px;
  line-height:1.5;
}
.support-form{
  padding: 14px 16px 16px 16px;
}


.toast{
  position:fixed;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%) translateY(14px);
  z-index: 120;
  opacity:0;
  pointer-events:none;
  transition: transform .22s ease, opacity .22s ease;
}
.toast[aria-hidden="false"]{
  opacity:1;
  transform: translateX(-50%) translateY(0);
}
.toast-inner{
  background:#050505;
  border:1px solid #222;
  border-radius: 999px;
  box-shadow: 0 0 0 1px #0f0f0f, var(--shadow);
  padding: 12px 14px;
  display:flex;
  gap: 10px;
  align-items:baseline;
}
.toast-title{
  font-weight:900;
  letter-spacing:.02em;
}
.toast-text{
  color: var(--muted);
  font-size: 13px;
}


.reveal{
  opacity:0;
  transform: translateY(12px);
  transition: opacity .8s ease, transform .8s ease;
}
.reveal.is-visible{
  opacity:1;
  transform: translateY(0);
}


@media (max-width: 980px){
  .hero{ grid-template-columns: 1fr; }
  .hero-right{ display:none; }
  .nav, .header-cta{ display:none; }
  .burger{ display:inline-grid; place-items:center; }
  .mobile-nav{ display:block; }
  .mobile-nav[aria-hidden="true"]{ display:none; }
  .grid-3{ grid-template-columns: 1fr; }
  .gauges{ grid-template-columns: 1fr; }
  .product-grid{ grid-template-columns: 1fr; }
  .gauge-head{
    flex-direction:column;
    align-items:center;
    justify-content:center;
    text-align:center;
    gap: 6px;
    min-height: 72px;
  }
  .gauge-body{
    flex-direction:column;
    align-items:center;
    justify-content:center;
  }
  .meter{
    margin: 0 auto;
  }
  .gauge-value{
    width:100%;
    justify-content:center;
    text-align:center;
  }
  .frame-grid{ grid-template-columns: 1fr; }
  .modal-panel{
    top: auto;
    bottom: 10px;
    transform: translateX(-50%);
    width: min(720px, calc(100% - 20px));
    max-height: calc(100vh - 20px);
    overflow: auto;
  }
}


@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior:auto; }
  .reveal{ transition:none; }
  .lift, .btn, .nav-link, .support-panel, .support-fab, .toast{ transition:none; }
  .product-placeholder::before{ animation:none; }
}

.btn, .nav-link{ -webkit-tap-highlight-color: transparent; }
.btn{ user-select:none; -webkit-user-select:none; }



.product--wide{
  grid-column: 1 / -1;
}
.product-wide-body{
  display:flex;
  align-items:stretch;
  justify-content:space-between;
  gap: 18px;
}
.product-wide-actions{
  min-width: 240px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  gap: 8px;
}
.product-placeholder--wide{
  height: 120px;
}
.sub-link{
  display:inline-block;
  margin-top: 10px;
  font-size: 12px;
  color: var(--muted);
  text-decoration:none;
  letter-spacing:.02em;
}
.sub-link:hover{
  color: var(--text);
  text-shadow: 0 0 12px rgba(255,30,58,.20);
}
.tiny-note{
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}


@media (max-width: 860px){
  .product-wide-body{ flex-direction:column; }
  .product-wide-actions{ min-width: 0; }
  .header-cta{ gap: 10px; flex-wrap: wrap; justify-content:flex-end; }
}

.product-image-box{
  height:160px;
  border-radius:16px;
  border:1px solid #171717;
  background:#060606;
  overflow:hidden;
  display:flex;
  align-items:center;
  justify-content:center;
  position:relative;
}
.product-image-box::after{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(120% 120% at 50% 0%, rgba(255,30,58,0.10), rgba(0,0,0,0) 55%),
    linear-gradient(to bottom, rgba(0,0,0,0), rgba(0,0,0,0.35));
  pointer-events:none;
}
.product-image{
  width:100%;
  height:100%;
  display:block;
  object-fit:cover;
}
.product-media--router .product-image-box{
  display:grid;
  place-items:center;
}
.router-mark{
  font-family: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 800;
  letter-spacing: .03em;
  text-transform: uppercase;
  text-align: center;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,30,58,0.92);
  text-shadow: 0 0 18px rgba(255,30,58,.26);
  user-select:none;
}
.product-wide{
  display:flex;
  gap:18px;
  align-items:stretch;
}
.product-wide-photo-box{
  width:168px;
  height:168px;
  flex:0 0 168px;
  border-radius:16px;
  border:1px solid #171717;
  background:#060606;
  overflow:hidden;
}
.product-wide-photo{
  width:100%;
  height:100%;
  display:block;
  object-fit:cover;
}
.product-wide-content{
  flex:1;
  display:flex;
  flex-direction:column;
  gap:12px;
}
.product-wide-footer{
  margin-top:auto;
  display:grid;
  gap:8px;
  max-width:320px;
}

@media (max-width: 860px){
  .product-wide{
    flex-direction:column;
  }
  .product-wide-photo-box{
    width:100%;
    height:220px;
    flex:0 0 auto;
  }
  .product-wide-footer{
    max-width:none;
  }
  .product-subsection-title{
    font-size: 12px;
    letter-spacing: .06em;
  }
  .router-mark{
    font-size: clamp(20px, 7vw, 28px);
  }
}

