:root {
      --ink: #151316;
      --muted: #665d68;
      --paper: #fffaf3;
      --soft: #fff3f8;
      --line: rgba(21, 19, 22, 0.12);
      --pink: #f52586;
      --pink-dark: #a90f55;
      --purple: #6f2bd9;
      --brand: #ce1f73;
      --green: #40c01a;
      --green-shadow: #238a10;
      --teal: #0d8075;
      --white: #ffffff;
      --radius: 8px;
      --shadow: 0 24px 60px rgba(21, 19, 22, 0.12);
      font-family: Montserrat, Inter, Arial, sans-serif;
    }

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

    html {
      scroll-behavior: smooth;
    }

    body {
      color: var(--ink);
      background: var(--paper);
      line-height: 1.5;
    }

    a {
      color: inherit;
    }

    .landing-pritty {
      overflow: hidden;
      background:
        linear-gradient(180deg, #ffffff 0%, var(--paper) 42%, #ffffff 100%);
    }

    .section {
      padding: 86px 20px;
    }

    .section.tight {
      padding: 62px 20px;
    }

    .container {
      width: min(1120px, 100%);
      margin: 0 auto;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      width: fit-content;
      padding: 8px 12px;
      border: 1px solid var(--line);
      border-radius: 999px;
      color: var(--pink-dark);
      background: var(--white);
      font-size: 13px;
      font-weight: 900;
      text-transform: uppercase;
    }

    .eyebrow::before {
      content: "";
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--pink);
    }

    h1,
    h2,
    h3,
    p {
      margin: 0;
    }

    h1 {
      max-width: 760px;
      margin-top: 20px;
      font-size: clamp(44px, 7.5vw, 88px);
      line-height: 0.95;
      font-weight: 950;
      text-transform: uppercase;
      letter-spacing: 0;
      overflow-wrap: normal;
    }

    .hero-lede {
      max-width: 670px;
      margin-top: 24px;
      color: #3e3740;
      font-size: clamp(19px, 2.1vw, 25px);
      font-weight: 750;
      line-height: 1.25;
    }

    .muted {
      color: var(--muted);
    }

    .hero {
      position: relative;
      min-height: 96vh;
      display: grid;
      align-items: center;
      padding: 34px 20px 54px;
      background:
        linear-gradient(110deg, rgba(206, 31, 115, 0.18) 0%, rgba(255, 255, 255, 0) 42%),
        linear-gradient(180deg, #fff8fb 0%, #ffffff 100%);
    }

    .hero-grid {
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(360px, 0.88fr);
      gap: 56px;
      align-items: center;
    }

    .hero-copy {
      position: relative;
      z-index: 2;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      align-items: center;
      margin-top: 34px;
    }

    .btn {
      display: inline-flex;
      justify-content: center;
      align-items: center;
      min-height: 56px;
      padding: 16px 24px;
      border: 2px solid var(--green);
      border-radius: 25px;
      color: var(--white);
      background: var(--green);
      box-shadow: 7px 7px 0 var(--green-shadow);
      font-size: 16px;
      font-weight: 950;
      line-height: 1.15;
      text-align: center;
      text-decoration: none;
      text-transform: uppercase;
      transition: transform 0.18s ease, box-shadow 0.18s ease;
    }

    .btn:hover {
      transform: translate(3px, 3px);
      box-shadow: 4px 4px 0 var(--green-shadow);
    }

    .btn:focus-visible {
      outline: 3px solid rgba(64, 192, 26, 0.35);
      outline-offset: 3px;
    }

    .btn.secondary {
      color: var(--ink);
      background: var(--white);
      box-shadow: none;
    }

    .microcopy {
      color: var(--muted);
      font-size: 14px;
      font-weight: 800;
    }

    .hero .microcopy {
      padding-bottom: 35px;
    }

    .hero-visual {
      position: relative;
      min-height: 560px;
      display: grid;
      place-items: center;
    }

    .hero-art {
      width: min(430px, 100%);
      max-height: 590px;
      object-fit: contain;
      border-radius: var(--radius);
      filter: drop-shadow(0 24px 54px rgba(21, 19, 22, 0.16));
    }

    .hero-logo {
      display: block;
      width: min(560px, 100%);
      margin-top: 20px;
    }

    .hero-marquee {
      position: absolute;
      right: 0;
      bottom: 0;
      left: 0;
      z-index: 3;
      overflow: hidden;
      padding: 12px 0;
      border-top: 3px double var(--white);
      border-bottom: 3px double var(--white);
      color: var(--white);
      background: var(--brand);
      box-shadow: 0 -10px 28px rgba(21, 19, 22, 0.08);
    }

    .hero-marquee-track {
      display: flex;
      width: max-content;
      animation: heroMarquee 18s linear infinite;
    }

    .hero-marquee-group {
      display: flex;
      align-items: center;
      justify-content: space-around;
      gap: 28px;
      min-width: 100vw;
      padding-right: 0;
      font-size: 15px;
      font-weight: 950;
      line-height: 1;
      text-transform: uppercase;
      white-space: nowrap;
    }

    .hero-marquee-group span {
      display: inline-flex;
      align-items: center;
      gap: 26px;
    }

    .hero-marquee-group span::after {
      content: "•";
      font-size: 0.72em;
      opacity: 0.7;
    }

    @keyframes heroMarquee {
      from {
        transform: translateX(0);
      }

      to {
        transform: translateX(-50%);
      }
    }

    @media (prefers-reduced-motion: reduce) {
      .hero-marquee-track {
        animation: none;
      }
    }

    .event-date {
      margin-top: 14px;
      color: var(--brand);
      font-size: clamp(18px, 2vw, 24px);
      font-weight: 950;
      line-height: 1.2;
      text-transform: uppercase;
    }

    .event-date span {
      display: block;
      color: var(--ink);
      font-size: 0.82em;
      font-weight: 850;
      text-transform: none;
    }

    .section-header {
      display: grid;
      grid-template-columns: minmax(0, 0.8fr) minmax(280px, 0.55fr);
      gap: 36px;
      align-items: end;
      margin-bottom: 36px;
    }

    .section-title {
      margin-top: 14px;
      font-size: clamp(34px, 5vw, 60px);
      line-height: 1;
      font-weight: 950;
      text-transform: uppercase;
      letter-spacing: 0;
    }

    .section-subtitle {
      color: var(--muted);
      font-size: clamp(18px, 2vw, 23px);
      font-weight: 750;
      line-height: 1.35;
    }

    .dark-band {
      color: var(--white);
      background: var(--ink);
    }

    .dark-band .section-subtitle,
    .dark-band .muted {
      color: rgba(255, 255, 255, 0.75);
    }

    .proof-row {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 14px;
    }

    .proof-item,
    .card,
    .check-item,
    .final-item {
      border-radius: var(--radius);
      box-shadow: 0 1px 0 rgba(21, 19, 22, 0.06);
    }

    .proof-item {
      min-height: 150px;
      display: grid;
      align-content: center;
      gap: 10px;
      padding: 24px;
      border: 1px solid rgba(255, 255, 255, 0.16);
      background: rgba(255, 255, 255, 0.08);
    }

    .proof-item span {
      color: var(--brand);
      font-size: 14px;
      font-weight: 950;
      text-transform: uppercase;
    }

    .proof-item strong {
      font-size: clamp(24px, 3vw, 34px);
      line-height: 1.05;
    }

    .cost-infographic {
      position: relative;
      display: grid;
      grid-template-columns: 1fr minmax(280px, 0.9fr) 1fr;
      grid-template-rows: auto auto auto;
      gap: 18px;
      align-items: center;
      padding: 34px;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background:
        linear-gradient(135deg, rgba(206, 31, 115, 0.08), rgba(255, 255, 255, 0) 58%),
        var(--white);
      box-shadow: var(--shadow);
    }

    .cost-infographic::before {
      content: "";
      position: absolute;
      inset: 50% 34px auto;
      height: 2px;
      background: linear-gradient(90deg, transparent, rgba(206, 31, 115, 0.34), transparent);
    }

    .cost-node {
      position: relative;
      z-index: 2;
      min-height: 138px;
      display: grid;
      align-content: center;
      padding: 22px;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: var(--white);
      box-shadow: 0 12px 30px rgba(21, 19, 22, 0.08);
    }

    .cost-node span {
      color: var(--muted);
      font-size: 14px;
      font-weight: 900;
      text-transform: uppercase;
    }

    .cost-node strong {
      display: block;
      color: var(--brand);
      font-size: clamp(42px, 5vw, 62px);
      line-height: 1;
      font-weight: 950;
    }

    .cost-node small {
      margin-top: 8px;
      color: var(--muted);
      font-size: 14px;
      font-weight: 750;
      line-height: 1.25;
    }

    .node-dtf {
      grid-column: 1;
      grid-row: 1;
    }

    .node-shirt {
      grid-column: 3;
      grid-row: 1;
    }
