
/* Typography: Inter for clean, classy feel (with safe fallbacks) */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

* { box-sizing: border-box; }
:root {
  --bg: #0a0b0d;
  --card: #131418;
  --text: #f1f3f5;
  --muted: #aeb5bd;
  --neon: #c9e013; /* brand accent (from posters) */
  --border: #1e2126;
  --surface: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0));
  --radius: 14px;
}

html, body {
  margin: 0; padding: 0;
  background: var(--bg); color: var(--text);
  font-family: Inter, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.container { max-width: 1120px; margin: 0 auto; padding: 0 18px; }

/* Links & focus */
a { color: var(--neon); text-decoration: none; }
a:hover { text-decoration: underline; text-underline-offset: 3px; }
:focus-visible { outline: 2px solid var(--neon); outline-offset: 2px; border-radius: 6px; }

/* Header */
.header { position: sticky; top: 0; background: rgba(10,11,13,0.78); backdrop-filter: blur(6px); border-bottom: 1px solid var(--border); z-index: 10; }
.nav { display: flex; justify-content: space-between; align-items: center; padding: 14px 0; }
.brand img { height: 44px; width: auto; display: block; border-radius: 8px; box-shadow: 0 0 10px rgba(201,224,19,0.18); }
.nav a { margin-left: 16px; font-weight: 600; position: relative; }
.nav a:hover::after, .nav a:focus-visible::after { content: ""; position: absolute; left: 0; right: 0; bottom: -10px; height: 2px; background: var(--neon); opacity: 0.8; }

/* Hero */
.hero { padding: clamp(64px, 8vw, 96px) 0 52px; }
.kicker { display: inline-block; font-size: 12px; color: #101; background: var(--neon); padding: 5px 10px; border-radius: 999px; margin-bottom: 12px; box-shadow: 0 0 18px rgba(201,224,19,0.28); }
.hero h1 { font-size: clamp(28px, 6vw, 48px); margin: 0 0 12px; letter-spacing: -0.3px; line-height: 1.15; }
.hero p { color: var(--muted); max-width: 760px; line-height: 1.7; font-size: 18px; }

/* Sections */
.section { padding: 56px 0; }
.section h2 { font-size: clamp(22px, 3vw, 30px); margin: 0 0 18px; letter-spacing: -0.2px; }

/* Lists with subtle neon bullets */
.list { padding-left: 0; list-style: none; }
.list li { margin: 10px 0; padding-left: 22px; position: relative; color: var(--muted); }
.list li::before { content: ""; position: absolute; left: 0; top: 8px; width: 10px; height: 10px; border-radius: 3px; background: var(--neon); box-shadow: 0 0 10px rgba(201,224,19,0.35); }

/* Plan Cards */
.plan {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  margin-bottom: 18px;
  box-shadow: 0 12px 24px rgba(0,0,0,0.18), inset 0 1px 0 rgba(255,255,255,0.02);
}
.plan h3 { margin: 0 0 10px; font-size: 20px; }
.badge { border: 1px solid var(--neon); color: var(--neon); padding: 2px 8px; border-radius: 999px; font-size: 12px; }
.plan .price { font-size: 22px; font-weight: 700; margin-bottom: 8px; color: #f6f8fa; }
.plan p { color: var(--muted); margin: 8px 0; }

/* CTA Buttons */
.cta {
  display: inline-block; padding: 12px 18px; border-radius: 10px;
  background: var(--neon); color: #0a0b0d; font-weight: 800; border: none;
  box-shadow: 0 6px 24px rgba(201,224,19,0.25);
  transition: transform 0.15s ease, box-shadow 0.2s ease;
}
.cta:hover { transform: translateY(-1px); box-shadow: 0 10px 28px rgba(201,224,19,0.35); }
.cta.secondary { background: transparent; color: var(--neon); border: 1px solid var(--neon); }

/* Notices */
.notice { background: #121a10; border: 1px solid rgba(201,224,19,0.3); color: #e9f3a8; padding: 12px 14px; border-radius: 10px; font-size: 14px; margin-top: 14px; }

/* Footer */
.footer { border-top: 1px solid var(--border); padding: 32px 0 56px; color: var(--muted); font-size: 14px; }

/* Responsive tweaks */
@media (max-width: 720px) {
  .nav a { margin-left: 12px; }
  .hero p { font-size: 16px; }
  .plan .price { font-size: 20px; }
}

/* Keep existing class compatibility from previous versions */


/* --- v12 Refinements --- */
h1, h2, h3 { font-weight: 700; }
.cta { border-radius: 12px; font-weight: 700; }
.cta:hover { box-shadow: 0 8px 28px rgba(201,224,19,0.4); }
.plan { transition: transform 0.2s ease, box-shadow 0.2s ease; }
.plan:hover { transform: translateY(-3px); box-shadow: 0 14px 28px rgba(201,224,19,0.08); }
@media (max-width:720px) {
  .plan { margin-bottom: 22px; }
  .cta { width: 100%; text-align: center; }
}
