/* =========================================================
   TOKENS - Paleta exata
========================================================= */
:root{
  --white: #FFFFFF;
  --cyan: #00BFFF;
  --cyan-bright: #33D6FF;
  --cyan-active: #00E5FF;
  --sub: #A8C1D1;
  --text: #D0D7E2;
  --muted: #7F8FA6;

  --bg-1: #05070D;
  --bg-2: #0A0F1C;
  --panel-1: #0A0F1C;
  --panel-2: #05070D;

  --btn-primary-1: #007BFF;
  --btn-primary-2: #00BFFF;
  --btn-secondary: #1C2B3A;
  --success-1: #00FF88;
  --success-2: #00CC66;
  --danger: #FF3B3B;
  --warn: #FFC107;

  --glow: rgba(0, 191, 255, 0.30);
  --glow-soft: rgba(0, 191, 255, 0.12);
  --glow-strong: rgba(0, 191, 255, 0.55);

  --border: rgba(0, 191, 255, 0.22);
  --border-strong: rgba(0, 191, 255, 0.45);

  --font-display: 'Rajdhani', sans-serif;
  --font-body: 'Manrope', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  --radius: 14px;
  --radius-lg: 22px;
}

*{ box-sizing: border-box; margin: 0; padding: 0; }
html{ scroll-behavior: smooth; }
body{
  font-family: var(--font-body);
  background: var(--bg-1);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
::selection{ background: var(--cyan); color: var(--bg-1); }

/* Background decorativo */
.bg-fx{
  position: fixed; inset: 0; z-index: -2; pointer-events: none;
  background:
    radial-gradient(1100px 700px at 78% -10%, rgba(0,191,255,0.18), transparent 60%),
    radial-gradient(900px 600px at 0% 30%, rgba(0,123,255,0.10), transparent 60%),
    linear-gradient(180deg, var(--bg-1) 0%, var(--bg-2) 60%, var(--bg-1) 100%);
}
.bg-grid{
  position: fixed; inset: 0; z-index: -1; pointer-events: none;
  background-image:
    linear-gradient(rgba(0,191,255,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,191,255,0.06) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, #000 30%, transparent 75%);
}

.container{
  width: min(1240px, 92%);
  margin: 0 auto;
}

/* =========================================================
   NAVBAR
========================================================= */
.nav{
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: rgba(5,7,13,0.70);
  border-bottom: 1px solid var(--border);
}
.nav-inner{
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 0;
}
.brand{
  display: flex; align-items: center; gap: 12px;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--white);
  font-size: 18px;
}
.brand-mark{
  width: 36px; height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--btn-primary-1), var(--btn-primary-2));
  display: grid; place-items: center;
  box-shadow: 0 0 22px var(--glow), inset 0 0 10px rgba(255,255,255,0.18);
}
.brand .pro{ color: var(--cyan); margin-left: 2px; }
.nav ul{
  display: flex; gap: 34px; list-style: none;
}
.nav ul a{
  color: var(--sub);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  position: relative;
  transition: color .25s ease;
}
.nav ul a:hover{ color: var(--cyan-bright); }
.nav ul a::after{
  content:''; position: absolute; left: 0; bottom: -8px;
  height: 2px; width: 0; background: var(--cyan);
  transition: width .3s ease; box-shadow: 0 0 8px var(--glow-strong);
}
.nav ul a:hover::after{ width: 100%; }

.btn{
  display: inline-flex; align-items: center; gap: 10px;
  padding: 12px 22px;
  border-radius: 10px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  border: none; cursor: pointer;
  transition: transform .2s ease, box-shadow .25s ease, filter .2s ease;
  letter-spacing: .3px;
}
.btn-primary{
  background: linear-gradient(135deg, var(--btn-primary-1), var(--btn-primary-2));
  color: var(--white);
  box-shadow: 0 8px 24px rgba(0,123,255,0.35), inset 0 1px 0 rgba(255,255,255,0.18);
}
.btn-primary:hover{ transform: translateY(-2px); filter: brightness(1.1);
  box-shadow: 0 12px 32px rgba(0,191,255,0.55); }
.btn-secondary{
  background: var(--btn-secondary);
  color: var(--text);
  border: 1px solid var(--border);
}
.btn-secondary:hover{ border-color: var(--cyan-bright); color: var(--white);
  box-shadow: 0 0 18px var(--glow); }
.btn-success{
  background: linear-gradient(135deg, var(--success-1), var(--success-2));
  color: #00220D;
  font-weight: 700;
  box-shadow: 0 10px 30px rgba(0,255,136,0.30), inset 0 1px 0 rgba(255,255,255,0.25);
}
.btn-success:hover{ transform: translateY(-2px); filter: brightness(1.06);
  box-shadow: 0 14px 38px rgba(0,255,136,0.45); }

/* =========================================================
   HERO
========================================================= */
.hero{
  padding: 90px 0 70px;
  position: relative;
}
.hero-grid{
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 70px;
  align-items: center;
}
.pill{
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(0,191,255,0.08);
  border: 1px solid var(--border);
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--cyan-bright);
  letter-spacing: 1px;
  margin-bottom: 26px;
}
.pill .dot{
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--success-1);
  box-shadow: 0 0 10px var(--success-1);
  animation: pulse 1.6s infinite;
}
@keyframes pulse{
  0%, 100%{ opacity: 1; transform: scale(1); }
  50%{ opacity: .55; transform: scale(.85); }
}

h1.hero-title{
  font-family: var(--font-display);
  font-size: clamp(44px, 5.6vw, 78px);
  line-height: 0.95;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -1px;
  margin-bottom: 22px;
}
h1.hero-title .accent{
  color: var(--cyan);
  text-shadow: 0 0 24px var(--glow-strong);
  position: relative;
  display: inline-block;
}
h1.hero-title .block{ display: block; }

.hero-sub{
  color: var(--sub);
  font-size: 18px;
  max-width: 540px;
  margin-bottom: 36px;
}
.hero-sub strong{ color: var(--white); font-weight: 600; }

.hero-actions{ display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 38px; }

.hero-meta{
  display: flex; gap: 28px; flex-wrap: wrap;
  padding-top: 26px;
  border-top: 1px dashed rgba(0,191,255,0.18);
}
.meta-item{ display: flex; flex-direction: column; gap: 4px; }
.meta-num{
  font-family: var(--font-display);
  font-size: 28px; font-weight: 700;
  color: var(--white);
}
.meta-num span{ color: var(--cyan); }
.meta-lbl{
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

/* HERO VISUAL — janela do BIOS Editor */
.editor-window{
  position: relative;
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, var(--panel-1), var(--panel-2));
  border: 1px solid var(--border-strong);
  box-shadow:
    0 30px 80px rgba(0,0,0,0.6),
    0 0 0 1px rgba(0,191,255,0.10),
    0 0 60px var(--glow);
  overflow: hidden;
  transform: perspective(1500px) rotateY(-6deg) rotateX(2deg);
  transition: transform .6s ease;
}
.editor-window:hover{ transform: perspective(1500px) rotateY(-3deg) rotateX(1deg); }

.ew-bar{
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 16px;
  background: rgba(0,191,255,0.04);
  border-bottom: 1px solid var(--border);
}
.ew-bar-left{ display: flex; align-items: center; gap: 8px; }
.traffic{ display: flex; gap: 6px; }
.traffic span{ width: 11px; height: 11px; border-radius: 50%; background: #1c2b3a; }
.traffic span:nth-child(1){ background: #ff5a52; }
.traffic span:nth-child(2){ background: #ffbd2e; }
.traffic span:nth-child(3){ background: #28c840; }
.ew-title{
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--muted);
  margin-left: 14px;
}
.ew-title b{ color: var(--cyan-bright); }

.ew-body{
  display: grid;
  grid-template-columns: 200px 1fr;
  min-height: 460px;
}
.ew-side{
  background: rgba(0,0,0,0.25);
  border-right: 1px solid var(--border);
  padding: 14px 10px;
}
.ew-side h5{
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--muted);
  letter-spacing: 1.6px;
  padding: 8px 8px 12px;
  text-transform: uppercase;
}
.ew-side ul{ list-style: none; }
.ew-side li{
  display: flex; align-items: center; gap: 10px;
  padding: 9px 10px;
  margin-bottom: 4px;
  font-size: 13px;
  color: var(--text);
  border-radius: 8px;
  cursor: default;
  border: 1px solid transparent;
}
.ew-side li:hover{
  background: rgba(0,191,255,0.06);
  border-color: var(--border);
  color: var(--cyan-bright);
}
.ew-side li.active{
  background: linear-gradient(90deg, rgba(0,191,255,0.16), transparent);
  color: var(--white);
  border-left: 2px solid var(--cyan);
  border-radius: 0 8px 8px 0;
}
.ew-side li svg{ width: 14px; height: 14px; flex-shrink: 0; color: var(--cyan); }

.ew-main{
  padding: 16px 18px;
  display: flex; flex-direction: column; gap: 12px;
}
.ew-section-title{
  display: flex; align-items: center; justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 1.4px;
  text-transform: uppercase;
}
.ew-section-title span.tag{
  color: var(--success-1);
  background: rgba(0,255,136,0.08);
  padding: 3px 9px;
  border-radius: 4px;
  font-size: 10px;
}

.hex{
  font-family: var(--font-mono);
  font-size: 11.5px;
  line-height: 1.7;
  background: #03050B;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 14px;
  color: var(--sub);
  overflow: hidden;
  box-shadow: inset 0 0 30px rgba(0,191,255,0.05);
}
.hex .addr{ color: var(--muted); }
.hex .hi{ color: var(--cyan-bright); }
.hex .ok{ color: var(--success-1); }
.hex .wr{ color: var(--warn); }

.ew-logs{
  background: #03050B;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 14px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  line-height: 1.85;
}
.log-line{ color: var(--text); }
.log-line .t{ color: var(--muted); margin-right: 10px; }
.log-line.ok .msg{ color: var(--success-1); }
.log-line.wr .msg{ color: var(--warn); }
.log-line.er .msg{ color: var(--danger); }
.cursor::after{
  content: '▍';
  color: var(--cyan);
  animation: blink 1s infinite;
  margin-left: 4px;
}
@keyframes blink{ 50%{ opacity: 0; } }

.ew-progress{
  display: flex; align-items: center; gap: 12px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--muted);
}
.ew-progress .bar{
  flex: 1; height: 6px;
  background: rgba(0,191,255,0.1);
  border-radius: 4px;
  overflow: hidden;
  position: relative;
}
.ew-progress .bar i{
  display: block; height: 100%; width: 73%;
  background: linear-gradient(90deg, var(--btn-primary-1), var(--cyan-bright));
  border-radius: 4px;
  box-shadow: 0 0 12px var(--glow-strong);
  animation: load 4s ease-in-out infinite;
}
@keyframes load{
  0%{ width: 20%; }
  50%{ width: 78%; }
  100%{ width: 20%; }
}

/* =========================================================
   BRANDS
========================================================= */
.brands{
  padding: 40px 0 30px;
  border-top: 1px solid rgba(0,191,255,0.10);
  border-bottom: 1px solid rgba(0,191,255,0.10);
}
.brands-title{
  text-align: center;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 2.5px;
  color: var(--muted);
  text-transform: uppercase;
  margin-bottom: 24px;
}
.brand-list{
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 14px 12px;
}
.brand-list .b{
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1.5px;
  color: var(--sub);
  padding: 9px 18px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: rgba(10,15,28,0.5);
  transition: all .25s ease;
  text-transform: uppercase;
}
.brand-list .b:hover{
  color: var(--white);
  border-color: var(--cyan-bright);
  box-shadow: 0 0 16px var(--glow);
  transform: translateY(-2px);
}

/* =========================================================
   SECTION HEADERS
========================================================= */
section{ padding: 100px 0; }
.sec-head{ text-align: center; max-width: 720px; margin: 0 auto 60px; }
.sec-tag{
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 2.5px;
  color: var(--cyan);
  text-transform: uppercase;
  margin-bottom: 14px;
  padding: 6px 14px;
  border: 1px solid var(--border);
  border-radius: 4px;
  background: rgba(0,191,255,0.04);
}
.sec-title{
  font-family: var(--font-display);
  font-size: clamp(34px, 4vw, 50px);
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}
.sec-title em{
  font-style: normal; color: var(--cyan);
  text-shadow: 0 0 22px var(--glow-strong);
}
.sec-sub{
  color: var(--sub); font-size: 17px;
}

/* =========================================================
   FEATURES
========================================================= */
.features-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.feat{
  position: relative;
  padding: 28px 22px;
  background: linear-gradient(160deg, var(--panel-1), var(--panel-2));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
  overflow: hidden;
}
.feat::before{
  content:''; position: absolute; inset: 0;
  background: radial-gradient(400px 200px at var(--mx,50%) var(--my,0%), rgba(0,191,255,0.12), transparent 50%);
  opacity: 0; transition: opacity .3s ease; pointer-events: none;
}
.feat:hover{
  transform: translateY(-5px);
  border-color: var(--cyan-bright);
  box-shadow: 0 18px 40px rgba(0,0,0,0.45), 0 0 30px var(--glow);
}
.feat:hover::before{ opacity: 1; }
.feat-icon{
  width: 48px; height: 48px;
  border-radius: 12px;
  background: rgba(0,191,255,0.08);
  border: 1px solid var(--border);
  display: grid; place-items: center;
  margin-bottom: 18px;
  color: var(--cyan-active);
  transition: all .3s ease;
}
.feat:hover .feat-icon{
  background: rgba(0,191,255,0.16);
  box-shadow: 0 0 18px var(--glow);
  color: var(--white);
}
.feat-icon svg{ width: 24px; height: 24px; }
.feat h4{
  font-family: var(--font-display);
  color: var(--white);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: .3px;
  margin-bottom: 8px;
}
.feat p{
  color: var(--sub);
  font-size: 14px;
  line-height: 1.55;
}
.feat .code{
  margin-top: 14px;
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--muted);
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

/* Section: capabilities split */
.split{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.cap-list{ display: flex; flex-direction: column; gap: 14px; }
.cap{
  display: flex; gap: 16px;
  padding: 18px 22px;
  background: linear-gradient(160deg, var(--panel-1), var(--panel-2));
  border: 1px solid var(--border);
  border-left: 3px solid var(--cyan);
  border-radius: 10px;
  transition: all .25s ease;
}
.cap:hover{
  border-color: var(--cyan-bright);
  border-left-color: var(--cyan-bright);
  transform: translateX(6px);
  box-shadow: 0 0 22px var(--glow);
}
.cap-num{
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--cyan);
  flex-shrink: 0;
  letter-spacing: 1px;
}
.cap-body h5{
  font-family: var(--font-display);
  font-size: 17px;
  color: var(--white);
  margin-bottom: 4px;
  font-weight: 600;
}
.cap-body p{ color: var(--sub); font-size: 14px; }

.terminal{
  background: linear-gradient(160deg, var(--panel-1), var(--panel-2));
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 40px var(--glow);
}
.terminal-bar{
  padding: 10px 14px;
  background: rgba(0,0,0,0.3);
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--muted);
}
.terminal-bar .traffic span{ width: 10px; height: 10px; }
.terminal-body{
  padding: 18px 20px;
  font-family: var(--font-mono);
  font-size: 12.5px;
  line-height: 1.85;
  background: #03050B;
  min-height: 380px;
}
.terminal-body .pmt{ color: var(--cyan); }
.terminal-body .arg{ color: var(--cyan-bright); }
.terminal-body .cmt{ color: var(--muted); }
.terminal-body .ok{ color: var(--success-1); }
.terminal-body .wr{ color: var(--warn); }
.terminal-body .er{ color: var(--danger); }
.terminal-body .out{ color: var(--text); }

/* =========================================================
   PRICING
========================================================= */
.pricing{ position: relative; }
.price-card{
  max-width: 720px; margin: 0 auto;
  background: linear-gradient(160deg, var(--panel-1), var(--panel-2));
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  padding: 50px 50px 44px;
  position: relative;
  box-shadow:
    0 30px 80px rgba(0,0,0,0.55),
    0 0 80px rgba(0,191,255,0.18);
  overflow: hidden;
}
.price-card::before{
  content:''; position: absolute; inset: -1px;
  border-radius: var(--radius-lg);
  padding: 1px;
  background: linear-gradient(135deg, var(--cyan-bright), transparent 40%, transparent 60%, var(--cyan));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  pointer-events: none;
}
.price-card::after{
  content:''; position: absolute;
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(0,191,255,0.30), transparent 60%);
  top: -100px; right: -80px;
  pointer-events: none;
}
.price-tag{
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(0,255,136,0.10);
  color: var(--success-1);
  border: 1px solid rgba(0,255,136,0.25);
  font-family: var(--font-mono);
  font-size: 11px;
  padding: 6px 12px;
  border-radius: 4px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.price-name{
  font-family: var(--font-display);
  font-size: 36px;
  color: var(--white);
  font-weight: 700;
  letter-spacing: -.5px;
  margin-bottom: 6px;
}
.price-name span{ color: var(--cyan); }
.price-desc{
  color: var(--sub);
  font-size: 16px;
  margin-bottom: 30px;
}
.price-amount{
  display: flex; align-items: baseline; gap: 10px;
  margin-bottom: 8px;
}
.price-currency{
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--cyan);
  font-weight: 600;
}
.price-value{
  font-family: var(--font-display);
  font-size: 76px;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  letter-spacing: -2px;
  text-shadow: 0 0 30px var(--glow);
}
.price-suffix{
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 1.2px;
}
.price-renewal{
  color: var(--sub);
  font-size: 13px;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px dashed rgba(0,191,255,0.18);
}
.price-renewal b{ color: var(--cyan-bright); font-weight: 600; }

.price-features{
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 22px;
  margin-bottom: 32px;
}
.price-features li{
  display: flex; align-items: flex-start; gap: 10px;
  color: var(--text);
  font-size: 14px;
}
.price-features li svg{
  width: 18px; height: 18px; flex-shrink: 0; margin-top: 2px;
  color: var(--success-1);
}
.price-cta{
  display: flex; flex-direction: column; gap: 12px;
}
.price-cta .btn{ justify-content: center; padding: 16px 24px; font-size: 15px; }
.price-note{
  text-align: center;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 1.2px;
  margin-top: 6px;
}

/* Aviso simples */
.notice{
  max-width: 720px; margin: 30px auto 0;
  padding: 16px 22px;
  border: 1px solid rgba(255,193,7,0.30);
  background: rgba(255,193,7,0.05);
  border-left: 3px solid var(--warn);
  border-radius: 8px;
  color: var(--text);
  font-size: 14px;
  display: flex; gap: 14px; align-items: flex-start;
}
.notice svg{ width: 20px; height: 20px; color: var(--warn); flex-shrink: 0; margin-top: 2px; }
.notice b{ color: var(--warn); }

/* =========================================================
   FAQ
========================================================= */
.faq-list{ max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item{
  background: linear-gradient(160deg, var(--panel-1), var(--panel-2));
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  transition: border-color .25s ease;
}
.faq-item.open{ border-color: var(--cyan-bright); box-shadow: 0 0 18px var(--glow); }
.faq-q{
  width: 100%; text-align: left;
  background: none; border: none;
  padding: 20px 24px;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  cursor: pointer;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
}
.faq-q .ico{
  width: 28px; height: 28px;
  display: grid; place-items: center;
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--cyan);
  font-family: var(--font-mono);
  transition: transform .3s ease;
}
.faq-item.open .faq-q .ico{ transform: rotate(45deg); background: rgba(0,191,255,0.12); }
.faq-a{
  max-height: 0; overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
  padding: 0 24px;
  color: var(--sub);
  font-size: 15px;
}
.faq-item.open .faq-a{
  max-height: 220px; padding: 0 24px 22px;
}

/* =========================================================
   FOOTER
========================================================= */
footer{
  border-top: 1px solid var(--border);
  background: var(--bg-1);
  padding: 50px 0 30px;
}
.foot-grid{
  display: flex; justify-content: space-between; align-items: center;
  gap: 30px; flex-wrap: wrap;
}
.foot-brand{ max-width: 360px; }
.foot-brand p{
  color: var(--muted);
  font-size: 13px;
  margin-top: 12px;
  line-height: 1.6;
}
.foot-meta{
  display: flex; flex-direction: column; gap: 6px;
  text-align: right;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 1.2px;
}
.foot-meta b{ color: var(--cyan-bright); }
.copy{
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px dashed rgba(0,191,255,0.12);
  text-align: center;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 1.2px;
}

/* =========================================================
   REVEAL ANIMATION
========================================================= */
.reveal{ opacity: 0; transform: translateY(30px); transition: opacity .8s ease, transform .8s ease; }
.reveal.in{ opacity: 1; transform: none; }

/* =========================================================
   RESPONSIVE
========================================================= */
@media (max-width: 1024px){
  .hero-grid{ grid-template-columns: 1fr; gap: 50px; }
  .features-grid{ grid-template-columns: repeat(2, 1fr); }
  .split{ grid-template-columns: 1fr; gap: 40px; }
  .editor-window{ transform: none; }
}
@media (max-width: 720px){
  .nav ul{ display: none; }
  section{ padding: 70px 0; }
  .features-grid{ grid-template-columns: 1fr; }
  .price-card{ padding: 36px 26px; }
  .price-features{ grid-template-columns: 1fr; }
  .price-value{ font-size: 60px; }
  .ew-body{ grid-template-columns: 1fr; min-height: 0; }
  .ew-side{ display: none; }
  .foot-meta{ text-align: left; }
  .hero{ padding: 50px 0 40px; }
  .hero-meta{ gap: 18px; }
  .meta-num{ font-size: 22px; }
}
