:root {
  --bg: #f7f9fc;
  --surface: #ffffff;
  --surface-2: #eef4f7;
  --ink: #101828;
  --muted: #5f6c7b;
  --line: #dce5ea;
  --primary: #126b5f;
  --primary-dark: #0b3f38;
  --accent: #f2b84b;
  --blue: #2f6fed;
  --danger: #d24b4b;
  --shadow: 0 18px 45px rgba(16, 24, 40, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 20% 0%, rgba(47, 111, 237, 0.18), transparent 34%),
    radial-gradient(circle at 82% 14%, rgba(242, 184, 75, 0.12), transparent 28%),
    #07151d;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  line-height: 1.55;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(7, 21, 29, 0.08), rgba(247, 249, 252, 0.72) 58%, rgba(247, 249, 252, 0.96));
}

.network-canvas {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(220, 229, 234, 0.78);
  background: rgba(247, 249, 252, 0.92);
  backdrop-filter: blur(16px);
}

main,
.site-footer {
  position: relative;
  z-index: 2;
}

.nav {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 850;
  letter-spacing: 0;
}

.brand-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: #ffffff;
  background: var(--primary-dark);
  font-size: 14px;
  font-weight: 900;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  flex-wrap: wrap;
}

.nav-links a {
  padding: 9px 11px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 750;
  border-radius: 8px;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary-dark);
  background: #e6f1ee;
}

.language-switcher {
  display: inline-flex;
  align-items: center;
}

.language-switcher select {
  min-height: 36px;
  padding: 0 32px 0 11px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--primary-dark);
  background: #ffffff;
  font: inherit;
  font-size: 14px;
  font-weight: 850;
  cursor: pointer;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.button,
.store-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 850;
  line-height: 1;
}

.button.primary,
.store-button {
  color: #ffffff;
  background: var(--primary-dark);
  box-shadow: 0 12px 28px rgba(11, 63, 56, 0.16);
}

.button.secondary {
  color: var(--primary-dark);
  background: #ffffff;
  border-color: var(--line);
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(110deg, rgba(7, 21, 29, 0.92), rgba(9, 46, 41, 0.7) 52%, rgba(47, 111, 237, 0.36));
  background-size: cover;
  background-position: center;
  color: #ffffff;
}

.hero::after,
.page-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 160px;
  pointer-events: none;
  background: linear-gradient(180deg, transparent, rgba(247, 249, 252, 0.96));
}

.hero > *,
.page-hero > * {
  position: relative;
  z-index: 1;
}

.hero-grid {
  min-height: 690px;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  align-items: center;
  gap: 44px;
  padding: 70px 0 54px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero h1,
.page-hero h1 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(42px, 7vw, 82px);
  line-height: 0.96;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 650px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 19px;
}

.hero-actions,
.cta-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.hero-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 34px;
  max-width: 700px;
}

.point {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.92);
  font-weight: 760;
}

.point-icon,
.feature-icon {
  width: 31px;
  height: 31px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 8px;
  background: rgba(242, 184, 75, 0.18);
}

.phone-stack {
  position: relative;
  min-height: 560px;
}

.phone {
  width: min(310px, 100%);
  min-height: 590px;
  margin-left: auto;
  border: 10px solid #17212b;
  border-radius: 32px;
  background: #f8fafc;
  box-shadow: 0 35px 90px rgba(0, 0, 0, 0.32);
  overflow: hidden;
}

.phone.small {
  position: absolute;
  left: 0;
  bottom: 24px;
  width: 238px;
  min-height: 430px;
  border-width: 8px;
  border-radius: 27px;
  transform: rotate(-4deg);
}

.phone-screen {
  padding: 18px;
  color: var(--ink);
}

.app-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.app-title {
  font-weight: 900;
}

.pill {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 9px;
  border-radius: 999px;
  color: var(--primary-dark);
  background: #dff1ed;
  font-size: 12px;
  font-weight: 850;
}

.map-card {
  min-height: 175px;
  border-radius: 18px;
  background:
    linear-gradient(90deg, transparent 48%, rgba(255, 255, 255, 0.8) 49%, transparent 51%),
    linear-gradient(0deg, transparent 46%, rgba(255, 255, 255, 0.8) 47%, transparent 49%),
    #dcebe8;
  position: relative;
  overflow: hidden;
}

.map-card::before,
.map-card::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  background: var(--accent);
}

.map-card::before {
  width: 16px;
  height: 16px;
  left: 42px;
  top: 44px;
}

.map-card::after {
  width: 20px;
  height: 20px;
  right: 54px;
  bottom: 42px;
  background: var(--primary);
}

.price-row,
.parking-row,
.score-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 12px;
  padding: 12px;
  border-radius: 12px;
  background: #ffffff;
  border: 1px solid var(--line);
}

.price-row strong,
.parking-row strong,
.score-row strong {
  display: block;
  color: var(--ink);
}

.price-row span,
.parking-row span,
.score-row span {
  color: var(--muted);
  font-size: 12px;
}

.price {
  color: var(--primary);
  font-weight: 900;
}

.section {
  padding: 80px 0;
  background: rgba(247, 249, 252, 0.96);
}

.section.alt {
  background: rgba(238, 244, 247, 0.96);
}

.section-head {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-head h2,
.cta h2,
.content h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.05;
}

.section-head p,
.cta p,
.content p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 17px;
}

.product-grid,
.feature-grid,
.trust-grid,
.screens-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.product-grid.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.product-card,
.feature-card,
.trust-card,
.contact-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  box-shadow: var(--shadow);
}

.product-card h3,
.feature-card h3,
.trust-card h3,
.contact-card h3 {
  margin: 12px 0 8px;
  font-size: 22px;
}

.product-card p,
.feature-card p,
.trust-card p,
.contact-card p,
.product-card li,
.content li {
  color: var(--muted);
}

.product-card ul,
.content ul {
  padding-left: 20px;
}

.product-link {
  display: inline-flex;
  margin-top: 10px;
  color: var(--primary-dark);
  font-weight: 900;
}

.app-logo {
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  color: #ffffff;
  font-weight: 950;
  box-shadow: 0 16px 34px rgba(16, 24, 40, 0.16);
}

.app-logo.large {
  width: min(280px, 80vw);
  height: min(280px, 80vw);
  border-radius: 46px;
  font-size: 48px;
}

.fuel-logo {
  background: linear-gradient(135deg, #0b3f38, #19a184);
}

.electricity-logo {
  background:
    radial-gradient(circle at 50% 34%, rgba(39, 223, 193, 0.86), transparent 28%),
    linear-gradient(135deg, #061936, #092b56 45%, #0b3f38);
  position: relative;
  overflow: hidden;
}

.electricity-logo::before {
  content: "";
  position: absolute;
  width: 58%;
  height: 58%;
  border: 8px solid #f5d94e;
  border-left-color: #8bdc56;
  border-bottom-color: transparent;
  border-radius: 50%;
  top: 16%;
}

.electricity-logo::after {
  content: "";
  position: absolute;
  width: 66%;
  height: 20%;
  bottom: 28%;
  border-radius: 999px;
  background: #ffffff;
}

.electricity-logo span {
  position: relative;
  z-index: 1;
  align-self: end;
  margin-bottom: 10px;
  color: #82f0c6;
}

.parking-logo {
  background: linear-gradient(135deg, #2f6fed, #18a17f);
}

.news-logo {
  background:
    radial-gradient(circle at 50% 24%, rgba(47, 111, 237, 0.86), transparent 24%),
    linear-gradient(135deg, #04070f, #0b1d3a 48%, #b32222);
}

.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
  align-items: center;
  gap: 34px;
}

.hero-logo-card {
  display: grid;
  place-items: center;
}

.price-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.table-controls {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 0 0 16px;
}

.table-controls button {
  min-height: 38px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--primary-dark);
  background: #ffffff;
  font: inherit;
  font-weight: 850;
}

.table-controls button.active {
  color: #ffffff;
  background: var(--primary-dark);
  border-color: var(--primary-dark);
}

.price-table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
}

.price-table th,
.price-table td {
  padding: 15px 16px;
  text-align: left;
  border-bottom: 1px solid var(--line);
}

.price-table td:first-child {
  white-space: nowrap;
  font-weight: 850;
}

.price-table th {
  color: var(--primary-dark);
  background: #eaf4f1;
  font-size: 13px;
  text-transform: uppercase;
}

.price-table tr:last-child td {
  border-bottom: 0;
}

.operator-logo {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  margin-right: 10px;
  border-radius: 12px;
  color: #ffffff;
  font-size: 13px;
  font-weight: 950;
  vertical-align: middle;
}

.operator-logo.totalenergies {
  position: relative;
  overflow: hidden;
  color: transparent;
  background:
    radial-gradient(circle at 64% 24%, #1d8cff 0 21%, transparent 22%),
    radial-gradient(circle at 65% 67%, #f4d21c 0 20%, transparent 21%),
    linear-gradient(135deg, #f60808 0 38%, #f35f16 48%, #2d64ff 76%, #6c45f2);
}

.operator-logo.totalenergies::before {
  content: "te";
  position: absolute;
  color: #ffffff;
  font-size: 15px;
  font-weight: 950;
  letter-spacing: -1px;
}

.operator-logo.esso {
  background: linear-gradient(135deg, #d91f2b, #f2f5ff);
  color: #12316f;
}

.operator-logo.carrefour {
  background: linear-gradient(135deg, #0a55a3, #e51b3e);
}

.operator-logo.shell {
  background: linear-gradient(135deg, #f7cf34, #d9232e);
  color: #4a2300;
}

.operator-logo.eni {
  background: linear-gradient(135deg, #111827, #f2b84b);
}

.operator-logo.q8 {
  background: linear-gradient(135deg, #123c8c, #e5232f);
}

.operator-logo.ip {
  background: linear-gradient(135deg, #0b3f38, #f2b84b);
}

.operator-logo.tamoil {
  background: linear-gradient(135deg, #d90416, #111827);
}

.operator-logo.repsol {
  background: linear-gradient(135deg, #f28a1a, #d9232e);
}

.operator-logo.cepsa {
  background: linear-gradient(135deg, #e5232f, #8b1f2f);
}

.operator-logo.bp {
  background: linear-gradient(135deg, #56b847, #f5d94e);
  color: #0b3f38;
}

.operator-logo.galp {
  background: linear-gradient(135deg, #f97316, #e5232f);
}

.source-link {
  color: var(--primary-dark);
  font-weight: 900;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.source-link:hover {
  color: var(--blue);
}

.station-brand.france {
  background: linear-gradient(135deg, #21468b, #ffffff 52%, #ae1c28);
  color: #07151d;
}

.station-brand.italy {
  background: linear-gradient(135deg, #008c45, #f4f5f0 52%, #cd212a);
  color: #07151d;
}

.station-brand.spain {
  background: linear-gradient(135deg, #aa151b, #f1bf00 52%, #aa151b);
  color: #07151d;
}

.station-brand {
  width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  margin-right: 10px;
  border-radius: 8px;
  color: #ffffff;
  font-size: 12px;
  font-weight: 950;
  vertical-align: middle;
}

.station-brand.total {
  background: linear-gradient(135deg, #e03030, #1954a6);
}

.station-brand.esso {
  background: linear-gradient(135deg, #d91f2b, #f2f5ff);
  color: #12316f;
}

.station-brand.carrefour {
  background: linear-gradient(135deg, #0a55a3, #e51b3e);
}

.station-brand.shell {
  background: linear-gradient(135deg, #f7cf34, #d9232e);
  color: #4a2300;
}

.station-brand.france {
  background: linear-gradient(135deg, #21468b, #ffffff 52%, #ae1c28);
  color: #07151d;
}

.station-brand.italy {
  background: linear-gradient(135deg, #008c45, #f4f5f0 52%, #cd212a);
  color: #07151d;
}

.station-brand.spain {
  background: linear-gradient(135deg, #aa151b, #f1bf00 52%, #aa151b);
  color: #07151d;
}

.chart-panel {
  margin-top: 22px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.chart-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 12px;
}

.chart-head h3 {
  margin: 0;
}

.chart-head span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.fuel-chart {
  overflow-x: auto;
}

.fuel-chart svg {
  width: 100%;
  min-width: 680px;
  height: auto;
}

.grid-lines line {
  stroke: #dce5ea;
  stroke-width: 1;
}

.axis-labels text {
  fill: var(--muted);
  font-size: 13px;
  font-weight: 750;
}

.line {
  fill: none;
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.line.sp95 {
  stroke: #126b5f;
}

.line.sp98 {
  stroke: #2f6fed;
}

.line.diesel {
  stroke: #f2b84b;
}

.sp95-fill {
  background: #126b5f;
  fill: #126b5f;
}

.sp98-fill {
  background: #2f6fed;
  fill: #2f6fed;
}

.diesel-fill {
  background: #f2b84b;
  fill: #f2b84b;
}

.chart-legend {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 12px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 850;
}

.chart-legend i {
  width: 11px;
  height: 11px;
  display: inline-block;
  margin-right: 7px;
  border-radius: 999px;
}

.appliance-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.appliance-card {
  display: grid;
  gap: 8px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.appliance-card span {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: #ffffff;
  background: var(--primary-dark);
  font-weight: 900;
}

.appliance-card small {
  color: var(--muted);
}

.appliance-card b {
  color: var(--primary);
  font-size: 22px;
}

.fuel-workflow {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 24px;
  align-items: stretch;
  margin-bottom: 26px;
}

.workflow-copy,
.workflow-steps article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.workflow-copy {
  padding: 28px;
}

.workflow-copy h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.06;
}

.workflow-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 17px;
}

.workflow-steps {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.workflow-steps article {
  position: relative;
  overflow: hidden;
  padding: 22px;
}

.workflow-steps article::after {
  content: "";
  position: absolute;
  width: 92px;
  height: 92px;
  right: -34px;
  bottom: -42px;
  border-radius: 50%;
  background: rgba(18, 107, 95, 0.08);
}

.workflow-steps span {
  color: var(--accent);
  font-size: 13px;
  font-weight: 950;
}

.workflow-steps strong {
  display: block;
  margin-top: 8px;
  color: var(--ink);
  font-size: 21px;
}

.workflow-steps small {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 14px;
}

.ecosystem-preview {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 24px;
}

.ecosystem-flow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.flow-card,
.score-card,
.signal-card,
.formula-panel,
.impact-result {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.flow-card {
  position: relative;
  padding: 24px;
}

.flow-card span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: #ffffff;
  background: var(--primary-dark);
  font-weight: 950;
}

.flow-card h3,
.signal-card h3 {
  margin: 16px 0 8px;
}

.flow-card p,
.signal-card p,
.score-card p,
.impact-result p {
  color: var(--muted);
}

.formula-panel {
  padding: 22px;
  margin-bottom: 18px;
  overflow-x: auto;
}

.formula-panel code {
  color: var(--primary-dark);
  font-size: 18px;
  font-weight: 850;
  white-space: nowrap;
}

.score-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.score-card {
  padding: 18px;
}

.score-card strong {
  display: block;
  color: var(--primary);
  font-size: 34px;
  line-height: 1;
}

.score-card span {
  display: block;
  margin-top: 8px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
}

.score-card p {
  margin-bottom: 0;
  font-size: 14px;
}

.impact-result {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 20px;
  align-items: center;
  margin-top: 18px;
  padding: 22px;
  background: #0b3f38;
  color: #ffffff;
}

.impact-result span {
  display: block;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
}

.impact-result strong {
  font-size: 54px;
  line-height: 1;
}

.impact-result p {
  color: rgba(255, 255, 255, 0.82);
}

.signal-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.signal-card {
  padding: 24px;
}

.signal-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
}

.signal-row span {
  color: var(--muted);
}

.signal-row strong {
  color: var(--primary-dark);
}

.source-tabs {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  margin-bottom: 20px;
}

.source-tabs span {
  min-width: 128px;
  padding: 12px 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  color: var(--muted);
  text-align: center;
  font-weight: 850;
}

.source-tabs .active {
  color: #ffffff;
  background: #6f55c8;
}

.source-architecture {
  display: grid;
  gap: 22px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f3f0fb;
  box-shadow: var(--shadow);
}

.source-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.source-stats span {
  display: block;
  color: var(--muted);
  font-weight: 750;
}

.source-stats strong {
  color: #2f6fed;
  font-size: 44px;
  line-height: 1;
}

.bias-bar {
  display: flex;
  height: 26px;
  overflow: hidden;
  border-radius: 999px;
  background: #d8deea;
}

.bias-bar span {
  display: block;
}

.center {
  background: #2f6fed;
}

.left {
  background: #efbd09;
}

.right {
  background: #e5232f;
}

.other {
  background: #6f7d8e;
}

.bias-list {
  display: grid;
  gap: 12px;
}

.bias-list div {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-weight: 750;
}

.bias-list i {
  width: 18px;
  height: 18px;
  border-radius: 999px;
}

.bias-list strong {
  margin-left: auto;
}

.color-code-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.color-code-grid article {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 8px 10px;
  align-items: center;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.color-code-grid i {
  width: 18px;
  height: 18px;
  border-radius: 999px;
}

.color-code-grid strong {
  color: var(--ink);
}

.color-code-grid span {
  grid-column: 2;
  color: var(--muted);
  font-size: 13px;
}

.source-module-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.source-group {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f7f4ff;
  box-shadow: var(--shadow);
}

.source-card {
  display: grid;
  grid-template-columns: 62px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding: 16px 0;
  border-top: 1px solid rgba(220, 229, 234, 0.8);
}

.source-logo {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: #ffffff;
  font-weight: 950;
}

.source-card strong,
.source-card small {
  display: block;
}

.source-card small {
  color: var(--muted);
}

.tag {
  display: inline-flex;
  margin-top: 9px;
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 13px;
}

.tag.center {
  color: #2f6fed;
  background: #dfe8ff;
}

.tag.left {
  color: #b88600;
  background: #fff5d8;
}

.tag.right {
  color: #b8202a;
  background: #ffe1e5;
}

.tag.state {
  color: #9a5420;
  background: #f2dfd1;
}

.cnn { background: #d90416; }
.wsj { background: #17212b; }
.bbc { background: #225bd8; }
.fox { background: #245ed6; }
.ch { background: #158296; }
.br { background: #285ad8; }
.csis { background: #0b3f38; }
.xh, .tass { background: #dfe6ff; color: #37428f; }
.ap { background: #111827; }

.source-data-panel {
  margin-top: 22px;
}

.source-data-table .mini-badge {
  margin: 0;
}

.mini-badge {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  color: #ffffff;
  font-size: 13px;
  font-weight: 850;
}

.mini-badge.center {
  background: #2f6fed;
}

.mini-badge.left {
  background: #efbd09;
  color: #513900;
}

.mini-badge.right {
  background: #e5232f;
}

.mini-badge.state {
  background: #b96a35;
}

.news-signal-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.news-signal-card {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.news-signal-card h3 {
  margin: 14px 0 8px;
}

.news-signal-card p {
  color: var(--muted);
}

.news-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.news-meta span {
  color: var(--primary-dark);
  font-weight: 900;
}

.news-meta b {
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 12px;
}

.impact-high .news-meta b {
  color: #ffffff;
  background: #d24b4b;
}

.impact-medium .news-meta b {
  color: #4a3500;
  background: #f2b84b;
}

.impact-low .news-meta b {
  color: #0b3f38;
  background: #dff1ed;
}

.news-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.news-tags span:not(.mini-badge) {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  color: var(--muted);
  background: #eef4f7;
  font-size: 13px;
  font-weight: 800;
}

.publisher-list {
  display: grid;
  gap: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f7f4ff;
  box-shadow: var(--shadow);
}

.publisher-list article {
  padding: 22px 28px;
  border-bottom: 1px solid rgba(220, 229, 234, 0.88);
}

.publisher-list article:last-child {
  border-bottom: 0;
}

.publisher-list strong {
  font-size: 20px;
}

.publisher-list p {
  margin: 8px 0;
  color: var(--muted);
  font-size: 19px;
}

.publisher-list span {
  color: #6f55c8;
  font-weight: 750;
}

.screenshot {
  min-height: 360px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.mini-screen {
  height: 100%;
  min-height: 324px;
  border-radius: 18px;
  padding: 16px;
  background: #f7fafb;
  border: 1px solid var(--line);
}

.meter {
  height: 10px;
  margin-top: 10px;
  border-radius: 999px;
  background: #e8eef2;
  overflow: hidden;
}

.meter span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: var(--primary);
}

.cta {
  color: #ffffff;
  background: var(--primary-dark);
  padding: 70px 0;
}

.cta p {
  color: rgba(255, 255, 255, 0.78);
}

.cta .store-button {
  color: var(--primary-dark);
  background: #ffffff;
}

.store-button .store-small {
  display: block;
  font-size: 11px;
  font-weight: 700;
  opacity: 0.78;
}

.store-button .store-main {
  display: block;
  font-size: 17px;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 80px 0 54px;
  color: #ffffff;
  background:
    linear-gradient(110deg, rgba(7, 21, 29, 0.94), rgba(9, 46, 41, 0.76) 52%, rgba(47, 111, 237, 0.44));
  background-size: cover;
  background-position: center;
}

.page-hero p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 19px;
}

.content {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 28px;
  box-shadow: var(--shadow);
}

.content + .content {
  margin-top: 18px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.site-footer {
  padding: 34px 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
  background: #ffffff;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--primary-dark);
  font-weight: 800;
}

@media (max-width: 880px) {
  .nav {
    align-items: flex-start;
    flex-direction: column;
    padding: 14px 0;
  }

  .nav-links {
    justify-content: flex-start;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 48px;
  }

  .phone-stack {
    min-height: 520px;
  }

  .phone {
    margin: 0 auto;
  }

  .phone.small {
    left: 50%;
    transform: translateX(-92%) rotate(-4deg);
  }

  .product-grid,
  .feature-grid,
  .trust-grid,
  .screens-grid,
  .ecosystem-flow,
  .score-grid,
  .signal-grid,
  .source-module-grid,
  .source-stats,
  .color-code-grid,
  .news-signal-grid,
  .appliance-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .product-grid.four,
  .page-hero-grid,
  .ecosystem-preview,
  .impact-result,
  .fuel-workflow,
  .workflow-steps {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100% - 28px, 1120px);
  }

  .hero h1,
  .page-hero h1 {
    font-size: 42px;
  }

  .hero-points {
    grid-template-columns: 1fr;
  }

  .phone-stack {
    min-height: 450px;
  }

  .phone {
    width: 260px;
    min-height: 500px;
  }

  .phone.small {
    width: 200px;
    min-height: 360px;
  }

  .section {
    padding: 58px 0;
  }
}
