/* ============================================================
   Spillehallen Online — global stylesheet (single file)
   Navy / green / gold palette, system fonts, mobile-first
   ============================================================ */

:root {
  --navy-950: #060D21;
  --navy-900: #0A1430;
  --navy-800: #101D42;
  --navy-700: #1A2B5C;
  --ink: #0F1A33;
  --green: #0FBE6C;
  --green-dark: #0A9E59;
  --green-soft: #E4F9EF;
  --gold: #FFB62E;
  --gold-deep: #E59A00;
  --gold-soft: #FFF4DD;
  --red: #E5484D;
  --red-soft: #FDECEC;
  --bg: #FFFFFF;
  --bg-pale: #F3F7FA;
  --bg-mint: #EFF9F4;
  --muted: #55627E;
  --line: #DCE4F0;
  --radius: 18px;
  --radius-sm: 12px;
  --shadow: 0 10px 30px rgba(10, 20, 48, .08);
  --shadow-lg: 0 24px 60px rgba(10, 20, 48, .14);
  --font: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  --ease: cubic-bezier(.2, .7, .2, 1);
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  font-size: 1rem;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; }

a { color: var(--navy-700); text-underline-offset: 3px; }
a:hover { color: var(--green-dark); }

h1, h2, h3 { line-height: 1.15; letter-spacing: -.02em; color: var(--navy-900); }
h1 { font-size: clamp(1.9rem, 5.4vw, 3.3rem); font-weight: 850; }
h2 { font-size: clamp(1.45rem, 3.4vw, 2.1rem); font-weight: 800; margin-bottom: 1rem; }
h3 { font-size: 1.15rem; font-weight: 750; }

p { margin-bottom: 1rem; }
ul, ol { margin: 0 0 1rem 1.25rem; }
li { margin-bottom: .4rem; }
strong { font-weight: 750; }

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
  border-radius: 4px;
}

.flush-top { margin-top: 0; }
.section--flush { padding-bottom: 0; }
.editor-title { font-size: 1.2rem; }

.wrap { width: min(1140px, 100% - 2.5rem); margin-inline: auto; }

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 200;
  background: var(--gold); color: var(--navy-900);
  padding: .7rem 1.2rem; font-weight: 700; border-radius: 0 0 10px 0;
}
.skip-link:focus { left: 0; }

/* ---------- Top trust bar ---------- */
.trustbar {
  background: var(--navy-950);
  color: #C7D2EC;
  font-size: .8rem;
}
.trustbar .wrap {
  display: flex; flex-wrap: wrap; gap: .35rem 1.2rem;
  align-items: center; justify-content: center;
  padding-block: .45rem;
}
.trustbar strong { color: var(--gold); font-weight: 800; }
.trustbar a { color: #C7D2EC; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(10, 20, 48, .96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; padding-block: .7rem;
}
.brand {
  display: inline-flex; align-items: center; gap: .55rem;
  color: #fff; text-decoration: none;
  font-weight: 850; font-size: 1.15rem; letter-spacing: -.02em;
}
.brand-logo {
  width: 38px; height: auto; display: block; flex: none;
  filter: drop-shadow(0 3px 8px rgba(255, 182, 46, .35));
}
.brand small { display: block; font-size: .62rem; font-weight: 600; color: #93A4CC; letter-spacing: .14em; text-transform: uppercase; }

.nav-toggle {
  display: none;
  align-items: center; gap: .5rem;
  background: transparent; color: #fff;
  border: 1px solid rgba(255, 255, 255, .3);
  border-radius: 999px; padding: .55rem 1rem;
  font: inherit; font-weight: 700; font-size: .9rem;
  cursor: pointer;
}
.nav-toggle-bars, .nav-toggle-bars::before, .nav-toggle-bars::after {
  display: block; width: 18px; height: 2px; background: #fff; border-radius: 2px;
  transition: transform .3s var(--ease), opacity .2s;
  content: ""; position: relative;
}
.nav-toggle-bars::before { position: absolute; top: -6px; }
.nav-toggle-bars::after { position: absolute; top: 6px; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bars { background: transparent; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bars::before { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bars::after { transform: translateY(-6px) rotate(-45deg); }

.primary-nav ul {
  display: flex; flex-wrap: wrap; gap: .15rem;
  list-style: none; margin: 0;
}
.primary-nav a {
  display: block; color: #D8E1F5; text-decoration: none;
  font-size: .88rem; font-weight: 650;
  padding: .5rem .7rem; border-radius: 999px;
  transition: color .2s, background-color .2s;
}
.primary-nav a:hover { color: #fff; background: rgba(255, 255, 255, .1); }
.primary-nav a[aria-current="page"] { color: var(--navy-900); background: var(--gold); }

@media (max-width: 940px) {
  .header-inner { flex-wrap: wrap; }
  html.js .nav-toggle { display: inline-flex; }
  .primary-nav { width: 100%; }
  html.js .primary-nav { display: none; }
  html.js .primary-nav[data-open="true"] { display: block; }
  .primary-nav ul { flex-direction: column; padding: .5rem 0 .8rem; }
  .primary-nav a { padding: .75rem 1rem; font-size: 1rem; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background:
    radial-gradient(600px 300px at 85% -10%, rgba(255, 182, 46, .22), transparent 60%),
    radial-gradient(500px 320px at 8% 110%, rgba(15, 190, 108, .2), transparent 60%),
    linear-gradient(160deg, var(--navy-900), var(--navy-800) 70%, var(--navy-700));
  color: #fff;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    radial-gradient(circle 3px, rgba(255, 182, 46, .8) 98%, transparent),
    radial-gradient(circle 2.5px, rgba(15, 190, 108, .75) 98%, transparent),
    radial-gradient(circle 2px, rgba(255, 255, 255, .5) 98%, transparent);
  background-size: 190px 190px, 150px 150px, 230px 230px;
  background-position: 12% 22%, 70% 60%, 40% 85%;
  opacity: .35;
}
.hero-inner { position: relative; padding: clamp(2.2rem, 5vw, 3.6rem) 0 clamp(2rem, 4vw, 3rem); }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(255, 182, 46, .14); border: 1px solid rgba(255, 182, 46, .45);
  color: var(--gold); border-radius: 999px;
  font-size: .78rem; font-weight: 750; letter-spacing: .08em; text-transform: uppercase;
  padding: .35rem .9rem; margin-bottom: 1.1rem;
}
.hero-title { color: #fff; margin-bottom: 1rem; }
.hero-title .line { display: block; overflow: hidden; padding-bottom: .08em; }
.hero-title .line > span { display: inline-block; transform: translateY(115%); animation: line-rise .85s var(--ease) forwards; }
.hero-title .line:nth-child(2) > span { animation-delay: .12s; }
.hero-title .line:nth-child(3) > span { animation-delay: .24s; }
.hero-title em { font-style: normal; color: var(--gold); }
@keyframes line-rise { to { transform: translateY(0); } }

.hero-lead { max-width: 46rem; color: #D8E1F5; font-size: clamp(.95rem, 2vw, 1.08rem); margin-bottom: 1.1rem; }
.hero-fresh {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(15, 190, 108, .16); border: 1px solid rgba(15, 190, 108, .5);
  color: #7CE8B6; font-size: .85rem; font-weight: 700;
  border-radius: 999px; padding: .4rem 1rem; margin-bottom: 1rem;
}
.hero-fresh::before {
  content: ""; width: 8px; height: 8px; border-radius: 50%;
  background: var(--green); box-shadow: 0 0 0 4px rgba(15, 190, 108, .25);
  animation: pulse 2.4s infinite;
}
@keyframes pulse { 50% { box-shadow: 0 0 0 7px rgba(15, 190, 108, 0); } }
.hero-trustline { font-size: .85rem; color: #9FB0D8; margin-bottom: 1.4rem; }
.hero-today {
  font-size: .8rem; font-weight: 750; letter-spacing: .1em;
  text-transform: uppercase; color: #93A4CC; margin-bottom: .8rem;
}
.hero-today time { color: var(--gold); }
.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; }

.hero--compact .hero-inner { padding-block: clamp(1.8rem, 4vw, 2.8rem); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font-weight: 800; text-decoration: none; border-radius: 999px;
  padding: .85rem 1.6rem; font-size: .95rem;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background-color .2s;
}
.btn--cta {
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: #fff; box-shadow: 0 8px 22px rgba(15, 190, 108, .35);
}
.btn--cta:hover { color: #fff; transform: translateY(-2px); box-shadow: 0 12px 28px rgba(15, 190, 108, .45); }
.btn--ghost { border: 1.5px solid rgba(255, 255, 255, .4); color: #fff; }
.btn--ghost:hover { background: rgba(255, 255, 255, .1); color: #fff; }

/* ---------- Marquee ---------- */
.marquee {
  background: var(--gold); color: var(--navy-900);
  overflow: hidden; border-block: 2px solid var(--navy-900);
  padding-block: .5rem;
}
.marquee-track {
  display: flex; gap: 0; width: max-content;
  animation: marquee 48s linear infinite;
}
.marquee-track span {
  white-space: nowrap; font-weight: 800; font-size: .82rem;
  letter-spacing: .12em; text-transform: uppercase; padding-right: 3rem;
}
@keyframes marquee { to { transform: translateX(-50%); } }
.marquee:hover .marquee-track { animation-play-state: paused; }

/* ---------- Sections ---------- */
.section { padding: clamp(2.6rem, 6vw, 4.5rem) 0; }
.section--pale { background: var(--bg-pale); }
.section--mint { background: var(--bg-mint); }
.section--navy { background: var(--navy-900); color: #DCE4F6; }
.section--navy h2, .section--navy h3 { color: #fff; }

.section-kicker {
  display: flex; align-items: baseline; gap: .8rem; margin-bottom: .9rem;
}
.section-num {
  font-size: .85rem; font-weight: 900; color: var(--gold-deep);
  letter-spacing: .1em;
  border: 2px solid var(--gold); border-radius: 8px; padding: .1rem .5rem;
}
.section-kicker span:last-child {
  font-size: .8rem; font-weight: 750; text-transform: uppercase;
  letter-spacing: .12em; color: var(--muted);
}
.prose { max-width: 48rem; }
.prose p, .prose li { color: #33405E; }
.section--navy .prose p, .section--navy .prose li { color: #C4CFE9; }

/* ---------- Offer cards ---------- */
.offer-grid {
  display: grid; gap: 1.4rem;
  grid-template-columns: 1fr;
  margin-top: 1.6rem;
}
@media (min-width: 720px) { .offer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1060px) { .offer-grid--four { grid-template-columns: repeat(2, 1fr); } }

.offer-card {
  position: relative;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow); padding: 1.4rem 1.4rem 1.2rem;
  display: flex; flex-direction: column;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.offer-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.offer-card--featured { border: 2px solid var(--gold); }
.offer-feature-flag {
  position: absolute; top: -13px; left: 1.2rem;
  background: var(--gold); color: var(--navy-900);
  font-size: .72rem; font-weight: 850; letter-spacing: .08em; text-transform: uppercase;
  padding: .25rem .8rem; border-radius: 999px;
}
.offer-head { display: flex; align-items: center; gap: .9rem; margin-bottom: .9rem; }
.offer-logo {
  width: 58px; height: 58px; border-radius: 14px; object-fit: cover;
  border: 1px solid var(--line); flex: none; background: #fff;
}
.offer-name { margin: 0; }
.offer-label { font-size: .78rem; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: .06em; }
.offer-badge {
  margin-left: auto; flex: none;
  font-size: .72rem; font-weight: 800; border-radius: 999px; padding: .3rem .7rem;
}
.offer-badge--nodep { background: var(--green-soft); color: var(--green-dark); border: 1px solid var(--green); }
.offer-badge--dep { background: var(--gold-soft); color: #8a5a00; border: 1px solid var(--gold); }
.offer-badge--code { background: var(--navy-900); color: var(--gold); border: 1px solid var(--gold); }

.offer-spins {
  font-size: 1.05rem; font-weight: 700; color: var(--ink);
  border-block: 1px dashed var(--line); padding-block: .7rem; margin-bottom: .9rem;
}
.offer-count {
  font-size: 2.6rem; font-weight: 900; letter-spacing: -.04em;
  color: var(--navy-900); margin-right: .3rem;
  background: linear-gradient(180deg, var(--navy-900), var(--navy-700));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.offer-card--featured .offer-count {
  background: linear-gradient(180deg, var(--gold-deep), #B97A00);
  -webkit-background-clip: text; background-clip: text;
}

.offer-facts {
  display: grid; grid-template-columns: 1fr 1fr; gap: .45rem .9rem;
  margin-bottom: 1.1rem;
}
.offer-facts div { display: flex; flex-direction: column; }
.offer-facts dt { font-size: .68rem; font-weight: 750; text-transform: uppercase; letter-spacing: .07em; color: var(--muted); }
.offer-facts dd { font-size: .88rem; font-weight: 650; }

.offer-cta { margin-top: auto; text-align: center; }
.offer-meta { font-size: .78rem; color: var(--muted); margin: .8rem 0 0; }
.offer-expiry {
  font-size: .8rem; font-weight: 650;
  background: var(--gold-soft); border: 1px solid var(--gold);
  border-radius: 10px; padding: .55rem .8rem; margin: .9rem 0 0;
}
.offer-terms { font-size: .78rem; color: var(--muted); margin: .25rem 0 0; }

/* ---------- Type cards ---------- */
.type-grid { display: grid; gap: 1.2rem; grid-template-columns: 1fr; margin-top: 1.6rem; }
@media (min-width: 720px) { .type-grid { grid-template-columns: repeat(3, 1fr); } }
.type-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.5rem; text-decoration: none; color: inherit;
  box-shadow: var(--shadow);
  transition: transform .3s var(--ease), border-color .3s;
  display: block;
}
.type-card:hover { transform: translateY(-4px); border-color: var(--green); color: inherit; }
.type-card .type-icon {
  display: grid; place-items: center; width: 46px; height: 46px;
  border-radius: 12px; margin-bottom: .9rem;
  background: var(--green-soft); color: var(--green-dark);
  font-size: 1.3rem; font-weight: 900;
}
.type-card h3 { margin-bottom: .4rem; }
.type-card p { font-size: .9rem; color: var(--muted); margin-bottom: .7rem; }
.type-card .type-link { font-size: .85rem; font-weight: 800; color: var(--green-dark); }

/* ---------- Callouts / notes ---------- */
.note {
  border-radius: var(--radius-sm); padding: 1rem 1.2rem; margin: 1.2rem 0;
  font-size: .92rem; border: 1px solid;
}
.note--green { background: var(--green-soft); border-color: var(--green); }
.note--gold { background: var(--gold-soft); border-color: var(--gold); }
.note--red { background: var(--red-soft); border-color: var(--red); }
.note strong { display: block; margin-bottom: .2rem; }

/* ---------- Terms mini-grid ---------- */
.term-grid { display: grid; gap: 1rem; grid-template-columns: 1fr; margin-top: 1.4rem; }
@media (min-width: 640px) { .term-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px) { .term-grid { grid-template-columns: repeat(5, 1fr); } }
.term-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: 1.1rem; box-shadow: var(--shadow);
}
.term-card h3 { font-size: .95rem; margin-bottom: .35rem; }
.term-card p { font-size: .84rem; color: var(--muted); margin: 0; }

/* ---------- FAQ ---------- */
.faq { margin-top: 1.4rem; }
.faq details {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm);
  margin-bottom: .7rem; overflow: hidden;
}
.faq summary {
  cursor: pointer; list-style: none;
  padding: 1rem 1.2rem; font-weight: 750; font-size: .98rem;
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  transition: background-color .2s;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; font-size: 1.3rem; font-weight: 800; color: var(--green-dark);
  transition: transform .25s var(--ease); flex: none;
}
.faq details[open] summary { background: var(--bg-pale); }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p, .faq details ul { padding: 0 1.2rem 1rem; color: #33405E; font-size: .92rem; }

/* ---------- Responsible gambling band ---------- */
.rg-band {
  background: linear-gradient(140deg, var(--navy-950), var(--navy-900));
  border: 1px solid var(--navy-700); border-radius: var(--radius);
  color: #DCE4F6; padding: clamp(1.5rem, 4vw, 2.4rem);
}
.rg-band h2, .rg-band h3 { color: #fff; }
.rg-band .rg-badge {
  display: inline-block; background: var(--red); color: #fff;
  font-weight: 900; border-radius: 10px; padding: .3rem .8rem; margin-bottom: .8rem;
}
.rg-band a { color: var(--gold); }

/* ---------- Editor block ---------- */
.editor-block {
  display: flex; gap: 1.2rem; align-items: flex-start;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.4rem; box-shadow: var(--shadow);
}
.editor-photo {
  flex: none; width: 56px; height: 56px; border-radius: 50%;
  object-fit: cover; border: 2px solid var(--gold);
  box-shadow: 0 4px 14px rgba(10, 20, 48, .18);
}
.byline {
  display: flex; align-items: center; gap: .7rem;
  margin-top: 1.2rem; padding-top: 1rem;
  border-top: 1px dashed var(--line);
  font-size: .85rem; color: var(--muted);
}
.byline p { margin: 0; }
.byline .editor-photo { width: 40px; height: 40px; }
.editor-block p { font-size: .9rem; color: #33405E; margin-bottom: .5rem; }
.editor-links { display: flex; flex-wrap: wrap; gap: 1rem; font-size: .85rem; font-weight: 700; }

/* ---------- Breadcrumbs ---------- */
.breadcrumbs { background: var(--navy-950); padding-block: .55rem; }
.breadcrumbs ol {
  display: flex; flex-wrap: wrap; gap: .4rem; list-style: none; margin: 0;
  font-size: .8rem; color: #93A4CC;
}
.breadcrumbs li { margin: 0; display: flex; gap: .4rem; align-items: center; }
.breadcrumbs li + li::before { content: "/"; color: #4A5B85; }
.breadcrumbs a { color: #C7D2EC; text-decoration: none; }
.breadcrumbs a:hover { color: var(--gold); }

/* ---------- Status box (entity pages) ---------- */
.status-box {
  border: 2px solid var(--green); background: var(--green-soft);
  border-radius: var(--radius); padding: 1.2rem 1.4rem; margin-top: 1.6rem;
}
.status-box strong { color: var(--green-dark); }

/* ---------- Comparison table ---------- */
.table-wrap { overflow-x: auto; margin-top: 1.4rem; border-radius: var(--radius-sm); border: 1px solid var(--line); }
table.compare { border-collapse: collapse; width: 100%; min-width: 640px; background: #fff; font-size: .9rem; }
.compare th, .compare td { padding: .8rem 1rem; text-align: left; border-bottom: 1px solid var(--line); }
.compare thead th { background: var(--navy-900); color: #fff; font-size: .8rem; text-transform: uppercase; letter-spacing: .06em; }
.compare tbody tr:hover { background: var(--bg-pale); }

/* ---------- Chapters (method page) ---------- */
.chapter { display: grid; gap: 1rem; grid-template-columns: 1fr; padding: 2rem 0; border-bottom: 1px solid var(--line); }
@media (min-width: 800px) { .chapter { grid-template-columns: 130px 1fr; } }
.chapter-num {
  font-size: 3rem; font-weight: 900; letter-spacing: -.05em; line-height: 1;
  color: transparent; -webkit-text-stroke: 2px var(--gold);
}

/* ---------- Link lists ---------- */
.link-list { display: grid; gap: .6rem; grid-template-columns: 1fr; margin-top: 1.2rem; list-style: none; margin-left: 0; }
@media (min-width: 640px) { .link-list { grid-template-columns: repeat(2, 1fr); } }
.link-list a {
  display: flex; justify-content: space-between; align-items: center; gap: .6rem;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: .9rem 1.1rem; text-decoration: none; font-weight: 700; font-size: .92rem;
  transition: border-color .2s, transform .25s var(--ease);
}
.link-list a:hover { border-color: var(--green); transform: translateX(3px); }
.link-list a::after { content: "→"; color: var(--green-dark); font-weight: 900; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy-950); color: #9FB0D8;
  padding: clamp(2.5rem, 6vw, 4rem) 0 2rem; margin-top: 0;
}
.footer-grid { display: grid; gap: 2rem; grid-template-columns: 1fr; }
@media (min-width: 720px) { .footer-grid { grid-template-columns: repeat(3, 1fr); } }
.site-footer h2, .site-footer h3 { color: #fff; font-size: .85rem; text-transform: uppercase; letter-spacing: .12em; margin-bottom: .9rem; }
.site-footer ul { list-style: none; margin: 0; }
.site-footer li { margin-bottom: .5rem; }
.site-footer a { color: #C7D2EC; text-decoration: none; font-size: .9rem; }
.site-footer a:hover { color: var(--gold); }
.footer-legal {
  border-top: 1px solid var(--navy-700); margin-top: 2.2rem; padding-top: 1.5rem;
  font-size: .82rem; color: #7E8FB8;
}
.footer-legal p { margin-bottom: .6rem; }
.footer-age {
  display: inline-block; background: var(--red); color: #fff; font-weight: 900;
  border-radius: 8px; padding: .1rem .55rem; margin-right: .4rem;
}
.footer-legal a { color: var(--gold); }

/* ---------- Reveal on scroll (JS only, progressive enhancement) ---------- */
html.js .reveal { opacity: 0; transform: translateY(20px); }
html.js .reveal.in {
  opacity: 1; transform: none;
  transition: opacity .7s ease, transform .7s var(--ease);
}
html.js .reveal:nth-child(2) { transition-delay: .08s; }
html.js .reveal:nth-child(3) { transition-delay: .16s; }
html.js .reveal:nth-child(4) { transition-delay: .24s; }

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .hero-title .line > span { transform: none; }
  html.js .reveal { opacity: 1; transform: none; }
  .marquee-track { animation: none; }
}
on: reduce) {

/* ---------- Small screens ---------- */
@media (max-width: 480px) {
  .offer-head { flex-wrap: wrap; }
  .offer-badge { margin-left: 0; }
  .offer-count { font-size: 2.2rem; }
  .offer-facts { gap: .4rem .6rem; }
  .btn { width: 100%; }
  .hero-actions { flex-direction: column; }
  .editor-block { gap: .9rem; }
  .section { padding: 2.2rem 0; }
}

  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .hero-title .line > span { transform: none; }
  html.js .reveal { opacity: 1; transform: none; }
  .marquee-track { animation: none; }
}
