/* =============================================
   DIGITAL KOZAK — Production Stylesheet
   Based on mockup-10-final
   ============================================= */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:         #07090f;
  --bg2:        #0b0e17;
  --bg3:        #0e1220;
  --card:       #10151f;
  --card-h:     #141c2c;
  --red:        #e8192c;
  --red2:       #ff3348;
  --red-dark:   #c41020;
  --rdim:       rgba(232,25,44,0.09);
  --rdim2:      rgba(232,25,44,0.18);
  --rborder:    rgba(232,25,44,0.22);
  --white:      #eef0f6;
  --muted:      #47566a;
  --muted2:     #8a96a8;
  --border:     rgba(255,255,255,0.056);
  --border2:    rgba(255,255,255,0.10);
  --green:      #4ade80;
  --blue:       #79b8ff;
  --orange:     #f8a657;
  --mono:       'JetBrains Mono', monospace;
  --sans:       'Outfit', sans-serif;
  --r:          14px;
  --r-sm:       8px;
  --r-pill:     100px;
  --max:        1100px;
}

html { scroll-behavior: smooth; }
body { font-family: var(--sans); background: var(--bg); color: var(--white); overflow-x: hidden; -webkit-font-smoothing: antialiased; }

/* =============================================
   GLOBAL GRID + SCAN
   ============================================= */
.page-grid {
  position: fixed; inset: 0; pointer-events: none; z-index: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 56px 56px;
}
.page-grid::after {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(232,25,44,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(232,25,44,0.04) 1px, transparent 1px);
  background-size: 280px 280px;
}
.page-scan {
  position: fixed; left: 0; right: 0; top: 0; height: 2px;
  background: linear-gradient(90deg, transparent 0%, rgba(232,25,44,0.2) 20%, rgba(232,25,44,0.75) 50%, rgba(232,25,44,0.2) 80%, transparent 100%);
  box-shadow: 0 0 28px rgba(232,25,44,0.45), 0 0 6px rgba(232,25,44,0.7);
  animation: scanpage 10s linear infinite; pointer-events: none; z-index: 1;
  will-change: transform;
}
@keyframes scanpage {
  0%   { transform: translateY(-10px); opacity: 0; }
  4%   { opacity: 1; }
  96%  { opacity: 1; }
  100% { transform: translateY(100vh); opacity: 0; }
}
.glow-tl {
  position: fixed; top: -200px; left: -150px; width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(232,25,44,0.07) 0%, transparent 65%);
  pointer-events: none; z-index: 0;
}
.glow-br {
  position: fixed; bottom: -200px; right: -150px; width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(232,25,44,0.05) 0%, transparent 65%);
  pointer-events: none; z-index: 0;
}

/* =============================================
   NAV — CODING STYLE
   ============================================= */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  height: 64px; border-bottom: 1px solid var(--border);
  background: rgba(7,9,15,0.90); backdrop-filter: blur(24px) saturate(1.6);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 52px;
}
.logo { display: flex; align-items: center; gap: 11px; text-decoration: none; }
.logo-mark {
  width: 34px; height: 34px; background: var(--red); border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--mono); font-weight: 700; font-size: 13px; color: white; letter-spacing: -0.5px;
  box-shadow: 0 0 20px rgba(232,25,44,0.55), inset 0 1px 0 rgba(255,255,255,0.12);
  flex-shrink: 0; overflow: hidden;
}
.logo-mark img { width: 100%; height: 100%; object-fit: cover; }
.logo-name { font-weight: 800; font-size: 16px; letter-spacing: -0.3px; color: var(--white); }
.logo-name b { color: var(--red); font-weight: 800; }

/* Coding-style nav links */
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  display: inline-flex; align-items: center; gap: 5px;
  color: var(--muted2); font-size: 13px; font-weight: 500; text-decoration: none;
  font-family: var(--mono); letter-spacing: 0.01em;
  padding: 5px 12px; border-radius: var(--r-sm);
  transition: all 0.2s; position: relative;
}
.nav-links a .nav-prefix { color: var(--muted); transition: color 0.2s; font-size: 11px; }
.nav-links a:hover { color: var(--white); background: rgba(255,255,255,0.04); }
.nav-links a:hover .nav-prefix { color: var(--red); }
.nav-links a::after {
  content: ''; position: absolute; bottom: 3px; left: 12px; right: 12px; height: 1px;
  background: var(--red); transform: scaleX(0); transition: transform 0.25s;
}
.nav-links a:hover::after { transform: scaleX(1); }

.nav-right { display: flex; align-items: center; gap: 14px; }
.nav-status {
  display: flex; align-items: center; gap: 7px;
  font-family: var(--mono); font-size: 11px; color: var(--green); letter-spacing: 0.04em;
  background: rgba(74,222,128,0.06); border: 1px solid rgba(74,222,128,0.18);
  padding: 6px 13px; border-radius: var(--r-sm);
}
.sdot { width: 6px; height: 6px; border-radius: 50%; background: var(--green); animation: sdot 2.5s ease-in-out infinite; }
@keyframes sdot { 0%,100%{opacity:1;} 50%{opacity:0.25;} }
.nav-cta {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--red); color: white; padding: 11px 18px; border-radius: var(--r-sm);
  font-size: 13px; font-weight: 700; text-decoration: none;
  transition: all 0.2s; font-family: inherit;
  box-shadow: 0 0 16px rgba(232,25,44,0.4);
}
.nav-cta:hover { background: var(--red2); transform: translateY(-1px); box-shadow: 0 0 28px rgba(232,25,44,0.6); }

/* Mobile nav */
.nav-toggle { display: none; flex-direction: column; gap: 4px; padding: 8px; background: none; border: none; cursor: pointer; min-width: 44px; min-height: 44px; align-items: center; justify-content: center; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--white); border-radius: 2px; transition: all 0.3s; }
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(4px, 4px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(4px, -4px); }

.nav-drawer {
  position: fixed; top: 0; right: -100%; width: 100%; max-width: 320px; height: 100vh;
  background: rgba(7,9,15,0.98); border-left: 1px solid var(--border);
  padding: 80px 24px 24px; z-index: 501; transition: right 0.3s ease;
  display: flex; flex-direction: column;
}
.nav-drawer.open { right: 0; }
.drawer-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 32px; }
.drawer-close { background: none; border: none; color: var(--muted2); font-size: 28px; cursor: pointer; padding: 0; }
.drawer-links { display: flex; flex-direction: column; gap: 8px; }
.drawer-links a { color: var(--muted2); font-family: var(--mono); font-size: 14px; padding: 14px 20px; border-radius: var(--r-sm); transition: all 0.2s; }
.drawer-links a:hover { color: var(--white); background: rgba(255,255,255,0.04); }
.drawer-cta { margin-top: auto; padding-top: 24px; }
.drawer-cta .nav-cta { width: 100%; justify-content: center; }

.nav-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.5); opacity: 0; visibility: hidden;
  transition: all 0.3s; z-index: 400;
}
.nav-overlay.active { opacity: 1; visibility: visible; }

/* =============================================
   HERO
   ============================================= */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  padding: 120px 52px 90px; position: relative; overflow: hidden;
}
.hero-inner {
  position: relative; z-index: 2;
  max-width: var(--max); margin: 0 auto; width: 100%;
  display: grid; grid-template-columns: 1fr 460px; gap: 80px; align-items: center;
}

/* Decorative floating code snippets */
.hero-code-float {
  position: absolute; font-family: var(--mono); font-size: 11px; color: rgba(255,255,255,0.04);
  pointer-events: none; white-space: pre; line-height: 1.7; z-index: 1;
}
.hcf1 { top: 15%; left: 2%; }
.hcf2 { bottom: 10%; right: 1%; text-align: right; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--rdim); border: 1px solid var(--rborder);
  border-radius: var(--r-pill); padding: 7px 16px;
  font-family: var(--mono); font-size: 12px; font-weight: 500; color: var(--red2);
  letter-spacing: 0.04em; margin-bottom: 30px;
}
.badge-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--red); animation: bdot 2s ease-in-out infinite; }
@keyframes bdot { 0%,100%{opacity:1;box-shadow:0 0 0 0 rgba(232,25,44,0.5);} 50%{opacity:0.6;box-shadow:0 0 0 6px rgba(232,25,44,0);} }

h1 {
  font-size: clamp(46px, 5.5vw, 78px); font-weight: 900;
  line-height: 1.04; letter-spacing: -3px; margin-bottom: 22px; color: var(--white);
}
h1 .red { color: var(--red); }
h1 .outline { -webkit-text-stroke: 1.5px rgba(255,255,255,0.5); color: transparent; }

.hero-sub {
  font-size: 17px; line-height: 1.75; color: var(--muted2);
  max-width: 480px; margin-bottom: 40px; font-weight: 400;
}

.hero-ctas { display: flex; gap: 14px; align-items: center; margin-bottom: 52px; }
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--red); color: white; padding: 15px 30px; border-radius: var(--r-sm);
  font-size: 15px; font-weight: 700; text-decoration: none; border: none; cursor: pointer;
  transition: all 0.2s; font-family: inherit; white-space: nowrap;
  box-shadow: 0 4px 24px rgba(232,25,44,0.38);
}
.btn-primary:hover { background: var(--red2); transform: translateY(-2px); box-shadow: 0 10px 40px rgba(232,25,44,0.5); }
.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--muted2); padding: 15px 26px; border-radius: var(--r-sm);
  font-size: 15px; font-weight: 600; text-decoration: none;
  border: 1px solid var(--border2); transition: all 0.2s; white-space: nowrap;
}
.btn-secondary:hover { color: var(--white); border-color: rgba(255,255,255,0.22); background: rgba(255,255,255,0.04); }

/* Hero stats */
.hero-stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; border-top: 1px solid var(--border2); padding-top: 36px; }
.hstat { text-align: center; }
.hstat-n { font-size: 38px; font-weight: 900; letter-spacing: -2px; line-height: 1; color: var(--white); }
.hstat-n .acc { color: var(--red); }
.hstat-l { font-size: 11px; color: var(--muted); margin-top: 5px; font-family: var(--mono); letter-spacing: 0.06em; }

/* =============================================
   TERMINAL PANEL (hero right)
   ============================================= */
.terminal {
  background: var(--card); border: 1px solid var(--border2); border-radius: var(--r);
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0,0,0,0.5), 0 0 0 1px var(--border), inset 0 1px 0 rgba(255,255,255,0.04);
  position: relative;
}
.terminal::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--red-dark), var(--red2), transparent);
}
.term-bar {
  display: flex; align-items: center; gap: 7px;
  padding: 13px 18px; background: rgba(255,255,255,0.025); border-bottom: 1px solid var(--border);
}
.tdot { width: 11px; height: 11px; border-radius: 50%; }
.td-r { background: #ff5f57; } .td-y { background: #febc2e; } .td-g { background: #28c840; }
.term-filename { font-family: var(--mono); font-size: 11px; color: var(--muted); margin-left: 10px; }
.term-body { padding: 20px 22px; font-family: var(--mono); font-size: 12.5px; line-height: 2.0; }
.tc  { color: var(--muted); }
.tk  { color: var(--blue); }
.tv  { color: var(--green); }
.ts  { color: var(--orange); }
.tr  { color: var(--red2); }
.tp  { color: #d2a8ff; }
.ind { padding-left: 18px; }
.cursor { display: inline-block; width: 9px; height: 15px; background: var(--green); animation: cur 1s step-end infinite; vertical-align: middle; margin-left: 2px; }
@keyframes cur { 0%,100%{opacity:1;} 50%{opacity:0;} }

/* Terminal progress bar */
.term-progress { padding: 14px 22px; border-top: 1px solid var(--border); }
.tp-label { font-family: var(--mono); font-size: 10px; color: var(--muted); margin-bottom: 6px; display: flex; justify-content: space-between; }
.tp-bar { height: 3px; background: rgba(255,255,255,0.06); border-radius: 3px; overflow: hidden; }
.tp-fill { height: 100%; background: linear-gradient(90deg, var(--red-dark), var(--red2)); border-radius: 3px; animation: tpfill 3s ease-in-out infinite alternate; }
@keyframes tpfill { from{width:72%} to{width:94%} }

.term-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--border); border-top: 1px solid var(--border); }
.tstat { background: var(--card); padding: 16px 20px; }
.tstat-n { font-family: var(--mono); font-size: 24px; font-weight: 700; color: var(--white); }
.tstat-n .ra { color: var(--red); }
.tstat-l { font-size: 11px; color: var(--muted); margin-top: 3px; }

/* =============================================
   SHARED SECTION
   ============================================= */
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 52px; }
section { padding: 88px 0; position: relative; z-index: 2; }

.sec-pill {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--rdim); border: 1px solid var(--rborder);
  border-radius: var(--r-pill); padding: 5px 14px;
  font-family: var(--mono); font-size: 11px; font-weight: 600; color: var(--red2);
  letter-spacing: 0.07em; text-transform: uppercase; margin-bottom: 16px;
}
.sec-pill::before { content: '//'; opacity: 0.55; margin-right: 3px; }

.sec-header { text-align: center; max-width: 640px; margin: 0 auto 56px; }
h2 {
  font-size: clamp(32px, 3.8vw, 52px); font-weight: 900;
  letter-spacing: -2px; line-height: 1.08; margin-bottom: 16px; color: var(--white);
}
h2 .red { color: var(--red); }
.sec-sub { font-size: 16px; color: var(--muted2); line-height: 1.75; }

/* Line-number decorator on section headings */
.line-no {
  display: block; font-family: var(--mono); font-size: 11px; color: var(--muted);
  margin-bottom: 20px; letter-spacing: 0.04em;
}

/* =============================================
   MARQUEE STRIP
   ============================================= */
.marquee-wrap { background: var(--red); padding: 13px 0; overflow: hidden; white-space: nowrap; position: relative; z-index: 2; }
.marquee-track { display: inline-block; animation: mq 20s linear infinite; will-change: transform; }
.marquee-track span {
  display: inline-block; font-size: 12px; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: rgba(255,255,255,0.9); padding: 0 28px;
}
.marquee-track span::after { content: '·'; margin-left: 28px; opacity: 0.5; }
@keyframes mq { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* =============================================
   SERVICES BENTO
   ============================================= */
.services { background: var(--bg2); }
.services-grid {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 1px; background: var(--border); border: 1px solid var(--border2);
  border-radius: var(--r); overflow: hidden;
}
.svc {
  background: var(--card); padding: 32px 28px;
  transition: background 0.2s; position: relative;
}
.svc::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--red-dark), var(--red2));
  transform: scaleX(0); transform-origin: left; transition: transform 0.3s;
}
.svc:hover { background: var(--card-h); }
.svc:hover::before { transform: scaleX(1); }
.svc-num { font-family: var(--mono); font-size: 10px; color: var(--muted); margin-bottom: 18px; letter-spacing: 0.1em; transition: color 0.2s; }
.svc:hover .svc-num { color: var(--red2); }
.svc-icon {
  width: 52px; height: 52px; border-radius: var(--r-sm);
  background: var(--rdim); border: 1px solid var(--rborder);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px; color: var(--red2);
}
.svc-icon svg { width: 24px; height: 24px; }
.svc-title { font-size: 15px; font-weight: 700; margin-bottom: 8px; }
.svc-desc { font-size: 13px; color: var(--muted2); line-height: 1.65; }
.svc-tags { display: flex; flex-wrap: wrap; gap: 5px; margin-top: 14px; }
.svc-tag {
  font-family: var(--mono); font-size: 10px; color: var(--muted);
  background: rgba(255,255,255,0.03); border: 1px solid var(--border2);
  padding: 2px 8px; border-radius: 3px;
}

/* =============================================
   WHY US
   ============================================= */
.why-us { background: var(--bg); }
.why-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
.why-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--r); padding: 34px 28px;
  position: relative; overflow: hidden;
  transition: transform 0.22s, border-color 0.22s, box-shadow 0.22s;
}
.why-card:hover { transform: translateY(-5px); border-color: var(--rborder); box-shadow: 0 16px 48px rgba(232,25,44,0.1); }
.why-ghost {
  position: absolute; top: 8px; right: 14px;
  font-size: 72px; font-weight: 900; line-height: 1; font-family: var(--mono);
  color: transparent; -webkit-text-stroke: 1px rgba(255,255,255,0.06); pointer-events: none;
}
.why-icon-box {
  width: 48px; height: 48px; border-radius: var(--r-sm);
  background: linear-gradient(135deg, var(--red), var(--red2));
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px; box-shadow: 0 4px 16px rgba(232,25,44,0.35);
}
.why-icon-box svg { width: 24px; height: 24px; color: white; }
.why-title { font-size: 16px; font-weight: 700; margin-bottom: 10px; }
.why-desc { font-size: 13px; color: var(--muted2); line-height: 1.7; }
/* AI-style confidence meter on each why card */
.why-meter { margin-top: 20px; }
.wm-label { font-family: var(--mono); font-size: 10px; color: var(--muted); display: flex; justify-content: space-between; margin-bottom: 5px; }
.wm-bar { height: 2px; background: rgba(255,255,255,0.06); border-radius: 2px; }
.wm-fill { height: 100%; background: linear-gradient(90deg, var(--red-dark), var(--red2)); border-radius: 2px; }


/* =============================================
   SPECIAL OFFER
   ============================================= */
.offer-section {
  background: var(--bg2);
  border-top: 1px solid rgba(232,25,44,0.14);
  border-bottom: 1px solid rgba(232,25,44,0.14);
}
.offer-card {
  background: linear-gradient(135deg, rgba(232,25,44,0.09) 0%, rgba(232,25,44,0.03) 50%, transparent 100%);
  border: 1px solid var(--rborder); border-radius: var(--r);
  padding: 56px; display: grid; grid-template-columns: auto 1fr auto; gap: 60px; align-items: center;
  position: relative; overflow: hidden;
}
.offer-card::before {
  content: ''; position: absolute; top: -100px; left: -100px;
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(232,25,44,0.1) 0%, transparent 70%);
  pointer-events: none;
}
/* Scanline in offer card */
.offer-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(232,25,44,0.3), transparent);
}
.offer-badge-pill {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--red); color: white; font-family: var(--mono);
  font-size: 10px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 5px 13px; border-radius: var(--r-pill); margin-bottom: 18px;
  animation: obadge 2.5s ease-in-out infinite;
}
@keyframes obadge { 0%,100%{box-shadow:0 0 0 0 rgba(232,25,44,0.45);} 50%{box-shadow:0 0 0 12px rgba(232,25,44,0);} }
.offer-price { font-size: 90px; font-weight: 900; letter-spacing: -6px; line-height: 0.9; color: var(--red); }
.offer-price sup { font-size: 34px; vertical-align: top; margin-top: 20px; font-weight: 700; }
.offer-was { font-size: 15px; color: var(--muted); margin-top: 12px; font-family: var(--mono); }
.offer-feats { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.offer-feat { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--muted2); font-weight: 500; }
.feat-chk {
  width: 20px; height: 20px; border-radius: 5px; flex-shrink: 0;
  background: var(--rdim); border: 1px solid var(--rborder);
  display: flex; align-items: center; justify-content: center;
}
.feat-chk svg { width: 11px; height: 11px; color: var(--red2); }

/* =============================================
   USE CASES
   ============================================= */
.usecases { background: var(--bg); }
.uc-filters { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; margin-bottom: 40px; }
.uc-filter {
  font-family: var(--mono); font-size: 11px; font-weight: 600;
  padding: 6px 14px; border-radius: var(--r-sm);
  background: rgba(255,255,255,0.04); border: 1px solid var(--border2);
  color: var(--muted2); cursor: pointer; transition: all 0.2s;
}
.uc-filter.active, .uc-filter:hover { background: var(--rdim); border-color: var(--rborder); color: var(--red2); }
.uc-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; margin-bottom: 40px; }
.uc-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--r); padding: 26px 22px;
  display: flex; flex-direction: column; gap: 12px;
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
}
.uc-card:hover { transform: translateY(-4px); border-color: var(--border2); box-shadow: 0 12px 36px rgba(0,0,0,0.35); }
.uc-card.hidden { display: none; }
.uc-head { display: flex; justify-content: space-between; align-items: center; gap: 8px; }
.uc-ind { font-family: var(--mono); font-size: 10px; font-weight: 600; color: var(--red2); background: var(--rdim); border: 1px solid var(--rborder); padding: 2px 8px; border-radius: 3px; white-space: nowrap; }
.uc-lvl { font-family: var(--mono); font-size: 10px; font-weight: 600; padding: 2px 8px; border-radius: 3px; border: 1px solid; white-space: nowrap; }
.uc-lvl.adv { color: #c084fc; border-color: rgba(192,132,252,0.3); background: rgba(192,132,252,0.06); }
.uc-lvl.mid { color: #60a5fa; border-color: rgba(96,165,250,0.3); background: rgba(96,165,250,0.06); }
.uc-lvl.beg { color: #34d399; border-color: rgba(52,211,153,0.3); background: rgba(52,211,153,0.06); }
.uc-title { font-size: 14px; font-weight: 700; line-height: 1.35; }
.uc-desc { font-size: 12px; color: var(--muted2); line-height: 1.65; flex: 1; }
.uc-tags { display: flex; flex-wrap: wrap; gap: 4px; }
.uc-tag { font-family: var(--mono); font-size: 10px; color: var(--muted); background: rgba(255,255,255,0.03); border: 1px solid var(--border); padding: 2px 7px; border-radius: 3px; }
.uc-outcome { display: flex; align-items: center; gap: 6px; font-family: var(--mono); font-size: 11px; font-weight: 600; color: var(--green); }
.uc-outcome svg { width: 14px; height: 14px; }
.uc-card-link { text-decoration: none; color: inherit; display: flex; flex-direction: column; }
.uc-card-link:hover { border-color: var(--rborder); background: rgba(232,25,44,0.04); transform: translateY(-3px); }
.uc-card-cta { font-family: var(--mono); font-size: 11px; color: var(--red2); margin-top: 12px; letter-spacing: 0.04em; }
.uc-cta { text-align: center; }
.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--muted2); padding: 13px 28px; border-radius: var(--r-sm);
  font-size: 14px; font-weight: 600; text-decoration: none;
  border: 1px solid var(--border2); transition: all 0.2s; font-family: inherit;
}
.btn-outline:hover { color: var(--white); border-color: rgba(255,255,255,0.22); background: rgba(255,255,255,0.04); }

/* =============================================
   PORTFOLIO
   ============================================= */
.portfolio { background: var(--bg2); }
.portfolio-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.port-card {
  border-radius: var(--r); overflow: hidden; border: 1px solid var(--border);
  background: var(--card); transition: transform 0.22s, border-color 0.22s, box-shadow 0.22s;
  cursor: default;
}
.port-card:hover { transform: translateY(-5px); border-color: var(--border2); box-shadow: 0 16px 48px rgba(0,0,0,0.4); }
.port-thumb {
  height: 200px; position: relative; overflow: hidden;
  display: flex; align-items: flex-end; padding: 20px;
}
.port-thumb-bg {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
}
/* Gradient backgrounds per card */
.pgrad-1 { background: linear-gradient(135deg, #0d1a2e 0%, #1a0d2e 100%); }
.pgrad-2 { background: linear-gradient(135deg, #0d2213 0%, #0d1a22 100%); }
.pgrad-3 { background: linear-gradient(135deg, #2e0d0d 0%, #1a0d1a 100%); }
.pgrad-4 { background: linear-gradient(135deg, #1a1a0d 0%, #0d1a1a 100%); }
.pgrad-5 { background: linear-gradient(135deg, #0d1a2e 0%, #0d2e1a 100%); }
.pgrad-6 { background: linear-gradient(135deg, #2e1a0d 0%, #2e0d1a 100%); }

/* Grid pattern inside thumb */
.port-thumb-grid {
  position: absolute; inset: 0; opacity: 0.4;
  background-image: linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 28px 28px;
}
.port-thumb-icon { font-size: 52px; opacity: 0.35; }
.port-nda {
  position: absolute; top: 14px; right: 14px;
  font-family: var(--mono); font-size: 10px; font-weight: 700; letter-spacing: 0.08em;
  color: var(--muted2); background: rgba(0,0,0,0.6); border: 1px solid var(--border2);
  padding: 3px 9px; border-radius: 3px;
}
.port-category {
  position: relative; z-index: 1;
  display: flex; gap: 6px;
}
.port-tag { font-family: var(--mono); font-size: 10px; font-weight: 600; color: white; background: rgba(232,25,44,0.7); padding: 3px 9px; border-radius: 3px; }
.port-tag-alt { font-family: var(--mono); font-size: 10px; font-weight: 600; color: var(--muted2); background: rgba(255,255,255,0.1); padding: 3px 9px; border-radius: 3px; }

.port-body { padding: 24px 26px; }
.port-title { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.port-desc { font-size: 13px; color: var(--muted2); line-height: 1.65; margin-bottom: 16px; }
.port-meta { display: flex; align-items: center; justify-content: space-between; }
.port-stack { display: flex; gap: 5px; flex-wrap: wrap; }
.port-stk { font-family: var(--mono); font-size: 10px; color: var(--muted); background: rgba(255,255,255,0.04); border: 1px solid var(--border); padding: 2px 7px; border-radius: 3px; }
.port-status { font-family: var(--mono); font-size: 10px; color: var(--green); display: flex; align-items: center; gap: 5px; }
.port-status-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--green); }

/* =============================================
   AI PROJECT ESTIMATOR
   ============================================= */
.widget-section { background: var(--bg2); }

.estimator {
  background: var(--card);
  border: 1px solid var(--border2);
  border-radius: var(--r);
  overflow: hidden;
  position: relative;
}
.estimator::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--red), var(--red2), transparent);
  z-index: 2; pointer-events: none;
}

/* Chrome bar */
.est-chrome {
  display: flex; align-items: center; gap: 12px;
  padding: 13px 20px;
  background: rgba(0,0,0,0.35);
  border-bottom: 1px solid var(--border);
  font-family: var(--mono); font-size: 12px; color: var(--muted);
}
.est-dots { display: flex; gap: 7px; flex-shrink: 0; }
.est-dot { width: 12px; height: 12px; border-radius: 50%; }
.est-dot-r { background: #ff5f57; }
.est-dot-y { background: #febc2e; }
.est-dot-g { background: #28c840; }
.est-chrome-title { flex: 1; }
.est-chrome-badge {
  display: flex; align-items: center; gap: 5px;
  font-size: 10px; color: var(--green); letter-spacing: 0.1em;
}
.est-online-dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--green);
  animation: pulseGreen 2s ease infinite; flex-shrink: 0;
}
@keyframes pulseGreen {
  0%, 100% { box-shadow: 0 0 0 0 rgba(74,222,128,0); }
  50% { box-shadow: 0 0 0 4px rgba(74,222,128,0.2); }
}

/* Input panel */
.est-hidden { display: none !important; }
.est-input-panel { padding: 36px 40px; }
.est-input-header { margin-bottom: 22px; }
.est-q-label {
  font-family: var(--mono); font-size: 11px; color: var(--red);
  letter-spacing: 0.08em; margin-bottom: 8px; opacity: 0.85;
}
.est-input-header h3 {
  font-size: 22px; font-weight: 800; color: var(--white); letter-spacing: -0.3px;
  margin-bottom: 6px;
}
.est-input-hint { font-size: 14px; color: var(--muted2); line-height: 1.6; }

/* Textarea */
.est-textarea-wrap {
  display: flex; align-items: flex-start; gap: 0;
  background: var(--bg); border: 1px solid var(--border2);
  border-radius: var(--r-sm); overflow: hidden;
  transition: border-color 0.2s;
  margin-bottom: 12px;
}
.est-textarea-wrap:focus-within {
  border-color: rgba(232,25,44,0.4);
  box-shadow: 0 0 0 3px rgba(232,25,44,0.06);
}
.est-ta-prefix {
  font-family: var(--mono); font-size: 14px; color: var(--red);
  padding: 16px 4px 16px 16px; flex-shrink: 0; line-height: 1.6;
  user-select: none;
}
.est-textarea {
  flex: 1; background: transparent; border: none; outline: none;
  font-family: var(--mono); font-size: 14px; color: var(--white);
  line-height: 1.6; padding: 16px 16px 16px 4px;
  resize: vertical; min-height: 130px;
}
.est-textarea::placeholder { color: var(--muted); }

/* Footer row */
.est-input-footer { margin-bottom: 24px; }
.est-char-row {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 14px;
}
.est-char-count { font-family: var(--mono); font-size: 11px; color: var(--muted); }
.est-char-hint { font-size: 11px; color: var(--muted); font-family: var(--mono); }

/* Quick-add pills */
.est-pills {
  display: flex; align-items: center; flex-wrap: wrap; gap: 8px;
}
.est-pills-label {
  font-family: var(--mono); font-size: 11px; color: var(--muted);
  letter-spacing: 0.06em; flex-shrink: 0;
}
.est-pill {
  font-family: var(--mono); font-size: 11px; font-weight: 500;
  color: var(--muted2); background: var(--bg3);
  border: 1px solid var(--border); border-radius: 100px;
  padding: 4px 12px; cursor: pointer;
  transition: all 0.2s;
}
.est-pill:hover {
  color: var(--red2); border-color: var(--rborder);
  background: var(--rdim);
}

/* Nav */
.est-nav {
  display: flex; align-items: center; justify-content: space-between;
}
.est-nav-hint {
  display: flex; align-items: center; gap: 6px;
  font-size: 12px; color: var(--muted); font-family: var(--mono);
}
.btn-primary:disabled { opacity: 0.32; cursor: not-allowed; pointer-events: none; }

/* Loading / terminal */
.est-loading-panel { padding: 40px; }
.est-term {
  background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--r-sm); overflow: hidden; min-height: 220px;
}
.est-term-header {
  padding: 10px 16px;
  background: rgba(0,0,0,0.3); border-bottom: 1px solid var(--border);
  font-family: var(--mono); font-size: 11px; color: var(--muted);
}
.est-term-body { padding: 20px 20px 20px 20px; }
.est-term-lines { font-family: var(--mono); font-size: 13px; }
.est-term-line {
  color: var(--muted2); line-height: 2;
  animation: termFadeIn 0.2s ease forwards;
}
.est-term-line.done { color: var(--green); }
.est-term-line.done::before { content: '✓ '; }
@keyframes termFadeIn {
  from { opacity: 0; transform: translateX(-6px); }
  to   { opacity: 1; transform: translateX(0); }
}
.est-term-cursor {
  font-family: var(--mono); font-size: 14px; color: var(--red);
  animation: blink 1s step-end infinite; line-height: 2;
}
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }

/* ---- Results panel ---- */
.est-results-panel { padding: 36px 40px; }
.est-results { display: flex; flex-direction: column; gap: 24px; }
.est-res-top { text-align: center; }
.est-res-badge-row {
  display: flex; align-items: center; justify-content: center; gap: 8px; margin-bottom: 10px;
}
.est-res-tag { font-family: var(--mono); font-size: 12px; color: var(--green); letter-spacing: 0.08em; }
.est-res-h {
  font-size: clamp(22px, 2.5vw, 30px); font-weight: 900;
  color: var(--white); margin-bottom: 0; letter-spacing: -0.5px;
}

/* AI Summary block */
.est-res-summary {
  font-size: 15px; color: var(--muted2); line-height: 1.7;
  background: var(--bg3); border: 1px solid var(--border);
  border-left: 3px solid var(--red); border-radius: var(--r-sm);
  padding: 16px 20px; font-style: italic;
}

/* Key considerations */
.est-challenges {
  background: var(--bg3); border: 1px solid var(--border);
  border-radius: var(--r-sm); padding: 18px 20px;
}
.est-chall-label {
  font-family: var(--mono); font-size: 11px; color: var(--muted);
  letter-spacing: 0.08em; margin-bottom: 12px;
}
.est-chall-list { display: flex; flex-direction: column; gap: 8px; }
.est-chall-item {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 13px; color: var(--muted2); line-height: 1.5;
}
.est-chall-dot {
  width: 5px; height: 5px; border-radius: 50%; background: var(--red);
  flex-shrink: 0; margin-top: 6px;
}

.est-res-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.est-res-card {
  background: var(--bg3); border: 1px solid var(--border);
  border-radius: var(--r-sm); padding: 20px;
}
.est-res-card-label {
  font-family: var(--mono); font-size: 10px; color: var(--muted);
  letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 14px;
}
.est-res-card-budget { border-color: var(--rborder); background: var(--rdim); }

/* Stack tags */
.est-stack-wrap { display: flex; flex-wrap: wrap; gap: 7px; }
.est-stack-tag {
  font-family: var(--mono); font-size: 12px; font-weight: 500;
  padding: 4px 10px; border-radius: 4px;
  background: rgba(255,255,255,0.05); border: 1px solid var(--border2);
  color: var(--muted2);
}
.est-stack-tag-primary {
  background: rgba(232,25,44,0.1); border-color: rgba(232,25,44,0.28); color: var(--red2);
}

/* Timeline */
.est-timeline-val {
  font-size: 28px; font-weight: 900; color: var(--white);
  letter-spacing: -0.5px; margin-bottom: 14px;
}
.est-timeline-track { height: 5px; background: var(--bg2); border-radius: 3px; overflow: hidden; }
.est-timeline-fill {
  height: 100%; background: linear-gradient(90deg, var(--red), var(--red2));
  border-radius: 3px; width: 0; transition: width 1.1s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Budget */
.est-budget-val {
  font-size: 30px; font-weight: 900; color: var(--red2);
  letter-spacing: -1px; margin-bottom: 6px;
}
.est-budget-note { font-size: 11px; color: var(--muted); font-family: var(--mono); }

/* Complexity */
.est-complex-track { height: 7px; background: var(--bg2); border-radius: 4px; overflow: hidden; margin-bottom: 10px; }
.est-complex-fill {
  height: 100%; border-radius: 4px; width: 0;
  transition: width 1.1s cubic-bezier(0.25, 1, 0.5, 1);
}
.est-complex-label { font-size: 14px; font-weight: 700; }

/* CTA row */
.est-res-cta { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* Disclaimer */
.est-disclaimer {
  display: flex; align-items: center; gap: 8px;
  font-size: 12px; color: var(--muted); font-family: var(--mono);
  justify-content: center; text-align: center;
  padding: 12px 20px; background: var(--bg3);
  border: 1px solid var(--border); border-radius: var(--r-sm);
}

/* Responsive */
@media (max-width: 760px) {
  .est-input-panel, .est-results-panel, .est-loading-panel { padding: 24px 20px; }
  .est-res-grid { grid-template-columns: 1fr; }
  .est-nav { flex-direction: column; gap: 12px; align-items: stretch; }
  .est-nav .btn-primary { justify-content: center; }
}
@media (max-width: 500px) {
  .est-chrome-title { display: none; }
  .est-pills { gap: 6px; }
}

/* =============================================
   BLOG
   ============================================= */
.blog { background: var(--bg2); }
.blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.blog-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--r); overflow: hidden;
  transition: transform 0.22s, border-color 0.22s;
}
.blog-card:hover { transform: translateY(-4px); border-color: var(--border2); }
.blog-thumb { height: 160px; position: relative; overflow: hidden; }
.blog-thumb-bg { position: absolute; inset: 0; }
.bgrad-1 { background: linear-gradient(135deg, #0c1428 0%, #1e0c28 100%); }
.bgrad-2 { background: linear-gradient(135deg, #0c2010 0%, #0c1820 100%); }
.bgrad-3 { background: linear-gradient(135deg, #281010 0%, #180c28 100%); }
.blog-thumb-grid {
  position: absolute; inset: 0; opacity: 0.5;
  background-image: linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 24px 24px;
}
.blog-thumb-label {
  position: absolute; bottom: 14px; left: 14px;
  font-family: var(--mono); font-size: 10px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  color: white; background: var(--red); padding: 3px 10px; border-radius: 3px;
}
.blog-body { padding: 24px 26px; }
.blog-meta { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.blog-date { font-family: var(--mono); font-size: 11px; color: var(--muted); }
.blog-read { font-family: var(--mono); font-size: 11px; color: var(--muted); }
.blog-title { font-size: 16px; font-weight: 700; line-height: 1.35; margin-bottom: 10px; }
.blog-excerpt { font-size: 13px; color: var(--muted2); line-height: 1.65; margin-bottom: 20px; }
.blog-link { font-family: var(--mono); font-size: 12px; font-weight: 600; color: var(--red2); text-decoration: none; display: inline-flex; align-items: center; gap: 5px; transition: gap 0.2s; }
.blog-link:hover { gap: 9px; }

/* =============================================
   CONTACT
   ============================================= */
.contact-section { background: var(--bg); }
.contact-glass {
  display: grid; grid-template-columns: 1fr 400px; gap: 0;
  background: var(--card); border: 1px solid var(--border2);
  border-radius: var(--r); overflow: hidden;
}
.contact-form-side {
  padding: 46px; border-right: 1px solid var(--border); position: relative;
}
.contact-form-side::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--red-dark), var(--red2), transparent);
}
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 7px; }
.form-label { font-family: var(--mono); font-size: 10px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.1em; font-weight: 600; }
input, textarea, select {
  width: 100%; background: rgba(7,9,15,0.8); border: 1px solid var(--border2);
  color: var(--white); padding: 12px 15px; border-radius: var(--r-sm);
  font-size: 14px; font-family: inherit; outline: none; transition: border-color 0.2s, box-shadow 0.2s;
}
input:focus, textarea:focus, select:focus { border-color: rgba(232,25,44,0.45); box-shadow: 0 0 0 3px rgba(232,25,44,0.08); }
input::placeholder, textarea::placeholder { color: var(--muted); }
textarea { resize: none; height: 120px; }
select option { background: var(--card); }
.btn-submit {
  width: 100%; display: flex; align-items: center; justify-content: center; gap: 8px;
  background: var(--red); color: white; padding: 15px; border-radius: var(--r-sm);
  font-size: 15px; font-weight: 700; border: none; cursor: pointer; font-family: inherit;
  transition: all 0.2s; box-shadow: 0 4px 20px rgba(232,25,44,0.35);
}
.btn-submit:hover { background: var(--red2); transform: translateY(-2px); box-shadow: 0 10px 36px rgba(232,25,44,0.5); }
.btn-submit:disabled { opacity: 0.7; cursor: not-allowed; }
.btn-loader { display: inline-flex; }
.btn-loader[hidden] { display: none; }
.spin { animation: spin 1s linear infinite; }
@keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

.contact-info-side { padding: 46px 38px; display: flex; flex-direction: column; gap: 18px; justify-content: center; }
.ci-block { background: rgba(7,9,15,0.6); border: 1px solid var(--border); border-radius: var(--r-sm); padding: 20px 22px; transition: border-color 0.2s; }
.ci-block:hover { border-color: var(--rborder); }
.ci-label { font-family: var(--mono); font-size: 10px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.1em; font-weight: 600; margin-bottom: 7px; }
.ci-val { font-size: 14px; font-weight: 500; line-height: 1.5; }
.ci-muted { color: var(--muted2); font-weight: 400; }
.ci-red { background: var(--rdim); border-color: var(--rborder); }
.ci-red .ci-label { color: var(--red2); }

/* Form messages */
.form-message { padding: 12px 16px; border-radius: var(--r-sm); font-size: 13px; margin-bottom: 8px; }
.form-message--success { background: rgba(74,222,128,0.1); border: 1px solid rgba(74,222,128,0.2); color: var(--green); }
.form-message--error { background: rgba(232,25,44,0.1); border: 1px solid var(--rborder); color: var(--red2); }

/* =============================================
   FOOTER
   ============================================= */
footer { background: #04060a; border-top: 1px solid var(--border); padding: 40px 0; position: relative; z-index: 2; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; }
.footer-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.footer-copy { font-size: 12px; color: var(--muted); margin-top: 6px; font-family: var(--mono); }
.footer-links { display: flex; gap: 6px; flex-wrap: wrap; justify-content: flex-end; }
.footer-links a {
  font-family: var(--mono); font-size: 12px; color: var(--muted);
  text-decoration: none; padding: 4px 10px; border-radius: 4px;
  transition: all 0.2s;
}
.footer-links a .fp { color: var(--muted); opacity: 0.5; margin-right: 2px; }
.footer-links a:hover { color: var(--white); background: rgba(255,255,255,0.04); }
.footer-links a:hover .fp { color: var(--red); opacity: 1; }

/* SCROLL FADE */
[data-fade] { opacity: 0; transform: translateY(18px); transition: opacity 0.5s ease, transform 0.5s ease; }
[data-fade].visible { opacity: 1; transform: none; }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  nav { padding: 0 24px; }
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .hero { padding: 100px 24px 60px; }
  .hero-inner { grid-template-columns: 1fr; gap: 50px; }
  .terminal { max-width: 500px; margin: 0 auto; }
  .services-grid { grid-template-columns: repeat(2,1fr); }
  .why-grid { grid-template-columns: repeat(2,1fr); }
  .uc-grid { grid-template-columns: repeat(2,1fr); }
  .portfolio-grid { grid-template-columns: repeat(2,1fr); }
  .blog-grid { grid-template-columns: repeat(2,1fr); }
  .contact-glass { grid-template-columns: 1fr; }
  .contact-form-side { border-right: none; border-bottom: 1px solid var(--border); }
  .offer-card { grid-template-columns: 1fr; gap: 30px; text-align: center; }
  .offer-feats { max-width: 400px; margin: 0 auto; }
}

@media (max-width: 768px) {
  .wrap { padding: 0 28px; }
}

@media (max-width: 640px) {
  .wrap { padding: 0 20px; }
  section { padding: 60px 0; }
  h1 { font-size: clamp(36px, 8vw, 52px); letter-spacing: -2px; }
  h2 { font-size: clamp(28px, 6vw, 40px); }
  .hero { padding: 80px 20px 48px; }
  .hero-stats { grid-template-columns: repeat(2,1fr); gap: 20px 0; }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .uc-grid { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; gap: 24px; text-align: center; }
  .footer-links { justify-content: center; }
  .hero-code-float { display: none; }
  .nav-status { display: none; }
  /* Disable heavy GPU layers on mobile */
  .page-scan { animation: none; display: none; }
  .glow-tl, .glow-br { display: none; }
  /* Offer card: scale down oversized price, reduce padding */
  .offer-card { padding: 28px 20px; }
  .offer-price { font-size: 56px; letter-spacing: -3px; }
  .offer-price sup { font-size: 22px; margin-top: 12px; }
  /* Prevent iOS auto-zoom on form focus (requires 16px+) */
  input, textarea, select { font-size: 16px; }
  /* Estimator textarea */
  .est-textarea { font-size: 16px; }
}

/* =============================================
   REDUCED MOTION — accessibility + perf
   ============================================= */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .page-scan { display: none; }
  .marquee-track { animation: none; }
  [data-fade] { opacity: 1; transform: none; transition: none; }
}
