/* ==========================================================
   INKPERCH — Landing v3 ("press edition")
   Reimagined structure for the splash / artist / shop set.
   Same voice, same parchment-on-ink palette, same type
   (Newsreader / Source Sans 3 / JetBrains Mono / Permanent
   Marker). What changes: shadow boxes give way to hairline
   press-plate grids, the hero puts the CTA above the fold,
   the masthead tightens, and the splash becomes a diptych.
   ========================================================== */

:root {
  --ink-black:  #14100b;
  --surface-1:  #1d1812;
  --surface-2:  #2a221b;

  --parch:      #f5ead0;
  --parch-2:    rgba(245,234,208,0.74);
  --parch-3:    rgba(245,234,208,0.46);

  --line:        rgba(245,234,208,0.13);
  --line-strong: rgba(245,234,208,0.34);

  --red:        #c0382a;
  --red-br:     #e4503f;
  --red-soft:   rgba(228,80,63,0.14);
  --teal:       #1f6b6a;
  --teal-br:    #3eb0ad;
  --teal-soft:  rgba(62,176,173,0.15);
  --gold:       #d4a13a;
  --gold-br:    #e0b657;
  --gold-line:  rgba(212,161,58,0.50);
  --gold-soft:  rgba(212,161,58,0.13);

  --serif: "Newsreader", "Cormorant Garamond", Georgia, serif;
  --sans:  "Source Sans 3", "Helvetica Neue", Helvetica, sans-serif;
  --mono:  "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;
  --marker: "Permanent Marker", cursive;
  --helv: "Helvetica Neue", Helvetica, Arial, sans-serif;

  --maxw: 1280px;
  --shadow-sm: 3px 3px 0 0 #000;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--ink-black);
  color: var(--parch);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Grain */
body::before {
  content: "";
  position: fixed; inset: 0; z-index: 1; pointer-events: none;
  opacity: 0.05; mix-blend-mode: soft-light;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.nav3, main, .footer3, .sp3 { position: relative; z-index: 2; }

::selection { background: var(--red-br); color: var(--parch); }

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.ink-splat {
  position: absolute; z-index: 0; pointer-events: none;
  filter: blur(0.4px); transform-origin: center;
}
.splat-tr { top: -70px; right: -50px; }
.splat-bl { bottom: -50px; left: -60px; }

/* ----------------------------------------------------------
   Atoms
   ---------------------------------------------------------- */
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding-left: 48px; padding-right: 48px; }

.eyebrow {
  font-family: var(--mono); word-spacing: -0.08em; font-size: 14px; font-weight: 500;
  letter-spacing: 0.165em; text-transform: uppercase; color: var(--parch-3);
}

.chip {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--mono); word-spacing: -0.08em; font-size: 13px; font-weight: 600;
  letter-spacing: 0.105em; text-transform: uppercase;
  padding: 4px 9px; border-radius: 2px; border: 1px solid; white-space: nowrap;
}
.chip--red  { color: var(--red-br);  border-color: rgba(228,80,63,0.55);  background: var(--red-soft); }
.chip--teal { color: var(--teal-br); border-color: rgba(62,176,173,0.55); background: var(--teal-soft); }
.chip--gold { color: var(--gold-br); border-color: var(--gold-line);      background: var(--gold-soft); }

/* buttons — brand brutalism kept, applied sparingly */
.btn {
  font-family: var(--mono); word-spacing: -0.08em; text-transform: uppercase; letter-spacing: 0.075em;
  font-weight: 600; font-size: 14px; line-height: 1;
  padding: 16px 24px; border-radius: 2px; cursor: pointer; white-space: nowrap;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  border: 1.5px solid var(--parch); background: transparent; color: var(--parch);
  transition: transform .18s cubic-bezier(.2,.7,.2,1), box-shadow .18s cubic-bezier(.2,.7,.2,1), background .18s, border-color .18s;
}
.btn .arr { transition: transform .25s cubic-bezier(.2,.7,.2,1); }
.btn:hover .arr { transform: translateX(4px); }
.btn--primary { background: var(--red); color: var(--parch); box-shadow: var(--shadow-sm); }
.btn--primary:hover { transform: translate(-1px,-1px); box-shadow: 4px 4px 0 0 #000; background: var(--red-br); }
.btn--gold { background: var(--gold); color: var(--ink-black); border-color: var(--gold); box-shadow: var(--shadow-sm); }
.btn--gold:hover { transform: translate(-1px,-1px); box-shadow: 4px 4px 0 0 #000; background: var(--gold-br); border-color: var(--gold-br); }

.ip-logo { display: block; width: auto; flex-shrink: 0; }
.ip-logo--nav { height: 64px; }
.ip-logo--foot { height: 110px; }
.ip-logo--splash { height: 200px; }

/* ----------------------------------------------------------
   NAV — tight masthead
   ---------------------------------------------------------- */
.nav3 {
  position: sticky; top: 0; z-index: 50;
  border-bottom: 1px solid transparent;
  transition: border-color .3s, background .3s, backdrop-filter .3s;
}
.nav3-rule { height: 3px; background: var(--gold); width: 100%; }
.nav3-row {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 14px; padding-bottom: 14px; gap: 24px;
}
.nav3.is-scrolled {
  background: rgba(20,16,11,0.85);
  backdrop-filter: blur(12px) saturate(1.2);
  border-bottom-color: var(--line);
}
.nav3-ctas { display: flex; align-items: center; gap: 18px; }
.nav3-back {
  font-family: var(--mono); word-spacing: -0.08em; font-size: 13px; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--parch-3); transition: color .15s;
}
.nav3-back:hover { color: var(--parch); }
.nav3-cta {
  font-family: var(--mono); word-spacing: -0.08em; text-transform: uppercase; letter-spacing: 0.075em;
  font-weight: 600; font-size: 13px;
  padding: 11px 18px; min-height: 44px; border-radius: 2px; cursor: pointer;
  border: 1.5px solid var(--parch); background: var(--red); color: var(--parch);
  box-shadow: var(--shadow-sm); white-space: nowrap;
  transition: background .18s, transform .18s, box-shadow .18s;
}
.nav3-cta:hover { background: var(--red-br); transform: translate(-1px,-1px); box-shadow: 4px 4px 0 0 #000; }

/* ----------------------------------------------------------
   HERO — CTA above the fold
   ---------------------------------------------------------- */
.hero3 { position: relative; overflow: hidden; display: flex; flex-direction: column; }
.hero3-inner {
  position: relative; z-index: 1;
  display: flex; flex-direction: column;
  padding-top: clamp(40px, 7vh, 84px); padding-bottom: clamp(44px, 7vh, 84px);
}
.hero3-kicker {
  display: flex; align-items: center; gap: 20px;
  margin-bottom: clamp(32px, 5vh, 56px);
}
.hero3-kicker .k-lab {
  font-family: var(--mono); word-spacing: -0.08em; font-size: 14px; font-weight: 600;
  letter-spacing: 0.165em; text-transform: uppercase; white-space: nowrap;
}
.hero3-kicker .k-lab.is-role { color: var(--red-br); }
.hero3-kicker .k-line { flex: 1; height: 1px; background: var(--line); position: relative; }
.hero3-kicker .k-line::before {
  content: ""; position: absolute; right: 0; top: 50%; transform: translateY(-50%);
  width: 7px; height: 7px; border-radius: 50%; background: var(--teal-br);
  box-shadow: 0 0 0 3px rgba(62,176,173,0.18);
}
.hero3-kicker .k-pre { font-family: var(--mono); word-spacing: -0.08em; font-size: 14px; letter-spacing: 0.165em; text-transform: uppercase; color: var(--parch-3); white-space: nowrap; }

.hero3-h {
  font-family: var(--helv); font-weight: 700; margin: 0;
  font-size: clamp(46px, 7.2vw, 110px); line-height: 0.96; letter-spacing: -0.035em;
  text-wrap: balance; max-width: 14ch;
}
.hero3-h .l2 {
  display: block; font-family: var(--marker); font-weight: 400;
  font-size: 0.94em; letter-spacing: 0; line-height: 1.06;
  color: var(--red-br); white-space: nowrap; transform: rotate(-1.2deg); transform-origin: left center;
}

.hero3-deck {
  display: grid; grid-template-columns: minmax(0, 680px) auto;
  align-items: end; justify-content: space-between; gap: 36px 64px;
  margin-top: clamp(36px, 5.5vh, 60px);
}
.hero3-sub {
  font-family: var(--serif); font-size: clamp(19px, 2vw, 22px); line-height: 1.55;
  color: var(--parch-2); margin: 0; text-wrap: pretty;
}
.hero3-ctas { display: flex; gap: 14px; flex-wrap: wrap; padding-bottom: 4px; }
.hero3-ticker-wrap { padding-bottom: clamp(28px, 5vh, 56px); }

/* spine — full-width band under the hero */
.hero3-spine { border-top: 1px solid var(--line); position: relative; z-index: 1; }
.hero3-spine-grid { display: grid; grid-template-columns: 1fr 1fr; }
.spine3-block {
  display: flex; flex-direction: column; gap: 10px;
  padding: 30px 48px 34px 0;
}
.spine3-block + .spine3-block { border-left: 1px solid var(--line); padding-left: 48px; padding-right: 0; }
.spine3-lab {
  font-family: var(--mono); word-spacing: -0.08em; font-size: 14px; font-weight: 600;
  letter-spacing: 0.135em; text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 10px;
}
.spine3-lab.is-get { color: var(--teal-br); }
.spine3-lab.is-no { color: var(--red-br); }
.spine3-lab .dot { width: 6px; height: 6px; border-radius: 50%; background: currentColor; box-shadow: 0 0 0 3px rgba(245,234,208,0.08); }
.spine3-val { font-family: var(--serif); font-size: 19px; line-height: 1.4; color: var(--parch-2); letter-spacing: -0.01em; max-width: 48ch; }

/* ticker — full-bleed wire, no box */
.ticker3 {
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  overflow: hidden; white-space: nowrap; position: relative; z-index: 1;
  background: var(--surface-1);
}
.ticker3::before {
  content: "WIRE"; position: absolute; left: 0; top: 0; bottom: 0; z-index: 3;
  display: flex; align-items: center; padding: 0 18px;
  font-family: var(--mono); word-spacing: -0.08em; font-size: 13px; font-weight: 600; letter-spacing: 0.15em;
  background: var(--teal); color: var(--parch);
}
.ticker3::after {
  content: ""; position: absolute; right: 0; top: 0; bottom: 0; width: 90px; z-index: 2;
  background: linear-gradient(90deg, transparent, var(--surface-1));
}
.ticker3-track {
  display: inline-flex; align-items: center; padding: 14px 0;
  animation: ticker3 48s linear infinite; will-change: transform;
}
@keyframes ticker3 { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.ticker3:hover .ticker3-track { animation-play-state: paused; }
@media (prefers-reduced-motion: reduce) { .ticker3-track { animation: none; } }
.tick-item {
  display: inline-flex; align-items: center; gap: 10px; padding: 0 28px;
  font-family: var(--mono); word-spacing: -0.08em; font-size: 13px; letter-spacing: 0.045em; color: var(--parch-2);
  border-right: 1px solid var(--line);
}
.tick-item.is-soft { color: var(--parch); letter-spacing: 0.01em; }
.tick-item .dot { width: 5px; height: 5px; border-radius: 50%; background: var(--teal-br); flex-shrink: 0; }
.tick-item .city { color: var(--parch); }

/* ----------------------------------------------------------
   SECTIONS — numbered press plates
   ---------------------------------------------------------- */
.sec3 { padding: clamp(90px, 12vh, 140px) 0; position: relative; overflow: hidden; }
.sec3 > .wrap { position: relative; z-index: 1; }
.sec3--band { background: var(--surface-1); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.sec3--gold { border-top: 3px solid var(--gold); }

.sec3-head { display: flex; flex-direction: column; gap: 20px; margin-bottom: clamp(44px, 6vh, 68px); }
.sec3-meta { display: flex; align-items: center; gap: 20px; }
.sec3-num {
  font-family: var(--mono); word-spacing: -0.08em; font-size: 14px; font-weight: 600;
  letter-spacing: 0.135em; color: var(--gold-br); white-space: nowrap;
}
.sec3-meta .eyebrow { color: var(--red-br); white-space: nowrap; }
.sec3-meta .m-line { flex: 1; height: 1px; background: var(--line); }
.sec3-title {
  font-family: var(--serif); font-weight: 400; margin: 0;
  font-size: clamp(36px, 4.6vw, 64px); line-height: 1.03; letter-spacing: -0.025em;
  text-wrap: balance; max-width: 22ch;
}
.sec3-title .it { font-style: italic; }
.sec3-title .ac { font-style: italic; color: var(--red-br); }
.sec3-lede {
  font-family: var(--serif); font-size: 20px; line-height: 1.55; color: var(--parch-2);
  max-width: 58ch; margin: 0; text-wrap: pretty;
}

/* ----------------------------------------------------------
   TOOLS — hairline grid, no shadow boxes
   ---------------------------------------------------------- */
.tools3 {
  display: grid; grid-template-columns: 1fr 1fr;
  border: 1px solid var(--line-strong); background: var(--ink-black);
}
.tool3 {
  position: relative; padding: 42px 44px 46px;
  display: flex; flex-direction: column; gap: 16px; min-height: 280px;
  transition: background .25s;
}
.tool3:nth-child(odd) { border-right: 1px solid var(--line); }
.tool3:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
.tool3:hover { background: var(--surface-2); }
.tool3::after {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 2px;
  background: var(--gold); opacity: 0; transition: opacity .25s;
}
.tool3:hover::after { opacity: 1; }
.tool3-top { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; }
.tool3-num {
  font-family: var(--serif); font-style: italic; font-weight: 400;
  font-size: 44px; line-height: 1; color: var(--gold-br);
}
.tool3-h {
  font-family: var(--serif); font-weight: 400; font-size: clamp(26px, 2.4vw, 32px); line-height: 1.08;
  letter-spacing: -0.018em; margin: 2px 0 0;
}
.tool3-h .it { font-style: italic; }
.tool3-body { font-size: 16px; line-height: 1.58; color: var(--parch-2); margin: 0; text-wrap: pretty; max-width: 52ch; }
.tool3-foot { margin-top: auto; padding-top: 14px; border-top: 1px solid var(--line); }
.tool3-rate {
  font-family: var(--mono); word-spacing: -0.08em; font-size: 13px; letter-spacing: 0.075em;
  text-transform: uppercase; color: var(--parch-3);
}

/* ----------------------------------------------------------
   AUDIENCE — pull quote + checks, two columns
   ---------------------------------------------------------- */
.aud3 { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(40px, 6vw, 88px); align-items: start; }
.aud3-quote-block { position: relative; padding-top: 26px; }
.aud3-quote-block::before {
  content: ""; position: absolute; top: 0; left: 0; width: 64px; height: 3px; background: var(--gold);
}
.aud3-quote {
  font-family: var(--serif); font-style: italic; font-weight: 400;
  font-size: clamp(22px, 2.2vw, 27px); line-height: 1.5; color: var(--parch-2);
  margin: 0; text-wrap: pretty;
}
.aud3-checks { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; }
.aud3-checks li {
  display: flex; align-items: flex-start; gap: 18px;
  padding: 22px 0; border-top: 1px solid var(--line);
  font-family: var(--serif); font-size: 19px; line-height: 1.45; color: var(--parch-2);
}
.aud3-checks li:last-child { border-bottom: 1px solid var(--line); }
.aud3-check-num {
  font-family: var(--mono); word-spacing: -0.08em; font-size: 13px; font-weight: 600;
  letter-spacing: 0.06em; color: var(--red-br); padding-top: 5px; flex-shrink: 0;
}
.aud3-check-bullet {
  width: 7px; height: 7px; border-radius: 50%; background: var(--red-br);
  flex-shrink: 0; margin-top: 11px;
}
.aud3--stack { display: block; }
.aud3--stack .aud3-checks { max-width: 820px; }
.aud3-cta { margin-top: 36px; }

/* ----------------------------------------------------------
   BENCHMARK — gold notice band
   ---------------------------------------------------------- */
.bmark3-grid { display: grid; grid-template-columns: 1.25fr 1fr; gap: clamp(40px, 6vw, 88px); align-items: end; }
.bmark3-body { display: flex; flex-direction: column; gap: 18px; }
.bmark3-body p {
  font-family: var(--serif); font-size: 19px; line-height: 1.6; color: var(--parch-2);
  margin: 0; text-wrap: pretty; max-width: 58ch;
}
.bmark3-cta {
  display: flex; flex-direction: column; align-items: flex-start; gap: 16px;
  border-left: 1px solid var(--line); padding-left: clamp(28px, 3vw, 48px);
}
.bmark3-support {
  font-family: var(--mono); word-spacing: -0.08em; font-size: 13px; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--parch-3); margin: 0; line-height: 1.7;
}

/* ----------------------------------------------------------
   SIGNUP — flat application card
   ---------------------------------------------------------- */
.signup3-grid { display: grid; grid-template-columns: minmax(0, 460px) minmax(0, 1fr); gap: clamp(40px, 5vw, 72px); align-items: start; }
.signup3-grid .sec3-head { margin-bottom: 0; position: sticky; top: 110px; }

.signup-shell {
  position: relative; border: 1px solid var(--line-strong); border-top: 3px solid var(--gold);
  background: var(--surface-1); overflow: hidden;
}
.signup-tabs { display: grid; grid-template-columns: 1fr 1fr; border-bottom: 1px solid var(--line); }
.signup-tab {
  font-family: var(--mono); word-spacing: -0.08em; font-size: 13px; font-weight: 600; letter-spacing: 0.09em; text-transform: uppercase;
  padding: 18px 20px; background: transparent; color: var(--parch-3); cursor: pointer;
  border: 0; border-right: 1px solid var(--line); position: relative;
  transition: color .2s, background .2s;
}
.signup-tab:last-child { border-right: 0; }
.signup-tab:hover { color: var(--parch-2); }
.signup-tab.is-active { color: var(--parch); background: var(--ink-black); }
.signup-tab.is-active::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -1px; height: 2px; background: var(--red-br);
}

.signup-pane { padding: 36px 40px 40px; }
.signup-form { display: grid; grid-template-columns: 1fr 1fr; gap: 22px 24px; }
.field { display: flex; flex-direction: column; gap: 8px; min-width: 0; }
.field.full { grid-column: 1 / -1; }
.field label {
  font-family: var(--mono); word-spacing: -0.08em; font-size: 13px; letter-spacing: 0.105em; text-transform: uppercase;
  color: var(--parch-2); display: flex; align-items: baseline; gap: 8px;
}
.field .opt { color: var(--parch-3); font-weight: 400; letter-spacing: 0.1em; }
.field .req { color: var(--red-br); }
.field input, .field select, .field textarea {
  font-family: var(--sans); font-size: 15px; color: var(--parch);
  background: var(--ink-black); border: 1px solid var(--line-strong); border-radius: 2px;
  padding: 12px 14px; outline: none; width: 100%;
  transition: border-color .18s, box-shadow .18s;
}
.field textarea { resize: vertical; min-height: 92px; font-family: var(--serif); font-size: 16px; line-height: 1.5; }
.field input::placeholder, .field textarea::placeholder { color: var(--parch-3); }
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--gold-br); box-shadow: 0 0 0 3px var(--gold-soft);
}
.field.has-error input, .field.has-error select { border-color: var(--red-br); }
.field-hint { font-family: var(--mono); word-spacing: -0.08em; font-size: 13px; letter-spacing: 0.06em; color: var(--parch-3); text-transform: uppercase; }
.field-error {
  font-family: var(--mono); word-spacing: -0.08em; font-size: 13px; letter-spacing: 0.075em; text-transform: uppercase;
  color: var(--teal-br); display: inline-flex; align-items: center; gap: 6px;
}
.field-error::before { content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--teal-br); }

.captcha-row { display: flex; align-items: center; gap: 14px; }
.captcha-q {
  font-family: var(--mono); word-spacing: -0.08em; font-size: 22px; font-weight: 600; letter-spacing: 0.03em;
  color: var(--parch); white-space: nowrap; user-select: none;
  padding: 10px 16px; background: var(--ink-black); border: 1px solid var(--line-strong); border-radius: 2px;
}
.captcha-row input { max-width: 110px; text-align: center; font-weight: 600; }

.hp-field {
  position: absolute !important; left: -9999px; top: auto;
  width: 1px; height: 1px; overflow: hidden;
}

.submit-row {
  grid-column: 1 / -1; display: flex; align-items: center; justify-content: space-between;
  gap: 24px; margin-top: 4px; flex-wrap: wrap;
}
.submit-note { font-size: 14px; line-height: 1.5; color: var(--parch-3); margin: 0; max-width: 46ch; }

.signup-success { padding: 60px 40px 64px; display: flex; flex-direction: column; align-items: flex-start; gap: 18px; }
.success-check {
  width: 52px; height: 52px; border-radius: 50%;
  border: 1.5px solid var(--teal-br); color: var(--teal-br);
  display: flex; align-items: center; justify-content: center; background: var(--teal-soft);
}
.signup-success h3 { font-family: var(--serif); font-weight: 400; font-size: 30px; letter-spacing: -0.02em; margin: 0; line-height: 1.08; }
.signup-success p { font-size: 16px; line-height: 1.55; color: var(--parch-2); margin: 0; max-width: 52ch; }

.fade-enter { animation: fadeUp .5s cubic-bezier(.2,.7,.2,1) both; }
.slide-out { animation: slideOut .35s cubic-bezier(.4,0,1,1) both; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }
@keyframes slideOut { from { opacity: 1; transform: translateX(0); } to { opacity: 0; transform: translateX(-24px); } }
@media (prefers-reduced-motion: reduce) { .fade-enter, .slide-out { animation: none; } }

/* ----------------------------------------------------------
   FOOTER — colophon
   ---------------------------------------------------------- */
.footer3 { border-top: 3px solid var(--gold); background: var(--surface-1); padding: 64px 0 40px; }
.footer3-top { display: grid; grid-template-columns: 1.6fr 1fr; gap: 40px; align-items: end; }
.footer3-tag { font-family: var(--serif); font-size: 18px; line-height: 1.5; color: var(--parch-2); margin: 20px 0 0; max-width: 38ch; text-wrap: pretty; }
.footer3-col h4 {
  font-family: var(--mono); word-spacing: -0.08em; font-size: 14px; letter-spacing: 0.135em; text-transform: uppercase;
  color: var(--parch-3); margin: 0 0 20px; font-weight: 600;
}
.footer3-col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 16px; }
.footer3-col a { font-size: 18px; color: var(--parch-2); transition: color .15s; display: inline-flex; align-items: center; gap: 11px; }
.footer3-col a:hover { color: var(--teal-br); }
.footer3-ic { width: 21px; height: 21px; flex: 0 0 auto; }
.footer3-ic--mail { color: var(--teal-br); }
.footer3-ic--ig { color: var(--red-br); }
.footer3-bottom {
  display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  margin-top: 48px; padding-top: 22px; border-top: 1px solid var(--line);
  font-family: var(--mono); word-spacing: -0.08em; font-size: 13px; letter-spacing: 0.105em; text-transform: uppercase; color: var(--parch-3);
}

/* ----------------------------------------------------------
   SPLASH — diptych
   ---------------------------------------------------------- */
.sp3 {
  min-height: 100svh; display: flex; flex-direction: column;
  position: relative; overflow: hidden; background: var(--ink-black);
}
.sp3-rule { height: 3px; background: var(--gold); width: 100%; flex-shrink: 0; }
.sp3-head {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  gap: 34px; padding: clamp(52px, 10vh, 110px) 32px clamp(36px, 7vh, 72px);
  position: relative; z-index: 2;
}
.sp3-h {
  font-family: var(--serif); font-weight: 400; margin: 0;
  font-size: clamp(28px, 3.9vw, 50px); line-height: 1.16;
  letter-spacing: -0.022em; max-width: 24ch; text-wrap: balance; color: var(--parch);
}
.sp3-prompt {
  font-family: var(--mono); word-spacing: -0.08em; font-size: 16px; letter-spacing: 0.165em;
  text-transform: uppercase; color: var(--parch-3); margin: 0;
  display: flex; align-items: center; gap: 18px;
}
.sp3-prompt::before, .sp3-prompt::after { content: ""; width: 56px; height: 1px; background: var(--line-strong); }

.sp3-panels {
  flex: 1; display: flex; align-items: center; justify-content: center;
  gap: 35px; min-height: 0; position: relative; z-index: 2;
  padding: 4px 48px 56px;
}
.sp3-panel {
  flex: 0 1 675px; min-width: 0; position: relative; overflow: hidden;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 22px; padding: 70px 54px 76px; cursor: pointer;
  border: 1.5px solid rgba(212,161,58,0.65); border-radius: 2px;
  transition: transform .3s cubic-bezier(.2,.7,.2,1), border-color .3s, background .35s, box-shadow .3s cubic-bezier(.2,.7,.2,1);
}
.sp3-panel--artist { background: radial-gradient(130% 110% at 50% 115%, rgba(192,56,42,0.30), transparent 72%); }
.sp3-panel--shop   { background: radial-gradient(130% 110% at 50% 115%, rgba(192,56,42,0.30), transparent 72%); }
.sp3-panel:hover {
  transform: translate(-2px, -4px);
  border-color: var(--red-br);
  box-shadow: 4px 4px 0 0 #000;
  background: radial-gradient(130% 110% at 50% 108%, rgba(192,56,42,0.44), transparent 76%);
}

.sp3-pre {
  font-family: var(--mono); word-spacing: -0.08em; font-size: 14px; font-weight: 500;
  letter-spacing: 0.165em; text-transform: uppercase; color: var(--parch-3);
  transition: color .3s;
}
.sp3-word {
  font-family: var(--marker); font-weight: 400; line-height: 1;
  font-size: clamp(64px, 8vw, 119px); letter-spacing: 0.01em;
  transform: rotate(-1.5deg);
  transition: transform .45s cubic-bezier(.2,.7,.2,1);
}
.sp3-panel--artist .sp3-word { color: var(--red-br); }
.sp3-panel--shop .sp3-word { color: var(--red-br); transform: rotate(1.2deg); }
.sp3-panel:hover .sp3-word { transform: rotate(0deg) scale(1.05); }
.sp3-go {
  display: inline-flex; align-items: center; gap: 16px; margin-top: 14px;
  font-family: var(--mono); word-spacing: -0.08em; font-size: 19px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--parch);
  border: 1.5px solid var(--parch); border-radius: 2px; padding: 19px 32px;
  background: var(--red); box-shadow: var(--shadow-sm);
  transition: background .25s, transform .25s, box-shadow .25s;
}
.sp3-go .arr { font-size: 1.5em; line-height: 1; transition: transform .25s cubic-bezier(.2,.7,.2,1); }
.sp3-panel:hover .sp3-go .arr { transform: translateX(4px); }
.sp3-panel--artist:hover .sp3-go { background: var(--red-br); transform: translate(-1px,-1px); box-shadow: 4px 4px 0 0 #000; }
.sp3-panel--shop:hover .sp3-go { background: var(--red-br); transform: translate(-1px,-1px); box-shadow: 4px 4px 0 0 #000; }
.sp3-panel:hover .sp3-pre { color: var(--parch-2); }

.sp3-foot {
  position: relative; z-index: 2; text-align: center;
  font-family: var(--mono); word-spacing: -0.08em; font-size: 13px; letter-spacing: 0.135em;
  text-transform: uppercase; color: var(--parch-3); margin: 0;
  padding: 18px 24px 22px; border-top: 1px solid var(--line);
}

/* ----------------------------------------------------------
   Scroll reveal
   ---------------------------------------------------------- */
.reveal { opacity: 0; transform: translateY(20px) scale(0.992); filter: blur(2px); }
.reveal.is-in {
  opacity: 1; transform: none; filter: none;
  transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1), filter .7s cubic-bezier(.2,.7,.2,1);
}
.reveal[data-d="1"].is-in { transition-delay: .07s; }
.reveal[data-d="2"].is-in { transition-delay: .14s; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; filter: none; } }

/* ----------------------------------------------------------
   RESPONSIVE
   ---------------------------------------------------------- */
@media (max-width: 1000px) {
  .signup3-grid { grid-template-columns: 1fr; }
  .signup3-grid .sec3-head { position: static; }
  .bmark3-grid { grid-template-columns: 1fr; align-items: start; }
  .bmark3-cta { border-left: 0; padding-left: 0; border-top: 1px solid var(--line); padding-top: 28px; }
}
@media (max-width: 900px) {
  .wrap { padding-left: 28px; padding-right: 28px; }
  .hero3-deck { grid-template-columns: 1fr; align-items: start; }
  .hero3-h { max-width: none; }
  .hero3-h .l2 { white-space: normal; }
  .tools3 { grid-template-columns: 1fr; }
  .tool3 { min-height: 0; }
  .tool3:nth-child(odd) { border-right: 0; }
  .tool3:nth-child(-n+2) { border-bottom: 0; }
  .tool3 + .tool3 { border-top: 1px solid var(--line); }
  .aud3 { grid-template-columns: 1fr; }
  .footer3-top { grid-template-columns: 1fr; }
  .spine3-block { padding-right: 28px; }
  .spine3-block + .spine3-block { padding-left: 28px; }
}
@media (max-width: 680px) {
  .hero3-spine-grid { grid-template-columns: 1fr; }
  .spine3-block { padding: 24px 0; }
  .spine3-block + .spine3-block { border-left: 0; border-top: 1px solid var(--line); padding-left: 0; }
  .signup-form { grid-template-columns: 1fr; }
  .signup-pane { padding: 28px 22px 32px; }
  .sp3-panels { flex-direction: column; align-items: stretch; gap: 0; padding: 0; border-top: 1px solid var(--line); }
  .ip-logo--splash { height: 120px; }
  .sp3-head {
    gap: 22px;
    padding: clamp(28px, 4vh, 48px) 32px clamp(20px, 3.2vh, 40px);
  }
  .sp3-h { font-size: 24px; line-height: 1.18; color: var(--parch-2); }
  .sp3-panel {
    flex: 1; width: 100%; max-width: none; border: 0; border-radius: 0;
    padding: 30px 24px; gap: 10px; box-shadow: none;
  }
  .sp3-panel--shop { border-top: 1px solid var(--line); }
  .sp3-panel:hover { transform: none; box-shadow: none; }
  .sp3-word { font-size: clamp(48px, 14vw, 72px); }
  .sp3-go { box-shadow: var(--shadow-sm); font-size: 14px; padding: 13px 20px; gap: 12px; margin-top: 8px; }
  .sp3-go .arr { font-size: 1em; }
  .sp3-foot { padding: 12px 24px 16px; }
  .nav3-back { display: none; }
}
@media (max-width: 540px) {
  .wrap { padding-left: 20px; padding-right: 20px; }
  .ip-logo--nav { height: 48px; }
  .btn { width: 100%; }
  .hero3-ctas { width: 100%; }
  .bmark3-cta .btn, .aud3-cta .btn { width: auto; }
  .hero3-kicker .k-pre { display: none; }
}
