/* Let's Play Secret Santa — shared marketing/content styles */
:root {
  --snow: #F1F5F3; --snow-2: #E7EEEA; --paper: #FFFFFF;
  --ink: #10241D; --ink-soft: #4C5F57; --ink-faint: #7C8C84;
  --pine: #17493A; --pine-deep: #0B241C;
  --cranberry: #D23A2C; --cranberry-deep: #B02C20;
  --gold: #B9832A; --gold-soft: #E9C877;
  --holly: #2E7D57; --holly-soft: #E4F1EA;
  --line: #D9E2DD; --line-soft: #E9EFEB;
  --shadow-sm: 0 1px 2px rgba(11,36,28,.06), 0 8px 24px rgba(11,36,28,.08);
  --ring: rgba(210,58,44,.35);
  --sans: "Segoe UI", system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
  --maxw: 1180px; --r: 18px; --r-lg: 28px;
}
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --snow: #0A1712; --snow-2: #0E1F18; --paper: #122A21;
    --ink: #EAF3EE; --ink-soft: #AFC2B9; --ink-faint: #82978D;
    --pine: #3E9B78; --pine-deep: #061510;
    --cranberry: #E8564A; --cranberry-deep: #C93A2E;
    --gold: #E0B052; --gold-soft: #F0D48A;
    --holly: #48B784; --holly-soft: #123026;
    --line: #21382E; --line-soft: #1A2E25;
    --shadow-sm: 0 1px 2px rgba(0,0,0,.3), 0 10px 30px rgba(0,0,0,.35);
    --ring: rgba(232,86,74,.4);
  }
}
:root[data-theme="dark"] {
  --snow: #0A1712; --snow-2: #0E1F18; --paper: #122A21;
  --ink: #EAF3EE; --ink-soft: #AFC2B9; --ink-faint: #82978D;
  --pine: #3E9B78; --pine-deep: #061510;
  --cranberry: #E8564A; --cranberry-deep: #C93A2E;
  --gold: #E0B052; --gold-soft: #F0D48A;
  --holly: #48B784; --holly-soft: #123026;
  --line: #21382E; --line-soft: #1A2E25;
  --shadow-sm: 0 1px 2px rgba(0,0,0,.3), 0 10px 30px rgba(0,0,0,.35);
  --ring: rgba(232,86,74,.4);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--snow); color: var(--ink); font-family: var(--sans); font-size: 17px; line-height: 1.6; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
h1, h2, h3, h4 { line-height: 1.12; text-wrap: balance; margin: 0; letter-spacing: -.02em; }
p { margin: 0; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; }
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.eyebrow { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--pine); }
.tnum { font-variant-numeric: tabular-nums; }

.btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; font-family: var(--sans); font-size: 16px; font-weight: 700; letter-spacing: -.01em; padding: 15px 26px; border-radius: 999px; border: 0; cursor: pointer; transition: transform .15s, box-shadow .2s, background .2s; white-space: nowrap; }
.btn-primary { background: var(--cranberry); color: #fff; box-shadow: 0 8px 20px rgba(210,58,44,.32); }
.btn-primary:hover { background: var(--cranberry-deep); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--ink); border: 1.5px solid var(--line); }
.btn-ghost:hover { border-color: var(--pine); color: var(--pine); }
.btn-lg { padding: 18px 34px; font-size: 18px; }
.btn:focus-visible { outline: 3px solid var(--ring); outline-offset: 3px; }

/* nav */
header.nav { position: sticky; top: 0; z-index: 50; background: color-mix(in srgb, var(--snow) 82%, transparent); backdrop-filter: blur(12px); border-bottom: 1px solid var(--line-soft); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.brand { display: flex; align-items: center; gap: 11px; font-weight: 800; font-size: 19px; letter-spacing: -.02em; color: var(--ink); }
.brand .mark { width: 38px; height: 38px; border-radius: 11px; display: grid; place-items: center; background: var(--pine); color: var(--gold-soft); flex: none; box-shadow: inset 0 0 0 1.5px rgba(255,255,255,.12); }
.brand .mark svg { width: 21px; height: 21px; }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a { font-size: 15px; font-weight: 600; color: var(--ink-soft); }
.nav-links a:hover { color: var(--ink); }
.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-cta .login { font-size: 15px; font-weight: 700; color: var(--ink); }
.nav-cta .login:hover { color: var(--cranberry); }
@media (max-width: 880px) { .nav-links { display: none; } }

/* page hero */
.page-hero { padding: 66px 0 26px; }
.page-hero h1 { font-size: clamp(34px, 5.2vw, 54px); font-weight: 850; letter-spacing: -.035em; margin-top: 16px; }
.page-hero .lede { font-size: 20px; color: var(--ink-soft); margin-top: 20px; max-width: 40ch; }
.breadcrumb { font-size: 13.5px; color: var(--ink-faint); font-weight: 600; }
.breadcrumb a:hover { color: var(--cranberry); }

/* sections */
section { padding: 40px 0; }
.sec-head { max-width: 680px; margin: 0 0 32px; }
.sec-head.center { text-align: center; margin-left: auto; margin-right: auto; }
.sec-head h2 { font-size: clamp(26px, 3.6vw, 38px); font-weight: 820; margin-top: 12px; }
.sec-head p { color: var(--ink-soft); font-size: 18px; margin-top: 14px; }

/* prose / article */
.prose { max-width: 760px; }
.prose h2 { font-size: 28px; font-weight: 800; margin: 44px 0 14px; }
.prose h3 { font-size: 21px; font-weight: 760; margin: 28px 0 10px; }
.prose p { color: var(--ink-soft); margin: 0 0 16px; }
.prose ul, .prose ol { color: var(--ink-soft); margin: 0 0 18px; padding-left: 22px; }
.prose li { margin-bottom: 8px; }
.prose strong { color: var(--ink); }
.prose a { color: var(--cranberry); font-weight: 600; }
.prose a:hover { text-decoration: underline; }

/* numbered steps */
.steps { display: grid; gap: 16px; counter-reset: step; }
.step { display: grid; grid-template-columns: 54px 1fr; gap: 18px; align-items: start; background: var(--paper); border: 1px solid var(--line-soft); border-radius: var(--r); padding: 22px 24px; box-shadow: var(--shadow-sm); }
.step .n { counter-increment: step; width: 46px; height: 46px; border-radius: 13px; display: grid; place-items: center; font-weight: 850; font-size: 19px; color: var(--gold-soft); background: var(--pine-deep); font-variant-numeric: tabular-nums; }
.step .n::before { content: counter(step); }
.step h3 { font-size: 20px; font-weight: 780; margin-bottom: 6px; }
.step p { color: var(--ink-soft); font-size: 16px; }

/* feature/benefit grid */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.tile { background: var(--paper); border: 1px solid var(--line-soft); border-radius: var(--r); padding: 24px; box-shadow: var(--shadow-sm); }
.tile .ic { font-size: 26px; margin-bottom: 10px; display: block; }
.tile h3 { font-size: 18px; font-weight: 760; margin-bottom: 6px; }
.tile p { color: var(--ink-soft); font-size: 15.5px; }
@media (max-width: 860px) { .grid-3 { grid-template-columns: 1fr; } .grid-2 { grid-template-columns: 1fr; } }

/* gift cards */
.gift-cat { background: var(--paper); border: 1px solid var(--line-soft); border-radius: var(--r); padding: 24px; box-shadow: var(--shadow-sm); }
.gift-cat .badge { display: inline-block; font-size: 12px; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; color: var(--holly); background: var(--holly-soft); padding: 5px 12px; border-radius: 999px; margin-bottom: 12px; }
.gift-cat h3 { font-size: 20px; font-weight: 800; margin-bottom: 12px; }
.gift-cat ul { list-style: none; margin: 0; padding: 0; }
.gift-cat li { display: flex; gap: 10px; align-items: baseline; padding: 8px 0; border-bottom: 1px dashed var(--line-soft); color: var(--ink-soft); font-size: 15.5px; }
.gift-cat li:last-child { border-bottom: 0; }
.gift-cat li b { color: var(--ink); font-weight: 700; }
.gift-cat li .em { flex: none; }

/* faq */
.faq { max-width: 780px; }
details.q { background: var(--paper); border: 1px solid var(--line-soft); border-radius: 14px; margin-bottom: 12px; overflow: hidden; }
details.q summary { list-style: none; cursor: pointer; padding: 20px 22px; font-weight: 720; font-size: 17.5px; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
details.q summary::-webkit-details-marker { display: none; }
details.q summary .plus { flex: none; width: 26px; height: 26px; border-radius: 50%; background: var(--snow-2); display: grid; place-items: center; transition: transform .25s; color: var(--pine); font-weight: 800; }
details.q[open] summary .plus { transform: rotate(45deg); }
details.q .a { padding: 0 22px 22px; color: var(--ink-soft); font-size: 16px; }

/* CTA band */
.cta-band { text-align: center; }
.cta-card { background: linear-gradient(155deg, var(--cranberry), var(--cranberry-deep)); border-radius: var(--r-lg); padding: 56px 32px; color: #fff; }
.cta-card h2 { font-size: clamp(28px, 4vw, 42px); font-weight: 850; color: #fff; }
.cta-card p { font-size: 19px; margin: 14px auto 28px; max-width: 34em; opacity: .95; }
.cta-card .btn-primary { background: #fff; color: var(--cranberry-deep); }
.cta-card .btn-primary:hover { background: #fff; }
.cta-card .fine { font-size: 14px; opacity: .85; margin-top: 14px; }

/* forms */
.form-field { margin-bottom: 16px; }
.form-field label { display: block; font-size: 13.5px; font-weight: 700; color: var(--ink-soft); margin-bottom: 7px; }
.form-field input, .form-field textarea { width: 100%; background: var(--paper); border: 1.5px solid var(--line); border-radius: 11px; padding: 13px 15px; font-family: inherit; font-size: 16px; color: var(--ink); }
.form-field textarea { min-height: 140px; resize: vertical; }
.form-field input:focus-visible, .form-field textarea:focus-visible { outline: none; border-color: var(--cranberry); box-shadow: 0 0 0 3px var(--ring); }

/* footer */
footer.ft { background: var(--pine-deep); color: #AFC2B9; padding: 56px 0 32px; margin-top: 60px; }
footer.ft .brand { color: #fff; margin-bottom: 12px; }
.ft-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 30px; padding-bottom: 34px; border-bottom: 1px solid rgba(255,255,255,.08); }
.ft-blurb { font-size: 14.5px; max-width: 30em; line-height: 1.6; }
.ft-col h4 { color: #fff; font-size: 14px; letter-spacing: .06em; text-transform: uppercase; margin: 0 0 14px; }
.ft-col a { display: block; font-size: 15px; color: #AFC2B9; margin-bottom: 9px; }
.ft-col a:hover { color: #fff; }
.ft-bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; padding-top: 22px; font-size: 13.5px; }
@media (max-width: 820px) { .ft-top { grid-template-columns: 1fr 1fr; } }

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