 /* ─── DESIGN TOKENS ─────────────────────────────── */
 html, body {
  width: 100%;
  overflow-x: hidden;
}
  :root {
    --accent: #e84545;
    --accent2: #ff7f50;
    --accent-glow: rgba(232,69,69,.35);
    --font-display: 'Syne', sans-serif;
    --font-body: 'DM Sans', sans-serif;
    --radius: 14px;
    --nav-h: 72px;
    --transition: .35s cubic-bezier(.4,0,.2,1);
  }
 
  [data-theme="dark"] {
    --bg: #080c10;
    --bg2: #0e1318;
    --bg3: #141b23;
    --surface: rgba(255,255,255,.04);
    --surface-hover: rgba(255,255,255,.08);
    --border: rgba(255,255,255,.08);
    --text: #f0f4f8;
    --text-muted: #7a8fa6;
    --text-faint: #3a4d60;
    --canvas-opacity: 1;
    --logo-filter: none;
    --stat-bg: rgba(232,69,69,.08);
  }
  [data-theme="light"] {
    --bg: #f4f6f9;
    --bg2: #eaecf1;
    --bg3: #ffffff;
    --surface: rgba(0,0,0,.04);
    --surface-hover: rgba(0,0,0,.07);
    --border: rgba(0,0,0,.09);
    --text: #0c1420;
    --text-muted: #556070;
    --text-faint: #b0b8c4;
    --canvas-opacity: .5;
    --logo-filter: invert(1) hue-rotate(180deg);
    --stat-bg: rgba(232,69,69,.07);
  }
 
  /* ─── RESET ─────────────────────────────────────── */
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body {
    background: var(--bg);
    color: var(--text);
    font-family: var(--font-body);
    line-height: 1.65;
    overflow-x: hidden;
    transition: background var(--transition), color var(--transition);
  }
  a { color: inherit; text-decoration: none; }
  img { display: block; max-width: 100%; }
 
  /* ─── 3-D CANVAS BACKGROUND ─────────────────────── */
  #bg-canvas {
    position: fixed;
    inset: 0;
    z-index: 0;
    opacity: var(--canvas-opacity);
    pointer-events: none;
    transition: opacity var(--transition);
  }
 
  /* ─── NAV ────────────────────────────────────────── */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    height: var(--nav-h);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 clamp(1.5rem, 5vw, 4rem);
    background: transparent;
    transition: background var(--transition), backdrop-filter var(--transition), box-shadow var(--transition);
  }
  nav.scrolled {
    background: color-mix(in srgb, var(--bg) 80%, transparent);
    backdrop-filter: blur(18px) saturate(160%);
    box-shadow: 0 1px 0 var(--border);
  }
  .nav-logo {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.35rem;
    letter-spacing: -.02em;
    display: flex;
    align-items: center;
    gap: .5rem;
  }
  .nav-logo span.dot { color: var(--accent); }
  .nav-logo svg { width: 28px; height: 28px; }
 
  .nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
  }
  .nav-links a {
    font-size: .875rem;
    font-weight: 500;
    color: var(--text-muted);
    transition: color var(--transition);
  }
  .nav-links a:hover { color: var(--text); }
 
  .nav-actions { display: flex; align-items: center; gap: 1rem; }
 
  /* Theme toggle */
  .theme-btn {
    width: 40px; height: 40px;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: var(--surface);
    cursor: pointer;
    display: grid; place-items: center;
    color: var(--text-muted);
    transition: all var(--transition);
  }
  .theme-btn:hover { background: var(--surface-hover); color: var(--text); }
  .icon-sun, .icon-moon { width: 18px; height: 18px; }
  [data-theme="dark"] .icon-sun { display: none; }
  [data-theme="light"] .icon-moon { display: none; }
 
  .btn-cta {
    padding: .55rem 1.4rem;
    background: var(--accent);
    color: #fff;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: .875rem;
    border-radius: 9px;
    border: none;
    cursor: pointer;
    transition: all var(--transition);
    box-shadow: 0 0 0 0 var(--accent-glow);
    letter-spacing: .01em;
  }
  .btn-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 24px var(--accent-glow);
  }
    /* ─── HERO ───────────────────────────────────────── */
  .hero {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: calc(var(--nav-h) + 2rem) clamp(1.5rem, 6vw, 4rem) 6rem;
  }
 
  .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .35rem 1rem;
    border: 1px solid var(--border);
    border-radius: 100px;
    background: var(--surface);
    font-size: .78rem;
    font-weight: 500;
    color: var(--text-muted);
    margin-bottom: 2rem;
    backdrop-filter: blur(8px);
    animation: fadeUp .8s .2s both;
  }
  .badge-dot {
    width: 7px; height: 7px;
    background: var(--accent);
    border-radius: 50%;
    animation: pulse 2s infinite;
  }
 
 .hero h1 {
  font-size: clamp(3rem, 8vw, 7rem);
  line-height: .95;
}
  .hero h1 em {
    font-style: normal;
    background: linear-gradient(135deg, var(--accent), var(--accent2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
 
  .hero-sub {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--text-muted);
    max-width: 52ch;
    margin: 0 auto 2.8rem;
    font-weight: 300;
    animation: fadeUp .8s .5s both;
  }
 
  .hero-btns {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    animation: fadeUp .8s .65s both;
  }
  .btn-outline {
    padding: .7rem 1.6rem;
    border: 1px solid var(--border);
    background: var(--surface);
    color: var(--text);
    font-family: var(--font-display);
    font-weight: 600;
    font-size: .95rem;
    border-radius: 10px;
    cursor: pointer;
    transition: all var(--transition);
    backdrop-filter: blur(8px);
  }
  .btn-outline:hover { background: var(--surface-hover); border-color: var(--accent); }
  .btn-primary {
    padding: .7rem 1.6rem;
    background: var(--accent);
    color: #fff;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: .95rem;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    transition: all var(--transition);
    box-shadow: 0 0 30px var(--accent-glow);
  }
  .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 32px var(--accent-glow); }
 
  .hero-stats {
    display: flex;
    gap: clamp(2rem, 5vw, 5rem);
    margin-top: 5rem;
    animation: fadeUp .8s .8s both;
  }
  .hero-stat { text-align: center; }
  .hero-stat strong {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    color: var(--accent);
    letter-spacing: -.03em;
  }
  .hero-stat span {
    font-size: .8rem;
    color: var(--text-muted);
    font-weight: 500;
    letter-spacing: .05em;
    text-transform: uppercase;
  }
 
  /* ─── SECTIONS WRAPPER ───────────────────────────── */
  section {
    position: relative;
    z-index: 1;
    padding: 7rem clamp(1.5rem, 6vw, 8rem);
  }
  .section-label {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-size: .72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: var(--accent);
    margin-bottom: 1rem;
  }
  .section-label::before {
    content: '';
    display: block;
    width: 20px;
    height: 2px;
    background: var(--accent);
  }
  .section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 800;
    letter-spacing: -.03em;
    line-height: 1.05;
    max-width: 18ch;
    margin-bottom: 1.2rem;
  }
  .section-desc {
    color: var(--text-muted);
    font-size: 1.05rem;
    max-width: 52ch;
    font-weight: 300;
    margin-bottom: 4rem;
  }
 
  /* ─── FEATURES ───────────────────────────────────── */
  #features { background: var(--bg); }
  .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
  }
  .feat-card {
    background: var(--bg);
    padding: 2.5rem;
    transition: background var(--transition);
    position: relative;
    overflow: hidden;
  }
  .feat-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--accent-glow), transparent 60%);
    opacity: 0;
    transition: opacity var(--transition);
  }
  .feat-card:hover { background: var(--bg2); }
  .feat-card:hover::after { opacity: 1; }
  .feat-icon {
    width: 52px; height: 52px;
    border-radius: 13px;
    background: var(--stat-bg);
    display: grid; place-items: center;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(232,69,69,.15);
  }
  .feat-icon svg { width: 24px; height: 24px; color: var(--accent); }
  .feat-card h3 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: -.02em;
    margin-bottom: .6rem;
  }
  .feat-card p { font-size: .9rem; color: var(--text-muted); line-height: 1.7; }
 
  /* ─── HOW IT WORKS ───────────────────────────────── */
  #how { background: var(--bg2); }
  .steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    counter-reset: step;
  }
  .step {
    position: relative;
    padding: 2rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--bg3);
    transition: all var(--transition);
  }
  .step:hover { border-color: var(--accent); transform: translateY(-4px); }
  .step-num {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 800;
    color: var(--text-faint);
    line-height: 1;
    margin-bottom: .8rem;
    letter-spacing: -.04em;
  }
  .step h3 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.05rem;
    margin-bottom: .5rem;
  }
  .step p { font-size: .88rem; color: var(--text-muted); }
  .step-connector {
    position: absolute;
    right: -1.5rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-faint);
    font-size: 1.2rem;
    z-index: 2;
    display: none;
  }
 
  /* ─── LIVE MONITOR ───────────────────────────────── */
  #monitor { background: var(--bg); }
  .monitor-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: start;
  }
  .monitor-panel {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--bg2);
    overflow: hidden;
  }
  .panel-header {
    display: flex;
    align-items: center;
    gap: .6rem;
    padding: 1rem 1.4rem;
    border-bottom: 1px solid var(--border);
    font-size: .82rem;
    font-weight: 600;
    color: var(--text-muted);
    letter-spacing: .04em;
    text-transform: uppercase;
  }
  .panel-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); animation: pulse 2s infinite; }
  .wave-canvas-wrap { padding: 1.5rem; }
  #waveCanvas { width: 100%; height: 120px; border-radius: 8px; }
  .alert-list { padding: .5rem; }
  .alert-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: .75rem 1rem;
    border-radius: 9px;
    margin-bottom: .35rem;
    transition: background var(--transition);
    cursor: default;
  }
  .alert-item:hover { background: var(--surface); }
  .alert-sev {
    width: 8px; height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
  }
  .sev-high { background: #e84545; box-shadow: 0 0 8px #e84545; }
  .sev-med  { background: #f5a623; box-shadow: 0 0 8px #f5a623; }
  .sev-low  { background: #4caf7d; box-shadow: 0 0 8px #4caf7d; }
  .alert-info { flex: 1; }
  .alert-info strong { display: block; font-size: .88rem; font-weight: 500; }
  .alert-info span { font-size: .78rem; color: var(--text-muted); }
  .alert-mag {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1rem;
    color: var(--text);
  }
  .monitor-info { display: flex; flex-direction: column; gap: 1.5rem; }
  .info-card {
    padding: 1.8rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--bg2);
  }
  .info-card h4 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: .4rem;
  }
  .info-card p { font-size: .88rem; color: var(--text-muted); line-height: 1.65; }
  .progress-bar {
    margin-top: 1rem;
    height: 5px;
    background: var(--border);
    border-radius: 100px;
    overflow: hidden;
  }
  .progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--accent), var(--accent2));
    border-radius: 100px;
    animation: fillBar 2.5s ease forwards;
  }
  @keyframes fillBar { from { width: 0; } to { width: var(--w); } }
  /* ─── TECH ───────────────────────────────────────── */
  #technology { background: var(--bg2); }
  .tech-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
  }
  .tech-visual {
    aspect-ratio: 1;
    border-radius: 20px;
    border: 1px solid var(--border);
    background: var(--bg3);
    display: grid; place-items: center;
    overflow: hidden;
    position: relative;
  }
  #techCanvas { width: 100%; height: 100%; }
  .tech-list { display: flex; flex-direction: column; gap: 1.5rem; }
  .tech-item {
    display: flex;
    gap: 1.2rem;
    align-items: flex-start;
    padding: 1.4rem;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: var(--bg3);
    transition: all var(--transition);
  }
  .tech-item:hover { border-color: var(--accent); transform: translateX(4px); }
  .tech-ico {
    width: 42px; height: 42px; flex-shrink: 0;
    border-radius: 10px;
    background: var(--stat-bg);
    display: grid; place-items: center;
    border: 1px solid rgba(232,69,69,.15);
  }
  .tech-ico svg { width: 20px; height: 20px; color: var(--accent); }
  .tech-item h4 { font-family: var(--font-display); font-weight: 700; font-size: .95rem; margin-bottom: .3rem; }
  .tech-item p { font-size: .84rem; color: var(--text-muted); }
 
  /* ─── PRICING ────────────────────────────────────── */
  #pricing { background: var(--bg); }
  .plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
  }
  .plan-card {
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 2.2rem;
    background: var(--bg2);
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
  }
  .plan-card:hover { transform: translateY(-4px); border-color: var(--accent); }
  .plan-card.featured {
    border-color: var(--accent);
    background: color-mix(in srgb, var(--accent) 5%, var(--bg2));
  }
  .plan-card.featured::before {
    content: 'Most Popular';
    position: absolute;
    top: 1.2rem; right: 1.2rem;
    background: var(--accent);
    color: #fff;
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: .2rem .7rem;
    border-radius: 100px;
  }
  .plan-name {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.1rem;
    margin-bottom: .4rem;
  }
  .plan-desc { font-size: .82rem; color: var(--text-muted); margin-bottom: 1.8rem; }
  .plan-price {
    font-family: var(--font-display);
    font-size: 2.8rem;
    font-weight: 800;
    letter-spacing: -.04em;
    color: var(--text);
    margin-bottom: .2rem;
  }
  .plan-price sup { font-size: 1.2rem; vertical-align: super; }
  .plan-price sub { font-size: .85rem; font-weight: 400; color: var(--text-muted); }
  .plan-divider { height: 1px; background: var(--border); margin: 1.5rem 0; }
  .plan-features { list-style: none; display: flex; flex-direction: column; gap: .7rem; margin-bottom: 2rem; }
  .plan-features li { font-size: .875rem; display: flex; gap: .7rem; align-items: flex-start; }
  .plan-features li::before { content: '✓'; color: var(--accent); font-weight: 700; flex-shrink: 0; margin-top: .05em; }
  .plan-btn {
    width: 100%;
    padding: .75rem;
    border-radius: 10px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: .9rem;
    cursor: pointer;
    transition: all var(--transition);
  }
  .plan-btn.outlined {
    background: transparent;
    border: 1px solid var(--border);
    color: var(--text);
  }
  .plan-btn.outlined:hover { border-color: var(--accent); background: var(--stat-bg); }
  .plan-btn.solid {
    background: var(--accent);
    border: 1px solid var(--accent);
    color: #fff;
    box-shadow: 0 4px 20px var(--accent-glow);
  }
  .plan-btn.solid:hover { transform: translateY(-1px); box-shadow: 0 8px 30px var(--accent-glow); }
 
  /* ─── TESTIMONIALS ───────────────────────────────── */
  #testimonials { background: var(--bg2); }
  .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
  }
  .testi-card {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem;
    background: var(--bg3);
    transition: all var(--transition);
  }
  .testi-card:hover { border-color: var(--accent); transform: translateY(-3px); }
  .testi-stars { color: #f5a623; font-size: .9rem; margin-bottom: 1rem; }
  .testi-text { font-size: .92rem; color: var(--text-muted); line-height: 1.75; font-style: italic; margin-bottom: 1.5rem; }
  .testi-author { display: flex; align-items: center; gap: .9rem; }
  .testi-avatar {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--accent2));
    display: grid; place-items: center;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: .9rem;
    color: #fff;
    flex-shrink: 0;
  }
  .testi-author strong { display: block; font-size: .9rem; font-weight: 600; }
  .testi-author span { font-size: .78rem; color: var(--text-muted); }
 
  /* ─── CTA BANNER ─────────────────────────────────── */
  #cta {
    padding: 7rem clamp(1.5rem, 6vw, 8rem);
    background: var(--bg);
  }
  .cta-inner {
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 5rem 3rem;
    text-align: center;
    background: linear-gradient(135deg, color-mix(in srgb, var(--accent) 8%, var(--bg2)), var(--bg2));
    position: relative;
    overflow: hidden;
  }
  .cta-inner::before {
    content: '';
    position: absolute;
    width: 600px; height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
  }
  .cta-inner h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 800;
    letter-spacing: -.03em;
    margin-bottom: 1rem;
    position: relative;
  }
  .cta-inner p {
    color: var(--text-muted);
    max-width: 46ch;
    margin: 0 auto 2.5rem;
    position: relative;
  }
  .cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; position: relative; }
 
  /* ─── FOOTER ─────────────────────────────────────── */
  footer {
    position: relative;
    z-index: 1;
    border-top: 1px solid var(--border);
    padding: 3rem clamp(1.5rem, 6vw, 8rem);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    background: var(--bg);
  }
  .footer-brand {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.1rem;
    letter-spacing: -.02em;
  }
  .footer-brand span { color: var(--accent); }
  .footer-links { display: flex; gap: 1.8rem; flex-wrap: wrap; }
  .footer-links a {
    font-size: .82rem;
    color: var(--text-muted);
    transition: color var(--transition);
  }
  .footer-links a:hover { color: var(--text); }
  .footer-copy { font-size: .8rem; color: var(--text-faint); }
 
  /* ─── ANIMATIONS ─────────────────────────────────── */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  @keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%       { opacity: .6; transform: scale(.85); }
  }
  .reveal { opacity: 0; transform: translateY(32px); transition: opacity .7s, transform .7s; }
  .reveal.visible { opacity: 1; transform: none; }
 
  /* ─── MOBILE ─────────────────────────────────────── */
  @media (max-width: 900px) {
    .nav-links { display: none; }
    .monitor-wrap, .tech-grid { grid-template-columns: 1fr; }
    .hero-stats { gap: 2rem; }
  }
  @media (max-width: 600px) {
    .hero-stats { flex-direction: column; gap: 1rem; }
  }
  /* ─── HAMBURGER BUTTON ───────────────── */
.menu-toggle {
  font-size: 1.5rem;
  background: none;
  border: none;
  color: var(--text);
  cursor: pointer;
  display: none;
}

/* hide desktop nav on mobile */
@media (max-width: 1100px) {
  .nav-links {
    display: none;
  }

  .menu-toggle {
    display: block;
  }
}
.menu-toggle {
  font-size: 1.8rem;
  background: none;
  border: none;
  color: var(--text);
  cursor: pointer;
  display: none;
}

/* MOBILE NAV */
@media (max-width: 1100px) {
  .nav-links {
    display: none;
  }
  .menu-toggle {
    display: block;
  }
}

/* SIDEBAR */
.sidebar {
  position: fixed;
  top: 0;
  left: -280px;
  width: 280px;
  height: 100vh;
  background: var(--bg2);
  border-right: 1px solid var(--border);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: 0.3s ease;
  z-index: 9999;
}

.sidebar.active {
  left: 0;
}

.sidebar a {
  color: var(--text);
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--border);
}

.sidebar a:hover {
  color: var(--accent);
}

.close-btn {
  align-self: flex-end;
  font-size: 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
}
/* close button */
.close-btn {
  align-self: flex-end;
  font-size: 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text);
  margin-bottom: 1rem;
}




.page-title{
  text-align:center;
  margin:2rem 0;
  font-family:var(--font-display);
}

.card{
  background:var(--bg2);
  padding:1.5rem;
  margin:1rem auto;
  border:1px solid var(--border);
  border-radius:12px;
  max-width:600px;
}

input{
  width:100%;
  padding:.7rem;
  margin:.4rem 0;
  border-radius:8px;
  border:1px solid var(--border);
  background:var(--bg3);
  color:var(--text);
}

button{
  padding:.6rem 1rem;
  background:var(--accent);
  color:#fff;
  border:none;
  border-radius:8px;
  cursor:pointer;
  margin-top:.5rem;
}

.machine-card{
  background:var(--bg2);
  padding:1.2rem;
  margin:1rem auto;
  border-radius:12px;
  border:1px solid var(--border);
  max-width:600px;
}
.machine-card{
  background: var(--bg2);
  padding: 1.2rem;
  margin: 1rem 0;
  border-radius: 12px;
  border: 1px solid var(--border);
}





/* ─── RESPONSIVE ───────────────────── */
@media (max-width: 1100px) {
  .nav-links {
    display: none;
  }

  .menu-toggle {
    display: block;
  }
}