/* =========================
   FIX: ostrzejsze miniatury jezior
   - mniej przyciemnienia na kółkach
   - bez dodatkowego "mydlenia"
   ========================= */

/* (Roundo opcjonalnie) */
@font-face{
  font-family: "Roundo";
  src: url("../fonts/Roundo-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face{
  font-family: "Roundo";
  src: url("../fonts/Roundo-Semibold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

:root{
  --bg:#07111a;
  --bg-soft:#0d1a24;
  --surface-1:rgba(214,231,242,.03);
  --surface-2:rgba(214,231,242,.055);
  --surface-3:rgba(214,231,242,.09);
  --text:rgba(236,245,250,.96);
  --muted:rgba(188,206,219,.76);
  --muted2:rgba(143,167,182,.58);
  --accent:#0f7b68;
  --accent-strong:#18a08b;
  --accent-soft:rgba(24,160,139,.16);
  --info:#7fb3d8;
  --info-soft:rgba(127,179,216,.14);
  --gold:#8fa3b5;
  --gold-soft:rgba(143,163,181,.14);
  --success:#3ed39f;
  --warning:#d6a24f;
  --danger:#d16a6a;
  --ring:rgba(62,211,159,.34);
  --shadow:0 22px 56px rgba(0,0,0,.45);
  --radius:18px;
}

*{box-sizing:border-box}
html{min-height:100%; overflow-x:clip;}
body{min-height:100%; overflow-x:clip;}
img,canvas{max-width:100%;}
body{
  margin:0;
  font-family:"Roundo", ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial;
  background:
    radial-gradient(1400px 640px at 50% -10%, rgba(127,179,216,.08), rgba(127,179,216,0) 55%),
    linear-gradient(to bottom, #040b11, var(--bg));
  color:var(--text);
}

.container{
  width:min(1120px, calc(100% - 40px));
  margin:0 auto;
}

/* HERO */
.hero{
  position:relative;
  min-height:100vh;
  display:flex;
  align-items:center;
  overflow:hidden;
}
.hero__bg{
  position:absolute; inset:0;
  background:url("../images/hero/hero-main-1920x1080.webp") center/cover no-repeat;
  background-position:center 42%;
  /* minimalnie mniejszy zoom = mniej artefaktów */
  transform:scale(1.03);
}
.hero__overlay{
  position:absolute; inset:0;
  background:
    linear-gradient(to bottom, rgba(4,9,14,.18), rgba(4,9,14,.80)),
    linear-gradient(110deg, rgba(4,9,14,.58), rgba(4,9,14,.10) 48%, rgba(127,179,216,.08) 100%);
}
.hero__content{ position:relative; padding:96px 0 88px; max-width:720px; }
.hero__badge{
  display:inline-block;
  padding:10px 14px;
  border:1px solid rgba(127,179,216,.28);
  border-radius:999px;
  color:var(--info);
  font-size:12px;
  letter-spacing:.16em;
  margin-bottom:14px;
}
.hero__title{ font-weight:600; margin:0 0 12px; font-size:56px; line-height:1.06; letter-spacing:.01em; }
.hero__desc{ margin:0; max-width:640px; color:rgba(211,226,236,.80); font-size:16px; line-height:1.7; }
.hero__actions{ margin-top:32px; display:flex; gap:14px; flex-wrap:wrap; }
.btn{ border:0; border-radius:999px; padding:12px 18px; font-weight:600; cursor:pointer; font-family:inherit; }
.btn--primary{
  background:linear-gradient(180deg, var(--accent-strong), var(--accent));
  color:#f4fbf8;
  padding:14px 28px;
  box-shadow:0 12px 26px rgba(45,107,87,.28);
}
.btn--ghost{
  background:rgba(127,179,216,.08);
  border:1px solid rgba(127,179,216,.24);
  backdrop-filter:blur(8px);
  -webkit-backdrop-filter:blur(8px);
  color:rgba(232,243,247,.92);
  transition:background .2s ease, border-color .2s ease;
}
.btn--ghost:hover{
  background:rgba(127,179,216,.14);
  border-color:rgba(127,179,216,.40);
}
.btn:hover{ filter:brightness(1.03); }
.btn:disabled{ cursor:default; filter:none; }
.hero__note{ margin-top:22px; color:var(--muted2); font-size:13px; }

/* Hero token box */
.hero__tokenBox{
  margin-top:26px;
  background:rgba(127,179,216,.05);
  border:1px solid rgba(127,179,216,.14);
  border-radius:16px;
  padding:16px 18px;
  max-width:580px;
}
.hero__tokenBox__label{ font-size:13px; font-weight:700; color:rgba(255,255,255,.80); margin-bottom:4px; }
.hero__tokenBox__desc{ margin:0 0 12px; font-size:13px; color:var(--muted2); line-height:1.5; }
.hero__tokenBox__row{ display:flex; gap:10px; }
.hero__tokenBox__input{
  flex:1;
  background:rgba(214,231,242,.05); border:1px solid rgba(127,179,216,.16);
  border-radius:10px; padding:11px 14px;
  color:var(--text); font-family:inherit; font-size:14px;
  outline:none; transition:border-color .15s;
}
.hero__tokenBox__input:focus{ border-color:rgba(62,211,159,.38); }
.hero__tokenBox__input::placeholder{ color:rgba(255,255,255,.25); }
.hero__tokenBox__btn{
  background:rgba(24,160,139,.14); border:1px solid rgba(62,211,159,.26);
  color:rgba(228,248,239,.94); border-radius:10px; padding:11px 20px; font-size:14px; white-space:nowrap;
}
.hero__tokenBox__btn:hover{ background:rgba(24,160,139,.24); }
.hero__tokenBox__err{ font-size:12px; color:#ff9999; margin-top:8px; display:none; }

/* Chart wrappers */
.chartCard__inner{ width:100%; overflow-x:auto; overflow-y:hidden; -webkit-overflow-scrolling:touch; position:relative; }
.chartCard__inner svg{ width:100%; height:auto; display:block; }

/* SECTIONS */
.section{ padding:88px 0; }

/* LAKES background */
.section--lakes{
  position:relative;
  padding:80px 0 100px;
  background:
    radial-gradient(1200px 500px at 50% 0%, rgba(127,179,216,.10), rgba(127,179,216,0) 60%),
    linear-gradient(to bottom, rgba(8,18,27,.96), rgba(7,17,26,.99));
  border-top:1px solid rgba(255,255,255,.06);
}

.lakeGrid{
  visibility:hidden;
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:32px;
  justify-items:center;
  align-items:start;
}
.lakeGrid--demo{
  display:flex;
  justify-content:center;
}

.lakeCard{
  background:transparent;
  border:1px solid transparent;
  padding:0;
  text-align:center;
  color:var(--text);
  cursor:pointer;
  font-family:inherit;
  transition:transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.lakeCard__circle{
  width:240px;
  height:240px;
  margin:0 auto;
  border-radius:999px;
  background-size:cover;
  background-position:center;
  position:relative;
  box-shadow:var(--shadow);
  outline:1px solid rgba(255,255,255,.08);
  transition: transform .2s ease, box-shadow .2s ease, outline .2s ease;
  /* mały trik: mniej rozmyć przy przekształceniach */
  transform: translateZ(0);
}

/* delikatniejsze przyciemnienie, żeby obraz był wyraźniejszy */
.lakeCard__circle::after{
  content:"";
  position:absolute; inset:0;
  border-radius:999px;
  background:linear-gradient(to bottom, rgba(0,0,0,.10), rgba(0,0,0,.34));
}

.lakeCard:hover .lakeCard__circle{
  transform: translateY(-4px) translateZ(0);
  outline:1px solid rgba(255,255,255,.14);
}

.lakeCard.is-active .lakeCard__circle{
  outline:2px solid var(--ring);
  box-shadow:
    0 18px 46px rgba(0,0,0,.45),
    0 0 0 12px rgba(62,211,159,.08);
}

.lakeCard.is-active{
  border-color:var(--success);
  box-shadow:
    0 0 0 2px rgba(62,211,159,.20),
    0 8px 24px rgba(0,0,0,.35);
  transform:translateY(-2px);
}
.lakeCard.is-active .lakeCard__name{ color:var(--success); }
.lakeCard.is-active .lakeCard__meta{ color:rgba(127,179,216,.74); }

.lakeCard__name{ margin-top:16px; font-weight:600; font-size:18px; }
.lakeCard__meta{ margin-top:6px; color:var(--muted2); font-size:13px; }

/* REPORT */
.section--report{
  padding-top:54px;
  background:linear-gradient(to bottom, rgba(13,26,36,.44), rgba(7,17,26,0) 220px);
}
.section__title{ margin:0; font-size:28px; font-weight:600; }
.section__sub{ margin:8px 0 0; color:var(--muted); }

.reportHead{
  position:sticky; top:0; z-index:100;
  display:flex; align-items:center; justify-content:space-between; gap:12px;
  padding:10px 0; margin-bottom:14px;
  background:#07111a;
  border-bottom:1px solid rgba(255,255,255,.06);
}
.reportHead__left{ flex:0 0 auto; }
.reportHead__back{
  background:none; border:none;
  color:rgba(255,255,255,.65); font-size:13px; cursor:pointer;
  padding:6px 10px; border-radius:6px; transition:background .15s;
  white-space:nowrap;
}
.reportHead__back:hover{ background:rgba(255,255,255,.08); color:#fff; }
.reportHead__center{ flex:1 1 auto; min-width:0; }
.reportHead__title{ font-size:15px; font-weight:600; color:#fff; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }
.reportHead__region{ font-size:12px; color:rgba(255,255,255,.45); margin-top:2px; }
.reportHead__freshness{ font-size:11px; color:rgba(255,255,255,.35); margin-top:2px; }
.reportHead__freshness--error{ color:#f59e0b; }
.reportHead__right{ display:flex; align-items:center; gap:8px; flex:0 0 auto; flex-wrap:wrap; justify-content:flex-end; }
.reportHead__action{ font-size:12px !important; padding:6px 12px !important; }
.reportHead__badge{
  display:inline-block; padding:3px 9px; border-radius:999px;
  font-size:10px; font-weight:700; letter-spacing:.07em;
  background:rgba(127,179,216,.14); color:var(--info); border:1px solid rgba(127,179,216,.28);
}

.pill{
  display:inline-block;
  padding:8px 12px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.16);
  color:rgba(255,255,255,.85);
  font-size:12px;
  letter-spacing:.06em;
}
.pill--muted{ color:rgba(255,255,255,.6); }

.reportBox{
  background:linear-gradient(180deg, var(--surface-2), var(--surface-1));
  border:1px solid rgba(127,179,216,.14);
  border-top:none;
  border-radius:0 0 var(--radius) var(--radius);
  min-height:420px;
  box-shadow:0 18px 46px rgba(0,0,0,.28);
  overflow:clip;
  max-width:100%;
}

/* SVG charts inside report – responsive by default */
.reportBox svg{
  width:100% !important;
  height:auto !important;
  display:block;
}

/* Table scroll wrapper — tabela zostaje table, wrapper przewija */
.tableWrap{
  overflow-x:auto;
  -webkit-overflow-scrolling:touch;
  max-width:100%;
  border-radius:16px;
  position:relative;
}
.tableWrap::after,
.chartCard__inner::after{
  content:"";
  position:absolute;
  top:0; right:0; bottom:0;
  width:40px;
  background:linear-gradient(to right, transparent, rgba(11,22,32,.85));
  pointer-events:none;
  border-radius:0 16px 16px 0;
}
.tableWrap table{
  width:100%;
  min-width:620px;
  border-collapse:separate;
  border-spacing:0;
  display:table; /* override any global display:block hacks */
}
.tableWrap--12h table{ min-width:680px; }
.tableWrap--8d  table{ min-width:720px; }
.emptyState{
  padding:34px;
  min-width:0;
  max-width:100%;
  overflow-wrap:anywhere;
}
.emptyState__title{ font-weight:600; font-size:18px; margin-bottom:6px; }
.emptyState__desc{ color:var(--muted); line-height:1.6; }

/* LAKE ERROR */
.lakeError{
  grid-column:1/-1;
  text-align:center;
  padding:32px 16px;
}
.lakeError__title{ font-weight:600; font-size:16px; margin-bottom:8px; }
.lakeError__desc{ font-size:14px; color:var(--muted); }

/* TOAST */
.tfToast{
  position:fixed;
  bottom:24px;
  left:50%;
  transform:translateX(-50%);
  background:rgba(46,94,78,.95);
  color:#fff;
  padding:10px 20px;
  border-radius:999px;
  font-size:13px;
  z-index:8999;
  pointer-events:none;
  box-shadow:0 4px 18px rgba(0,0,0,.3);
  animation:tfToastIn .2s ease both;
}
@keyframes tfToastIn{
  from{ opacity:0; transform:translateX(-50%) translateY(8px); }
  to  { opacity:1; transform:translateX(-50%) translateY(0); }
}

/* FOOTER */
.footer{ padding:28px 0 36px; border-top:1px solid rgba(255,255,255,.08); }
.footer__inner{ display:flex; justify-content:space-between; gap:12px; color:rgba(255,255,255,.78); font-size:13px; }
.footer__muted{ color:var(--muted2); }

/* SUMMARY CARDS */
.summaryCards{
  display:grid;
  grid-template-columns:repeat(5, 1fr);
  gap:12px;
  padding:24px;
}
.summaryCard{
  border-radius:14px;
  border:1px solid rgba(127,179,216,.14);
  padding:16px;
  text-align:center;
  background:var(--surface-2);
}
.summaryCard--green  { border-color:rgba(123,176,123,.18); }
.summaryCard--red    { border-color:rgba(187,120,105,.18); }
.summaryCard--yellow { border-color:rgba(208,161,95,.18); }
.summaryCard--neutral{ border-color:rgba(127,179,216,.14); }
.summaryCard--green  .summaryCard__value { color:var(--success); }
.summaryCard--yellow .summaryCard__value { color:var(--warning); }
.summaryCard--red    .summaryCard__value { color:var(--danger); }
.summaryCard__value{
  font-size:28px;
  font-weight:700;
  line-height:1.1;
}
.summaryCard__label{
  font-size:11px;
  color:var(--muted2);
  letter-spacing:.08em;
  text-transform:uppercase;
  margin-top:6px;
}
.summaryCard__sub{
  font-size:12px;
  color:var(--muted);
  margin-top:4px;
}

/* Klikalna karta alertów */
.summaryCard--clickable{
  cursor:pointer;
  transition:
    transform .2s ease,
    box-shadow .2s ease,
    border-color .2s ease;
}
.summaryCard--clickable:hover{
  transform:translateY(-3px);
  border-color:rgba(200,107,98,.45);
  box-shadow:
    0 0 0 2px rgba(200,107,98,.18),
    0 8px 24px rgba(0,0,0,.35);
}
.summaryCard--clickable:active{
  transform:translateY(-1px);
}
.summaryCard--clickable .summaryCard__sub{
  color:rgba(200,107,98,.78);
  font-size:11px;
  letter-spacing:.03em;
}

/* SECTION TABS
   Outer = sticky container (no overflow — fixes iOS sticky+overflow bug).
   Inner = flex + horizontal scroll. */
.sectionTabs{
  border:1px solid rgba(127,179,216,.12);
  border-bottom:none;
  border-radius:var(--radius) var(--radius) 0 0;
  position:sticky;
  /* 130px fallback matches measured mobile reportHead; desktop --rh-h
     is smaller and overrides via JS on initial load. */
  top:var(--rh-h, 130px);
  z-index:20;
  background:#0b1a28;
}
.sectionTabs__inner{
  display:flex;
  gap:0;
  padding:8px 24px 0;
  overflow-x:auto;
  scrollbar-width:none;
  -webkit-overflow-scrolling:touch;
}
.sectionTabs__inner::-webkit-scrollbar{ display:none; }
.sectionTab{
  background:none;
  border:none;
  border-bottom:3px solid transparent;
  padding:16px 20px;
  min-height:56px;
  color:var(--muted);
  font-family:inherit;
  font-size:14px;
  font-weight:500;
  cursor:pointer;
  white-space:nowrap;
  opacity:0.6;
  margin-bottom:-1px;
  transition:color .15s, border-color .15s, opacity .15s, background .15s;
}
.sectionTab__full{ display:inline; }
.sectionTab__short{ display:none; }
.sectionTab.is-active{
  color:var(--text);
  border-bottom-color:var(--success);
  background:rgba(62,211,159,.10);
  font-weight:600;
  opacity:1;
}
.sectionTab:hover{
  color:var(--text);
  opacity:0.85;
  background:rgba(127,179,216,.06);
}

/* nowGrid value truncation */
.nowGrid .valueLine{
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}

/* SECTION CONTENT */
.sectionContent{
  padding:24px;
  min-height:200px;
  overflow-x:hidden;
}
.sectionContent.is-animating{
  animation:fadeUp .22s ease both;
}
@keyframes fadeUp{
  from{ opacity:0; transform:translateY(8px); }
  to{ opacity:1; transform:translateY(0); }
}

/* FULL REPORT */
.fullReportWrap{
  padding:16px 0 24px;
  border-top:1px solid rgba(255,255,255,.08);
}
.fullReportWrap__title{
  font-size:13px;
  font-weight:600;
  letter-spacing:.06em;
  text-transform:uppercase;
  color:var(--muted);
  margin-bottom:14px;
}
.fullReportBtn{
  font-size:14px;
}
.fullReportBody{
  margin-top:16px;
  overflow:hidden;
}
.fullReportBody iframe{
  width:100%;
  border:0;
  min-height:600px;
  display:block;
}

/* ACCESS CARD (no-token state) */
.accessCard{ padding:40px 32px; max-width:480px; }
.accessCard__badge{
  display:inline-block; font-size:10px; font-weight:700; letter-spacing:.12em;
  color:var(--gold); border:1px solid rgba(200,169,107,.3);
  border-radius:999px; padding:4px 12px; margin-bottom:20px;
  text-transform:uppercase;
}
.accessCard__title{ font-size:20px; font-weight:600; line-height:1.5; margin-bottom:24px; }
.accessCard__row{ display:flex; gap:10px; margin-bottom:12px; }
.accessCard__input{
  flex:1;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.12);
  border-radius:10px;
  padding:12px 14px;
  color:var(--text);
  font-family:inherit;
  font-size:14px;
  outline:none;
  transition:border-color .15s;
}
.accessCard__input:focus{ border-color:rgba(200,169,107,.5); }
.accessCard__input::placeholder{ color:rgba(255,255,255,.25); }
.accessCard__demo{ font-size:13px; }
.lakeCard__meta--demo{ color:var(--gold); font-weight:600; letter-spacing:.08em; }

/* NO-TOKEN LANDING */
.noTokenLanding{
  grid-column:1 / -1;
  max-width:560px;
  width:100%;
  margin:0 auto;
  display:flex;
  flex-direction:column;
  gap:40px;
}
.howItWorks{ display:flex; flex-direction:column; gap:14px; }
.howItWorks__head{
  font-size:11px; font-weight:700; letter-spacing:.12em;
  text-transform:uppercase; color:var(--muted2); margin-bottom:4px;
}
.howItWorks__step{ display:flex; align-items:flex-start; gap:16px; }
.howItWorks__num{
  flex-shrink:0; width:28px; height:28px; border-radius:50%;
  background:rgba(200,169,107,.12); border:1px solid rgba(200,169,107,.3);
  color:var(--gold); font-size:13px; font-weight:700;
  display:flex; align-items:center; justify-content:center;
}
.howItWorks__text{ padding-top:4px; font-size:15px; line-height:1.5; }
.tokenRow{
  border-top:1px solid rgba(255,255,255,.08);
  padding-top:28px;
}
.tokenRow__label{ font-size:13px; color:var(--muted2); margin-bottom:12px; }
.tokenRow__row{ display:flex; gap:10px; }
.tokenRow__input{
  flex:1;
  background:rgba(255,255,255,.06); border:1px solid rgba(255,255,255,.12);
  border-radius:10px; padding:11px 14px;
  color:var(--text); font-family:inherit; font-size:14px;
  outline:none; transition:border-color .15s;
}
.tokenRow__input:focus{ border-color:rgba(200,169,107,.5); }
.tokenRow__input::placeholder{ color:rgba(255,255,255,.25); }
.noTokenLanding__demo{ font-size:13px; }

/* BENEFITS */
.benefits{ display:flex; flex-direction:column; gap:14px; }
.benefits__head{
  font-size:11px; font-weight:700; letter-spacing:.12em;
  text-transform:uppercase; color:rgba(255,255,255,.35);
}
.benefits__list{
  list-style:none; padding:0; margin:0;
  display:flex; flex-direction:column; gap:10px;
}
.benefits__list li{ display:flex; align-items:flex-start; gap:10px; font-size:15px; line-height:1.5; }
.benefits__list li::before{ content:"✔"; color:#4ac578; font-weight:700; flex-shrink:0; }

/* PRICING SECTION */
.pricingSection{
  border-top:1px solid rgba(127,179,216,.10);
  padding:32px 28px;
  display:flex; flex-direction:column; gap:20px;
  background:linear-gradient(180deg, rgba(127,179,216,.10), rgba(214,231,242,.04));
  border-radius:20px;
}
.pricingSection__head{ font-size:18px; font-weight:600; }
.pricingSection__sub{ font-size:13px; color:var(--muted); margin:0; line-height:1.5; }
.pricingSection__note{ font-size:12px; color:rgba(255,255,255,.3); text-align:center; margin:0; }
.pricingGrid{ display:flex; gap:14px; align-items:stretch; flex-wrap:wrap; }
.pricingCard{
  flex:1; min-width:220px;
  border-radius:16px; padding:24px 20px;
  display:flex; flex-direction:column; gap:14px; position:relative;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.pricingCard:hover{
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgba(0,0,0,.12);
}
.pricingCard--basic{
  background:rgba(214,231,242,.045); border:1px solid rgba(127,179,216,.14);
}
.pricingCard--featured{
  background:linear-gradient(180deg, rgba(24,160,139,.12), rgba(127,179,216,.05));
  border:2px solid rgba(62,211,159,.24);
  box-shadow:0 0 28px rgba(24,160,139,.08);
}
.pricingCard__badge{
  display:inline-block; font-size:10px; font-weight:700; letter-spacing:.1em;
  text-transform:uppercase; background:rgba(127,179,216,.14); color:var(--info);
  border-radius:20px; padding:4px 10px; align-self:flex-start;
}
.pricingCard__name{ font-size:20px; font-weight:700; }
.pricingCard__price{ font-size:36px; font-weight:700; color:var(--gold); }
.pricingCard__price span{ font-size:14px; font-weight:400; color:var(--muted); }
.pricingCard__desc{ font-size:13px; color:var(--muted); margin:0; line-height:1.5; }
.pricingCard__features{
  list-style:none; padding:0; margin:0;
  display:flex; flex-direction:column; gap:8px; flex:1;
}
.pricingCard__features li{ display:flex; align-items:center; gap:10px; font-size:13px; }
.pricingCard__features li::before{ content:"✔"; color:#4ac578; font-weight:700; flex-shrink:0; }
.pricingCard__cta{ width:100%; margin-top:auto; text-decoration:none; text-align:center; display:block; }

@media (max-width:600px){
  body{ overflow-x:clip; }
  .pricingSection{ padding:24px 16px; }
  .tokenRow__row{ flex-direction:column; }
  .tokenRow__row .btn{ width:100%; }
  .tokenRow__input{ width:100%; min-width:0; }
}

/* PAY MODAL */
.payModal{
  position:fixed; inset:0; z-index:1000;
  display:flex; align-items:center; justify-content:center; padding:24px;
}
.payModal__overlay{
  position:absolute; inset:0;
  background:rgba(0,0,0,.72); backdrop-filter:blur(4px);
}
.payModal__card{
  position:relative;
  background:#0f1e2d; border:1px solid rgba(255,255,255,.1);
  border-radius:20px; padding:40px 36px;
  max-width:420px; width:100%;
  box-shadow:0 24px 64px rgba(0,0,0,.5);
}
.payModal__close{
  position:absolute; top:14px; right:18px;
  background:transparent; border:none;
  color:var(--muted2); font-size:18px; cursor:pointer;
  padding:4px 8px; transition:color .15s;
}
.payModal__close:hover{ color:var(--text); }
.payModal__title{ font-size:20px; font-weight:600; margin-bottom:12px; }
.payModal__price{
  font-size:38px; font-weight:700; color:var(--gold); margin-bottom:24px;
}
.payModal__price span{ font-size:16px; font-weight:400; color:var(--muted); }
.payModal__features{
  list-style:none; padding:0; margin:0 0 24px;
  display:flex; flex-direction:column; gap:12px;
}
.payModal__features li{ display:flex; align-items:center; gap:10px; font-size:15px; }
.payModal__features li::before{ content:"✓"; color:#4ac578; font-weight:700; flex-shrink:0; }
.payModal__note{
  font-size:13px; color:var(--muted); line-height:1.6;
  border-top:1px solid rgba(255,255,255,.08); padding-top:16px; margin-bottom:20px;
}
.payModal__cta{ width:100%; }

/* CONTACT FORM */
.contactForm{ padding:32px; }
.contactForm__head{ margin-bottom:28px; }
.contactForm__title{ font-size:22px; font-weight:600; margin-bottom:8px; }
.contactForm__desc{ color:var(--muted); font-size:14px; line-height:1.6; }
.contactForm__body{ display:flex; flex-direction:column; gap:18px; max-width:480px; }
.contactForm__field{ display:flex; flex-direction:column; gap:6px; }
.contactForm__label{
  font-size:12px; font-weight:600; letter-spacing:.06em;
  color:var(--muted2); text-transform:uppercase;
}
.contactForm__input{
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.12);
  border-radius:10px;
  padding:12px 14px;
  color:var(--text);
  font-family:inherit;
  font-size:14px;
  outline:none;
  transition:border-color .15s;
}
.contactForm__input:focus{ border-color:rgba(200,169,107,.5); }
.contactForm__input::placeholder{ color:rgba(255,255,255,.25); }
.contactForm__textarea{ resize:vertical; min-height:80px; }
.contactForm__btn{ align-self:flex-start; margin-top:4px; }
.contactForm__status{ font-size:13px; min-height:18px; margin-top:2px; }
.contactForm__status--error{ color:#f87171; }
.contactForm__success{ display:flex; align-items:center; gap:14px; padding:20px 0; }
.contactForm__successIcon{
  width:40px; height:40px; border-radius:999px; flex-shrink:0;
  background:rgba(74,197,120,.15); border:1px solid rgba(74,197,120,.3);
  display:flex; align-items:center; justify-content:center;
  color:#4ac578; font-size:18px; font-weight:700;
}
.contactForm__successText{ color:var(--muted); font-size:14px; line-height:1.6; }

/* DEMO PAGE */
.demoBanner{
  position:sticky; top:0; z-index:200;
  background:rgba(200,169,107,.12); border-bottom:1px solid rgba(200,169,107,.25);
  backdrop-filter:blur(8px);
}
.demoBanner__inner{ display:flex; align-items:center; justify-content:space-between; gap:16px; padding:10px 0; flex-wrap:wrap; }
.demoBanner__text{ font-size:13px; color:var(--muted); }
.demoBanner__btn{ font-size:12px; padding:7px 14px; flex-shrink:0; }
.demoCta{
  padding:64px 0;
  background:linear-gradient(to bottom, rgba(11,22,32,.97), rgba(11,22,32,1));
  border-top:1px solid rgba(255,255,255,.06);
}
.demoCta__inner{ text-align:center; max-width:520px; margin:0 auto; }
.demoCta__badge{
  display:inline-block; font-size:10px; font-weight:700; letter-spacing:.12em;
  color:var(--gold); border:1px solid rgba(200,169,107,.3);
  border-radius:999px; padding:4px 12px; margin-bottom:20px; text-transform:uppercase;
}
.demoCta__title{ font-size:28px; font-weight:700; margin-bottom:12px; }
.demoCta__desc{ color:var(--muted); font-size:15px; line-height:1.6; margin-bottom:28px; }
.demoCta__actions{ display:flex; gap:12px; justify-content:center; flex-wrap:wrap; }

/* RESPONSIVE */
@media (max-width: 900px){
  .container{ width:min(760px, calc(100% - 32px)); }
  .hero__content{ padding:84px 0 72px; }
  .hero__title{ font-size:44px; }
  .hero__bg{ background-position:center 35%; transform:scale(1.02); }

  .lakeGrid{ grid-template-columns:minmax(0, 1fr); gap:24px; }
  .lakeGrid > *{ min-width:0; max-width:100%; }
  .lakeCard__circle{ width:170px; height:170px; }
  .reportHead{ flex-direction:column; align-items:flex-start; gap:4px; padding:8px 0; }
  .reportHead__right{ flex-wrap:wrap; gap:6px; }

  .summaryCards{ grid-template-columns:repeat(2, minmax(0, 1fr)); padding:14px; gap:10px; }
  .summaryCard{ padding:12px; min-width:0; max-width:100%; overflow:hidden; }
  .summaryCard__value{ font-size:22px; overflow-wrap:anywhere; word-break:break-word; }
  .summaryCard__label{ display:inline; overflow-wrap:anywhere; }
  .summaryCard__sub{ display:inline; margin-left:4px; overflow-wrap:anywhere; }

  .sectionContent{ padding:14px; }
}

/* TAP FEEDBACK – eliminuje 300ms delay, dodaje feedback na dotyk */
.lakeCard,
.sectionTab,
.btn,
.summaryCard--clickable { touch-action: manipulation; }

@media (hover: none) {
  .lakeCard:active .lakeCard__circle{
    transform: scale(0.96) translateZ(0);
    transition: transform .15s ease, box-shadow .15s ease;
    box-shadow: 0 6px 20px rgba(0,0,0,.3);
  }
  .sectionTab:active{ opacity: .72; }
  .btn:active{ filter: brightness(0.92); }
}

/* MOBILE – phones */
@media (max-width: 600px){
  /* Narrower container margin → more usable screen width */
  .container{ width:calc(100% - 16px); }
  /* overflow-x:clip (not hidden) — hidden breaks position:sticky on descendants in mobile Safari */
  /* max-width:100% (not 100vw) — iOS includes safe-area in 100vw so 100vw > layout viewport */
  html, body{ overflow-x:clip; max-width:100%; }
  main{ overflow-x:clip; max-width:100%; }
  body{ padding:0; }
  *,
  *::before,
  *::after {
    box-sizing: border-box;
  }
  input,
  select,
  textarea {
    font-size: 16px !important;
  }

  .hero{ min-height:100vh; min-height:100svh; max-height:none; overflow:hidden; }
  .hero__content{ padding:64px 0 52px; }
  .hero__title{ font-size:34px; }
  .hero__actions{ flex-direction:column; }
  .hero__actions .btn{ width:100%; text-align:center; }
  .hero__note{ display:none; }
  .hero__tokenBox{ max-width:100%; }
  .hero__tokenBox__row{ flex-direction:column; gap:10px; }
  .hero__tokenBox__input{ width:100%; }
  .hero__tokenBox__btn{ width:100%; text-align:center; }

  .section--lakes,
  .section--lakes .container,
  .lakeGrid,
  .adminSearch {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overflow-x: clip;
  }

  .lakeGrid {
    justify-items: stretch;
  }

  /* Light section */
  .lightPanel{ padding:12px !important; }
  .lightMain{
    display:grid !important;
    grid-template-columns:1fr 1fr !important;
    gap:12px !important;
    align-items:center !important;
  }
  .lightLeft{ order:1; }
  .lightRight{ order:2; text-align:right !important; }
  .lightCenter{
    order:3;
    grid-column:1 / -1;
    text-align:center !important;
    padding-top:6px;
  }
  .lightValue{ font-size:22px !important; line-height:1.15 !important; }
  .lightBottom{ margin-top:12px !important; text-align:center !important; font-size:13px !important; }

  /* ── Report layout ──────────────────────────────────────────────── */

  .section--report,
  .reportBox,
  .sectionContent{
    max-width:100%;
  }
  .reportBox{ overflow-x:hidden !important; }
  .sectionContent{ overflow-x:hidden !important; padding:10px !important; }
  .emptyState{ padding:20px 14px !important; overflow-wrap:anywhere; }
  .emptyState__desc{ overflow-wrap:anywhere; }
  .reportHead{
    display:grid;
    grid-template-columns:minmax(0, 1fr);
    gap:8px;
    width:100%;
    max-width:100%;
    overflow-x:hidden;
    /* padding-bottom:0 + border-bottom:none: collapse the mobile header's
       own footer (~9px of padding+border) so sectionTabs sticky stick
       directly to the last chip row. Previous fix mistakenly blamed
       min-height; real source was base .reportHead rule's pad-bottom
       and border-bottom. sectionTabs' own border-top provides the
       separator between the two sticky bars.
       Height is content-driven (no min-height) — iOS jitter guard is
       the 4px subpixel threshold in _updateRhH() (see app.js). */
    padding:8px 2px 0;
    border-bottom:none;
    margin-bottom:0;
  }
  .reportHead__left,
  .reportHead__center,
  .reportHead__right{
    width:100%;
    min-width:0;
    max-width:100%;
  }
  .reportHead__right{
    justify-content:flex-start;
  }
  .reportHead__action{
    flex:0 1 auto;
    min-width:0;
  }
  .reportHead__title{
    white-space:normal;
    overflow:visible;
    text-overflow:clip;
    line-height:1.2;
  }
  .sectionTabs{ max-width:100%; }
  .sectionTabs__inner{ overflow-x:auto; -webkit-overflow-scrolling:touch; }
  .sectionContent,
  .sectionContent > *,
  .reportBox section,
  .reportBox [data-section-id]{
    width:100%;
    max-width:100%;
    min-width:0;
  }
  .reportBox section > *{
    max-width:100%;
    min-width:0;
  }
  .reportBox [style*="display:flex"]{
    min-width:0;
    max-width:100%;
    flex-wrap:wrap !important;
  }
  .reportBox [style*="display:flex"] > *{
    min-width:0;
    max-width:100%;
  }
  .reportBox [style*="min-width:"]{
    min-width:0 !important;
  }
  .reportBox [style*="display:grid"]{
    min-width:0;
    max-width:100%;
  }

  /* Report sections — reduce padding, allow chart sections to breathe */
  .reportBox section{ padding:12px !important; border-radius:14px !important; }
  /* Chart-only sections: no section-level padding (charts handle their own full-bleed) */
  [data-section-id="charts24"],
  [data-section-id="presschart"]{ padding:0 !important; background:none !important; border:none !important; }

  /* ── Charts – keep within viewport on mobile; wider at cost of frame ─ */
  .chartCard{
    width:100% !important;
    max-width:100% !important;
    margin-left:0 !important;
    border-radius:12px !important;
    padding:8px 4px !important;
    border-color:rgba(255,255,255,.03) !important;
  }
  .chartCard__inner{
    margin-left:0 !important;
    margin-right:0 !important;
    width:100% !important;
    overflow-x:auto;
  }
  .chartCard__inner svg{ width:100% !important; min-width:0; height:auto !important; }

  /* ── 8 dni – szczupak: desktop table → mobile day cards ─────────── */
  .tableWrap--8d{ overflow:visible; border-radius:0; }
  .tableWrap--8d::after{ display:none; } /* hide scroll-hint gradient */
  .tableWrap--8d table{ display:block; min-width:0 !important; }
  .tableWrap--8d thead{ display:none !important; }
  .tableWrap--8d tbody{ display:block; }
  .tableWrap--8d tr{
    display:block;
    margin-bottom:10px;
    padding:12px;
    border-radius:12px;
    outline-offset:0;
  }
  .tableWrap--8d td{
    display:block;
    padding:3px 0 !important;
    border:none !important;
    font-size:13px;
    line-height:1.6;
    min-width:0;
    word-break:break-word;
  }
  /* Day name — card header */
  .tableWrap--8d td:nth-child(1){
    font-size:15px !important;
    font-weight:700;
    padding-bottom:8px !important;
    border-bottom:1px solid rgba(255,255,255,.10) !important;
    margin-bottom:4px;
  }
  /* Brania/score — card footer */
  .tableWrap--8d td:nth-child(9){
    padding-top:8px !important;
    border-top:1px solid rgba(255,255,255,.08) !important;
    margin-top:4px;
  }

  /* ── 12h hourly table: compact inline rows on mobile (no horizontal scroll) ─ */
  .tableWrap--12h{ overflow:visible; border-radius:10px; }
  .tableWrap--12h::after{ display:none; }
  .tableWrap--12h table{ display:block; min-width:0 !important; }
  .tableWrap--12h thead{ display:none !important; }
  .tableWrap--12h tbody{ display:block; }
  .tableWrap--12h tr{
    display:flex;
    flex-wrap:wrap;
    align-items:baseline;
    column-gap:8px;
    row-gap:2px;
    margin-bottom:6px;
    padding:8px 10px;
    background:rgba(255,255,255,.03);
    border:1px solid rgba(255,255,255,.06);
    border-radius:10px;
  }
  .tableWrap--12h td{
    padding:0 !important;
    border:none !important;
    font-size:12px !important;
    line-height:1.4;
    min-width:0;
    overflow-wrap:anywhere;
    color:rgba(255,255,255,.78);
  }
  .tableWrap--12h td:nth-child(1){
    font-size:14px !important;
    font-weight:700;
    flex:0 0 52px;
    color:#fff;
  }
  .tableWrap--12h td:nth-child(2){ flex:1 1 100%; font-size:11px !important; color:rgba(255,255,255,.55); margin-top:-2px; }
  .tableWrap--12h td:nth-child(n+3){ flex:0 0 auto; }
  .tableWrap--12h td:nth-child(n+3) span{ padding:1px 6px !important; font-size:11px !important; }

  /* ── Generic table wrapper: reset min-width so non-hourly tables don't
        force horizontal scroll on narrow phones ──────────────────────── */
  .tableWrap table{ min-width:0; }

  /* ── Pressmethod indicator grid: single-column on narrow screens ─── */
  /* The grid uses inline repeat(auto-fit,minmax(160px,1fr)); force 1 col */
  [data-section-id="pressmethod"] [style*="grid-template-columns"]{
    grid-template-columns:1fr !important;
  }
  /* Prevent chips (inline-flex rows) from overflowing the pressmethod container */
  [data-section-id="pressmethod"]{ overflow-x:hidden; }

  .lakeCard__circle{ width:140px; height:140px; }
  .lakeCard.is-active .lakeCard__circle{ transform:scale(1.03); }

  /* Typography */
  .reportBox h2{ font-size:11px !important; letter-spacing:.06em; }

  /* Tab bar — short labels on phones so all tabs fit without horizontal overflow */
  .sectionTabs__inner{ gap:0; padding:0 4px; overflow-x:visible; }
  .sectionTab{ padding:12px 6px; font-size:13px; min-height:48px; flex:1 1 auto; min-width:0; }
  .sectionTab__full{ display:none; }
  .sectionTab__short{ display:inline; }

  /* nowGrid: always 2 columns on mobile */
  .nowGrid{ grid-template-columns:repeat(2, minmax(0, 1fr)) !important; }

  /* ── Narrow-phone safety: break long words, shrink status/title ──── */
  .hero__title{ font-size:28px; overflow-wrap:anywhere; word-break:normal; hyphens:auto; }
  .hero__desc{ overflow-wrap:anywhere; }
  .reportBox h1,
  .reportBox h2,
  .reportBox h3,
  .reportBox p,
  .reportBox li,
  .reportBox span,
  .reportBox strong{ overflow-wrap:anywhere; }
  .decision-card__status{ font-size:24px !important; overflow-wrap:anywhere; }
  .decision-card__meta-row{ flex-wrap:wrap; }
  .decision-card__meta-label{ min-width:0 !important; flex:0 0 auto; }
  .decision-card__meta-value{ min-width:0; overflow-wrap:anywhere; }
  .decision-card__main,
  .decision-card__dates{ min-width:0 !important; width:100%; }
  .decision-card__dates{ text-align:left; }
  .metric-card{ min-width:0 !important; width:100%; }
  .metric-card__extra,
  .metric-card__note,
  .metric-card__warn,
  .metric-info,
  .summaryCard__value,
  .summaryCard__sub{ overflow-wrap:anywhere; word-break:break-word; min-width:0; }
  .reportBox [class*="min-width"]{ min-width:0 !important; }

  /* ── Chart SVGs: force 100% width, never scroll horizontally ───── */
  .reportBox svg{ width:100% !important; height:auto !important; max-width:100% !important; }
  .chartCard__inner{ overflow-x:hidden !important; }
  .chartCard__inner::after{ display:none !important; }

  /* ── Final safety net: no descendant of reportBox may exceed container ─ */
  .reportBox, .reportBox *{ max-width:100%; }
  .reportBox img, .reportBox canvas{ max-width:100% !important; height:auto; }
}

/* ── Extra-narrow phones (iPhone SE / folding devices) ─────────────── */
@media (max-width: 380px){
  .container{ width:calc(100% - 8px); }
  .sectionContent{ padding:8px !important; }
  .reportBox section{ padding:10px !important; }
  .reportHead{ padding:6px 2px !important; }
  .chartCard{ padding:6px 2px !important; border-color:rgba(255,255,255,.02) !important; }
  .hero__content{ padding:48px 0 40px; }
  .hero__title{ font-size:26px !important; }
}

/* ── Demo CTA (na dole raportu DEMO) ──────────────────────────────── */
.demoCta{
  text-align:center;
  padding:40px 24px 24px;
  margin-top:8px;
  border-top:1px solid rgba(255,255,255,.06);
}
.demoCta__text{
  color:var(--muted);
  font-size:15px;
  margin-bottom:6px;
}
.demoCta__sub{
  color:var(--muted2);
  font-size:13px;
  margin-bottom:20px;
}

/* ── Decision Dashboard ─────────────────────────────────── */
.decision-dashboard { margin-bottom:16px; }

/* Alert Bar */
.alert-bar {
  border-radius:10px;
  padding:10px 14px;
  margin-bottom:16px;
  display:flex;
  align-items:flex-start;
  gap:10px;
}
.alert-bar--critical { background:rgba(220,50,50,.12);   border:1px solid rgba(220,50,50,.40); }
.alert-bar--warning  { background:rgba(255,140,0,.10);   border:1px solid rgba(255,140,0,.35); }
.alert-bar--info     { background:rgba(100,150,255,.09); border:1px solid rgba(100,150,255,.28); }
.alert-bar__icon { font-size:15px; flex-shrink:0; margin-top:1px; }
.alert-bar__text { font-size:13px; line-height:1.5; }
.alert-bar--critical .alert-bar__text { color:#ffa0a0; }
.alert-bar--warning  .alert-bar__text { color:#ffd8a8; }
.alert-bar--info     .alert-bar__text { color:#c0d4ff; }

/* Decision Card */
.decision-card {
  border-radius:20px;
  padding:20px 24px;
  margin-bottom:16px;
  box-shadow:0 2px 24px rgba(0,0,0,.30);
  border:2px solid var(--dc-br, rgba(255,255,255,.12));
  background:var(--dc-bg, rgba(255,255,255,.03));
}
.decision-card__eyebrow {
  font-size:11px; color:rgba(255,255,255,.45);
  font-weight:700; letter-spacing:.1em;
  text-transform:uppercase; margin-bottom:12px;
}
.decision-card__body {
  display:flex; flex-wrap:wrap;
  align-items:flex-start; gap:16px; margin-bottom:16px;
}
.decision-card__main  { flex:1; min-width:180px; }
.decision-card__status {
  font-size:34px; font-weight:900;
  line-height:1; letter-spacing:-.01em; margin-bottom:6px;
  color:var(--dc-color, #fff);
}
.decision-card__subtitle  { font-size:13px; color:rgba(255,255,255,.65); line-height:1.5; }
.decision-card__next-window { font-size:12px; color:rgba(255,255,255,.45); margin-top:8px; }
.decision-card__dates     { text-align:right; min-width:120px; }
.decision-card__period    { font-size:13px; color:#cdf7db; font-weight:700; margin-bottom:2px; }
.decision-card__date-range{ font-size:13px; color:#ffe6a6; font-weight:700; }
.decision-card__best-day  { font-size:12px; color:rgba(255,255,255,.40); margin-top:4px; }
.decision-card__badges    { display:flex; flex-wrap:wrap; gap:8px; margin-bottom:14px; }
.decision-badge {
  padding:5px 13px; border-radius:999px;
  background:rgba(0,0,0,.25); border:1px solid rgba(255,255,255,.12);
}
.decision-badge--primary  { border-color:var(--dc-br, rgba(255,255,255,.12)); }
.decision-badge__label    { font-size:11px; color:rgba(255,255,255,.45); }
.decision-badge__value    { font-size:13px; font-weight:800; }
.decision-badge__sub      { font-size:11px; color:rgba(255,255,255,.40); }
.decision-card__reason {
  font-size:13px; color:rgba(255,255,255,.60); line-height:1.6;
  border-top:1px solid rgba(255,255,255,.08); padding-top:10px;
}
.decision-card__takeaway {
  font-size:13px; font-weight:600; color:rgba(255,255,255,.80); line-height:1.5;
  margin-top:10px; padding:10px 12px;
  background:rgba(255,255,255,.04); border-radius:8px;
  border-left:3px solid var(--dc-color, #00ff88);
}

/* Decision Card — state classes (go / wait / skip) */
.decision-card.go   { --dc-bg:#0a2018; --dc-br:#1e7a2f; --dc-color:#00ff88; }
.decision-card.wait { --dc-bg:#2a1d0c; --dc-br:#8d6330; --dc-color:#d7a65a; }
.decision-card.skip { --dc-bg:#2a1210; --dc-br:#8f4c46; --dc-color:#c86b62; }

/* Decision Metrics — CSS grid, 3 equal columns */
.decision-metrics {
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:10px;
  margin-bottom:16px;
}
.metric-card {
  border-radius:14px; padding:14px 16px;
  border:1px solid rgba(255,255,255,.07);
  background:rgba(255,255,255,.03);
}
.metric-card.safety--warning  { background:rgba(255,183,77,.07); }
.metric-card.safety--critical { background:rgba(248,113,113,.07); }
.metric-card__label {
  font-size:10px; color:rgba(255,255,255,.40);
  font-weight:700; letter-spacing:.08em;
  text-transform:uppercase; margin-bottom:10px;
}
.metric-card__value  { font-size:26px; font-weight:800; line-height:1; margin-bottom:6px; }
.metric-score        { font-size:26px; font-weight:800; line-height:1; margin-bottom:6px; }
.metric-card__sub    { font-size:12px; color:rgba(255,255,255,.50); margin-bottom:8px; }
.metric-card__detail { font-size:12px; color:rgba(255,255,255,.65); margin-bottom:4px; }
.metric-info         { font-size:12px; color:rgba(255,255,255,.65); margin-bottom:4px; }
.metric-card__note   { font-size:12px; color:rgba(255,255,255,.60); line-height:1.4; margin-bottom:10px; }
.metric-card__extra  { font-size:11px; color:rgba(255,255,255,.40); margin-top:2px; }
.metric-card__warn   { font-size:11px; color:#ffb74d; margin-top:8px; line-height:1.4; }
.metric-card__interp { font-size:13px; font-weight:700; margin-bottom:8px; }

/* Mode toggle */
.mode-toggle {
  display:inline-flex;
  border:1px solid rgba(255,255,255,.12);
  border-radius:8px; overflow:hidden;
  font-size:11px; font-weight:700;
}
.mode-toggle__opt        { padding:4px 11px; color:rgba(255,255,255,.30); }
.mode-toggle__opt--active{ background:rgba(255,255,255,.14); color:#fff; }

/* Decision Details — wrapper for detailed sections below */
.decision-details { margin-top:8px; }

/* doc 36 — MainDecisionCard meta info rows */
.decision-card__meta        { border-top:1px solid rgba(255,255,255,.08); padding-top:12px; margin-bottom:12px; display:flex; flex-direction:column; gap:6px; }
.decision-card__meta-row    { display:flex; align-items:baseline; gap:8px; flex-wrap:wrap; }
.decision-card__meta-label  { font-size:11px; color:rgba(255,255,255,.40); min-width:130px; flex-shrink:0; }
.decision-card__meta-value  { font-size:13px; color:rgba(255,255,255,.80); font-weight:600; }

/* doc 36 — Score interpretation label */
.score-label { font-size:12px; font-weight:700; }

/* doc 36 — BestDayCard */
.best-day-card__eyebrow     { font-size:10px; color:rgba(255,255,255,.40); font-weight:700; letter-spacing:.08em; text-transform:uppercase; margin-bottom:8px; }
.best-day-card__header      { display:flex; flex-wrap:wrap; align-items:baseline; gap:14px; margin-bottom:12px; }
.best-day-card__day         { font-size:18px; font-weight:700; color:#d9e7ff; }
.best-day-card__score       { font-size:20px; font-weight:800; }
.best-day-card__params      { display:grid; grid-template-columns:repeat(auto-fit, minmax(110px,1fr)); gap:6px; margin-bottom:12px; }
.best-day-card__param       { font-size:13px; color:#d9e7ff; }
.best-day-card__param-label { font-size:10px; color:rgba(255,255,255,.40); text-transform:uppercase; letter-spacing:.06em; display:block; margin-bottom:2px; }
.best-day-card__reason      { font-size:13px; color:rgba(255,255,255,.60); line-height:1.5; }
.best-day-card__warning     { font-size:12px; color:#ffb74d; margin-top:8px; }

/* doc 36 — CTASection */
.cta-section__inner { display:flex; align-items:center; justify-content:space-between; flex-wrap:wrap; gap:12px; border:1px solid rgba(255,255,255,.06); border-radius:14px; background:rgba(255,255,255,.02); padding:14px 20px; margin-bottom:16px; }
.cta-section__text  { font-size:13px; color:rgba(255,255,255,.50); }
.cta-section__btn   { display:inline-block; padding:8px 20px; border-radius:8px; background:rgba(200,169,107,.12); border:1px solid rgba(200,169,107,.35); color:#c8a96b; font-size:13px; font-weight:700; text-decoration:none; cursor:pointer; }
.cta-section__btn:hover { background:rgba(200,169,107,.20); }

/* Responsive — 768px per spec */
@media (max-width:768px) {
  .decision-metrics       { grid-template-columns: 1fr; }
  .decision-card          { padding:16px 18px; }
  .decision-card__status  { font-size:28px; }
  .decision-card__meta-label { min-width:100px; }
  .best-day-card__params  { grid-template-columns: 1fr 1fr; }
  .cta-section__inner     { flex-direction:column; align-items:flex-start; }
  .session-rec__timing    { flex-wrap:wrap; }
}

/* doc 44 — SessionRecommendationCard */
.session-rec {
  border:1px solid rgba(255,255,255,.06);
  border-radius:14px;
  background:rgba(255,255,255,.02);
  padding:14px 18px;
  margin-bottom:16px;
}
.session-rec__header {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  margin-bottom:12px;
  flex-wrap:wrap;
}
.session-rec__title {
  font-size:11px;
  font-weight:600;
  color:rgba(255,255,255,.45);
  text-transform:uppercase;
  letter-spacing:.08em;
}
.session-rec__badge {
  display:inline-block;
  padding:3px 12px;
  border-radius:999px;
  font-size:12px;
  font-weight:700;
  border:1px solid transparent;
}
.session-rec__badge--green   { background:rgba(0,255,136,.10); border-color:rgba(0,255,136,.25); color:#00ff88; }
.session-rec__badge--amber   { background:rgba(255,183,77,.10); border-color:rgba(255,183,77,.25); color:#ffb74d; }
.session-rec__badge--neutral { background:rgba(255,255,255,.06); border-color:rgba(255,255,255,.12); color:rgba(255,255,255,.65); }
.session-rec__badge--red     { background:rgba(248,113,113,.10); border-color:rgba(248,113,113,.25); color:#f87171; }
.session-rec__timing {
  display:flex;
  gap:18px;
  margin-bottom:10px;
}
.session-rec__stat { }
.session-rec__stat-label {
  font-size:10px;
  color:rgba(255,255,255,.35);
  text-transform:uppercase;
  letter-spacing:.06em;
  display:block;
  margin-bottom:2px;
}
.session-rec__stat-val {
  font-size:14px;
  font-weight:700;
  color:#d9e7ff;
}
.session-rec__flex {
  font-size:12px;
  color:rgba(255,255,255,.45);
  margin-bottom:8px;
}
.session-rec__flex span { color:rgba(255,255,255,.70); font-weight:600; }
.session-rec__mode {
  font-size:12px;
  color:rgba(255,255,255,.40);
  margin-bottom:6px;
}
.session-rec__reason {
  font-size:13px;
  color:rgba(255,255,255,.60);
  line-height:1.5;
}
.session-rec__takeaway {
  font-size:13px;
  font-weight:600;
  color:rgba(255,255,255,.80);
  line-height:1.5;
  margin-top:8px;
  padding:8px 12px;
  background:rgba(255,255,255,.04);
  border-radius:8px;
  border-left:3px solid rgba(0,255,136,.45);
}
.session-rec__conf {
  font-size:11px;
  color:rgba(255,255,255,.30);
  margin-top:8px;
}
.session-rec--skip {
  background:rgba(248,113,113,.04);
  border-color:rgba(248,113,113,.12);
}
.session-rec--skip .session-rec__reason { color:rgba(255,255,255,.45); }

/* ── Confidence Heatmap (doc 45) ────────────────────────────────────── */
.heatmap-section {
  border:1px solid rgba(255,255,255,.06);
  border-radius:14px;
  background:rgba(255,255,255,.015);
  padding:14px 18px;
  margin-bottom:16px;
}
.heatmap-section__title {
  font-size:11px;
  text-transform:uppercase;
  letter-spacing:.07em;
  color:rgba(255,255,255,.35);
  font-weight:600;
  margin-bottom:12px;
}
.heatmap-grid {
  display:flex;
  flex-direction:column;
  gap:6px;
}
.heatmap-row {
  display:flex;
  align-items:center;
  gap:10px;
}
.heatmap-row__time {
  width:72px;
  flex-shrink:0;
  font-size:11px;
  color:rgba(255,255,255,.4);
  font-variant-numeric:tabular-nums;
}
.heatmap-row__bar-wrap {
  flex:1;
  height:22px;
  border-radius:5px;
  background:rgba(255,255,255,.05);
  overflow:hidden;
  position:relative;
}
.heatmap-row__bar {
  height:100%;
  border-radius:5px;
  transition:width .3s;
}
.heatmap-row__label {
  width:160px;
  flex-shrink:0;
  font-size:11px;
  color:rgba(255,255,255,.5);
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}
/* heat level colors */
.heat-peak   .heatmap-row__bar { background:linear-gradient(90deg,#00c97a,#00ff88); }
.heat-high   .heatmap-row__bar { background:linear-gradient(90deg,#2da86e,#5affa6); }
.heat-medium .heatmap-row__bar { background:linear-gradient(90deg,#b08020,#ffb74d); }
.heat-low    .heatmap-row__bar { background:linear-gradient(90deg,#5a2626,#a04040); }
.heat-peak   .heatmap-row__label { color:#00ff88; }
.heat-high   .heatmap-row__label { color:#5affa6; }
.heat-medium .heatmap-row__label { color:#ffb74d; }
.heat-low    .heatmap-row__label { color:rgba(255,100,100,.7); }
.heatmap-best {
  margin-top:10px;
  font-size:11px;
  color:rgba(255,255,255,.4);
}
.heatmap-best strong { color:#00ff88; }
@media (max-width:600px) {
  .heatmap-row__label { width:72px; font-size:9px; }
  .heatmap-row__time  { width:58px; font-size:10px; }
}

/* ── Report layout spacing (doc 48) ─────────────────────────────────── */
/* Larger gap after main decision card */
[data-section-id="decisionstatus"] { margin-bottom: 20px; }
/* Breathing room between timeline and heatmap */
[data-section-id="piketimeline"]   { margin-bottom: 20px; }
/* Planning sections visually secondary */
[data-section-id="plan"],
[data-section-id="tripwindows"],
[data-section-id="activitymap"]    { opacity: 1; }

/* ── Lure Recommendation Card (doc 46 + 47) ─────────────────────────── */
.lure-recommendation-card {
  border:1px solid rgba(255,255,255,.06);
  border-radius:14px;
  background:rgba(255,255,255,.02);
  padding:14px 18px;
  margin-bottom:16px;
}
.lure-recommendation-header {
  display:flex;
  align-items:center;
  justify-content:space-between;
  margin-bottom:12px;
}
.lure-recommendation-header__title {
  font-size:11px;
  text-transform:uppercase;
  letter-spacing:.07em;
  color:rgba(255,255,255,.35);
  font-weight:600;
}
.lure-conf-badge {
  font-size:10px;
  color:rgba(255,255,255,.3);
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.07);
  border-radius:6px;
  padding:2px 7px;
  letter-spacing:.03em;
}
.lure-recommendation-grid {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:8px 16px;
  margin-bottom:10px;
}
.lure-rec-item {
  display:flex;
  flex-direction:column;
  gap:2px;
}
.lure-rec-label {
  font-size:10px;
  text-transform:uppercase;
  letter-spacing:.05em;
  color:rgba(255,255,255,.3);
}
.lure-rec-value {
  font-size:13px;
  font-weight:700;
  color:#d9e7ff;
}
/* Tempo color variants */
.lure-tempo--agresywnie   { color:#00ff88; }
.lure-tempo--umiarkowanie { color:#6ec6f5; }
.lure-tempo--wolno        { color:#ffb74d; }
.lure-tempo--bardzo-wolno { color:#f87171; }
.lure-recommendation-reason {
  font-size:12px;
  color:rgba(255,255,255,.4);
  margin-bottom:10px;
  line-height:1.4;
}
.lure-window-plan {
  border-top:1px solid rgba(255,255,255,.05);
  padding-top:10px;
  display:flex;
  flex-direction:column;
  gap:6px;
}
.lure-window-row {
  display:flex;
  flex-direction:column;
  gap:1px;
}
.lure-window-row__name {
  font-size:10px;
  text-transform:uppercase;
  letter-spacing:.05em;
  color:rgba(255,255,255,.28);
}
.lure-window-row__detail {
  font-size:12px;
  color:#a9d4ff;
}
.lure-fallback {
  margin-top:10px;
  padding:8px 12px;
  border-radius:8px;
  background:rgba(255,183,77,.05);
  border:1px solid rgba(255,183,77,.13);
  font-size:12px;
  color:rgba(255,255,255,.5);
  line-height:1.4;
}
.lure-fallback strong { color:#ffb74d; }
@media (max-width:600px) {
  .lure-recommendation-grid { grid-template-columns:1fr; }
}

/* ── Quick Lake Setup overlay (doc 51) ──────────────────────────── */
.lakesetup-overlay {
  position:fixed;
  inset:0;
  background:rgba(6,14,24,.88);
  backdrop-filter:blur(6px);
  -webkit-backdrop-filter:blur(6px);
  z-index:9100;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:16px;
}
.lakesetup-overlay[hidden] { display:none !important; }
.lakesetup-modal {
  background:#0b1520;
  border:1px solid rgba(255,255,255,.08);
  border-radius:20px;
  width:100%;
  max-width:400px;
  padding:24px 22px 20px;
  display:flex;
  flex-direction:column;
  gap:16px;
  max-height:92vh;
  overflow-y:auto;
}
.lakesetup-title {
  font-size:17px;
  font-weight:700;
  color:#d9e7ff;
  margin:0;
}
.lakesetup-sub {
  font-size:12px;
  color:rgba(255,255,255,.4);
  margin:0;
  line-height:1.4;
}
.lakesetup-group {
  display:flex;
  flex-direction:column;
  gap:7px;
}
.lakesetup-group__label {
  font-size:11px;
  text-transform:uppercase;
  letter-spacing:.06em;
  color:rgba(255,255,255,.3);
  font-weight:600;
}
.lakesetup-options {
  display:flex;
  flex-wrap:wrap;
  gap:7px;
}
.lakesetup-opt {
  flex:1;
  min-width:80px;
  padding:8px 12px;
  border-radius:9px;
  border:1px solid rgba(255,255,255,.1);
  background:rgba(255,255,255,.03);
  color:rgba(255,255,255,.6);
  font-size:12px;
  font-weight:500;
  cursor:pointer;
  transition:background .15s, border-color .15s, color .15s;
  text-align:center;
}
.lakesetup-opt:hover {
  background:rgba(255,255,255,.07);
  color:rgba(255,255,255,.85);
}
.lakesetup-opt--active {
  background:rgba(0,255,136,.10);
  border-color:rgba(0,255,136,.35);
  color:#00ff88;
}
.lakesetup-input {
  margin-top:4px;
  padding:9px 12px;
  border-radius:9px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.04);
  color:#d9e7ff;
  font-size:13px;
  width:100%;
  box-sizing:border-box;
  outline:none;
}
.lakesetup-input:focus { border-color:rgba(0,255,136,.4); }
.lakesetup-preview {
  padding:10px 13px;
  border-radius:10px;
  background:rgba(255,255,255,.03);
  border:1px solid rgba(255,255,255,.06);
  font-size:12px;
  color:rgba(255,255,255,.4);
  line-height:1.6;
}
.lakesetup-preview strong { color:rgba(255,255,255,.65); }
.lakesetup-footer {
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:10px;
}
.lakesetup-save { width:100%; }
.lakesetup-skip {
  font-size:12px;
  color:rgba(255,255,255,.28);
  text-decoration:none;
  cursor:pointer;
}
.lakesetup-skip:hover { color:rgba(255,255,255,.5); }

/* ── Post Trip Feedback modal (doc 53) ──────────────────────────── */
.ptf-overlay {
  position:fixed;
  inset:0;
  background:rgba(6,14,24,.88);
  backdrop-filter:blur(6px);
  -webkit-backdrop-filter:blur(6px);
  z-index:9200;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:16px;
}
.ptf-overlay[hidden] { display:none !important; }
.ptf-modal {
  background:#0b1520;
  border:1px solid rgba(255,255,255,.08);
  border-radius:20px;
  width:100%;
  max-width:420px;
  padding:22px 20px 18px;
  display:flex;
  flex-direction:column;
  gap:14px;
  max-height:92vh;
  overflow-y:auto;
}
.ptf-title {
  font-size:17px;
  font-weight:700;
  color:#d9e7ff;
  margin:0;
}
.ptf-sub {
  font-size:12px;
  color:rgba(255,255,255,.38);
  margin:0;
  line-height:1.4;
}
.ptf-group { display:flex; flex-direction:column; gap:7px; }
.ptf-q {
  font-size:12px;
  font-weight:600;
  color:rgba(255,255,255,.55);
  text-transform:uppercase;
  letter-spacing:.05em;
}
.ptf-opts {
  display:flex;
  flex-wrap:wrap;
  gap:6px;
}
.ptf-opt {
  padding:6px 12px;
  border-radius:8px;
  border:1px solid rgba(255,255,255,.1);
  background:rgba(255,255,255,.03);
  color:rgba(255,255,255,.55);
  font-size:12px;
  font-weight:500;
  cursor:pointer;
  transition:background .15s, border-color .15s, color .15s;
}
.ptf-opt:hover { background:rgba(255,255,255,.07); color:rgba(255,255,255,.85); }
.ptf-opt--active {
  background:rgba(0,255,136,.10);
  border-color:rgba(0,255,136,.35);
  color:#00ff88;
}
/* Rating row */
.ptf-stars {
  display:flex;
  gap:6px;
}
.ptf-star {
  flex:1;
  padding:7px 4px;
  border-radius:8px;
  border:1px solid rgba(255,255,255,.1);
  background:rgba(255,255,255,.03);
  color:rgba(255,255,255,.45);
  font-size:13px;
  font-weight:700;
  cursor:pointer;
  transition:background .15s, border-color .15s, color .15s;
  text-align:center;
}
.ptf-star:hover { background:rgba(255,183,77,.08); color:#ffb74d; }
.ptf-star--active { background:rgba(255,183,77,.15); border-color:rgba(255,183,77,.4); color:#ffb74d; }
.ptf-star-labels {
  display:flex;
  justify-content:space-between;
  font-size:10px;
  color:rgba(255,255,255,.25);
  padding:0 2px;
}
/* Note textarea */
.ptf-note {
  width:100%;
  box-sizing:border-box;
  padding:9px 12px;
  border-radius:9px;
  border:1px solid rgba(255,255,255,.1);
  background:rgba(255,255,255,.03);
  color:#d9e7ff;
  font-size:13px;
  resize:none;
  height:52px;
  outline:none;
  font-family:inherit;
}
.ptf-note:focus { border-color:rgba(0,255,136,.3); }
.ptf-note::placeholder { color:rgba(255,255,255,.25); }
/* Footer */
.ptf-footer { display:flex; flex-direction:column; gap:8px; }
.ptf-save { width:100%; }
.ptf-secondary {
  display:flex;
  justify-content:center;
  gap:20px;
}
.ptf-remind, .ptf-skip {
  font-size:12px;
  color:rgba(255,255,255,.28);
  text-decoration:none;
  cursor:pointer;
}
.ptf-remind:hover, .ptf-skip:hover { color:rgba(255,255,255,.5); }

/* ── Lake Intelligence section (doc 62) ──────────────────────────── */
.lake-intel { margin-top:16px; }
.lake-intel__body { padding:4px 0 0; }
.lake-intel__header { display:flex; align-items:center; gap:10px; margin-bottom:10px; }
.lake-intel__badge {
  font-size:11px; font-weight:700; text-transform:uppercase; letter-spacing:.04em;
  padding:3px 9px; border-radius:20px;
}
.lake-intel__badge--low    { background:rgba(255,255,255,.08); color:rgba(255,255,255,.5); }
.lake-intel__badge--medium { background:rgba(34,197,94,.15);  color:#22c55e; }
.lake-intel__badge--high   { background:rgba(34,197,94,.25);  color:#4ade80; }
.lake-intel__sessions { font-size:12px; color:rgba(255,255,255,.35); }
.lake-intel__explanation {
  font-size:13px; color:rgba(255,255,255,.55); line-height:1.6;
  margin:0 0 12px;
}
.lake-intel__tendencies { list-style:none; padding:0; margin:0; display:flex; flex-direction:column; gap:7px; }
.lake-intel__tendency {
  font-size:13px; color:rgba(255,255,255,.7);
  display:flex; align-items:center; justify-content:space-between; gap:8px;
  padding:6px 10px; background:rgba(255,255,255,.04); border-radius:8px;
}
.lake-intel__strength {
  font-size:10px; font-weight:700; text-transform:uppercase; letter-spacing:.04em;
  flex-shrink:0; padding:2px 7px; border-radius:10px;
}
.lake-intel__strength--niska   { background:rgba(255,255,255,.08); color:rgba(255,255,255,.4); }
.lake-intel__strength--srednia { background:rgba(250,204,21,.15);  color:#fbbf24; }
.lake-intel__strength--silna   { background:rgba(34,197,94,.15);   color:#22c55e; }

/* ── Admin mode – lake search form ─────────────────────────────── */
.adminSearch {
  grid-column: 1 / -1;
  width: 100%;
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 16px;
  padding: 28px 32px;
  color: #fff;
}
.adminSearch__title {
  font-size: 18px;
  font-weight: 700;
  color: #00ff88;
  margin-bottom: 6px;
}
.adminSearch__hint {
  font-size: 13px;
  color: rgba(255,255,255,.55);
  margin-bottom: 20px;
  overflow-wrap: anywhere;
}
.adminSearch__fields {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
  min-width: 0;
}
.adminSearch__input {
  flex: 1 1 180px;
  min-width: 0;
  box-sizing: border-box;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 8px;
  color: #fff;
  font-size: 16px;
  padding: 10px 14px;
  outline: none;
  transition: border-color .2s;
}
.adminSearch__input:focus { border-color: #00ff88; }
.adminSearch__input::placeholder { color: rgba(255,255,255,.35); }
.adminSearch__select { cursor: pointer; -webkit-appearance: none; appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23ffffff' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 12px center; padding-right: 32px; }
.adminSearch__select option { background: #0f1923; color: #fff; }
.adminSearch__btn {
  background: #00ff88;
  color: #0b1620;
  font-size: 14px;
  font-weight: 700;
  border: none;
  border-radius: 8px;
  padding: 10px 20px;
  cursor: pointer;
  transition: opacity .2s;
  white-space: nowrap;
}
.adminSearch__btn:disabled { opacity: .5; cursor: default; }
.adminSearch__btn:not(:disabled):hover { opacity: .85; }
.adminSearch__status {
  margin-top: 18px;
  min-width: 0;
  max-width: 100%;
  overflow-wrap: anywhere;
}
.adminSearch__switchToken {
  margin-top: 16px;
  display: flex;
  justify-content: flex-end;
  gap: 14px;
  flex-wrap: wrap;
}
.adminSearch__switchBtn {
  background: none;
  border: none;
  color: rgba(255,255,255,.4);
  font-size: 12px;
  cursor: pointer;
  padding: 4px 0;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.adminSearch__switchBtn:hover { color: rgba(255,255,255,.7); }
.adminSearch__info { color: rgba(255,255,255,.55); font-size: 13px; }
.adminSearch__error {
  color: #ff6b6b;
  font-size: 13px;
  padding: 10px 14px;
  background: rgba(255,107,107,.08);
  border-radius: 8px;
}
.adminSearch__resolved {
  min-width: 0;
  max-width: 100%;
  background: rgba(0,255,136,.07);
  border: 1px solid rgba(0,255,136,.25);
  border-radius: 10px;
  padding: 16px 18px;
}
.adminSearch__resolvedName { font-size: 17px; font-weight: 700; color: #00ff88; margin-bottom: 4px; }
.adminSearch__resolvedMeta {
  font-size: 12px;
  color: rgba(255,255,255,.55);
  margin-bottom: 3px;
  overflow-wrap: anywhere;
}
.adminSearch__loadBtn {
  margin-top: 14px;
  background: #00ff88;
  color: #0b1620;
  font-size: 14px;
  font-weight: 700;
  border: none;
  border-radius: 8px;
  padding: 10px 22px;
  cursor: pointer;
  transition: opacity .2s;
}
.adminSearch__loadBtn:hover { opacity: .85; }
.adminSearch__ambiguousTitle { font-size: 13px; color: rgba(255,255,255,.70); margin-bottom: 10px; }
.adminSearch__candidateList { display: flex; flex-direction: column; gap: 8px; min-width:0; }
.adminSearch__candidate {
  width: 100%;
  min-width: 0;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 8px;
  color: #fff;
  font-size: 13px;
  text-align: left;
  padding: 10px 14px;
  cursor: pointer;
  transition: background .15s, border-color .15s;
  overflow-wrap: anywhere;
}
.adminSearch__candidate:hover { background: rgba(0,255,136,.12); border-color: rgba(0,255,136,.35); }

@media (max-width: 600px) {
  .adminSearch { padding: 20px 16px; }
  .adminSearch__fields { flex-direction: column; }
  .adminSearch__input, .adminSearch__btn, .adminSearch__loadBtn { width: 100%; flex: none; }
  .adminSearch__resolved { padding: 14px 12px; }
}

/* ── Scroll-reveal ───────────────────────────────────────────────── */
.reveal{
  opacity:0;
  transform:translateY(30px);
  transition:opacity .6s ease-out, transform .6s ease-out;
}
.reveal.visible{
  opacity:1;
  transform:translateY(0);
}

/* Stagger: landing sections inside noTokenLanding */
.noTokenLanding .reveal:nth-child(1){ transition-delay:.1s; }
.noTokenLanding .reveal:nth-child(2){ transition-delay:.2s; }
.noTokenLanding .reveal:nth-child(3){ transition-delay:.3s; }
.noTokenLanding .reveal:nth-child(4){ transition-delay:.4s; }

@media (prefers-reduced-motion: reduce){
  .reveal{
    opacity:1;
    transform:none;
    transition:none;
  }
  .pricingCard{
    transition:none;
  }
}

/* ── Print / PDF export ───────────────────────────────────────────── */
@media print {
  body { background:#fff !important; color:#000 !important; }
  .hero, .section--lakes, .noTokenLanding,
  .sectionTabs, #btnRefresh, #btnPdfDownload, #btnScroll, #btnDemo,
  .reportHead, .summaryCards, .onb-overlay, .lakesetup-overlay,
  #feedbackModal, #payModal, footer { display:none !important; }
  .section--report { padding:0 !important; }
  .reportBox { border:none !important; box-shadow:none !important; }
  .sectionContent { display:block !important; overflow:visible !important; }
  [data-section-id] { break-inside:avoid; }
}

/* ── Species Locator ("Gdzie szukać szczupaka/okonia") ───────────── */
.species-locator{
  margin:20px 0 0;
  padding:20px;
  background:linear-gradient(180deg, rgba(52,211,153,.05), rgba(52,211,153,.02));
  border:1px solid rgba(52,211,153,.22);
  border-radius:16px;
}
.species-locator__head{ margin-bottom:16px; }
.species-locator__eyebrow{
  font-size:10px; font-weight:700; letter-spacing:.12em; text-transform:uppercase;
  color:rgba(52,211,153,.80); margin-bottom:4px;
}
.species-locator__title{
  margin:0 0 6px; font-size:20px; font-weight:700; color:#fff;
}
.species-locator__sub{
  margin:0; font-size:13px; line-height:1.5; color:rgba(255,255,255,.55);
}
.species-locator__form{
  display:grid; grid-template-columns:auto 1fr auto auto; gap:12px;
  align-items:end; margin-top:16px;
}
.species-locator__field{ display:flex; flex-direction:column; gap:6px; min-width:0; }
.species-locator__label{
  font-size:11px; font-weight:600; letter-spacing:.06em; text-transform:uppercase;
  color:rgba(255,255,255,.45);
}
.species-locator__input{
  background:rgba(255,255,255,.07); border:1px solid rgba(255,255,255,.15);
  border-radius:8px; padding:10px 12px; color:#fff; font-size:14px; font-family:inherit;
  min-width:0; outline:none; transition:border-color .15s;
}
.species-locator__input:focus{ border-color:rgba(52,211,153,.6); }
.species-locator__input::placeholder{ color:rgba(255,255,255,.30); }
.species-locator__seg{ display:flex; gap:0; background:rgba(255,255,255,.05); border-radius:8px; padding:2px; }
.species-locator__segBtn{
  flex:1 1 auto; background:none; border:none; color:rgba(255,255,255,.55);
  font-family:inherit; font-size:13px; font-weight:600; padding:8px 14px;
  border-radius:6px; cursor:pointer; transition:background .15s, color .15s;
  white-space:nowrap;
}
.species-locator__segBtn.is-active{ background:rgba(52,211,153,.18); color:#34d399; }
.species-locator__submit{
  background:#34d399; color:#0b1620; border:none; border-radius:8px;
  padding:10px 18px; font-family:inherit; font-size:14px; font-weight:700;
  cursor:pointer; transition:opacity .15s;
  white-space:nowrap; height:fit-content;
}
.species-locator__submit:hover{ opacity:.9; }
.species-locator__submit:active{ transform:translateY(1px); }

.species-locator__result{ margin-top:18px; display:flex; flex-direction:column; gap:16px; }
.species-locator__verdict{
  background:rgba(52,211,153,.08); border:1px solid rgba(52,211,153,.25);
  border-radius:12px; padding:14px 16px; text-align:center;
}
.species-locator__verdictPhase{
  font-size:11px; font-weight:600; letter-spacing:.08em; text-transform:uppercase;
  color:rgba(255,255,255,.55); margin-bottom:4px;
}
.species-locator__verdictDepth{
  font-size:22px; font-weight:800; color:#34d399; line-height:1.2;
}
.species-locator__block{ }
.species-locator__blockTitle{
  margin:0 0 8px; font-size:11px; font-weight:700; letter-spacing:.10em;
  text-transform:uppercase; color:rgba(255,255,255,.55);
}
.species-locator__zones{ list-style:none; padding:0; margin:0; display:flex; flex-direction:column; gap:8px; }
.species-locator__zone{
  background:rgba(255,255,255,.04); border:1px solid rgba(255,255,255,.08);
  border-radius:10px; padding:10px 12px;
}
.species-locator__zoneLabel{ font-size:14px; font-weight:600; color:#fff; margin-bottom:2px; }
.species-locator__zoneWhy{ font-size:12px; color:rgba(255,255,255,.55); line-height:1.4; }
.species-locator__zonesSec{ list-style:disc; padding-left:20px; margin:0; color:rgba(255,255,255,.65); font-size:13px; line-height:1.6; }
.species-locator__zoneSec{ margin-bottom:2px; }
.species-locator__plan{ list-style:none; padding:0; margin:0; counter-reset:slplan; }
.species-locator__plan li{
  font-size:13px; line-height:1.5; color:rgba(255,255,255,.75);
  padding:4px 0;
}
.species-locator__note{
  background:rgba(255,255,255,.03); border-left:3px solid rgba(52,211,153,.45);
  padding:10px 14px; border-radius:0 8px 8px 0;
  font-size:13px; line-height:1.55; color:rgba(255,255,255,.70); font-style:italic;
}
.species-locator__error{
  background:rgba(255,107,107,.08); border:1px solid rgba(255,107,107,.30);
  border-radius:8px; padding:10px 14px; color:#ff6b6b; font-size:13px;
}

@media (max-width: 600px){
  .species-locator{ margin:16px 0 0; padding:14px; }
  .species-locator__title{ font-size:18px; }
  .species-locator__form{ grid-template-columns:minmax(0, 1fr); gap:10px; }
  .species-locator__submit{ width:100%; }
  .species-locator__verdictDepth{ font-size:18px; }
}
