/* =================================================================
   24/7 Go Vending — stylesheet  (neon-green / black / white)
   Brand color #39FF14 sampled from the logo. Change tokens in :root.
================================================================= */

:root {
  /* Brand */
  --green:      #39FF14;   /* neon — signature accent */
  --green-deep: #28D60A;   /* hover / pressed */
  --green-dim:  #1F8F0C;   /* shadow green from logo */

  /* Dark surfaces */
  --black:      #000000;   /* nav + footer (logo blends here) */
  --bg:         #07090A;   /* page background */
  --bg-2:       #0E1213;   /* cards / elevated */
  --bg-3:       #161B1C;   /* hover */
  --line:       rgba(255,255,255,0.10);
  --line-2:     rgba(255,255,255,0.18);

  /* Light surfaces (focal moments — steps, form) */
  --light:      #F4F6F4;
  --light-2:    #FFFFFF;
  --light-line: #E2E7E2;
  --ink:        #0C0F0D;   /* text on light */
  --ink-dim:    #586059;

  /* Text on dark */
  --white:      #FFFFFF;
  --text:       #C7CEC9;   /* body on dark */
  --text-dim:   #828B85;   /* muted on dark */

  /* Type */
  --display: "Sora", system-ui, sans-serif;
  --body: "Manrope", system-ui, sans-serif;

  /* Rhythm */
  --maxw: 1160px;
  --gutter: clamp(20px, 5vw, 48px);
  --radius: 18px;
  --radius-sm: 12px;
  --shadow: 0 24px 60px -30px rgba(0,0,0,0.8);
  --green-shadow: 0 14px 30px -12px rgba(57,255,20,0.45);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
h1,h2,h3,h4 { font-family: var(--display); line-height: 1.08; letter-spacing: -0.02em; margin: 0; font-weight: 700; color: var(--white); }
p { margin: 0; }

.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(64px, 9vw, 116px); }

/* Light section wrapper */
.section-light { background: var(--light); color: var(--ink); }
.section-light h1,.section-light h2,.section-light h3,.section-light h4 { color: var(--ink); }
.section-light .section-head p { color: var(--ink-dim); }
.section-light .eyebrow { color: var(--ink-dim); }

/* ---------- Eyebrow ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--body); font-weight: 700; font-size: 0.76rem;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--text-dim);
}
.eyebrow::before { content: ""; width: 22px; height: 2px; background: var(--green); border-radius: 2px; box-shadow: 0 0 10px var(--green); }

.section-head { max-width: 660px; margin-bottom: clamp(34px, 5vw, 56px); }
.section-head h2 { font-size: clamp(1.9rem, 4vw, 2.95rem); margin-top: 14px; }
.section-head p { color: var(--text); margin-top: 16px; font-size: 1.08rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--display); font-weight: 600; font-size: 0.98rem; letter-spacing: -0.01em;
  padding: 14px 24px; border-radius: 999px; border: 1.5px solid transparent; cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary { background: var(--green); color: #04210B; box-shadow: var(--green-shadow); }
.btn-primary:hover { background: var(--green-deep); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--white); border-color: var(--line-2); }
.btn-ghost:hover { border-color: var(--green); color: var(--green); transform: translateY(-2px); }
.section-light .btn-ghost { color: var(--ink); border-color: var(--light-line); }
.section-light .btn-ghost:hover { border-color: var(--ink); color: var(--ink); }
.btn-dark { background: #04210B; color: var(--green); }
.btn-on-green { background: #04210B; color: var(--white); }
.btn-on-green:hover { background: #000; transform: translateY(-2px); }

/* ===============================================================  NAV  */
.site-nav { position: sticky; top: 0; z-index: 60; background: var(--black); border-bottom: 1px solid var(--line); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; min-height: 86px; }
.brand { display: flex; align-items: center; }
.brand .logo-img { height: 116px; width: auto; mix-blend-mode: screen; }
.nav-links { display: flex; align-items: center; gap: 4px; list-style: none; margin: 0; padding: 0; }
.nav-links a { font-weight: 600; font-size: 0.96rem; color: var(--text); padding: 9px 14px; border-radius: 10px; transition: color 0.16s ease, background 0.16s ease; }
.nav-links a:hover { color: var(--white); background: rgba(255,255,255,0.05); }
.nav-links a.active { color: var(--white); }
.nav-links a.active::after { content: ""; display: block; height: 2px; width: 18px; margin: 3px auto 0; background: var(--green); border-radius: 2px; box-shadow: 0 0 8px var(--green); }
.nav-right { display: flex; align-items: center; gap: 14px; }
.nav-link-request { display: none; }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: transform 0.25s ease, opacity 0.2s ease; }
.nav-toggle span + span { margin-top: 6px; }
.nav-open .nav-toggle span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ===============================================================  HERO  */
.hero { position: relative; overflow: hidden; padding-block: clamp(56px, 8vw, 104px); }
.hero::before { content: ""; position: absolute; inset: 0; background: radial-gradient(900px 520px at 78% 30%, rgba(57,255,20,0.10), transparent 70%); pointer-events: none; }
.hero-grid { position: relative; display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(32px, 5vw, 64px); align-items: center; }
.hero h1 { font-size: clamp(2.4rem, 5.6vw, 4.25rem); font-weight: 800; margin-top: 22px; }
.hero h1 .glow-text { color: var(--green); text-shadow: 0 0 28px rgba(57,255,20,0.45); }
.hero-sub { margin-top: 22px; font-size: clamp(1.05rem, 1.6vw, 1.22rem); color: var(--text); max-width: 31em; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 10px 26px; margin-top: 34px; padding-top: 26px; border-top: 1px solid var(--line); }
.hero-trust span { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; font-size: 0.92rem; color: var(--text-dim); }
.hero-trust span::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--green); box-shadow: 0 0 8px var(--green); }

.hero-visual { position: relative; display: grid; place-items: center; }
.hero-visual .glow-orb { position: absolute; inset: 2% 6%; background: radial-gradient(circle at 50% 44%, rgba(57,255,20,0.30), transparent 62%); filter: blur(6px); z-index: 0; }
.hero-visual .machine-art { position: relative; z-index: 1; width: min(370px, 82%); filter: drop-shadow(0 30px 50px rgba(0,0,0,0.6)); }
.hero-badge { position: absolute; z-index: 2; bottom: 7%; left: 0; background: var(--bg-2); border: 1px solid var(--line-2); border-radius: 14px; padding: 12px 16px; box-shadow: var(--shadow); display: flex; align-items: center; gap: 11px; }
.hero-badge .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 4px rgba(57,255,20,0.18), 0 0 10px var(--green); }
.hero-badge b { font-family: var(--display); font-size: 0.95rem; color: var(--white); }
.hero-badge small { display: block; color: var(--text-dim); font-size: 0.78rem; }

/* Full-bleed photo hero (home) */
.hero-photo {
  background-image: url('assets/hero-lobby.jpg');
  background-size: cover;
  background-position: 46% 48%;
  background-repeat: no-repeat;
  min-height: clamp(560px, 80vh, 768px);
  display: flex;
  align-items: center;
}
.hero-photo::before {
  background:
    linear-gradient(90deg, rgba(4,6,7,0.95) 0%, rgba(4,6,7,0.88) 24%, rgba(4,6,7,0.55) 38%, rgba(4,6,7,0.12) 50%, rgba(4,6,7,0) 62%),
    linear-gradient(180deg, rgba(4,6,7,0.3) 0%, transparent 24%, transparent 74%, rgba(4,6,7,0.55) 100%);
}
.hero-photo .container { position: relative; z-index: 2; width: 100%; }
.hero-photo .hero-copy { max-width: 524px; }
.hero-photo .hero-copy h1 { text-shadow: 0 2px 26px rgba(0,0,0,0.6); }
.hero-photo .hero-sub { text-shadow: 0 1px 16px rgba(0,0,0,0.85), 0 0 2px rgba(0,0,0,0.5); }
.hero-photo .eyebrow { text-shadow: 0 1px 10px rgba(0,0,0,0.7); }
.hero-photo .hero-trust span { color: var(--text); text-shadow: 0 1px 10px rgba(0,0,0,0.8); }
@media (max-width: 860px) {
  .hero-photo {
    align-items: flex-end;
    min-height: clamp(520px, 86vh, 680px);
    background-position: 58% 42%;
  }
  .hero-photo::before {
    background: linear-gradient(180deg, rgba(4,6,7,0.72) 0%, rgba(4,6,7,0.5) 38%, rgba(4,6,7,0.82) 82%, rgba(4,6,7,0.95) 100%);
  }
  .hero-photo .hero-copy { max-width: 100%; }
}

/* ===============================================================  VALUE STRIP  */
.value-strip { background: var(--black); border-block: 1px solid var(--line); }
.value-strip .container { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; padding-block: 42px; }
.value-cell .num { font-family: var(--display); font-size: 1.8rem; font-weight: 800; color: var(--green); }
.value-cell p { color: var(--text-dim); font-size: 0.95rem; margin-top: 4px; }

/* ===============================================================  FEATURE GRID (vending-grid signature)  */
.vgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.vcell { background: var(--bg-2); padding: 30px 28px 34px; position: relative; transition: background 0.2s ease; }
.vcell::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--green); box-shadow: 0 0 14px var(--green); transform: scaleX(0); transform-origin: left; transition: transform 0.28s ease; }
.vcell:hover { background: var(--bg-3); }
.vcell:hover::before { transform: scaleX(1); }
.vcell .ico { width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center; background: rgba(57,255,20,0.12); color: var(--green); margin-bottom: 18px; }
.vcell .ico svg { width: 24px; height: 24px; }
.vcell h3 { font-size: 1.18rem; }
.vcell p { color: var(--text); margin-top: 10px; font-size: 0.97rem; }

/* ===============================================================  MODEL CARDS  */
.models { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.model-card { background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--radius); padding: 34px 32px; position: relative; }
.model-card.featured { border-color: var(--green); box-shadow: 0 0 0 1px var(--green), 0 30px 60px -40px rgba(57,255,20,0.5); }
.model-tag { position: absolute; top: 26px; right: 26px; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: #04210B; background: var(--green); padding: 5px 11px; border-radius: 999px; }
.model-card h3 { font-size: 1.5rem; color: var(--white); }
.section-light .model-card h3 { color: var(--white); }
.model-card .price { font-family: var(--display); font-weight: 800; font-size: 2.2rem; margin-top: 12px; color: var(--white); }
.model-card .price small { font-family: var(--body); font-weight: 600; font-size: 0.92rem; color: var(--text-dim); }
.model-card .desc { color: var(--text); margin-top: 8px; }
.checklist { list-style: none; margin: 22px 0 0; padding: 0; display: grid; gap: 12px; }
.checklist li { display: flex; gap: 11px; align-items: flex-start; font-size: 0.97rem; color: var(--text); }
.checklist li svg { flex: none; width: 20px; height: 20px; color: var(--green); margin-top: 2px; }

/* ===============================================================  CHIPS  */
.chips { display: flex; flex-wrap: wrap; gap: 12px; }
.chip { display: inline-flex; align-items: center; gap: 9px; background: var(--bg-2); border: 1px solid var(--line); border-radius: 999px; padding: 11px 18px; font-weight: 600; font-size: 0.95rem; color: var(--text); }
.chip svg { width: 18px; height: 18px; color: var(--green); }
.section-light .chip { background: var(--light-2); border-color: var(--light-line); color: var(--ink); }

/* ===============================================================  STEPS  */
.steps { display: grid; gap: 20px; }
.step { display: grid; grid-template-columns: auto 1fr; gap: 26px; align-items: start; background: var(--light-2); border: 1px solid var(--light-line); border-radius: var(--radius); padding: 30px 32px; }
.step-num { font-family: var(--display); font-weight: 800; font-size: 1.5rem; color: var(--ink); width: 58px; height: 58px; display: grid; place-items: center; border-radius: 14px; background: rgba(57,255,20,0.16); border: 1px solid rgba(57,255,20,0.55); }
.step h3 { font-size: 1.3rem; }
.step p { color: var(--ink-dim); margin-top: 8px; }

/* we / you split */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.panel { border-radius: var(--radius); padding: 34px 32px; border: 1px solid transparent; }
.panel.we { background: var(--green); color: #04210B; }
.panel.we h3 { color: #04210B; }
.panel.you { background: var(--light-2); border-color: var(--light-line); color: var(--ink); }
.panel.you h3 { color: var(--ink); }
.panel h3 { font-size: 1.35rem; margin-bottom: 18px; }
.panel ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 13px; }
.panel li { display: flex; gap: 12px; align-items: flex-start; font-size: 0.99rem; }
.panel li svg { flex: none; width: 20px; height: 20px; margin-top: 2px; }
.panel.we li { color: #06310F; font-weight: 500; }
.panel.we li svg { color: #04210B; }
.panel.you li { color: var(--ink); }
.panel.you li svg { color: var(--green-dim); }

/* ===============================================================  MACHINE CARDS  */
.machines { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.machine-card { background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: transform 0.2s ease, border-color 0.2s ease; }
.machine-card:hover { transform: translateY(-4px); border-color: var(--line-2); }
.machine-media { position: relative; background: #0a0d0e; border-bottom: 1px solid var(--line); aspect-ratio: 4 / 5; overflow: hidden; }
.machine-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.machine-body { padding: 24px 26px 28px; }
.machine-body .best { font-size: 0.76rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--green); }
.machine-body h3 { font-size: 1.3rem; margin-top: 8px; }
.machine-body p { color: var(--text); margin-top: 10px; font-size: 0.96rem; }
.machine-feats { list-style: none; margin: 18px 0 0; padding: 0; display: grid; gap: 9px; }
.machine-feats li { display: flex; gap: 9px; align-items: center; font-size: 0.92rem; color: var(--text-dim); }
.machine-feats li svg { flex: none; width: 16px; height: 16px; color: var(--green); }

.mix { display: flex; flex-wrap: wrap; gap: 12px; }

/* ===============================================================  CTA BAND (solid neon green)  */
.cta-band { background: var(--green); color: #04210B; border-radius: clamp(20px, 4vw, 32px); padding: clamp(40px, 6vw, 70px); position: relative; overflow: hidden; }
.cta-band::after { content: ""; position: absolute; right: -40px; bottom: -80px; width: 320px; height: 320px; background: radial-gradient(circle, rgba(0,0,0,0.14), transparent 65%); }
.cta-band .inner { position: relative; z-index: 1; max-width: 660px; }
.cta-band h2 { color: #04210B; font-size: clamp(1.8rem, 4vw, 2.7rem); }
.cta-band p { color: #07360F; margin-top: 16px; font-size: 1.08rem; }
.cta-band .hero-actions { margin-top: 30px; }

/* ===============================================================  REQUEST FORM  */
.request-grid { display: grid; grid-template-columns: 1.25fr 0.75fr; gap: clamp(28px, 4vw, 52px); align-items: start; }
.form-card { background: var(--light-2); color: var(--ink); border: 1px solid var(--light-line); border-radius: var(--radius); padding: clamp(26px, 4vw, 40px); }
.form-card h2 { color: var(--ink); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { margin-bottom: 18px; }
.field.full { grid-column: 1 / -1; }
.field label { display: block; font-weight: 600; font-size: 0.9rem; margin-bottom: 7px; color: var(--ink); }
.field label .req { color: var(--green-dim); }
.field input, .field select, .field textarea {
  width: 100%; font-family: var(--body); font-size: 1rem; color: var(--ink);
  background: var(--light); border: 1.5px solid var(--light-line); border-radius: var(--radius-sm);
  padding: 13px 15px; transition: border-color 0.16s ease, box-shadow 0.16s ease, background 0.16s ease;
}
.field textarea { resize: vertical; min-height: 110px; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--green); background: #fff; box-shadow: 0 0 0 4px rgba(57,255,20,0.22); }
.field .hint { font-size: 0.82rem; color: var(--ink-dim); margin-top: 6px; }
.form-error { display: none; background: #fff4f4; border: 1px solid #ffd4d4; color: #b42318; border-radius: var(--radius-sm); padding: 12px 15px; font-size: 0.92rem; margin-bottom: 18px; }
.form-error.show { display: block; }
.form-success { display: none; text-align: center; padding: 24px 8px; }
.form-success.show { display: block; }
.form-success .tick { width: 64px; height: 64px; border-radius: 50%; background: rgba(57,255,20,0.16); color: var(--green-dim); display: grid; place-items: center; margin: 0 auto 18px; }
.form-success .tick svg { width: 34px; height: 34px; }
.form-success h3 { font-size: 1.5rem; color: var(--ink); }
.form-success p { color: var(--ink-dim); margin-top: 10px; }
.form-submitting { opacity: 0.6; pointer-events: none; }

.aside-card { background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 28px; }
.aside-card + .aside-card { margin-top: 20px; }
.aside-card h3 { font-size: 1.2rem; margin-bottom: 18px; }
.next-steps { list-style: none; margin: 0; padding: 0; display: grid; gap: 18px; counter-reset: ns; }
.next-steps li { display: grid; grid-template-columns: auto 1fr; gap: 14px; align-items: start; }
.next-steps li::before { counter-increment: ns; content: counter(ns); font-family: var(--display); font-weight: 800; font-size: 0.95rem; width: 30px; height: 30px; border-radius: 8px; display: grid; place-items: center; background: rgba(57,255,20,0.14); color: var(--green); }
.next-steps b { display: block; color: var(--white); }
.next-steps span { color: var(--text-dim); font-size: 0.92rem; }
.contact-line { display: flex; align-items: center; gap: 12px; margin-top: 14px; font-weight: 600; color: var(--text); }
.contact-line svg { width: 20px; height: 20px; color: var(--green); flex: none; }
.contact-line small { display: block; font-weight: 500; color: var(--text-dim); font-size: 0.82rem; }

/* ===============================================================  FOOTER  */
.site-footer { background: var(--black); color: var(--text); border-top: 1px solid var(--line); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; padding-block: 60px 30px; }
.site-footer .logo-img { height: 116px; width: auto; mix-blend-mode: screen; }
.footer-about { color: var(--text-dim); margin-top: 16px; max-width: 34ch; font-size: 0.95rem; }
.footer-col h4 { font-family: var(--display); font-size: 0.8rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--green); margin-bottom: 16px; }
.footer-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 11px; }
.footer-col a, .footer-col li { color: var(--text-dim); font-size: 0.95rem; }
.footer-col a:hover { color: var(--white); }
.footer-bottom { border-top: 1px solid var(--line); padding-block: 22px 34px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; color: var(--text-dim); font-size: 0.86rem; }

/* ===============================================================  MOTION  */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ===============================================================  RESPONSIVE  */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { order: -1; }
  .hero-visual .machine-art { width: min(300px, 70%); }
  .value-strip .container { grid-template-columns: 1fr 1fr; gap: 30px 24px; }
  .vgrid { grid-template-columns: 1fr 1fr; }
  .machines { grid-template-columns: 1fr 1fr; }
  .request-grid { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .nav-links { position: fixed; inset: 106px 0 auto 0; flex-direction: column; align-items: stretch; gap: 0; background: var(--black); border-bottom: 1px solid var(--line); padding: 10px var(--gutter) 22px; transform: translateY(-12px); opacity: 0; pointer-events: none; transition: opacity 0.2s ease, transform 0.2s ease; }
  .nav-link-request { display: block; }
  .nav-open .nav-links { transform: none; opacity: 1; pointer-events: auto; }
  .nav-links a { padding: 14px 6px; border-radius: 0; border-bottom: 1px solid var(--line); }
  .nav-links a.active::after { margin: 4px 0 0; }
  .nav-toggle { display: block; }
  .nav-cta-desktop { display: none; }
  .models, .split, .field-row { grid-template-columns: 1fr; }
  .vgrid, .machines { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .step { grid-template-columns: 1fr; gap: 16px; }
}
@media (max-width: 420px) { .value-strip .container { grid-template-columns: 1fr; } }

:focus-visible { outline: 3px solid var(--green); outline-offset: 2px; border-radius: 4px; }
@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .btn, .machine-card, .vcell::before { transition: none; }
}

/* ===== Smart vs. Old comparison (Our Machines) ===== */
.compare { display: grid; gap: clamp(26px, 4vw, 44px); }
.compare-machines { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: clamp(12px, 3vw, 34px); max-width: 720px; margin: 0 auto; width: 100%; }
.cm { margin: 0; text-align: center; }
.cm .cm-img { aspect-ratio: 4 / 5; border-radius: 16px; overflow: hidden; border: 1px solid var(--line); background: var(--bg-2); }
.cm .cm-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.cm-smart .cm-img { border-color: rgba(57,255,20,0.55); box-shadow: 0 0 28px rgba(57,255,20,0.16); }
.cm-old-art { display: grid; place-items: center; padding: 14px; }
.cm-old-art svg { width: 100%; height: 100%; }
.cm figcaption { margin-top: 13px; font-family: 'Sora', sans-serif; font-weight: 600; font-size: 0.92rem; display: inline-flex; align-items: center; gap: 8px; }
.cm-smart figcaption { color: var(--white); }
.cm-old figcaption { color: var(--text-dim); }
.cm-dot { width: 9px; height: 9px; border-radius: 50%; display: inline-block; flex: none; }
.cm-smart .cm-dot { background: var(--green); box-shadow: 0 0 8px var(--green); }
.cm-old .cm-dot { background: #6b7178; }
.cm-vs { font-family: 'Sora', sans-serif; font-weight: 800; font-size: clamp(0.95rem, 3vw, 1.35rem); color: var(--text-dim); letter-spacing: 1px; }

.compare-table { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.ct-row { display: grid; grid-template-columns: 0.95fr 1.45fr 1.45fr; }
.ct-row + .ct-row { border-top: 1px solid var(--line); }
.ct-head { background: var(--bg-2); }
.ct-head .ct-cell { font-family: 'Sora', sans-serif; font-weight: 700; color: var(--white); font-size: 0.92rem; }
.ct-head .ct-cell:last-child { color: var(--text-dim); }
.ct-label { padding: 16px 18px; font-family: 'Sora', sans-serif; font-weight: 600; color: var(--white); font-size: 0.93rem; background: var(--bg-2); display: flex; align-items: center; }
.ct-cell { padding: 16px 18px; display: flex; gap: 10px; align-items: flex-start; font-size: 0.93rem; color: var(--text); line-height: 1.45; }
.ct-cell svg { width: 19px; height: 19px; flex: none; margin-top: 1px; }
.ct-smart { border-left: 1px solid var(--line); }
.ct-smart .ic-yes { color: var(--green); }
.ct-old { border-left: 1px solid var(--line); color: var(--text-dim); }
.ct-old .ic-no { color: #ff5d5d; }
.ct-tag { display: none; }

@media (max-width: 760px) {
  .ct-head { display: none; }
  .ct-row { grid-template-columns: 1fr; padding: 18px 16px; gap: 11px; }
  .ct-label { background: transparent; padding: 0 0 3px; font-size: 1.05rem; color: var(--white); }
  .ct-cell { padding: 12px 14px; border-radius: 10px; border-left: 3px solid transparent; }
  .ct-smart { background: rgba(57,255,20,0.07); border-left-color: var(--green); }
  .ct-old { background: rgba(255,255,255,0.04); border-left-color: #6b7178; }
  .ct-tag { display: inline-block; font-family: 'Sora', sans-serif; font-weight: 700; font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.05em; margin-right: 8px; padding: 3px 9px; border-radius: 6px; flex: none; }
  .ct-smart .ct-tag { background: rgba(57,255,20,0.18); color: var(--green); }
  .ct-old .ct-tag { background: rgba(255,255,255,0.08); color: var(--text-dim); }
}
