/* roulang page: index */
:root {
  --color-bg: #0E1316;
  --color-bg-raised: #161D22;
  --color-surface: #1B242A;
  --color-primary: #EFA45E;
  --color-primary-hover: #DE8A3A;
  --color-accent: #57C4B0;
  --color-border: rgba(238, 230, 210, .12);
  --color-text: #F5F0E6;
  --color-muted: #9DAAA6;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --shadow: 0 12px 30px rgba(0,0,0,.25);
  --space-section: clamp(72px, 9vw, 112px);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--color-bg);
  color: var(--color-text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  font-size: 16px;
  line-height: 1.75;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
a:hover { color: var(--color-text); }
button, input, select, textarea { font-family: inherit; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4 { margin: 0 0 .5rem; line-height: 1.3; font-weight: 800; }
p { margin: 0 0 1rem; }
:focus-visible {
  outline: 3px solid rgba(239,164,94,.38);
  outline-offset: 2px;
  border-radius: var(--radius-sm);
}
::selection { background: rgba(239,164,94,.3); color: #fff; }

.overline {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .78rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: .75rem;
}
.overline::before {
  content: "";
  width: 24px;
  height: 2px;
  background: var(--color-primary);
  border-radius: 4px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  min-height: 44px;
  padding: .7rem 1.35rem;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  font-weight: 700;
  cursor: pointer;
  transition: background .2s ease, transform .2s ease, border-color .2s ease, color .2s ease, box-shadow .2s ease;
}
.btn-primary {
  background: var(--color-primary);
  color: #211610;
}
.btn-primary:hover, .btn-primary:active {
  background: var(--color-primary-hover);
  color: #211610;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(239,164,94,.16);
}
.btn-outline {
  background: transparent;
  border-color: rgba(239,164,94,.54);
  color: var(--color-primary);
}
.btn-outline:hover, .btn-outline:active {
  background: rgba(239,164,94,.10);
  color: #fff;
  border-color: var(--color-primary);
  transform: translateY(-2px);
}
.btn-light-outline {
  background: transparent;
  border-color: rgba(245,240,230,.32);
  color: var(--color-text);
}
.btn-light-outline:hover {
  background: rgba(245,240,230,.08);
  color: #fff;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(14,19,22,.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
}
.topbar-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.4rem;
  min-height: 72px;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  color: var(--color-text);
  font-weight: 800;
  letter-spacing: .02em;
}
.brand-mark {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--color-primary), #d67b32);
  color: #1a1712;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: .95rem;
  font-weight: 900;
  box-shadow: 0 0 0 4px rgba(239,164,94,.12);
}
.brand-1 { font-size: 1.2rem; }
.brand-2 { color: var(--color-primary); font-size: 1.2rem; }

.site-nav {
  display: flex;
  align-items: center;
  margin-left: 1rem;
}
.site-nav ul {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: .2rem;
}
.site-nav a {
  display: block;
  padding: .45rem .9rem;
  border-radius: 999px;
  color: var(--color-muted);
  font-size: .95rem;
  font-weight: 600;
  transition: color .2s ease, background .2s ease;
}
.site-nav a:hover, .site-nav a.current { color: var(--color-text); background: rgba(239,164,94,.10); }
.nav-cta { margin-left: auto; flex: 0 0 auto; }
.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--color-border);
  border-radius: 10px;
  color: var(--color-text);
  width: 44px;
  height: 40px;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
}

.progress-wrap {
  position: relative;
  border-top: 1px solid rgba(238,230,210,.07);
  background: rgba(14,19,22,.72);
}
.step-row {
  max-width: 1280px;
  margin: 0 auto;
  padding: .5rem .7rem;
  display: flex;
  overflow-x: auto;
  scrollbar-width: thin;
}
.step-row::-webkit-scrollbar { height: 4px; }
.step-row::-webkit-scrollbar-thumb { background: rgba(239,164,94,.3); border-radius: 2px; }
.step-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 1 0 auto;
  min-width: 150px;
  position: relative;
}
.step-item:not(:first-child)::before {
  content: "";
  width: 18px;
  height: 1px;
  background: rgba(238,230,210,.2);
  margin-right: 6px;
}
.step-item.is-last:not(:first-child)::before { background: transparent; }
.step-link {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .45rem .65rem;
  color: var(--color-muted);
  font-size: .9rem;
  font-weight: 600;
  white-space: nowrap;
  border-radius: 999px;
  transition: color .2s ease, background .2s ease;
}
.step-link:hover { color: #fff; background: rgba(239,164,94,.08); }
.step-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 1px solid rgba(245,240,230,.35);
  flex: 0 0 auto;
  background: transparent;
}
.step-item.is-active .step-link { color: #fff; }
.step-item.is-active .step-dot {
  background: var(--color-primary);
  border-color: var(--color-primary);
  box-shadow: 0 0 0 4px rgba(239,164,94,.18);
}
.step-item.is-done .step-link { color: var(--color-accent); }
.step-item.is-done .step-dot {
  background: var(--color-accent);
  border-color: var(--color-accent);
}

.hero {
  position: relative;
  min-height: 86vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(14,19,22,.76) 0%, rgba(14,19,22,.72) 47%, rgba(14,19,22,.96) 100%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 2;
  padding: 130px 0 80px;
  width: 100%;
}
.hero h1 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1.2;
  letter-spacing: -.01em;
  text-wrap: balance;
}
.hero-deck {
  max-width: 760px;
  font-size: clamp(1.02rem, 1.6vw, 1.2rem);
  color: var(--color-muted);
  margin: 1.3rem 0 1.8rem;
}
.hero-deck strong { color: var(--color-primary); font-weight: 700; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 1rem; }

.metric-card {
  position: relative;
  background: rgba(22,29,34,.94);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 1.1rem 1.25rem;
  min-height: 128px;
  box-shadow: var(--shadow);
  transition: transform .2s ease, border-color .2s ease;
}
.metric-card:hover {
  transform: translateY(-4px);
  border-color: rgba(239,164,94,.42);
}
.metric-card .metric-trend {
  font-size: .8rem;
  color: var(--color-accent);
}
.metric-num {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 900;
  color: var(--color-primary);
  line-height: 1.2;
  margin: .5rem 0 .25rem;
}
.metric-label { color: var(--color-muted); font-size: .9rem; }

.section {
  padding: var(--space-section) 20px;
  border-bottom: 1px solid rgba(238,230,210,.06);
}
.section-alt { background: var(--color-bg-raised); }
.section-head {
  max-width: 900px;
  margin-bottom: 2.6rem;
}
.section-head h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  letter-spacing: -0.01em;
}
.section-head p { color: var(--color-muted); font-size: 1.05rem; margin-bottom: 0; }

.bento-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .2s ease, border-color .2s ease;
  height: 100%;
}
.bento-card:hover {
  transform: translateY(-4px);
  border-color: rgba(239,164,94,.35);
}
.bento-media {
  margin: 0;
  overflow: hidden;
  position: relative;
}
.bento-media img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  transition: transform .4s ease;
}
.bento-card:hover .bento-media img { transform: scale(1.03); }
.bento-body { padding: 1.35rem 1.45rem 1.5rem; }
.card-tag {
  display: inline-block;
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .08em;
  color: var(--color-accent);
  background: rgba(87,196,176,.10);
  padding: .18rem .65rem;
  border-radius: 999px;
  margin-bottom: .6rem;
}
.bento-card h3 { font-size: 1.22rem; }
.bento-card p { color: var(--color-muted); font-size: .95rem; }
.bento-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1rem;
  font-size: .9rem;
  color: var(--color-muted);
}
.bento-link, .text-link {
  color: var(--color-primary);
  font-weight: 700;
}
.bento-link:hover { text-decoration: underline; }
.bento-accent {
  background: var(--color-primary);
  color: #241b13;
  border-color: transparent;
}
.bento-accent .card-tag { color: #241b13; background: rgba(36,27,19,.14); }
.bento-accent h3 { color: #241b13; }
.bento-accent p { color: rgba(36,27,19,.78); }
.bento-accent .bento-link { color: #3a2c1b; }
.feature-card-inner {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
}
.feature-card-inner .bento-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.feature-card-inner .bento-media img { height: 100%; min-height: 260px; }
@media (max-width: 63.9375em) {
  .feature-card-inner { grid-template-columns: 1fr; }
}

.compare-wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}
.compare-column {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-surface);
  padding: 1.6rem;
  box-shadow: var(--shadow);
}
.compare-column.compare-new {
  border-color: rgba(239,164,94,.45);
  background: linear-gradient(180deg, rgba(239,164,94,.08), rgba(87,196,176,.04));
}
.compare-column h3 { font-size: 1.25rem; }
.compare-list li { position: relative; padding-left: 1.4rem; color: var(--color-muted); margin-bottom: .8rem; }
.compare-list li::before { content: ""; position: absolute; left: 2px; top: .54rem; width: 7px; height: 7px; background: var(--color-accent); transform: rotate(8deg); }
.compare-new .compare-list li { color: var(--color-text); }
.compare-new .compare-list li::before { background: var(--color-primary); }

.bar-panel {
  margin-top: 2.4rem;
  border-top: 1px solid var(--color-border);
  padding-top: 2rem;
}
.bar-title {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  color: var(--color-muted);
  font-size: .9rem;
  margin-bottom: .4rem;
}
.bar-title em { color: var(--color-primary); font-style: normal; font-weight: 700; }
.bar-track {
  height: 8px;
  border-radius: 4px;
  background: rgba(238,230,210,.08);
  overflow: hidden;
  margin-bottom: 1.2rem;
  display: flex;
}
.bar-track i {
  display: block;
  height: 100%;
  border-radius: 4px;
}
.bar-a { background: rgba(157,170,166,.75); width: 78%; }
.bar-b { background: var(--color-primary); width: 36%; }
.bar-track-secondary .bar-a { width: 66%; }
.bar-track-secondary .bar-b { width: 30%; }
.bar-note { font-size: .84rem; color: var(--color-muted); margin: .6rem 0 0; }

.accordion { background: transparent; }
.accordion-item {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md) !important;
  margin-bottom: .8rem;
  overflow: hidden;
}
.accordion-title {
  background: var(--color-surface) !important;
  color: var(--color-text);
  font-size: 1.02rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 1.2rem;
  border: 0;
}
.accordion-title:hover, .accordion-title:active { background: var(--color-bg-raised) !important; color: var(--color-primary); }
.faq-panel { color: var(--color-muted); }
.faq-panel p { margin: 0; }
.faq-panel a { color: var(--color-primary); text-decoration: underline; }
.faq-panel a:hover { color: var(--color-primary-hover); }

.lead-band {
  background: var(--color-bg-raised);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  padding: clamp(4rem, 8vw, 5.5rem) 0;
}
.lead-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow);
  border-radius: var(--radius-lg);
  padding: clamp(1.6rem, 4vw, 2.6rem);
}
.lead-form label {
  color: var(--color-text);
  display: block;
  margin-bottom: .4rem;
  font-size: .92rem;
  font-weight: 600;
}
.lead-form input, .lead-form select {
  width: 100%;
  background: var(--color-bg);
  color: var(--color-text);
  border: 1px solid rgba(238,230,210,.2);
  border-radius: var(--radius-sm);
  padding: .72rem .9rem;
  margin-bottom: 1.1rem;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.lead-form input:focus, .lead-form select:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 4px rgba(239,164,94,.15);
}
.lead-note {
  margin-top: .8rem;
  font-size: .86rem;
  color: var(--color-muted);
}

.footer {
  background: #0A0E10;
  border-top: 1px solid var(--color-border);
  padding: 64px 0 30px;
}
.footer-inner { max-width: 1280px; margin: 0 auto; padding: 0 20px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr .9fr 1fr;
  gap: 40px;
  margin-bottom: 42px;
}
.footer-brand { display: inline-flex; align-items: center; gap: .6rem; color: #fff; font-weight: 800; font-size: 1.15rem; }
.footer p { color: var(--color-muted); font-size: .95rem; }
.footer h4 { color: var(--color-text); font-size: 1rem; margin-bottom: 1rem; }
.footer a { color: var(--color-muted); font-size: .94rem; }
.footer a:hover { color: var(--color-primary); }
.footer-grid li { margin-bottom: .55rem; }
.footer-bottom {
  border-top: 1px solid rgba(238,230,210,.1);
  padding-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  color: rgba(157,170,166,.7);
  font-size: .88rem;
}
.footer-bottom a { color: rgba(157,170,166,.8); }
.footer-bottom a:hover { color: var(--color-primary); }

@media (max-width: 63.9375em) {
  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    background: rgba(14,19,22,.98);
    border-bottom: 1px solid var(--color-border);
    padding: .7rem 1rem 1rem;
    z-index: 90;
  }
  .site-nav.open { display: block; }
  .site-nav ul { flex-direction: column; align-items: flex-start; }
  .site-nav a { width: 100%; padding: .8rem .9rem; }
  .nav-toggle { display: inline-flex; align-items: center; justify-content: center; margin-left: auto; }
  .nav-cta { margin-left: 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 39.9375em) {
  .hero-inner { padding: 100px 0 60px; }
  .hero h1 { font-size: 2.1rem; }
  .hero-ctas .btn { width: 100%; }
  .topbar-inner { padding: 0 1rem; min-height: 64px; }
  .brand-1, .brand-2 { font-size: 1.02rem; }
  .brand-mark { width: 31px; height: 31px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
}

/* roulang page: category1 */
:root {
  --color-bg: #0E1316;
  --color-bg-raised: #161D22;
  --color-surface: #1B242A;
  --color-primary: #EFA45E;
  --color-primary-hover: #DE8A3A;
  --color-accent: #57C4B0;
  --color-border: rgba(238, 230, 210, .12);
  --color-text: #F5F0E6;
  --color-muted: #9DAAA6;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --shadow: 0 12px 30px rgba(0, 0, 0, .25);
  --space-section: clamp(72px, 9vw, 112px);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--color-bg);
  color: var(--color-text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  font-size: 16px;
  line-height: 1.75;
}
body.nav-open { overflow: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font-family: inherit; font-size: inherit; color: inherit; }
figure { margin: 0; }
ul, ol, p, h1, h2, h3, h4 { margin: 0; }

::selection { background: rgba(239, 164, 94, .32); color: #fff; }
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(239, 164, 94, .45);
  outline-offset: 2px;
  border-radius: var(--radius-sm);
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  min-height: 44px;
  padding: .65rem 1.4rem;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  font-weight: 700;
  cursor: pointer;
  transition: background .2s ease, transform .2s ease, border-color .2s ease, color .2s ease, box-shadow .2s ease;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--color-primary); color: #211610; }
.btn-primary:hover, .btn-primary:active { background: var(--color-primary-hover); color: #211610; box-shadow: 0 10px 24px rgba(239, 164, 94, .16); }
.btn-outline { background: transparent; border-color: rgba(239, 164, 94, .55); color: var(--color-primary); }
.btn-outline:hover, .btn-outline:active { background: rgba(239, 164, 94, .1); color: #fff; border-color: var(--color-primary); }
.btn-light-outline { background: transparent; border-color: rgba(245, 240, 230, .32); color: var(--color-text); }
.btn-light-outline:hover, .btn-light-outline:active { background: rgba(245, 240, 230, .08); color: #fff; }

.row { max-width: 1320px; margin: 0 auto; }
.columns { padding-right: .75rem; padding-left: .75rem; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(14, 19, 22, .92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
}
.topbar-inner {
  max-width: 1320px;
  margin: 0 auto;
  min-height: 72px;
  padding: .5rem 1.4rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  position: relative;
}
.brand { display: inline-flex; align-items: center; gap: .55rem; font-weight: 800; letter-spacing: .02em; }
.brand-mark {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--color-primary), #d67b32);
  color: #1a1712;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: .95rem;
  font-weight: 900;
  box-shadow: 0 0 0 4px rgba(239, 164, 94, .12);
  flex: 0 0 auto;
}
.brand-1 { font-size: 1.18rem; }
.brand-2 { color: var(--color-primary); font-size: 1.18rem; }
.site-nav { display: flex; align-items: center; margin-left: .4rem; }
.site-nav ul { list-style: none; display: flex; align-items: center; gap: .2rem; margin: 0; padding: 0; }
.site-nav a {
  display: block;
  padding: .42rem .88rem;
  border-radius: 999px;
  color: var(--color-muted);
  font-size: .94rem;
  font-weight: 600;
  transition: color .2s ease, background .2s ease, border-color .2s ease;
}
.site-nav a:hover, .site-nav a.current { color: var(--color-text); background: rgba(239, 164, 94, .1); }
.nav-cta { margin-left: auto; flex: 0 0 auto; }
.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--color-border);
  border-radius: 10px;
  color: var(--color-text);
  width: 44px;
  height: 42px;
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  flex: 0 0 auto;
}
.nav-toggle:hover { border-color: var(--color-primary); }

.step-row {
  max-width: 1320px;
  margin: 0 auto;
  padding: .45rem .7rem .6rem;
  display: flex;
  overflow-x: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(239, 164, 94, .3) transparent;
}
.step-row::-webkit-scrollbar { height: 4px; }
.step-row::-webkit-scrollbar-track { background: transparent; }
.step-row::-webkit-scrollbar-thumb { background: rgba(239, 164, 94, .3); border-radius: 2px; }
.step-item { display: inline-flex; align-items: center; flex: 1 0 0; min-width: 140px; position: relative; }
.step-item:not(:first-child)::before { content: ""; width: 18px; height: 1px; background: rgba(238, 230, 210, .2); margin-right: 6px; }
.step-item.is-last:not(:first-child)::before { background: transparent; }
.step-link { display: inline-flex; align-items: center; gap: .5rem; color: var(--color-muted); font-size: .85rem; font-weight: 600; white-space: nowrap; }
.step-dot { width: 12px; height: 12px; border-radius: 50%; border: 2px solid rgba(245, 240, 230, .35); background: transparent; flex: 0 0 auto; transition: all .2s ease; }
.step-item.is-done .step-link { color: var(--color-accent); }
.step-item.is-done .step-dot { background: var(--color-accent); border-color: var(--color-accent); }
.step-item.is-active .step-link { color: #fff; }
.step-item.is-active .step-dot { background: var(--color-primary); border-color: var(--color-primary); box-shadow: 0 0 0 4px rgba(239, 164, 94, .2); }
.step-item.is-muted { opacity: .5; }
.step-item.is-muted .step-link { color: var(--color-muted); }
.step-item.is-muted .step-dot { border-color: var(--color-muted); background: transparent; }

.hero {
  position: relative;
  background-size: cover;
  background-position: center;
  border-bottom: 1px solid var(--color-border);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(14, 19, 22, .78) 0%, rgba(14, 19, 22, .74) 45%, rgba(14, 19, 22, .97) 100%);
  pointer-events: none;
}
.hero-inner { position: relative; z-index: 2; padding: clamp(90px, 12vh, 140px) 0 0; }
.hero-kicker { display: inline-flex; align-items: center; gap: .5rem; color: var(--color-accent); font-weight: 700; letter-spacing: .08em; margin-bottom: 1rem; border: 1px solid rgba(87, 196, 176, .28); padding: .2rem .8rem; border-radius: 999px; background: rgba(87, 196, 176, .06); font-size: .82rem; }
.hero h1 {
  font-size: clamp(2.25rem, 5vw, 3.9rem);
  line-height: 1.18;
  letter-spacing: -.015em;
  max-width: 780px;
}
.hero-deck {
  max-width: 720px;
  margin-top: 1.2rem;
  font-size: clamp(1rem, 1.5vw, 1.18rem);
  color: var(--color-muted);
}
.hero-deck strong { color: var(--color-primary); font-weight: 700; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 1.7rem; }

.editor-card {
  max-width: 480px;
  margin: 0 auto;
  background: rgba(28, 36, 41, .82);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 1.3rem;
  box-shadow: var(--shadow);
  backdrop-filter: blur(7px);
}
.editor-head { display: flex; align-items: center; gap: .85rem; }
.editor-avatar {
  width: 56px; height: 56px; border-radius: 18px; background: var(--color-primary); color: #211610;
  display: inline-flex; align-items: center; justify-content: center; font-size: 1.4rem; font-weight: 900;
  box-shadow: 0 0 0 5px rgba(239, 164, 94, .12);
}
.editor-head h2 { font-size: 1.1rem; }
.editor-head p { color: var(--color-muted); font-size: .82rem; }
.editor-badge {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .6rem;
}
.editor-badge-item {
  background: rgba(14, 19, 22, .72);
  border: 1px solid rgba(238, 230, 210, .1);
  border-radius: var(--radius-md);
  padding: .65rem .8rem;
}
.editor-badge-item span { display: block; color: var(--color-primary); font-size: 1.05rem; font-weight: 800; }
.editor-badge-item small { color: var(--color-muted); font-size: .75rem; }
.editor-note {
  margin-top: .9rem;
  padding: .7rem .8rem;
  background: rgba(87, 196, 176, .08);
  border-left: 3px solid var(--color-accent);
  border-radius: 8px;
  color: var(--color-muted);
  font-size: .86rem;
}

.metric-band { position: relative; z-index: 2; padding: clamp(52px, 7vw, 90px) 0 60px; }
.metric-card {
  background: rgba(22, 29, 34, .95);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 1.1rem 1.2rem;
  min-height: 132px;
  box-shadow: var(--shadow);
  transition: transform .2s ease, border-color .2s ease;
  margin-top: 1rem;
}
.metric-card:hover { transform: translateY(-4px); border-color: rgba(239, 164, 94, .42); }
.metric-label { color: var(--color-muted); font-size: .84rem; display: flex; align-items: center; justify-content: space-between; gap: .5rem; }
.metric-trend { display: inline-flex; align-items: center; font-size: .78rem; color: var(--color-accent); background: rgba(87, 196, 176, .1); border-radius: 999px; padding: 0 .5rem; }
.metric-value { font-size: clamp(1.6rem, 2.4vw, 2.1rem); font-weight: 800; color: #fff; margin-top: .85rem; line-height: 1.2; }
.metric-value small { font-size: 1rem; color: var(--color-muted); margin-left: .2rem; }
.metric-desc { color: var(--color-muted); font-size: .8rem; margin-top: .45rem; line-height: 1.45; }

.section { padding: var(--space-section) 0; border-bottom: 1px solid rgba(238, 230, 210, .06); }
.section-alt { background: var(--color-bg-raised); }
.section-head { max-width: 920px; margin-bottom: 2.8rem; }
.overline { display: inline-flex; align-items: center; gap: .5rem; color: var(--color-primary); font-weight: 700; letter-spacing: .12em; font-size: .78rem; text-transform: uppercase; }
.overline small { color: var(--color-muted); font-size: .75rem; letter-spacing: 0; }
.section-head h2 { font-size: clamp(1.75rem, 3vw, 2.5rem); line-height: 1.3; margin-top: .55rem; letter-spacing: -.01em; }
.section-head p { color: var(--color-muted); font-size: 1.03rem; margin-top: .8rem; max-width: 720px; }

.bento-card, .panel-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.bento-card:hover, .panel-card:hover { transform: translateY(-4px); border-color: rgba(239, 164, 94, .4); box-shadow: 0 16px 36px rgba(0, 0, 0, .35); }
.bento-card .card-media, .panel-card .card-media { overflow: hidden; }
.bento-card figure img, .panel-card figure img { width: 100%; object-fit: cover; }
.bento-row { align-items: stretch; }
.bento-row .columns { display: flex; }
.bento-row .bento-card { width: 100%; }
.bento-card .card-body { padding: 1.25rem 1.3rem 1.35rem; }
.card-kicker { color: var(--color-accent); font-size: .76rem; font-weight: 700; letter-spacing: .05em; display: inline-flex; gap: .4rem; }
.card-title { font-size: 1.3rem; line-height: 1.45; margin: .45rem 0 .55rem; letter-spacing: -.01em; }
.card-title.major { font-size: 1.45rem; }
.card-copy { color: var(--color-muted); font-size: .9rem; line-height: 1.7; }
.card-meta { display: flex; align-items: center; gap: .6rem; margin-top: .9rem; color: var(--color-muted); font-size: .8rem; }
.card-meta .arrow { margin-left: auto; color: var(--color-primary); font-size: 1rem; }
.card-meta .tag-line { background: rgba(239, 164, 94, .12); color: var(--color-primary); padding: .15rem .65rem; border-radius: 999px; }
.card-body-highlight { background: var(--color-primary); color: #211610; }
.card-body-highlight .card-copy, .card-body-highlight .card-meta { color: #312015; }
.card-body-highlight .card-meta .tag-line { background: rgba(33, 22, 16, .1); color: #211610; }
.card-body-highlight .arrow, .card-body-highlight .card-kicker { color: #211610; }
.media-frame { display: block; line-height: 0; position: relative; background: #0a0f12; min-height: 120px; }

.compare-panel .compare-list {
  display: flex;
  flex-direction: column;
  gap: .9rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.compare-panel li { background: rgba(245, 240, 230, .04); border: 1px solid rgba(245, 240, 230, .1); padding: .85rem 1rem; border-radius: var(--radius-md); color: var(--color-muted); font-size: .9rem; }
.compare-panel li strong { display: block; color: var(--color-text); font-size: .98rem; margin-bottom: .2rem; }
.compare-panel.good li { background: rgba(239, 164, 94, .06); border-color: rgba(239, 164, 94, .22); }
.compare-panel.good li strong { color: var(--color-primary); }

.compare-bars { margin-top: 2.2rem; display: flex; flex-direction: column; gap: 1.15rem; }
.bar-row { display: grid; grid-template-columns: minmax(90px, 168px) 1fr auto; gap: .9rem; align-items: center; }
.bar-label { color: var(--color-muted); font-size: .88rem; line-height: 1.4; }
.bar-track { background: rgba(245, 240, 230, .08); height: 8px; border-radius: 999px; overflow: hidden; }
.bar-fill { display: block; height: 100%; background: linear-gradient(90deg, var(--color-accent), var(--color-primary)); border-radius: inherit; transition: width .6s ease; }
.bar-row:hover .bar-fill { background: var(--color-primary); }
.bar-value { color: var(--color-text); font-weight: 800; font-size: .9rem; min-width: 2.6rem; text-align: right; }

.faq-section .section-head { margin-bottom: 2rem; }
.accordion { background: transparent; border: 0; margin: 0; padding: 0; border-radius: 0; }
.accordion-item {
  background: var(--color-surface);
  border: 1px solid var(--color-border) !important;
  border-radius: var(--radius-md);
  margin-bottom: .7rem;
  overflow: hidden;
  list-style: none;
}
.accordion-title {
  display: block;
  background: transparent;
  color: var(--color-text);
  padding: 1.05rem 1.2rem;
  font-weight: 700;
  font-size: 1rem;
  transition: background .2s ease, color .2s ease;
}
.accordion-title:hover, .accordion-item.is-active .accordion-title { background: rgba(239, 164, 94, .1); color: #fff; }
.accordion-title::after, .accordion-item .accordion-title::after {
  content: "";
  float: right;
  width: 8px;
  height: 8px;
  border-right: 2px solid var(--color-primary);
  border-bottom: 2px solid var(--color-primary);
  transform: rotate(45deg);
  transition: transform .25s ease;
  margin-top: .5rem;
}
.accordion-item.is-active .accordion-title::after { transform: rotate(-135deg); }
.accordion-content { background: transparent; border: 0; color: var(--color-muted); padding: .1rem 1.2rem 1.2rem; line-height: 1.8; font-size: .9rem; }

.lead-section { background: var(--color-bg-raised) border-box; border-bottom: 0; }
.lead-panel { background: var(--color-surface); border: 1px solid var(--color-border); border-radius: var(--radius-lg); padding: clamp(1.2rem, 3vw, 2.2rem); box-shadow: var(--shadow); }
.form-grid { display: grid; gap: 1rem; }
.form-field label { display: block; color: var(--color-muted); font-size: .86rem; margin-bottom: .3rem; }
.form-field input, .form-field select, .filter-field input, .filter-field select, .filter-group input {
  width: 100%;
  background: #0f151a;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: .7rem .85rem;
  min-height: 46px;
  color: var(--color-text);
  box-shadow: none;
  outline: none;
  margin-bottom: 0;
}
.form-field input:focus, .form-field select:focus, .filter-field input:focus, .filter-field select:focus { border-color: var(--color-primary); }
.trust-line { margin-top: 1.1rem; color: var(--color-muted); font-size: .8rem; display: inline-flex; gap: .45rem; align-items: flex-start; }

.footer {
  background: #0B1013;
  border-top: 1px solid var(--color-border);
  padding: clamp(48px, 6vw, 72px) 0 1.5rem;
}
.footer-inner { max-width: 1320px; margin: 0 auto; padding: 0 1.4rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr .8fr .9fr; gap: 2rem; padding-bottom: 2.2rem; }
.footer-brand { display: inline-flex; align-items: center; gap: .55rem; font-size: 1.2rem; font-weight: 800; }
.footer h4 { color: var(--color-text); font-size: .9rem; letter-spacing: .06em; margin-bottom: 1rem; }
.footer p, .footer li { color: var(--color-muted); font-size: .87rem; }
.footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .5rem; }
.footer a { transition: color .2s ease; }
.footer a:hover { color: var(--color-primary); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: .8rem;
  flex-wrap: wrap;
  border-top: 1px solid rgba(238, 230, 210, .08);
  padding-top: 1rem;
  font-size: .8rem;
  color: var(--color-muted);
}

@media (max-width: 40em) {
  .topbar-inner { flex-wrap: wrap; padding: .55rem 1rem; min-height: 64px; }
  .site-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(14, 19, 22, .98);
    border-bottom: 1px solid var(--color-border);
    padding: .55rem 1rem .9rem;
    margin: 0;
    box-shadow: 0 18px 30px rgba(0, 0, 0, .4);
  }
  .site-nav.open { display: block; }
  .site-nav ul { flex-direction: column; align-items: stretch; gap: .15rem; }
  .site-nav a { padding: .75rem .9rem; border-radius: 10px; border-bottom: 1px solid rgba(238, 230, 210, .05); }
  .nav-toggle { display: inline-flex; align-items: center; justify-content: center; margin-left: auto; }
  .nav-cta { display: none; }
  .step-item { min-width: 72px; }
  .step-item:not(:first-child)::before { width: 8px; }
  .step-link { gap: .3rem; font-size: .76rem; }
  .step-link span:last-child { display: none; }
  .step-item.is-active .step-link span:last-child, .step-item.is-done .step-link span:last-child { display: inline; }
  .step-row { padding-left: .6rem; padding-right: .6rem; }
  .row { padding: 0 .75rem; }
  .columns { padding-right: .75rem; padding-left: .75rem; }
  .hero-inner { padding-top: 68px; }
  .hero h1 { font-size: clamp(1.65rem, 7.2vw, 2.4rem); }
  .editor-badge { grid-template-columns: 1fr 1fr; }
  .card-title.major, .card-title { font-size: 1.2rem; }
  .bar-row { grid-template-columns: 1fr; gap: .3rem; }
  .bar-value { text-align: left; }
  .footer-grid { grid-template-columns: 1fr; gap: 1.4rem; }
  .footer-bottom { flex-direction: column; }
}
@media (min-width: 40em) and (max-width: 64em) {
  .row { padding: 0 1rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
