/* SavySaver — premium static UI, September 2026 */
:root {
  --paper: #f7faf8;
  --paper-2: #eef6f2;
  --paper-warm: #fbf8f2;
  --ink: #10231d;
  --ink-soft: #294139;
  --muted: #60736b;
  --faint: #81918a;
  --surface: #ffffff;
  --surface-soft: #fbfdfc;
  --primary: #087561;
  --primary-2: #0b9277;
  --primary-dark: #045345;
  --primary-light: #dff5ed;
  --primary-fg: #ffffff;
  --accent: #ee9550;
  --accent-soft: #fff0e2;
  --blue: #4b79b5;
  --blue-soft: #eaf2fc;
  --gold: #a56a18;
  --gold-soft: #fff3d8;
  --border: #dbe6e0;
  --border-strong: #cbdad2;
  --rule: #d4e0da;
  --chip: #eaf2ee;
  --shadow-xs: 0 2px 8px rgba(17, 46, 37, .035);
  --shadow-sm: 0 8px 26px rgba(17, 46, 37, .07);
  --shadow-md: 0 18px 52px rgba(17, 46, 37, .11);
  --shadow-lg: 0 28px 78px rgba(17, 46, 37, .14);
  --radius-sm: .85rem;
  --radius: 1.35rem;
  --radius-lg: 1.9rem;
  --font-sans: "Figtree", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: "Fraunces", "Iowan Old Style", Palatino, serif;
  --font-mono: "IBM Plex Mono", ui-monospace, monospace;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 7% 1%, rgba(8,117,97,.065), transparent 27rem),
    radial-gradient(circle at 92% 24%, rgba(238,149,80,.045), transparent 30rem),
    linear-gradient(180deg, #fcfdfc 0, var(--paper) 34rem, #f7faf8 100%);
  color: var(--ink);
  font-family: var(--font-sans);
  line-height: 1.64;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
::selection { background: #c9eee1; color: var(--ink); }
a { color: var(--primary); text-underline-offset: .19em; text-decoration-thickness: .07em; }
a:hover { color: var(--primary-dark); }
img, svg { max-width: 100%; }
button, input { font: inherit; }

h1, h2, h3 {
  color: var(--ink);
  font-family: var(--font-display);
  letter-spacing: -.038em;
  line-height: 1.055;
  text-wrap: balance;
  font-weight: 640;
}
h1 { font-size: clamp(2.7rem, 7vw, 5.35rem); margin: .55rem 0 0; }
h2 { font-size: clamp(1.8rem, 3.2vw, 2.55rem); margin: 2.9rem 0 .8rem; }
h3 { font-size: 1.3rem; margin: .45rem 0; }
p { text-wrap: pretty; }

.wrap { width: min(100% - 2.4rem, 74rem); margin-inline: auto; padding-inline: 0; }
.narrow { max-width: 49rem; margin-inline: auto; }
.muted { color: var(--muted); }
.faint { color: var(--faint); font-size: .82rem; }
.kicker {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  margin: 0;
  color: var(--primary);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.kicker::before {
  content: "";
  width: .47rem;
  height: .47rem;
  border-radius: 99px;
  background: currentColor;
  box-shadow: 0 0 0 4px rgba(8,117,97,.09);
}

/* Header */
header.site {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(210,224,216,.72);
  background: rgba(252,254,253,.84);
  backdrop-filter: blur(18px) saturate(1.35);
  -webkit-backdrop-filter: blur(18px) saturate(1.35);
}
.bar { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 4.9rem; }
.brand {
  display: inline-flex;
  align-items: center;
  gap: .68rem;
  color: var(--ink);
  text-decoration: none;
  font-weight: 800;
  letter-spacing: -.026em;
}
.brand .faint {
  padding: .18rem .42rem;
  border: 1px solid rgba(8,117,97,.13);
  border-radius: 999px;
  background: var(--primary-light);
  color: var(--primary-dark);
  font-size: .64rem;
  font-weight: 800;
  letter-spacing: .055em;
  text-transform: uppercase;
}
.mark {
  width: 2.25rem;
  height: 2.25rem;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  border-radius: .78rem .78rem .78rem .28rem;
  background: linear-gradient(145deg, #11a084 0%, #08735f 54%, #045345 100%);
  color: var(--primary-fg);
  font-family: var(--font-display);
  font-size: 1.12rem;
  font-weight: 750;
  box-shadow: 0 9px 22px rgba(8,117,97,.22);
}
.mark::after { content: ""; position: absolute; inset: -55% -20% auto 45%; height: 150%; transform: rotate(24deg); background: rgba(255,255,255,.14); }
nav.desk {
  display: none;
  align-items: center;
  gap: .08rem;
  padding: .28rem;
  border: 1px solid rgba(210,224,216,.74);
  border-radius: 999px;
  background: rgba(255,255,255,.66);
  box-shadow: var(--shadow-xs);
}
nav.desk a {
  padding: .58rem .86rem;
  border-radius: 999px;
  color: var(--ink-soft);
  text-decoration: none;
  font-size: .88rem;
  font-weight: 700;
  transition: background .18s ease, color .18s ease, box-shadow .18s ease;
}
nav.desk a:hover { background: #fff; color: var(--primary-dark); box-shadow: 0 3px 10px rgba(17,46,37,.06); }
.menu { display: block; position: relative; }
.menu summary {
  list-style: none;
  min-height: 2.78rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--surface);
  padding: 0 1rem;
  cursor: pointer;
  color: var(--ink);
  font-weight: 700;
  box-shadow: var(--shadow-xs);
}
.menu summary::-webkit-details-marker { display: none; }
.menu-panel {
  position: absolute;
  right: 0;
  width: min(19rem, calc(100vw - 2rem));
  margin-top: .6rem;
  padding: .65rem;
  border: 1px solid var(--border);
  border-radius: 1.1rem;
  background: rgba(255,255,255,.985);
  box-shadow: var(--shadow-lg);
  z-index: 60;
}
.menu-panel a { display: block; padding: .78rem .9rem; border-radius: .75rem; color: var(--ink); text-decoration: none; font-size: .92rem; font-weight: 650; }
.menu-panel a:hover { background: var(--paper-2); }
.menu-panel a.btn { margin-top: .38rem; text-align: center; color: #fff; }

/* Buttons */
.btn {
  display: inline-flex;
  min-height: 3rem;
  align-items: center;
  justify-content: center;
  gap: .48rem;
  padding: .74rem 1.23rem;
  border: 0;
  border-radius: .9rem;
  cursor: pointer;
  font-family: inherit;
  font-size: .92rem;
  font-weight: 800;
  text-decoration: none;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: linear-gradient(135deg, #0c896f 0%, #08735f 50%, #045345 100%);
  color: var(--primary-fg);
  box-shadow: 0 11px 25px rgba(8,117,97,.22), inset 0 1px 0 rgba(255,255,255,.14);
}
.btn-primary:hover { color: #fff; box-shadow: 0 15px 34px rgba(8,117,97,.29); }
.btn-ghost { background: rgba(255,255,255,.84); color: var(--ink); border: 1px solid var(--border); box-shadow: var(--shadow-xs); }
.btn-ghost:hover { background: #fff; color: var(--primary-dark); border-color: var(--border-strong); }
.cta-desk { display: none; }
.actions { display: flex; flex-wrap: wrap; gap: .7rem; margin: 1.55rem 0 0; }

/* Home hero */
.hero-band {
  overflow: hidden;
  position: relative;
  border-bottom: 1px solid var(--border);
  background:
    radial-gradient(circle at 86% 9%, rgba(238,149,80,.18), transparent 19rem),
    radial-gradient(circle at 79% 82%, rgba(75,121,181,.10), transparent 23rem),
    linear-gradient(132deg, #fbfefc 0%, #edf8f3 52%, #fbf8f1 100%);
}
.hero-band::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .21;
  background-image: radial-gradient(rgba(8,117,97,.38) .68px, transparent .68px);
  background-size: 19px 19px;
  mask-image: linear-gradient(to right, transparent 0, #000 42%, #000 100%);
}
.hero-band::after {
  content: "";
  position: absolute;
  width: 26rem;
  height: 26rem;
  right: -12rem;
  top: 6rem;
  border: 1px solid rgba(8,117,97,.09);
  border-radius: 50%;
  box-shadow: 0 0 0 4rem rgba(8,117,97,.024), 0 0 0 8rem rgba(8,117,97,.018);
}
.hero {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 2.7rem;
  align-items: center;
  max-width: none;
  padding-block: clamp(3.6rem, 8vw, 7rem);
}
.hero-copy { max-width: 44rem; }
.hero h1 { max-width: 10.5ch; }
.accent-word { position: relative; display: inline-block; color: var(--primary-dark); }
.accent-word::after { content: ""; position: absolute; left: -.02em; right: -.05em; bottom: .04em; height: .14em; border-radius: 999px; background: linear-gradient(90deg, rgba(238,149,80,.68), rgba(238,149,80,.18)); z-index: -1; transform: rotate(-1.5deg); }
.hero .lead { max-width: 39rem; margin: 1.25rem 0 0; color: var(--muted); font-size: clamp(1.05rem, 2vw, 1.23rem); }
.hero-trust { display: flex; flex-wrap: wrap; gap: .55rem; margin-top: 1.4rem; }
.trust-chip {
  display: inline-flex;
  align-items: center;
  gap: .43rem;
  padding: .49rem .72rem;
  border: 1px solid rgba(8,117,97,.12);
  border-radius: 999px;
  background: rgba(255,255,255,.74);
  color: var(--ink-soft);
  font-size: .79rem;
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(17,46,37,.025);
}
.trust-chip::before { content: "✓"; display: grid; place-items: center; width: 1.08rem; height: 1.08rem; border-radius: 99px; background: var(--primary-light); color: var(--primary-dark); font-size: .7rem; font-weight: 900; }
.hero-visual {
  position: relative;
  max-width: 32rem;
  padding: .9rem;
  border: 1px solid rgba(255,255,255,.92);
  border-radius: 2rem;
  background: rgba(255,255,255,.68);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(12px);
  transform: rotate(.35deg);
}
.hero-visual::before { content: ""; position: absolute; inset: -1px; border-radius: inherit; padding: 1px; background: linear-gradient(145deg, rgba(255,255,255,.98), rgba(8,117,97,.16), rgba(238,149,80,.16)); -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); -webkit-mask-composite: xor; mask-composite: exclude; pointer-events: none; }
.hero-visual::after { content: ""; position: absolute; right: -1.4rem; bottom: -1.5rem; width: 7.7rem; height: 7.7rem; border-radius: 2.2rem; background: linear-gradient(145deg, rgba(238,149,80,.42), rgba(238,149,80,.02)); transform: rotate(13deg); z-index: -1; }
.dashboard-top { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin: .2rem .25rem .8rem; }
.dashboard-label { display: flex; align-items: center; gap: .55rem; color: var(--ink-soft); font-size: .75rem; font-weight: 800; letter-spacing: .05em; text-transform: uppercase; }
.dashboard-dots { display: flex; gap: .32rem; }
.dashboard-dots i { display: block; width: .48rem; height: .48rem; border-radius: 99px; background: #d6e2dc; }
.dashboard-dots i:first-child { background: #f0aa72; }
.dashboard-dots i:nth-child(2) { background: #e9c66b; }
.dashboard-dots i:last-child { background: #7fbea9; }
.saver-panel { overflow: hidden; border: 1px solid var(--border); border-radius: 1.35rem; background: rgba(255,255,255,.96); box-shadow: var(--shadow-sm); }
.saver-panel-head { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1.15rem 1.2rem; border-bottom: 1px solid #e7efeb; background: linear-gradient(180deg,#fff,#fbfdfc); }
.saver-panel-head strong { font-size: .99rem; }
.live-dot { display: inline-flex; align-items: center; gap: .35rem; color: var(--primary); font-size: .69rem; font-weight: 850; text-transform: uppercase; letter-spacing: .09em; }
.live-dot::before { content: ""; width: .5rem; height: .5rem; border-radius: 99px; background: #1da979; box-shadow: 0 0 0 4px rgba(29,169,121,.11); }
.saver-row { display: grid; grid-template-columns: 2.7rem 1fr auto; align-items: center; gap: .82rem; padding: 1.02rem 1.15rem; border-bottom: 1px solid #edf2ef; transition: background .18s ease, transform .18s ease; }
a.saver-row:hover { background: #fbfefc; transform: translateX(2px); }
.saver-row:last-child { border-bottom: 0; }
.saver-icon { width: 2.55rem; height: 2.55rem; display: grid; place-items: center; border-radius: .85rem; font-size: 1.02rem; font-weight: 850; box-shadow: inset 0 0 0 1px rgba(0,0,0,.025); }
.saver-icon.shopping { background: var(--accent-soft); color: #a65b1e; }
.saver-icon.telco { background: var(--blue-soft); color: #315e93; }
.saver-icon.energy { background: var(--gold-soft); color: #936015; }
.saver-row b { display: block; font-size: .92rem; color: var(--ink); }
.saver-row span { color: var(--muted); font-size: .76rem; }
.saver-go { width: 1.8rem; height: 1.8rem; display: grid; place-items: center; border-radius: 99px; background: var(--paper-2); color: var(--primary); font-size: 1rem; font-weight: 850; }

/* Home reassurance strip */
.reassure-wrap { position: relative; z-index: 4; margin-top: -1.55rem; }
.reassure {
  display: grid;
  grid-template-columns: 1fr;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 1.35rem;
  background: rgba(255,255,255,.96);
  box-shadow: var(--shadow-md);
}
.reassure-item { display: flex; gap: .72rem; align-items: center; padding: .95rem 1.1rem; border-bottom: 1px solid var(--border); }
.reassure-item:last-child { border-bottom: 0; }
.reassure-icon { width: 2.15rem; height: 2.15rem; flex: 0 0 auto; display: grid; place-items: center; border-radius: .72rem; background: var(--primary-light); color: var(--primary-dark); font-weight: 900; }
.reassure-item b { display: block; font-size: .86rem; }
.reassure-item span { display: block; color: var(--muted); font-size: .75rem; line-height: 1.3; }

/* Cards and layouts */
.grid-3, .grid-2 { display: grid; gap: 1.1rem; }
.card {
  position: relative;
  overflow: hidden;
  min-height: 11rem;
  display: flex;
  flex-direction: column;
  padding: 1.45rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(255,255,255,.92);
  color: inherit;
  text-decoration: none;
  box-shadow: var(--shadow-xs);
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease, background .22s ease;
}
.card::before { content: ""; position: absolute; inset: 0; pointer-events: none; background: linear-gradient(145deg, rgba(255,255,255,.35), transparent 45%); opacity: 0; transition: opacity .22s ease; }
a.card:hover { transform: translateY(-5px); border-color: rgba(8,117,97,.24); box-shadow: var(--shadow-md); color: inherit; background: #fff; }
a.card:hover::before { opacity: 1; }
.card h3 { font-size: 1.38rem; }
.card .muted { margin-bottom: .35rem; }
.category-card { min-height: 18rem; padding-bottom: 4.2rem; }
.category-card::after {
  content: "→";
  position: absolute;
  right: 1.25rem;
  bottom: 1.2rem;
  width: 2.15rem;
  height: 2.15rem;
  display: grid;
  place-items: center;
  border-radius: 99px;
  background: #fff;
  color: var(--primary-dark);
  font-weight: 900;
  box-shadow: 0 4px 13px rgba(17,46,37,.08);
  transition: transform .2s ease;
}
a.category-card:hover::after { transform: translateX(3px); }
.category-card.shopping { background: linear-gradient(160deg, #fff 38%, #fff7ee 100%); }
.category-card.telco { background: linear-gradient(160deg, #fff 38%, #f0f6fd 100%); }
.category-card.energy { background: linear-gradient(160deg, #fff 38%, #fff8e5 100%); }
.category-card.shopping::before, .category-card.telco::before, .category-card.energy::before { opacity: 1; height: 4px; inset: 0 0 auto; }
.category-card.shopping::before { background: linear-gradient(90deg,#ee9550,#f7c69f); }
.category-card.telco::before { background: linear-gradient(90deg,#4b79b5,#91afd5); }
.category-card.energy::before { background: linear-gradient(90deg,#b87a20,#efd38f); }
.icon {
  width: 3.15rem;
  height: 3.15rem;
  display: grid;
  place-items: center;
  margin-bottom: 1.15rem;
  border-radius: .95rem;
  background: var(--primary-light);
  color: var(--primary);
  box-shadow: inset 0 0 0 1px rgba(8,117,97,.06), 0 6px 16px rgba(17,46,37,.04);
}
.category-card.shopping .icon { background: var(--accent-soft); color: #a65918; }
.category-card.telco .icon { background: var(--blue-soft); color: #315f96; }
.category-card.energy .icon { background: var(--gold-soft); color: #986013; }
.icon svg { width: 1.35rem; height: 1.35rem; }
.section-shell { padding-block: clamp(4rem, 7vw, 5.9rem); }
.section-head { max-width: 40rem; margin-bottom: 1.8rem; }
.section-head h2 { margin-top: .52rem; }
.soft-panel {
  position: relative;
  overflow: hidden;
  padding: clamp(1.55rem, 4vw, 2.7rem);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 92% 10%, rgba(8,117,97,.08), transparent 14rem),
    linear-gradient(145deg, rgba(255,255,255,.98), rgba(238,247,243,.93));
  box-shadow: var(--shadow-sm);
}
.soft-panel::after { content: ""; position: absolute; right: -5rem; top: -7rem; width: 16rem; height: 16rem; border: 1px solid rgba(8,117,97,.07); border-radius: 50%; box-shadow: 0 0 0 3rem rgba(8,117,97,.018); pointer-events: none; }

/* Article pages */
article.narrow { padding-bottom: 4.8rem !important; }
.crumbs { margin: 2.35rem 0 0; color: var(--faint); font-size: .84rem; font-weight: 700; }
.crumbs a { color: var(--muted); text-decoration: none; }
.crumbs a:hover { color: var(--primary); }
article.narrow > h1 { font-size: clamp(2.65rem, 6vw, 4.6rem); max-width: 14ch; margin-top: .62rem; }
article.narrow > h1 + .muted { max-width: 43rem; font-size: 1.14rem !important; line-height: 1.7; }
article.narrow > .kicker { margin-top: 1.8rem !important; }
article.narrow .crumbs:first-child + h1, article.narrow .crumbs:first-child + .kicker { margin-top: 1.2rem; }
.prose { font-size: 1.03rem; }
.prose > p, .prose > ul, .prose > ol { max-width: 44rem; }
.prose p + p { margin-top: 1.12rem; }
.prose li + li { margin-top: .48rem; }
.prose a { font-weight: 700; }
.prose h2 { margin-top: 3.3rem; padding-top: .35rem; }
.prose ul { padding-left: 1.25rem; }
.prose li::marker { color: var(--primary); }
.step { list-style: none; padding: 0; margin: 1.45rem 0 2.7rem; counter-reset: step; }
.step li {
  position: relative;
  padding: 1.3rem 1.25rem 1.4rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: linear-gradient(145deg, #fff, #f9fcfa);
  box-shadow: var(--shadow-sm);
}
.step li::after { content: ""; position: absolute; top: 0; left: 1.2rem; right: 1.2rem; height: 3px; border-radius: 0 0 4px 4px; background: linear-gradient(90deg, var(--primary), rgba(8,117,97,.12)); }
.step h3 { font-size: 1.2rem; }

/* FAQ */
details.faq {
  margin: .72rem 0;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: 1rem;
  background: rgba(255,255,255,.86);
  box-shadow: var(--shadow-xs);
  transition: border-color .18s ease, box-shadow .18s ease;
}
details.faq:hover { border-color: var(--border-strong); }
details.faq[open] { box-shadow: var(--shadow-sm); }
details.faq summary { position: relative; cursor: pointer; list-style: none; padding: 1.03rem 3.15rem 1.03rem 1.1rem; color: var(--ink); font-weight: 750; }
details.faq summary::-webkit-details-marker { display: none; }
details.faq summary::after { content: "+"; position: absolute; right: 1rem; top: .76rem; width: 1.9rem; height: 1.9rem; display: grid; place-items: center; border-radius: 99px; background: var(--paper-2); color: var(--primary); font-size: 1.1rem; font-weight: 700; }
details.faq[open] summary::after { content: "–"; background: var(--primary-light); }
details.faq[open] summary { border-bottom: 1px solid var(--border); }
details.faq > p, details.faq > div { margin: 0; padding: 1rem 1.1rem 1.2rem; }

/* Interactive tools */
#check {
  position: relative;
  overflow: hidden;
  padding: clamp(1.15rem, 3vw, 1.6rem);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.94);
  box-shadow: var(--shadow-lg);
}
#check::before { content: ""; position: absolute; inset: 0 0 auto; height: 4px; background: linear-gradient(90deg,var(--primary),#42ad8e,#8ecdb8); }
#check > h2 { margin: .62rem 0 1.3rem; }
.choice {
  display: flex;
  min-height: 4.15rem;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: .85rem;
  margin: 0 0 .72rem;
  padding: .92rem 1.05rem;
  border: 1px solid var(--border);
  border-radius: .95rem;
  background: #fff;
  color: var(--ink);
  cursor: pointer;
  text-align: left;
  box-shadow: var(--shadow-xs);
  transition: transform .16s ease, border-color .16s ease, background .16s ease, box-shadow .16s ease;
}
.choice:hover { transform: translateY(-2px); border-color: rgba(8,117,97,.30); background: #fbfefc; box-shadow: var(--shadow-sm); }
.choice strong { font-size: .99rem; }
.choice span { color: var(--muted); font-size: .86rem; }
label.kicker { margin: 1.2rem 0 .45rem; }
input[type="number"] {
  width: 100%;
  height: 3.2rem;
  padding: 0 .95rem;
  border: 1px solid var(--border);
  border-radius: .9rem;
  outline: none;
  background: #fff;
  color: var(--ink);
  box-shadow: var(--shadow-xs);
  transition: border-color .16s ease, box-shadow .16s ease;
}
input[type="number"]:focus { border-color: var(--primary); box-shadow: 0 0 0 4px rgba(8,117,97,.10); }
.row-btns { display: flex; flex-wrap: wrap; gap: .45rem; margin: .72rem 0; }
.row-btns button { border: 1px solid var(--border); border-radius: 999px; background: #fff; color: var(--ink-soft); padding: .44rem .82rem; cursor: pointer; font-size: .8rem; font-weight: 700; box-shadow: var(--shadow-xs); }
.row-btns button:hover { border-color: rgba(8,117,97,.3); color: var(--primary-dark); background: var(--paper-2); }
.result { margin-top: 1.15rem; padding: 1.35rem; border-radius: 1.05rem; background: linear-gradient(145deg, #0d866e, var(--primary-dark)); color: #fff; box-shadow: 0 16px 38px rgba(8,117,97,.20); }
.result.alt { border: 1px solid var(--border); background: #fff; color: var(--ink); box-shadow: var(--shadow-xs); }
.big { margin: .2rem 0; font-family: var(--font-display); font-size: 2.4rem; font-variant-numeric: tabular-nums; }
.note { padding: 1.05rem 1.2rem; border: 1px solid #ccded4; border-radius: .95rem; background: #edf8f3; color: var(--ink-soft); }
code { padding: .1rem .35rem; border-radius: .3rem; background: var(--chip); font-family: var(--font-mono); font-size: .9em; }

/* Guides index */
main > article.wrap:not(.narrow) > h1 { font-size: clamp(2.65rem,6vw,4.65rem); max-width: 12ch; }
main > article.wrap:not(.narrow) { padding-top: 1.6rem; }
main > article.wrap:not(.narrow) .grid-2 .card { min-height: 13rem; }
main > article.wrap:not(.narrow) .grid-2 .card::after { content: "→"; position: absolute; right: 1.25rem; bottom: 1.1rem; width: 2rem; height: 2rem; display: grid; place-items: center; border-radius: 99px; background: var(--paper-2); color: var(--primary); font-weight: 900; }

/* Footer */
footer.site { margin-top: 4.5rem; border-top: 1px solid var(--border); background: linear-gradient(180deg,#eef5f1,#e8f0ec); }
footer.site .inner { display: grid; gap: 2.2rem; padding: 3.5rem 0 2.7rem; }
footer.site ul { list-style: none; padding: 0; margin: .7rem 0 0; }
footer.site li { margin: .42rem 0; }
footer.site a { color: var(--ink-soft); text-decoration: none; font-size: .9rem; font-weight: 600; }
footer.site a:hover { color: var(--primary); }
footer.site .kicker::before { display: none; }
footer.site .kicker { color: var(--faint); }

/* Accessibility */
.skip { position: fixed; left: 1rem; top: -5rem; z-index: 100; padding: .65rem .9rem; border-radius: .6rem; background: var(--ink); color: #fff; text-decoration: none; }
.skip:focus { top: 1rem; }
:focus-visible { outline: 3px solid rgba(8,117,97,.34); outline-offset: 3px; }

@media (min-width: 720px) {
  .grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hero { grid-template-columns: minmax(0, 1.16fr) minmax(20rem, .84fr); }
  .reassure { grid-template-columns: repeat(3, 1fr); }
  .reassure-item { border-bottom: 0; border-right: 1px solid var(--border); }
  .reassure-item:last-child { border-right: 0; }
  footer.site .inner { grid-template-columns: 1.5fr 1fr 1fr; }
}
@media (min-width: 900px) {
  nav.desk { display: flex; }
  .menu { display: none; }
  .cta-desk { display: inline-flex !important; }
}
@media (max-width: 719px) {
  .wrap { width: min(100% - 1.45rem, 74rem); }
  .brand .faint { display: none; }
  h1 { font-size: clamp(2.65rem, 13vw, 3.85rem); }
  .hero { padding-block: 3.5rem 4rem; gap: 2.3rem; }
  .hero-visual { margin-top: .25rem; transform: none; }
  .hero-trust { gap: .42rem; }
  .trust-chip { font-size: .74rem; }
  .card { padding: 1.2rem; }
  .category-card { min-height: 15rem; }
  .choice { align-items: flex-start; flex-direction: column; }
  .choice span { margin-top: -.3rem; }
  .section-shell { padding-block: 3.45rem; }
  article.narrow > h1 { font-size: clamp(2.5rem, 12vw, 3.65rem); }
  .reassure-wrap { margin-top: -1.15rem; }
}
@media (max-width: 430px) {
  .actions .btn { width: 100%; }
  .saver-panel-head { padding-inline: 1rem; }
  .saver-row { padding-inline: 1rem; }
  .hero-visual { padding: .65rem; border-radius: 1.5rem; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}

/* Calculator shell */
.tool-shell {
  position: relative;
  overflow: hidden;
  margin-top: 1.7rem;
  padding: clamp(1.2rem, 3vw, 1.65rem);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.94);
  box-shadow: var(--shadow-lg);
}
.tool-shell::before { content: ""; position: absolute; inset: 0 0 auto; height: 4px; background: linear-gradient(90deg,#ee9550,#f4c39e,#0b9277); }
.tool-shell .result { margin-top: 1.3rem; }
.tool-shell label:first-child { margin-top: .35rem; }
.editorial-card { border-color: rgba(8,117,97,.13); box-shadow: 0 12px 34px rgba(17,46,37,.07); }
.editorial-card h3 { max-width: 18ch; }
