/* ==========================================================================
   BUILDERS — builders.dev4ager.com
   Neo-brutalist landing page. No frameworks, no build step.
   ========================================================================== */

/* ---------- Tokens ---------- */
:root {
  --ink: #0F0E0C;
  --paper: #FAF3E8;
  --white: #FFFFFF;
  --coral: #FF6B3D;
  --coral-deep: #C2410C;
  --yellow: #FFC53D;
  --green: #3ECF7A;
  --red: #FF5D5D;
  --blue: #4E9CFF;
  --purple: #8B7CFF;
  --muted: #57534A;
  --muted-2: #736E63;
  --line-soft: #E8DFCE;
  --line-dark: #37342E;
  --bw: 4px;
  --bw-s: 3px;
  --font-head: 'Archivo Black', 'Arial Black', sans-serif;
  --font-body: 'Space Grotesk', system-ui, -apple-system, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, 'Cascadia Code', monospace;
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-padding-top: 96px;
  -webkit-text-size-adjust: 100%;
}
@media (prefers-reduced-motion: no-preference) {
  html { scroll-behavior: smooth; }
}

body {
  font-family: var(--font-body);
  font-size: 16.5px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  overflow-x: hidden;
  overflow-x: clip; /* doesn't create a scroll container — keeps sticky nav working */
}

img, svg { display: block; max-width: 100%; }
ul { list-style: none; }
a { color: inherit; }
b, strong { font-weight: 700; }

::selection { background: var(--yellow); color: var(--ink); }

:focus-visible {
  outline: 3px solid var(--coral-deep);
  outline-offset: 3px;
}

.container {
  max-width: 1180px;
  margin-inline: auto;
  padding-inline: 24px;
}

.skip {
  position: absolute;
  left: 16px; top: -60px;
  z-index: 200;
  background: var(--ink);
  color: var(--paper);
  font: 700 0.85rem var(--font-mono);
  padding: 12px 18px;
  text-decoration: none;
  transition: top 0.2s ease;
}
.skip:focus { top: 12px; }

/* Dot-grid texture */
.dots {
  background-image: radial-gradient(rgba(15, 14, 12, 0.09) 1.5px, transparent 1.5px);
  background-size: 26px 26px;
}
.dots-dark {
  background-image: radial-gradient(rgba(250, 243, 232, 0.1) 1.5px, transparent 1.5px);
}

/* ---------- Chips ---------- */
.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.55em;
  font: 700 0.72rem/1 var(--font-mono);
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--white);
  border: 2px solid var(--ink);
  padding: 0.55em 0.85em;
  white-space: nowrap;
}
.chip-coral  { background: var(--coral); }
.chip-yellow { background: var(--yellow); }
.chip-green  { background: var(--green); }
.chip-red    { background: var(--red); }
.chip-white  { background: var(--white); }
.chip-outline { background: transparent; }
.chip-ghost {
  background: transparent;
  border-color: var(--paper);
  color: var(--paper);
}

/* Live dot */
.dot {
  flex: none;
  width: 9px; height: 9px;
  background: var(--green);
  border: 2px solid var(--ink);
  display: inline-block;
}
.dot-lg { width: 14px; height: 14px; }
@media (prefers-reduced-motion: no-preference) {
  .dot { animation: pulse 1.8s ease-out infinite; }
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(62, 207, 122, 0.6); }
  70%  { box-shadow: 0 0 0 8px rgba(62, 207, 122, 0); }
  100% { box-shadow: 0 0 0 0 rgba(62, 207, 122, 0); }
}

/* ---------- Buttons ---------- */
.btn {
  --sh: var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  font: 700 0.95rem/1.1 var(--font-body);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
  color: var(--ink);
  background: var(--white);
  border: var(--bw-s) solid var(--ink);
  padding: 0.95em 1.5em;
  cursor: pointer;
  box-shadow: 5px 5px 0 var(--sh);
  transition: transform 0.13s ease, box-shadow 0.13s ease;
  -webkit-tap-highlight-color: transparent;
}
.btn:hover  { transform: translate(-2px, -2px); box-shadow: 8px 8px 0 var(--sh); }
.btn:active { transform: translate(3px, 3px); box-shadow: 0 0 0 var(--sh); }

.btn-coral { background: var(--coral); }
.btn-white { background: var(--white); }
.btn-ink {
  background: var(--ink);
  color: var(--paper);
  --sh: var(--coral);
}
.btn-lg { font-size: 1.02rem; padding: 1.1em 1.7em; }
.btn-sm { font-size: 0.8rem; padding: 0.75em 1.1em; box-shadow: 4px 4px 0 var(--sh); }
.btn-block { width: 100%; }

/* ---------- Highlight mark ---------- */
.hl {
  background: var(--coral);
  color: var(--ink);
  padding: 0.02em 0.14em;
  box-shadow: 0.12em 0.12em 0 var(--ink);
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}

/* ==========================================================================
   TOP DEAL BAR
   ========================================================================== */
.topbar {
  background: var(--ink);
  color: var(--paper);
  border-bottom: var(--bw) solid var(--ink);
}
.topbar-in {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 14px;
  padding-block: 9px;
  font: 500 0.78rem/1.5 var(--font-mono);
  text-align: center;
}
.topbar s { opacity: 0.55; }
.topbar b { color: var(--yellow); font-weight: 700; }
.topbar strong { letter-spacing: 0.05em; }
.topbar-zap { font-size: 1rem; }
.topbar-count {
  border: 2px solid var(--yellow);
  color: var(--yellow);
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 3px 9px;
  white-space: nowrap;
}

/* ==========================================================================
   NAV
   ========================================================================== */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--paper);
  border-bottom: var(--bw) solid var(--ink);
}
.nav-in {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-block: 13px;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
}
.logo-mark {
  width: 36px; height: 36px;
  display: grid;
  place-items: center;
  background: var(--coral);
  border: var(--bw-s) solid var(--ink);
  box-shadow: 3px 3px 0 var(--ink);
  font: 1.05rem var(--font-head);
  padding-top: 2px;
}
.logo-text {
  font: 1.15rem var(--font-head);
  letter-spacing: 0.02em;
}
.nav-links {
  display: flex;
  gap: 8px;
}
.nav-links a {
  font: 700 0.78rem var(--font-mono);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 7px 10px;
  border: 2px solid transparent;
  transition: background 0.12s ease, box-shadow 0.12s ease, border-color 0.12s ease;
}
.nav-links a:hover {
  background: var(--yellow);
  border-color: var(--ink);
  box-shadow: 3px 3px 0 var(--ink);
}
@media (max-width: 860px) {
  .nav-links { display: none; }
}
@media (max-width: 420px) {
  .logo-text { display: none; }
}

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  position: relative;
  overflow: hidden;
  padding-block: 88px 76px;
}
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.hero-h1 {
  font-family: var(--font-head);
  font-size: clamp(2.65rem, 7.4vw, 5.9rem);
  line-height: 0.98;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin: 30px 0 24px;
  max-width: 15ch;
}
.hero-h1-sub {
  display: block;
  font-size: 0.42em;
  line-height: 1.25;
  margin-top: 0.65em;
  max-width: 24ch;
}
.hero-sub {
  max-width: 620px;
  font-size: 1.13rem;
  color: var(--muted);
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 22px 26px;
  margin: 38px 0 50px;
}
.cta-stack {
  display: grid;
  gap: 10px;
  justify-items: start;
}
.cta-note {
  font: 500 0.74rem var(--font-mono);
  color: var(--muted-2);
  letter-spacing: 0.02em;
}
.cta-note s { opacity: 0.65; }
.cta-note b { color: var(--coral-deep); }

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}
.stat {
  background: var(--white);
  border: var(--bw-s) solid var(--ink);
  box-shadow: 6px 6px 0 var(--ink);
  padding: 15px 22px 13px;
  display: grid;
  gap: 3px;
  min-width: 158px;
}
.stat-n {
  font: 1.9rem/1.1 var(--font-head);
  display: flex;
  align-items: center;
  gap: 10px;
}
.stat-l {
  font: 700 0.64rem var(--font-mono);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted-2);
}

/* Rotating sticker */
.hero-sticker {
  position: absolute;
  right: 6%;
  top: 96px;
  width: 158px;
  height: 158px;
  filter: drop-shadow(6px 6px 0 var(--ink));
}
.sticker-spin { width: 100%; height: 100%; }
@media (prefers-reduced-motion: no-preference) {
  .sticker-spin { animation: spin 16s linear infinite; }
}
@keyframes spin { to { transform: rotate(360deg); } }
.sticker-text {
  font: 700 15.5px var(--font-mono);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  fill: var(--ink);
}
.sticker-core {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: 42px;
}
@media (max-width: 1240px) { .hero-sticker { display: none; } }
@media (max-width: 640px) {
  .hero { padding-block: 60px 56px; }
  .hero-ctas { margin: 32px 0 40px; }
  .cta-stack { width: 100%; }
  .cta-stack .btn { width: 100%; }
  .hero-stats .stat { flex: 1 1 140px; }
}

/* ==========================================================================
   MARQUEE
   ========================================================================== */
.marquee {
  overflow: hidden;
  padding-block: 13px;
  border-block: var(--bw) solid var(--ink);
}
.marquee-ink { background: var(--ink); color: var(--paper); }
.marquee-coral { background: var(--coral); color: var(--ink); }
.marquee-track {
  display: flex;
  gap: 2.4rem;
  width: max-content;
  white-space: nowrap;
}
@media (prefers-reduced-motion: no-preference) {
  .marquee-track { animation: slide 30s linear infinite; }
  .marquee-track.marquee-rev { animation-direction: reverse; }
  .marquee:hover .marquee-track { animation-play-state: paused; }
}
@keyframes slide {
  to { transform: translateX(calc(-50% - 1.2rem)); }
}
.marquee-group {
  display: flex;
  align-items: center;
  gap: 2.4rem;
  font: 700 0.86rem var(--font-mono);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.marquee-group i { font-style: normal; color: var(--coral); }
.marquee-coral .marquee-group i { color: var(--ink); }

/* ==========================================================================
   SECTIONS — shared
   ========================================================================== */
.section {
  padding-block: 96px;
  border-top: var(--bw) solid var(--ink);
}
/* Marquees carry their own borders — avoid a doubled 8px line */
.marquee + .section { border-top: 0; }
.section-white { background: var(--white); }
.section-head {
  max-width: 780px;
  margin-bottom: 56px;
}
.eyebrow {
  display: inline-block;
  font: 700 0.72rem var(--font-mono);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: var(--yellow);
  border: 2px solid var(--ink);
  box-shadow: 3px 3px 0 var(--ink);
  padding: 0.6em 0.95em;
  transform: rotate(-1.2deg);
}
.section h2 {
  font-family: var(--font-head);
  font-size: clamp(2.05rem, 4.6vw, 3.45rem);
  line-height: 1.02;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin: 20px 0 14px;
}
.section-sub {
  font-size: 1.08rem;
  color: var(--muted);
  max-width: 640px;
}
@media (max-width: 640px) {
  .section { padding-block: 68px; }
  .section-head { margin-bottom: 40px; }
}

/* ==========================================================================
   COMMUNITIES
   ========================================================================== */
.rooms {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: stretch;
}
@media (max-width: 980px) {
  .rooms { grid-template-columns: 1fr; gap: 44px; }
}

.room {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: var(--white);
  border: var(--bw) solid var(--ink);
  box-shadow: 10px 10px 0 var(--ink);
  padding: 40px 32px 30px;
  transition: transform 0.16s ease, box-shadow 0.16s ease;
}
@media (hover: hover) {
  .room:hover { transform: translate(-4px, -4px); box-shadow: 14px 14px 0 var(--ink); }
  .room-max:hover { box-shadow: 14px 14px 0 var(--coral); }
}
.room:target {
  outline: 5px solid var(--coral);
  outline-offset: 5px;
}
.room-max {
  background: var(--ink);
  color: var(--paper);
  box-shadow: 10px 10px 0 var(--coral);
}

.room-badges {
  position: absolute;
  top: -15px;
  left: 22px;
  right: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.room-badges .chip { box-shadow: 3px 3px 0 var(--ink); transform: rotate(-1.6deg); }
.room-badges .chip + .chip { transform: rotate(1.2deg); }
.room-max .room-badges .chip-ghost {
  background: var(--ink);
  box-shadow: 3px 3px 0 var(--coral);
}

.room-no {
  font: 700 0.72rem var(--font-mono);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin-top: 6px;
}
.room-max .room-no { color: #A39D90; }
.room-title {
  font-family: var(--font-head);
  font-size: clamp(1.75rem, 3vw, 2.45rem);
  line-height: 1;
  text-transform: uppercase;
  margin-top: -6px;
}
.room-desc { font-size: 1.02rem; color: var(--muted); }
.room-max .room-desc { color: #CFC8BA; }

.room-block {
  border-top: 2px solid var(--line-soft);
  padding-top: 18px;
  display: grid;
  gap: 13px;
}
.room-max .room-block { border-top-color: var(--line-dark); }
.room-label {
  font: 700 0.7rem var(--font-mono);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--coral-deep);
}
.room-max .room-label { color: var(--coral); }

.checklist { display: grid; gap: 11px; }
.checklist li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 0.97rem;
  line-height: 1.45;
}
.ck {
  flex: none;
  width: 22px; height: 22px;
  margin-top: 1px;
  display: grid;
  place-items: center;
  font: 700 0.8rem var(--font-mono);
  color: var(--ink);
  background: var(--coral);
  border: 2px solid var(--ink);
}
.room-vibe .ck { background: var(--yellow); }
.ck-green { background: var(--green); }
.ck-red { background: var(--red); }

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.tags li {
  font: 500 0.76rem var(--font-mono);
  letter-spacing: 0.02em;
  border: 2px solid var(--ink);
  background: var(--paper);
  padding: 0.45em 0.7em;
}
.room-max .tags li {
  background: transparent;
  border-color: #4A463E;
  color: #E9E2D4;
}

.room-bottom {
  margin-top: auto;
  display: grid;
  gap: 12px;
  border-top: 2px solid var(--line-soft);
  padding-top: 22px;
}
.room-max .room-bottom { border-top-color: var(--line-dark); }
.room-price {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}
.price-old {
  font: 700 1.05rem var(--font-mono);
  color: var(--muted-2);
  text-decoration: line-through;
  text-decoration-thickness: 3px;
  text-decoration-color: var(--coral);
}
.room-max .price-old { color: #8F897C; }
.price-new {
  font: clamp(2.6rem, 4vw, 3.3rem)/0.95 var(--font-head);
}
.room-max .price-new { color: var(--coral); }
.price-new mark {
  background: var(--yellow);
  box-shadow: 4px 4px 0 var(--ink);
  padding: 0 0.1em;
  color: var(--ink);
}
.price-chip { font-size: 0.62rem; }
.price-note {
  font: 500 0.78rem var(--font-mono);
  color: var(--muted-2);
  margin-top: -4px;
}
.room-max .price-note { color: #A39D90; }
.room-foot {
  font: 500 0.74rem var(--font-mono);
  color: var(--muted-2);
  text-align: center;
}
.room-max .room-foot { color: #A39D90; }

.rooms-note {
  margin-top: 46px;
  border: var(--bw-s) solid var(--ink);
  background: var(--white);
  box-shadow: 6px 6px 0 var(--ink);
  padding: 18px 24px;
  font-size: 0.98rem;
}
.rooms-note a {
  font-weight: 700;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}
.rooms-note a:hover { background: var(--yellow); }

/* ==========================================================================
   WHY JOIN
   ========================================================================== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
@media (max-width: 1060px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px)  { .why-grid { grid-template-columns: 1fr; } }

.why-card {
  background: var(--paper);
  border: var(--bw-s) solid var(--ink);
  box-shadow: 6px 6px 0 var(--ink);
  padding: 22px 20px;
  display: grid;
  gap: 12px;
  align-content: start;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
@media (hover: hover) {
  .why-card:hover { transform: translate(-3px, -3px); box-shadow: 9px 9px 0 var(--ink); }
}
.why-ic {
  width: 48px; height: 48px;
  display: grid;
  place-items: center;
  font-size: 23px;
  border: var(--bw-s) solid var(--ink);
  box-shadow: 3px 3px 0 var(--ink);
  transform: rotate(-4deg);
}
.ic-coral  { background: var(--coral); }
.ic-yellow { background: var(--yellow); }
.ic-blue   { background: var(--blue); }
.ic-green  { background: var(--green); }
.ic-purple { background: var(--purple); }
.why-card h3 {
  font: 0.98rem var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.01em;
}
.why-card p { font-size: 0.9rem; color: var(--muted); line-height: 1.5; }

/* ==========================================================================
   WHO IT'S FOR
   ========================================================================== */
.who-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 28px;
  align-items: start;
}
@media (max-width: 900px) { .who-grid { grid-template-columns: 1fr; } }

.panel {
  position: relative;
  background: var(--white);
  border: var(--bw) solid var(--ink);
  box-shadow: 8px 8px 0 var(--ink);
  padding: 34px 26px 26px;
}
.panel-bad { background: #FFEDE6; }
.panel-chip {
  position: absolute;
  top: -15px;
  left: 20px;
  box-shadow: 3px 3px 0 var(--ink);
  transform: rotate(-1.5deg);
}
.who-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px 20px;
  margin-top: 8px;
}
.who-list li {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 0.95rem;
  font-weight: 500;
}
.who-list .ck { width: 20px; height: 20px; font-size: 0.72rem; margin: 0; }
.who-wide { grid-column: 1 / -1; }
.who-list-bad { grid-template-columns: 1fr; }
@media (max-width: 560px) { .who-list { grid-template-columns: 1fr; } }

/* ==========================================================================
   COMMUNITY PREVIEW (chats)
   ========================================================================== */
.chat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: start;
}
@media (max-width: 900px) { .chat-grid { grid-template-columns: 1fr; } }

.chat {
  background: var(--paper);
  border: var(--bw) solid var(--ink);
  box-shadow: 8px 8px 0 var(--ink);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
@media (hover: hover) {
  .chat:hover { transform: translate(-3px, -3px); box-shadow: 11px 11px 0 var(--ink); }
}
.chat-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: var(--ink);
  color: var(--paper);
  padding: 12px 16px;
}
.chat-name {
  font: 700 0.88rem var(--font-mono);
  letter-spacing: 0.04em;
}
.chat-meta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font: 500 0.7rem var(--font-mono);
  color: #B8B1A2;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.chat-body {
  padding: 20px 18px;
  display: grid;
  gap: 18px;
}
.msg { display: flex; gap: 12px; }
.av {
  flex: none;
  width: 38px; height: 38px;
  display: grid;
  place-items: center;
  font: 700 0.78rem var(--font-mono);
  background: var(--c, var(--coral));
  border: var(--bw-s) solid var(--ink);
  color: var(--ink);
}
.msg-main { min-width: 0; flex: 1; }
.msg-top {
  display: flex;
  align-items: baseline;
  gap: 10px;
  font-size: 0.92rem;
}
.msg-time {
  font: 500 0.68rem var(--font-mono);
  color: var(--muted-2);
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.msg-text { font-size: 0.95rem; line-height: 1.5; margin-top: 2px; }
.rx {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 9px;
}
.rx span {
  border: 2px solid var(--ink);
  background: var(--white);
  font: 500 0.72rem var(--font-mono);
  padding: 3px 8px;
}
.codeblock {
  background: var(--ink);
  color: #F2EBDD;
  font: 500 0.76rem/1.65 var(--font-mono);
  padding: 12px 14px;
  margin-top: 9px;
  border-left: 6px solid var(--coral);
  white-space: pre;
  overflow-x: auto;
}
.linkcard {
  display: flex;
  align-items: center;
  gap: 12px;
  border: var(--bw-s) solid var(--ink);
  background: var(--white);
  box-shadow: 4px 4px 0 var(--ink);
  padding: 10px 12px;
  margin-top: 9px;
}
.lc-ic {
  flex: none;
  width: 34px; height: 34px;
  display: grid;
  place-items: center;
  font: 1rem var(--font-head);
  background: var(--coral);
  border: 2px solid var(--ink);
}
.lc-txt { display: grid; font-size: 0.85rem; line-height: 1.35; min-width: 0; }
.lc-txt i {
  font: 500 0.7rem var(--font-mono);
  font-style: normal;
  color: var(--muted-2);
}

/* ==========================================================================
   TESTIMONIALS
   ========================================================================== */
.t-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  align-items: stretch;
}
@media (max-width: 980px) { .t-grid { grid-template-columns: 1fr; max-width: 620px; } }

.t-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: var(--white);
  border: var(--bw) solid var(--ink);
  box-shadow: 8px 8px 0 var(--ink);
  padding: 26px 24px;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
@media (hover: hover) {
  .t-card:hover { transform: translate(-3px, -3px); box-shadow: 11px 11px 0 var(--ink); }
}
.stars {
  color: var(--coral);
  font-size: 1.15rem;
  letter-spacing: 4px;
  -webkit-text-stroke: 1px var(--ink);
}
.t-card blockquote {
  font-size: 1.02rem;
  font-weight: 500;
  line-height: 1.55;
}
.t-foot {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 13px;
  border-top: 2px solid var(--line-soft);
  padding-top: 16px;
}
.t-foot .av { width: 42px; height: 42px; }
.t-foot span:last-child { display: grid; line-height: 1.35; }
.t-foot b { font-size: 0.95rem; }
.t-foot i {
  font: 500 0.72rem var(--font-mono);
  font-style: normal;
  color: var(--muted-2);
}

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq-list {
  max-width: 820px;
  display: grid;
  gap: 16px;
}
.faq-list details {
  background: var(--paper);
  border: var(--bw-s) solid var(--ink);
  box-shadow: 6px 6px 0 var(--ink);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
@media (hover: hover) {
  .faq-list details:hover { transform: translate(-2px, -2px); box-shadow: 8px 8px 0 var(--ink); }
}
.faq-list details[open] { background: var(--white); }
.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  list-style: none;
  cursor: pointer;
  padding: 18px 22px;
  font-size: 1.04rem;
  font-weight: 700;
  line-height: 1.35;
  user-select: none;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "+";
  flex: none;
  width: 30px; height: 30px;
  display: grid;
  place-items: center;
  font: 700 1.25rem var(--font-mono);
  background: var(--yellow);
  border: 2px solid var(--ink);
  transition: transform 0.2s ease;
}
.faq-list details[open] summary::after {
  transform: rotate(45deg);
  background: var(--coral);
}
.faq-a {
  padding: 0 22px 22px;
  color: var(--muted);
  font-size: 0.98rem;
}
@media (prefers-reduced-motion: no-preference) {
  .faq-list details[open] .faq-a { animation: faqIn 0.28s ease; }
}
@keyframes faqIn {
  from { opacity: 0; transform: translateY(-7px); }
  to   { opacity: 1; transform: none; }
}

/* ==========================================================================
   FINAL CTA
   ========================================================================== */
.final {
  background: var(--ink);
  color: var(--paper);
  border-top: var(--bw) solid var(--ink);
  padding-block: 116px;
  text-align: center;
}
.final-in {
  display: grid;
  justify-items: center;
  gap: 26px;
}
.final-h2 {
  font-family: var(--font-head);
  font-size: clamp(2.7rem, 7.6vw, 5.7rem);
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  max-width: 14ch;
}
.final-h2 .hl { box-shadow: 0.12em 0.12em 0 var(--paper); }
.final-sub {
  font-size: 1.12rem;
  color: #CFC8BA;
  max-width: 520px;
}
.final-ctas {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  margin-top: 8px;
}
.final .btn { --sh: var(--paper); }
.final .btn:hover { --sh: var(--paper); }
.final-trust {
  font: 500 0.75rem var(--font-mono);
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: #A39D90;
}
@media (max-width: 640px) {
  .final { padding-block: 80px; }
  .final-ctas { width: 100%; flex-direction: column; }
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
  background: var(--paper);
  border-top: var(--bw) solid var(--ink);
  padding-top: 60px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 46px;
}
@media (max-width: 760px) { .footer-grid { grid-template-columns: 1fr; gap: 34px; } }

.f-brand { display: grid; gap: 16px; justify-items: start; }
.f-brand p { color: var(--muted); max-width: 300px; }
.f-col { display: grid; gap: 11px; align-content: start; justify-items: start; }
.f-head {
  font: 700 0.7rem var(--font-mono);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin-bottom: 4px;
}
.f-col a {
  font-weight: 500;
  font-size: 0.95rem;
  text-decoration: none;
}
.f-col a:hover {
  background: var(--yellow);
  box-shadow: 2px 2px 0 var(--ink);
}
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px 20px;
  border-top: 2px solid var(--line-soft);
  padding-block: 20px;
  font: 500 0.73rem var(--font-mono);
  color: var(--muted-2);
}
@media (max-width: 760px) {
  .footer { padding-bottom: 84px; } /* room for floatbar */
}

/* ==========================================================================
   FLOATING MOBILE CTA
   ========================================================================== */
.floatbar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 120;
  display: none;
  gap: 10px;
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  background: var(--paper);
  border-top: var(--bw) solid var(--ink);
  transform: translateY(105%);
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.floatbar.show { transform: none; }
.floatbar .btn {
  flex: 1;
  font-size: 0.8rem;
  padding: 0.9em 0.4em;
  box-shadow: 4px 4px 0 var(--sh);
  white-space: nowrap;
}
@media (max-width: 760px) {
  .floatbar { display: flex; }
}

/* ==========================================================================
   FIRST WEEK (animated timeline)
   ========================================================================== */
.week-wrap { position: relative; }
.week-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}
.week-step {
  background: var(--white);
  border: var(--bw-s) solid var(--ink);
  box-shadow: 6px 6px 0 var(--ink);
  padding: 20px 18px;
  display: grid;
  gap: 11px;
  align-content: start;
  justify-items: start;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
@media (hover: hover) {
  .week-step:hover { transform: translate(-3px, -3px); box-shadow: 9px 9px 0 var(--ink); }
  .week-step-hot:hover { box-shadow: 9px 9px 0 var(--coral); }
}
.week-step h3 {
  font: 0.92rem var(--font-head);
  text-transform: uppercase;
  line-height: 1.25;
}
.week-step p { font-size: 0.87rem; color: var(--muted); line-height: 1.5; }
.week-step-hot { background: var(--ink); color: var(--paper); box-shadow: 6px 6px 0 var(--coral); }
.week-step-hot p { color: #CFC8BA; }
.week-line {
  position: absolute;
  z-index: 0;
  top: 32px;
  left: 1%;
  right: 1%;
  height: 4px;
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1) 0.25s;
}
.week-grid.revealed + .week-line { transform: scaleX(1); }
@media (max-width: 1060px) {
  .week-grid { grid-template-columns: repeat(2, 1fr); }
  .week-line { display: none; }
}
@media (max-width: 560px) { .week-grid { grid-template-columns: 1fr; } }

/* ==========================================================================
   TERMINAL (dark section, auto-typing Claude Code session)
   ========================================================================== */
.section-ink { background: var(--ink); color: var(--paper); }
.section-ink .section-sub { color: #CFC8BA; }
.term-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 52px;
  align-items: center;
}
.term-copy { margin-bottom: 0; }
.term-tags { margin-top: 24px; }
.section-ink .tags li { background: transparent; border-color: #4A463E; color: #E9E2D4; }
@media (max-width: 980px) { .term-grid { grid-template-columns: 1fr; gap: 40px; } }

.term {
  border: var(--bw) solid var(--paper);
  background: #171511;
  box-shadow: 12px 12px 0 var(--coral);
}
.term-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--paper);
  padding: 11px 14px;
}
.td { width: 13px; height: 13px; border: 2px solid var(--ink); }
.td-coral { background: var(--coral); }
.td-yellow { background: var(--yellow); }
.td-green { background: var(--green); }
.term-title {
  margin-left: 8px;
  font: 700 0.7rem var(--font-mono);
  letter-spacing: 0.05em;
  color: var(--muted);
}
.term-body {
  padding: 20px 20px 24px;
  min-height: 23.5em;
  font: 500 0.8rem/1.95 var(--font-mono);
}
@media (max-width: 560px) { .term-body { min-height: 27em; font-size: 0.74rem; } }
.tl { white-space: pre-wrap; word-break: break-word; }
.tl-cmd { color: var(--paper); font-weight: 700; }
.tl-dim { color: #9C958A; }
.tl-ok  { color: var(--green); }
.tl-hot { color: var(--coral); font-weight: 700; }
.tl-cursor {
  display: inline-block;
  width: 0.55em;
  height: 1.05em;
  background: var(--coral);
  margin-left: 2px;
  vertical-align: -0.16em;
}
@media (prefers-reduced-motion: no-preference) {
  .tl-cursor { animation: blink 1s steps(1) infinite; }
}
@keyframes blink { 50% { opacity: 0; } }
.term-fallback { display: none; color: #9C958A; }
html:not(.js) .term-fallback { display: block; }
html:not(.js) .term-body { min-height: 0; }

/* Small utilities */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  clip-path: inset(50%);
  overflow: hidden;
  white-space: nowrap;
}
.chat-dots {
  font: 700 1.1rem/1 var(--font-mono);
  letter-spacing: 2px;
  color: #B8B1A2;
}

/* ==========================================================================
   SCROLL REVEAL
   ========================================================================== */
.js [data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.55s ease, transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--d, 0ms);
}
.js [data-reveal].revealed {
  opacity: 1;
  transform: none;
}
.js [data-stagger] > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--d, 0ms);
}
.js [data-stagger].revealed > * {
  opacity: 1;
  transform: none;
}

/* ==========================================================================
   REDUCED MOTION — kill it all
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .js [data-reveal],
  .js [data-stagger] > * {
    opacity: 1;
    transform: none;
  }
}
