/* WellPaged — "Neobrutalism" template preview
   Bold black borders, hard offset shadows, vivid accents on a warm surface. */

:root {
  --primary: #FDC800;
  --secondary: #432DD7;
  --success: #16A34A;
  --warning: #D97706;
  --danger: #DC2626;
  --surface: #FBFBF9;
  --text: #1C293C;
  --ink: #0E1626;
  --paper: #FFFFFF;

  --border: 3px solid var(--ink);
  --border-thick: 4px solid var(--ink);
  --r-sm: 4px;
  --r-md: 8px;

  /* signature hard shadow — no blur */
  --sh: 6px 6px 0 var(--ink);
  --sh-lg: 10px 10px 0 var(--ink);
  --sh-sm: 4px 4px 0 var(--ink);
  --sh-color: 6px 6px 0 var(--secondary);

  --maxw: 1140px;

  --s-4: 4px;
  --s-8: 8px;
  --s-12: 12px;
  --s-16: 16px;
  --s-24: 24px;
  --s-32: 32px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--surface);
  color: var(--text);
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  font-size: 0.9375rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  /* faint grid texture for raw brutalist feel */
  background-image:
    linear-gradient(rgba(28,41,60,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(28,41,60,.035) 1px, transparent 1px);
  background-size: 28px 28px;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation: none !important; transition: none !important; }
}

h1, h2, h3 { margin: 0; line-height: 1.04; letter-spacing: -0.02em; font-weight: 900; }
p { margin: 0; }
a { color: inherit; }
img, svg { display: block; max-width: 100%; }
ul { margin: 0; padding: 0; list-style: none; }

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

.skip-link {
  position: absolute; left: -999px; top: 8px; z-index: 100;
  background: var(--primary); color: var(--ink);
  border: var(--border); border-radius: var(--r-sm);
  padding: 10px 16px; font-weight: 800;
}
.skip-link:focus { left: 16px; }

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

/* ---------- Mono caps utility ---------- */
.kicker, .eyebrow, .cap, .hero__fact-cap, .stat__label, .stat__as,
.linkcard__host, .rate__flag, .hero__pill, .marquee, .footer__note, .rate__price {
  font-family: "JetBrains Mono", ui-monospace, monospace;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 800; text-decoration: none; cursor: pointer;
  border: var(--border-thick); border-radius: var(--r-md);
  background: var(--paper); color: var(--ink);
  padding: 12px 18px; line-height: 1;
  box-shadow: var(--sh-sm);
  transition: transform .08s ease, box-shadow .08s ease, background .15s ease;
}
.btn:hover { transform: translate(-2px, -2px); box-shadow: var(--sh); }
.btn:active { transform: translate(2px, 2px); box-shadow: 1px 1px 0 var(--ink); }
.btn .ico { width: 15px; height: 15px; }
.btn--primary { background: var(--primary); }
.btn--ghost { background: var(--paper); }
.btn--sm { padding: 9px 14px; font-size: .8125rem; }
.btn--lg { padding: 15px 24px; font-size: 1rem; }
.btn--block { width: 100%; justify-content: center; }

/* ---------- Topbar ---------- */
.topbar {
  position: sticky; top: 0; z-index: 50;
  background: var(--primary);
  border-bottom: var(--border-thick);
}
.topbar__inner {
  display: flex; align-items: center; gap: 16px;
  padding-top: 12px; padding-bottom: 12px;
}
.brand { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; }
.brand__mark {
  display: grid; place-items: center;
  width: 38px; height: 38px;
  background: var(--ink); color: var(--primary);
  border: var(--border); border-radius: var(--r-sm);
  font-family: "JetBrains Mono", monospace; font-weight: 800; font-size: .9rem;
  box-shadow: var(--sh-sm);
}
.brand__mark--sm { width: 30px; height: 30px; font-size: .75rem; box-shadow: none; }
.brand__name { font-weight: 900; letter-spacing: .02em; font-size: 1rem; }
.nav { margin-left: auto; display: flex; gap: 4px; }
.nav a {
  text-decoration: none; font-weight: 700; font-size: .9rem;
  padding: 7px 12px; border-radius: var(--r-sm);
  border: 2px solid transparent;
}
.nav a:hover { border-color: var(--ink); background: var(--paper); }
.topbar .btn { box-shadow: var(--sh-sm); }

/* ---------- Hero ---------- */
.hero { border-bottom: var(--border-thick); background: var(--surface); }
.hero__inner {
  display: grid; grid-template-columns: 1.15fr .85fr; gap: 44px; align-items: center;
  padding: 56px 24px 60px;
}
.kicker {
  display: inline-block; font-size: .8125rem; font-weight: 700; letter-spacing: .04em;
  background: var(--secondary); color: #fff;
  border: var(--border); border-radius: var(--r-sm);
  padding: 6px 12px; box-shadow: var(--sh-sm);
}
.hero__name {
  font-size: clamp(2.6rem, 8vw, 4.6rem);
  margin: 20px 0 6px; text-transform: uppercase;
}
.hero__tagline {
  font-size: clamp(1.25rem, 3.4vw, 1.9rem); font-weight: 800; color: var(--secondary);
  margin-bottom: 14px;
}
.hero__sub { font-size: 1.0625rem; max-width: 46ch; color: var(--text); }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }
.hero__facts {
  display: flex; flex-wrap: wrap; gap: 10px; margin-top: 30px;
}
.hero__facts li {
  display: flex; flex-direction: column; gap: 2px;
  background: var(--paper); border: var(--border); border-radius: var(--r-sm);
  padding: 8px 14px; box-shadow: var(--sh-sm);
}
.hero__fact-cap { font-size: .68rem; letter-spacing: .08em; text-transform: uppercase; color: var(--secondary); font-weight: 700; }
.hero__fact-val { font-weight: 800; font-size: .95rem; }

.hero__visual { position: relative; }
.hero__img {
  aspect-ratio: 4 / 5; width: 100%;
  box-shadow: var(--sh-lg);
}
.hero__pill {
  position: absolute; left: -10px; bottom: -16px;
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--success); color: #fff;
  border: var(--border); border-radius: var(--r-sm);
  padding: 8px 14px; font-size: .72rem; font-weight: 700; letter-spacing: .05em;
  box-shadow: var(--sh-sm);
}
.hero__pill .dot { width: 9px; height: 9px; border-radius: 50%; background: #fff; animation: blink 1.4s steps(2) infinite; }
@keyframes blink { 50% { opacity: .25; } }

/* ---------- Marquee ---------- */
.marquee {
  border-top: var(--border-thick);
  background: var(--ink); color: var(--primary);
  overflow: hidden; padding: 10px 0;
}
.marquee__track {
  display: inline-flex; align-items: center; gap: 26px; white-space: nowrap;
  font-weight: 800; letter-spacing: .12em; font-size: .9rem;
  animation: scroll 22s linear infinite;
}
.marquee__dot { color: var(--primary); }
@keyframes scroll { to { transform: translateX(-50%); } }

/* ---------- Sections ---------- */
.section { padding: 72px 0; border-bottom: var(--border-thick); }
.section--alt { background: var(--paper); }
.section--dark { background: var(--secondary); color: #fff; }
.section__head { margin-bottom: 40px; max-width: 60ch; }
.eyebrow {
  display: inline-block; font-size: .8125rem; font-weight: 700; letter-spacing: .08em;
  background: var(--primary); color: var(--ink);
  border: var(--border); border-radius: var(--r-sm);
  padding: 5px 11px; margin-bottom: 16px; box-shadow: var(--sh-sm);
}
.eyebrow--on-dark { background: var(--primary); color: var(--ink); }
.section__title { font-size: clamp(2rem, 5vw, 3rem); }
.section__lead { margin-top: 14px; font-size: 1.0625rem; opacity: .92; }
.section--dark .section__lead { color: #fff; }

/* ---------- Image placeholders ---------- */
.wp-img {
  position: relative;
  background:
    repeating-linear-gradient(45deg, rgba(67,45,215,.06) 0 12px, transparent 12px 24px),
    var(--paper);
  border: var(--border); border-radius: var(--r-md);
  min-height: 180px;
  display: grid; place-items: center;
}
.wp-img::after {
  content: "＋ Add photo";
  font-family: "JetBrains Mono", monospace;
  font-size: .8rem; font-weight: 700; letter-spacing: .04em;
  color: var(--secondary);
  background: var(--surface);
  border: 2px dashed var(--secondary); border-radius: var(--r-sm);
  padding: 6px 12px;
}
.wp-img[data-wp-has-img]::before, .wp-img[data-wp-has-img]::after { display: none; }
.section--dark .wp-img { background:
    repeating-linear-gradient(45deg, rgba(255,255,255,.10) 0 12px, transparent 12px 24px),
    rgba(255,255,255,.06); border-color: var(--ink); }

/* ---------- About ---------- */
.about { display: grid; grid-template-columns: 1.1fr .9fr; gap: 40px; align-items: start; }
.about__body { font-size: 1.125rem; line-height: 1.7; }
.tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.tags li {
  font-family: "JetBrains Mono", monospace; font-size: .8rem; font-weight: 600;
  background: var(--primary); color: var(--ink);
  border: var(--border); border-radius: var(--r-sm);
  padding: 6px 12px; box-shadow: var(--sh-sm);
}
.about__media { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.about__img { box-shadow: var(--sh); }
.about__img--tall { grid-row: span 2; aspect-ratio: 3 / 5; }
.about__img:not(.about__img--tall) { aspect-ratio: 4 / 5; align-self: end; }

/* ---------- Links ---------- */
.links { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.linkcard {
  position: relative;
  display: flex; align-items: center; gap: 16px;
  text-decoration: none;
  background: var(--paper); color: var(--ink);
  border: var(--border-thick); border-radius: var(--r-md);
  padding: 22px 22px; box-shadow: var(--sh);
  transition: transform .1s ease, box-shadow .1s ease, background .15s ease;
}
.linkcard:hover { transform: translate(-3px, -3px); box-shadow: var(--sh-lg); background: var(--primary); }
.linkcard:active { transform: translate(2px, 2px); box-shadow: 2px 2px 0 var(--ink); }
.linkcard--feat { grid-column: 1 / -1; background: var(--primary); }
.linkcard--feat:hover { background: #ffd633; }
.linkcard__badge {
  position: absolute; top: -14px; left: 20px;
  font-family: "JetBrains Mono", monospace; font-size: .7rem; font-weight: 800; letter-spacing: .08em;
  background: var(--danger); color: #fff;
  border: var(--border); border-radius: var(--r-sm);
  padding: 4px 10px; box-shadow: var(--sh-sm);
}
.linkcard__body { display: flex; flex-direction: column; gap: 4px; flex: 1; min-width: 0; }
.linkcard__label { font-weight: 800; font-size: 1.125rem; }
.linkcard__host { font-size: .78rem; color: var(--secondary); font-weight: 600; }
.linkcard__arrow { width: 26px; height: 26px; flex: none; color: var(--ink); }
.linkcard--feat .linkcard__host { color: #5a45e0; }

.links__media { grid-column: 1 / -1; display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 8px; }
.links__img { aspect-ratio: 16 / 9; box-shadow: var(--sh); border-color: var(--ink); }
.section--dark .links__img { box-shadow: 6px 6px 0 var(--ink); }

/* ---------- Rates ---------- */
.rates { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: start; }
.rate {
  position: relative;
  background: var(--paper);
  border: var(--border-thick); border-radius: var(--r-md);
  padding: 26px 22px; box-shadow: var(--sh);
  display: flex; flex-direction: column; gap: 14px;
  transition: transform .1s ease, box-shadow .1s ease;
}
.rate:hover { transform: translate(-3px, -3px); box-shadow: var(--sh-lg); }
.rate--featured { background: var(--primary); box-shadow: var(--sh-color); }
.rate--featured:hover { box-shadow: 10px 10px 0 var(--secondary); }
.rate__flag {
  position: absolute; top: -14px; right: 18px;
  font-family: "JetBrains Mono", monospace; font-size: .7rem; font-weight: 800; letter-spacing: .06em;
  background: var(--secondary); color: #fff;
  border: var(--border); border-radius: var(--r-sm);
  padding: 4px 10px; box-shadow: var(--sh-sm);
}
.rate__head { display: flex; flex-direction: column; gap: 6px; }
.rate__tier { font-size: 1.25rem; }
.rate__price { font-size: 2rem; font-weight: 800; color: var(--secondary); }
.rate--featured .rate__price { color: var(--ink); }
.rate__desc { flex: 1; font-size: .95rem; }

/* ---------- Stats ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.stat {
  background: var(--surface);
  border: var(--border-thick); border-radius: var(--r-md);
  padding: 24px 18px; box-shadow: var(--sh);
  display: flex; flex-direction: column; gap: 4px;
}
.stat--accent { background: var(--primary); }
.stat--secondary { background: var(--secondary); color: #fff; }
.stat__value { font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 900; letter-spacing: -.02em; line-height: 1; }
.stat__label { font-size: .8rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; margin-top: 6px; }
.stat__as { font-size: .68rem; opacity: .7; letter-spacing: .03em; }
.stat--secondary .stat__as { opacity: .85; }

.audience { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 18px; margin-top: 28px; align-items: stretch; }
.audience__socials {
  background: var(--paper);
  border: var(--border-thick); border-radius: var(--r-md);
  padding: 22px; box-shadow: var(--sh);
}
.cap { display: block; font-size: .72rem; font-weight: 700; letter-spacing: .08em; color: var(--secondary); margin-bottom: 14px; }
.socials { display: flex; flex-direction: column; gap: 12px; }
.social {
  display: flex; align-items: center; gap: 12px; text-decoration: none;
  background: var(--surface);
  border: var(--border); border-radius: var(--r-sm);
  padding: 10px 14px; font-weight: 700;
  transition: transform .08s ease, box-shadow .08s ease, background .15s ease;
}
.social:hover { transform: translate(-2px, -2px); box-shadow: var(--sh-sm); background: var(--primary); }
.social svg { width: 24px; height: 24px; flex: none; color: var(--ink); }
.social__txt { display: flex; flex-direction: column; line-height: 1.2; font-size: .85rem; }
.social__txt strong { font-size: .95rem; }
.audience__img { box-shadow: var(--sh); }

/* ---------- CTA ---------- */
.cta { background: var(--primary); padding: 80px 0; border-bottom: var(--border-thick); }
.cta__cell {
  background: var(--ink); color: #fff;
  border: var(--border-thick); border-radius: var(--r-md);
  box-shadow: var(--sh-color);
  padding: 56px 40px; text-align: center;
  max-width: 760px; margin: 0 auto;
}
.cta__cell .eyebrow { background: var(--primary); color: var(--ink); }
.cta__title { font-size: clamp(1.8rem, 4.5vw, 2.8rem); margin: 8px 0 14px; }
.cta__lead { font-size: 1.0625rem; opacity: .85; margin-bottom: 28px; }

/* ---------- Footer ---------- */
.footer { background: var(--surface); padding: 28px 0; }
.footer__inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.footer__brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 900; letter-spacing: .02em; }
.footer__note { font-size: .78rem; color: var(--text); opacity: .75; }

/* ---------- Reveal animation ---------- */
[data-reveal] { opacity: 0; transform: translateY(16px); transition: opacity .5s ease, transform .5s ease; }
[data-reveal].is-in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 920px) {
  .hero__inner { grid-template-columns: 1fr; gap: 36px; }
  .hero__visual { max-width: 420px; }
  .about { grid-template-columns: 1fr; }
  .audience { grid-template-columns: 1fr 1fr; }
  .audience__socials { grid-column: 1 / -1; }
  .rates { grid-template-columns: 1fr; max-width: 460px; }
  .stats { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .nav { display: none; }
  .section { padding: 52px 0; }
  .links { grid-template-columns: 1fr; }
  .links__media, .about__media { grid-template-columns: 1fr; }
  .about__img--tall { grid-row: auto; aspect-ratio: 4 / 3; }
  .audience { grid-template-columns: 1fr; }
  .cta__cell { padding: 40px 22px; }
  .hero__pill { left: 0; }
}

/* Decorative overlay must never intercept taps meant for the photo frame
   beneath it (the editor is tap-to-upload). */
.hero__pill { pointer-events: none; }

/* Sample-page notice bar (fictional demo content) */
.wp-sample-note { background: #241C16; color: #F8F4E3; text-align: center; font-size: 12.5px; line-height: 1.5; padding: 9px 16px; letter-spacing: .01em; }
.wp-sample-note a { color: #FFA8B7; text-decoration: underline; text-underline-offset: 2px; }
.wp-sample-note strong { font-weight: 700; }

/* Phone topbar: the quote pill must never wrap to two lines — shrink the
   wordmark instead and let it wrap inside the padded bar. */
@media (max-width: 640px) {
  .topbar .btn { white-space: nowrap; flex-shrink: 0; }
  .brand__name { font-size: .92rem; }
}
