:root {
  --ink: #11151f;
  --ink-soft: #273043;
  --paper: #f7f8fb;
  --white: #ffffff;
  --line: #d9deea;
  --muted: #626b7d;
  --blue: #0f62fe;
  --yellow: #ffcf33;
  --red: #f95738;
  --green: #00a86b;
  --shadow: 0 22px 70px rgba(17, 21, 31, 0.16);
  --radius: 8px;
  --fast: 160ms ease;
  color-scheme: light;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Trebuchet MS", "Segoe UI", sans-serif;
  line-height: 1.5;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(90deg, rgba(17, 21, 31, 0.04) 1px, transparent 1px),
    linear-gradient(rgba(17, 21, 31, 0.04) 1px, transparent 1px);
  background-size: 38px 38px;
}

body::after {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  opacity: 0.5;
  background-image: radial-gradient(rgba(17, 21, 31, 0.18) 0.8px, transparent 0.8px);
  background-size: 7px 7px;
  mix-blend-mode: multiply;
}

img,
svg,
canvas {
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select {
  font: inherit;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: 10px;
  z-index: 20;
  transform: translateY(-160%);
  border: 2px solid var(--ink);
  border-radius: 6px;
  padding: 8px 12px;
  background: var(--white);
  color: var(--ink);
  transition: transform var(--fast);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 56px);
  border-bottom: 1px solid rgba(17, 21, 31, 0.12);
  background: rgba(247, 248, 251, 0.9);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
}

.brand-mark {
  display: grid;
  width: 52px;
  height: 44px;
  place-items: center;
  border: 2px solid var(--ink);
  border-radius: 6px;
  background: var(--yellow);
  box-shadow: 4px 4px 0 var(--ink);
  color: var(--ink);
  font-family: Impact, "Arial Black", sans-serif;
  font-size: 0.92rem;
  letter-spacing: 0;
}

.brand-copy {
  display: grid;
  line-height: 1.1;
}

.brand-copy strong {
  font-family: Impact, "Arial Black", sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0;
}

.brand-copy small {
  color: var(--muted);
  font-size: 0.78rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.94rem;
  font-weight: 700;
}

.site-nav a {
  border-radius: 6px;
  padding: 8px 10px;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: var(--white);
  outline: 2px solid transparent;
}

.site-nav .nav-cta {
  border: 2px solid var(--ink);
  background: var(--ink);
  color: var(--white);
}

.hero {
  position: relative;
  min-height: calc(100vh - 73px);
  overflow: hidden;
  border-bottom: 2px solid var(--ink);
  background:
    linear-gradient(128deg, rgba(255, 207, 51, 0.96) 0 34%, transparent 34%),
    linear-gradient(90deg, rgba(15, 98, 254, 0.12), rgba(249, 87, 56, 0.1)),
    var(--paper);
}

.hero::before {
  position: absolute;
  inset: auto -8vw -18vw auto;
  width: 44vw;
  height: 44vw;
  min-width: 420px;
  min-height: 420px;
  content: "";
  background:
    linear-gradient(45deg, transparent 44%, rgba(17, 21, 31, 0.16) 44% 56%, transparent 56%),
    linear-gradient(-45deg, transparent 44%, rgba(17, 21, 31, 0.12) 44% 56%, transparent 56%);
  background-size: 34px 34px;
  transform: rotate(-8deg);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.82fr);
  align-items: center;
  gap: clamp(28px, 5vw, 72px);
  width: min(1180px, calc(100% - 36px));
  min-height: calc(100vh - 73px);
  margin: 0 auto;
  padding: clamp(34px, 6vw, 72px) 0;
}

.hero-copy {
  max-width: 720px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: Impact, "Arial Black", sans-serif;
  line-height: 0.95;
  letter-spacing: 0;
}

h1 {
  max-width: 820px;
  font-size: clamp(3.35rem, 7vw, 6.4rem);
  text-transform: uppercase;
}

h2 {
  max-width: 780px;
  font-size: clamp(2.4rem, 6vw, 5rem);
  text-transform: uppercase;
}

h3 {
  font-size: 1.45rem;
  text-transform: uppercase;
}

.hero-lede {
  max-width: 640px;
  margin: 18px 0 0;
  color: var(--ink-soft);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  font-weight: 700;
}

.hero-actions,
.control-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--ink);
  border-radius: 6px;
  padding: 12px 18px;
  box-shadow: 4px 4px 0 var(--ink);
  cursor: pointer;
  font-weight: 900;
  transition: transform var(--fast), box-shadow var(--fast), background var(--fast);
}

.button:hover,
.button:focus-visible {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 var(--ink);
  outline: 2px solid transparent;
}

.button-primary {
  background: var(--ink);
  color: var(--white);
}

.button-secondary {
  background: var(--white);
  color: var(--ink);
}

.button-large {
  min-height: 56px;
  padding-inline: 24px;
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.trust-strip li {
  border: 1px solid rgba(17, 21, 31, 0.22);
  border-radius: 6px;
  padding: 7px 10px;
  background: rgba(255, 255, 255, 0.72);
  font-size: 0.85rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-specimen {
  display: grid;
  min-height: 520px;
  place-items: center;
  margin: 0;
}

.specimen-stack {
  position: relative;
  width: min(82vw, 390px);
  aspect-ratio: 0.72;
}

.mini-card {
  position: absolute;
  display: grid;
  overflow: hidden;
  width: 82%;
  height: 82%;
  align-content: end;
  border: 3px solid var(--ink);
  border-radius: 18px;
  padding: 22px;
  box-shadow: 14px 14px 0 var(--ink);
  color: var(--white);
}

.mini-card::before {
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 12px;
  content: "";
}

.mini-card span,
.mini-card strong,
.mini-card small {
  position: relative;
  z-index: 1;
}

.mini-card span {
  font-size: 0.86rem;
  font-weight: 900;
  text-transform: uppercase;
}

.mini-card strong {
  font-family: Impact, "Arial Black", sans-serif;
  font-size: 4.3rem;
  line-height: 0.9;
  letter-spacing: 0;
}

.mini-card small {
  font-weight: 800;
}

.mini-card-back {
  right: 0;
  bottom: 0;
  transform: rotate(9deg);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.18), transparent 45%),
    repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.12) 0 10px, transparent 10px 20px),
    var(--red);
}

.mini-card-front {
  left: 0;
  top: 0;
  transform: rotate(-7deg);
  background:
    linear-gradient(180deg, transparent 0 48%, var(--blue) 48%),
    var(--yellow);
}

.mini-photo {
  position: absolute;
  inset: 40px 42px 124px;
  border: 3px solid var(--ink);
  border-radius: 12px;
  background:
    radial-gradient(circle at 52% 30%, #ffffff 0 16%, transparent 17%),
    linear-gradient(180deg, #8fd3ff 0 46%, #10213d 47%);
}

.creator-section,
.ideas-section,
.packs-section,
.order-section {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(62px, 9vw, 112px) 0;
}

.section-heading {
  display: grid;
  gap: 4px;
  margin-bottom: 28px;
}

.creator-shell {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(320px, 1fr);
  gap: 18px;
  align-items: stretch;
}

.creator-controls,
.preview-stage,
.idea-grid article,
.pack-card,
.order-section {
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
}

.creator-controls {
  display: grid;
  gap: 18px;
  padding: 18px;
}

fieldset {
  display: grid;
  gap: 14px;
  min-width: 0;
  margin: 0;
  border: 0;
  padding: 0;
}

legend {
  margin-bottom: 4px;
  font-family: Impact, "Arial Black", sans-serif;
  font-size: 1.25rem;
  text-transform: uppercase;
}

.field,
.field-row {
  min-width: 0;
}

.field {
  display: grid;
  gap: 6px;
}

.field span {
  color: var(--ink-soft);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.field-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

input,
select {
  width: 100%;
  min-height: 44px;
  border: 2px solid var(--ink);
  border-radius: 6px;
  padding: 10px 11px;
  background: var(--paper);
  color: var(--ink);
  font-weight: 800;
}

input[type="file"] {
  padding: 8px;
}

input[type="color"] {
  min-height: 44px;
  padding: 4px;
}

input:focus,
select:focus,
button:focus-visible,
a:focus-visible {
  outline: 3px solid rgba(15, 98, 254, 0.45);
  outline-offset: 2px;
}

.preview-stage {
  display: grid;
  place-items: center;
  min-height: 720px;
  margin: 0;
  padding: clamp(18px, 4vw, 38px);
  background:
    linear-gradient(135deg, rgba(0, 168, 107, 0.12), rgba(15, 98, 254, 0.08)),
    var(--white);
}

.preview-stage figcaption {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.sticker-card {
  --card-primary: #0f62fe;
  --card-accent: #ffcf33;
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr auto auto;
  width: min(390px, 82vw);
  aspect-ratio: 0.714;
  overflow: hidden;
  border: 5px solid var(--ink);
  border-radius: 24px;
  padding: 18px;
  box-shadow: 18px 18px 0 var(--ink);
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.24), transparent 42%),
    linear-gradient(180deg, var(--card-accent) 0 42%, var(--card-primary) 42% 100%);
  color: var(--white);
  isolation: isolate;
}

.sticker-card::before {
  position: absolute;
  inset: 12px;
  z-index: -1;
  border: 2px solid rgba(255, 255, 255, 0.56);
  border-radius: 16px;
  content: "";
}

.sticker-card::after {
  position: absolute;
  inset: auto -18% 17% -18%;
  z-index: -2;
  height: 24%;
  border-top: 4px solid rgba(17, 21, 31, 0.7);
  border-bottom: 4px solid rgba(17, 21, 31, 0.7);
  background: rgba(17, 21, 31, 0.22);
  content: "";
  transform: rotate(-8deg);
}

.sticker-topline,
.sticker-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.sticker-topline span {
  border: 2px solid var(--ink);
  border-radius: 6px;
  padding: 5px 8px;
  background: var(--white);
  color: var(--ink);
  font-size: 0.86rem;
}

.sticker-topline strong {
  color: var(--ink);
  font-family: Impact, "Arial Black", sans-serif;
  font-size: 3.7rem;
  line-height: 0.8;
  letter-spacing: 0;
  text-shadow: 2px 2px 0 var(--white);
}

.sticker-photo {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 0;
  margin: 16px 0 14px;
  overflow: hidden;
  border: 4px solid var(--ink);
  border-radius: 14px;
  background:
    radial-gradient(circle at center 30%, rgba(255, 255, 255, 0.88) 0 13%, transparent 14%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.7) 0 45%, rgba(17, 21, 31, 0.5) 46%),
    var(--card-primary);
}

.sticker-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#photo-placeholder {
  color: rgba(255, 255, 255, 0.92);
  font-family: Impact, "Arial Black", sans-serif;
  font-size: clamp(5rem, 18vw, 8rem);
  letter-spacing: 0;
  text-shadow: 4px 4px 0 rgba(17, 21, 31, 0.55);
}

.sticker-info {
  border: 3px solid var(--ink);
  border-radius: 10px;
  padding: 10px 12px 12px;
  background: var(--white);
  color: var(--ink);
}

.sticker-info p {
  margin: 0 0 5px;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.sticker-info h3 {
  overflow-wrap: anywhere;
  font-size: clamp(2.1rem, 7vw, 3.2rem);
}

.sticker-footer {
  margin-top: 12px;
  font-size: 0.82rem;
}

.idea-grid,
.pack-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.idea-grid article,
.pack-card {
  padding: 20px;
}

.idea-grid article {
  min-height: 230px;
  background:
    linear-gradient(180deg, rgba(255, 207, 51, 0.28), rgba(255, 255, 255, 0.88)),
    var(--white);
}

.idea-grid span,
.pack-label {
  display: inline-flex;
  margin-bottom: 20px;
  border: 2px solid var(--ink);
  border-radius: 6px;
  padding: 4px 8px;
  background: var(--yellow);
  font-weight: 900;
}

.idea-grid p,
.pack-card p,
.order-copy p {
  color: var(--ink-soft);
  font-weight: 700;
}

.pack-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.pack-card {
  display: grid;
  gap: 16px;
  align-content: start;
}

.pack-card.featured {
  background:
    linear-gradient(135deg, rgba(15, 98, 254, 0.16), rgba(255, 207, 51, 0.25)),
    var(--white);
}

.pack-card a {
  justify-self: start;
  border-bottom: 3px solid var(--ink);
  font-weight: 900;
}

.order-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  padding: clamp(24px, 5vw, 42px);
  background:
    linear-gradient(120deg, rgba(249, 87, 56, 0.14), rgba(0, 168, 107, 0.15)),
    var(--white);
}

.order-copy p:last-child {
  max-width: 680px;
  margin-bottom: 0;
}

.site-footer {
  display: grid;
  gap: 6px;
  padding: 26px clamp(18px, 4vw, 56px) 42px;
  border-top: 2px solid var(--ink);
  background: var(--ink);
  color: var(--white);
}

.site-footer p {
  margin: 0;
}

.legal-note {
  max-width: 980px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.88rem;
}

@media (max-width: 980px) {
  .site-header {
    align-items: flex-start;
  }

  .site-nav {
    flex-wrap: wrap;
    justify-content: flex-end;
  }

  .hero-grid,
  .creator-shell,
  .order-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid {
    min-height: auto;
  }

  .hero-specimen {
    min-height: 420px;
  }

  .idea-grid,
  .pack-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .order-section .button {
    justify-self: start;
  }
}

@media (max-width: 680px) {
  .site-header {
    position: static;
    display: grid;
  }

  .site-nav {
    justify-content: flex-start;
    width: 100%;
  }

  .site-nav a {
    padding-inline: 8px;
  }

  h1 {
    font-size: clamp(3.15rem, 18vw, 5rem);
  }

  h2 {
    font-size: clamp(2.25rem, 13vw, 3.6rem);
  }

  .hero-copy {
    padding-top: 12px;
  }

  .hero-specimen {
    min-height: 330px;
  }

  .specimen-stack {
    width: min(76vw, 330px);
  }

  .mini-card {
    padding: 18px;
    border-radius: 14px;
  }

  .creator-section,
  .ideas-section,
  .packs-section,
  .order-section {
    width: min(100% - 24px, 1180px);
  }

  .field-row,
  .idea-grid,
  .pack-grid {
    grid-template-columns: 1fr;
  }

  .preview-stage {
    min-height: 600px;
  }

  .sticker-card {
    width: min(340px, 78vw);
    border-radius: 18px;
    box-shadow: 10px 10px 0 var(--ink);
  }

  .button {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
