:root {
  --ink: #132238;
  --ink-soft: #4e6075;
  --navy: #071c31;
  --navy-2: #0c2a45;
  --blue: #1768e5;
  --blue-dark: #0e52bf;
  --cyan: #2ed3c6;
  --amber: #ffb649;
  --paper: #f4f7fb;
  --white: #fff;
  --line: #dbe4ee;
  --line-dark: #bfcddb;
  --strong: #0aa17f;
  --medium: #df8a18;
  --weak: #8391a3;
  --danger: #c84a55;
  --shadow: 0 18px 55px rgba(20, 42, 71, .10);
  --shadow-soft: 0 8px 28px rgba(20, 42, 71, .08);
  --radius: 18px;
  --shell: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; }
button, input, select { font: inherit; }
button { cursor: pointer; }
img, svg { display: block; max-width: 100%; }
code { padding: .16rem .38rem; border-radius: 6px; background: #e9eef5; }

.shell { width: min(calc(100% - 40px), var(--shell)); margin-inline: auto; }
.skip-link { position: fixed; top: -80px; left: 16px; z-index: 1000; padding: 10px 16px; color: #fff; background: var(--blue); border-radius: 8px; }
.skip-link:focus { top: 16px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  color: #fff;
  background: rgba(7, 28, 49, .95);
  border-bottom: 1px solid rgba(255,255,255,.09);
  backdrop-filter: blur(18px);
}
.header-inner { min-height: 74px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 11px; color: inherit; text-decoration: none; font-size: 1.04rem; letter-spacing: -.015em; white-space: nowrap; }
.brand strong { font-weight: 800; }
.brand-mark { position: relative; display: inline-grid; place-items: center; width: 34px; height: 34px; border: 1px solid rgba(46,211,198,.45); border-radius: 50%; overflow: hidden; }
.brand-mark::before, .brand-mark::after { content: ""; position: absolute; border: 1px solid rgba(46,211,198,.5); border-radius: 50%; }
.brand-mark::before { width: 20px; height: 20px; }
.brand-mark::after { width: 8px; height: 8px; background: var(--cyan); box-shadow: 0 0 14px var(--cyan); }
.brand-mark i { position: absolute; left: 50%; bottom: 50%; width: 1px; height: 50%; background: linear-gradient(transparent, var(--cyan)); transform-origin: bottom; }
.brand-mark i:nth-child(1) { transform: rotate(18deg); }
.brand-mark i:nth-child(2) { transform: rotate(138deg); opacity: .45; }
.brand-mark i:nth-child(3) { transform: rotate(258deg); opacity: .25; }
.main-nav { display: flex; align-items: center; gap: 8px; }
.main-nav a { padding: 10px 13px; border-radius: 9px; color: #b9c9d9; text-decoration: none; font-size: .91rem; font-weight: 650; transition: .18s ease; }
.main-nav a:hover, .main-nav a[aria-current="page"] { color: #fff; background: rgba(255,255,255,.07); }
.main-nav .nav-cta { margin-left: 7px; padding-inline: 17px; color: var(--navy); background: var(--cyan); }
.main-nav .nav-cta:hover { color: var(--navy); background: #6ce0d6; }

.hero, .page-hero, .detail-hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 82% 14%, rgba(46,211,198,.16), transparent 31%),
    radial-gradient(circle at 18% 90%, rgba(23,104,229,.28), transparent 34%),
    var(--navy);
}
.hero::after, .page-hero::after, .detail-hero::after { content: ""; position: absolute; inset: 0; opacity: .07; pointer-events: none; background-image: linear-gradient(rgba(255,255,255,.5) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.5) 1px, transparent 1px); background-size: 58px 58px; mask-image: linear-gradient(to right, transparent, #000 55%); }
.hero-grid { position: relative; z-index: 1; min-height: 630px; display: grid; grid-template-columns: 1.08fr .92fr; align-items: center; gap: 68px; padding-block: 86px; }
.hero-copy { max-width: 665px; }
.eyebrow, .overline { display: inline-flex; align-items: center; gap: 9px; color: var(--cyan); font-size: .76rem; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
.eyebrow i { width: 8px; height: 8px; border-radius: 50%; background: currentColor; box-shadow: 0 0 0 5px rgba(46,211,198,.12); }
.hero h1, .page-hero h1, .detail-hero h1 { margin: 23px 0 22px; max-width: 800px; font-size: clamp(2.45rem, 5vw, 4.6rem); line-height: 1.03; letter-spacing: -.052em; }
.hero h1 em { color: var(--cyan); font-style: normal; }
.hero-copy > p { max-width: 650px; margin: 0; color: #c6d3df; font-size: 1.09rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.button { min-height: 46px; display: inline-flex; align-items: center; justify-content: center; gap: 10px; padding: 11px 18px; border: 1px solid transparent; border-radius: 10px; text-decoration: none; font-weight: 800; font-size: .91rem; transition: transform .16s ease, background .16s ease, border-color .16s ease; }
.button:hover { transform: translateY(-1px); }
.button:focus-visible, input:focus-visible, select:focus-visible, .icon-button:focus-visible, a:focus-visible { outline: 3px solid rgba(46,211,198,.5); outline-offset: 2px; }
.button-primary { color: #fff; background: var(--blue); box-shadow: 0 10px 24px rgba(23,104,229,.22); }
.button-primary:hover { background: var(--blue-dark); }
.button-ghost { color: #fff; border-color: rgba(255,255,255,.28); background: rgba(255,255,255,.04); }
.button-ghost:hover { border-color: rgba(255,255,255,.5); background: rgba(255,255,255,.08); }
.button-light { color: var(--ink); border-color: var(--line); background: #fff; }
.button-light:hover { border-color: var(--line-dark); background: #f9fbfd; }
.button.full { width: 100%; }
.microcopy { margin-top: 18px !important; color: #8da3b7 !important; font-size: .78rem !important; }

.hero-panel { position: relative; padding: 24px; border: 1px solid rgba(255,255,255,.12); border-radius: 22px; background: rgba(12,42,69,.76); box-shadow: 0 30px 80px rgba(0,0,0,.25); backdrop-filter: blur(13px); }
.hero-panel::before { content: ""; position: absolute; inset: -1px; z-index: -1; border-radius: inherit; background: linear-gradient(135deg, rgba(46,211,198,.33), transparent 32%, transparent 72%, rgba(23,104,229,.3)); }
.panel-top { display: flex; align-items: center; justify-content: space-between; padding-bottom: 16px; color: #9fb2c4; font-size: .76rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; border-bottom: 1px solid rgba(255,255,255,.09); }
.live-dot { display: inline-flex; align-items: center; gap: 7px; color: #88e8d9; }
.live-dot::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 0 5px rgba(46,211,198,.1); }
.hero-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; margin: 19px 0; overflow: hidden; border-radius: 11px; background: rgba(255,255,255,.08); }
.hero-stats div { padding: 18px 13px; background: rgba(7,28,49,.72); }
.hero-stats strong { display: block; color: #fff; font-size: 1.72rem; line-height: 1; letter-spacing: -.04em; }
.hero-stats span { display: block; margin-top: 7px; color: #91a7ba; font-size: .7rem; line-height: 1.35; }
.mini-feed { display: grid; gap: 8px; }
.mini-feed > a { display: grid; grid-template-columns: 42px 1fr 18px; align-items: center; gap: 11px; padding: 12px; border: 1px solid transparent; border-radius: 11px; color: #fff; background: rgba(255,255,255,.045); text-decoration: none; transition: .16s ease; }
.mini-feed > a:hover { border-color: rgba(46,211,198,.24); background: rgba(255,255,255,.075); }
.mini-score { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 10px; color: var(--cyan); background: rgba(46,211,198,.11); font-weight: 900; }
.mini-feed b, .mini-feed small { display: block; }
.mini-feed b { display: -webkit-box; overflow: hidden; font-size: .79rem; line-height: 1.35; -webkit-line-clamp: 2; -webkit-box-orient: vertical; }
.mini-feed small { margin-top: 3px; overflow: hidden; color: #91a7ba; font-size: .67rem; text-overflow: ellipsis; white-space: nowrap; }
.mini-feed i { color: var(--cyan); font-style: normal; }
.panel-link { display: flex; justify-content: space-between; margin-top: 14px; padding: 13px 3px 0; color: #b7c9d9; text-decoration: none; font-size: .78rem; font-weight: 750; }
.panel-link:hover { color: #fff; }

.section { padding-block: 86px; }
.section-tight { padding-block: 0; }
.proof-strip { position: relative; z-index: 2; display: grid; grid-template-columns: repeat(4, 1fr); margin-top: -1px; border: 1px solid var(--line); border-top: 0; border-radius: 0 0 16px 16px; background: #fff; box-shadow: var(--shadow-soft); }
.proof-strip span { padding: 22px 18px; color: var(--ink-soft); font-size: .78rem; text-align: center; border-right: 1px solid var(--line); }
.proof-strip span:last-child { border: 0; }
.proof-strip b { margin-right: 6px; color: var(--blue); font-size: 1.05rem; }
.section-head { display: flex; align-items: end; justify-content: space-between; gap: 30px; margin-bottom: 30px; }
.section-head.narrow { max-width: 760px; }
.section-head h2, .coverage h2, .content-card h2, .price-card h2, .price-explainer h2 { margin: 5px 0 0; font-size: clamp(1.65rem, 3vw, 2.5rem); line-height: 1.15; letter-spacing: -.035em; }
.text-link { color: var(--blue); font-weight: 800; text-decoration: none; white-space: nowrap; }
.text-link:hover { text-decoration: underline; }

.opportunity-list { display: grid; gap: 13px; }
.opportunity-card { position: relative; display: grid; grid-template-columns: 76px 1fr 30px; align-items: center; gap: 20px; min-height: 154px; padding: 22px 23px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; box-shadow: 0 2px 0 rgba(20,42,71,.02); transition: border-color .17s ease, box-shadow .17s ease, transform .17s ease; }
.opportunity-card:hover { transform: translateY(-2px); border-color: #b9cce1; box-shadow: var(--shadow-soft); }
.card-score { --tone: var(--weak); position: relative; display: grid; place-items: center; align-content: center; width: 70px; height: 70px; border-radius: 50%; background: radial-gradient(circle at center, #fff 54%, transparent 56%), conic-gradient(var(--tone) calc(var(--score) * 1%), #e6ecf2 0); }
.card-score.score-silna, .detail-score.score-silna { --tone: var(--strong); }
.card-score.score-stredni, .detail-score.score-stredni { --tone: var(--medium); }
.card-score strong { color: var(--tone); font-size: 1.27rem; line-height: 1; }
.card-score span { margin-top: 3px; color: #95a1af; font-size: .57rem; font-weight: 800; }
.card-kicker { display: flex; flex-wrap: wrap; align-items: center; gap: 9px; color: var(--ink-soft); font-size: .7rem; font-weight: 700; }
.status { display: inline-flex; padding: 4px 8px; border-radius: 99px; color: #08765f; background: #e5f8f2; font-size: .64rem; font-weight: 850; letter-spacing: .03em; text-transform: uppercase; }
.status-po_terminu, .status-vysledek { color: #69788a; background: #edf1f5; }
.card-body h3 { margin: 7px 0 4px; font-size: 1.05rem; line-height: 1.35; letter-spacing: -.015em; }
.card-body h3 a { text-decoration: none; }
.card-body h3 a:hover { color: var(--blue); }
.buyer { margin: 0; color: var(--ink-soft); font-size: .79rem; }
.card-meta { display: flex; flex-wrap: wrap; gap: 10px 26px; margin-top: 15px; }
.card-meta span { display: grid; color: var(--ink); font-size: .77rem; font-weight: 700; }
.card-meta b { margin-bottom: 1px; color: var(--ink-soft); font-size: .59rem; letter-spacing: .06em; text-transform: uppercase; }
.card-meta small { color: var(--ink-soft); font-size: .64rem; font-weight: 600; }
.reason { margin: 13px 0 0; padding-left: 12px; color: var(--ink-soft); font-size: .75rem; border-left: 2px solid #cbd8e6; }
.card-arrow { color: #9aabba; text-decoration: none; font-size: 1.35rem; transition: .16s ease; }
.opportunity-card:hover .card-arrow { color: var(--blue); transform: translateX(3px); }
.opportunity-card.compact { grid-template-columns: 50px 1fr 20px; min-height: 92px; padding: 13px; border-radius: 12px; box-shadow: none; }
.opportunity-card.compact .card-score { width: 46px; height: 46px; }
.opportunity-card.compact .card-score strong { font-size: .92rem; }
.opportunity-card.compact .card-kicker { display: none; }
.opportunity-card.compact h3 { margin-top: 0; font-size: .82rem; }
.opportunity-card.compact .buyer { font-size: .68rem; }

.mechanism { color: #fff; background: var(--navy); }
.mechanism .section-head h2 { color: #fff; }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.steps article { position: relative; min-height: 280px; padding: 30px; overflow: hidden; border: 1px solid rgba(255,255,255,.11); border-radius: var(--radius); background: rgba(255,255,255,.035); }
.steps article::after { content: ""; position: absolute; right: -35px; bottom: -55px; width: 150px; height: 150px; border: 1px solid rgba(46,211,198,.15); border-radius: 50%; box-shadow: 0 0 0 25px rgba(46,211,198,.025), 0 0 0 55px rgba(46,211,198,.018); }
.steps article > span { color: var(--cyan); font-size: .72rem; font-weight: 900; letter-spacing: .12em; }
.steps h3 { margin: 48px 0 12px; font-size: 1.25rem; }
.steps p { margin: 0; color: #aebfd0; font-size: .9rem; }
.coverage { background: #e8f0f8; }
.coverage-grid { display: grid; grid-template-columns: .8fr 1.2fr; align-items: start; gap: 100px; }
.coverage-grid p { margin-top: 0; color: var(--ink-soft); font-size: 1.02rem; }

.page-hero { padding-block: 105px 80px; }
.page-hero.small { padding-block: 72px 58px; }
.page-hero .shell { position: relative; z-index: 1; }
.page-hero.small h1 { max-width: 900px; margin-block: 17px 14px; font-size: clamp(2.2rem, 4vw, 3.6rem); }
.page-hero p { max-width: 760px; margin: 0; color: #bac9d7; font-size: 1.03rem; }
.radar-section { padding-top: 48px; }
.radar-layout { display: grid; grid-template-columns: 284px 1fr; align-items: start; gap: 30px; }
.filters { position: sticky; top: 98px; }
.filters form, .content-card, .fact-card, .saved-alert, .price-card, .price-explainer { padding: 24px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; box-shadow: var(--shadow-soft); }
.filter-heading { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.filter-heading h2 { margin: 0; font-size: 1.2rem; }
.filter-heading a { color: var(--blue); font-size: .72rem; font-weight: 750; text-decoration: none; }
label { display: grid; gap: 7px; margin-bottom: 17px; color: #485a6e; font-size: .72rem; font-weight: 800; }
input, select { width: 100%; min-height: 44px; padding: 10px 11px; color: var(--ink); border: 1px solid var(--line-dark); border-radius: 9px; background: #fff; font-size: .83rem; }
input::placeholder { color: #9aa8b7; }
fieldset { min-width: 0; margin: 0 0 18px; padding: 0; border: 0; }
legend { margin-bottom: 9px; color: #485a6e; font-size: .72rem; font-weight: 800; }
.check { grid-template-columns: 17px 1fr; align-items: center; gap: 8px; margin: 0; padding: 6px 0; font-size: .75rem; font-weight: 650; }
.check input { width: 16px; min-height: 16px; margin: 0; accent-color: var(--blue); }
.filter-note { display: grid; margin-top: 14px; padding: 15px; border: 1px solid var(--line); border-radius: 12px; background: #edf3f9; }
.filter-note strong { font-size: .72rem; }
.filter-note span { color: var(--ink-soft); font-size: .64rem; }
.results { min-width: 0; }
.results-head { display: flex; align-items: end; justify-content: space-between; gap: 20px; margin-bottom: 20px; }
.results-head .overline { color: #08765f; }
.results-head h2 { margin: 2px 0 0; font-size: 1.65rem; letter-spacing: -.03em; }
.results-head p { margin: 3px 0 0; color: var(--ink-soft); font-size: .7rem; }
.empty-state { padding: 55px 24px; color: var(--ink-soft); text-align: center; border: 1px dashed var(--line-dark); border-radius: var(--radius); background: rgba(255,255,255,.5); }
.empty-state h3 { margin: 0 0 7px; color: var(--ink); }
.empty-inline { color: #9fb1c1; font-size: .8rem; }
.limit-note { color: var(--ink-soft); font-size: .75rem; text-align: center; }
.pagination { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 14px; margin-top: 25px; }
.pagination > :last-child { justify-self: end; }
.pagination strong { color: var(--ink-soft); font-size: .75rem; }

.detail-hero { padding-block: 58px 65px; }
.detail-hero .shell { position: relative; z-index: 1; }
.breadcrumbs { display: flex; gap: 9px; color: #8fa6ba; font-size: .75rem; }
.breadcrumbs a { color: #b8cadd; text-decoration: none; }
.detail-title-grid { display: grid; grid-template-columns: 1fr 190px; align-items: end; gap: 60px; margin-top: 38px; }
.detail-hero h1 { max-width: 900px; margin-block: 13px 12px; font-size: clamp(2rem, 4vw, 3.3rem); line-height: 1.12; }
.lead { margin: 0; color: #b7c8d7; }
.detail-score { --tone: var(--weak); position: relative; display: grid; padding: 20px; overflow: hidden; border: 1px solid rgba(255,255,255,.13); border-radius: 18px; background: rgba(255,255,255,.06); }
.detail-score::before { content: ""; position: absolute; right: -30px; bottom: -50px; width: 150px; height: 150px; border: 24px solid color-mix(in srgb, var(--tone) 15%, transparent); border-radius: 50%; }
.detail-score > * { position: relative; z-index: 1; }
.detail-score span { color: #92a9bc; font-size: .68rem; font-weight: 800; text-transform: uppercase; }
.detail-score strong { margin: 10px 0 3px; color: var(--tone); font-size: 2.55rem; line-height: 1; }
.detail-score small { color: #8399aa; font-size: .8rem; }
.detail-score b { font-size: .72rem; }
.detail-section { padding-top: 48px; }
.detail-layout { display: grid; grid-template-columns: 1fr 330px; align-items: start; gap: 28px; }
.detail-main { display: grid; gap: 18px; }
.content-card { padding: 30px; }
.content-card h2 { margin-bottom: 21px; font-size: 1.55rem; }
.reason-list { display: grid; gap: 10px; margin: 0; padding: 0; list-style: none; }
.reason-list li { display: grid; grid-template-columns: 28px 1fr; align-items: start; gap: 9px; color: var(--ink-soft); font-size: .9rem; }
.reason-list i { display: grid; place-items: center; width: 25px; height: 25px; color: #08765f; border-radius: 50%; background: #e4f8f1; font-size: .7rem; font-style: normal; font-weight: 900; }
.callout { margin: 23px 0 0; padding: 16px 18px; color: #625023; border-left: 3px solid var(--amber); border-radius: 4px 10px 10px 4px; background: #fff8e8; font-size: .79rem; }
.description { color: var(--ink-soft); white-space: pre-line; }
.tag-list { display: flex; flex-wrap: wrap; gap: 7px; }
.tag { display: inline-flex; padding: 5px 9px; color: #53657a; border: 1px solid var(--line); border-radius: 99px; background: #f8fafc; font-size: .69rem; font-weight: 700; }
.tag.primary { color: #095c9a; border-color: #c8e1f5; background: #eaf5fd; }
.tag.mono { font-family: ui-monospace, SFMono-Regular, Consolas, monospace; }
.source-warning { padding: 28px 30px; color: #fff; border-radius: var(--radius); background: var(--navy-2); }
.source-warning strong { font-size: 1.15rem; }
.source-warning p { margin: 7px 0 19px; color: #b7c8d6; font-size: .85rem; }
.detail-aside { position: sticky; top: 98px; display: grid; gap: 15px; }
.fact-card { box-shadow: none; }
.fact-card h2 { margin: 0 0 15px; font-size: 1rem; }
dl { margin: 0; }
dl > div { display: grid; grid-template-columns: .8fr 1.2fr; gap: 12px; padding: 12px 0; border-top: 1px solid var(--line); }
dt { color: #8090a2; font-size: .68rem; font-weight: 750; }
dd { margin: 0; font-size: .76rem; font-weight: 800; text-align: right; overflow-wrap: anywhere; }
dd small { display: block; color: #8796a5; font-size: .63rem; font-weight: 600; }
.fact-card.subtle { color: var(--ink-soft); background: #eaf1f8; }
.fact-card.subtle p { margin: 5px 0; font-size: .71rem; }
.fact-card.subtle a { display: inline-block; margin-top: 10px; color: var(--blue); font-size: .73rem; font-weight: 800; text-decoration: none; }

.alert-layout { display: grid; grid-template-columns: 340px 1fr; align-items: start; gap: 30px; }
.alert-form { position: sticky; top: 98px; }
.alert-form form { margin-top: 23px; }
.form-error { margin: 15px 0 0; padding: 11px 13px; border-radius: 10px; color: #8a241c; background: #fff0ed; font-size: .78rem; font-weight: 750; }
.form-note { margin: 13px 0 0; color: var(--ink-soft); font-size: .69rem; }
.saved-alerts { min-width: 0; }
.saved-alert { margin-bottom: 18px; box-shadow: none; }
.saved-alert > header { display: flex; justify-content: space-between; gap: 20px; }
.saved-alert h3 { margin: 0; }
.saved-alert header p { margin: 3px 0 12px; color: var(--ink-soft); font-size: .75rem; }
.icon-button { display: grid; place-items: center; width: 34px; height: 34px; color: #66778a; border: 1px solid var(--line); border-radius: 9px; background: #fff; font-size: 1.2rem; }
.icon-button:hover { color: var(--danger); border-color: #edc5ca; background: #fff5f6; }
.alert-preview { display: grid; gap: 8px; margin-top: 17px; }

.prose-grid { display: grid; grid-template-columns: 1.2fr .8fr; align-items: start; gap: 55px; }
.prose { max-width: 830px; }
.prose h2 { margin: 35px 0 11px; font-size: 1.55rem; letter-spacing: -.025em; }
.prose h2:first-child { margin-top: 0; }
.prose p, .prose li { color: var(--ink-soft); }
.prose a { color: var(--blue); }
.method-card { display: grid; gap: 12px; padding: 24px; border-radius: var(--radius); color: #fff; background: var(--navy); }
.method-card > h2 { margin: 0 0 6px; font-size: 1.2rem; }
.method-card article { padding: 17px; border: 1px solid rgba(255,255,255,.1); border-radius: 12px; background: rgba(255,255,255,.04); }
.method-card h3 { margin: 8px 0 5px; font-size: .92rem; }
.method-card p, .method-card small { display: block; margin: 0; color: #aabed0; font-size: .7rem; }
.method-card small { margin-top: 6px; }
.method-card a { display: inline-block; margin-top: 10px; color: var(--cyan); font-size: .7rem; font-weight: 800; text-decoration: none; }
.source-state { padding: 3px 7px; color: #b1bdc8; border-radius: 99px; background: rgba(255,255,255,.08); font-size: .58rem; font-weight: 900; text-transform: uppercase; }
.source-state.enabled { color: var(--cyan); background: rgba(46,211,198,.11); }

.pricing-hero { text-align: center; }
.pricing-hero h1, .pricing-hero p { margin-inline: auto; }
.pricing-grid { display: grid; grid-template-columns: .9fr 1.1fr; align-items: stretch; gap: 26px; max-width: 950px; }
.price-card.featured { position: relative; border-color: #a8c8ed; box-shadow: var(--shadow); }
.price { display: flex; align-items: baseline; gap: 8px; margin: 20px 0; }
.price strong { font-size: 2rem; letter-spacing: -.05em; }
.price span { color: var(--ink-soft); font-size: .72rem; }
.price-card ul { display: grid; gap: 9px; padding-left: 20px; color: var(--ink-soft); font-size: .86rem; }
.price-card > p { color: var(--ink-soft); font-size: .68rem; text-align: center; }
.price-explainer ol { display: grid; gap: 18px; margin: 25px 0; padding: 0; counter-reset: steps; list-style: none; }
.price-explainer li { display: grid; grid-template-columns: 34px 1fr; column-gap: 11px; counter-increment: steps; }
.price-explainer li::before { content: counter(steps); grid-row: 1 / span 2; display: grid; place-items: center; width: 33px; height: 33px; color: var(--blue); border-radius: 9px; background: #e9f2fd; font-size: .72rem; font-weight: 900; }
.price-explainer li b, .price-explainer li span { display: block; }
.price-explainer li span, .price-explainer > p { color: var(--ink-soft); font-size: .79rem; }
.empty-page { position: relative; z-index: 1; text-align: center; }
.empty-page h1, .empty-page p { margin-inline: auto; }

.site-footer { padding-block: 56px; color: #96aabd; background: #061728; }
.footer-grid { display: grid; grid-template-columns: 1.4fr .8fr .9fr; gap: 65px; }
.footer-grid > div { display: flex; flex-direction: column; align-items: start; gap: 7px; }
.footer-brand { margin-bottom: 8px; color: #fff; }
.footer-grid p, .footer-grid a, .footer-grid span { margin: 0; color: #96aabd; font-size: .72rem; text-decoration: none; }
.footer-grid a:hover { color: #fff; }
.footer-grid > div > strong { margin-bottom: 8px; color: #d3dce5; font-size: .72rem; text-transform: uppercase; letter-spacing: .07em; }

@media (max-width: 980px) {
  .main-nav a:not(.nav-cta) { display: none; }
  .hero-grid { grid-template-columns: 1fr; gap: 45px; }
  .hero-copy { max-width: 780px; }
  .hero-panel { max-width: 700px; }
  .radar-layout { grid-template-columns: 245px 1fr; gap: 20px; }
  .opportunity-card { grid-template-columns: 64px 1fr 22px; gap: 14px; padding: 19px; }
  .card-score { width: 60px; height: 60px; }
  .detail-layout { grid-template-columns: 1fr 285px; }
  .detail-title-grid { gap: 30px; }
  .coverage-grid { gap: 55px; }
}

@media (max-width: 780px) {
  .shell { width: min(calc(100% - 28px), var(--shell)); }
  .header-inner { min-height: 66px; }
  .main-nav .nav-cta { padding-inline: 12px; font-size: .77rem; }
  .hero-grid { min-height: auto; padding-block: 68px; }
  .hero h1 { font-size: clamp(2.35rem, 11vw, 3.5rem); }
  .proof-strip { grid-template-columns: repeat(2, 1fr); }
  .proof-strip span:nth-child(2) { border-right: 0; }
  .proof-strip span:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .section { padding-block: 62px; }
  .steps { grid-template-columns: 1fr; }
  .steps article { min-height: 220px; }
  .steps h3 { margin-top: 30px; }
  .coverage-grid, .prose-grid, .pricing-grid { grid-template-columns: 1fr; gap: 30px; }
  .radar-layout, .detail-layout, .alert-layout { grid-template-columns: 1fr; }
  .filters, .detail-aside, .alert-form { position: static; }
  .filters form { display: grid; grid-template-columns: 1fr 1fr; gap: 0 14px; }
  .filter-heading, .filters form fieldset, .filters form .full { grid-column: 1 / -1; }
  .detail-title-grid { grid-template-columns: 1fr; }
  .detail-score { max-width: 210px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 35px; }
  .footer-grid > div:first-child { grid-column: 1 / -1; }
}

@media (max-width: 540px) {
  body { font-size: 15px; }
  .brand { font-size: .91rem; }
  .brand-mark { width: 31px; height: 31px; }
  .main-nav .nav-cta { margin: 0; min-height: 39px; padding: 8px 10px; }
  .hero-grid { padding-block: 55px; }
  .hero h1, .page-hero.small h1 { letter-spacing: -.045em; }
  .hero-actions { display: grid; }
  .button { width: 100%; }
  .hero-panel { padding: 17px; }
  .hero-stats { grid-template-columns: 1fr; }
  .hero-stats div { display: flex; align-items: baseline; justify-content: space-between; }
  .hero-stats span { margin: 0; }
  .mini-feed > a { grid-template-columns: 39px 1fr 14px; padding: 9px; }
  .proof-strip { width: 100%; border-inline: 0; border-radius: 0; }
  .proof-strip span { padding: 17px 9px; font-size: .68rem; }
  .section-head, .results-head { align-items: start; flex-direction: column; }
  .section-head .button, .results-head .button { width: auto; }
  .opportunity-card { grid-template-columns: 52px 1fr; align-items: start; gap: 11px; padding: 16px; }
  .card-score { width: 50px; height: 50px; }
  .card-score strong { font-size: 1rem; }
  .card-arrow { display: none; }
  .card-meta { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
  .card-meta span:last-child { display: none; }
  .reason { display: none; }
  .opportunity-card.compact { grid-template-columns: 45px 1fr; }
  .page-hero.small { padding-block: 55px 46px; }
  .filters form { grid-template-columns: 1fr; }
  .filter-heading, .filters form fieldset, .filters form .full { grid-column: auto; }
  .content-card { padding: 22px 18px; }
  .detail-hero { padding-block: 42px 48px; }
  .detail-title-grid { margin-top: 27px; }
  .detail-hero h1 { font-size: 2rem; }
  dl > div { grid-template-columns: 1fr; gap: 3px; }
  dd { text-align: left; }
  .source-warning { padding: 23px 20px; }
  .source-warning .button { text-align: center; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-grid > div:first-child { grid-column: auto; }
}
