* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

body {
  background: radial-gradient(circle at top, #0f1b1f, #05080a);
  color: #e5f6f6;
  overflow-x: hidden;
}

.topbar {
  display: flex;
  justify-content: space-between;
  padding: 24px 60px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.logo {
  font-size: 22px;
  letter-spacing: 4px;
  font-weight: 600;
}

nav a {
  margin-left: 28px;
  color: #9dd6d6;
  text-decoration: none;
  font-size: 14px;
  opacity: 0.8;
}

nav a:hover {
  opacity: 1;
}

.hero {
  position: relative;
  min-height: 55vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 40px;
}

.overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(0,255,200,0.05), transparent),
    repeating-linear-gradient(
      0deg,
      rgba(255,255,255,0.02),
      rgba(255,255,255,0.02) 1px,
      transparent 1px,
      transparent 4px
    );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: auto;
}


.hero h1 {
  font-size: 56px;
  line-height: 1.1;
  letter-spacing: 1px;
  margin-bottom: 24px;
}


.hero p {
  font-size: 17px;
  color: #b8dede;
  max-width: 600px;
  margin: auto;
}
.cta {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 16px;
}

.btn {
  padding: 14px 26px;
  margin-right: 18px;
  border-radius: 4px;
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 1px;
}

.primary {
  background: linear-gradient(135deg, #00ffd5, #00bfa6);
  color: #001b18;
  box-shadow: 0 0 20px rgba(0,255,213,0.3);
}

.secondary {
  border: 1px solid rgba(255,255,255,0.2);
  color: #e5f6f6;
}

.stats {
  display: flex;
  justify-content: space-around;
  padding: 80px 40px;
  background: rgba(255,255,255,0.02);
}

.stat span {
  font-size: 28px;
  font-weight: 600;
  color: #00ffd5;
}

.stat p {
  font-size: 13px;
  opacity: 0.7;
  margin-top: 6px;
}

footer {
  padding: 40px 80px;
  font-size: 12px;
  opacity: 0.5;
  text-align: center;
}

.page.military {
  padding: 80px 120px;
  max-width: 1100px;
  margin: auto;
}

.page h1 {
  font-size: 42px;
  letter-spacing: 3px;
  margin-bottom: 12px;
}

.classification {
  font-size: 12px;
  letter-spacing: 2px;
  opacity: 0.6;
  margin-bottom: 40px;
}

.intro {
  max-width: 800px;
  margin-bottom: 50px;
  color: #b8dede;
}

.incident-form {
  background: rgba(255,255,255,0.02);
  padding: 40px;
  border: 1px solid rgba(255,255,255,0.08);
}

.form-group {
  margin-bottom: 28px;
}

.form-group label {
  display: block;
  font-size: 13px;
  letter-spacing: 1px;
  margin-bottom: 8px;
  opacity: 0.8;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px;
  background: #05080a;
  border: 1px solid rgba(255,255,255,0.1);
  color: #e5f6f6;
}

.form-group textarea {
  min-height: 120px;
}

.checkbox {
  display: flex;
  gap: 12px;
  font-size: 13px;
}

.btn.wide {
  width: 100%;
  margin-top: 30px;
}

.footer-note {
  margin-top: 30px;
  font-size: 12px;
  opacity: 0.5;
}

.method-step {
  display: flex;
  gap: 40px;
  margin-bottom: 50px;
}

.step-number {
  font-size: 32px;
  font-weight: 600;
  color: #00ffd5;
  opacity: 0.7;
}

/* ==============================
   MILITARY COMMAND ENHANCEMENTS
   ============================== */

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    repeating-linear-gradient(
      90deg,
      rgba(255,255,255,0.015),
      rgba(255,255,255,0.015) 1px,
      transparent 1px,
      transparent 120px
    ),
    repeating-linear-gradient(
      0deg,
      rgba(255,255,255,0.015),
      rgba(255,255,255,0.015) 1px,
      transparent 1px,
      transparent 120px
    );
  pointer-events: none;
  z-index: 0;
}

h1, h2, h3 {
  text-transform: uppercase;
  letter-spacing: 3px;
}

.topbar {
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.7),
    rgba(0,0,0,0.2)
  );
}

.logo {
  text-transform: uppercase;
  letter-spacing: 6px;
}

nav a {
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 2px;
}

.btn {
  padding: 14px 26px;
  border-radius: 4px;
}

.primary {
  background: linear-gradient(135deg, #00e0c0, #009f8a);
  box-shadow:
    0 0 0 1px rgba(0,255,213,0.3),
    0 0 20px rgba(0,255,213,0.25);
}

.primary:hover {
  box-shadow:
    0 0 0 1px rgba(0,255,213,0.6),
    0 0 30px rgba(0,255,213,0.4);
}

.incident-form,
.method-step {
  backdrop-filter: blur(4px);
}

.classification {
  border-left: 3px solid #00ffd5;
  padding-left: 14px;
}

.method-step {
  padding: 20px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.method-step h2 {
  margin-bottom: 6px;
}

input, textarea, select {
  font-family: 'Inter', monospace;
  letter-spacing: 1px;
}


.status-bar {
  display: flex;
  justify-content: space-around;
  padding: 10px 20px;
  font-size: 11px;
  letter-spacing: 2px;
  background: rgba(0,0,0,0.6);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  color: #9dd6d6;
}

.intel-panels {
  display: flex;
  gap: 40px;
  margin-bottom: 60px;
}

.panel {
  flex: 1;
  padding: 20px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(0,0,0,0.4);
}

.panel h3 {
  font-size: 12px;
  letter-spacing: 2px;
  margin-bottom: 12px;
  opacity: 0.8;
}

.panel ul {
  list-style: none;
  font-size: 12px;
  opacity: 0.6;
}

.panel li {
  margin-bottom: 6px;
}

label::before {
  content: "▶ ";
  color: #00ffd5;
}


.command-header {
  position: relative;
  min-height: 280px;
  padding: 60px 120px;
  display: flex;
  align-items: center;
  background: radial-gradient(circle at top, #0f1b1f, #05080a);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.command-header .overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(0,255,200,0.06), transparent),
    repeating-linear-gradient(
      0deg,
      rgba(255,255,255,0.02),
      rgba(255,255,255,0.02) 1px,
      transparent 1px,
      transparent 4px
    );
}

.command-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.command-content h1 {
  font-size: 38px;
  letter-spacing: 3px;
  margin-bottom: 12px;
}

.command-content p {
  font-size: 14px;
  opacity: 0.7;
  letter-spacing: 1px;
}

.with-header {
  margin-top: 40px;
}
/* ================================
   TECHNOLOGY SECTION
================================ */

.technology {
  padding: 100px 80px;
  text-align: center;
}

.technology h2 {
  font-size: 34px;
  margin-bottom: 60px;
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(220px,1fr));
  gap: 40px;
  max-width: 1100px;
  margin: auto;
}

.tech-box {
  padding: 30px;
  background: rgba(0,0,0,0.4);
  border: 1px solid rgba(255,255,255,0.08);
}

.tech-box h3 {
  font-size: 14px;
  margin-bottom: 12px;
}

.tech-box p {
  font-size: 13px;
  opacity: 0.7;
}

/* ================================
   PRICING
================================ */

.pricing {
  padding: 100px 80px;
  text-align: center;
  background: rgba(255,255,255,0.02);
}

.pricing h2 {
  font-size: 34px;
  margin-bottom: 60px;
}

.pricing-grid {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}

.plan {
  width: 320px;
  padding: 40px;
  background: rgba(0,0,0,0.4);
  border: 1px solid rgba(255,255,255,0.08);
}

.plan.featured {
  border: 1px solid rgba(0,255,213,0.4);
}

.plan h3 {
  font-size: 18px;
  margin-bottom: 20px;
}

.price {
  font-size: 40px;
  margin-bottom: 25px;
  color: #00ffd5;
}

.price span {
  font-size: 14px;
  opacity: 0.6;
}

.plan ul {
  list-style: none;
  margin-bottom: 30px;
  font-size: 13px;
  opacity: 0.8;
}

.plan li {
  margin-bottom: 8px;
}

/* ================================
   CTA SECTION
================================ */

.cta-section {
  padding: 120px 40px;
  text-align: center;
}

.cta-section h2 {
  font-size: 36px;
  margin-bottom: 16px;
}

.cta-section p {
  opacity: 0.7;
  margin-bottom: 30px;
}
/* ============================
   PRICING UPGRADE
============================ */

.pricing {
  padding: 120px 40px;
  text-align: center;
}

.pricing h2 {
  font-size: 38px;
  margin-bottom: 10px;
}

.pricing-sub {
  opacity: 0.6;
  margin-bottom: 70px;
}

.pricing-grid {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}

/* CARD */

.plan-card {
  position: relative;
  width: 320px;
  padding: 50px 40px;
  background: rgba(0,0,0,0.45);
  border: 1px solid rgba(255,255,255,0.08);
  transition: all 0.3s ease;
}

/* HOVER */

.plan-card:hover {
  transform: translateY(-8px);
  border: 1px solid rgba(0,255,213,0.4);
  box-shadow:
    0 0 25px rgba(0,255,213,0.15);
}

/* FEATURED */

.plan-card.featured {
  border: 1px solid rgba(0,255,213,0.5);
  box-shadow:
    0 0 35px rgba(0,255,213,0.25);
}

/* BADGE */

.plan-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #00ffd5;
  color: #002b27;
  font-size: 11px;
  padding: 6px 14px;
  letter-spacing: 1px;
}

/* HEADER */

.plan-header h3 {
  font-size: 18px;
  margin-bottom: 18px;
}

/* PRICE */

.price {
  font-size: 48px;
  color: #00ffd5;
  margin-bottom: 30px;
}

.currency {
  font-size: 18px;
  vertical-align: super;
}

.period {
  font-size: 14px;
  opacity: 0.6;
}

.price.custom {
  font-size: 32px;
}

/* FEATURES */

.plan-features {
  list-style: none;
  text-align: left;
  margin-bottom: 35px;
  font-size: 14px;
  opacity: 0.85;
}

.plan-features li {
  margin-bottom: 10px;
}

/* BUTTON */

.btn.wide {
  width: 100%;
}
/* FIX NAVBAR BUTTON BUG */

.topbar nav a:not(.login-btn) {
  background: none !important;
  padding: 0 !important;
  box-shadow: none !important;
  border: none !important;
}

/* garante que nada sobreponha o menu */

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 60px;
}

/* evita elementos do hero invadirem o menu */

.hero {
  position: relative;
  z-index: 1;
}
/* LOGIN BUTTON */

.login-btn {

  padding: 10px 22px;

  border: 1px solid rgba(0,255,213,0.5);

  color: #00ffd5;

  text-decoration: none;

  font-size: 12px;

  letter-spacing: 2px;

  text-transform: uppercase;

  font-weight: 600;

  transition: all 0.25s ease;

  box-shadow:
    0 0 10px rgba(0,255,213,0.15);
}

.login-btn:hover {

  background: #00ffd5;

  color: #002b27;

  box-shadow:
    0 0 20px rgba(0,255,213,0.4);
}
.nav-links a{
  margin-right:28px;
}
.nav-links {
  display: flex;
  align-items: center;
}

.nav-links a {
  margin-left: 28px;
}
/* LOGIN BUTTON STYLE */

.login-btn {

  margin-left: 28px;

  padding: 10px 22px;

  border: 1px solid #00ffd5;

  color: #00ffd5 !important;

  background: rgba(0,255,213,0.05);

  text-decoration: none;

  font-size: 12px;

  letter-spacing: 2px;

  font-weight: 600;

  text-transform: uppercase;

  transition: all 0.25s ease;

  box-shadow:
    0 0 12px rgba(0,255,213,0.25);

}

/* HOVER */

.login-btn:hover {

  background: #00ffd5;

  color: #002b27 !important;

  box-shadow:
    0 0 25px rgba(0,255,213,0.6);

}
/* ==============================
   SERVER DIVIDER (FIXED CENTER)
============================== */
/* ===============================
   SECTION EDGE DECORATION
=============================== */

section{

  position: relative;

}

/* linha superior */

section::before{

  content:"";

  position:absolute;

  left:0;
  right:0;

  top:0;

  height:1px;

  background:linear-gradient(
    90deg,
    transparent,
    rgba(0,255,213,0.35),
    transparent
  );

}

/* linha inferior */

section::after{

  content:"";

  position:absolute;

  left:0;
  right:0;

  bottom:0;

  height:1px;

  background:linear-gradient(
    90deg,
    transparent,
    rgba(0,255,213,0.35),
    transparent
  );

}

/* ===============================
   FEATURES SECTION
=============================== */

.stats{

  padding:120px 40px;

}

.stats-grid{

  max-width:1100px;

  margin:auto;

  display:grid;

  grid-template-columns:repeat(3,1fr);

  gap:60px;

  text-align:center;

}

.feature-icon{

  font-size:48px;

  margin-bottom:20px;

  color:#00ffd5;

  filter:drop-shadow(0 0 12px rgba(0,255,213,0.2));

}

.feature h3{

  color:#00ffd5;

  margin-bottom:12px;

  letter-spacing:2px;

}

.feature p{

  opacity:.7;

  line-height:1.6;

  font-size:14px;

}
.feature-icon svg{

width:48px;
height:48px;

color:#00ffd5;
  filter:drop-shadow(0 0 12px rgba(0,255,213,0.2));



}
section{

  position:relative;

  z-index:1;

}

.game-bg{

  position: relative;

  background:
    linear-gradient(rgba(5,8,10,0.93), rgba(5,8,10,0.93)),
    url("gaming-bg.png");

  background-size: cover;

  background-position: center;

  background-repeat: no-repeat;

  overflow: hidden;

}
/* camada escura para manter leitura */


/* conteúdo acima */

.game-bg > *{

  position:relative;

  z-index:2;

}

.pricing-note{

  margin-top:60px;

  text-align:center;

  max-width:750px;

  margin-left:auto;
  margin-right:auto;

  font-size:14px;

  line-height:1.6;

  opacity:0.75;

}
/* ===============================
   HOW IT WORKS SECTION
=============================== */

.how-it-works{

  padding:120px 40px;

  text-align:center;

}

.how-it-works h2{

  font-size:36px;

  margin-bottom:10px;

}

.how-sub{

  opacity:0.7;

  margin-bottom:60px;

}

.steps{

  display:grid;

  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));

  gap:40px;

  max-width:1100px;

  margin:auto;

}

.step{

  text-align:left;

}

.step-number{

  font-size:28px;

  color:#00ffd5;

  margin-bottom:12px;

  font-weight:600;

}

.step h3{

  margin-bottom:8px;

  font-size:18px;

}

.step p{

  opacity:0.7;

  font-size:14px;

  line-height:1.6;

}
/* =================================
RESPONSIVE FIX (ADD AT END OF FILE)
================================= */

/* tablets */

@media (max-width: 1024px){

.topbar{
padding:20px 30px;
}

.hero h1{
font-size:42px;
}

.stats-grid{
grid-template-columns:repeat(2,1fr);
gap:40px;
}

.tech-grid{
grid-template-columns:repeat(2,1fr);
}

.steps{
grid-template-columns:repeat(2,1fr);
}

.pricing-grid{
gap:40px;
}

}

/* mobile */

@media (max-width:768px){

.topbar{
flex-direction:column;
gap:15px;
padding:20px;
text-align:center;
}

.nav-links{
flex-wrap:wrap;
justify-content:center;
}

.nav-links a{
margin:8px 10px;
}

.status-bar{
flex-wrap:wrap;
gap:10px;
font-size:10px;
}

.hero{
padding:60px 20px;
}

.hero h1{
font-size:34px;
}

.hero p{
font-size:15px;
}

.cta{
flex-direction:column;
align-items:center;
gap:12px;
}

.stats-grid{
grid-template-columns:1fr;
gap:40px;
}

.technology{
padding:80px 20px;
}

.tech-grid{
grid-template-columns:1fr;
}

.pricing{
padding:80px 20px;
}

.pricing-grid{
flex-direction:column;
align-items:center;
}

.plan-card{
width:100%;
max-width:420px;
}

.steps{
grid-template-columns:1fr;
}

.how-it-works{
padding:80px 20px;
}

.cta-section{
padding:80px 20px;
}

footer{
padding:40px 20px;
}

}

/* small phones */

@media (max-width:480px){

.hero h1{
font-size:28px;
}

.hero p{
font-size:14px;
}

.logo{
font-size:18px;
letter-spacing:3px;
}

.status-bar{
font-size:9px;
}

}
/* =============================
   WHY MIRAI SECTION
============================= */

.comparison{

padding:120px 40px;

text-align:center;

background:rgba(255,255,255,0.02);

}

.comparison h2{

font-size:36px;

margin-bottom:12px;

}

.comparison-sub{

opacity:.7;

max-width:720px;

margin:auto;

margin-bottom:70px;

line-height:1.6;

}
.comparison-grid{

display:grid;

grid-template-columns:repeat(2,1fr);

gap:40px;

max-width:900px;

margin:auto;

}

.comparison-box{

position:relative;

padding:35px;

background:rgba(0,0,0,0.4);

border:1px solid rgba(255,255,255,0.08);

transition:all .25s ease;

text-align:left;

}

/* glow hover igual pricing */

.comparison-box:hover{

transform:translateY(-6px);

border:1px solid rgba(0,255,213,0.4);

box-shadow:

0 0 25px rgba(0,255,213,0.15);

}

.comparison-box h3{

font-size:16px;

margin-bottom:12px;

color:#00ffd5;

letter-spacing:2px;

}

.comparison-box p{

font-size:14px;

line-height:1.6;

opacity:.75;

margin-bottom:10px;

}

/* barra lateral cyber */

.comparison-box::before{

content:"";

position:absolute;

left:0;

top:0;

height:100%;

width:3px;

background:#00ffd5;

opacity:.6;

box-shadow:0 0 10px rgba(0,255,213,0.4);

}

/* mobile */

@media (max-width:768px){

.comparison{

padding:80px 20px;

}

}
/* ================================
   MITIGATION PIPELINE
================================ */

.mitigation{

padding:120px 40px;

text-align:center;

}

.mitigation h2{

font-size:36px;

margin-bottom:12px;

}

.mitigation-sub{

opacity:.7;

max-width:750px;

margin:auto;

margin-bottom:80px;

line-height:1.6;

}

.pipeline{

display:flex;

align-items:center;

justify-content:center;

flex-wrap:wrap;

gap:25px;

max-width:1300px;

margin:auto;

}

/* camada */

.layer{

width:220px;
height:190px; /* altura padronizada */

padding:22px;

background:rgba(0,0,0,0.45);
border:1px solid rgba(255,255,255,0.08);

display:flex;
flex-direction:column;
justify-content:flex-start;

text-align:left;

}
.layer h3{

font-size:13px;

letter-spacing:2px;

margin-bottom:12px;

color:#00ffd5;

}

.layer ul{

list-style:none;

font-size:12px;

opacity:.75;

}

.layer li{

margin-bottom:6px;

}

.layer li::before{

content:"• ";

color:#00ffd5;

}

/* seta */

.arrow{

font-size:28px;

color:#00ffd5;

opacity:.7;

}

/* camada final */

.layer.final{

text-align:center;

border:1px solid rgba(0,255,213,0.4);

box-shadow:0 0 25px rgba(0,255,213,0.15);

}

.layer.final p{

font-size:13px;

opacity:.7;

}

/* mobile */

@media(max-width:900px){

.pipeline{

flex-direction:column;

}

.arrow{

transform:rotate(90deg);

}

}
/* =================================
   BACKGROUND SHIELD ICON
================================= */

.layer{

position:relative;
overflow:hidden;

}

/* escudo de fundo */

.layer::after{

content:"";

position:absolute;

right:-20px;
bottom:-20px;

width:120px;
height:120px;

background:url("assets/shield-icon.svg") no-repeat center;
background-size:contain;

opacity:0.06;

pointer-events:none;

}
.contact-box {
    background: linear-gradient(135deg, #1e1f1e, #0a0909);
    border: 1px solid rgba(0, 255, 213, 0.35);
    border-radius: 12px;
    padding: 60px 30px;
    margin: 80px auto;
    max-width: 1000px;
    text-align: center;
    box-shadow: 0 0 20px rgba(0, 200, 255, 0.15);
}

.contact-box h2 {
    font-size: 32px;
    color: #ffffff;
    margin-bottom: 20px;
}

.contact-box p {
    font-size: 16px;
    color: #c8d6df;
    max-width: 700px;
    margin: 0 auto 30px auto;
    line-height: 1.6;
}

.contact-box a {
    display: inline-block;
    padding: 14px 28px;
    background: #00ffd5;
    color: #021018;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.25s ease;
}

.contact-box a:hover {
    background: #00e6ff;
    transform: translateY(-2px);
    box-shadow: 0 0 15px rgba(0, 200, 255, 0.6);
}

@media (max-width:768px){

.comparison{

padding:80px 20px;

}

.comparison-grid{

grid-template-columns:1fr;

gap:25px;

}

}