:root {
  color-scheme: dark;
  --bg: #070b12;
  --panel: #101722;
  --panel-2: #151d2b;
  --text: #f5f1e8;
  --muted: #aeb9ce;
  --line: rgba(255, 255, 255, 0.11);
  --gold: #e3c47c;
  --cyan: #48c7d8;
  --red: #a8504b;
  --max: 1180px;
  --font-ui: Bahnschrift, "Segoe UI", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-family: var(--font-ui);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: inherit;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }

.hd-icon {
  display: inline-block;
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  color: var(--gold);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 1;
  filter: drop-shadow(0 0 10px rgba(227, 196, 124, 0.26));
}

.topbar {
  position: fixed;
  z-index: 50;
  inset: 0 0 auto;
  min-height: 72px;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 12px clamp(16px, 4vw, 56px);
  border-bottom: 1px solid var(--line);
  background: rgba(7, 11, 18, 0.88);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

.brand img {
  height: 42px;
  width: auto;
  max-width: 132px;
  object-fit: contain;
  border: 1px solid rgba(227, 196, 124, 0.24);
  border-radius: 8px;
  background: rgba(7, 11, 18, 0.54);
  box-shadow: 0 0 18px rgba(227, 196, 124, 0.10);
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-left: auto;
}

.nav a,
.lang-toggle,
.chip {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 8px 10px;
  color: var(--muted);
  background: rgba(16, 23, 34, 0.72);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  gap: 7px;
}

.nav a .hd-icon {
  width: 18px;
  height: 18px;
  color: var(--gold);
  filter: drop-shadow(0 0 8px rgba(227, 196, 124, 0.26));
}

.nav a:hover,
.nav a.is-active,
.lang-toggle:hover,
.chip:hover,
.chip.active {
  color: var(--gold);
  border-color: rgba(227, 196, 124, 0.5);
}

.nav a:hover .hd-icon,
.nav a.is-active .hd-icon {
  color: var(--cyan);
  filter: drop-shadow(0 0 10px rgba(72, 199, 216, 0.42));
}

.hero {
  min-height: 620px;
  position: relative;
  display: grid;
  align-items: end;
  padding: 118px clamp(18px, 6vw, 82px) 54px;
  overflow: hidden;
}

.hero-bg,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.56;
}

.hero-shade {
  background:
    radial-gradient(circle at 72% 24%, rgba(72, 199, 216, 0.18), transparent 34%),
    linear-gradient(90deg, rgba(7, 11, 18, 0.98), rgba(7, 11, 18, 0.74), rgba(7, 11, 18, 0.20)),
    linear-gradient(0deg, var(--bg), transparent 45%);
}

.hero-copy {
  position: relative;
  max-width: 920px;
}

.kicker {
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 860px;
  margin-bottom: 18px;
  font-size: clamp(48px, 7vw, 104px);
  line-height: 0.92;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 12px;
  font-size: clamp(30px, 4vw, 58px);
  line-height: 1;
}

.hero-copy > p:not(.kicker),
.section-head p {
  color: #c9d5e8;
  font-size: 18px;
  line-height: 1.55;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 180px));
  gap: 12px;
  margin-top: 28px;
}

.hero-metrics article,
.promise-section,
.promise-grid article,
.control-band,
.priority-card,
.readiness-card,
.cluster-card,
.later-card,
.rules-section,
.footer {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(18, 27, 41, 0.95), rgba(8, 13, 21, 0.95));
}

.hero-metrics article {
  padding: 16px;
}

.hero-metrics strong {
  display: block;
  color: var(--gold);
  font-size: 34px;
}

.hero-metrics span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.control-band,
.promise-section,
.expect-section,
.content-section,
.footer {
  width: min(100% - 36px, var(--max));
  margin: 0 auto;
}

.promise-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
  gap: 18px;
  align-items: stretch;
  margin-top: -22px;
  margin-bottom: 42px;
  padding: 22px;
  position: relative;
  overflow: hidden;
}

.promise-section::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--cyan));
}

.promise-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  min-height: 100%;
}

.promise-copy h2 {
  max-width: 520px;
  font-size: clamp(32px, 4.4vw, 62px);
}

.promise-copy p:not(.kicker) {
  max-width: 560px;
  color: #c9d5e8;
  font-size: 17px;
  line-height: 1.55;
}

.promise-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  position: relative;
}

.promise-grid article {
  min-height: 190px;
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 18px;
  background:
    linear-gradient(180deg, rgba(21, 29, 43, 0.96), rgba(10, 15, 24, 0.96));
}

.promise-grid .hd-icon {
  width: 44px;
  height: 44px;
  padding: 9px;
  color: var(--gold);
  border: 1px solid rgba(227, 196, 124, 0.28);
  border-radius: 8px;
  background: rgba(227, 196, 124, 0.08);
}

.promise-grid h3 {
  margin-bottom: 0;
  font-size: 20px;
}

.promise-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.48;
}

.expect-section {
  margin-bottom: 34px;
  display: grid;
  grid-template-columns: minmax(260px, 0.75fr) minmax(0, 1.25fr);
  gap: 22px;
  align-items: center;
}

.expect-head {
  max-width: 520px;
}

.expect-head h2 {
  font-size: clamp(30px, 4vw, 54px);
}

.expect-head p:not(.kicker) {
  color: #c9d5e8;
  font-size: 17px;
  line-height: 1.55;
}

.expect-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  position: relative;
}

.expect-steps::before {
  content: "";
  position: absolute;
  top: 24px;
  left: 12%;
  right: 12%;
  height: 1px;
  background: linear-gradient(90deg, rgba(227, 196, 124, 0.28), rgba(72, 199, 216, 0.4), rgba(168, 80, 75, 0.35));
}

.expect-steps article {
  position: relative;
  min-height: 220px;
  padding: 48px 16px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(18, 27, 41, 0.82), rgba(8, 13, 21, 0.92));
}

.expect-steps article::before {
  content: "";
  position: absolute;
  top: 17px;
  left: 16px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 5px rgba(227, 196, 124, 0.1);
}

.expect-steps article:nth-child(2)::before {
  background: var(--cyan);
  box-shadow: 0 0 0 5px rgba(72, 199, 216, 0.1);
}

.expect-steps article:nth-child(3)::before {
  background: #f3aaa6;
  box-shadow: 0 0 0 5px rgba(168, 80, 75, 0.12);
}

.step-label {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 5px 7px;
  border-radius: 6px;
  color: var(--gold);
  background: rgba(227, 196, 124, 0.08);
  border: 1px solid rgba(227, 196, 124, 0.26);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.expect-steps article:nth-child(2) .step-label {
  color: var(--cyan);
  background: rgba(72, 199, 216, 0.08);
  border-color: rgba(72, 199, 216, 0.26);
}

.expect-steps article:nth-child(3) .step-label {
  color: #f3aaa6;
  background: rgba(168, 80, 75, 0.12);
  border-color: rgba(168, 80, 75, 0.4);
}

.expect-steps h3 {
  margin-bottom: 8px;
  font-size: 20px;
}

.expect-steps p {
  margin: 0;
  color: var(--muted);
  line-height: 1.48;
}

.control-band {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) auto;
  gap: 14px;
  align-items: end;
  padding: 16px;
  transform: translateY(-24px);
}

.search-box {
  display: grid;
  gap: 8px;
}

.search-box span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.search-box input {
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 0 14px;
  color: var(--text);
  background: rgba(7, 11, 18, 0.8);
}

.filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.content-section {
  padding: 56px 0;
  scroll-margin-top: 90px;
}

.section-head {
  max-width: 860px;
  margin-bottom: 24px;
}

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

.priority-card,
.readiness-card,
.cluster-card,
.later-card {
  padding: 20px;
}

.priority-card {
  min-height: 260px;
  display: grid;
  gap: 12px;
  align-content: start;
  position: relative;
  overflow: hidden;
}

.priority-card::before,
.cluster-card::before,
.later-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--cyan));
  opacity: 0.82;
}

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

.card-head .hd-icon {
  width: 38px;
  height: 38px;
  padding: 8px;
  color: var(--gold);
  border: 1px solid rgba(227, 196, 124, 0.28);
  border-radius: 8px;
  background: rgba(227, 196, 124, 0.08);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03);
}

.rank {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--gold);
  background: rgba(227, 196, 124, 0.10);
  border: 1px solid rgba(227, 196, 124, 0.36);
  font-weight: 900;
}

.status-row {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.pill {
  width: fit-content;
  padding: 4px 7px;
  border-radius: 6px;
  color: var(--cyan);
  background: rgba(72, 199, 216, 0.08);
  border: 1px solid rgba(72, 199, 216, 0.26);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.pill.risk-high {
  color: #f3aaa6;
  border-color: rgba(168, 80, 75, 0.45);
  background: rgba(168, 80, 75, 0.12);
}

.priority-card p,
.cluster-card p,
.later-card p,
.readiness-card p {
  color: var(--muted);
  line-height: 1.5;
}

.priority-card ul,
.rules-section ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 18px;
  color: #dce6f4;
}

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

.readiness-card strong {
  color: var(--gold);
}

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

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

.lane-grid article {
  min-height: 210px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(21, 29, 43, 0.94), rgba(16, 23, 34, 0.92));
}

.lane-grid span {
  display: inline-flex;
  margin-bottom: 14px;
  border: 1px solid rgba(227, 196, 124, 0.32);
  border-radius: 999px;
  padding: 6px 9px;
  color: var(--gold);
  background: rgba(227, 196, 124, 0.08);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.cluster-card h3,
.later-card h3 {
  color: var(--text);
}

.cluster-card footer {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.cluster-card > .hd-icon,
.later-card > .hd-icon {
  width: 42px;
  height: 42px;
  margin-bottom: 14px;
  padding: 9px;
  color: var(--gold);
  border: 1px solid rgba(227, 196, 124, 0.26);
  border-radius: 8px;
  background: rgba(227, 196, 124, 0.08);
}

.trust-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: 18px;
  align-items: stretch;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    radial-gradient(circle at 12% 18%, rgba(227, 196, 124, 0.12), transparent 28%),
    radial-gradient(circle at 92% 80%, rgba(72, 199, 216, 0.10), transparent 32%),
    linear-gradient(180deg, rgba(18, 27, 41, 0.96), rgba(8, 13, 21, 0.96));
}

.trust-hero {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.trust-hero h2 {
  font-size: clamp(34px, 4.6vw, 66px);
}

.trust-hero p:not(.kicker) {
  color: #c9d5e8;
  font-size: 17px;
  line-height: 1.55;
}

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

.trust-grid article {
  min-height: 210px;
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 18px;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(7, 11, 18, 0.52);
}

.trust-grid article::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--cyan));
  opacity: 0.75;
}

.trust-grid .hd-icon {
  width: 42px;
  height: 42px;
  padding: 9px;
  color: var(--gold);
  border: 1px solid rgba(227, 196, 124, 0.28);
  border-radius: 8px;
  background: rgba(227, 196, 124, 0.08);
}

.trust-grid span {
  position: absolute;
  top: 15px;
  right: 15px;
  min-width: 38px;
  height: 28px;
  display: inline-grid;
  place-items: center;
  color: var(--gold);
  border: 1px solid rgba(227, 196, 124, 0.35);
  border-radius: 6px;
  background: rgba(7, 11, 18, 0.72);
  box-shadow: 0 0 18px rgba(227, 196, 124, 0.12);
  font-size: 14px;
  font-weight: 900;
  line-height: 1;
}

.trust-grid h3 {
  margin-bottom: 0;
  font-size: 20px;
}

.trust-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.rules-section {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 24px;
  padding: 24px;
}

.footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  margin-bottom: 28px;
  padding: 22px;
  position: relative;
  overflow: hidden;
}

.closing-section {
  width: min(100% - 36px, var(--max));
  margin: 24px auto 34px;
  min-height: 360px;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 18px;
  padding: clamp(34px, 7vw, 76px) 24px;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  text-align: center;
  background:
    radial-gradient(circle at 50% 0%, rgba(227, 196, 124, 0.16), transparent 30%),
    radial-gradient(circle at 82% 78%, rgba(72, 199, 216, 0.12), transparent 28%),
    linear-gradient(180deg, rgba(18, 27, 41, 0.94), rgba(7, 11, 18, 0.98));
}

.closing-section::before {
  content: "";
  position: absolute;
  inset: 0 18% auto;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--cyan), transparent);
}

.closing-section h2 {
  max-width: 960px;
  margin-bottom: 0;
  font-size: clamp(38px, 6vw, 86px);
  line-height: 0.98;
}

.closing-lines {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.closing-lines span {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  padding: 8px 12px;
  border: 1px solid rgba(227, 196, 124, 0.24);
  border-radius: 6px;
  color: #dce6f4;
  background: rgba(7, 11, 18, 0.38);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.footer::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--cyan));
}

.footer img {
  max-width: 190px;
  position: relative;
}

.footer p {
  position: relative;
  margin: 0;
  max-width: 760px;
  color: var(--text);
  font-size: clamp(17px, 2vw, 24px);
  font-weight: 800;
  line-height: 1.25;
  text-align: right;
}

[hidden] { display: none !important; }

@media (max-width: 980px) {
  .topbar {
    position: sticky;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
  }

  .nav {
    order: 3;
    width: 100%;
    margin-left: 0;
  }

  .nav a {
    flex: 1 1 calc(33.333% - 8px);
  }

  .control-band,
  .promise-section,
  .expect-section,
  .priority-grid,
  .readiness-grid,
  .cluster-grid,
  .later-grid,
  .trust-section,
  .rules-section {
    grid-template-columns: 1fr;
  }

  .filters {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  body {
    background:
      linear-gradient(180deg, rgba(72, 199, 216, 0.08), transparent 320px),
      var(--bg);
  }

  .topbar {
    display: grid;
    grid-template-columns: 1fr auto;
    min-height: 0;
    padding: 10px 12px 8px;
  }

  .brand {
    min-width: 0;
    font-size: 13px;
  }

  .brand img {
    height: 34px;
    width: auto;
    max-width: 108px;
  }

  .lang-toggle {
    min-height: 34px;
    padding: 7px 10px;
  }

  .nav {
    grid-column: 1 / -1;
    display: flex;
    flex-wrap: nowrap;
    gap: 7px;
    overflow-x: auto;
    padding: 2px 0 4px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .nav::-webkit-scrollbar {
    display: none;
  }

  .nav a {
    flex: 0 0 auto;
    min-width: max-content;
    min-height: 36px;
    padding: 8px 10px;
    scroll-snap-align: start;
    white-space: nowrap;
  }

  .nav a .hd-icon {
    width: 17px;
    height: 17px;
  }

  .hero {
    min-height: 500px;
    padding: 42px 18px 34px;
  }

  h1 {
    font-size: clamp(42px, 14vw, 64px);
    line-height: 0.96;
  }

  h2 {
    font-size: clamp(28px, 10vw, 42px);
    line-height: 1.05;
  }

  .hero-copy > p:not(.kicker),
  .section-head p {
    font-size: 16px;
    line-height: 1.48;
  }

  .hero-metrics {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .hero-metrics article {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 14px;
  }

  .hero-metrics strong {
    font-size: 28px;
  }

  .control-band {
    gap: 12px;
    padding: 12px;
    transform: translateY(-14px);
  }

  .search-box input {
    min-height: 44px;
  }

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

  .chip {
    width: 100%;
    min-height: 38px;
    padding: 8px;
    white-space: normal;
    line-height: 1.1;
  }

  .control-band,
  .promise-section,
  .expect-section,
  .closing-section,
  .content-section,
  .footer {
    width: min(100% - 24px, var(--max));
  }

  .promise-section {
    margin-top: -12px;
    margin-bottom: 26px;
    padding: 16px;
    gap: 14px;
  }

  .promise-copy h2 {
    font-size: clamp(30px, 10vw, 44px);
    line-height: 1.02;
  }

  .promise-copy p:not(.kicker) {
    font-size: 16px;
    line-height: 1.48;
  }

  .promise-grid {
    grid-template-columns: 1fr;
  }

  .promise-grid article {
    min-height: 0;
    padding: 16px;
  }

  .promise-grid .hd-icon {
    width: 38px;
    height: 38px;
    padding: 8px;
  }

  .expect-section {
    margin-bottom: 24px;
    gap: 14px;
  }

  .expect-head h2 {
    font-size: clamp(28px, 10vw, 42px);
    line-height: 1.05;
  }

  .expect-head p:not(.kicker) {
    font-size: 16px;
    line-height: 1.48;
  }

  .expect-steps {
    grid-template-columns: 1fr;
  }

  .expect-steps::before {
    top: 0;
    bottom: 0;
    left: 23px;
    right: auto;
    width: 1px;
    height: auto;
    background: linear-gradient(180deg, rgba(227, 196, 124, 0.34), rgba(72, 199, 216, 0.38), rgba(168, 80, 75, 0.32));
  }

  .expect-steps article {
    min-height: 0;
    padding: 16px 16px 16px 46px;
  }

  .expect-steps article::before {
    top: 19px;
    left: 17px;
    width: 12px;
    height: 12px;
  }

  .content-section {
    padding: 38px 0;
    scroll-margin-top: 98px;
  }

  .section-head {
    margin-bottom: 18px;
  }

  .priority-card,
  .readiness-card,
  .cluster-card,
  .later-card,
  .trust-section,
  .rules-section {
    padding: 16px;
  }

  .priority-card {
    min-height: 0;
  }

  .card-head .hd-icon,
  .cluster-card > .hd-icon,
  .later-card > .hd-icon {
    width: 36px;
    height: 36px;
    padding: 8px;
  }

  .rank {
    width: 38px;
    height: 38px;
  }

  .status-row,
  .cluster-card footer {
    gap: 6px;
  }

  .pill {
    max-width: 100%;
    overflow-wrap: anywhere;
    line-height: 1.15;
  }

  .priority-card ul,
  .rules-section ul {
    padding-left: 16px;
  }

  .trust-section {
    gap: 14px;
  }

  .trust-hero h2 {
    font-size: clamp(30px, 10vw, 44px);
    line-height: 1.04;
  }

  .trust-hero p:not(.kicker) {
    font-size: 16px;
    line-height: 1.48;
  }

  .trust-grid {
    grid-template-columns: 1fr;
  }

  .trust-grid article {
    min-height: 0;
    padding: 16px;
  }

  .trust-grid span {
    top: 16px;
    right: 16px;
    min-width: 36px;
    height: 26px;
    font-size: 13px;
  }

  .trust-grid .hd-icon {
    width: 38px;
    height: 38px;
    padding: 8px;
  }

  .footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .closing-section {
    min-height: 300px;
    margin: 12px auto 24px;
    padding: 34px 16px;
  }

  .closing-section h2 {
    font-size: clamp(34px, 12vw, 54px);
    line-height: 1;
  }

  .closing-lines {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
  }

  .closing-lines span {
    justify-content: center;
    width: 100%;
  }

  .footer p {
    text-align: left;
  }
}

/* HD icon color normalization: keep SVG img icons visible on dark premium surfaces. */
img[src*="assets/icons/"],
img[src*="/assets/icons/"] {
  filter: brightness(0) saturate(100%) invert(82%) sepia(29%) saturate(606%) hue-rotate(2deg) brightness(92%) contrast(91%) drop-shadow(0 0 10px rgba(227, 196, 124, 0.28));
}

a:hover img[src*="assets/icons/"],
a:hover img[src*="/assets/icons/"],
button:hover img[src*="assets/icons/"],
button:hover img[src*="/assets/icons/"] {
  filter: brightness(0) saturate(100%) invert(75%) sepia(93%) saturate(473%) hue-rotate(150deg) brightness(91%) contrast(86%) drop-shadow(0 0 10px rgba(72, 199, 216, 0.28));
}

@media (max-width: 1080px) {
  .lane-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .lane-grid {
    grid-template-columns: 1fr;
  }
}
