:root {
  --bg: #fff7e6;
  --bg-deep: #f6ebc8;
  --surface: rgba(255, 249, 236, 0.82);
  --surface-strong: rgba(255, 250, 240, 0.94);
  --surface-dark: linear-gradient(180deg, rgba(248, 237, 207, 0.96), rgba(241, 227, 188, 0.98));
  --text: #4d473c;
  --muted: #8d816c;
  --line: rgba(214, 188, 122, 0.2);
  --line-strong: rgba(222, 191, 116, 0.3);
  --blue: #dcc067;
  --blue-deep: #cfa74a;
  --cyan: #f1dc98;
  --navy: #655b4a;
  --navy-soft: #837663;
  --shadow: 0 20px 50px rgba(124, 104, 67, 0.1);
  --shadow-strong: 0 24px 60px rgba(124, 104, 67, 0.14);
  --radius: 24px;
  --radius-sm: 16px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: "Segoe UI Variable Text", "PingFang SC", "Bahnschrift", "Microsoft YaHei", sans-serif;
  line-height: 1.72;
  background:
    linear-gradient(rgba(255, 255, 255, 0.42) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.42) 1px, transparent 1px),
    radial-gradient(circle at 12% 0%, rgba(214, 170, 84, 0.18), transparent 30%),
    radial-gradient(circle at 88% 12%, rgba(234, 185, 101, 0.14), transparent 26%),
    linear-gradient(180deg, var(--bg) 0%, #fffaf0 52%, var(--bg-deep) 100%);
  background-size: 28px 28px, 28px 28px, auto, auto, auto;
  background-attachment: fixed;
}

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

img {
  max-width: 100%;
  display: block;
}

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

.site-strip {
  background: linear-gradient(90deg, #081325 0%, #0d2244 55%, #102c58 100%);
  color: rgba(230, 240, 255, 0.78);
  border-bottom: 1px solid rgba(125, 171, 255, 0.12);
}

.site-strip__inner {
  min-height: 44px;
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
}

.site-strip__lead {
  color: #7dd8ff;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(18px);
  background: rgba(244, 248, 255, 0.82);
  border-bottom: 1px solid rgba(88, 121, 175, 0.1);
  box-shadow: 0 10px 30px rgba(12, 26, 55, 0.05);
}

.site-header__inner {
  min-height: 86px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}

.site-brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.site-brand__mark {
  width: 50px;
  height: 50px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.26), transparent 52%),
    linear-gradient(145deg, var(--blue) 0%, #1768ff 46%, var(--cyan) 100%);
  color: #fff;
  font-family: "Segoe UI Variable Display", "Bahnschrift", sans-serif;
  font-weight: 800;
  letter-spacing: 0.16em;
  box-shadow: var(--shadow-strong);
}

.site-brand__text {
  display: flex;
  flex-direction: column;
}

.site-brand__text strong {
  font-family: "Segoe UI Variable Display", "Bahnschrift", "PingFang SC", sans-serif;
  font-size: 22px;
  line-height: 1.08;
  letter-spacing: 0.01em;
}

.site-brand__text small {
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.04em;
}

.site-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.site-nav__item {
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 700;
  color: #33435f;
  transition: 0.24s ease;
}

.site-nav__item:hover,
.site-nav__item.is-current {
  background: rgba(31, 94, 255, 0.1);
  color: var(--blue);
  box-shadow: inset 0 0 0 1px rgba(31, 94, 255, 0.1);
}

.site-header__cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.site-header__cta,
.button--primary {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-deep) 55%, var(--cyan) 100%);
  color: #fff;
  box-shadow: 0 16px 34px rgba(31, 94, 255, 0.24);
}

.button--ghost {
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(31, 94, 255, 0.18);
  color: var(--blue);
}

.site-header__cta:hover,
.button--primary:hover,
.button--ghost:hover {
  transform: translateY(-2px);
}

.top-banner {
  padding: 14px 0 10px;
  background: linear-gradient(180deg, rgba(244, 248, 255, 0.88), rgba(236, 244, 255, 0.7));
}

.top-banner__shell {
  display: none;
  position: relative;
  padding: 8px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(31, 94, 255, 0.12);
  box-shadow: 0 18px 40px rgba(10, 28, 62, 0.08);
}

.top-banner__shell:has(.top-banner__item),
.top-banner__shell.is-ready {
  display: block;
}

.top-banner__viewport {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  aspect-ratio: 1920 / 300;
  background: linear-gradient(135deg, rgba(17, 55, 113, 0.16), rgba(31, 94, 255, 0.08));
}

.top-banner__track {
  position: relative;
  height: 100%;
}

.top-banner__item {
  position: absolute;
  inset: 0;
  display: block;
  opacity: 0;
  visibility: hidden;
  transform: translateX(4%);
  transition: opacity 0.55s ease, transform 0.55s ease, visibility 0.55s ease;
}

.top-banner__item:first-child,
.top-banner__item.is-active {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.top-banner__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.top-banner__item--static {
  cursor: default;
}

.top-banner__dots {
  position: absolute;
  right: 18px;
  bottom: 18px;
  z-index: 3;
  display: none;
  gap: 8px;
  align-items: center;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(7, 22, 47, 0.34);
  backdrop-filter: blur(10px);
}

.top-banner__dots:has(.top-banner__dot + .top-banner__dot),
.top-banner__shell.has-multiple .top-banner__dots {
  display: inline-flex;
}

.top-banner__dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.42);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: transform 0.22s ease, background 0.22s ease;
}

.top-banner__dot:first-child {
  background: #fff;
  transform: scale(1.15);
}

.top-banner__shell.is-ready .top-banner__dot:first-child {
  background: rgba(255, 255, 255, 0.42);
  transform: none;
}

.top-banner__shell.is-ready .top-banner__dot.is-active {
  background: #fff;
  transform: scale(1.15);
}

.button--full {
  width: 100%;
}

.ticker-wrap {
  border-top: 1px solid rgba(31, 94, 255, 0.08);
  background: linear-gradient(90deg, rgba(235, 244, 255, 0.82), rgba(246, 250, 255, 0.92));
}

.ticker {
  overflow: hidden;
  white-space: nowrap;
}

.ticker__track {
  display: inline-flex;
  gap: 50px;
  min-width: 200%;
  padding: 10px 0;
  color: var(--navy-soft);
  font-size: 14px;
  font-weight: 700;
  animation: ticker 20s linear infinite;
}

@keyframes ticker {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-33.33%);
  }
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 76px 0 58px;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(10px);
}

.hero::before {
  width: 340px;
  height: 340px;
  right: -90px;
  top: 20px;
  background: radial-gradient(circle, rgba(31, 94, 255, 0.16), transparent 72%);
}

.hero::after {
  width: 360px;
  height: 360px;
  left: -120px;
  bottom: -170px;
  background: radial-gradient(circle, rgba(0, 184, 255, 0.14), transparent 72%);
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.24fr) minmax(320px, 0.76fr);
  gap: 28px;
  align-items: stretch;
}

.hero__grid--inner {
  align-items: start;
}

.hero__content,
.hero-panel,
.panel-card,
.side-card,
.post-card,
.feature-card,
.certificate-card,
.metric-card,
.list-item,
.rich-panel,
.cta-panel,
.footer-card,
.article-content,
.message-form,
.article-nav__item {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.hero__content::before,
.hero-panel::before,
.panel-card::before,
.side-card::before,
.post-card::before,
.feature-card::before,
.certificate-card::before,
.metric-card::before,
.list-item::before,
.rich-panel::before,
.cta-panel::before,
.footer-card::before,
.article-content::before,
.message-form::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.55), transparent 22%);
}

.hero__content {
  padding: 44px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.7), rgba(243, 248, 255, 0.86)),
    var(--surface);
}

.hero--home .hero__content {
  background:
    linear-gradient(135deg, rgba(73, 174, 255, 0.16), transparent 28%),
    linear-gradient(180deg, rgba(10, 27, 59, 0.98), rgba(8, 22, 48, 0.98));
  border-color: rgba(108, 178, 255, 0.18);
  box-shadow: 0 28px 68px rgba(6, 20, 44, 0.28);
  color: #eef6ff;
}

.hero--home .hero__content::before {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 18%);
}

.hero__eyebrow,
.section-heading span,
.panel-card__eyebrow,
.side-card__eyebrow,
.cta-panel__eyebrow,
.article-hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(31, 94, 255, 0.08);
  color: var(--blue);
  box-shadow: inset 0 0 0 1px rgba(31, 94, 255, 0.12);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero--home .hero__eyebrow {
  background: rgba(0, 184, 255, 0.14);
  color: #7dd8ff;
  box-shadow: inset 0 0 0 1px rgba(125, 216, 255, 0.18);
}

.hero h1,
.hero h2,
.section-heading h2,
.article-hero h1 {
  margin: 18px 0 0;
  line-height: 1.06;
  font-family: "Segoe UI Variable Display", "Bahnschrift", "PingFang SC", sans-serif;
}

.hero h1 {
  font-size: clamp(36px, 5vw, 58px);
  letter-spacing: -0.02em;
}

.hero__intro {
  margin: 18px 0 0;
  font-size: 18px;
  color: #384a67;
  max-width: 760px;
}

.hero__content--centered {
  width: 100%;
  max-width: none;
  margin: 0;
  text-align: center;
}

.hero__content--centered .breadcrumb {
  display: inline-flex;
  margin: 0 auto 18px;
}

.hero__content--centered h1 {
  max-width: none;
  margin-left: auto;
  margin-right: auto;
  text-wrap: balance;
}

.hero__content--centered .hero__metrics {
  max-width: none;
  margin-left: 0;
  margin-right: 0;
}

.hero__summary {
  max-width: 780px;
  margin: 18px auto 0;
}

.hero__summary-title {
  display: block;
  color: #5f5038;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.hero__summary-text,
.hero__summary-text p,
.hero__summary-text li {
  color: #6b5f4b;
  font-size: 17px;
  line-height: 1.8;
}

.hero__summary-text p {
  margin: 10px 0 0;
}

.hero__content--feature {
  border-radius: 34px;
  overflow: hidden;
}

.hero__content--feature::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: 220px;
  height: 6px;
  transform: translateX(-50%);
  border-radius: 0 0 999px 999px;
  background: linear-gradient(90deg, rgba(216, 179, 75, 0.16), rgba(216, 179, 75, 0.92), rgba(216, 179, 75, 0.16));
}

.hero__summary-text ul,
.hero__summary-text ol {
  width: fit-content;
  max-width: 100%;
  margin: 14px auto 0;
  text-align: left;
}

.hero--home h1,
.hero-panel h2,
.hero-panel h3 {
  color: #ffffff;
}

.hero--home .hero__intro {
  color: rgba(226, 238, 255, 0.82);
}

.hero__signalbar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.hero__signalbar span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(111, 170, 255, 0.18);
  color: #d8e8ff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.hero__signalbar--compact span {
  background: rgba(31, 94, 255, 0.08);
  border-color: rgba(31, 94, 255, 0.12);
  color: var(--blue);
}

.hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.hero__metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.metric-card {
  padding: 20px 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(242, 247, 255, 0.78)),
    var(--surface);
}

.metric-card span {
  display: block;
  color: var(--muted);
  font-size: 13px;
}

.metric-card strong {
  display: block;
  margin-top: 8px;
  color: var(--navy);
  font-size: 25px;
  font-family: "Segoe UI Variable Display", "Bahnschrift", sans-serif;
}

.metric-card p {
  margin: 8px 0 0;
  font-size: 14px;
  color: var(--muted);
}

.hero-panel,
.side-card--accent,
.panel-card--accent {
  padding: 28px;
  background:
    linear-gradient(135deg, rgba(66, 166, 255, 0.18), transparent 34%),
    linear-gradient(180deg, rgba(8, 23, 49, 0.98), rgba(7, 18, 39, 0.98));
  color: #ebf4ff;
  border-color: rgba(104, 174, 255, 0.16);
  box-shadow: 0 24px 60px rgba(4, 18, 42, 0.28);
}

.hero-panel__badge {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  margin-bottom: 14px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(120, 192, 255, 0.18);
  color: #7dd8ff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.hero-panel h2,
.hero-panel h3 {
  margin: 0 0 14px;
  color: #fff;
  font-size: 28px;
}

.hero-panel__html,
.footer-card__html,
.rich-panel,
.article-content {
  color: inherit;
}

.hero-panel__html p,
.footer-card__html p,
.rich-panel p,
.article-content p {
  color: inherit;
}

.hero-panel__html ul,
.footer-card__html ul {
  padding-left: 20px;
}

.section {
  padding: 30px 0 48px;
}

.trust-strip {
  margin-top: -10px;
  padding: 0 0 24px;
}

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

.trust-strip__item {
  position: relative;
  min-height: 156px;
  padding: 24px 22px;
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(244, 249, 255, 0.84)),
    var(--surface);
  border: 1px solid rgba(31, 94, 255, 0.1);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.trust-strip__item::before {
  content: "";
  position: absolute;
  inset: auto -40px -40px auto;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(31, 94, 255, 0.12), transparent 72%);
}

.trust-strip__item span {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.trust-strip__item strong {
  display: block;
  font-size: 22px;
  line-height: 1.18;
  font-family: "Segoe UI Variable Display", "Bahnschrift", sans-serif;
}

.trust-strip__item p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.section--alt {
  background:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(180deg, rgba(8, 21, 46, 0.98), rgba(9, 27, 58, 0.98));
  background-size: 28px 28px, 28px 28px, auto;
  border-top: 1px solid rgba(125, 171, 255, 0.08);
  border-bottom: 1px solid rgba(125, 171, 255, 0.08);
  color: #deebff;
}

.section--alt .section-heading h2 {
  color: #ffffff;
}

.section--alt .section-heading span {
  background: rgba(125, 216, 255, 0.12);
  color: #7dd8ff;
  box-shadow: inset 0 0 0 1px rgba(125, 216, 255, 0.12);
}

.section--alt .feature-card,
.section--alt .certificate-card,
.section--alt .rich-panel {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03)),
    rgba(12, 26, 54, 0.78);
  border-color: rgba(123, 170, 255, 0.12);
  color: #deebff;
  box-shadow: 0 24px 58px rgba(4, 18, 42, 0.22);
}

.section--alt .feature-card h3,
.section--alt .certificate-card h3,
.section--alt .rich-panel h3 {
  color: #ffffff;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
}

.section-heading h2 {
  font-size: clamp(28px, 3vw, 40px);
  letter-spacing: -0.02em;
}

.section-heading--compact h2 {
  font-size: 30px;
}

.rich-panel {
  padding: 32px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(244, 249, 255, 0.84)),
    var(--surface);
}

.rich-panel h3,
.article-content h2,
.article-content h3 {
  margin: 26px 0 10px;
  color: var(--navy);
}

.rich-panel p:first-child,
.article-content p:first-child {
  margin-top: 0;
}

.rich-panel ul,
.rich-panel ol,
.article-content ul,
.article-content ol {
  padding-left: 22px;
}

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

.feature-card,
.certificate-card {
  padding: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(241, 247, 255, 0.84)),
    var(--surface);
}

.feature-card h3,
.certificate-card h3 {
  margin: 0 0 10px;
  font-size: 24px;
}

.certificate-card__flag {
  display: inline-flex;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  color: #fff;
  font-weight: 900;
  margin-bottom: 16px;
  box-shadow: 0 14px 28px rgba(31, 94, 255, 0.22);
}

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

.split-section__block--feed {
  padding: 26px;
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.76), rgba(242, 248, 255, 0.82)),
    var(--surface);
  border: 1px solid rgba(31, 94, 255, 0.1);
  box-shadow: var(--shadow);
}

.post-grid,
.list-stack {
  display: grid;
  gap: 16px;
}

.post-card,
.list-item {
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(243, 248, 255, 0.82)),
    var(--surface);
}

.post-card,
.list-item,
.side-card,
.panel-card,
.feature-card,
.certificate-card,
.metric-card {
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.post-card:hover,
.list-item:hover,
.side-card:hover,
.panel-card:hover,
.feature-card:hover,
.certificate-card:hover,
.metric-card:hover {
  transform: translateY(-4px);
  border-color: var(--line-strong);
  box-shadow: 0 26px 56px rgba(10, 28, 62, 0.16);
}

.post-card__top,
.list-item__meta,
.article-hero__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 13px;
}

.post-card__tag {
  color: var(--blue);
  font-weight: 800;
}

.post-card h3,
.list-item h2 {
  margin: 12px 0 8px;
  font-size: 24px;
  line-height: 1.28;
  font-family: "Segoe UI Variable Display", "Bahnschrift", "PingFang SC", sans-serif;
}

.post-card p,
.list-item p {
  margin: 0;
  color: var(--muted);
}

.post-card__more,
.list-item__more {
  display: inline-flex;
  margin-top: 14px;
  color: var(--blue);
  font-weight: 800;
}

.cta-panel {
  padding: 32px;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 24px;
  background:
    linear-gradient(135deg, rgba(31, 94, 255, 0.06), rgba(0, 184, 255, 0.05)),
    var(--surface-strong);
}

.article-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 26px;
}

.article-shell--single {
  grid-template-columns: 1fr;
}

.article-main,
.article-side {
  min-width: 0;
}

.article-content {
  padding: 36px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(244, 249, 255, 0.88)),
    var(--surface);
}

.article-hero {
  max-width: 900px;
}

.product-matrix {
  padding-top: 10px;
}

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

.product-matrix__card {
  position: relative;
  min-height: 220px;
  padding: 26px 24px;
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(242, 248, 255, 0.84)),
    var(--surface);
  border: 1px solid rgba(31, 94, 255, 0.1);
  box-shadow: var(--shadow);
}

.product-matrix__card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.5), transparent 22%);
  pointer-events: none;
}

.product-matrix__card span {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--blue);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.product-matrix__card h2 {
  margin: 0 0 12px;
  font-size: 24px;
  line-height: 1.18;
  font-family: "Segoe UI Variable Display", "Bahnschrift", sans-serif;
}

.product-matrix__card p {
  margin: 0;
  color: var(--muted);
}

.product-matrix__card--dark {
  background:
    linear-gradient(135deg, rgba(82, 180, 255, 0.16), transparent 36%),
    linear-gradient(180deg, rgba(9, 24, 51, 0.98), rgba(7, 19, 40, 0.98));
  border-color: rgba(118, 184, 255, 0.14);
  box-shadow: 0 24px 58px rgba(4, 18, 42, 0.24);
}

.product-matrix__card--dark span {
  color: #7dd8ff;
}

.product-matrix__card--dark h2 {
  color: #fff;
}

.product-matrix__card--dark p {
  color: rgba(220, 234, 255, 0.78);
}

.article-nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 22px;
}

.article-nav__item {
  padding: 20px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.72);
}

.article-nav__item span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  margin-bottom: 6px;
}

.article-nav__item strong {
  display: block;
  line-height: 1.5;
}

.side-card,
.panel-card {
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(243, 248, 255, 0.84)),
    var(--surface);
}

.side-card--sticky {
  position: sticky;
  top: 132px;
}

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

.contact-list {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  display: grid;
  gap: 12px;
}

.contact-list li {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 10px;
  align-items: baseline;
}

.contact-list span {
  color: var(--muted);
  font-size: 13px;
}

.message-form {
  margin-top: 24px;
  padding: 32px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(244, 249, 255, 0.9)),
    var(--surface);
}

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

.form-item {
  display: grid;
  gap: 8px;
}

.form-item--full {
  grid-column: 1 / -1;
}

.form-item--captcha {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 180px;
  gap: 14px;
  align-items: end;
}

.form-item--captcha-input {
  min-width: 0;
}

.form-item span {
  font-size: 14px;
  font-weight: 700;
  color: #31415d;
}

.form-item input,
.form-item textarea {
  width: 100%;
  border: 1px solid rgba(83, 116, 168, 0.2);
  border-radius: 16px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--text);
  font: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.form-item input:focus,
.form-item textarea:focus {
  outline: none;
  border-color: rgba(31, 94, 255, 0.45);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 0 0 4px rgba(31, 94, 255, 0.08);
}

.form-item--code {
  display: grid;
  gap: 8px;
  justify-items: stretch;
}

.form-item--code img {
  width: 100%;
  height: 52px;
  border-radius: 14px;
  border: 1px solid rgba(83, 116, 168, 0.16);
  cursor: pointer;
}

.breadcrumb {
  margin-bottom: 16px;
  color: var(--muted);
  font-size: 14px;
}

.pagebar {
  margin-top: 26px;
}

.pagebar a,
.pagebar span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 44px;
  padding: 0 14px;
  margin: 0 8px 8px 0;
  border-radius: 999px;
  border: 1px solid rgba(31, 94, 255, 0.14);
  background: rgba(255, 255, 255, 0.78);
  color: #32425e;
}

.pagebar .active,
.pagebar a:hover {
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  color: #fff;
  border-color: transparent;
}

.site-footer {
  margin-top: 34px;
  padding: 42px 0 24px;
  background:
    linear-gradient(180deg, rgba(10, 25, 52, 0.98), rgba(6, 17, 38, 1));
  color: rgba(226, 237, 255, 0.84);
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr 0.8fr;
  gap: 20px;
}

.footer-card {
  padding: 24px;
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(125, 171, 255, 0.12);
  box-shadow: none;
  backdrop-filter: none;
}

.footer-card::before {
  display: none;
}

.footer-card__title {
  margin: 0 0 14px;
  color: #ffffff;
  font-size: 18px;
}

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

.footer-links a {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
}

.site-footer__bottom {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(125, 171, 255, 0.12);
  display: flex;
  gap: 14px;
  justify-content: space-between;
  flex-wrap: wrap;
  font-size: 13px;
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 0;
  border-radius: 14px;
  background: rgba(31, 94, 255, 0.08);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 6px auto;
  background: var(--blue);
}

/* Warm palette overrides */
.site-strip {
  background: linear-gradient(90deg, #f8ebc3 0%, #f6e5b8 55%, #fbf1d7 100%);
  color: rgba(107, 96, 74, 0.9);
  border-bottom: 1px solid rgba(219, 194, 131, 0.2);
}

.site-strip__lead {
  color: #c8a74b;
}

.site-header {
  background: rgba(255, 251, 241, 0.88);
  border-bottom: 1px solid rgba(214, 188, 122, 0.18);
  box-shadow: 0 10px 30px rgba(124, 104, 67, 0.06);
}

.site-brand__mark {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.3), transparent 52%),
    linear-gradient(145deg, var(--blue) 0%, #e3b055 48%, var(--cyan) 100%);
}

.site-nav__item,
.form-item span,
.pagebar a,
.pagebar span {
  color: #6f6557;
}

.site-nav__item:hover,
.site-nav__item.is-current {
  background: rgba(203, 150, 56, 0.13);
  box-shadow: inset 0 0 0 1px rgba(203, 150, 56, 0.14);
}

.site-header__cta,
.button--primary,
.certificate-card__flag,
.pagebar .active,
.pagebar a:hover {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-deep) 55%, var(--cyan) 100%);
  box-shadow: 0 16px 34px rgba(184, 151, 77, 0.2);
}

.button--ghost {
  background: rgba(255, 251, 243, 0.86);
  border-color: rgba(203, 150, 56, 0.2);
  color: var(--blue-deep);
}

.top-banner {
  background: linear-gradient(180deg, rgba(255, 250, 239, 0.9), rgba(247, 236, 211, 0.76));
}

.top-banner__shell {
  background: rgba(255, 250, 240, 0.74);
  border-color: rgba(203, 150, 56, 0.16);
  box-shadow: 0 18px 40px rgba(124, 104, 67, 0.08);
}

.top-banner__viewport {
  background: linear-gradient(135deg, rgba(203, 150, 56, 0.16), rgba(255, 221, 153, 0.08));
}

.top-banner__dots {
  background: rgba(144, 128, 89, 0.28);
}

.ticker-wrap {
  border-top: 1px solid rgba(203, 150, 56, 0.08);
  background: linear-gradient(90deg, rgba(255, 247, 229, 0.92), rgba(250, 239, 210, 0.96));
}

.hero::before {
  background: radial-gradient(circle, rgba(223, 184, 96, 0.2), transparent 72%);
}

.hero::after {
  background: radial-gradient(circle, rgba(234, 162, 61, 0.14), transparent 72%);
}

.hero__content,
.metric-card,
.rich-panel,
.article-content,
.split-section__block--feed,
.post-card,
.list-item,
.side-card,
.panel-card,
.feature-card,
.certificate-card,
.message-form,
.article-nav__item,
.product-matrix__card,
.trust-strip__item {
  background:
    linear-gradient(180deg, rgba(255, 253, 247, 0.92), rgba(248, 237, 213, 0.84)),
    var(--surface);
}

.hero__content::before,
.hero-panel::before,
.panel-card::before,
.side-card::before,
.post-card::before,
.feature-card::before,
.certificate-card::before,
.metric-card::before,
.list-item::before,
.rich-panel::before,
.cta-panel::before,
.footer-card::before,
.article-content::before,
.message-form::before,
.product-matrix__card::before {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.5), transparent 24%);
}

.hero__intro {
  color: #7c715f;
}

.hero--home .hero__content {
  background:
    linear-gradient(135deg, rgba(255, 229, 165, 0.34), transparent 30%),
    linear-gradient(180deg, rgba(255, 253, 246, 0.96), rgba(244, 233, 203, 0.94));
  border-color: rgba(222, 191, 116, 0.24);
  box-shadow: 0 28px 68px rgba(124, 104, 67, 0.12);
  color: var(--text);
}

.hero--home .hero__intro {
  color: #7c715f;
}

.hero__eyebrow,
.section-heading span,
.panel-card__eyebrow,
.side-card__eyebrow,
.cta-panel__eyebrow,
.article-hero__tag,
.hero__signalbar--compact span {
  background: rgba(203, 150, 56, 0.1);
  color: var(--blue-deep);
  box-shadow: inset 0 0 0 1px rgba(203, 150, 56, 0.14);
}

.hero--home .hero__eyebrow {
  background: rgba(255, 229, 165, 0.16);
  color: #cfa74a;
  box-shadow: inset 0 0 0 1px rgba(255, 229, 165, 0.18);
}

.hero__signalbar span {
  background: rgba(255, 250, 240, 0.72);
  border-color: rgba(219, 194, 131, 0.2);
  color: #8d816c;
}

.hero-panel,
.side-card--accent,
.panel-card--accent,
.product-matrix__card--dark {
  background:
    linear-gradient(135deg, rgba(255, 229, 165, 0.26), transparent 34%),
    linear-gradient(180deg, rgba(255, 252, 245, 0.96), rgba(244, 232, 201, 0.92));
  border-color: rgba(222, 191, 116, 0.18);
  box-shadow: 0 24px 60px rgba(124, 104, 67, 0.1);
  color: var(--text);
}

.hero-panel__badge {
  background: rgba(255, 247, 223, 0.76);
  border-color: rgba(222, 191, 116, 0.18);
  color: #cfa74a;
}

.trust-strip__item,
.product-matrix__card,
.split-section__block--feed {
  border-color: rgba(203, 150, 56, 0.12);
}

.trust-strip__item::before {
  background: radial-gradient(circle, rgba(220, 170, 84, 0.16), transparent 72%);
}

.section--alt {
  background:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(180deg, rgba(252, 245, 226, 0.98), rgba(246, 235, 205, 0.98));
  border-top: 1px solid rgba(222, 191, 116, 0.12);
  border-bottom: 1px solid rgba(222, 191, 116, 0.12);
  color: var(--text);
}

.section--alt .section-heading h2,
.section--alt .feature-card h3,
.section--alt .certificate-card h3,
.section--alt .rich-panel h3,
.hero--home h1,
.hero-panel h2,
.hero-panel h3,
.product-matrix__card--dark h2,
.footer-card__title {
  color: var(--text);
}

.section--alt .section-heading span,
.product-matrix__card--dark span {
  background: rgba(255, 229, 165, 0.12);
  color: #cfa74a;
  box-shadow: inset 0 0 0 1px rgba(255, 229, 165, 0.12);
}

.section--alt .feature-card,
.section--alt .certificate-card,
.section--alt .rich-panel,
.footer-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(248, 238, 215, 0.86)),
    rgba(255, 249, 236, 0.86);
  border-color: rgba(222, 191, 116, 0.12);
  color: var(--text);
  box-shadow: 0 24px 58px rgba(124, 104, 67, 0.08);
}

.product-matrix__card--dark p,
.hero-panel p,
.hero-panel li {
  color: var(--muted);
}

.cta-panel {
  background:
    linear-gradient(135deg, rgba(203, 150, 56, 0.08), rgba(255, 223, 151, 0.08)),
    var(--surface-strong);
}

.post-card:hover,
.list-item:hover,
.side-card:hover,
.panel-card:hover,
.feature-card:hover,
.certificate-card:hover,
.metric-card:hover {
  box-shadow: 0 26px 56px rgba(124, 104, 67, 0.12);
}

.form-item input,
.form-item textarea,
.form-item--code img {
  border-color: rgba(174, 131, 61, 0.22);
  background: rgba(255, 252, 246, 0.9);
}

.form-item input:focus,
.form-item textarea:focus {
  border-color: rgba(203, 150, 56, 0.5);
  background: rgba(255, 255, 251, 0.98);
  box-shadow: 0 0 0 4px rgba(203, 150, 56, 0.1);
}

.site-footer {
  background: linear-gradient(180deg, rgba(251, 243, 222, 0.98), rgba(244, 232, 201, 1));
  color: rgba(93, 84, 67, 0.9);
}

.footer-links a {
  background: rgba(255, 255, 255, 0.46);
}

.site-footer__bottom {
  border-top-color: rgba(232, 188, 106, 0.14);
}

.nav-toggle {
  background: rgba(203, 150, 56, 0.1);
}

.nav-toggle span {
  background: var(--blue-deep);
}

@media (max-width: 1080px) {
  .hero__grid,
  .trust-strip__grid,
  .product-matrix__grid,
  .split-section,
  .article-shell,
  .two-panel,
  .cta-panel,
  .site-footer__grid {
    grid-template-columns: 1fr;
  }

  .side-card--sticky {
    position: static;
  }
}

@media (max-width: 860px) {
  .site-header__inner {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .top-banner__dots {
    right: 14px;
    bottom: 14px;
  }

  .nav-toggle {
    display: inline-block;
    justify-self: end;
  }

  .site-header__cta {
    display: none;
  }

  .site-nav {
    display: none;
    grid-column: 1 / -1;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    padding-bottom: 16px;
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav__item {
    width: 100%;
    border-radius: 16px;
  }

  .hero__content,
  .hero-panel,
  .rich-panel,
  .article-content,
  .message-form,
  .footer-card,
  .post-card,
  .list-item,
  .side-card,
  .panel-card,
  .feature-card,
  .certificate-card {
    padding: 24px;
  }

  .hero__metrics,
  .trust-strip__grid,
  .product-matrix__grid,
  .feature-grid,
  .certificate-grid,
  .form-grid,
  .article-nav {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 640px) {
  .container {
    width: min(var(--container), calc(100% - 24px));
  }

  .top-banner {
    padding: 10px 0 8px;
  }

  .top-banner__shell {
    padding: 6px;
    border-radius: 18px;
  }

  .top-banner__viewport {
    border-radius: 14px;
  }

  .top-banner__dots {
    right: 10px;
    bottom: 10px;
    gap: 6px;
    padding: 6px 8px;
  }

  .top-banner__dot {
    width: 8px;
    height: 8px;
  }

  .site-strip__inner {
    min-height: 50px;
    align-items: start;
    justify-content: center;
    flex-direction: column;
    padding: 8px 0;
  }

  .hero {
    padding-top: 44px;
  }

  .hero h1 {
    font-size: 36px;
  }

  .hero__intro {
    font-size: 16px;
  }

  .contact-list li {
    grid-template-columns: 1fr;
  }

  .ticker__track {
    gap: 28px;
    font-size: 13px;
  }
}

.site-header {
  background: rgba(255, 249, 236, 0.92);
  border-bottom: 1px solid rgba(214, 188, 122, 0.18);
  box-shadow: 0 12px 28px rgba(124, 104, 67, 0.08);
}

.site-brand__logo-wrap {
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  background: linear-gradient(135deg, #f2ce68 0%, #d7ab3d 100%);
  box-shadow: 0 14px 28px rgba(204, 163, 70, 0.24);
}

.site-brand__logo {
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.site-nav__item {
  color: #5c4a2d;
}

.site-nav__item:hover,
.site-nav__item.is-current {
  background: rgba(216, 179, 75, 0.12);
  color: #c08e12;
  box-shadow: inset 0 0 0 1px rgba(216, 179, 75, 0.16);
}

.site-header__cta,
.button--primary {
  background: linear-gradient(135deg, #d8b34b 0%, #e8cb71 100%);
  color: #fff;
  box-shadow: 0 16px 34px rgba(216, 179, 75, 0.28);
}

.button--ghost {
  background: rgba(255, 255, 255, 0.82);
  border-color: rgba(216, 179, 75, 0.24);
  color: #b68410;
}

.page-home .hero__grid,
.page-tool .hero__grid {
  grid-template-columns: minmax(0, 1.34fr) minmax(280px, 0.66fr);
}

.page-home .hero__content,
.page-tool .hero__content {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(248, 239, 215, 0.9)),
    var(--surface);
  color: var(--text);
  border-color: rgba(214, 188, 122, 0.22);
  box-shadow: 0 30px 76px rgba(124, 104, 67, 0.14);
  padding: 52px 56px 44px;
}

.page-home .hero__content::before,
.page-tool .hero__content::before {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.68), transparent 24%);
}

.page-home .hero__eyebrow,
.page-tool .hero__eyebrow {
  padding: 10px 18px;
  background: rgba(241, 214, 132, 0.24);
  color: #cf9d22;
  box-shadow: inset 0 0 0 1px rgba(216, 179, 75, 0.22);
  font-size: 14px;
  letter-spacing: 0.04em;
}

.page-home .hero h1,
.page-tool .hero h1 {
  color: #d91d1d;
  font-size: clamp(28px, 3.7vw, 48px);
  letter-spacing: -0.02em;
  line-height: 1.04;
  white-space: nowrap;
}

.hero__signalbar--warm {
  justify-content: center;
  gap: 12px;
  margin-top: 20px;
}

.hero__signalbar--warm span {
  min-height: 40px;
  padding: 0 18px;
  background: rgba(244, 209, 206, 0.88);
  border: 1px solid rgba(236, 189, 184, 0.96);
  color: #1f1a17;
  font-size: 15px;
  font-weight: 700;
}

.page-home .hero__metrics,
.page-tool .hero__metrics {
  gap: 20px;
  margin-top: 30px;
}

.metric-card {
  text-align: center;
  min-height: 172px;
  padding: 24px 22px 22px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 28px;
}

.metric-card span {
  font-size: 18px;
  font-weight: 800;
  color: #7a6747;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.metric-card strong {
  max-width: none;
  margin: 10px auto 0;
  color: #41321c;
  font-size: clamp(22px, 2.1vw, 32px);
  line-height: 1.12;
  letter-spacing: -0.02em;
  text-wrap: nowrap;
  word-break: keep-all;
  overflow-wrap: normal;
}

.metric-card strong {
  white-space: nowrap;
}

.metric-card p {
  display: none;
}

.section-heading--feed {
  align-items: center;
}

.section-heading__more {
  margin-left: auto;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(216, 179, 75, 0.12);
  color: #b68410;
  font-weight: 800;
}

.section-heading--single {
  justify-content: flex-start;
}

.section-heading--single span {
  font-size: 14px;
  padding: 10px 18px;
}

.post-card__index,
.list-item__serial {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  min-height: 38px;
  border-radius: 999px;
  background: rgba(241, 214, 132, 0.2);
  color: #c08e12;
  font-weight: 800;
  box-shadow: inset 0 0 0 1px rgba(216, 179, 75, 0.16);
}

.home-certificate-section {
  padding-top: 10px;
}

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

.certificate-media-card,
.panel-card--media {
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(248, 239, 215, 0.86)),
    var(--surface);
  border: 1px solid rgba(214, 188, 122, 0.18);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.certificate-media-card h3 {
  margin: 0 0 16px;
  font-size: 24px;
}

.certificate-media-card img,
.panel-card__image {
  width: 100%;
  height: auto;
  border-radius: 20px;
  border: 1px solid rgba(214, 188, 122, 0.14);
  background: #fff;
}

.home-tool-link {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.promo-link {
  display: block;
}

.promo-link img {
  width: 100%;
  height: 110px;
  border-radius: 20px;
  object-fit: cover;
  border: 1px solid rgba(214, 188, 122, 0.16);
}

.promo-stack {
  display: grid;
  gap: 16px;
}

.side-card__promo {
  margin-top: 18px;
}

.side-card--promo {
  padding-bottom: 20px;
}

.pagebar .active,
.pagebar a:hover {
  background: linear-gradient(135deg, #d8b34b 0%, #e8cb71 100%);
}

.page-tool .section--alt {
  background: transparent;
  color: var(--text);
  border: 0;
}

.page-tool .section--alt .section-heading h2 {
  color: var(--text);
}

.page-tool .section--alt .section-heading span {
  background: rgba(241, 214, 132, 0.24);
  color: #cf9d22;
  box-shadow: inset 0 0 0 1px rgba(216, 179, 75, 0.22);
}

.page-tool .section--alt .rich-panel {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(248, 239, 215, 0.88)),
    var(--surface);
  color: inherit;
  border-color: rgba(214, 188, 122, 0.18);
  box-shadow: var(--shadow);
}

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

.reason-card,
.process-step {
  padding: 24px 20px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(214, 188, 122, 0.18);
  box-shadow: 0 18px 40px rgba(124, 104, 67, 0.08);
}

.reason-card__icon,
.process-step__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 16px;
  margin-bottom: 16px;
  background: rgba(255, 243, 217, 0.96);
  color: #c08e12;
  font-size: 24px;
  font-weight: 800;
}

.reason-card h3,
.process-step h3 {
  margin: 0 0 10px;
  font-size: 24px;
}

.reason-card p,
.process-step p {
  margin: 0;
  color: var(--muted);
}

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

.audience-card {
  padding: 26px 24px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(214, 188, 122, 0.18);
  box-shadow: 0 18px 40px rgba(124, 104, 67, 0.08);
}

.audience-card--unfit {
  background: rgba(255, 244, 244, 0.92);
  border-color: rgba(232, 169, 169, 0.46);
}

.audience-card--fit {
  background: rgba(255, 252, 236, 0.92);
  border-color: rgba(216, 179, 75, 0.34);
}

.audience-card__title {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  font-size: 24px;
  font-weight: 800;
}

.audience-card__title em {
  font-style: normal;
}

.audience-card ul {
  margin: 0;
  padding-left: 22px;
}

.audience-card li + li {
  margin-top: 12px;
}

.panel-card--media .panel-card__eyebrow {
  margin-bottom: 16px;
}

@media (max-width: 1024px) {
  .page-home .hero__grid,
  .page-tool .hero__grid,
  .reason-cards,
  .process-steps,
  .audience-compare,
  .certificate-media-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .site-brand__logo-wrap {
    width: 50px;
    height: 50px;
  }

  .page-home .hero h1,
  .page-tool .hero h1 {
    font-size: 34px;
    white-space: normal;
  }

  .hero__content--centered h1 {
    max-width: 10ch;
  }

  .page-home .hero__content,
  .page-tool .hero__content,
  .hero--tool .hero__content--tool {
    padding: 34px 24px;
  }

  .hero__signalbar--warm {
    justify-content: flex-start;
  }

  .hero__signalbar--warm span {
    width: 100%;
    justify-content: center;
  }

  .post-card__index,
  .list-item__serial {
    min-width: 34px;
    min-height: 34px;
  }

  .hero__summary-text,
  .hero__summary-text p,
  .hero__summary-text li {
    font-size: 16px;
  }

  .metric-card {
    min-height: 148px;
    padding: 20px 18px;
  }

  .metric-card span {
    font-size: 16px;
  }

  .metric-card strong {
    font-size: 22px;
    white-space: normal;
    text-wrap: balance;
  }

  .form-item--captcha {
    grid-template-columns: 1fr;
  }

  .form-item--code img {
    max-width: 180px;
  }
}

.hero--tool .hero__content--tool {
  padding: 52px 56px 44px;
}

.hero__content--tool .hero__signalbar--warm {
  justify-content: center;
}

.hero__content--tool .breadcrumb {
  display: flex;
  justify-content: flex-start;
  width: 100%;
  margin: 0 0 16px;
  text-align: left;
}

.section-heading--stack {
  display: grid;
  justify-content: start;
  align-items: start;
  gap: 10px;
}

.section-heading--stack h2 {
  margin: 0;
}
