/* ============================================================
   CalenClick Pro Advanced — Landing page
   Brand: emerald #2bd882 / #1bbf6c on deep green #0d2419
   ============================================================ */
:root {
  --bg: #071a11;
  --bg-2: #0d2419;
  --bg-3: #10301f;
  --panel: rgba(16, 48, 31, 0.55);
  --line: rgba(43, 216, 130, 0.16);
  --accent: #2bd882;
  --accent-strong: #1bbf6c;
  --accent-soft: rgba(43, 216, 130, 0.16);
  --lime: #d8f55a;
  --mint: #a7f3d0;
  --text: #eafff3;
  --muted: #9db8a9;
  --radius: 18px;
  --font: "Archivo", "Segoe UI", system-ui, -apple-system, sans-serif;
  --font-black: "Archivo Black", "Archivo", "Segoe UI", sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: var(--accent); text-decoration: none; }
::selection { background: var(--accent); color: #06281a; }

/* ---------------- Nav ---------------- */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 50;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: rgba(7, 26, 17, 0.72);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, background .3s;
}
.nav.scrolled { border-bottom-color: var(--line); background: rgba(7, 26, 17, 0.9); }
.nav-inner {
  max-width: 1200px; margin: 0 auto; padding: 14px 24px;
  display: flex; align-items: center; gap: 28px;
}
.brand { display: flex; align-items: center; gap: 10px; color: var(--text); font-weight: 800; }
.brand-icon { width: 34px; height: 34px; filter: drop-shadow(0 4px 14px rgba(43,216,130,.45)); }
.brand-name { font-size: 17px; letter-spacing: -.02em; white-space: nowrap; }
.brand-name em { font-style: normal; color: var(--accent); }
.nav-links { display: flex; gap: 22px; margin-left: auto; }
.nav-links a { color: var(--muted); font-weight: 600; font-size: 14.5px; transition: color .2s; }
.nav-links a:hover { color: var(--text); }

/* ---------------- Buttons & chips ---------------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font); font-weight: 800; font-size: 16px;
  padding: 14px 26px; border-radius: 14px; border: 1px solid transparent;
  cursor: pointer; transition: transform .18s, box-shadow .18s, background .18s;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-strong) 100%);
  color: #06281a;
  box-shadow: 0 8px 30px rgba(43, 216, 130, .35), inset 0 1px 0 rgba(255,255,255,.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 40px rgba(43, 216, 130, .5); }
.btn-ghost {
  background: rgba(255,255,255,.04); color: var(--text);
  border-color: var(--line);
}
.btn-ghost:hover { background: rgba(43,216,130,.1); border-color: var(--accent); transform: translateY(-2px); }
.btn-sm { padding: 10px 18px; font-size: 14px; border-radius: 11px; }
.btn-xl { padding: 18px 40px; font-size: 18px; border-radius: 16px; }
.btn .price { font-weight: 700; opacity: .85; }
.btn .price s { opacity: .6; margin-right: 4px; }

.chip {
  display: inline-flex; align-items: center;
  font-size: 12.5px; font-weight: 700; letter-spacing: .02em;
  color: var(--mint); background: rgba(43, 216, 130, .1);
  border: 1px solid var(--line);
  padding: 5px 12px; border-radius: 999px;
}
.chip-solid { background: var(--accent); color: #06281a; border-color: transparent; }
.chip-lime { color: #2a3405; background: var(--lime); border-color: transparent; }

/* ---------------- Hero ---------------- */
.hero { position: relative; min-height: 100vh; display: flex; flex-direction: column; justify-content: center; padding: 130px 24px 80px; overflow: hidden; }
#bg3d { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0; }
.hero-glow {
  position: absolute; z-index: 1; pointer-events: none; inset: 0;
  background:
    radial-gradient(900px 500px at 18% 20%, rgba(43,216,130,.16), transparent 60%),
    radial-gradient(700px 480px at 85% 75%, rgba(216,245,90,.08), transparent 60%),
    linear-gradient(180deg, rgba(7,26,17,.25) 0%, rgba(7,26,17,0) 35%, rgba(7,26,17,.9) 100%);
}
.hero-inner {
  position: relative; z-index: 2;
  max-width: 1200px; margin: 0 auto; width: 100%;
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center;
}
.hero-badges { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 26px; }
.hero h1 {
  font-family: var(--font-black);
  font-size: clamp(52px, 7.2vw, 96px);
  line-height: .98; letter-spacing: -.02em;
  margin-bottom: 22px; text-shadow: 0 10px 60px rgba(0,0,0,.5);
}
.grad {
  background: linear-gradient(100deg, var(--accent) 10%, var(--lime) 90%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero-sub { font-size: clamp(17px, 1.6vw, 21px); color: var(--muted); max-width: 540px; margin-bottom: 30px; }
.hero-sub strong { color: var(--text); }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 14px; }
.promo-note { font-size: 13.5px; color: var(--muted); }
.promo-note strong { color: var(--lime); letter-spacing: .04em; }

.hero-stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px 30px;
  list-style: none; margin-top: 42px; padding-top: 26px;
  border-top: 1px solid var(--line);
  max-width: 560px;
}
.hero-stats li { display: flex; flex-direction: column; }
.hero-stats b { font-family: var(--font-black); font-size: 28px; color: var(--accent); line-height: 1.1; }
.hero-stats span { font-size: 11.5px; color: var(--muted); font-weight: 600; letter-spacing: .03em; text-transform: uppercase; }

.hero-art { position: relative; display: flex; justify-content: center; }

/* ---------- Live product mockup (pure HTML/CSS, JS-driven) ---------- */
.mockup { position: relative; width: min(480px, 100%); padding: 10px 90px 60px 0; }
.mock-page {
  background: #ffffff; border-radius: 16px; padding: 26px 24px 20px;
  transform: rotate(-2deg);
  box-shadow: 0 36px 90px rgba(0,0,0,.6), 0 0 70px rgba(43,216,130,.14);
  transition: opacity .28s ease, transform .28s ease;
}
.mockup.swap .mock-page { opacity: 0; transform: rotate(-2deg) translateY(8px); }
.mock-cal { color: #12241a; font-family: var(--font); }
.mock-cal-head { display: flex; align-items: baseline; gap: 10px; margin-bottom: 14px; }
.mock-num {
  font-family: var(--font-black); font-size: 15px; color: #fff;
  background: var(--accent-strong); border-radius: 7px; padding: 3px 8px;
}
.mock-month { font-family: var(--font-black); font-size: 24px; letter-spacing: -.02em; }
.mock-year { margin-left: auto; font-family: var(--font-black); font-size: 20px; color: var(--accent-strong); }
.mock-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 3px; }
.mock-grid .dn {
  font-size: 9.5px; font-weight: 800; text-align: center; color: #fff;
  background: #17462f; padding: 5px 0 4px; letter-spacing: .04em;
}
.mock-grid .dn:first-child { border-radius: 7px 0 0 7px; }
.mock-grid .dn:nth-child(7) { border-radius: 0 7px 7px 0; }
.mock-grid .dc {
  font-size: 11.5px; font-weight: 700; text-align: center; padding: 7px 0;
  border-radius: 6px; background: #f2f7f4; color: #223328;
}
.mock-grid .dc.out { color: #b9c6bf; background: #f8faf9; font-weight: 600; }
.mock-grid .dc.we { color: var(--accent-strong); background: #e4f7ec; }
.mock-grid .dc.ho { color: #12241a; background: var(--lime); box-shadow: inset 0 0 0 1.5px #b8d43e; }
.mock-holi { display: flex; gap: 10px; align-items: baseline; margin-top: 13px; padding-top: 11px; border-top: 1.5px solid #16321f22; }
.mock-holi b { font-size: 11px; letter-spacing: .06em; text-transform: uppercase; color: #17462f; }
.mock-holi span { font-size: 11.5px; color: #55705f; font-weight: 600; }

.mock-panel {
  position: absolute; right: 0; bottom: 0; width: 220px;
  background: linear-gradient(180deg, #0f2e1e, #0a2015);
  border: 1px solid rgba(43,216,130,.35); border-radius: 14px;
  padding: 14px 14px 16px; transform: rotate(2deg);
  box-shadow: 0 26px 60px rgba(0,0,0,.65), 0 0 46px rgba(43,216,130,.18);
}
.mock-panel-head { display: flex; align-items: center; gap: 7px; margin-bottom: 12px; }
.mock-panel-head img { width: 20px; height: 20px; }
.mock-panel-head b { font-size: 13.5px; }
.mock-live {
  margin-left: auto; font-size: 9px; font-weight: 900; letter-spacing: .08em;
  color: #06281a; background: var(--accent); border-radius: 999px; padding: 3px 8px;
  animation: pulse 2.2s ease-in-out infinite;
}
@keyframes pulse { 0%,100% { box-shadow: 0 0 0 0 rgba(43,216,130,.5);} 50% { box-shadow: 0 0 0 5px rgba(43,216,130,0);} }
.mock-panel label { display: block; font-size: 9.5px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; color: var(--muted); margin-bottom: 8px; }
.mock-field {
  display: block; margin-top: 3px; font-size: 12px; font-weight: 700; letter-spacing: 0; text-transform: none;
  color: var(--text); background: rgba(255,255,255,.05);
  border: 1px solid rgba(43,216,130,.22); border-radius: 8px; padding: 6px 9px;
}
.mock-swatches { display: flex; gap: 6px; margin: 4px 0 12px; }
.mock-swatches i { width: 18px; height: 18px; border-radius: 6px; border: 1px solid rgba(255,255,255,.18); }
.mock-gen {
  display: block; text-align: center; font-size: 12.5px; font-weight: 900; color: #06281a;
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  border-radius: 9px; padding: 9px 0;
  box-shadow: 0 6px 18px rgba(43,216,130,.4);
}
.scroll-hint {
  position: absolute; z-index: 2; left: 50%; bottom: 22px; transform: translateX(-50%);
  color: var(--accent); font-size: 22px; animation: bob 1.8s ease-in-out infinite;
}
@keyframes bob { 0%,100% { transform: translate(-50%, 0); } 50% { transform: translate(-50%, 8px); } }

/* ---------------- Sections ---------------- */
.section { position: relative; padding: 110px 24px; max-width: 1200px; margin: 0 auto; }
.section-alt::before {
  /* Full-bleed tint: span the whole viewport, not just the 1200px column,
     so no vertical seams appear at the content edges. */
  content: ""; position: absolute; top: 0; bottom: 0; left: 50%;
  width: 100vw; transform: translateX(-50%); z-index: -1;
  background: linear-gradient(180deg, transparent, rgba(43,216,130,.045) 30%, rgba(43,216,130,.045) 70%, transparent);
}
.section-head { text-align: center; max-width: 720px; margin: 0 auto 60px; }
.eyebrow {
  display: inline-block; font-size: 12.5px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 14px;
}
.section-head h2 { font-family: var(--font-black); font-size: clamp(34px, 4.4vw, 54px); letter-spacing: -.02em; line-height: 1.06; margin-bottom: 16px; }
.section-head p { color: var(--muted); font-size: 17px; }

/* ---------------- Feature cards ---------------- */
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 26px;
  transition: transform .25s, border-color .25s, box-shadow .25s;
  backdrop-filter: blur(6px);
}
.card:hover {
  transform: translateY(-6px);
  border-color: rgba(43,216,130,.45);
  box-shadow: 0 18px 50px rgba(0,0,0,.4), 0 0 40px rgba(43,216,130,.12);
}
.card-ico {
  width: 46px; height: 46px; display: grid; place-items: center;
  border-radius: 13px; margin-bottom: 16px;
  background: linear-gradient(135deg, rgba(43,216,130,.22), rgba(216,245,90,.12));
  border: 1px solid var(--line);
  color: var(--accent);
}
.card-ico svg {
  width: 22px; height: 22px;
  fill: none; stroke: currentColor;
  stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round;
}
.ico-inline {
  width: 13px; height: 13px; color: var(--accent);
}
.card h3 { font-size: 18.5px; font-weight: 800; margin-bottom: 8px; letter-spacing: -.01em; }
.card p { font-size: 14.5px; color: var(--muted); }

/* ---------------- Lightbox ---------------- */
.lightbox {
  position: fixed; inset: 0; z-index: 100;
  display: flex; align-items: center; justify-content: center;
  background: rgba(4, 14, 9, .92);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  opacity: 0; visibility: hidden; transition: opacity .28s ease, visibility .28s;
}
.lightbox.open { opacity: 1; visibility: visible; }
.lb-stage {
  max-width: 96vw; max-height: 92vh; overflow: hidden;
  border-radius: 14px; box-shadow: 0 40px 120px rgba(0,0,0,.7), 0 0 90px rgba(43,216,130,.15);
}
.lb-img {
  display: block; max-width: 96vw; max-height: 92vh;
  border-radius: 14px; cursor: zoom-out;
  transform: scale(.94); transition: transform .3s ease;
  user-select: none; -webkit-user-drag: none;
}
.lightbox.open .lb-img { transform: scale(1); }

.lb-close, .lb-nav {
  position: absolute; z-index: 2;
  display: grid; place-items: center;
  background: rgba(16, 48, 31, .6); color: var(--text);
  border: 1px solid var(--line); cursor: pointer;
  transition: background .2s, transform .2s, border-color .2s;
}
.lb-close {
  top: 20px; right: 22px; width: 46px; height: 46px;
  border-radius: 12px; font-size: 30px; line-height: 1;
}
.lb-nav {
  top: 50%; transform: translateY(-50%);
  width: 52px; height: 52px; border-radius: 50%; font-size: 30px; line-height: 1;
}
.lb-prev { left: 22px; }
.lb-next { right: 22px; }
.lb-close:hover, .lb-nav:hover { background: var(--accent); color: #06281a; border-color: transparent; }
.lb-nav:hover { transform: translateY(-50%) scale(1.08); }
.lb-counter {
  position: absolute; bottom: 22px; left: 50%; transform: translateX(-50%);
  font-size: 13px; font-weight: 700; color: var(--muted);
  background: rgba(16,48,31,.6); border: 1px solid var(--line);
  padding: 6px 14px; border-radius: 999px; z-index: 2;
}
body.lb-open { overflow: hidden; }

/* ---------------- Legal pages ---------------- */
.legal { max-width: 760px; margin: 0 auto; padding: 140px 24px 90px; }
.legal h1 { font-family: var(--font-black); font-size: clamp(32px, 4.5vw, 46px); margin-bottom: 8px; letter-spacing: -.02em; }
.legal .updated { color: var(--muted); font-size: 13.5px; margin-bottom: 40px; }
.legal h2 { font-size: 20px; font-weight: 800; margin: 34px 0 10px; color: var(--mint); }
.legal p, .legal li { color: var(--muted); font-size: 15.5px; }
.legal ul { padding-left: 22px; margin: 10px 0; }
.legal a { font-weight: 700; }

/* ---------------- Video ---------------- */
.video-wrap {
  position: relative; max-width: 940px; margin: 0 auto;
  aspect-ratio: 16 / 9; border-radius: 20px; overflow: hidden;
  border: 1px solid rgba(43,216,130,.3);
  box-shadow: 0 30px 80px rgba(0,0,0,.55), 0 0 90px rgba(43,216,130,.14);
}
.video-wrap iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* ---------------- Pricing ---------------- */
.pricing { display: flex; justify-content: center; }
.pricing-card {
  position: relative; text-align: center; max-width: 620px; width: 100%;
  background: linear-gradient(180deg, rgba(16,48,31,.9), rgba(10,32,21,.9));
  border: 1px solid rgba(43,216,130,.35);
  border-radius: 26px; padding: 52px 44px;
  box-shadow: 0 40px 100px rgba(0,0,0,.5), inset 0 1px 0 rgba(255,255,255,.06), 0 0 90px rgba(43,216,130,.12);
}
.pricing-icon { width: 64px; margin: 0 auto 18px; filter: drop-shadow(0 8px 24px rgba(43,216,130,.5)); }
.pricing-card h2 { font-family: var(--font-black); font-size: 34px; letter-spacing: -.02em; }
.pricing-tag { color: var(--muted); font-size: 14px; margin: 8px 0 26px; }
.pricing-price { display: flex; align-items: baseline; justify-content: center; gap: 14px; flex-wrap: wrap; margin-bottom: 28px; }
.pricing-price s { color: var(--muted); font-size: 24px; }
.pricing-price b { font-family: var(--font-black); font-size: 56px; color: var(--accent); line-height: 1; }
.pricing-list {
  list-style: none; text-align: left; max-width: 430px; margin: 0 auto 32px;
  display: flex; flex-direction: column; gap: 11px;
}
.pricing-list li { padding-left: 30px; position: relative; font-size: 15.5px; color: var(--mint); }
.pricing-list li::before {
  content: "✓"; position: absolute; left: 0; top: 0;
  color: var(--lime); font-weight: 900;
}
.pricing-card .promo-note { margin-top: 16px; }

/* ---------------- FAQ ---------------- */
.faq { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq details {
  background: var(--panel); border: 1px solid var(--line); border-radius: 15px;
  padding: 0 22px; transition: border-color .2s;
}
.faq details[open] { border-color: rgba(43,216,130,.4); }
.faq summary {
  cursor: pointer; list-style: none; font-weight: 800; font-size: 16px;
  padding: 18px 0; position: relative; padding-right: 34px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; position: absolute; right: 4px; top: 50%; transform: translateY(-50%);
  color: var(--accent); font-size: 22px; font-weight: 700; transition: transform .2s;
}
.faq details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq details p { color: var(--muted); font-size: 15px; padding: 0 0 20px; }

/* ---------------- Footer ---------------- */
.footer { border-top: 1px solid var(--line); background: rgba(7,26,17,.8); }
.footer-inner {
  max-width: 1200px; margin: 0 auto; padding: 44px 24px;
  display: flex; flex-direction: column; align-items: center; gap: 18px; text-align: center;
}
.footer-links { display: flex; gap: 26px; }
.footer-links a { color: var(--muted); font-weight: 700; font-size: 14.5px; }
.footer-links a:hover { color: var(--accent); }
.copyright { font-size: 12.5px; color: rgba(157,184,169,.65); max-width: 620px; }

/* ---------------- Reveal animation ---------------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }


/* ============================================================
   Version 2.5 additions
   ============================================================ */
.btn-lg { padding: 16px 30px; font-size: 17px; }
.hero { min-height: auto; padding: 132px 24px 60px; }
.hero-sub { max-width: 560px; }

/* Trust row under the hero buttons */
.trust-row { list-style: none; display: flex; flex-wrap: wrap; gap: 10px 20px; margin-top: 20px; }
.trust-row li { display: inline-flex; align-items: center; gap: 7px; font-size: 14px; font-weight: 700; color: var(--mint); }
.trust-row svg { width: 16px; height: 16px; fill: none; stroke: var(--lime); stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; }

/* Hero: a stack of real calendars that cycles, with the panel on top */
.hero-art { min-height: 440px; align-items: center; }
.stack { position: relative; width: min(560px, 100%); aspect-ratio: 760 / 538; }
.stack-img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  border-radius: 14px; background: #fff;
  box-shadow: 0 30px 80px rgba(0,0,0,.55), 0 0 60px rgba(43,216,130,.12);
  transition: transform .8s cubic-bezier(.2,.8,.2,1), opacity .8s ease, filter .8s ease;
  will-change: transform, opacity;
}
.stack-img.is-front { z-index: 3; transform: rotate(-3deg) translate(-4%, 4%); opacity: 1; }
.stack-img.is-mid   { z-index: 2; transform: rotate(3deg) translate(6%, -6%) scale(.94); opacity: .92; filter: brightness(.82); }
.stack-img.is-back  { z-index: 1; transform: rotate(8deg) translate(14%, -14%) scale(.88); opacity: .7; filter: brightness(.6); }
.stack-img.is-hidden { z-index: 0; transform: rotate(12deg) translate(20%, -20%) scale(.82); opacity: 0; }
.stack-img.is-leaving { z-index: 4; transform: rotate(-10deg) translate(-30%, 20%) scale(.96); opacity: 0; }
.hero-art .mock-panel { right: -10px; bottom: -28px; z-index: 5; width: 230px; }
.mock-field span { display: inline; margin: 0; padding: 0; border: 0; background: none; }

/* Stat band */
.stat-band {
  position: relative; z-index: 2; list-style: none;
  max-width: 1200px; margin: 64px auto 0; width: 100%;
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 0;
  border: 1px solid var(--line); border-radius: 18px; overflow: hidden;
  background: rgba(13, 36, 25, .55); backdrop-filter: blur(8px);
}
.stat-band li { padding: 20px 16px; text-align: center; border-left: 1px solid var(--line); }
.stat-band li:first-child { border-left: 0; }
.stat-band b { display: block; font-family: var(--font-black); font-size: 32px; color: var(--accent); line-height: 1.1; }
.stat-band span { font-size: 12px; color: var(--muted); font-weight: 700; letter-spacing: .03em; text-transform: uppercase; }

/* Pain -> gain */
.versus { display: grid; grid-template-columns: 1fr auto 1fr; gap: 22px; align-items: stretch; }
.vs-col { border-radius: var(--radius); padding: 30px 30px 26px; border: 1px solid var(--line); display: flex; flex-direction: column; }
.vs-col h3 { font-size: 20px; font-weight: 900; margin-bottom: 16px; }
.vs-col ul { list-style: none; display: flex; flex-direction: column; gap: 11px; margin-bottom: 22px; }
.vs-col li { position: relative; padding-left: 28px; font-size: 15px; }
.vs-old { background: rgba(255,255,255,.025); }
.vs-old h3 { color: var(--muted); }
.vs-old li { color: var(--muted); }
.vs-old li::before { content: "✕"; position: absolute; left: 0; color: #e07a7a; font-weight: 900; }
.vs-new { background: linear-gradient(180deg, rgba(16,48,31,.9), rgba(10,32,21,.9)); border-color: rgba(43,216,130,.45); box-shadow: 0 0 60px rgba(43,216,130,.1); }
.vs-new li { color: var(--mint); }
.vs-new li::before { content: "✓"; position: absolute; left: 0; color: var(--lime); font-weight: 900; }
.vs-time { margin-top: auto; padding-top: 16px; border-top: 1px solid var(--line); font-size: 14px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); }
.vs-new .vs-time b { color: var(--accent); font-family: var(--font-black); font-size: 20px; letter-spacing: 0; text-transform: none; }
.vs-arrow { align-self: center; font-size: 34px; color: var(--accent); font-weight: 900; }

/* Steps */
.steps { list-style: none; display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; counter-reset: s; }
.step { position: relative; background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 26px 26px; }
.step-num {
  display: inline-grid; place-items: center; width: 44px; height: 44px; border-radius: 13px; margin-bottom: 16px;
  font-family: var(--font-black); font-size: 20px; color: #06281a;
  background: linear-gradient(135deg, var(--accent), var(--accent-strong)); box-shadow: 0 8px 24px rgba(43,216,130,.35);
}
.step h3 { font-size: 19px; font-weight: 900; margin-bottom: 8px; }
.step p { color: var(--muted); font-size: 15px; }
.center-cta { text-align: center; margin-top: 40px; }

/* Showcase filters + gallery */
.filters { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; margin: -24px auto 34px; max-width: 900px; }
.filter {
  font-family: var(--font); font-size: 14px; font-weight: 800; cursor: pointer;
  color: var(--muted); background: rgba(255,255,255,.03); border: 1px solid var(--line);
  padding: 9px 16px; border-radius: 999px; transition: color .2s, background .2s, border-color .2s;
}
.filter:hover { color: var(--text); border-color: rgba(43,216,130,.45); }
.filter.is-on { color: #06281a; background: var(--accent); border-color: transparent; }
.gallery { columns: 3 300px; column-gap: 18px; }
.g-item {
  break-inside: avoid; margin: 0 0 18px; position: relative; cursor: zoom-in;
  border-radius: 14px; overflow: hidden; background: #fff;
  border: 1px solid rgba(43,216,130,.2);
  box-shadow: 0 16px 40px rgba(0,0,0,.35);
  transition: transform .3s, box-shadow .3s, opacity .3s;
}
.g-item img { width: 100%; height: auto; display: block; transition: transform .5s ease; }
.g-item:hover { transform: translateY(-4px); box-shadow: 0 24px 60px rgba(0,0,0,.5), 0 0 40px rgba(43,216,130,.15); }
.g-item:hover img { transform: scale(1.03); }
.g-item figcaption {
  position: absolute; left: 10px; bottom: 10px; right: 10px;
  display: flex; justify-content: space-between; align-items: center; gap: 8px;
  font-size: 12.5px; font-weight: 800; color: #eafff3;
  background: rgba(7,26,17,.82); backdrop-filter: blur(6px);
  padding: 7px 11px; border-radius: 10px;
  opacity: 0; transform: translateY(6px); transition: opacity .25s, transform .25s;
}
.g-item figcaption small { font-weight: 700; color: var(--accent); white-space: nowrap; }
.g-item:hover figcaption, .g-item:focus-visible figcaption { opacity: 1; transform: none; }
.g-item.is-out { display: none; }
.g-item:focus-visible { outline: 3px solid var(--accent); outline-offset: 3px; }
.show-hint { text-align: center; color: var(--muted); font-size: 14px; margin-top: 18px; }

.lb-stage { margin: 0; background: #fff; }
.lb-cap {
  position: absolute; top: 22px; left: 50%; transform: translateX(-50%);
  font-size: 14px; font-weight: 800; color: var(--text);
  background: rgba(16,48,31,.75); border: 1px solid var(--line); padding: 7px 16px; border-radius: 999px;
  white-space: nowrap; z-index: 2;
}

/* What's new bento */
.bento { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.tile {
  position: relative; background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px 26px; overflow: hidden;
}
.tile-wide { grid-column: span 2; }
.tile-tag { display: inline-block; font-size: 11.5px; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; color: var(--lime); margin-bottom: 10px; }
.tile h3 { font-size: 20px; font-weight: 900; margin-bottom: 8px; letter-spacing: -.01em; }
.tile p { color: var(--muted); font-size: 15px; }
.tile-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 18px; }
.tile-strip img { border-radius: 8px; aspect-ratio: 760/538; object-fit: cover; background: #fff; border: 1px solid rgba(255,255,255,.08); }

/* Who */
.who-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.who { background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 22px; border-top: 3px solid var(--accent); }
.who h3 { font-size: 18px; font-weight: 900; margin-bottom: 8px; }
.who p { color: var(--muted); font-size: 14.5px; }

/* Video facade */
.video-facade { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; padding: 0; cursor: pointer; background: #06140d; }
.video-facade img { width: 100%; height: 100%; object-fit: cover; opacity: .75; transition: opacity .3s; }
.video-facade:hover img { opacity: .9; }
.video-facade .play {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  width: 84px; height: 84px; border-radius: 50%; display: grid; place-items: center;
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  box-shadow: 0 12px 40px rgba(43,216,130,.55); transition: transform .2s;
}
.video-facade:hover .play { transform: translate(-50%, -50%) scale(1.08); }
.video-facade .play svg { width: 34px; height: 34px; fill: #06281a; margin-left: 5px; }

/* ROI */
.roi {
  display: grid; grid-template-columns: 1.2fr .8fr; gap: 40px; align-items: center;
  background: linear-gradient(180deg, rgba(16,48,31,.75), rgba(10,32,21,.75));
  border: 1px solid rgba(43,216,130,.3); border-radius: 26px; padding: 48px;
}
.roi h2 { font-family: var(--font-black); font-size: clamp(30px, 3.6vw, 44px); line-height: 1.08; letter-spacing: -.02em; margin-bottom: 12px; }
.roi-copy > p { color: var(--muted); margin-bottom: 26px; }
.roi-field { margin-bottom: 20px; }
.roi-field label { display: flex; justify-content: space-between; font-weight: 700; font-size: 15px; margin-bottom: 8px; color: var(--mint); }
.roi-field label b { color: var(--accent); font-family: var(--font-black); }
.roi-field input[type=range] { width: 100%; accent-color: var(--accent); height: 6px; cursor: pointer; }
.roi-result { text-align: center; background: rgba(7,26,17,.6); border: 1px solid var(--line); border-radius: 20px; padding: 32px 24px; }
.roi-result p { color: var(--muted); font-size: 13px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.roi-result b { display: block; font-family: var(--font-black); font-size: 44px; line-height: 1.1; margin: 4px 0 18px; color: var(--text); }
.roi-result small { display: block; color: var(--muted); font-size: 12.5px; margin-bottom: 20px; }

/* Pricing ribbon */
.ribbon {
  position: absolute; top: 18px; right: 18px; font-size: 12px; font-weight: 900; letter-spacing: .06em;
  color: #2a3405; background: var(--lime); padding: 5px 12px; border-radius: 999px;
}

/* Final CTA */
.final-cta { padding: 110px 24px; text-align: center; position: relative; overflow: hidden; }
.final-cta::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: radial-gradient(700px 360px at 50% 50%, rgba(43,216,130,.18), transparent 70%);
}
.final-inner h2 { font-family: var(--font-black); font-size: clamp(34px, 4.8vw, 60px); line-height: 1.04; letter-spacing: -.02em; margin-bottom: 14px; }
.final-inner p { color: var(--muted); font-size: 18px; margin-bottom: 30px; }

/* Mobile buy bar */
.buybar {
  position: fixed; left: 12px; right: 12px; bottom: 12px; z-index: 60;
  display: none; align-items: center; justify-content: space-between; gap: 12px;
  background: rgba(10,32,21,.94); backdrop-filter: blur(12px);
  border: 1px solid rgba(43,216,130,.4); border-radius: 16px; padding: 10px 10px 10px 16px;
  box-shadow: 0 16px 40px rgba(0,0,0,.5);
  transform: translateY(140%); transition: transform .35s ease;
}
.buybar.show { transform: none; }
.buybar b { display: block; font-size: 14px; }
.buybar span { font-size: 12.5px; color: var(--muted); font-weight: 700; }

/* ---------------- Responsive ---------------- */
@media (max-width: 1020px) {
  .hero-inner { grid-template-columns: 1fr; gap: 50px; }
  .hero { padding-top: 112px; }
  .hero-art { min-height: 0; padding: 0 30px 30px 0; }
  .stack { margin: 0 auto; }
  .feature-grid, .who-grid { grid-template-columns: 1fr 1fr; }
  .bento { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
  .stat-band { grid-template-columns: repeat(3, 1fr); }
  .stat-band li:nth-child(4) { border-left: 0; }
  .stat-band li:nth-child(n+4) { border-top: 1px solid var(--line); }
  .roi { grid-template-columns: 1fr; padding: 36px 28px; }
}
@media (max-width: 760px) {
  .versus { grid-template-columns: 1fr; }
  .vs-arrow { transform: rotate(90deg); justify-self: center; }
  .steps { grid-template-columns: 1fr; }
  .buybar { display: flex; }
  .footer { padding-bottom: 80px; }
}
@media (max-width: 640px) {
  .feature-grid, .who-grid, .bento { grid-template-columns: 1fr; }
  .tile-wide { grid-column: auto; }
  .stat-band { grid-template-columns: repeat(2, 1fr); }
  .stat-band li { border-left: 0 !important; border-top: 1px solid var(--line); }
  .stat-band li:nth-child(even) { border-left: 1px solid var(--line) !important; }
  .stat-band li:nth-child(-n+2) { border-top: 0; }
  .stat-band b { font-size: 26px; }
  .pricing-card { padding: 44px 22px 32px; }
  .btn-xl { padding: 16px 22px; font-size: 16px; white-space: normal; text-align: center; justify-content: center; }
  .section { padding: 76px 16px; }
  .hero { padding-left: 16px; padding-right: 16px; }
  .hero-cta .btn { flex: 1 1 100%; justify-content: center; }
  .hero-art { padding: 0 18px 40px 0; }
  .hero-art .mock-panel { width: 180px; right: -4px; bottom: -34px; padding: 10px 10px 12px; }
  .hero-art .mock-panel label:nth-of-type(3) { display: none; }
  .filters { justify-content: flex-start; flex-wrap: nowrap; overflow-x: auto; margin: -28px -16px 26px; padding: 0 16px 6px; scrollbar-width: none; }
  .filters::-webkit-scrollbar { display: none; }
  .filter { flex: none; }
  .gallery { columns: 2 150px; column-gap: 10px; }
  .g-item { margin-bottom: 10px; border-radius: 10px; }
  .g-item figcaption { display: none; }
  .lb-cap { top: auto; bottom: 64px; font-size: 12.5px; max-width: 90vw; overflow: hidden; text-overflow: ellipsis; }
  .lb-nav { width: 42px; height: 42px; }
  .lb-prev { left: 8px; } .lb-next { right: 8px; }
  .roi { padding: 30px 20px; }
  .roi-result b { font-size: 36px; }
  .nav-inner { padding: 12px 16px; gap: 12px; }
  .brand-name { font-size: 15px; }
}
@media (max-width: 380px) {
  .brand-name em { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { transition: none; opacity: 1; transform: none; }
  .stack-img, .g-item, .g-item img { transition: none; }
}
.footer-links { flex-wrap: wrap; justify-content: center; gap: 12px 24px; }
@media (max-width: 640px) {
  .stack-img.is-mid  { transform: rotate(2deg) translate(4%, -5%) scale(.94); }
  .stack-img.is-back { transform: rotate(5deg) translate(7%, -10%) scale(.88); }
  .stack-img.is-hidden { transform: rotate(8deg) translate(8%, -12%) scale(.84); }
}
.tile-strip img { width: 100%; height: auto; }
.filters { max-width: 1040px; }
.tile-cta { background: linear-gradient(160deg, rgba(43,216,130,.16), rgba(16,48,31,.6)); border-color: rgba(43,216,130,.45); }
.tile-cta .btn { margin-top: 14px; }
.tile-cta-new { margin-top: 22px; padding-top: 18px; border-top: 1px solid var(--line); }
.tile-cta .tile-cta-new + .btn { margin-top: 6px; }
@media (max-width: 520px) { .nav .brand-name em { display: none; } }
.lb-cap { display: none; }
.lb-counter { max-width: 90vw; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; color: var(--text); }

/* ============================================================
   calenclick.com — site pages (home + script pages)
   Added on top of the plugin landing page styles.
   ============================================================ */
.brand-name em.v-tag { font-size: 11px; font-weight: 800; letter-spacing: .04em; padding: 3px 7px; margin-left: 6px; border-radius: 7px; background: var(--accent-soft); vertical-align: 2px; }
.nav-links a.is-here { color: var(--text); }
.hero-home h1 { font-size: clamp(46px, 6.6vw, 92px); }

/* ---------- product family cards ---------- */
.products { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: stretch; }
.product {
  position: relative; display: flex; flex-direction: column;
  background: var(--panel); border: 1px solid var(--line); border-radius: 22px;
  overflow: hidden; transition: transform .25s, border-color .25s, box-shadow .25s;
}
.product:hover { transform: translateY(-6px); border-color: rgba(43,216,130,.45); box-shadow: 0 30px 70px rgba(0,0,0,.45); }
.product.is-top { border-color: rgba(43,216,130,.6); box-shadow: 0 0 0 1px rgba(43,216,130,.35), 0 30px 80px rgba(43,216,130,.12); }
.product-img { aspect-ratio: 760 / 538; background: #fff; overflow: hidden; }
.product-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s; }
.product:hover .product-img img { transform: scale(1.04); }
.product-body { padding: 24px 24px 26px; display: flex; flex-direction: column; flex: 1; }
.product-kind { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 12px; }
.product h3 { font-family: var(--font-black); font-size: 25px; line-height: 1.12; letter-spacing: -.02em; margin-bottom: 6px; }
.product .product-ver { color: var(--accent); font-weight: 800; font-size: 13.5px; letter-spacing: .02em; margin-bottom: 12px; }
.product p { color: var(--muted); font-size: 15px; margin-bottom: 16px; }
.product ul { list-style: none; margin: 0 0 22px; display: grid; gap: 7px; }
.product li { position: relative; padding-left: 24px; font-size: 14.5px; }
.product li::before { content: ""; position: absolute; left: 0; top: 7px; width: 13px; height: 7px; border-left: 2.5px solid var(--accent); border-bottom: 2.5px solid var(--accent); transform: rotate(-45deg); }
.product-foot { margin-top: auto; display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.product-price { font-family: var(--font-black); font-size: 34px; line-height: 1; margin-right: auto; }
.product-price small { display: block; font-family: var(--font); font-size: 12px; font-weight: 700; color: var(--muted); margin-top: 5px; letter-spacing: .02em; }
.product .ribbon { z-index: 2; }

/* ---------- script vs plugin explainer ---------- */
.kinds { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.kind { background: var(--panel); border: 1px solid var(--line); border-radius: 20px; padding: 30px; }
.kind h3 { font-family: var(--font-black); font-size: 24px; margin: 10px 0 10px; letter-spacing: -.01em; }
.kind > p { color: var(--muted); margin-bottom: 18px; }
.kind dl { display: grid; grid-template-columns: 130px 1fr; gap: 10px 16px; font-size: 14.5px; }
.kind dt { color: var(--muted); font-weight: 700; font-size: 12.5px; letter-spacing: .05em; text-transform: uppercase; padding-top: 2px; }
.kind dd { color: var(--text); }
.kind-plugin { border-color: rgba(43,216,130,.45); background: linear-gradient(160deg, rgba(43,216,130,.12), rgba(16,48,31,.55) 45%); }

/* ---------- comparison table ---------- */
.compare-wrap { overflow-x: auto; border-radius: 20px; border: 1px solid var(--line); background: var(--panel); -webkit-overflow-scrolling: touch; }
.compare { width: 100%; min-width: 760px; border-collapse: collapse; font-size: 14.5px; }
.compare th, .compare td { padding: 13px 18px; text-align: center; border-bottom: 1px solid rgba(43,216,130,.1); vertical-align: middle; }
.compare thead th { position: sticky; top: 0; background: #0b2016; padding: 20px 18px 18px; vertical-align: bottom; }
.compare thead th b { display: block; font-size: 16px; line-height: 1.2; }
.compare thead th span { display: block; color: var(--muted); font-size: 12.5px; font-weight: 700; margin-top: 4px; }
.compare thead th .btn { margin-top: 12px; }
.compare tbody th { text-align: left; font-weight: 700; color: var(--text); width: 30%; }
.compare tbody th small { display: block; color: var(--muted); font-weight: 600; font-size: 12.5px; }
.compare td { color: var(--muted); }
.compare td b { color: var(--text); }
.compare .col-top { background: rgba(43,216,130,.07); }
.compare thead .col-top { background: #0f2f1f; box-shadow: inset 0 3px 0 var(--accent); }
.compare tr.group th { text-align: left; color: var(--accent); font-size: 12px; letter-spacing: .08em; text-transform: uppercase; padding-top: 24px; background: transparent; }
.compare tbody tr:last-child th, .compare tbody tr:last-child td { border-bottom: 0; }
.yes, .no { display: inline-block; width: 22px; height: 22px; border-radius: 50%; vertical-align: middle; position: relative; }
.yes { background: var(--accent); }
.yes::after { content: ""; position: absolute; left: 7px; top: 4px; width: 5px; height: 10px; border: solid #06281a; border-width: 0 2.5px 2.5px 0; transform: rotate(45deg); }
.no { background: rgba(255,255,255,.07); }
.no::after { content: ""; position: absolute; left: 6px; right: 6px; top: 10px; height: 2px; background: #5f7a6b; }
.compare-note { color: var(--muted); font-size: 13.5px; text-align: center; margin-top: 16px; }

/* ---------- pick guide ---------- */
.pick { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.pick-item { border: 1px solid var(--line); border-radius: 18px; padding: 24px; background: rgba(255,255,255,.02); }
.pick-item q { display: block; font-family: var(--font-black); font-size: 19px; line-height: 1.3; quotes: "“" "”"; margin-bottom: 12px; }
.pick-item p { color: var(--muted); font-size: 14.5px; margin-bottom: 16px; }
.pick-item a { font-weight: 800; }

/* ---------- timeline ---------- */
.timeline { list-style: none; display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; position: relative; }
.timeline::before { content: ""; position: absolute; left: 4%; right: 4%; top: 17px; height: 2px; background: linear-gradient(90deg, rgba(43,216,130,.15), var(--accent)); }
.timeline li { position: relative; padding-top: 50px; }
.timeline li::before { content: ""; position: absolute; top: 9px; left: 0; width: 18px; height: 18px; border-radius: 50%; background: var(--bg); border: 3px solid var(--accent); box-shadow: 0 0 0 5px rgba(43,216,130,.12); }
.timeline li.now::before { background: var(--accent); }
.timeline b { display: block; font-family: var(--font-black); font-size: 20px; margin-bottom: 4px; }
.timeline span { display: block; color: var(--accent); font-size: 12.5px; font-weight: 800; letter-spacing: .05em; text-transform: uppercase; margin-bottom: 6px; }
.timeline p { color: var(--muted); font-size: 14.5px; }

/* ---------- gallery badge (which product made it) ---------- */
.g-item .g-badge { position: absolute; top: 10px; left: 10px; z-index: 2; font-size: 11px; font-weight: 800; letter-spacing: .03em; padding: 4px 9px; border-radius: 8px; background: rgba(7,26,17,.82); color: var(--accent); border: 1px solid rgba(43,216,130,.35); }

/* ---------- script dialog mockup ---------- */
.dialog-wrap { display: grid; grid-template-columns: 1.05fr .95fr; gap: 50px; align-items: center; }
.sui {
  background: #f0f0f0; color: #1e1e1e; border-radius: 10px; overflow: hidden;
  box-shadow: 0 40px 90px rgba(0,0,0,.55), 0 0 0 1px rgba(255,255,255,.08);
  font: 12.5px/1.35 "Segoe UI", system-ui, -apple-system, sans-serif;
}
.sui-title { background: #fff; padding: 9px 14px; font-weight: 600; font-size: 12.5px; display: flex; align-items: center; gap: 8px; border-bottom: 1px solid #dcdcdc; }
.sui-title i { margin-left: auto; font-style: normal; color: #777; letter-spacing: 8px; }
.sui-body { padding: 14px; }
.sui-tabs { display: flex; flex-wrap: wrap; gap: 2px; border-bottom: 1px solid #c9c9c9; }
.sui-tabs button { font: inherit; border: 1px solid transparent; border-bottom: 0; background: transparent; padding: 6px 11px; border-radius: 4px 4px 0 0; cursor: pointer; color: #333; }
.sui-tabs button.on { background: #fff; border-color: #c9c9c9; margin-bottom: -1px; font-weight: 600; }
.sui-page { display: none; background: #fff; border: 1px solid #c9c9c9; border-top: 0; padding: 14px; min-height: 250px; }
.sui-page.on { display: block; }
.sui fieldset { border: 1px solid #cfcfcf; border-radius: 4px; padding: 8px 10px 10px; margin: 0 0 10px; }
.sui legend { padding: 0 4px; color: #333; font-size: 12px; }
.sui .r { display: flex; align-items: center; gap: 8px; margin: 5px 0; flex-wrap: wrap; }
.sui .f { display: inline-block; min-width: 56px; padding: 2px 6px; border: 1px solid #b8b8b8; background: #fff; border-radius: 2px; }
.sui .f.w { min-width: 120px; }
.sui .dd { display: inline-block; min-width: 96px; padding: 2px 20px 2px 6px; border: 1px solid #b8b8b8; background: linear-gradient(#fff, #ececec); border-radius: 3px; position: relative; }
.sui .dd::after { content: "▾"; position: absolute; right: 6px; top: 1px; font-size: 11px; color: #555; }
.sui .cb::before { content: ""; display: inline-block; width: 12px; height: 12px; border: 1px solid #8a8a8a; background: #fff; border-radius: 2px; margin-right: 6px; vertical-align: -2px; }
.sui .cb.on::before { background: #1473e6 url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2.5 6.2l2.3 2.3 4.7-5' fill='none' stroke='%23fff' stroke-width='1.8'/%3E%3C/svg%3E") center/10px no-repeat; border-color: #1473e6; }
.sui .sw { display: inline-block; width: 12px; height: 12px; border-radius: 2px; border: 1px solid rgba(0,0,0,.25); vertical-align: -2px; margin-right: 4px; }
.sui .cols { display: grid; grid-template-columns: 1fr 1fr; gap: 0 12px; }
.sui-foot { display: flex; flex-wrap: wrap; gap: 6px; padding: 12px 14px 14px; justify-content: space-between; }
.sui-foot span { padding: 4px 11px; border: 1px solid #b0b0b0; border-radius: 4px; background: linear-gradient(#fff, #e9e9e9); font-size: 12px; }
.sui-foot span.def { background: #1473e6; color: #fff; border-color: #1473e6; }
.dialog-copy h3 { font-family: var(--font-black); font-size: 30px; line-height: 1.1; letter-spacing: -.02em; margin-bottom: 14px; }
.dialog-copy > p { color: var(--muted); margin-bottom: 20px; }
.tab-list { list-style: none; display: grid; gap: 10px; }
.tab-list li { padding: 12px 14px; border-radius: 12px; border: 1px solid var(--line); background: rgba(255,255,255,.02); cursor: pointer; transition: border-color .2s, background .2s; }
.tab-list li:hover, .tab-list li.on { border-color: rgba(43,216,130,.55); background: rgba(43,216,130,.08); }
.tab-list b { display: block; font-size: 15px; }
.tab-list span { color: var(--muted); font-size: 13.5px; }

/* ---------- upgrade band ---------- */
.upgrade { display: grid; grid-template-columns: 1.2fr .8fr; gap: 40px; align-items: center; padding: 44px; border-radius: 26px; border: 1px solid rgba(43,216,130,.4); background: radial-gradient(120% 140% at 100% 0%, rgba(43,216,130,.2), rgba(16,48,31,.55) 55%); }
.upgrade h2 { font-family: var(--font-black); font-size: clamp(28px, 3.4vw, 42px); line-height: 1.08; letter-spacing: -.02em; margin: 10px 0 14px; }
.upgrade p { color: var(--muted); margin-bottom: 18px; }
.upgrade ul { list-style: none; display: grid; gap: 8px; margin-bottom: 24px; }
.upgrade li { padding-left: 24px; position: relative; font-size: 15px; }
.upgrade li::before { content: "+"; position: absolute; left: 2px; top: -1px; color: var(--accent); font-weight: 900; font-size: 18px; }
.upgrade-img { border-radius: 16px; overflow: hidden; box-shadow: 0 30px 70px rgba(0,0,0,.5); transform: rotate(2deg); }

.foot-cols { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px 26px; margin-bottom: 8px; }
.foot-cols b { color: var(--text); font-size: 13px; letter-spacing: .05em; text-transform: uppercase; }

@media (max-width: 1020px) {
  .products { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
  .kinds, .dialog-wrap, .upgrade { grid-template-columns: 1fr; }
  .pick { grid-template-columns: 1fr; }
  .timeline { grid-template-columns: 1fr 1fr; row-gap: 30px; }
  .timeline::before { display: none; }
  .upgrade { padding: 30px 24px; }
  .upgrade-img { transform: none; }
}
@media (max-width: 640px) {
  .kind { padding: 22px; }
  .kind dl { grid-template-columns: 1fr; gap: 2px 0; }
  .kind dd { margin-bottom: 8px; }
  .timeline { grid-template-columns: 1fr; }
  .sui .cols { grid-template-columns: 1fr; }
  .compare th, .compare td { padding: 11px 12px; }
}
.upgrade > * { min-width: 0; }
@media (max-width: 640px) {
  .upgrade .btn { white-space: normal; text-align: center; justify-content: center; width: 100%; }
}
@media (max-width: 640px) { .g-item .g-badge { display: none; } }
