/* =============================================================
   IVVO — shared SEO subpage stylesheet
   Inline-friendly, mirrors the dusk pixel-art identity.
============================================================= */

@font-face {
  font-family: "Jersey 20";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/fonts/jersey20-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: "Jersey 20";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/fonts/jersey20-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Silkscreen";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/fonts/silkscreen-400-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: "Silkscreen";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/fonts/silkscreen-400-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Silkscreen";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("/fonts/silkscreen-700-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: "Silkscreen";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("/fonts/silkscreen-700-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --c-night:    #0b0820;
  --c-twilight: #1a1138;
  --c-deep:     #32204d;
  --c-mauve:    #6d4d7a;
  --c-rose:     #b96f78;
  --c-peach:    #e8a87c;
  --c-cream:    #f6e7c1;
  --c-ink:      #f6e7c1;
  --c-ink-dim:  #8a6b8f;

  --px:   "Jersey 20", ui-monospace, "Courier New", monospace;
  --mono: "Jersey 20", ui-monospace, "Courier New", monospace;
  --logo: "Silkscreen", "Jersey 20", ui-monospace, monospace;

  --pad: clamp(20px, 4vw, 56px);
  --maxw: 920px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html, body {
  min-height: 100%;
  background:
    radial-gradient(ellipse at 70% -10%, rgba(232, 168, 124, 0.18), transparent 60%),
    linear-gradient(180deg, #0b0820 0%, #1a1138 60%, #32204d 100%);
  color: var(--c-cream);
  font-family: var(--mono);
  -webkit-font-smoothing: none;
  font-smooth: never;
  image-rendering: pixelated;
}

::selection { background: var(--c-peach); color: var(--c-night); }
a { color: var(--c-peach); text-decoration: underline; text-underline-offset: 4px; }
a:hover { color: var(--c-cream); }

/* ── header bar ─────────────────────────────────────────────── */
.seo-bar {
  position: sticky;
  top: 0;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px var(--pad);
  background: rgba(11, 8, 32, 0.86);
  border-bottom: 2px solid var(--c-twilight);
  backdrop-filter: blur(6px);
  font-family: var(--mono);
  font-size: 16px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-ink-dim);
}

.seo-bar__brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  color: var(--c-cream);
  text-decoration: none;
}

.seo-bar__logo {
  display: inline-flex;
  gap: 0.06em;
  font-family: var(--logo);
  font-size: 22px;
  letter-spacing: -0.01em;
}
.seo-bar__logo span:nth-child(2),
.seo-bar__logo span:nth-child(3) { color: var(--c-peach); }

.seo-bar__back {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  font-family: var(--mono);
  font-size: 16px;
  color: var(--c-peach);
  text-decoration: none;
}
.seo-bar__back:hover { color: var(--c-cream); }

/* ── content shell ──────────────────────────────────────────── */
.seo {
  width: min(var(--maxw), 100% - var(--pad) * 2);
  margin: 0 auto;
  padding: clamp(48px, 8vw, 96px) 0 clamp(40px, 6vw, 72px);
}

.seo__crumb {
  display: inline-block;
  margin-bottom: 22px;
  font-family: var(--mono);
  font-size: 16px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-peach);
}
.seo__crumb::before { content: "▸ "; color: var(--c-rose); }

.seo h1 {
  font-family: var(--px);
  font-weight: 700;
  font-size: clamp(34px, 6.4vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--c-cream);
  text-transform: uppercase;
  text-shadow: 4px 4px 0 var(--c-night), 8px 8px 0 var(--c-twilight);
}

.seo h1 em {
  font-style: normal;
  color: var(--c-peach);
}

.seo__lead {
  margin: 22px 0 38px;
  font-family: var(--mono);
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.4;
  color: var(--c-cream);
  max-width: 56ch;
}

.seo h2 {
  margin: 44px 0 16px;
  font-family: var(--px);
  font-size: clamp(22px, 3vw, 32px);
  letter-spacing: -0.02em;
  color: var(--c-peach);
  text-transform: uppercase;
  line-height: 1.2;
}

.seo h3 {
  margin: 24px 0 8px;
  font-family: var(--px);
  font-size: 18px;
  color: var(--c-cream);
  text-transform: uppercase;
  letter-spacing: -0.01em;
}

.seo p, .seo li {
  font-family: var(--mono);
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.45;
  color: var(--c-cream);
}

.seo p { max-width: 62ch; margin-bottom: 14px; }
.seo p a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
}
.seo p strong { color: var(--c-peach); font-weight: 700; }

.seo ul, .seo ol {
  list-style: none;
  display: grid;
  gap: 10px;
  margin: 12px 0 20px;
}

.seo ul li, .seo ol li {
  position: relative;
  padding: 8px 12px 6px 30px;
  background: rgba(26, 17, 56, 0.55);
  border-left: 4px solid var(--c-peach);
}
.seo ul li::before {
  content: ">";
  position: absolute;
  left: 12px;
  top: 8px;
  color: var(--c-peach);
}
.seo ol {
  counter-reset: seo-step;
}
.seo ol li {
  counter-increment: seo-step;
  border-left-color: var(--c-mauve);
  padding-left: 56px;
}
.seo ol li::before {
  content: counter(seo-step, decimal-leading-zero);
  position: absolute;
  left: 14px;
  top: 8px;
  font-family: var(--mono);
  font-size: 18px;
  color: var(--c-peach);
}

/* ── feature cards ──────────────────────────────────────────── */
.seo__cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  margin: 28px 0;
}

.seo__card {
  display: grid;
  gap: 8px;
  padding: 22px 20px;
  background: rgba(11, 8, 32, 0.78);
  border: 2px solid var(--c-mauve);
  box-shadow: 5px 5px 0 0 var(--c-peach);
}

.seo__card span {
  font-family: var(--mono);
  font-size: 18px;
  color: var(--c-peach);
  letter-spacing: 0.1em;
}

.seo__card strong {
  font-family: var(--px);
  font-weight: 700;
  font-size: 22px;
  color: var(--c-cream);
  text-transform: uppercase;
  letter-spacing: -0.01em;
}

.seo__card p {
  font-size: 18px;
  line-height: 1.4;
  color: var(--c-cream);
  margin: 0;
}

/* ── CTA ────────────────────────────────────────────────────── */
.seo__cta {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  margin: 36px 0 8px;
  padding: 14px 22px 10px;
  background: var(--c-peach);
  color: var(--c-night);
  border: 3px solid var(--c-cream);
  box-shadow: 6px 6px 0 0 var(--c-cream);
  font-family: var(--px);
  font-weight: 700;
  font-size: clamp(20px, 2.6vw, 30px);
  line-height: 1;
  text-transform: lowercase;
  text-decoration: none;
  transition: transform 120ms steps(3), box-shadow 120ms steps(3), background 120ms steps(3);
}
.seo__cta:hover {
  transform: translate(-3px, -3px);
  box-shadow: 9px 9px 0 0 var(--c-peach);
  background: var(--c-cream);
}

.seo__cta--ghost {
  background: transparent;
  color: var(--c-cream);
  border-color: var(--c-peach);
  box-shadow: 4px 4px 0 0 var(--c-peach);
  font-size: clamp(16px, 2vw, 22px);
  padding: 10px 16px 8px;
  margin-left: 10px;
}
.seo__cta--ghost:hover {
  background: var(--c-peach);
  color: var(--c-night);
}

/* ── footer ─────────────────────────────────────────────────── */
.seo-foot {
  margin-top: clamp(40px, 6vw, 72px);
  padding: 28px var(--pad) 36px;
  background: rgba(11, 8, 32, 0.85);
  border-top: 2px solid var(--c-twilight);
  font-family: var(--mono);
  font-size: 16px;
  color: var(--c-ink-dim);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
  justify-content: space-between;
  align-items: center;
}

.seo-foot a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: var(--c-peach);
  text-decoration: none;
}
.seo-foot a:hover { color: var(--c-cream); }
.seo-foot__motto { color: var(--c-cream); }

/* ── focus ──────────────────────────────────────────────────── */
*:focus { outline: none; }
a:focus-visible, button:focus-visible {
  outline: 2px solid var(--c-peach);
  outline-offset: 3px;
}

@media (max-width: 720px) {
  .seo h1 { font-size: clamp(30px, 9vw, 44px); }
  .seo-bar {
    align-items: flex-start;
    gap: 10px;
  }
  .seo-bar__brand,
  .seo-bar__back,
  .seo p a,
  .seo-foot a {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
  }
  .seo__cta {
    min-height: 44px;
  }
}
