:root {
  --bg: #060606;
  --bg-2: #0a0a0a;
  --surface: #0f0f10;
  --surface-2: #141416;
  --surface-3: #1a1a1c;
  --line: rgba(255, 255, 255, 0.06);
  --line-strong: rgba(255, 255, 255, 0.12);
  --text: #f5f5f5;
  --text-dim: #a1a1a4;
  --text-muted: #6b6b70;
  --red: #ef2b2b;
  --red-2: #dc1f1f;
  --red-3: #ff4d4d;
  --red-soft: rgba(239, 43, 43, 0.14);
  --red-softer: rgba(239, 43, 43, 0.08);
  --red-glow: rgba(239, 43, 43, 0.35);
  --radius: 18px;
  --radius-lg: 26px;
  --radius-sm: 12px;
  --radius-pill: 999px;
  --container: 1200px;
  --ease: cubic-bezier(0.2, 0.7, 0.2, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --font-sans: "Inter", ui-sans-serif, system-ui, sans-serif;
  --font-serif: "Instrument Serif", "Times New Roman", serif;
  --font-mono: "JetBrains Mono", ui-monospace, monospace;
  --cursor-x: 50vw;
  --cursor-y: 40vh;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--text);
  font-feature-settings: "cv11", "ss01";
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color 0.2s var(--ease); }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
::selection { background: var(--red); color: #fff; }
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-thumb { background: #222; border-radius: 999px; }
::-webkit-scrollbar-thumb:hover { background: var(--red); }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.container--wide { max-width: 1360px; }

.grain {
  position: fixed; inset: 0; pointer-events: none; z-index: 1; opacity: 0.04;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='140' height='140'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='.55'/></svg>");
}
.ambient { position: fixed; inset: 0; pointer-events: none; overflow: hidden; z-index: 0; background: radial-gradient(ellipse 80% 60% at 50% -10%, rgba(30,10,12,.6), transparent 70%), #080809; }
.ambient-dots {
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.055) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: radial-gradient(ellipse 60% 60% at 50% 30%, #000 0%, rgba(0,0,0,.4) 55%, transparent 90%);
}
.ambient-aurora { position: absolute; border-radius: 50%; filter: blur(90px); opacity: .55; }
.ambient-aurora--1 { top: -10vh; left: -10vw; width: 55vw; height: 55vw; background: radial-gradient(circle at 35% 35%, rgba(200,40,55,.22), rgba(130,20,30,.12) 40%, transparent 70%); animation: auroraDrift 28s ease-in-out infinite alternate; }
.ambient-aurora--2 { bottom: -15vh; right: -15vw; width: 60vw; height: 60vw; background: radial-gradient(circle at 60% 40%, rgba(160,30,40,.16), rgba(80,15,20,.08) 40%, transparent 70%); animation: auroraDrift 36s ease-in-out infinite alternate-reverse; }
@keyframes auroraDrift { to { transform: translate(6vw, 4vh) scale(1.08); } }
.ambient-spotlight {
  position: fixed; pointer-events: none; left: var(--cursor-x); top: var(--cursor-y);
  transform: translate(-50%,-50%); width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(220,60,70,.14), rgba(200,40,55,.05) 35%, transparent 65%);
  filter: blur(30px); mix-blend-mode: screen;
}
.ambient-vignette { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 70%, rgba(0,0,0,.5)), radial-gradient(ellipse at 50% 50%, transparent 60%, rgba(0,0,0,.35)); }

main, .nav, .footer, .cta, .to-top { position: relative; z-index: 2; }

.nav { position: fixed; top: 16px; left: 0; right: 0; z-index: 60; }
.nav-inner {
  max-width: var(--container); width: calc(100% - 32px); margin: 0 auto;
  padding: 10px 14px 10px 18px; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  background: rgba(12,12,13,.7); border: 1px solid var(--line); border-radius: var(--radius-pill);
  backdrop-filter: blur(18px) saturate(140%); box-shadow: 0 20px 40px -24px rgba(0,0,0,.8);
}
.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 700; letter-spacing: -.01em; }
.brand-mark { width: 42px; height: 42px; border-radius: 10px; overflow: hidden; display: grid; place-items: center; background: #000; }
.brand-mark img { width: 100%; height: 100%; object-fit: contain; }
.brand-name { font-size: 16px; }
.brand-tag {
  margin-left: 4px; font-size: 10px; padding: 3px 8px; border-radius: 999px;
  background: var(--red-soft); color: var(--red-3); border: 1px solid rgba(239,43,43,.22);
  font-weight: 600; font-family: var(--font-mono);
}
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a { padding: 8px 14px; border-radius: 999px; font-size: 14px; color: var(--text-dim); font-weight: 500; }
.nav-links a:hover { color: var(--text); background: rgba(255,255,255,.04); }
.nav-cta { display: flex; align-items: center; gap: 8px; }
.nav-burger { display: none; width: 38px; height: 38px; border-radius: 999px; align-items: center; justify-content: center; background: var(--surface-2); border: 1px solid var(--line); }
.nav-mobile { display: none; flex-direction: column; gap: 8px; margin: 8px 16px 0; padding: 16px; background: rgba(12,12,13,.95); border: 1px solid var(--line); border-radius: 20px; }
.nav-mobile.open { display: flex; }
.nav-mobile a { padding: 10px 12px; border-radius: 10px; color: var(--text-dim); font-weight: 500; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 10px 16px; border-radius: 999px; font-size: 14px; font-weight: 600;
  letter-spacing: -.005em; white-space: nowrap; line-height: 1;
  transition: transform .2s var(--ease), background .2s var(--ease), box-shadow .25s var(--ease), border-color .2s var(--ease);
  border: 1px solid transparent; cursor: pointer;
}
.btn svg { width: 16px; height: 16px; }
.btn-lg { padding: 14px 22px; font-size: 15px; }
.btn-block { width: 100%; }
.btn-primary { background: var(--red); color: #fff; box-shadow: 0 10px 30px -10px var(--red-glow), inset 0 1px 0 rgba(255,255,255,.2); }
.btn-primary:hover { background: var(--red-2); transform: translateY(-1px); }
.btn-ghost { color: var(--text-dim); }
.btn-ghost:hover { color: var(--text); background: rgba(255,255,255,.04); }
.btn-soft { background: var(--surface-2); color: var(--text); border-color: var(--line-strong); }
.btn-soft:hover { background: var(--surface-3); transform: translateY(-1px); }
.btn-outline { background: transparent; color: #fff; border-color: rgba(255,255,255,.28); }
.btn-outline:hover { background: rgba(255,255,255,.06); }
.btn-price { margin-left: 4px; padding: 3px 8px; border-radius: 999px; background: rgba(255,255,255,.18); font-size: 12px; font-weight: 700; font-family: var(--font-mono); }

.hero { padding: 180px 0 140px; }
.hero-inner { text-align: center; max-width: 1080px; }
.display {
  font-size: clamp(44px, 7.5vw, 96px); line-height: .98; letter-spacing: -.04em; font-weight: 800; margin: 0 0 24px;
  background: linear-gradient(180deg, #fff 0%, #fff 50%, #b8b8bb 100%);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.shipped h3 em, .page h1 em, .page em,
.display em, .section-title em, .cta-title em, .shipped h3 em, .page h1 em {
  font-family: var(--font-serif); font-style: italic; font-weight: 400; letter-spacing: -.02em;
  background: linear-gradient(180deg, var(--red-3), var(--red));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.lead { font-size: clamp(16px, 1.4vw, 19px); line-height: 1.55; color: var(--text-dim); max-width: 640px; margin: 0 auto 36px; }
.hero-ctas { display: inline-flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.hero-meta-inline { display: flex; align-items: center; justify-content: center; gap: 22px; margin-top: 18px; font-size: 13px; color: var(--text-dim); flex-wrap: wrap; }
.hero-meta-item { display: inline-flex; align-items: center; gap: 8px; }
.dot { width: 4px; height: 4px; border-radius: 999px; background: var(--red); box-shadow: 0 0 8px var(--red-glow); }

.section { padding: 120px 0; position: relative; }
.section-head { max-width: 820px; margin: 0 auto 64px; text-align: center; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 6px; margin-bottom: 18px;
  padding: 5px 12px; border-radius: 999px; font-size: 11px; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase; color: var(--red-3);
  border: 1px solid rgba(239,43,43,.35); background: var(--red-softer);
}
.section-title { font-size: clamp(32px, 5vw, 56px); line-height: 1.05; letter-spacing: -.035em; font-weight: 800; margin: 0 0 16px; }
.section-sub { color: var(--text-dim); font-size: 17px; max-width: 560px; margin: 0 auto; }

.clickgui-section { padding: 110px 0 100px; }
.clickgui {
  position: relative; border-radius: 20px; padding: 16px;
  background: radial-gradient(1200px circle at 50% -20%, rgba(239,43,43,.12), transparent 45%), linear-gradient(180deg, rgba(14,14,15,.95), rgba(8,8,9,.95));
  border: 1px solid var(--line-strong);
  box-shadow: 0 60px 120px -30px rgba(0,0,0,.9), 0 30px 80px -30px rgba(239,43,43,.35), inset 0 1px 0 rgba(255,255,255,.04);
}
.clickgui-toolbar { display: flex; justify-content: space-between; align-items: center; padding: 8px 12px 16px; gap: 16px; flex-wrap: wrap; }
.cg-left { display: inline-flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.cg-brand { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-mono); font-weight: 700; font-size: 12px; letter-spacing: .18em; color: var(--red-3); }
.cg-brand-dot { width: 8px; height: 8px; border-radius: 999px; background: var(--red); box-shadow: 0 0 12px var(--red); animation: pulse 2s ease-in-out infinite; }
@keyframes pulse { 50% { opacity: .35; } }
.cg-hint { font-size: 12px; color: var(--text-muted); display: inline-flex; align-items: center; gap: 6px; }
.cg-hint kbd { font-family: var(--font-mono); font-size: 11px; padding: 1px 6px; border-radius: 4px; background: var(--surface-2); border: 1px solid var(--line); color: var(--text); }
.cg-right { display: inline-flex; align-items: center; gap: 10px; }
.cg-stat { display: inline-flex; align-items: baseline; gap: 4px; font-family: var(--font-mono); color: var(--red-3); font-weight: 700; font-size: 14px; }
.cg-stat-lbl { color: var(--text-muted); font-weight: 500; font-size: 11px; letter-spacing: .1em; text-transform: uppercase; }
.cg-action { display: inline-flex; align-items: center; gap: 6px; padding: 7px 12px; border-radius: 8px; background: var(--surface-2); border: 1px solid var(--line); color: var(--text-dim); font-size: 12px; font-weight: 500; }
.cg-action:hover { color: var(--red-3); border-color: rgba(239,43,43,.3); background: var(--red-softer); }
.clickgui-canvas { background: #050505; border: 1px solid rgba(80,15,20,.55); border-radius: 14px; padding: 14px; }
.clickgui-board { display: grid; grid-template-columns: repeat(7, minmax(0,1fr)); gap: 8px; align-items: flex-start; }
.cg-col { display: flex; flex-direction: column; background: #000; border-radius: 6px; border: 1px solid rgba(60,10,15,.55); max-height: 620px; overflow-y: auto; scrollbar-width: thin; scrollbar-color: var(--red) transparent; }
.cg-col-head { position: sticky; top: 0; z-index: 2; background: var(--red); color: #fff; font-weight: 600; font-size: 12px; text-align: center; padding: 6px 8px; }
.cg-mod { padding: 6px 8px; margin: 2px 3px; font-size: 11.5px; color: var(--text); background: #0a0a0a; border-radius: 4px; cursor: pointer; text-align: center; user-select: none; }
.cg-mod:hover { background: #140000; }
.cg-mod.on { background: var(--red); color: #fff; font-weight: 500; box-shadow: 0 0 18px rgba(220,60,70,.45); }
.cg-mod.open { background: #1a0000; border-bottom-left-radius: 0; border-bottom-right-radius: 0; }
.cg-mod.on.open { background: #b00000; }
.cg-mod--hidden { display: none; }
.cg-settings { background: #050505; margin: -2px 3px 2px; border-radius: 0 0 4px 4px; overflow: hidden; }
.cg-set { display: flex; align-items: center; justify-content: space-between; gap: 6px; padding: 4px 8px; font-size: 11px; min-height: 19px; cursor: pointer; background: #000; border-top: 1px solid rgba(255,255,255,.04); }
.cg-set:hover { background: #0a0000; }
.cg-set-label { font-weight: 500; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; flex: 1; }
.cg-set-value { font-size: 11px; white-space: nowrap; }
.cg-set--number, .cg-set--range {
  background: linear-gradient(90deg, transparent 0%, transparent var(--fill), var(--red) var(--fill), var(--red) 100%), #000;
}
.cg-set--bool .cg-set-bool { width: 11px; height: 11px; border: 1.5px solid var(--red); }
.cg-set--bool.on .cg-set-bool { background: var(--red); }
.cg-set--color .cg-set-color { width: 22px; height: 11px; border: 1px solid rgba(255,255,255,.15); padding: 0; background: none; }
.clickgui-searchbar { position: relative; margin: 12px auto 0; max-width: 420px; display: flex; align-items: center; }
.clickgui-searchbar .search-icon { position: absolute; left: 12px; color: var(--red-3); pointer-events: none; }
.clickgui-searchbar input {
  width: 100%; padding: 8px 36px 8px 34px; background: #000; border: 1px solid var(--red); border-radius: 6px;
  font-size: 12px; color: var(--text); font-family: inherit; outline: none; text-align: center;
}
.clickgui-searchbar input:focus { box-shadow: 0 0 18px rgba(220,60,70,.5); }
.search-kbd { position: absolute; right: 10px; padding: 1px 6px; font-size: 10px; font-family: var(--font-mono); color: var(--text-dim); border: 1px solid var(--line); border-radius: 4px; }

.shipped {
  display: grid; grid-template-columns: 1.1fr .9fr; gap: 28px; align-items: center;
  padding: 28px; border-radius: 24px; background: var(--surface);
  border: 1px solid var(--line-strong); box-shadow: 0 30px 80px -30px var(--red-glow);
}
.shipped-badges { display: flex; gap: 8px; margin-bottom: 14px; }
.chip { display: inline-flex; align-items: center; padding: 4px 10px; border-radius: 999px; font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.chip-red { background: var(--red); color: #fff; }
.chip-dark { background: var(--surface-3); color: var(--text-dim); border: 1px solid var(--line); }
.shipped h3 { font-size: 32px; letter-spacing: -.03em; margin: 0 0 10px; }
.shipped p { color: var(--text-dim); margin: 0 0 18px; }
.change-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 18px; }
.change-tags span { padding: 5px 10px; border-radius: 8px; background: var(--surface-2); border: 1px solid var(--line); font-size: 13px; font-family: var(--font-mono); }
.change-tags .add { color: #7dffb3; }
.change-tags .chg { color: #ffd37a; }
.change-tags .rm { color: #ff7a7a; }
.version-row { display: flex; gap: 10px; margin-top: 14px; color: var(--text-muted); font-size: 13px; }
.version-row a { color: var(--text-dim); }
.version-row a.is-on, .version-row a:hover { color: var(--red-3); }
.shipped-visual { min-height: 180px; border-radius: 18px; background: radial-gradient(circle at 30% 20%, rgba(239,43,43,.25), transparent 50%), #0b0b0c; border: 1px solid var(--line); display: grid; place-items: center; color: var(--text-muted); font-family: var(--font-mono); letter-spacing: .2em; }

.pricing-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; max-width: 920px; margin: 0 auto; }
.price-card {
  padding: 28px; border-radius: 22px; background: var(--surface); border: 1px solid var(--line-strong);
  display: flex; flex-direction: column; gap: 8px;
}
.price-card.featured { border-color: rgba(239,43,43,.45); box-shadow: 0 0 0 1px rgba(239,43,43,.2), 0 30px 80px -24px var(--red-glow); }
.price-top { display: flex; align-items: center; justify-content: space-between; }
.price-top h3 { margin: 0; font-size: 22px; }
.price-num { font-size: 48px; font-weight: 800; letter-spacing: -.04em; line-height: 1; margin: 10px 0 4px; }
.price-card.featured .price-num { color: var(--red-3); }
.price-unit { color: var(--text-muted); font-size: 15px; }
.price-desc { color: var(--text-dim); font-size: 14px; margin: 8px 0 16px; }
.price-list { list-style: none; padding: 0; margin: 0 0 22px; display: grid; gap: 10px; }
.price-list li { display: flex; align-items: center; gap: 10px; font-size: 14px; }
.check { width: 16px; height: 16px; color: var(--red-3); flex-shrink: 0; }
.trust-row { display: flex; justify-content: center; gap: 28px; margin-top: 28px; flex-wrap: wrap; color: var(--text-dim); font-size: 13px; }
.trust-row span { display: inline-flex; align-items: center; gap: 8px; }
.trust-row svg { width: 14px; height: 14px; color: var(--red-3); }

.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.quote {
  padding: 22px; border-radius: 18px; background: var(--surface); border: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 16px;
}
.stars { color: var(--red-3); letter-spacing: 2px; font-size: 12px; }
.quote p { margin: 0; font-size: 15px; line-height: 1.55; }
.who { display: flex; align-items: center; gap: 10px; margin-top: auto; }
.avatar { width: 36px; height: 36px; border-radius: 999px; display: grid; place-items: center; font-size: 12px; font-weight: 700; background: var(--surface-3); border: 1px solid var(--line); }
.who strong { display: block; font-size: 14px; }
.who small { color: var(--text-muted); }
.rating { text-align: center; margin-top: 28px; color: var(--red-3); font-weight: 600; }

.faq-list { max-width: 820px; margin: 0 auto; display: grid; gap: 10px; }
.faq-item { background: var(--surface); border: 1px solid var(--line); border-radius: 16px; overflow: hidden; }
.faq-item[open] { border-color: var(--line-strong); }
.faq-item summary {
  list-style: none; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 18px 20px; cursor: pointer; font-weight: 600;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; color: var(--red-3); font-size: 22px; font-weight: 400; line-height: 1; }
.faq-item[open] summary::after { content: "–"; }
.faq-body { padding: 0 20px 18px; color: var(--text-dim); }
.faq-body a { color: var(--red-3); }

.cta { padding: 40px 0 120px; }
.cta-card {
  max-width: 860px; margin: 0 auto; text-align: center; padding: 64px 32px;
  border-radius: 28px; background: radial-gradient(circle at 50% 120%, rgba(239,43,43,.18), transparent 45%), var(--surface);
  border: 1px solid var(--line-strong); box-shadow: 0 40px 100px -30px var(--red-glow);
}
.cta-title { font-size: clamp(32px, 5vw, 52px); letter-spacing: -.035em; font-weight: 800; margin: 16px 0 14px; }
.cta-card p { color: var(--text-dim); max-width: 520px; margin: 0 auto 28px; }
.cta-actions { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }

.footer { padding: 72px 0 28px; border-top: 1px solid var(--line); }
.footer-inner { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 32px; }
.footer-brand p { color: var(--text-muted); font-size: 14px; max-width: 280px; }
.footer-socials { display: flex; gap: 8px; margin-top: 16px; }
.icon-btn { width: 36px; height: 36px; border-radius: 10px; display: grid; place-items: center; border: 1px solid var(--line); color: var(--text-dim); }
.icon-btn:hover { color: #fff; border-color: var(--line-strong); }
.footer-col h4 { margin: 0 0 14px; font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--text-muted); font-weight: 600; }
.footer-col a { display: block; color: #fff; font-size: 14px; margin: 8px 0; }
.footer-col a:hover { color: var(--red-3); }
.footer-bottom { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-top: 48px; padding-top: 18px; border-top: 1px solid var(--line); color: var(--text-muted); font-size: 13px; }
.footer-legal { display: flex; gap: 16px; }
.footer-legal a:hover { color: #fff; }

.to-top {
  position: fixed; right: 22px; bottom: 22px; z-index: 50;
  width: 44px; height: 44px; border-radius: 999px; background: var(--red); color: #fff;
  display: grid; place-items: center; box-shadow: 0 10px 30px var(--red-glow);
}
.page { padding: 140px 0 80px; }
.page h1 { font-size: clamp(36px, 5vw, 56px); letter-spacing: -.035em; margin: 0 0 12px; }
.page .lead { margin-left: 0; }
.log { margin: 18px 0 40px; padding: 22px; border-radius: 18px; background: var(--surface); border: 1px solid var(--line); }
.log h2 { margin: 0 0 8px; }
.log ul { margin: 0; padding-left: 18px; color: var(--text-dim); }
.form { max-width: 420px; display: grid; gap: 12px; }
.form input {
  width: 100%; padding: 12px 14px; border-radius: 12px; background: var(--surface-2);
  border: 1px solid var(--line-strong); color: #fff; font: inherit;
}
.legal p { color: var(--text-dim); max-width: 720px; }

.seo-nav { display: flex; flex-wrap: wrap; gap: 14px 18px; margin-bottom: 28px; }
.seo-nav a { color: var(--red); text-decoration: none; font-weight: 600; font-size: 14px; }
.seo-page h2 { margin: 28px 0 10px; font-size: 22px; }
.seo-page p, .seo-page li { color: var(--text-dim); line-height: 1.75; max-width: 720px; }
.seo-page ol, .seo-page ul { padding-left: 1.2rem; }
.seo-page code { font-family: var(--font-mono); color: var(--red-3); font-size: 0.92em; }
.seo-invite { word-break: break-all; color: var(--red); }

@media (max-width: 1100px) {
  .clickgui-board { grid-template-columns: repeat(4, minmax(160px, 1fr)); overflow-x: auto; }
  .quotes, .pricing-grid, .shipped, .footer-inner { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .nav-burger { display: grid; }
}
@media (max-width: 720px) {
  .hero { padding: 140px 0 80px; }
  .clickgui-board { grid-template-columns: repeat(2, minmax(140px, 1fr)); }
  .nav-cta .btn-ghost { display: none; }
}
