:root {
  --banana: #facc15;
  --banana-light: #fde047;
  --ink: #0a0a0a;
  --panel: #171717;
  --line: #2f2f2f;
  --muted: #a3a3a3;
  --white: #ffffff;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 96px; }
body {
  margin: 0;
  background: var(--ink);
  color: #e5e5e5;
  font-family: Inter, Arial, sans-serif;
  line-height: 1.65;
}
h1, h2, h3, h4 { margin-top: 0; color: var(--white); font-family: Kanit, Arial, sans-serif; line-height: 1; }
a { color: inherit; }
.wrap { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }
.nav { position: sticky; top: 0; z-index: 50; border-bottom: 1px solid var(--line); background: rgba(10,10,10,.95); backdrop-filter: blur(12px); }
.nav-inner { min-height: 88px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { color: var(--white); font-family: Kanit, sans-serif; font-size: 1.9rem; font-weight: 900; letter-spacing: -.05em; text-decoration: none; }
.brand span, .yellow { color: var(--banana); }
.nav-links { display: flex; align-items: center; gap: 22px; }
.nav-links a { color: var(--banana); font-size: .82rem; font-weight: 800; letter-spacing: .04em; text-decoration: none; text-transform: uppercase; }
.nav-links a:hover { color: var(--white); }
.button { display: inline-flex; align-items: center; justify-content: center; border: 2px solid #000; border-radius: 12px; background: var(--banana); color: #111; padding: 14px 22px; font-weight: 900; text-decoration: none; box-shadow: 4px 4px 0 #fff; transition: .2s ease; }
.button:hover { background: var(--banana-light); transform: translateY(-2px); box-shadow: 6px 6px 0 #fff; }
.button.dark { border-color: #555; background: transparent; color: #fff; box-shadow: none; }
.button.dark:hover { border-color: #fff; background: #222; box-shadow: none; }
.crumbs { border-bottom: 1px solid var(--line); background: var(--panel); padding: 10px 0; color: #737373; font-size: .85rem; }
.crumbs a { text-decoration: none; }
.crumbs span { color: var(--banana); }
.hero { position: relative; overflow: hidden; padding: 92px 0 86px; background: radial-gradient(circle at 85% 20%, rgba(250,204,21,.12), transparent 34%), #050505; }
.hero::after { position: absolute; right: -120px; bottom: -230px; width: 520px; height: 520px; border: 70px solid rgba(250,204,21,.05); border-radius: 50%; content: ""; }
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.25fr .75fr; align-items: center; gap: 60px; }
.eyebrow { display: inline-flex; gap: 8px; align-items: center; margin-bottom: 24px; color: var(--banana); font-size: .8rem; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.eyebrow::before { display: block; width: 28px; height: 28px; border-radius: 6px; background: var(--banana); color: #000; content: "⚡"; line-height: 28px; text-align: center; }
h1 { max-width: 820px; margin-bottom: 26px; font-size: clamp(3.2rem, 7vw, 6.4rem); font-weight: 900; letter-spacing: -.055em; text-transform: uppercase; }
.lede { max-width: 730px; margin: 0 0 30px; color: #d4d4d4; font-size: 1.22rem; }
.actions { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-note { position: relative; border: 1px solid #333; border-radius: 24px; background: var(--panel); padding: 32px; transform: rotate(1.5deg); box-shadow: 0 24px 80px rgba(0,0,0,.5); }
.hero-note::before { position: absolute; top: -10px; left: 50%; width: 110px; height: 25px; background: rgba(250,204,21,.88); content: ""; transform: translateX(-50%) rotate(2deg); }
.marker { color: var(--banana); font-family: "Permanent Marker", cursive; font-size: 1.65rem; }
.hero-note ul, .tick-list { padding: 0; list-style: none; }
.hero-note li, .tick-list li { position: relative; margin: 13px 0; padding-left: 30px; }
.hero-note li::before, .tick-list li::before { position: absolute; left: 0; color: var(--banana); content: "✓"; font-weight: 900; }
.section { padding: 82px 0; border-top: 1px solid var(--line); }
.section.alt { background: var(--panel); }
.section-heading { max-width: 780px; margin-bottom: 42px; }
.section h2 { margin-bottom: 18px; font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 900; letter-spacing: -.04em; text-transform: uppercase; }
.section-heading p { margin: 0; color: var(--muted); font-size: 1.12rem; }
.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.grid.two { grid-template-columns: repeat(2, 1fr); }
.card { border: 1px solid var(--line); border-radius: 20px; background: #111; padding: 28px; }
.card:hover { border-color: var(--banana); }
.card h3 { margin-bottom: 12px; font-size: 1.55rem; text-transform: uppercase; }
.card p { margin: 0; color: var(--muted); }
.number { display: inline-grid; place-items: center; width: 40px; height: 40px; margin-bottom: 18px; border: 2px solid #000; border-radius: 50%; background: var(--banana); color: #000; font-family: Kanit, sans-serif; font-weight: 900; }
.band { border-radius: 28px; background: var(--banana); color: #111; padding: 42px; }
.band h2, .band h3 { color: #111; }
.band p { max-width: 800px; font-size: 1.12rem; }
.band .button { background: #0a0a0a; color: #fff; box-shadow: 4px 4px 0 rgba(255,255,255,.55); }
.faq { display: grid; gap: 12px; max-width: 900px; }
.faq details { border: 1px solid var(--line); border-radius: 16px; background: #111; padding: 20px 22px; }
.faq summary { color: #fff; cursor: pointer; font-weight: 800; }
.faq p { color: var(--muted); }
.related a { color: var(--banana); font-weight: 800; }
.contact { text-align: center; }
.contact p { max-width: 680px; margin: 0 auto 28px; color: var(--muted); font-size: 1.15rem; }
footer { border-top: 1px solid var(--line); background: #050505; padding: 52px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; }
footer h3 { margin-bottom: 12px; }
footer p, footer li { color: #737373; }
footer ul { margin: 0; padding: 0; list-style: none; }
footer a { text-decoration: none; }
footer a:hover { color: var(--banana); }
.copyright { margin-top: 34px; padding-top: 22px; border-top: 1px solid #1f1f1f; color: #525252; font-size: .8rem; }
@media (max-width: 900px) {
  .nav-links a:not(.nav-cta) { display: none; }
  .hero { padding: 58px 0 64px; }
  .hero-grid, .grid, .grid.two, .footer-grid { grid-template-columns: 1fr; }
  .hero-note { transform: none; }
}
@media (max-width: 560px) {
  .wrap { width: min(100% - 28px, 1180px); }
  .brand { font-size: 1.5rem; }
  .nav-inner { min-height: 74px; }
  .nav-cta { padding: 10px 13px; font-size: .72rem !important; }
  h1 { font-size: 3rem; }
  .section { padding: 62px 0; }
  .band { padding: 30px 22px; }
  .actions .button { width: 100%; }
}
