/* ==========================================================================
   Ice Fishing Wheel — theme
   Reference-desk look: the lake seen from above. Snow-white surface, meltwater
   blues, one green action colour. Distinct from the two sister sites, which run
   dark navy/gold and dark teal/coral.
   ========================================================================== */

:root {
  /* sky and ice, taken from the key art */
  --sky-1:  #A8DCF5;
  --sky-2:  #6DC2EC;
  --sky-3:  #3A9BD9;
  --sky-4:  #1E7BB8;

  --snow:   #F2FAFE;
  --ice:    #E1F1FA;
  --ice-2:  #CFE8F6;
  --white:  #FFFFFF;
  --line:   #C4E1F2;
  --line-2: #9FCBE5;

  /* navy from the logo outline — all dark type and panels */
  --navy:   #16375E;
  --navy-2: #0F2843;
  --ink:    #16375E;
  --ink-2:  #35577A;
  --ink-3:  #4E6E8B;
  --ink-4:  #8FAEC6;

  --deep:   #16375E;
  --deep-2: #0F2843;
  --aqua:   #1E7BB8;

  /* the yellow "Play for Real Money" button */
  --go:     #FFC800;
  --go-2:   #EFB000;
  --go-ink: #16375E;

  /* warm wood from the hut, jetty and barrel */
  --wood:   #A9713F;
  --wood-2: #7C4F27;

  /* the fish */
  --leaf:   #2E7D5B;
  --blue:   #2F7FD0;
  --orange: #F2703A;
  --red:    #E8562A;

  --display: "Sora", -apple-system, BlinkMacSystemFont, sans-serif;
  --body:    "Source Sans 3", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mono:    "Roboto Mono", ui-monospace, SFMono-Regular, monospace;

  --wrap: 1220px;
  --pad: clamp(16px, 3.4vw, 40px);
  --r: 8px;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; background: var(--snow); }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .001ms !important; animation-duration: .001ms !important; }
}

body { margin: 0; background: var(--snow); color: var(--ink);
  font-family: var(--body); font-size: 17.5px; line-height: 1.62;
  -webkit-font-smoothing: antialiased; }

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 var(--pad); }
a { color: var(--aqua); text-decoration: underline; text-underline-offset: 2px;
  text-decoration-thickness: 1px; }
a:hover { color: var(--deep); }
:focus-visible { outline: 2px solid var(--aqua); outline-offset: 3px; }
img, svg { max-width: 100%; }

/* ---------------- type ---------------- */

h1, h2, h3, h4 { margin: 0 0 .5em; font-family: var(--display); color: var(--ink);
  line-height: 1.15; letter-spacing: -.02em; text-wrap: balance; }
h1 { font-size: clamp(30px, 4.4vw, 46px); font-weight: 700; }
h2 { font-size: clamp(23px, 2.9vw, 31px); font-weight: 700; }
h3 { font-size: clamp(18px, 2vw, 21px); font-weight: 600; }
h4 { font-size: 17px; font-weight: 600; }

p { margin: 0 0 1.05em; }
p:last-child { margin-bottom: 0; }
.lede { font-size: clamp(18px, 1.9vw, 21px); line-height: 1.5; color: var(--ink-2); text-wrap: pretty; }

.kicker { margin: 0 0 12px; font-family: var(--mono); font-size: 12px; font-weight: 500;
  letter-spacing: .12em; text-transform: uppercase; color: #0B3E63; }

strong { font-weight: 700; color: var(--ink); }
small { font-size: 14px; color: var(--ink-3); }

/* ---------------- masthead ---------------- */

.head { background: var(--white); color: var(--navy); border-bottom: 1px solid var(--line); }
.head__in { display: flex; align-items: center; gap: 22px; min-height: 70px; }
.logo { display: flex; align-items: center; text-decoration: none; }
.logo .wm { display: block; width: 148px; height: auto; }
@media (max-width: 420px) { .logo .wm { width: 120px; } }
.logo--foot .wm { width: 160px; }
.vh { position: absolute; width: 1px; height: 1px; margin: -1px; padding: 0;
  overflow: hidden; clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap; border: 0; }
.logo:hover { color: inherit; }
.logo svg { flex: 0 0 auto; }
.logo b { font-family: var(--display); font-weight: 700; font-size: 18px;
  letter-spacing: -.02em; color: var(--navy); white-space: nowrap; }

.nav { display: flex; gap: clamp(12px, 1.8vw, 24px); margin-left: auto; }
.nav a { color: var(--ink-2); font-size: 15px; font-weight: 600; text-decoration: none; white-space: nowrap; }
.nav a:hover, .nav a[aria-current="page"] { color: var(--sky-4); text-decoration: underline; }

.burger { display: none; margin-left: auto; cursor: pointer; border-radius: var(--r);
  background: var(--ice); border: 1px solid var(--line-2);
  color: var(--navy); padding: 8px 14px; font: 600 14px/1 var(--body); }

@media (max-width: 1000px) {
  .nav { display: none; position: absolute; left: 0; right: 0; top: 70px; z-index: 50;
    flex-direction: column; gap: 0; padding: 4px var(--pad) 14px; background: var(--white);
    border-bottom: 1px solid var(--line); box-shadow: 0 6px 18px rgba(22,55,94,.12); }
  .nav.open { display: flex; }
  .nav a { padding: 12px 0; border-bottom: 1px solid var(--line); }
  .burger { display: block; }
  .head .btn--sm { display: none; }
}

/* ---------------- buttons ---------------- */

.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 52px; padding: 0 26px; border-radius: var(--r); max-width: 100%;
  font-family: var(--body); font-weight: 700; font-size: 16.5px;
  text-decoration: none; border: 2px solid transparent; cursor: pointer;
  transition: background .15s ease, border-color .15s ease; }
.btn--go { background: var(--go); color: var(--go-ink); box-shadow: 0 2px 0 var(--go-2); }
.btn--go:hover { background: var(--go-2); color: var(--go-ink); }
.btn--line { background: var(--white); border-color: var(--line-2); color: var(--ink); }
.btn--line:hover { border-color: var(--deep); color: var(--deep); }
.btn--sm { min-height: 38px; padding: 0 16px; font-size: 14.5px; }
.btn--block { width: 100%; }

/* ---------------- breadcrumb ---------------- */

.crumb { margin: 0; padding: 12px 0; font-size: 13.5px; color: var(--ink-3);
  background: var(--white); border-bottom: 1px solid var(--line); }
.crumb ol { display: flex; flex-wrap: wrap; gap: 6px; margin: 0; padding: 0; list-style: none; }
.crumb li + li::before { content: "/"; margin-right: 6px; color: var(--line-2); }
.crumb a { color: var(--ink-3); }

/* ---------------- layout ---------------- */

.grid { display: grid; grid-template-columns: minmax(0, 1fr) 300px; gap: 44px;
  padding: 36px 0 8px; align-items: start; }
@media (max-width: 1060px) { .grid { grid-template-columns: minmax(0, 1fr); gap: 30px; } }
.grid > * { min-width: 0; }

.sec { padding: 0 0 40px; scroll-margin-top: 24px; }
.sec + .sec { border-top: 1px solid var(--line); padding-top: 34px; }
.sec > h2 { margin-bottom: .6em; }

/* ---------------- hero ---------------- */

.hero { position: relative; overflow: hidden; border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, var(--sky-3) 0%, var(--sky-2) 30%, var(--sky-1) 62%, #BFE4F7 100%); }
.hero::after { content: ""; position: absolute; left: 0; right: 0; bottom: -1px; height: 54px;
  background: var(--snow); pointer-events: none;
  clip-path: polygon(0 62%, 8% 44%, 17% 66%, 26% 40%, 35% 64%, 45% 42%, 54% 68%, 63% 44%,
                     72% 66%, 81% 42%, 90% 64%, 100% 46%, 100% 100%, 0 100%); }
.hero > .wrap { position: relative; z-index: 1; }
.hero__in { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr);
  gap: clamp(24px, 4vw, 52px); align-items: center; padding: clamp(30px, 4.5vw, 56px) 0; }
@media (max-width: 940px) { .hero__in { grid-template-columns: 1fr; } }
.hero h1 { max-width: 14em; }
.hero .lede { max-width: 38em; }
.hero__act { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }
.hero__mic { margin: 12px 0 0; font-size: 13px; color: var(--ink-2); }

.wheel { margin: 0; justify-self: center; max-width: 400px; }
.wheel svg { display: block; width: 100%; height: auto; }
.wheel figcaption { margin-top: 14px; font-size: 13.5px; line-height: 1.5; color: var(--ink-2); }

/* ---------------- stats ---------------- */

.stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(148px, 1fr));
  gap: 1px; margin: 0; background: var(--line); border: 1px solid var(--line);
  border-radius: var(--r); overflow: hidden; }
.stats > div { display: flex; flex-direction: column-reverse; background: var(--white); padding: 18px 20px; }
.stats dt { font-family: var(--mono); font-size: 11px; letter-spacing: .1em;
  text-transform: uppercase; color: var(--ink-3); margin-top: 5px; }
.stats dd { margin: 0; font-family: var(--display); font-weight: 700; font-size: 27px;
  line-height: 1.05; letter-spacing: -.02em; color: var(--deep); }

/* ---------------- TOC & clusters ---------------- */

.toc { margin: 0 0 32px; padding: 18px 22px; background: var(--white);
  border: 1px solid var(--line); border-left: 4px solid var(--sky-3);
  border-radius: var(--r); }
.toc h2 { margin: 0 0 10px; font-family: var(--mono); font-weight: 500; font-size: 11.5px;
  letter-spacing: .12em; text-transform: uppercase; color: var(--ink-3); }
.toc ol { margin: 0; padding-left: 20px; columns: 2; column-gap: 32px; font-size: 15.5px; }
.toc li { margin-bottom: 6px; break-inside: avoid; }
.toc a { color: var(--ink-2); text-decoration: none; }
.toc a:hover { color: var(--sky-4); text-decoration: underline; }
@media (max-width: 620px) { .toc ol { columns: 1; } }

.clusters { display: grid; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); gap: 18px; }
.cluster { padding: 22px; background: var(--white); border: 1px solid var(--line);
  border-radius: var(--r); border-top: 3px solid var(--wood); }
.cluster h3 { margin: 0 0 6px; font-size: 19px; }
.cluster > p { margin: 0 0 14px; font-size: 15px; color: var(--ink-3); }
.cluster ul { margin: 0; padding: 0; list-style: none; }
.cluster li { padding: 10px 0; border-top: 1px solid var(--ice-2); }
.cluster li a { font-weight: 600; font-size: 15.5px; }
.cluster li span { display: block; margin-top: 2px; font-size: 13.5px; color: var(--ink-3); }

.rel { margin-top: 34px; padding: 20px 24px; background: var(--ice); border-radius: var(--r); }
.rel h2 { margin: 0 0 10px; font-family: var(--mono); font-weight: 500; font-size: 11.5px;
  letter-spacing: .12em; text-transform: uppercase; color: var(--ink-3); }
.rel ul { display: flex; flex-wrap: wrap; gap: 8px 18px; margin: 0; padding: 0; list-style: none;
  font-size: 15.5px; }

/* ---------------- tables ---------------- */

.tw { overflow-x: auto; background: var(--white); border: 1px solid var(--line);
  border-radius: var(--r); }
table { width: 100%; border-collapse: collapse; font-size: 15.5px; min-width: 540px; }
caption { padding: 16px 18px 4px; text-align: left; font-size: 13.5px; color: var(--ink-3); }
th, td { padding: 12px 18px; text-align: left; border-bottom: 1px solid var(--ice-2); }
thead th { background: var(--ice); font-family: var(--mono); font-weight: 500; font-size: 11px;
  letter-spacing: .09em; text-transform: uppercase; color: var(--ink-3); }
tbody th { font-weight: 600; }
tbody tr:last-child th, tbody tr:last-child td { border-bottom: none; }
.n { font-family: var(--mono); font-size: 14.5px; color: var(--deep); }
.tnote { margin: 10px 0 0; font-size: 13.5px; color: var(--ink-3); }

/* ---------------- steps ---------------- */

.steps { counter-reset: s; list-style: none; margin: 0; padding: 0; }
.steps li { counter-increment: s; position: relative; padding: 0 0 22px 52px; }
.steps li::before { content: counter(s); position: absolute; left: 0; top: -2px;
  width: 34px; height: 34px; border-radius: 50%; display: grid; place-items: center;
  background: var(--deep); color: var(--white); font-family: var(--mono); font-size: 14px; }
.steps li::after { content: ""; position: absolute; left: 17px; top: 38px; bottom: 4px;
  width: 1px; background: var(--line); }
.steps li:last-child { padding-bottom: 0; }
.steps li:last-child::after { display: none; }
.steps h3 { margin: 4px 0 6px; font-size: 18px; }
.steps p { margin: 0; font-size: 16px; color: var(--ink-2); }

/* ---------------- CTA ---------------- */

.cta { display: flex; flex-wrap: wrap; align-items: center; gap: 24px; margin: 30px 0 0;
  padding: 24px 26px; border-radius: var(--r); background: var(--deep); color: #DDEEF7; }
.cta > div:first-child { flex: 1 1 280px; }
.cta h3 { margin: 0 0 5px; color: var(--white); font-size: 20px; }
.cta p { margin: 0; font-size: 15.5px; color: #B4D3E4; }
.cta__act { display: flex; flex-direction: column; gap: 9px; }
.cta__act .btn--line { background: transparent; border-color: rgba(255,255,255,.42); color: #fff; }
.cta__act .btn--line:hover { border-color: #fff; color: #fff; }
.cta__mic { margin: 0 !important; font-size: 12px !important; color: #8FB6CC !important; text-align: center; }

/* ---------------- operators ---------------- */

.ops { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 18px; }
.op { display: flex; flex-direction: column; padding: 22px; background: var(--white);
  border: 1px solid var(--line); border-radius: var(--r); }
.op__hd { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.op__pos { font-family: var(--display); font-weight: 700; font-size: 22px; color: var(--line-2); }
.op__best { font-family: var(--mono); font-size: 10.5px; letter-spacing: .08em;
  text-transform: uppercase; color: var(--white); background: var(--deep);
  border-radius: 999px; padding: 5px 11px; }
.op__name { margin: 14px 0 4px; font-size: 21px; }
.op__deal { margin: 0 0 16px; font-weight: 700; font-size: 15.5px; color: var(--wood-2); }
.op__spec { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 14px; margin: 0 0 16px;
  padding: 14px 0; border-top: 1px solid var(--ice-2); border-bottom: 1px solid var(--ice-2); }
.op__spec dt { font-family: var(--mono); font-size: 10px; letter-spacing: .08em;
  text-transform: uppercase; color: var(--ink-3); }
.op__spec dd { margin: 3px 0 0; font-size: 14.5px; font-weight: 700; }
.op__pts { margin: 0 0 18px; padding-left: 18px; font-size: 14.5px; color: var(--ink-2); }
.op__pts li { margin-bottom: 6px; }
.op .btn { margin-top: auto; }
.op__terms { margin: 10px 0 0; font-size: 11.5px; color: var(--ink-3); text-align: center; }

/* ---------------- rail ---------------- */

.rail { position: sticky; top: 18px; display: grid; gap: 18px; }
.rail__card { padding: 20px; background: var(--white); border: 1px solid var(--line);
  border-top: 3px solid var(--go); border-radius: var(--r); }
.rail__k { margin: 0 0 8px; font-family: var(--mono); font-size: 10.5px; letter-spacing: .1em;
  text-transform: uppercase; color: var(--ink-3); }
.rail__card h2 { margin: 0 0 5px; font-size: 19px; }
.rail__deal { margin: 0 0 14px; font-weight: 700; font-size: 15px; color: var(--wood-2); }
.rail__l { margin: 0 0 16px; padding: 0; list-style: none; font-size: 14.5px; color: var(--ink-2); }
.rail__l li { padding: 7px 0; border-top: 1px solid var(--ice-2); }
.rail__t { margin: 10px 0 0; font-size: 11.5px; color: var(--ink-3); text-align: center; }
.rail__box { padding: 18px 20px; background: var(--ice); border-radius: var(--r); font-size: 14.5px;
  color: var(--ink-2); }
.rail__box h2 { margin: 0 0 8px; font-family: var(--mono); font-weight: 500; font-size: 10.5px;
  letter-spacing: .12em; text-transform: uppercase; color: var(--ink-3); }
.rail__box ul { margin: 0; padding-left: 18px; }
.rail__box li { margin-bottom: 6px; }
@media (max-width: 1060px) { .rail { position: static; } }

/* ---------------- calculator ---------------- */

.calc { background: var(--white); border: 1px solid var(--line); border-radius: var(--r);
  overflow: hidden; }
.calc__hd { padding: 18px 22px; background: var(--ice); border-bottom: 1px solid var(--line); }
.calc__hd h3 { margin: 0 0 3px; }
.calc__hd p { margin: 0; font-size: 14.5px; color: var(--ink-3); }
.calc__bd { padding: 22px; }
.f { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 16px; }
.f label { display: block; margin-bottom: 6px; font-size: 13.5px; font-weight: 700; color: var(--ink-2); }
.f input, .f select { width: 100%; padding: 10px 12px; border-radius: var(--r);
  border: 1px solid var(--line-2); background: var(--white); color: var(--ink);
  font-family: var(--mono); font-size: 15px; }
.f input:focus, .f select:focus { outline: none; border-color: var(--aqua); }
.out { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 1px;
  margin: 20px 0 0; background: var(--line); border: 1px solid var(--line);
  border-radius: var(--r); overflow: hidden; }
.out > div { background: var(--white); padding: 15px 18px; }
.out dt { font-family: var(--mono); font-size: 10.5px; letter-spacing: .1em;
  text-transform: uppercase; color: var(--ink-3); }
.out dd { margin: 5px 0 0; font-family: var(--display); font-weight: 700; font-size: 25px;
  line-height: 1; letter-spacing: -.02em; color: var(--deep); }

/* ---------------- FAQ ---------------- */

.faq details { background: var(--white); border: 1px solid var(--line);
  border-radius: var(--r); margin-bottom: 10px; }
.faq summary { cursor: pointer; list-style: none; position: relative; padding: 15px 48px 15px 20px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary h3 { display: inline; margin: 0; font-size: 17px; font-weight: 600; }
.faq summary::after { content: "+"; position: absolute; right: 20px; top: 13px;
  font-family: var(--mono); font-size: 20px; color: var(--orange); }
.faq details[open] summary::after { content: "–"; }
.faq details > div { padding: 0 20px 18px; font-size: 16px; color: var(--ink-2); }

/* ---------------- glossary ---------------- */

.gloss { margin: 0; }
.gloss > div { padding: 16px 0; border-bottom: 1px solid var(--ice-2); }
.gloss dt { font-family: var(--display); font-weight: 600; font-size: 17px; color: var(--ink); }
.gloss dd { margin: 5px 0 0; font-size: 16px; color: var(--ink-2); }

/* ---------------- misc ---------------- */

.note { display: block; margin: 22px 0; padding: 15px 20px; border-radius: var(--r);
  background: var(--white); border: 1px solid var(--line); border-left: 4px solid var(--aqua);
  font-size: 15.5px; color: var(--ink-2); }
.note.warn { border-left-color: var(--orange); }

.disc { margin: 0 0 20px; padding: 11px 16px; border-radius: var(--r); background: var(--ice);
  border: 1px solid var(--line); font-size: 13px; color: var(--ink-3); }

.byline { display: flex; flex-wrap: wrap; gap: 6px 16px; margin: 0 0 20px;
  font-size: 13.5px; color: var(--ink-3); }
.byline a { color: var(--ink-3); }

.prose { color: var(--ink-2); }
.prose h2 { margin: 1.6em 0 .45em; color: var(--ink); }
.prose h3 { margin: 1.5em 0 .4em; color: var(--ink); }
.prose > :first-child { margin-top: 0; }
.prose ul, .prose ol { padding-left: 22px; }
.prose li { margin-bottom: 8px; }

.skip { position: absolute; left: -9999px; background: var(--go); color: var(--go-ink);
  padding: 10px 16px; font-weight: 700; }
.skip:focus { left: 0; top: 0; z-index: 100; }

.dock { display: none; position: fixed; left: 0; right: 0; bottom: 0; z-index: 70; gap: 10px;
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  background: var(--white); border-top: 1px solid var(--line-2);
  box-shadow: 0 -3px 14px rgba(10,34,51,.1); }
.dock .btn { flex: 1; min-height: 46px; font-size: 15px; }
@media (max-width: 800px) { .dock { display: flex; } body { padding-bottom: 76px; } }

/* ---------------- footer ---------------- */

.foot { margin-top: 40px; padding: 42px 0 30px; background: var(--deep-2); color: #A9C9DA; }
.foot a { color: #A9C9DA; text-decoration: none; }
.foot a:hover { color: var(--white); text-decoration: underline; }
.foot__g { display: grid; grid-template-columns: 1.7fr 1fr 1fr 1fr; gap: 32px; }
.foot h2 { margin: 0 0 12px; font-family: var(--mono); font-weight: 500; font-size: 10.5px;
  letter-spacing: .12em; text-transform: uppercase; color: #7BA3BA; }
.foot ul { margin: 0; padding: 0; list-style: none; font-size: 14.5px; }
.foot li { margin-bottom: 8px; }
.foot .logo { margin-bottom: 12px; }
.foot p { font-size: 14px; line-height: 1.6; }
.foot__l { display: flex; flex-wrap: wrap; align-items: center; gap: 16px; margin-top: 30px;
  padding-top: 20px; border-top: 1px solid rgba(255,255,255,.13);
  font-size: 12.5px; line-height: 1.55; color: #85AAC0; }
.plus { flex: 0 0 auto; display: grid; place-items: center; width: 40px; height: 40px;
  border-radius: 50%; border: 2px solid var(--go); color: var(--go);
  font-family: var(--display); font-weight: 700; font-size: 13px; }
@media (max-width: 900px) { .foot__g { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .foot__g { grid-template-columns: 1fr; gap: 24px; } }
