:root {
  --font-ui: "Source Sans 3", "Source Sans Pro", Arial, sans-serif;
  --bg: #050505;
  --bg-soft: #0b0b0b;
  --graphite: #101010;
  --surface: rgba(255,255,255,0.038);
  --surface-strong: rgba(255,255,255,0.055);
  --surface-border-soft: rgba(255,255,255,0.10);
  --surface-border: rgba(247, 198, 47, 0.18);
  --text: #ffffff;
  --text-strong: rgba(255,255,255,0.94);
  --muted: rgba(255,255,255,0.64);
  --muted-soft: rgba(255,255,255,0.5);
  --cta-yellow: #f7c62f;
  --cta-lime: #dcff33;
  --cta-border: #ffe685;
  --cta-shadow: rgba(229, 255, 76, 0.24);
  --gold: #fb923c;
  --panel-shadow: 0 20px 44px rgba(0,0,0,0.24);
  --nav-bg: rgba(8, 8, 8, 0.72);
}
* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: 118px;
}
body {
  margin: 0;
  background:
    radial-gradient(circle at top right, rgba(251, 146, 60, 0.09), transparent 30%),
    linear-gradient(180deg, #050505 0%, #070707 100%);
  color: var(--text);
  font-family: var(--font-ui);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a { color: inherit; }
.site-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  background: var(--nav-bg);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.site-nav-minimal {
  backdrop-filter: blur(16px);
}
.nav-inner {
  max-width: 78rem;
  margin: 0 auto;
  padding: 14px 24px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
}
.nav-inner-minimal {
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
}
.nav-brand img {
  width: 176px;
  height: auto;
  display: block;
  mix-blend-mode: screen;
  filter: drop-shadow(0 0 18px rgba(251, 146, 60, 0.16));
}
.nav-center {
  display: flex;
  justify-content: center;
  gap: 8px;
  align-items: center;
  min-width: 0;
}
.nav-link,
.nav-cta,
.mobile-link,
.mobile-cta {
  font: inherit;
  text-decoration: none;
}
.nav-link {
  border: 0;
  background: transparent;
  color: rgba(255,255,255,0.74);
  padding: 10px 14px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  white-space: nowrap;
  transition: color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}
.nav-link:hover,
.nav-link:focus-visible {
  color: var(--text-strong);
  background: rgba(255,255,255,0.04);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.05), 0 0 0 1px rgba(247,198,47,0.08);
  outline: none;
}
.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-cta,
.page-cta {
  appearance: none;
  border: 1px solid var(--cta-border);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 15px 24px;
  border-radius: 16px;
  color: #141414;
  background: linear-gradient(90deg, var(--cta-yellow) 0%, #ffd43b 38%, var(--cta-lime) 100%);
  box-shadow: 0 0 0 1px rgba(255, 238, 154, 0.16), 0 0 24px var(--cta-shadow), 0 14px 30px rgba(0, 0, 0, 0.28);
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.26s ease, box-shadow 0.26s ease, filter 0.26s ease;
}
.nav-cta:hover,
.page-cta:hover {
  transform: translateY(-1px);
  filter: brightness(1.02);
}
.nav-toggle {
  display: none;
  appearance: none;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.035);
  color: var(--text-strong);
  width: 44px;
  height: 44px;
  border-radius: 14px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.nav-toggle-line,
.nav-toggle-line::before,
.nav-toggle-line::after {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  position: relative;
  transition: transform 0.25s ease, opacity 0.25s ease;
  content: "";
}
.nav-toggle-line::before { position: absolute; top: -6px; }
.nav-toggle-line::after { position: absolute; top: 6px; }
.mobile-nav {
  display: none;
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 0 20px 20px;
  background: rgba(8, 8, 8, 0.96);
}
.mobile-nav.open { display: block; }
.mobile-link,
.mobile-cta {
  width: 100%;
  display: block;
  padding: 16px 0;
  color: rgba(255,255,255,0.76);
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.mobile-actions {
  display: grid;
  gap: 12px;
  padding-top: 18px;
}
.mobile-cta {
  border-bottom: 0;
  text-align: center;
  justify-content: center;
  border-radius: 16px;
  color: #141414;
  background: linear-gradient(90deg, var(--cta-yellow) 0%, #ffd43b 38%, var(--cta-lime) 100%);
  box-shadow: 0 0 0 1px rgba(255, 238, 154, 0.16), 0 0 20px rgba(229,255,76,0.18);
  font-weight: 700;
}
.nav-link-demo {
  display: inline-flex;
}
.page-shell {
  width: 100%;
  max-width: 78rem;
  margin: 0 auto;
  padding: 0 24px 96px;
}
.page-hero {
  position: relative;
  overflow: hidden;
  padding: 96px 0 42px;
  scroll-margin-top: 118px;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 78% 22%, rgba(247,198,47,0.12), transparent 28%),
    linear-gradient(180deg, rgba(5,5,5,0.02), rgba(5,5,5,0.8));
  pointer-events: none;
}
.page-hero-inner {
  position: relative;
  max-width: 52rem;
  display: grid;
  gap: 22px;
}
.page-back-wrap {
  display: flex;
  justify-content: flex-start;
}
.page-back {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.024);
  color: rgba(255,255,255,0.78);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 600;
  transition: background 0.22s ease, color 0.22s ease, border-color 0.22s ease, transform 0.22s ease;
}
.page-back::before {
  content: "←";
  color: rgba(247,198,47,0.9);
  font-size: 1rem;
  line-height: 1;
}
.page-back:hover,
.page-back:focus-visible {
  color: var(--text-strong);
  background: rgba(255,255,255,0.04);
  border-color: rgba(247,198,47,0.16);
  transform: translateX(-1px);
  outline: none;
}
.page-eyebrow,
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(247, 198, 47, 0.88);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.page-title,
.section-title {
  margin: 0;
  color: var(--text-strong);
  font-size: clamp(2rem, 4.6vw, 3.7rem);
  line-height: 1.04;
  letter-spacing: -0.04em;
  font-weight: 650;
}
.page-copy,
.section-copy {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.78;
  max-width: 46rem;
}
.page-copy p,
.section-copy p {
  margin: 0 0 14px;
}
.page-copy p:last-child,
.section-copy p:last-child {
  margin-bottom: 0;
}
.section-block {
  padding: 44px 0;
}
.section-inner {
  max-width: 78rem;
  margin: 0 auto;
}
.story-card,
.panel,
.card,
.final-cta-panel {
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.08);
  background: linear-gradient(180deg, rgba(255,255,255,0.042), rgba(255,255,255,0.022));
  box-shadow: var(--panel-shadow);
}
.story-card,
.panel,
.card,
.final-cta-panel {
  padding: 30px;
}
.grid-2,
.grid-3,
.grid-4,
.grid-5,
.grid-6 {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.grid-5 { grid-template-columns: repeat(5, minmax(0, 1fr)); }
.grid-6 { grid-template-columns: repeat(6, minmax(0, 1fr)); }
.card h3,
.panel h3,
.story-card h3,
.final-cta-panel h3 {
  margin: 0 0 10px;
  font-size: 1.14rem;
  color: var(--text-strong);
}
.card p,
.panel p,
.story-card p,
.final-cta-panel p {
  margin: 0;
  color: rgba(255,255,255,0.62);
  font-size: 0.96rem;
  line-height: 1.68;
}
.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 42px;
  padding: 0 12px;
  border-radius: 14px;
  margin-bottom: 16px;
  background: rgba(255,255,255,0.035);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--cta-yellow);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.quote-card {
  position: relative;
  overflow: hidden;
  border-color: rgba(247,198,47,0.16);
  background: radial-gradient(circle at 92% 12%, rgba(247,198,47,0.12), transparent 26%), linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
}
.quote-card::after {
  content: "";
  position: absolute;
  right: -24px;
  bottom: -34px;
  width: 220px;
  height: 220px;
  background: url('/sutraz-logo-full-transparent.png') no-repeat center / contain;
  opacity: 0.05;
  mix-blend-mode: screen;
  pointer-events: none;
}
.quote-mark {
  color: rgba(247,198,47,0.82);
  font-size: 2.8rem;
  line-height: 1;
  font-weight: 700;
  margin-bottom: 18px;
}
.flow-card {
  text-align: center;
}
.flow-icon {
  width: 58px;
  height: 58px;
  border-radius: 999px;
  border: 1px solid rgba(247,198,47,0.14);
  background: rgba(255,255,255,0.03);
  box-shadow: 0 0 0 7px rgba(247,198,47,0.04), 0 0 18px rgba(220,255,51,0.12);
  margin: 0 auto 16px;
  display: grid;
  place-items: center;
  color: var(--cta-yellow);
}
.flow-icon svg { width: 30px; height: 30px; }
.rail {
  position: relative;
  margin-top: 28px;
}
.rail::before {
  content: "";
  position: absolute;
  left: 6%;
  right: 6%;
  top: 29px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(247,198,47,0.02), rgba(247,198,47,0.52), rgba(220,255,51,0.12));
  box-shadow: 0 0 26px rgba(247, 198, 47, 0.12), 0 0 64px rgba(247,198,47,0.08);
}
.workflow-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 18px;
}
.signal-grid,
.verdict-grid,
.extension-flow,
.dime-grid,
.trust-grid {
  margin-top: 28px;
  display: grid;
  gap: 18px;
}
.signal-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.verdict-grid { grid-template-columns: repeat(5, minmax(0, 1fr)); }
.extension-flow { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.dime-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.trust-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.verdict-card {
  position: relative;
  overflow: hidden;
}
.verdict-card::after {
  content: "";
  position: absolute;
  inset: auto -10% -28px auto;
  width: 120px;
  height: 120px;
  border-radius: 999px;
  filter: blur(34px);
  opacity: 0.18;
  pointer-events: none;
}
.verdict-card.accelerator::after { background: rgba(220,255,51,0.46); }
.verdict-card.bridge::after { background: rgba(247,198,47,0.42); }
.verdict-card.lateral::after { background: rgba(255,255,255,0.24); }
.verdict-card.distractor::after { background: rgba(251,146,60,0.38); }
.verdict-card.detour::after { background: rgba(248,113,113,0.34); }
.verdict-icon {
  width: 64px;
  height: 64px;
  border-radius: 20px;
  display: grid;
  place-items: center;
  margin-bottom: 14px;
  background: rgba(255,255,255,0.035);
  border: 1px solid rgba(255,255,255,0.08);
}
.verdict-icon svg { width: 34px; height: 34px; }
.verdict-card.accelerator .verdict-icon { color: #79ef50; }
.verdict-card.bridge .verdict-icon { color: #3a86ff; }
.verdict-card.lateral .verdict-icon { color: #ffbf1f; }
.verdict-card.distractor .verdict-icon { color: #ff7b1a; }
.verdict-card.detour .verdict-icon { color: #f15a3b; }
.extension-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}
.extension-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 700;
}
.extension-link.primary {
  color: #141414;
  background: linear-gradient(90deg, var(--cta-yellow) 0%, #ffd43b 38%, var(--cta-lime) 100%);
  box-shadow: 0 0 0 1px rgba(255, 238, 154, 0.16), 0 0 20px rgba(229,255,76,0.18);
}
.extension-link.secondary {
  color: rgba(255,255,255,0.82);
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
}
.final-cta-panel {
  text-align: center;
  border-color: rgba(247, 198, 47, 0.22);
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(247,198,47,0.055));
}
.final-cta-panel .section-copy {
  margin: 14px auto 24px;
}
.page-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  color: rgba(255,255,255,0.54);
  font-size: 0.9rem;
}
.page-breadcrumbs a {
  color: rgba(247, 198, 47, 0.88);
  text-decoration: none;
}
.page-breadcrumbs a:hover,
.page-breadcrumbs a:focus-visible,
.text-link:hover,
.text-link:focus-visible,
.link-chip:hover,
.link-chip:focus-visible {
  color: #fff0a8;
  outline: none;
}
.text-link {
  color: rgba(247, 198, 47, 0.92);
  text-decoration: none;
  font-weight: 600;
}
.content-list {
  margin: 18px 0 0;
  padding-left: 1.2rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.76;
}
.content-list li + li {
  margin-top: 12px;
}
.content-list strong {
  color: var(--text-strong);
}
.link-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}
.link-chip {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
  color: rgba(247, 198, 47, 0.92);
  text-decoration: none;
  font-size: 0.94rem;
  font-weight: 700;
}
.callout-note {
  margin-top: 18px;
  padding: 16px 18px;
  border-left: 3px solid rgba(247,198,47,0.42);
  border-radius: 16px;
  background: rgba(255,255,255,0.025);
  color: rgba(255,255,255,0.68);
  line-height: 1.72;
}
.comparison-grid {
  display: grid;
  gap: 18px;
  margin-top: 28px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.comparison-card h3,
.comparison-card h4 {
  margin: 0 0 10px;
  color: var(--text-strong);
  font-size: 1.08rem;
}
.comparison-card p:last-child {
  margin-bottom: 0;
}
.section-kicker {
  display: inline-block;
  margin-bottom: 12px;
  color: rgba(255,255,255,0.54);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.site-footer {
  margin-top: 84px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: start;
}
.footer-brand {
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.7;
  max-width: 22rem;
}
.footer-brand strong {
  display: block;
  margin-bottom: 8px;
  color: var(--text-strong);
  font-size: 1rem;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  justify-content: flex-end;
}
.footer-links a {
  color: rgba(247, 198, 47, 0.92);
  text-decoration: none;
  font-size: 0.95rem;
}
.footer-links a:hover,
.footer-links a:focus-visible {
  color: #fff0a8;
  outline: none;
}
@media (max-width: 1100px) {
  .nav-inner {
    gap: 16px;
    padding: 12px 20px;
  }
  .nav-inner-minimal {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 16px;
  }
  .nav-center {
    gap: 4px;
  }
  .nav-link {
    padding: 10px 10px;
    font-size: 0.94rem;
  }
  .nav-right {
    gap: 8px;
  }
  .nav-cta {
    padding: 13px 18px;
    font-size: 0.96rem;
  }
  .signal-grid,
  .dime-grid,
  .extension-flow,
  .trust-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .comparison-grid { grid-template-columns: 1fr; }
  .workflow-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .rail::before { display: none; }
  .verdict-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 980px) {
  .nav-link-demo {
    display: none;
  }
}
@media (max-width: 899px) {
  .nav-center,
  .nav-cta { display: none; }
  .nav-toggle { display: inline-flex; }
  .nav-inner { grid-template-columns: auto 1fr auto; }
  .nav-inner-minimal {
    grid-template-columns: minmax(0, 1fr);
    justify-items: stretch;
  }
  .site-nav-minimal .nav-right {
    width: 100%;
  }
  .site-nav-minimal .nav-cta {
    display: inline-flex;
    width: 100%;
    padding: 14px 18px;
    font-size: 0.96rem;
  }
  .site-nav-minimal .nav-toggle {
    display: none;
  }
  .page-shell { padding: 0 18px 84px; }
  .signal-grid,
  .verdict-grid,
  .extension-flow,
  .dime-grid,
  .trust-grid,
  .workflow-grid,
  .grid-2,
  .grid-3,
  .grid-4,
  .grid-5,
  .grid-6,
  .comparison-grid { grid-template-columns: 1fr; }
  .site-footer { grid-template-columns: 1fr; text-align: center; }
  .footer-links { justify-content: center; }
}
