/* ============================================================
   AntCo — Neo-brutalism landing page (Gumroad-flavored, clean)
   Background WHITE. Black borders + hard offset shadows = 3D.
   ============================================================ */

:root {
  /* Brand */
  --primary:      #2753F4;
  --primary-dark: #214CCE;
  --primary-300:  #9AC0FA;
  --primary-200:  #CDE1FD;
  --primary-100:  #EDF4FF;

  --ink:        #111111;   /* borders + text */
  --ink-soft:   #2D2D2D;
  --gray-600:   #797979;
  --gray-400:   #B9B9B9;
  --gray-200:   #E8E8E8;
  --gray-100:   #F3F3F3;
  --bg:         #FFFFFF;

  /* warm "money" accent — used sparingly on earnings block */
  --accent:     #FFD23F;

  /* Neo-brutalism knobs (tweakable) */
  --border-w:   2px;
  --radius:     12px;
  --shadow-x:   5px;
  --shadow-y:   5px;
  --shadow-col: var(--ink);

  /* fonts (tweakable) */
  --font-head: "Space Grotesk", system-ui, sans-serif;
  --font-body: "Space Grotesk", system-ui, sans-serif;
  --font-mono: "Space Mono", ui-monospace, monospace;

  --maxw: 1200px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin: 0;
  text-wrap: balance;
}

p { margin: 0; text-wrap: pretty; }
a { color: inherit; text-decoration: none; }

.shell { max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }

/* ---- shared neo-brutalism shadow utility ---- */
.nb {
  border: var(--border-w) solid var(--ink);
  box-shadow: var(--shadow-x) var(--shadow-y) 0 var(--shadow-col);
  background: var(--bg);
  border-radius: var(--radius);
}

/* ============================== TYPE SCALE ============================== */
.eyebrow {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.display {
  font-size: clamp(40px, 6.8vw, 86px);
}
.h2 { font-size: clamp(30px, 4.2vw, 52px); }
.h3 { font-size: clamp(22px, 2.4vw, 30px); }
.lead { font-size: clamp(18px, 1.5vw, 22px); color: var(--ink-soft); }
.mono { font-family: var(--font-mono); }

/* ============================== BUTTONS ============================== */
.btn {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.01em;
  border-radius: var(--radius);
  border: var(--border-w) solid var(--ink);
  padding: 14px 22px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: transform .08s ease, box-shadow .08s ease, background .15s ease;
  box-shadow: 4px 4px 0 var(--ink);
  background: var(--bg);
  color: var(--ink);
  white-space: nowrap;
}
.btn:hover  { transform: translate(-2px,-2px); box-shadow: 6px 6px 0 var(--ink); }
.btn:active { transform: translate(2px,2px);   box-shadow: 1px 1px 0 var(--ink); }

.btn--primary { background: var(--primary); color: #fff; }
.btn--primary:hover { background: var(--primary-dark); }
.btn--secondary { background: var(--primary-200); color: var(--primary-dark); }
.btn--ghost { background: #fff; color: var(--primary-dark); }
.btn--borderless { border-color: transparent; box-shadow: none; background: transparent; color: var(--primary-dark); padding: 10px 8px; }
.btn--borderless:hover { box-shadow: none; transform: none; text-decoration: underline; text-underline-offset: 4px; }
.btn--lg { font-size: 18px; padding: 18px 28px; }
.btn--block { width: 100%; justify-content: center; }
.btn .ico { width: 18px; height: 18px; display: inline-block; }

/* ============================== CHIP / TAG ============================== */
.chip {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono); font-size: 13px; font-weight: 700;
  letter-spacing: 0.04em;
  padding: 7px 13px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: #fff;
}
.chip--blue { background: var(--primary-100); color: var(--primary-dark); border-color: var(--primary); }
.chip--ink  { background: var(--ink); color: #fff; }

/* ============================== SECTION ============================== */
section { position: relative; }
.section-pad { padding-top: clamp(70px, 9vw, 130px); padding-bottom: clamp(70px, 9vw, 130px); }
.section-head { max-width: 760px; }
.section-head .eyebrow { color: var(--primary); display: inline-block; margin-bottom: 18px; }

/* hairline divider */
.rule { height: var(--border-w); background: var(--ink); border: 0; margin: 0; }

/* ============================== IMAGE / VIDEO SLOTS ============================== */
image-slot {
  display: block;
  border: var(--border-w) solid var(--ink);
  border-radius: var(--radius);
  box-shadow: var(--shadow-x) var(--shadow-y) 0 var(--shadow-col);
  background:
    repeating-linear-gradient(45deg, var(--gray-100) 0 14px, #fff 14px 28px);
  --is-bg: transparent;
}
.media-ph {
  border: var(--border-w) solid var(--ink);
  border-radius: var(--radius);
  box-shadow: var(--shadow-x) var(--shadow-y) 0 var(--shadow-col);
  background:
    repeating-linear-gradient(45deg, var(--gray-100) 0 14px, #fff 14px 28px);
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.media-ph .label {
  font-family: var(--font-mono); font-size: 13px; font-weight: 700;
  color: var(--gray-600); background: #fff;
  border: 2px solid var(--ink); border-radius: 6px;
  padding: 8px 12px; letter-spacing: .03em;
  display: inline-flex; align-items: center; gap: 8px;
}
.media-ph .play {
  width: 64px; height: 64px; border-radius: 999px;
  background: var(--primary); border: var(--border-w) solid var(--ink);
  box-shadow: 4px 4px 0 var(--ink);
  display: flex; align-items: center; justify-content: center;
  position: absolute; left: 24px; bottom: 24px;
}
.media-ph .play::after {
  content: ""; width: 0; height: 0; margin-left: 4px;
  border-left: 18px solid #fff; border-top: 11px solid transparent; border-bottom: 11px solid transparent;
}

/* ============================== UTILITIES ============================== */
.row { display: flex; gap: 14px; flex-wrap: wrap; }
.center { align-items: center; }
.grid { display: grid; gap: 22px; }
.hide { display: none !important; }
[hidden] { display: none !important; }

/* reveal-on-scroll */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}
