/* ==========================================================================
   Ice Fishing Live — theme
   Palette, type and components follow the supplied design direction:
   deep navy ice water, gold actions, hexagon ice slabs, Archivo Black wordmark.
   ========================================================================== */

:root {
  /* water */
  --deep:    #041F38;
  --shelf:   #062942;
  --card-1:  #0B3557;
  --card-2:  #072B47;
  --card-3:  #08304E;
  --edge:    rgba(190, 226, 248, .16);
  --edge-2:  rgba(190, 226, 248, .30);
  --edge-3:  rgba(190, 226, 248, .45);

  /* light */
  --text:    #EAF6FF;
  --soft:    #D3E9F8;
  --body-c:  #B5D3E8;
  --muted:   #9FC6E2;
  --label:   #91BBD8;
  --chip-c:  #DCEFFC;

  /* ice */
  --ice-1:   #F1FAFF;
  --ice-4:   #2E86C4;
  --ice-5:   #14568C;
  --link:    #7FD3F7;

  /* gold — actions only */
  --gold-1:  #FFD873;
  --gold-2:  #E8A21C;
  --gold-ink:#3A2503;

  /* bet routes */
  --leaf:    #3FA184;
  --blue:    #7FD3F7;
  --orange:  #FFD873;
  --red:     #D9432E;

  --display: "Archivo Black", Helvetica, Arial, sans-serif;
  --body:    "Familjen Grotesk", Helvetica, Arial, sans-serif;
  --mono:    "IBM Plex Mono", ui-monospace, SFMono-Regular, monospace;

  --wrap: 1240px;
  --pad: clamp(18px, 4vw, 56px);
  --r: 18px;
  --r-sm: 12px;
}

*, *::before, *::after { box-sizing: border-box; }

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

body {
  margin: 0;
  background: var(--deep);
  color: var(--text);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.55;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 var(--pad); }

a { color: var(--link); text-decoration: none; }
a:hover { color: #fff; }
::selection { background: #1E6FA8; color: #fff; }
:focus-visible { outline: 2px solid var(--link); outline-offset: 3px; border-radius: 4px; }
img { max-width: 100%; height: auto; }

@keyframes bob  { 0%,100% { transform: translateX(-50%) translateY(0) rotate(-18deg); }
                  50%     { transform: translateX(-50%) translateY(-10px) rotate(-15deg); } }
@keyframes bobb { 0%,100% { transform: translateX(-50%) translateY(0) scaleX(-1) rotate(-18deg); }
                  50%     { transform: translateX(-50%) translateY(9px) scaleX(-1) rotate(-21deg); } }

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

h1, h2, h3 { margin: 0 0 .5em; text-wrap: balance; }

h1, h2 {
  font-family: var(--display); font-weight: 400; text-transform: uppercase;
  line-height: .95; letter-spacing: -.01em;
}
h1 { font-size: clamp(30px, 5.4vw, 56px); }
h2 { font-size: clamp(28px, 4.4vw, 48px); }
h3 { font-family: var(--body); font-weight: 700; font-size: 21px; line-height: 1.25; letter-spacing: 0; }
h4 { font-family: var(--body); font-weight: 700; font-size: 17px; margin: 0 0 .4em; }

p { margin: 0 0 1.05em; }
p:last-child { margin-bottom: 0; }

.lede { font-size: clamp(18px, 2.2vw, 23px); line-height: 1.45; color: var(--soft); text-wrap: pretty; }

.eyebrow {
  display: block; margin: 0 0 14px; font-family: var(--mono); font-weight: 500;
  font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: var(--link);
}
.strata__tag {
  display: flex; align-items: center; gap: 14px; margin: 0 0 26px;
  font-family: var(--mono); font-weight: 500; font-size: 11px;
  letter-spacing: .2em; text-transform: uppercase; color: var(--label);
}
.strata__tag::after { content: ""; flex: 1; height: 1px; background: var(--edge); }

.note { font-size: 15px; line-height: 1.55; color: var(--muted); }
strong { color: #fff; font-weight: 700; }

/* ---------------- header ---------------- */

.masthead {
  position: sticky; top: 0; z-index: 60;
  background: rgba(4, 31, 56, .88); backdrop-filter: saturate(150%) blur(14px);
  border-bottom: 1px solid var(--edge);
}
.masthead__in { display: flex; align-items: center; gap: 24px; height: 68px; }

.brand { display: flex; align-items: center; gap: 12px; }
.brand:hover { color: inherit; }
.brand__mark {
  position: relative; display: inline-flex; align-items: center; justify-content: center;
  width: 34px; height: 31px; flex: 0 0 auto;
  clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
  background: linear-gradient(165deg, var(--ice-1), #5AA9DC);
}
.brand__mark::after {
  content: ""; width: 22px; height: 20px;
  clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
  background: radial-gradient(circle at 50% 62%, #0B3A5F, var(--ice-4));
}
.brand__name {
  font-family: var(--mono); font-weight: 500; font-size: 11px;
  letter-spacing: .24em; text-transform: uppercase; color: #C9E3F5; white-space: nowrap;
}

.nav { display: flex; align-items: center; gap: clamp(14px, 2.6vw, 30px); margin-left: auto; }
.nav a { color: #C9E3F5; font-size: 15px; }
.nav a[aria-current="page"] { color: #fff; }

.navtoggle {
  display: none; margin-left: auto; cursor: pointer;
  background: rgba(255,255,255,.07); border: 1px solid var(--edge-2); color: var(--text);
  border-radius: 999px; padding: 9px 16px; font: 700 14px/1 var(--body);
}

@media (max-width: 960px) {
  .nav {
    display: none; position: absolute; top: 68px; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    padding: 6px var(--pad) 16px; background: var(--shelf); border-bottom: 1px solid var(--edge);
  }
  .nav.is-open { display: flex; }
  .nav a { padding: 13px 0; border-bottom: 1px solid var(--edge); }
  .masthead .btn--sm { display: none; }
  .navtoggle { display: block; }
}

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

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  height: 56px; padding: 0 30px; border-radius: 999px; max-width: 100%;
  font-family: var(--body); font-weight: 700; font-size: 17px;
  border: 1px solid transparent; cursor: pointer; text-align: center;
  transition: filter .16s ease, border-color .16s ease, background .16s ease;
}
.btn--go {
  background: linear-gradient(180deg, var(--gold-1), var(--gold-2));
  color: var(--gold-ink); box-shadow: 0 10px 26px rgba(226, 154, 18, .4);
}
.btn--go:hover { filter: brightness(1.08); color: var(--gold-ink); }
.btn--ghost { border-color: var(--edge-3); background: rgba(255,255,255,.07); color: var(--text); }
.btn--ghost:hover { border-color: var(--link); color: #fff; }
.btn--sm { height: 40px; padding: 0 20px; font-size: 14px; }
.btn--block { width: 100%; }
.btnrow { display: flex; flex-wrap: wrap; gap: 12px; }

/* ---------------- sections ---------------- */

.strata { padding: clamp(48px, 7vw, 92px) 0; }
.strata + .strata { padding-top: 0; }

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

.hero {
  position: relative; overflow: hidden;
  padding: clamp(24px, 4vw, 40px) 0 clamp(48px, 7vw, 96px);
  background: radial-gradient(120% 90% at 50% 0%,
              var(--ice-4) 0%, var(--ice-5) 42%, #072D4E 78%, var(--deep) 100%);
}
.hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: repeating-linear-gradient(90deg, rgba(255,255,255,.055) 0 2px, transparent 2px 26px);
  mask-image: radial-gradient(60% 70% at 50% 20%, #000 0%, transparent 75%);
  -webkit-mask-image: radial-gradient(60% 70% at 50% 20%, #000 0%, transparent 75%);
}
.hero > .wrap { position: relative; z-index: 1; }
.hero__grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: clamp(24px, 5vw, 56px); align-items: center;
}
.hero__copy { display: flex; flex-direction: column; gap: 24px; }
.hero .lede { max-width: 30em; }
.hero--plain { padding-bottom: clamp(30px, 4vw, 52px); }
.hero--plain h1 { max-width: 15em; }

/* layered wordmark */
.wordmark {
  position: relative; margin: 0; padding: clamp(90px, 14vw, 152px) 0 8px;
  font-family: var(--display); text-transform: uppercase; line-height: .86;
  max-width: 480px;
}
.wordmark .wm-sm, .wordmark .wm-lg { display: block; position: relative; z-index: 1; }
.wordmark .wm-sm { font-size: clamp(22px, 3.6vw, 54px); letter-spacing: .3em; }
.wordmark .wm-lg { font-size: clamp(40px, 6.8vw, 104px); letter-spacing: -.03em; }
.wordmark .wm-ink {
  background-image: linear-gradient(180deg, #FFFFFF 4%, #E6F5FF 30%, #7CC4EE 50%, #2C81C0 64%, #EAF7FF 98%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  filter: drop-shadow(0 3px 0 #08324F) drop-shadow(0 7px 0 #08324F)
          drop-shadow(0 11px 0 #051F33) drop-shadow(0 18px 26px rgba(3, 20, 35, .65));
}
.wordmark .wm-tail {
  display: block; margin-top: 18px; position: relative; z-index: 1;
  font-family: var(--body); font-weight: 700; text-transform: none;
  font-size: clamp(17px, 2vw, 22px); letter-spacing: 0; line-height: 1.3; color: var(--soft);
}

.slab { position: absolute; left: 50%; z-index: 0; pointer-events: none;
  clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%); }
.slab--out {
  top: 0; width: clamp(168px, 27vw, 258px); aspect-ratio: 1 / .92;
  transform: translateX(-50%) rotate(-4deg);
  background: linear-gradient(165deg, #F1FAFF 0%, #BEE4F9 38%, #5AA9DC 72%, #2A78B4 100%);
  box-shadow: 0 16px 34px rgba(3, 20, 35, .5);
}
.slab--in {
  top: clamp(10px, 1.7vw, 17px); width: clamp(134px, 21.6vw, 206px); aspect-ratio: 1 / .92;
  transform: translateX(-50%) rotate(-4deg);
  background: linear-gradient(180deg, #CDEBFC 0%, #7FC4EA 42%, #2E86C4 78%, #17558A 100%);
  box-shadow: inset 0 -10px 22px rgba(11, 58, 95, .45);
}
.fish { position: absolute; z-index: 0; pointer-events: none; height: auto;
  filter: drop-shadow(0 8px 12px rgba(3, 20, 35, .55)); }
.fish--red { top: clamp(0px, .5vw, 6px); left: 60%; width: clamp(92px, 17vw, 138px);
  transform: translateX(-50%) rotate(-18deg); animation: bob 6s ease-in-out infinite; }
.fish--blue { top: clamp(62px, 11vw, 128px); left: 70%; width: clamp(70px, 13vw, 104px);
  transform: translateX(-50%) scaleX(-1) rotate(-18deg); animation: bobb 7.5s ease-in-out infinite; }

.livetag { display: flex; align-items: center; gap: 10px; margin: 16px 0 0; }
.livetag b {
  display: inline-flex; align-items: center; height: 26px; padding: 0 12px; border-radius: 5px;
  background: linear-gradient(180deg, #FFFFFF, #C6E6FA); color: #08324F;
  font-family: var(--mono); font-size: 12px; font-weight: 500;
  letter-spacing: .28em; text-transform: uppercase;
}
.livetag i { flex: 1; height: 2px; background: linear-gradient(90deg, rgba(233,246,255,.55), rgba(233,246,255,0)); }

.trustline { display: flex; flex-wrap: wrap; gap: 10px; margin: 0; }
.trustline span {
  display: inline-flex; align-items: center; height: 34px; padding: 0 14px; border-radius: 8px;
  background: linear-gradient(180deg, rgba(255,255,255,.16), rgba(255,255,255,.04));
  border: 1px solid rgba(190, 226, 248, .28);
  font-family: var(--mono); font-size: 12px; letter-spacing: .14em;
  text-transform: uppercase; color: var(--chip-c);
}

/* ---------------- wheel ---------------- */

.wheelbox { position: relative; justify-self: center; width: min(430px, 86vw); }
.wheelbox::before {
  content: ""; position: absolute; inset: -6% -6% -10%; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,.22), rgba(255,255,255,0) 68%);
}
.wheel-svg { position: relative; display: block; width: 100%; height: auto; }
.wheel-rotor { transform-origin: 200px 200px; }
.wheel-caption, .wheel-legend {
  position: relative; font-family: var(--mono); font-size: 11px;
  letter-spacing: .1em; text-transform: uppercase; color: #C4DFF2;
}
.wheel-caption { margin: 14px 0 0; text-align: center; }
.wheel-legend { display: flex; flex-wrap: wrap; justify-content: center; gap: 6px 16px; margin: 10px 0 0; }
.wheel-legend b { color: #fff; font-weight: 700; }
.wheel-legend i { display: inline-block; width: 9px; height: 9px; border-radius: 2px; margin-right: 6px; }

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

.facts {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); margin: 0;
  background: var(--shelf);
  border-top: 1px solid rgba(190, 226, 248, .18);
  border-bottom: 1px solid rgba(190, 226, 248, .18);
}
.fact { display: flex; flex-direction: column; padding: 24px clamp(18px, 3vw, 40px);
  border-right: 1px solid rgba(190, 226, 248, .12); }
.fact:last-child { border-right: none; }
.fact dd { order: 1; margin: 0; font-family: var(--display); font-weight: 400;
  font-size: clamp(22px, 3vw, 32px); line-height: 1.05; color: #fff; }
.fact dt { order: 2; margin-top: 6px; font-family: var(--mono); font-size: 11px;
  letter-spacing: .18em; text-transform: uppercase; color: var(--label); }
.fact dd small { display: block; margin-top: 6px; font-family: var(--body);
  font-size: 14px; font-weight: 400; color: var(--muted); }

/* ---------------- cards ---------------- */

.panel { padding: 26px 24px 28px; border-radius: var(--r);
  background: linear-gradient(180deg, var(--card-1), var(--card-2)); border: 1px solid var(--edge); }

.grid { display: grid; gap: 18px; }
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); }
.grid--4 { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }

.route { padding: 24px; border-radius: var(--r);
  background: linear-gradient(180deg, var(--card-1), var(--card-2));
  border: 1px solid var(--edge); border-top: 3px solid var(--c, var(--edge-2)); }
.route h3 { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; margin: 0; }
.route h3 em { font-family: var(--mono); font-style: normal; font-size: 11px; font-weight: 500;
  letter-spacing: .16em; text-transform: uppercase; color: var(--c); white-space: nowrap; }
.route__num { margin: 14px 0 0; font-family: var(--display);
  font-size: clamp(24px, 2.8vw, 32px); line-height: 1.05; color: var(--c); }
.route__num small { display: block; margin-top: 7px; font-family: var(--mono);
  font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--label); }
.route dl { display: grid; grid-template-columns: auto 1fr; gap: 6px 14px; margin: 16px 0 0; font-size: 15px; }
.route dt { padding-top: 3px; font-family: var(--mono); font-size: 11px;
  letter-spacing: .12em; text-transform: uppercase; color: var(--label); }
.route dd { margin: 0; color: var(--text); font-weight: 700; }
.route .note { margin-top: 12px; }

.c-leaf { --c: var(--leaf); } .c-blue { --c: var(--blue); }
.c-orange { --c: var(--orange); } .c-red { --c: var(--red); }

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

.tablewrap { overflow-x: auto; border: 1px solid var(--edge); border-radius: var(--r); background: var(--card-3); }
table { width: 100%; border-collapse: collapse; font-size: 15px; min-width: 560px; }
caption { padding: 18px 20px 0; text-align: left; color: var(--muted); font-size: 14px; }
th, td { padding: 14px 20px; text-align: left; border-bottom: 1px solid var(--edge); }
thead th { background: rgba(255,255,255,.04); font-family: var(--mono); font-weight: 500;
  font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--label); }
tbody tr:last-child td { border-bottom: none; }
td b, th b { color: #fff; }
.num { font-family: var(--mono); font-size: 14px; font-weight: 500; color: var(--text); }

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

.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 18px; margin: 0; padding: 0; list-style: none; counter-reset: s; }
.steps li { counter-increment: s; padding: 26px 24px 28px; border-radius: var(--r);
  background: linear-gradient(180deg, var(--card-1), var(--card-2)); border: 1px solid var(--edge); }
.steps li::before { content: counter(s, decimal-leading-zero); display: block;
  font-family: var(--mono); font-weight: 500; font-size: 12px; letter-spacing: .2em; color: var(--link); }
.steps h4 { margin: 14px 0 10px; font-size: 21px; }
.steps p { margin: 0; font-size: 15px; line-height: 1.55; color: var(--body-c); text-wrap: pretty; }

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

.band { display: flex; flex-wrap: wrap; align-items: center; gap: 26px;
  margin: 34px 0 0; padding: 28px clamp(22px, 3vw, 34px); border-radius: 20px;
  background: linear-gradient(180deg, #0D3E63, #082F4D); border: 1px solid var(--edge-2); }
.band__txt { flex: 1 1 300px; }
.band h3 { margin: 0 0 6px; font-size: clamp(20px, 2.4vw, 26px); }
.band p { margin: 0; font-size: 15px; color: var(--muted); }
.band .btnrow { flex: 0 1 auto; min-width: 0; }
@media (max-width: 640px) { .band .btnrow, .band .btnrow .btn { flex: 1 1 100%; } }

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

.op { position: relative; display: grid; grid-template-columns: 210px 1fr 220px;
  gap: 24px; align-items: center; margin-bottom: 16px; padding: 26px 24px;
  border-radius: 20px; background: var(--card-3); border: 1px solid var(--edge); }
.op__rank { position: absolute; top: 0; left: 0; padding: 6px 14px; border-radius: 20px 0 12px 0;
  background: linear-gradient(180deg, var(--gold-1), var(--gold-2)); color: var(--gold-ink);
  font-family: var(--mono); font-weight: 500; font-size: 11px; letter-spacing: .12em; }
.op__id { padding-top: 14px; }
.op__name { font-family: var(--display); font-size: 22px; text-transform: uppercase; line-height: 1.1; }
.op__offer { margin-top: 6px; color: var(--gold-1); font-weight: 700; font-size: 15px; }
.op__meta { margin-top: 8px; font-family: var(--mono); font-size: 11px;
  letter-spacing: .12em; text-transform: uppercase; color: var(--label); }
.op ul { margin: 0; padding-left: 18px; font-size: 15px; color: var(--body-c); }
.op ul li { margin-bottom: 6px; }
.op__act { display: grid; gap: 10px; }
.op__act .btn { height: 48px; font-size: 15px; }
.op__terms { margin: 2px 0 0; font-size: 12px; text-align: center; color: var(--label); }
@media (max-width: 900px) { .op { grid-template-columns: 1fr; gap: 18px; padding-top: 42px; } }

/* ---------------- verdict ---------------- */

.verdict { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 18px; }
.verdict > div { padding: 26px 24px; border-radius: var(--r); background: var(--card-3); border: 1px solid var(--edge); }
.verdict h3 { margin: 0 0 14px; }
.verdict ul { list-style: none; margin: 0; padding: 0; font-size: 15px; }
.verdict li { position: relative; margin-bottom: 11px; padding-left: 26px; color: var(--body-c); line-height: 1.5; }
.verdict li::before { position: absolute; left: 0; top: 0; font-family: var(--mono); font-size: 16px; font-weight: 500; }
.verdict--up { border-top: 3px solid var(--link) !important; }
.verdict--up li::before { content: "+"; color: var(--link); }
.verdict--down { border-top: 3px solid var(--gold-2) !important; }
.verdict--down li::before { content: "–"; color: var(--gold-1); }

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

.faq { border-top: 1px solid var(--edge-2); }
.faq details { border-bottom: 1px solid var(--edge-2); }
.faq summary { position: relative; cursor: pointer; list-style: none;
  padding: 22px 44px 22px 0; font-size: clamp(17px, 2vw, 20px); color: var(--text); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { color: var(--link); }
.faq summary::after { content: "+"; position: absolute; right: 6px; top: 21px;
  font-family: var(--mono); font-size: 18px; color: var(--gold-1); }
.faq details[open] summary::after { content: "–"; }
.faq .faq__a { max-width: 44em; padding: 0 0 24px; font-size: 16px; line-height: 1.6;
  color: var(--body-c); text-wrap: pretty; }

/* ---------------- TOC ---------------- */

.toc { margin-top: 26px; padding: 22px 24px; border-radius: var(--r);
  background: var(--card-3); border: 1px solid var(--edge); }
.toc h2 { margin: 0 0 12px; font-family: var(--mono); font-weight: 500; font-size: 11px;
  letter-spacing: .2em; text-transform: uppercase; color: var(--label); }
.toc ol { margin: 0; padding-left: 20px; columns: 2; column-gap: 36px; font-size: 15px; }
.toc li { margin-bottom: 7px; break-inside: avoid; }
.toc a { color: var(--body-c); }
@media (max-width: 620px) { .toc ol { columns: 1; } }

/* ---------------- simulator / planner ---------------- */

.sim { display: grid; grid-template-columns: minmax(0, 1fr) 350px; gap: 20px; align-items: start; }
@media (max-width: 940px) { .sim { grid-template-columns: minmax(0, 1fr); } }

.sim__stage { padding: 26px 24px; border-radius: 20px; background: var(--card-3); border: 1px solid var(--edge); }
.sim > * { min-width: 0; }
.sim__stage .wheelbox { width: 100%; max-width: 430px; margin: 0 auto; }
.sim__result { display: grid; place-items: center; min-height: 96px; margin-top: 18px; padding: 16px;
  text-align: center; border: 1px dashed var(--edge-2); border-radius: var(--r-sm); }
.sim__hit { margin: 0; font-family: var(--display); font-size: clamp(19px, 2.5vw, 26px); text-transform: uppercase; }
.sim__pay { margin: 8px 0 0; font-family: var(--mono); font-size: 13px; line-height: 1.5; color: var(--muted); }

.betrow { display: grid; grid-template-columns: 1fr 84px; gap: 10px; align-items: center; margin-bottom: 10px; }
.betrow label { display: flex; align-items: center; gap: 9px; font-size: 15px; font-weight: 700; }
.betrow label i { width: 10px; height: 10px; border-radius: 2px; flex: 0 0 auto; }
.betrow input { width: 100%; padding: 9px 11px; border-radius: 8px;
  background: rgba(4, 31, 56, .7); border: 1px solid var(--edge-2); color: var(--text);
  font-family: var(--mono); font-size: 14px; }
.betrow input:focus { border-color: var(--link); outline: none; }

.readout { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; margin: 16px 0 0;
  background: var(--edge); border: 1px solid var(--edge); border-radius: var(--r-sm); overflow: hidden; }
.readout > div { background: var(--card-2); padding: 14px 15px; }
.readout dt { font-family: var(--mono); font-size: 10px; letter-spacing: .16em;
  text-transform: uppercase; color: var(--label); }
.readout dd { margin: 5px 0 0; font-family: var(--display); font-size: 22px; line-height: 1; color: #fff; }

.tape { display: flex; flex-wrap: wrap; gap: 5px; margin: 14px 0 0; padding: 0; list-style: none; }
.tape li { width: 20px; height: 20px; border-radius: 4px; background: rgba(190, 226, 248, .14); }

.plan__row { margin-bottom: 18px; }
.plan__row label { display: flex; align-items: center; justify-content: space-between; gap: 10px;
  margin-bottom: 8px; font-size: 15px; font-weight: 700; }
.plan__row label span { font-family: var(--mono); font-size: 13px; font-weight: 500; color: var(--gold-1); }
input[type=range] { width: 100%; accent-color: var(--gold-1); }

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

.callout { margin: 26px 0; padding: 18px 22px; border-radius: 0 var(--r-sm) var(--r-sm) 0;
  border-left: 3px solid var(--link); background: rgba(127, 211, 247, .08);
  font-size: 16px; line-height: 1.55; color: var(--soft); }
.callout--warn { border-left-color: var(--gold-2); background: rgba(255, 216, 115, .09); }

.disclosure { margin: 0 0 22px; padding: 12px 18px; border-radius: var(--r-sm);
  border: 1px solid var(--edge); background: rgba(255,255,255,.03);
  font-size: 13px; color: var(--label); }

.crumbs { margin: 0; padding: 18px 0 0; font-family: var(--mono); font-size: 11px;
  letter-spacing: .12em; text-transform: uppercase; color: var(--label); }
.crumbs a { color: var(--label); }
.crumbs a:hover { color: var(--link); }

.prose { color: var(--body-c); font-size: 16.5px; line-height: 1.62; }
.prose h2 { margin: 1.9em 0 .5em; color: var(--text); }
.prose h3 { margin: 1.7em 0 .5em; color: var(--text); }
.prose > :first-child { margin-top: 0; }
.prose ul, .prose ol { padding-left: 22px; }
.prose li { margin-bottom: 8px; }

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

/* ---------------- sticky mobile CTA ---------------- */

.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: rgba(6, 41, 66, .96); backdrop-filter: blur(12px); border-top: 1px solid var(--edge-2); }
.dock .btn { flex: 1; height: 48px; padding: 0 14px; font-size: 15px; }
@media (max-width: 800px) { .dock { display: flex; } body { padding-bottom: 78px; } }

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

.foot { margin-top: clamp(40px, 6vw, 72px); padding: clamp(32px, 5vw, 56px) 0;
  background: var(--shelf); border-top: 1px solid rgba(190, 226, 248, .18); }
.foot__grid { display: grid; grid-template-columns: 1.7fr 1fr 1fr 1.3fr; gap: 36px; }
.foot h4 { margin: 0 0 14px; font-family: var(--mono); font-weight: 500; font-size: 11px;
  letter-spacing: .18em; text-transform: uppercase; color: var(--label); }
.foot ul { list-style: none; margin: 0; padding: 0; font-size: 15px; }
.foot li { margin-bottom: 9px; }
.foot a { color: var(--muted); }
.foot .brand { margin-bottom: 14px; }
.foot__legal { display: flex; flex-wrap: wrap; align-items: center; gap: 18px;
  margin-top: 34px; padding-top: 24px; border-top: 1px solid var(--edge);
  font-size: 13px; line-height: 1.55; color: var(--label); }
.age { flex: 0 0 auto; display: grid; place-items: center; width: 42px; height: 42px;
  border-radius: 50%; border: 2px solid var(--gold-2); color: var(--gold-1);
  font-family: var(--display); font-size: 13px; }
.rg-links { display: flex; flex-wrap: wrap; gap: 8px 18px; margin: 0;
  font-family: var(--mono); font-size: 11px; letter-spacing: .1em; text-transform: uppercase; }
@media (max-width: 900px) { .foot__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .foot__grid { grid-template-columns: 1fr; gap: 28px; } }
