/* ==========================================================
   Mutant Landing Page
   styles.css
========================================================== */

/* ---------- Theme ---------- */

:root {

    --bg: #050505;
    --surface: #0f1115;
    --surface-2: #161a22;

    --border: #20242d;

    --primary: #35e6c1;
    --secondary: #00c8ff;

    --text: #ffffff;
    --muted: #9ca3af;

    --shadow: rgba(0, 200, 255, 0.15);

    --radius: 18px;

    --container: 1180px;

}

/* ---------- Reset ---------- */

*,
*::before,
*::after {

    margin: 0;
    padding: 0;
    box-sizing: border-box;

}

html {

    scroll-behavior: smooth;

}

body {

    background: var(--bg);
    color: var(--text);

    font-family: "Inter", sans-serif;

    line-height: 1.7;

    overflow-x: hidden;

}

img {

    max-width: 100%;

}

a {

    color: inherit;
    text-decoration: none;

}

ul {

    list-style: none;

}

/* ---------- Background ---------- */

.background-grid {

    position: fixed;

    inset: 0;

    background-image:

        linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),

        linear-gradient(90deg,
        rgba(255,255,255,.03) 1px,
        transparent 1px);

    background-size: 50px 50px;

    z-index: -3;

}

.gradient-blur {

    position: fixed;

    width: 520px;
    height: 520px;

    border-radius: 50%;

    filter: blur(120px);

    opacity: .15;

    z-index: -2;

}

.blur-1 {

    background: var(--secondary);

    top: -150px;
    left: -150px;

}

.blur-2 {

    background: var(--primary);

    bottom: -180px;
    right: -120px;

}

/* ---------- Layout ---------- */

.container {

    width: min(92%, var(--container));

    margin-inline: auto;

}

.section {

    padding: 120px 0;

}

.section-title {

    text-align: center;

    max-width: 760px;

    margin: auto auto 70px;

}

.section-title h2 {

    font-size: clamp(2rem, 4vw, 3rem);

    margin-bottom: 18px;

    font-weight: 800;

}

.section-title p {

    color: var(--muted);

    font-size: 1.1rem;

}

/* ---------- Navbar ---------- */

.navbar {

    position: sticky;

    top: 0;

    z-index: 999;

    backdrop-filter: blur(14px);

    background: rgba(5,5,5,.55);

    border-bottom: 1px solid rgba(255,255,255,.04);

}

.nav-container {

    display: flex;

    justify-content: space-between;

    align-items: center;

    height: 82px;

}

.logo {

    display: flex;

    align-items: center;

    gap: 10px;

    font-size: 1.3rem;

    font-weight: 700;

}

.logo-dot {

    width: 12px;

    height: 12px;

    border-radius: 50%;

    background: var(--primary);

    box-shadow:

        0 0 10px var(--primary),

        0 0 25px var(--primary);

}

nav {

    display: flex;

    gap: 34px;

}

nav a {

    color: var(--muted);

    transition: .25s;

}

nav a:hover {

    color: white;

}

/* ---------- Hero ---------- */

.hero {

    min-height: calc(100vh - 82px);

    display: flex;

    align-items: center;

}

.hero-grid {

    display: grid;

    grid-template-columns: 1fr 480px;

    gap: 70px;

    align-items: center;

}

.badge {

    display: inline-flex;

    align-items: center;

    padding: 10px 18px;

    border-radius: 999px;

    background: rgba(53,230,193,.08);

    color: var(--primary);

    border: 1px solid rgba(53,230,193,.2);

    margin-bottom: 28px;

}

.hero h1 {

    font-size: clamp(3rem,7vw,5rem);

    line-height: 1.05;

    margin-bottom: 28px;

    font-weight: 800;

}

.hero h1 span {

    color: var(--primary);

}

.hero p {

    max-width: 640px;

    color: var(--muted);

    font-size: 1.15rem;

    margin-bottom: 40px;

}

.hero-buttons {

    display: flex;

    gap: 18px;

    flex-wrap: wrap;

}

/* ---------- Buttons ---------- */
/* 
.btn {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    padding: 15px 28px;

    border-radius: 12px;

    font-weight: 600;

}

.btn-primary {

    background: linear-gradient(
        135deg,
        var(--primary),
        var(--secondary)
    );

    color: #050505;

    box-shadow: 0 0 35px rgba(0,200,255,.25);

} */

/* --========================================-- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 15px 28px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    cursor: pointer;
    border: none;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    user-select: none;
    transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
  }
 
  .btn:focus-visible {
    outline: 2px solid #fff;
    outline-offset: 3px;
  }
 
  /* Primary - gradient, glow */
  .btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #050505;
    box-shadow: 0 0 35px rgba(0,200,255,.25);
  }
 
  .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0,200,255,.32);
  }
 
  .btn-primary:active {
    transform: translateY(0);
    box-shadow: 0 0 20px rgba(0,200,255,.20);
  }
 
  /* Secondary - outlined, subtle */
.btn-secondary {
  border: 1px solid var(--border);
  background: rgba(255,255,255,.03);
  color: #e8e8ec;
  font-family: inherit;
  font-size: inherit;
}

.btn-secondary:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
}

.btn-secondary:active,
.btn-secondary:focus {
  transform: translateY(0);
  border-color: var(--primary);
  color: var(--primary);
  outline: none;
  box-shadow: none;
}
 
  .btn svg { width: 18px; height: 18px; }

/* ---------- Graph ---------- */

.graph-card {

    background: linear-gradient(
        180deg,
        rgba(255,255,255,.04),
        rgba(255,255,255,.02)
    );

    border: 1px solid var(--border);

    border-radius: var(--radius);

    padding: 36px;

    box-shadow: 0 30px 80px rgba(0,0,0,.45);

}

.graph-card pre {

    color: var(--primary);

    font-size: 1rem;

    line-height: 1.8;

    font-family: Consolas, monospace;

}

/* ---------- Stats ---------- */

.stats {

    padding-bottom: 120px;

}

.stats-grid {

    display: grid;

    grid-template-columns: repeat(4,1fr);

    gap: 22px;

}

.stat-card {

    background: var(--surface);

    border: 1px solid var(--border);

    border-radius: var(--radius);

    padding: 36px;

    text-align: center;

    transition: .35s;

}

.stat-card:hover {

    transform: translateY(-6px);

    border-color: var(--primary);

}

.stat-card h2 {

    font-size: 3rem;

    color: var(--primary);

}

.stat-card p {

    color: var(--muted);

}

/* ---------- Steps ---------- */

.steps {

    display: grid;

    grid-template-columns: repeat(4,1fr);

    gap: 24px;

}

.step {

    background: var(--surface);

    border: 1px solid var(--border);

    border-radius: var(--radius);

    padding: 40px;

    transition: .3s;

}

.step:hover {

    transform: translateY(-8px);

    border-color: var(--secondary);

}

.step span {

    font-size: 2rem;

    color: var(--primary);

}

.step h3 {

    margin: 18px 0;

}

.step p {

    color: var(--muted);

}

/* ---------- Comparison ---------- */

.comparison {

    display: grid;

    grid-template-columns: repeat(2,1fr);

    gap: 28px;

}

.comparison-card {

    background: var(--surface);

    border: 1px solid var(--border);

    border-radius: var(--radius);

    padding: 40px;

}

.comparison-card.active {

    border-color: var(--primary);

    box-shadow: 0 0 40px rgba(53,230,193,.08);

}

.comparison-card h3 {

    margin-bottom: 24px;

}

.comparison-card li {

    padding: 12px 0;

    color: var(--muted);

    border-bottom: 1px solid rgba(255,255,255,.05);

}

/* ---------- Features ---------- */

.feature-grid {

    display: grid;

    grid-template-columns: repeat(3,1fr);

    gap: 24px;

}

.feature {

    background: var(--surface);

    border: 1px solid var(--border);

    border-radius: var(--radius);

    padding: 34px;

    transition: .3s;

}

.feature:hover {

    border-color: var(--primary);

    transform: translateY(-8px);

}

.feature h3 {

    margin-bottom: 16px;

}

.feature p {

    color: var(--muted);

}

/* ---------- Terminal ---------- */

/* .terminal {

    background: #0a0d13;

    border: 1px solid var(--border);

    border-radius: var(--radius);

    padding: 40px;

    overflow-x: auto;

}

.terminal pre {

    color: #b7ffea;

    font-family: Consolas, monospace;

    line-height: 1.8;

} */

.terminal-wrapper{

margin-top:40px;

}

.terminal-tabs{

display:flex;

gap:12px;

margin-bottom:18px;

flex-wrap:wrap;

}

.tab{

padding:10px 18px;

background:#111;

border:1px solid #2a2a2a;

border-radius:10px;

color:#bbb;

cursor:pointer;

transition:.3s;

}

.tab:hover{

border-color:#35E6C1;

color:white;

}

.tab.active{

background:#35E6C1;

color:#050505;

}

.terminal-slider{

position:relative;

}

.terminal{

display:none;

background:#0b0d12;

border:1px solid #20242d;

border-radius:18px;

padding:28px;

height:500px;

/* Vertical scroll */

overflow-y:auto;

/* Horizontal scroll */

overflow-x:auto;

-ms-overflow-style: none;

scrollbar-width: none;
}

.terminal::-webkit-scrollbar { display: none; }

.terminal.active{

display:block;

}

.terminal pre{

font-family:Consolas, monospace;

font-size:15px;

line-height:1.8;

min-width:700px;

/* Don't wrap */

white-space:pre;

color:#b9ffe8;

}

/* ---------- CTA ---------- */

.cta {

    padding: 120px 0;

}

.cta-card {

    background: linear-gradient(
        135deg,
        rgba(53,230,193,.08),
        rgba(0,200,255,.08)
    );

    border: 1px solid rgba(53,230,193,.18);

    border-radius: 24px;

    padding: 80px;

    text-align: center;

}

.cta-card h2 {

    font-size: clamp(2rem,5vw,3.5rem);

    margin-bottom: 18px;

}

.cta-card p {

    max-width: 700px;

    margin: auto auto 40px;

    color: var(--muted);

}

/* ---------- Footer ---------- */

footer {

    border-top: 1px solid rgba(255,255,255,.05);

    padding: 45px 0;

}

.footer {

    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 40px;

}

.footer p {

    color: var(--muted);

}

.footer div:last-child {

    display: flex;

    gap: 28px;

}

.footer a {

    color: var(--muted);

}

.footer a:hover {

    color: white;

}

/* ---------- Responsive ---------- */

@media (max-width: 1024px) {

.hero-grid,
.steps,
.feature-grid,
.stats-grid,
.comparison{

grid-template-columns:1fr 1fr;

}

}

@media (max-width:768px){

nav{

display:none;

}

.hero-grid,
.steps,
.feature-grid,
.stats-grid,
.comparison,
.footer{

grid-template-columns:1fr;

}

.hero{

padding:70px 0;

}

.hero h1{

font-size:3rem;

}

.cta-card{

padding:50px 30px;

}

.section{

padding:90px 0;

}

}