    @font-face {
      font-family: "Brandon Printed";
      src: url("BrandonPrinted.ttf") format("truetype");
      font-weight: 400;
      font-style: normal;
      font-display: swap;
    }
    :root {
      --ivory: #fff8e7;
      --paper: #fffdf6;
      --ink: #171614;
      --charcoal: #2a2a2a;
      --copper: #b87333;
      --copper-bright: #d99a54;
      --copper-pale: #ead0ae;
      --copper-dark: #8d5424;
      --copper-sheen: linear-gradient(135deg, #d99a54 0%, #b87333 42%, #8d5424 100%);
      --copper-sheen-hover: linear-gradient(135deg, #edb877 0%, #c9843c 45%, #a1622c 100%);
      --muted: #6f6a62;
      --muted-light: rgba(255, 248, 231, 0.66);
      --line: rgba(184, 115, 51, 0.3);
      --line-soft: rgba(184, 115, 51, 0.16);
      --line-dark: rgba(255, 248, 231, 0.14);
      --display: "Brandon Printed", Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      --wordmark: "Brandon Printed", Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      --body: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      --gutter: clamp(18px, 4vw, 40px);
      --radius: 4px;
      --radius-lg: 10px;
      --tap: 52px;
      --shadow-sm: 0 2px 10px rgba(23, 22, 20, 0.07);
      --shadow-md: 0 14px 38px -14px rgba(23, 22, 20, 0.3);
      --ease: cubic-bezier(0.22, 1, 0.36, 1);
    }
    * { box-sizing: border-box; }
    html, body, button, input, textarea, select {
      font-family: var(--body);
    }
    body {
      margin: 0;
      color: var(--charcoal);
      background: var(--ivory);
      font-size: 16px;
      line-height: 1.55;
      -webkit-font-smoothing: antialiased;
    }
    img { max-width: 100%; height: auto; display: block; }
    .display {
      margin: 0;
      font-family: var(--display);
      font-weight: 400;
      line-height: .94;
      letter-spacing: .012em;
      text-transform: uppercase;
    }
    .eyebrow {
      display: block;
      margin: 0;
      font-size: .68rem;
      font-weight: 600;
      letter-spacing: .12em;
      text-transform: uppercase;
      color: var(--copper);
    }
    .button {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: var(--tap);
      padding: 14px 28px;
      border: 0;
      border-radius: var(--radius);
      background: var(--copper-sheen);
      color: #fff8ec;
      font-family: var(--body);
      font-size: .8rem;
      font-weight: 700;
      letter-spacing: .13em;
      text-transform: uppercase;
      cursor: pointer;
      transform-origin: center;
      animation: cta-wobble 5s ease-in-out infinite;
    }
    .button:hover,
    .button:focus,
    .button:focus-visible,
    .button:disabled {
      animation: none;
    }
    .button:hover { background: var(--copper-sheen-hover); }
    .button:disabled { opacity: .65; cursor: wait; }
    .button:disabled:not(.sending) { opacity: .45; cursor: not-allowed; }
    @keyframes cta-wobble {
      0% { transform: rotate(0deg) translateX(0); }
      3% { transform: rotate(-1.5deg) translateX(-2px); }
      6% { transform: rotate(1.4deg) translateX(2px); }
      9% { transform: rotate(-0.7deg) translateX(-1px); }
      12%, 100% { transform: rotate(0deg) translateX(0); }
    }
    @media (prefers-reduced-motion: reduce) {
      .button { animation: none; }
    }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 50;
      background: var(--ink);
      color: var(--ivory);
      border-bottom: 1px solid var(--line-dark);
    }
    .header-main {
      min-height: 78px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      padding: 12px var(--gutter) 14px;
      overflow: visible;
    }
    .brand { display: inline-flex; align-items: center; gap: 10px; color: var(--ivory); flex: 0 0 auto; }
    .brand img { width: 36px; height: 36px; object-fit: contain; }
    .brand-name {
      font-family: var(--wordmark);
      font-size: clamp(1.05rem, 2vw, 1.5rem);
      letter-spacing: .045em;
      text-transform: uppercase;
    }
    .close-clock {
      min-width: 0;
      flex: 0 0 auto;
      text-align: right;
      color: var(--ivory);
      overflow: visible;
    }
    .close-label {
      display: block;
      margin: 0;
      font-family: var(--body);
      font-size: .6rem;
      font-weight: 600;
      letter-spacing: .14em;
      line-height: 1.08;
      text-transform: uppercase;
      color: var(--copper-bright);
      white-space: nowrap;
    }
    .close-time {
      display: block;
      margin: .05rem 0 0;
      padding-top: 0;
      font-family: var(--body);
      font-size: clamp(.98rem, 3.8vw, 1.38rem);
      font-weight: 800;
      letter-spacing: .015em;
      line-height: 1.08;
      color: #d99a54;
      background-image: linear-gradient(180deg, #d99a54 0%, #b87333 100%);
      -webkit-background-clip: text;
      background-clip: text;
      -webkit-text-fill-color: transparent;
      white-space: nowrap;
    }
    .close-clock.is-closed .close-time {
      font-size: clamp(.78rem, 3.2vw, 1rem);
      font-weight: 800;
      letter-spacing: .06em;
      text-transform: uppercase;
    }
    .nowrap { white-space: nowrap; }

    main { padding: 1.15rem var(--gutter) 2.4rem; }
    .wrap { max-width: 720px; margin: 0 auto; }
    .hero {
      margin: 0 0 1.15rem;
      border-radius: var(--radius-lg);
      overflow: hidden;
      box-shadow: var(--shadow-md);
      background: #ece7dc;
    }
    .hero img { width: 100%; height: auto; aspect-ratio: 16 / 10; object-fit: cover; object-position: center 58%; }
    .invite { margin-bottom: 1.05rem; }
    .invite h1, .page-title {
      font-family: var(--display);
      font-size: clamp(1.7rem, 5.4vw, 2.35rem);
      font-weight: 400;
      line-height: 1.05;
      letter-spacing: .012em;
      text-transform: uppercase;
      margin: .4rem 0 .7rem;
      color: var(--ink);
    }
    .invite p { margin: 0 0 .75rem; max-width: 40rem; color: var(--muted); }
    .invite p:last-child { margin-bottom: 0; }
    .why { margin: 1.15rem 0 0; }
    .why h2, .form-box h2, .thanks-box h2 {
      font-family: var(--display);
      font-size: 1.25rem;
      font-weight: 400;
      letter-spacing: .02em;
      text-transform: uppercase;
      margin: 0 0 .45rem;
      color: var(--ink);
    }
    .why h2 {
      font-size: clamp(0.95rem, 4vw, 1.25rem);
      letter-spacing: .01em;
      white-space: nowrap;
    }
    .price-lead { color: var(--ink); font-weight: 600; }
    .pick p { margin: .35rem 0 0; font-weight: 500; color: var(--muted); }
    .invite ul, .rules, .next-steps {
      margin: .7rem 0 0;
      padding: 0 0 0 1.15rem;
      color: var(--charcoal);
    }
    .invite li, .rules li, .next-steps li { margin: .28rem 0; }
    .picks { display: grid; gap: .55rem; margin: .55rem 0 .75rem; }
    .pick {
      width: 100%;
      min-height: var(--tap);
      padding: .7rem .9rem;
      border: 1.5px solid var(--line);
      border-radius: var(--radius);
      background: #fff;
      color: var(--ink);
      font: inherit;
      font-weight: 600;
      text-align: left;
      cursor: pointer;
    }
    .pick.on {
      border-color: var(--copper);
      background: #fff6ea;
      box-shadow: inset 0 0 0 1px var(--copper);
    }
    .pick small { display: block; margin-top: .15rem; font-weight: 500; color: var(--muted); }
    .quote {
      margin: 0 0 1.05rem;
      padding: .85rem 1rem .9rem;
      background: var(--paper);
      border: 1px solid var(--line-soft);
      border-left: 3px solid var(--copper);
      border-radius: var(--radius);
    }
    .quote p { margin: 0; font-family: var(--body); font-size: 1.05rem; line-height: 1.45; }
    .quote-by, footer.quote-by {
      display: flex;
      align-items: center;
      gap: .65rem;
      background: transparent !important;
      color: inherit;
      padding: 0;
      margin-top: .55rem;
    }
    .quote-thumb {
      width: 64px;
      height: 64px;
      border-radius: 50%;
      object-fit: cover;
      flex: 0 0 auto;
    }
    .quote cite { display: block; margin: 0; font-style: normal; font-size: .82rem; color: var(--copper-dark); font-weight: 600; }
    .finalist {
      display: flex;
      align-items: center;
      gap: .7rem;
      margin: 0 0 .85rem;
      padding: 0;
    }
    .finalist img {
      width: 128px;
      height: auto;
      max-width: 140px;
      object-fit: contain;
      flex: 0 0 auto;
    }
    .finalist p { margin: 0; font-size: .92rem; color: var(--muted); line-height: 1.35; }
    .onepager {
      display: inline-block;
      margin: .35rem 0 0;
      font-weight: 700;
      color: var(--copper-dark);
    }
    .demo {
      position: relative;
      width: 100%;
      aspect-ratio: 16 / 9;
      margin: 0 0 1.05rem;
      background: #171614;
      border-radius: var(--radius);
      overflow: hidden;
    }
    .demo iframe {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      border: 0;
    }

    .form-box {
      background: var(--paper);
      border: 1px solid var(--line-soft);
      border-radius: var(--radius-lg);
      padding: 1.05rem 1.1rem 1.2rem;
      box-shadow: var(--shadow-md);
    }
    label { display: block; font-weight: 600; font-size: .92rem; margin: .75rem 0 .3rem; }
    input, textarea {
      width: 100%;
      min-height: 3rem;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      padding: .65rem .8rem;
      font: inherit;
      background: #fff;
    }
    textarea { min-height: 5.2rem; }
    .two { display: grid; gap: 0; }
    .qty {
      display: flex;
      justify-content: space-between;
      gap: .75rem;
      align-items: center;
      background: #fff;
      border: 1px solid var(--line-soft);
      border-radius: var(--radius-lg);
      padding: .65rem .75rem;
      margin: .55rem 0;
    }
    .qty .thumb {
      width: 44px;
      height: 56px;
      object-fit: contain;
      flex: 0 0 auto;
      background: var(--ivory);
      border-radius: 4px;
    }
    .qty .meta { flex: 1; min-width: 0; }
    .hint { color: var(--muted); font-size: .88rem; }
    .step { display: flex; gap: .35rem; align-items: center; }
    .step button {
      width: 2.5rem; height: 2.5rem;
      border-radius: var(--radius);
      border: 1px solid var(--line);
      background: var(--ivory);
      font-size: 1.15rem;
    }
    .step input { width: 3.1rem; min-height: 2.5rem; text-align: center; font-weight: 700; }
    .total { background: var(--ink); color: var(--ivory); border-radius: var(--radius-lg); padding: 1rem 1.1rem; }
    .total b { font-family: var(--display); font-size: 1.7rem; font-weight: 400; color: #fff8e7; letter-spacing: .012em; }
    .total #retail { margin-top: .15rem; font-size: .95rem; font-weight: 700; color: #c6e36a; }
    .total #totalLine { margin-top: .15rem; font-size: .92rem; color: #fff8e7; }
    .total #freightBar { margin-top: .45rem; font-size: 1.02rem; font-weight: 600; color: var(--copper-pale); }
    .total .fine { margin-top: .3rem; font-size: .88rem; color: #ead0ae; }
    .error { color: #8a2a2a; font-size: .9rem; }
    .opt { font-weight: 400; color: var(--muted); }
    .thanks-box { padding: .4rem .15rem 0; }
    .thanks-box p { margin: 0 0 .7rem; color: var(--ink); }
    .thanks-box .page-title,
    .thanks-box h2 { color: var(--copper); }
    .thanks-box .res-id {
      color: var(--copper-bright);
      font-weight: 400;
    }
    .thanks-box .next-steps { color: var(--ink); }
    .thanks-box .next-steps li::marker { color: var(--copper); font-weight: 700; }
    .thanks-box .signoff { color: var(--copper); font-weight: 600; }

    footer.site-footer {
      background: var(--ink);
      color: rgba(255,248,231,.68);
      padding: 1.4rem var(--gutter) 1.8rem;
      font-size: .92rem;
    }
    footer.site-footer .wrap { max-width: 720px; }

    .proof {
      position: fixed;
      left: 1rem;
      bottom: 1rem;
      z-index: 40;
      max-width: min(22rem, calc(100vw - 2rem));
      background: #171614;
      color: #fff8e7;
      border: 1px solid rgba(217, 154, 84, 0.45);
      border-left: 3px solid #d99a54;
      border-radius: var(--radius);
      padding: .85rem 1.05rem;
      box-shadow: 0 16px 40px -12px rgba(23, 22, 20, 0.55);
      opacity: 0;
      transform: translateY(10px);
      pointer-events: none;
      transition: opacity .45s var(--ease), transform .45s var(--ease);
    }
    .proof.show { opacity: 1; transform: none; }
    .proof .eyebrow { color: #d99a54; }
    .proof strong { font-family: var(--display); font-weight: 400; color: #fff8e7; }

    @media (max-width: 420px) {
      .page-title { font-size: 1.65rem; }
      .button { letter-spacing: .1em; font-size: .72rem; }
      .header-main { min-height: 80px; padding-top: 13px; padding-bottom: 15px; }
      .close-label { font-size: .55rem; letter-spacing: .12em; line-height: 1.05; }
      .close-time { font-size: .9rem; margin-top: .04rem; }
    }
    @media (min-width: 720px) {
      .two { grid-template-columns: 1fr 1fr; gap: 0 1rem; }
      .form-box { padding: 1.25rem 1.4rem 1.45rem; }
    }

    strong { font-weight: 700; color: inherit; }
