/*
 * Generated by scripts/build-source-assets.js.
 * Edit src/styles/ instead of this public output file.
 */
/* source: src/styles/00-foundation.css */
/* @critical-start */
:root {
  --primary: #d45c2f;
  --primary-deep: #a94322;
  --accent: #ffe1cb;
  --surface: #fffdfb;
  --surface-strong: #ffffff;
  --text: #2d1e19;
  --muted: #6d554b;
  --border: #f3cdb6;
  --success: #3a7d44;
  --success-action: #3a7d44;
  --success-text: #2f6e3a;
  --success-surface: rgba(58, 125, 68, 0.1);
  --success-border: rgba(58, 125, 68, 0.34);
  --warning: #e5a937;
  --warning-surface: rgba(229, 169, 55, 0.14);
  --warning-border: rgba(229, 169, 55, 0.42);
  --error: #b94a3b;
  --error-text: #b94a3b;
  --error-surface: rgba(185, 74, 59, 0.1);
  --error-border: rgba(185, 74, 59, 0.34);
  --on-success: #ffffff;
  --inverse-surface: #2d1e19;
  --inverse-text: #ffffff;
  --inverse-muted: rgba(255, 255, 255, 0.74);
  --warm-text: #2d1e19;
  --ink-soft: rgba(45, 30, 25, 0.08);
  --hairline: rgba(212, 92, 47, 0.18);
  --glass: rgba(255, 255, 255, 0.76);
  --panel-gradient: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.96) 0%,
    rgba(255, 250, 246, 0.92) 100%
  );
  --shadow: 0 20px 56px rgba(132, 63, 34, 0.1);
  --shadow-soft: 0 10px 32px rgba(132, 63, 34, 0.08);
  --shadow-strong: 0 26px 72px rgba(71, 34, 19, 0.14);
  --radius: 16px;
  --radius-small: 12px;
  --max-width: 1180px;
}
html[data-theme="dark"] {
  color-scheme: dark;
  --primary: #f07a42;
  --primary-deep: #ff9a64;
  --accent: #3a221a;
  --surface: #17100e;
  --surface-strong: #241815;
  --text: #fff2ea;
  --muted: #d5b9a9;
  --border: #6e4232;
  --success: #69b875;
  --success-action: #77d88a;
  --success-text: #8feaa2;
  --success-surface: rgba(105, 184, 117, 0.16);
  --success-border: rgba(105, 184, 117, 0.46);
  --warning: #f0c15a;
  --warning-surface: rgba(240, 193, 90, 0.16);
  --warning-border: rgba(240, 193, 90, 0.46);
  --error: #f07c70;
  --error-text: #ff9b90;
  --error-surface: rgba(240, 124, 112, 0.14);
  --error-border: rgba(240, 124, 112, 0.44);
  --on-success: #0b1b0f;
  --inverse-surface: #0f0a09;
  --inverse-text: #fff2ea;
  --inverse-muted: rgba(255, 242, 234, 0.72);
  --warm-text: #140c09;
  --ink-soft: rgba(255, 226, 211, 0.1);
  --hairline: rgba(240, 122, 66, 0.2);
  --dark-contour: rgba(132, 70, 48, 0.82);
  --dark-contour-soft: rgba(86, 47, 36, 0.9);
  --dark-inset: inset 0 0 0 1px rgba(86, 47, 36, 0.52);
  --glass: rgba(36, 24, 21, 0.78);
  --panel-gradient: linear-gradient(
    145deg,
    rgba(36, 24, 21, 0.94) 0%,
    rgba(42, 26, 22, 0.9) 100%
  );
  --shadow: 0 20px 58px rgba(0, 0, 0, 0.28);
  --shadow-soft: 0 10px 34px rgba(0, 0, 0, 0.2);
  --shadow-strong: 0 28px 78px rgba(0, 0, 0, 0.36);
}
* {
  box-sizing: border-box;
}
html {
  --scroll-progress: 0;
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}
section,
form[id] {
  scroll-margin-top: 96px;
}
body {
  margin: 0;
  font-family:
    Outfit,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    Segoe UI,
    sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 12% 8%, var(--surface), transparent 28%),
    radial-gradient(circle at 88% 22%, var(--surface), transparent 30%),
    var(--surface);
  line-height: 1.55;
  overflow-x: clip;
}
html[data-theme="dark"] body {
  background:
    radial-gradient(circle at 12% 8%, var(--surface), transparent 30%),
    radial-gradient(circle at 88% 22%, var(--surface), transparent 32%),
    var(--surface);
}
body:before {
  content: "";
  position: fixed;
  inset: -8%;
  pointer-events: none;
  background:
    linear-gradient(
      135deg,
      rgba(255, 225, 203, 0.62) 0 14%,
      transparent 14% 56%,
      rgba(212, 92, 47, 0.05) 56% 66%,
      transparent 66% 100%
    ),
    repeating-linear-gradient(
      112deg,
      rgba(212, 92, 47, 0.026) 0 1px,
      transparent 1px 118px
    );
  background-size:
    130% 130%,
    118px 118px;
  opacity: 0.82;
  z-index: -2;
  animation: none;
}
body:after {
  content: "";
  position: fixed;
  inset: -8%;
  pointer-events: none;
  background: linear-gradient(
    125deg,
    transparent 0 30%,
    rgba(255, 225, 203, 0.34) 30% 42%,
    transparent 42% 100%
  );
  clip-path: polygon(7% 0, 100% 9%, 91% 80%, 21% 100%, 0 32%);
  opacity: 0.48;
  z-index: -1;
  animation: none;
}
main {
  position: relative;
  isolation: isolate;
}
main:before {
  content: "";
  position: absolute;
  inset: 32px max(24px, calc((100% - var(--max-width)) / 2)) auto;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(212, 92, 47, 0.18),
    rgba(169, 67, 34, 0.12),
    transparent
  );
  pointer-events: none;
  z-index: -1;
}
html[data-theme="dark"] body:before {
  background:
    linear-gradient(
      135deg,
      rgba(58, 34, 26, 0.88) 0 18%,
      transparent 18% 58%,
      rgba(240, 122, 66, 0.1) 58% 70%,
      transparent 70% 100%
    ),
    repeating-linear-gradient(
      112deg,
      rgba(240, 122, 66, 0.055) 0 2px,
      transparent 2px 92px
    ),
    linear-gradient(
      315deg,
      rgba(240, 122, 66, 0.08) 0 24%,
      transparent 24% 100%
    );
}
html[data-theme="dark"] body:after {
  background: linear-gradient(
    125deg,
    transparent 0 28%,
    rgba(240, 122, 66, 0.12) 28% 42%,
    transparent 42% 100%
  );
  opacity: 0.88;
}
html[data-theme="dark"] main:before {
  background: linear-gradient(
    90deg,
    transparent,
    rgba(240, 122, 66, 0.22),
    rgba(110, 66, 50, 0.18),
    transparent
  );
}
html[data-theme="dark"] body:before,
html[data-theme="dark"] body:after {
  animation: none;
  transform: none;
}
.bi {
  display: inline-block;
  width: 1em;
  height: 1em;
  flex: 0 0 auto;
  vertical-align: middle;
  background-color: currentColor;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
}
.bi-list {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M2.5 4h11M2.5 8h11M2.5 12h11' fill='none' stroke='%23000' stroke-linecap='round' stroke-width='2'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M2.5 4h11M2.5 8h11M2.5 12h11' fill='none' stroke='%23000' stroke-linecap='round' stroke-width='2'/%3E%3C/svg%3E");
}
.bi-x-lg {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M3.5 3.5l9 9m0-9-9 9' fill='none' stroke='%23000' stroke-linecap='round' stroke-width='2'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M3.5 3.5l9 9m0-9-9 9' fill='none' stroke='%23000' stroke-linecap='round' stroke-width='2'/%3E%3C/svg%3E");
}
.bi-linkedin {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M4 6.2H2.2V13H4zM3.1 3.1A1.1 1.1 0 1 0 3.1 5.3A1.1 1.1 0 0 0 3.1 3.1zM13.5 13h-1.8V9.7c0-.8-.3-1.4-1.1-1.4-.6 0-1 .4-1.1.8-.1.2-.1.5-.1.7V13H7.6V6.2h1.8v.9c.3-.5.9-1.1 2.1-1.1 1.5 0 2.6 1 2.6 3.1z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M4 6.2H2.2V13H4zM3.1 3.1A1.1 1.1 0 1 0 3.1 5.3A1.1 1.1 0 0 0 3.1 3.1zM13.5 13h-1.8V9.7c0-.8-.3-1.4-1.1-1.4-.6 0-1 .4-1.1.8-.1.2-.1.5-.1.7V13H7.6V6.2h1.8v.9c.3-.5.9-1.1 2.1-1.1 1.5 0 2.6 1 2.6 3.1z'/%3E%3C/svg%3E");
}
.bi-tiktok {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M10.7 2.4c.3 1.3 1.2 2.1 2.8 2.2v1.4c-1.2 0-2.1-.3-2.8-.8v3.6a3.4 3.4 0 1 1-3.4-3.4h.2v1.5h-.2a1.8 1.8 0 1 0 1.8 1.8V2.4z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M10.7 2.4c.3 1.3 1.2 2.1 2.8 2.2v1.4c-1.2 0-2.1-.3-2.8-.8v3.6a3.4 3.4 0 1 1-3.4-3.4h.2v1.5h-.2a1.8 1.8 0 1 0 1.8 1.8V2.4z'/%3E%3C/svg%3E");
}
.bi-moon-stars {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M10.8 1.9a5.4 5.4 0 1 0 3.1 8.8 4.8 4.8 0 1 1-3.1-8.8z'/%3E%3Cpath d='M11.9 2.2l.4 1 .9.4-.9.4-.4 1-.4-1-.9-.4.9-.4z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M10.8 1.9a5.4 5.4 0 1 0 3.1 8.8 4.8 4.8 0 1 1-3.1-8.8z'/%3E%3Cpath d='M11.9 2.2l.4 1 .9.4-.9.4-.4 1-.4-1-.9-.4.9-.4z'/%3E%3C/svg%3E");
}
.bi-sun {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Ccircle cx='8' cy='8' r='2.6'/%3E%3Cpath d='M8 1.3v2M8 12.7v2M1.3 8h2M12.7 8h2M3.2 3.2l1.4 1.4M11.4 11.4l1.4 1.4M12.8 3.2l-1.4 1.4M4.6 11.4l-1.4 1.4' fill='none' stroke='%23000' stroke-linecap='round' stroke-width='1.6'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Ccircle cx='8' cy='8' r='2.6'/%3E%3Cpath d='M8 1.3v2M8 12.7v2M1.3 8h2M12.7 8h2M3.2 3.2l1.4 1.4M11.4 11.4l1.4 1.4M12.8 3.2l-1.4 1.4M4.6 11.4l-1.4 1.4' fill='none' stroke='%23000' stroke-linecap='round' stroke-width='1.6'/%3E%3C/svg%3E");
}
.bi-plus-lg {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M8 3v10M3 8h10' fill='none' stroke='%23000' stroke-linecap='round' stroke-width='2'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M8 3v10M3 8h10' fill='none' stroke='%23000' stroke-linecap='round' stroke-width='2'/%3E%3C/svg%3E");
}
.bi-envelope-paper {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M2.5 4.5h11v7h-11zM2.9 5l5.1 4 5.1-4' fill='none' stroke='%23000' stroke-linejoin='round' stroke-linecap='round' stroke-width='1.6'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M2.5 4.5h11v7h-11zM2.9 5l5.1 4 5.1-4' fill='none' stroke='%23000' stroke-linejoin='round' stroke-linecap='round' stroke-width='1.6'/%3E%3C/svg%3E");
}
img,
svg {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
select {
  font: inherit;
}
.container {
  width: min(var(--max-width), calc(100% - 40px));
  margin-inline: auto;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #fffdfbd1;
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(18px);
  box-shadow: 0 12px 38px #2d1e190a;
  transition:
    background 0.18s ease,
    border-color 0.18s ease,
    box-shadow 0.18s ease;
}
.site-header:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 1px;
  background: linear-gradient(90deg, #d45c2ff2, #a943229e, #d45c2f2e);
  transform: scaleX(var(--scroll-progress));
  transform-origin: left center;
  opacity: 0;
  transition: opacity 0.18s ease;
}
.site-header.is-scrolled {
  background: #fffdfbf0;
  box-shadow: 0 16px 48px #2d1e1914;
}
.site-header.is-scrolled:after {
  opacity: 0.52;
}
html[data-theme="dark"] .site-header {
  background: #17100edb;
  border-bottom-color: #6e4232b8;
}
html[data-theme="dark"] .site-header.is-scrolled {
  background: #17100ef0;
  border-bottom-color: #f07a4242;
  box-shadow: 0 18px 54px #00000057;
}
.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  position: relative;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 190px;
}
.brand-mark {
  width: 45px;
  height: 45px;
  border-radius: 15px;
  background: linear-gradient(145deg, var(--primary) 0%, #e66f3a 100%);
  display: grid;
  place-items: center;
  overflow: hidden;
  box-shadow:
    inset 0 0 0 1px #ffffff38,
    0 12px 28px #d45c2f33;
}
.brand-mark img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}
html[data-theme="dark"] .brand-mark {
  box-shadow:
    inset 0 0 0 1px #f07a4257,
    0 12px 28px #f07a4229;
}
.brand-copy {
  display: grid;
  gap: 1px;
}
.brand-copy strong {
  font-size: 1.05rem;
  line-height: 1.1;
}
.brand-copy span {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
}
.nav-links {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--muted);
  font-size: 0.91rem;
  font-weight: 700;
}
.nav-links a {
  min-height: 36px;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  border: 1px solid transparent;
  border-radius: 999px;
  line-height: 1;
  white-space: nowrap;
}
.nav-links a,
.header-cta,
.social-icon,
.language-option,
.menu-toggle,
.theme-toggle {
  transition:
    color 0.18s ease,
    transform 0.18s ease,
    background 0.18s ease,
    border-color 0.18s ease,
    box-shadow 0.18s ease;
}
.nav-links a:hover,
.nav-links a[aria-current="page"],
.nav-links a.is-active {
  background: #ffe1cb61;
  border-color: #d45c2f2e;
  color: var(--primary);
  transform: translateY(-1px);
}
.header-tools {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
}
.menu-toggle {
  width: 40px;
  height: 40px;
  display: none;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: #ffffffbd;
  color: var(--primary-deep);
  cursor: pointer;
  font-size: 1.16rem;
  box-shadow: inset 0 1px #ffffffd1;
}
.menu-toggle:hover,
.menu-toggle.is-open {
  background: var(--text);
  border-color: var(--text);
  color: var(--surface);
  transform: translateY(-1px);
}
.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  min-height: 40px;
  padding: 3px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: #ffffffb3;
  box-shadow: inset 0 1px #ffffffc7;
}
.language-option {
  min-width: 36px;
  height: 34px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 0.76rem;
  font-weight: 900;
}
.language-option:hover:not(.active) {
  background: var(--accent);
  color: var(--primary-deep);
  transform: translateY(-1px);
}
.language-option.active {
  background: var(--primary);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px #d45c2f4d;
}
.language-option:focus-visible,
.social-icon:focus-visible,
.theme-toggle:focus-visible,
.menu-toggle:focus-visible,
.header-cta:focus-visible,
.button:focus-visible,
.scenario-button:focus-visible,
.result-action:focus-visible,
.nav-links a:focus-visible,
.faq-item summary:focus-visible {
  outline: 3px solid rgba(212, 92, 47, 0.28);
  outline-offset: 3px;
}
html[data-theme="dark"] .language-option:focus-visible,
html[data-theme="dark"] .social-icon:focus-visible,
html[data-theme="dark"] .theme-toggle:focus-visible,
html[data-theme="dark"] .menu-toggle:focus-visible,
html[data-theme="dark"] .header-cta:focus-visible,
html[data-theme="dark"] .button:focus-visible,
html[data-theme="dark"] .scenario-button:focus-visible,
html[data-theme="dark"] .result-action:focus-visible,
html[data-theme="dark"] .nav-links a:focus-visible,
html[data-theme="dark"] .faq-item summary:focus-visible {
  outline-color: #f07a4285;
  box-shadow: 0 0 0 4px #f07a421a;
}
.social-icon {
  width: 40px;
  height: 40px;
  display: inline-grid;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: #ffffffbd;
  color: var(--primary-deep);
  font-size: 1.08rem;
  box-shadow: inset 0 1px #ffffffd1;
}
.theme-toggle {
  width: 40px;
  height: 40px;
  display: inline-grid;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: #ffffffbd;
  color: var(--primary-deep);
  cursor: pointer;
  font-size: 1.06rem;
  box-shadow: inset 0 1px #ffffffd1;
}
.theme-toggle:hover,
.theme-toggle.active {
  background: var(--text);
  border-color: var(--text);
  color: var(--surface);
  transform: translateY(-1px);
}
html[data-theme="dark"] .language-switcher,
html[data-theme="dark"] .social-icon,
html[data-theme="dark"] .theme-toggle,
html[data-theme="dark"] .menu-toggle,
html[data-theme="dark"] .button.secondary,
html[data-theme="dark"] .signal-strip div,
html[data-theme="dark"] .topbar-pill,
html[data-theme="dark"] .source-pill,
html[data-theme="dark"] .mini-result-list article,
html[data-theme="dark"] .scenario-button,
html[data-theme="dark"] .analysis-steps li,
html[data-theme="dark"] .result-card,
html[data-theme="dark"] .faq-item,
html[data-theme="dark"] .contact-signal-card,
html[data-theme="dark"] .mini-ranking-list div,
html[data-theme="dark"] .placement-flow li,
html[data-theme="dark"] .academy-preview-list div,
html[data-theme="dark"] .token-table div {
  background: var(--surface-strong);
  border-color: var(--dark-contour-soft);
}
html[data-theme="dark"] .language-switcher,
html[data-theme="dark"] .social-icon,
html[data-theme="dark"] .theme-toggle,
html[data-theme="dark"] .menu-toggle,
html[data-theme="dark"] .topbar-pill,
html[data-theme="dark"] .source-pill,
html[data-theme="dark"] .token-cost,
html[data-theme="dark"] .button.secondary,
html[data-theme="dark"] .signal-strip div,
html[data-theme="dark"] .score-feature,
html[data-theme="dark"] .result-card,
html[data-theme="dark"] .mini-result-list article,
html[data-theme="dark"] .analysis-steps li,
html[data-theme="dark"] .faq-item,
html[data-theme="dark"] .contact-signal-card,
html[data-theme="dark"] .scenario-button {
  box-shadow: var(--dark-inset);
}
html[data-theme="dark"] .waitlist-card,
html[data-theme="dark"] .preview-shell,
html[data-theme="dark"] .prototype-controls,
html[data-theme="dark"] .big-picture-card,
html[data-theme="dark"] .step-card,
html[data-theme="dark"] .token-table,
html[data-theme="dark"] .faq-intro-card,
html[data-theme="dark"] .faq-item,
html[data-theme="dark"] .contact-card,
html[data-theme="dark"] .contact-signal-card {
  background: #241815e0;
  border-color: var(--dark-contour-soft);
}
html[data-theme="dark"] input,
html[data-theme="dark"] select,
html[data-theme="dark"] textarea {
  background-color: #211613;
  color: var(--text);
  border-color: #f07a4240;
  box-shadow: var(--dark-inset);
}
html[data-theme="dark"] select {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='%23fff2ea' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3E%3C/svg%3E");
}
html[data-theme="dark"] .faq-item[open] {
  background: linear-gradient(145deg, #3a221adb, #241815f0);
}
html[data-theme="dark"] .faq-item p {
  color: #efd7c7;
}
html[data-theme="dark"] .contact-direct {
  background: linear-gradient(145deg, #0f0a09, #211613);
  border-color: #6e4232e6;
}
html[data-theme="dark"] .contact-card {
  background:
    radial-gradient(circle at 12% 8%, var(--surface), transparent 28%),
    linear-gradient(145deg, #130b09fc, #261410fa);
  border-color: #f07a4261;
  box-shadow:
    0 30px 86px #0000006b,
    var(--dark-inset);
}
html[data-theme="dark"] .contact-card:before {
  background: linear-gradient(
    115deg,
    rgba(240, 122, 66, 0.055),
    transparent 38%,
    rgba(240, 122, 66, 0.035)
  );
  opacity: 1;
}
html[data-theme="dark"] .contact-card label,
html[data-theme="dark"] .contact-card h2 {
  color: #fff7f0;
}
html[data-theme="dark"] .contact-card .form-heading p:not(.section-kicker),
html[data-theme="dark"] .contact-card .form-note {
  color: #efd7c7;
}
html[data-theme="dark"] .contact-card input,
html[data-theme="dark"] .contact-card select,
html[data-theme="dark"] .contact-card textarea {
  background-color: #130b09;
  border-color: #f07a426b;
  color: #fff7f0;
  box-shadow: inset 0 0 0 1px #f07a421a;
}
html[data-theme="dark"] .contact-card input::placeholder,
html[data-theme="dark"] .contact-card textarea::placeholder {
  color: #fff2eaad;
}
html[data-theme="dark"] .contact-submit-button {
  background: #f07a421f;
  border-color: #f07a4270;
  color: #ff9a64;
}
html[data-theme="dark"] .contact-submit-button:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #140c09;
}
html[data-theme="dark"] .contact-signal-section {
  background: linear-gradient(180deg, #17100e00, #1e1310e0);
}
html[data-theme="dark"] .preview-topbar {
  background: linear-gradient(180deg, #3a221ad1, #241815c7);
  border-bottom-color: #6e4232c7;
}
html[data-theme="dark"] .score-feature {
  background: linear-gradient(135deg, #241815, #332016);
  border-color: #6e4232e6;
  box-shadow: var(--dark-inset);
}
html[data-theme="dark"] .score-ring:before {
  background: var(--surface-strong);
}
html[data-theme="dark"] .compact-search,
html[data-theme="dark"] .waitlist-proof,
html[data-theme="dark"] .final-inner,
html[data-theme="dark"] .token-cost {
  background: #0f0a09;
}
html[data-theme="dark"] .compact-search {
  background: linear-gradient(135deg, #0f0a09, #211613);
  box-shadow:
    var(--dark-inset),
    0 14px 30px #0000003d;
}
html[data-theme="dark"] .preview-shell,
html[data-theme="dark"] .score-feature,
html[data-theme="dark"] .mini-result-list article,
html[data-theme="dark"] .result-card {
  backdrop-filter: none;
}
html[data-theme="dark"] .waitlist-proof,
html[data-theme="dark"] .final-inner {
  background: linear-gradient(145deg, #0f0a09, #1a100d);
}
html[data-theme="dark"] .empty-results {
  background: #3a221ac7;
  color: var(--primary-deep);
}
html[data-theme="dark"] .reason-list span,
html[data-theme="dark"] .placement-flow span,
html[data-theme="dark"] .academy-preview-list span,
html[data-theme="dark"] .source-pill {
  background: #f07a4229;
  border-color: #f07a4247;
}
html[data-theme="dark"] .waitlist-proof > div {
  background: #f07a4212;
  border-color: #f07a4238;
  box-shadow: inset 0 0 0 1px #f07a420d;
}
html[data-theme="dark"] .waitlist-proof span,
html[data-theme="dark"] .faq-index,
html[data-theme="dark"] .contact-signal-card span {
  background: #f07a4229;
  border: 1px solid rgba(240, 122, 66, 0.28);
  color: var(--primary-deep);
}
html[data-theme="dark"] .mini-ranking-list div,
html[data-theme="dark"] .placement-flow li,
html[data-theme="dark"] .academy-preview-list div {
  background: #241815db;
  border-color: var(--dark-contour-soft);
  box-shadow: var(--dark-inset);
}
html[data-theme="dark"] .placement-flow li.done {
  border-color: var(--success-border);
  background: #69b87521;
}
html[data-theme="dark"] .placement-flow li.active {
  border-color: var(--warning-border);
  background: #f0c15a21;
}
html[data-theme="dark"] .big-picture-section,
html[data-theme="dark"] .tokens-section {
  background: linear-gradient(180deg, #17100e00, #1e1310eb);
}
html[data-theme="dark"] .candidate-radar {
  background:
    radial-gradient(circle at 50% 50%, var(--surface) 0 2px, transparent 3px),
    repeating-radial-gradient(
      circle at 50% 50%,
      var(--surface) 0 1px,
      transparent 1px 38px
    ),
    #211613;
}
html[data-theme="dark"] .hero:before {
  background:
    linear-gradient(90deg, #17100ee6, #17100e42 46%, #17100edb),
    repeating-linear-gradient(
      90deg,
      transparent 0 78px,
      rgba(240, 122, 66, 0.045) 78px 79px,
      transparent 79px 158px
    );
}
html[data-theme="dark"] .hero:after {
  background: linear-gradient(145deg, #3a221ab8, #f07a421a);
  opacity: 0.78;
}
html[data-theme="dark"] .hero-preview:before {
  background: #24181547;
  border-color: #f07a4233;
}
html[data-theme="dark"] .hero-preview:after {
  background: conic-gradient(
    from 90deg,
    rgba(105, 184, 117, 0.1),
    rgba(240, 122, 66, 0.16),
    transparent 68%
  );
  opacity: 0.74;
  filter: none;
  animation: orbitGlow 16s ease-in-out infinite alternate;
}
html[data-theme="dark"] .compact-preview:after {
  background: linear-gradient(
    120deg,
    transparent 0 36%,
    rgba(240, 122, 66, 0.12) 46%,
    transparent 62% 100%
  );
  display: block;
  opacity: 0.58;
  animation: previewSheen 14s ease-in-out infinite;
}
html[data-theme="dark"] .compact-preview {
  animation: previewFloat 12s ease-in-out infinite;
}
html[data-theme="dark"] .score-ring:after,
html[data-theme="dark"] .interactive-preview:before {
  animation: pulseRing 5.6s ease-in-out infinite;
}
html[data-theme="dark"] .candidate-radar:before {
  animation: radarSweep 12s linear infinite;
}
html[data-theme="dark"] .result-card {
  animation-duration: 0.32s;
}
html[data-theme="dark"] .prototype-controls:before {
  background: #f07a426b;
}
html[data-theme="dark"] .search-panel {
  background:
    linear-gradient(135deg, rgba(240, 122, 66, 0.08), transparent 42%),
    #17100e52;
}
html[data-theme="dark"] .analysis-panel {
  background: #17100e3d;
}
html[data-theme="dark"] .results-panel {
  background: linear-gradient(180deg, #17100e47, #24181585);
}
html[data-theme="dark"] .search-panel label {
  color: var(--primary);
}
html[data-theme="dark"] .search-input-row input {
  background: #130b09;
}
html[data-theme="dark"] .result-card {
  background: linear-gradient(145deg, #241815eb, #2f1c16cc);
}
html[data-theme="dark"] .result-score {
  box-shadow: 0 10px 22px #00000038;
}
html[data-theme="dark"] .waitlist-card,
html[data-theme="dark"] .preview-shell,
html[data-theme="dark"] .prototype-controls,
html[data-theme="dark"] .interactive-preview,
html[data-theme="dark"] .big-picture-card,
html[data-theme="dark"] .step-card,
html[data-theme="dark"] .token-table,
html[data-theme="dark"] .faq-intro-card,
html[data-theme="dark"] .faq-item,
html[data-theme="dark"] .contact-card,
html[data-theme="dark"] .contact-signal-card,
html[data-theme="dark"] .analysis-steps li,
html[data-theme="dark"] .scenario-button,
html[data-theme="dark"] .result-card,
html[data-theme="dark"] .source-pill,
html[data-theme="dark"] .topbar-pill,
html[data-theme="dark"] .language-switcher,
html[data-theme="dark"] .social-icon,
html[data-theme="dark"] .theme-toggle,
html[data-theme="dark"] .menu-toggle {
  border-color: var(--dark-contour-soft);
}
html[data-theme="dark"] .step-card,
html[data-theme="dark"] .step-card span,
html[data-theme="dark"] .analysis-steps li,
html[data-theme="dark"] .scenario-button,
html[data-theme="dark"] .result-card,
html[data-theme="dark"] .source-pill,
html[data-theme="dark"] .topbar-pill,
html[data-theme="dark"] .language-switcher,
html[data-theme="dark"] .social-icon,
html[data-theme="dark"] .theme-toggle,
html[data-theme="dark"] .menu-toggle {
  box-shadow: var(--dark-inset);
}
html[data-theme="dark"] body:before,
html[data-theme="dark"] body:after {
  animation: none;
  will-change: auto;
}
html[data-theme="dark"] .waitlist-card:before {
  background: linear-gradient(
    115deg,
    rgba(240, 122, 66, 0.06),
    transparent 36%,
    rgba(240, 122, 66, 0.045)
  );
}
html[data-theme="dark"] .waitlist-proof:after,
html[data-theme="dark"] .value-band:after,
html[data-theme="dark"] .final-inner:after {
  background: repeating-linear-gradient(
    115deg,
    rgba(240, 122, 66, 0.06) 0 1px,
    transparent 1px 26px
  );
}
html[data-theme="dark"] .big-picture-card:before {
  background: linear-gradient(
    130deg,
    rgba(240, 122, 66, 0.055),
    transparent 42%,
    rgba(240, 122, 66, 0.045)
  );
}
html[data-theme="dark"] .candidate-radar:before {
  background: linear-gradient(
    45deg,
    transparent,
    rgba(240, 122, 66, 0.14),
    transparent 68%
  );
}
html[data-theme="dark"] .step-card:after {
  background: linear-gradient(
    90deg,
    rgba(240, 122, 66, 0.42),
    rgba(240, 122, 66, 0.12),
    transparent
  );
}
html[data-theme="dark"] .step-card {
  background: linear-gradient(145deg, #241815f5, #2f1c16e0);
}
html[data-theme="dark"] .step-card span {
  background: #f07a4224;
  border-color: #f07a4242;
  color: var(--primary);
  box-shadow: var(--dark-inset);
}
html[data-theme="dark"] .step-card:hover span {
  background: var(--primary);
  border-color: var(--primary);
  color: #140c09;
}
html[data-theme="dark"] .score-ring {
  box-shadow: 0 14px 32px #69b8751f;
}
html[data-theme="dark"] .score-ring:after {
  border-color: #69b87547;
}
html[data-theme="dark"] .button.secondary:hover,
html[data-theme="dark"] .token-table div:hover {
  background: #2f1c16f5;
  border-color: #f07a4285;
  color: var(--text);
  box-shadow: var(--shadow-soft);
}
html[data-theme="dark"] .scenario-button.active,
html[data-theme="dark"] .scenario-button:hover,
html[data-theme="dark"] .mini-result-list article:hover,
html[data-theme="dark"] .big-picture-card:hover,
html[data-theme="dark"] .step-card:hover,
html[data-theme="dark"] .result-card:hover {
  border-color: #f07a4280;
  box-shadow: var(--shadow-soft);
}
html[data-theme="dark"] .scenario-button.active,
html[data-theme="dark"] .scenario-button:hover {
  background: var(--accent);
}
html[data-theme="dark"] .result-action:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #140c09;
}
html[data-theme="dark"] .nav-links a:hover,
html[data-theme="dark"] .nav-links a[aria-current="page"],
html[data-theme="dark"] .nav-links a.is-active {
  background: #f07a421c;
  border-color: #f07a4242;
  color: var(--primary);
}
.button:active,
.header-cta:active,
.social-icon:active,
.theme-toggle:active,
.menu-toggle:active,
.result-action:active {
  transform: translateY(0) scale(0.98);
}
.social-icon:hover {
  background: var(--accent);
  border-color: #d45c2f6b;
  transform: translateY(-1px);
}
.header-cta {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 88px;
  padding: 0 14px;
  border-radius: 999px;
  background: var(--text);
  color: #fff;
  font-weight: 800;
  white-space: nowrap;
}
.cta-short {
  display: none;
}
.header-cta:hover {
  transform: translateY(-1px);
  background: var(--primary-deep);
}
html[data-theme="dark"] .header-cta {
  background: var(--surface-strong);
  border: 1px solid var(--border);
  color: var(--primary);
}
html[data-theme="dark"] .header-cta:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #140c09;
}
html[data-theme="dark"] .theme-toggle.active {
  background: var(--surface-strong);
  border-color: var(--border);
  color: var(--primary);

/* source: src/styles/20-hero-product.css */
}
html[data-theme="dark"] .theme-toggle.active:hover,
html[data-theme="dark"] .theme-toggle:hover,
html[data-theme="dark"] .menu-toggle:hover,
html[data-theme="dark"] .menu-toggle.is-open {
  background: var(--primary);
  border-color: var(--primary);
  color: #140c09;
}
.hero {
  position: relative;
  overflow: hidden;
  min-height: calc(100vh - 76px);
  display: grid;
  align-items: center;
  padding: 72px 0 58px;
}
.hero:before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, #fffdfbb8, #fffdfb2e 46%, #fffdfbc7),
    repeating-linear-gradient(
      90deg,
      transparent 0 78px,
      rgba(212, 92, 47, 0.035) 78px 79px,
      transparent 79px 158px
    );
  mask-image: linear-gradient(180deg, #000 0%, #000 70%, transparent 100%);
  z-index: -1;
}
.hero:after {
  content: "";
  position: absolute;
  right: -10%;
  top: 64px;
  width: 48%;
  height: 82%;
  background: linear-gradient(145deg, #ffe1cbdb, #d45c2f14);
  clip-path: polygon(18% 0, 100% 8%, 84% 84%, 5% 100%, 0 27%);
  z-index: -1;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(360px, 0.76fr);
  gap: 52px;
  align-items: center;
}
.hero-copy {
  min-width: 0;
  display: grid;
  gap: 20px;
  max-width: 690px;
  position: relative;
}
.hero-copy:before {
  display: none;
  content: none;
}
.eyebrow,
.section-kicker {
  margin: 0;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}
.eyebrow:before,
.section-kicker:before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 2px;
  background: var(--primary);
  box-shadow: 0 0 0 4px #d45c2f1a;
}
.hero h1,
.hero-subtitle,
.section-heading h2,
.value-grid h2,
.tokens-layout h2,
.final-inner h2 {
  margin: 0;
  line-height: 1.1;
  letter-spacing: 0;
}
.hero h1 {
  max-width: 720px;
  color: var(--primary);
  font-size: 4.95rem;
  font-weight: 900;
  text-wrap: balance;
  text-shadow: 0 20px 56px rgba(212, 92, 47, 0.12);
}
.hero-subtitle {
  max-width: 650px;
  color: var(--text);
  font-size: 3.18rem;
  font-weight: 800;
  text-wrap: balance;
}
.hero-lede {
  max-width: 610px;
  margin: 0;
  color: var(--muted);
  font-size: 1.1rem;
}
.hero-actions,
.field-grid,
.results-header,
.analysis-header,
.footer-inner {
  display: flex;
  align-items: center;
}
.hero-actions {
  flex-wrap: wrap;
  gap: 12px;
}
.button {
  appearance: none;
  -webkit-appearance: none;
  min-height: 50px;
  border: 0;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 22px;
  cursor: pointer;
  font-weight: 900;
  transition:
    transform 0.25s cubic-bezier(0.25, 1, 0.5, 1),
    box-shadow 0.25s cubic-bezier(0.25, 1, 0.5, 1),
    background 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease;
}
.hero-actions .button:after,
.faq-intro-card .button:after,
.contact-social-row .button:after,
.final-join-button:after {
  content: "";
  width: 0.92em;
  height: 0.92em;
  flex: 0 0 0.92em;
  background-color: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M3 8h8M8.8 4.2 12.6 8l-3.8 3.8' fill='none' stroke='%23000' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.8'/%3E%3C/svg%3E")
    center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M3 8h8M8.8 4.2 12.6 8l-3.8 3.8' fill='none' stroke='%23000' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.8'/%3E%3C/svg%3E")
    center / contain no-repeat;
}
.button:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 48px #d45c2f40;
}
.button.primary {
  background: linear-gradient(135deg, var(--primary) 0%, #e66f3a 100%);
  color: #fff;
  box-shadow:
    0 18px 38px #d45c2f3d,
    inset 0 1px #ffffff2e;
  border: 1px solid transparent;
}
.button.primary:hover {
  background: linear-gradient(
    135deg,
    var(--primary-deep) 0%,
    var(--primary) 100%
  );
  box-shadow: 0 22px 48px #d45c2f47;
}
.button.secondary {
  background: #fffbf7eb;
  color: var(--text);
  border: 1px solid rgba(126, 78, 56, 0.16);
  box-shadow:
    inset 0 1px #ffffffc7,
    0 10px 24px #351f180f;
}
.button.secondary:hover {
  border-color: #d45c2f6b;
  background: #fffaf6;
  box-shadow:
    0 16px 34px #d45c2f1f,
    inset 0 1px #ffffffe0;
}
html[data-theme="dark"] .button.primary {
  background: var(--surface-strong);
  border-color: #f07a4240;
  color: var(--primary);
  box-shadow: var(--dark-inset);
}
html[data-theme="dark"] .button.secondary {
  background: #231713e6;
  color: var(--text);
  border-color: #f07a423d;
  box-shadow:
    inset 0 1px #ffffff0a,
    0 12px 28px #0000002e;
}
html[data-theme="dark"] .button.secondary:hover {
  background: #2c1e19f5;
  border-color: #f07a426b;
  box-shadow: 0 16px 34px #00000038;
}
html[data-theme="dark"] .button.primary:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #140c09;
}
html[data-theme="dark"] .form-button.is-complete,
html[data-theme="dark"] .form-button.is-complete:hover,
html[data-theme="dark"] .form-button.is-complete[disabled] {
  background: var(--success-action);
  border-color: var(--success-action);
  color: var(--on-success);
  box-shadow: 0 16px 34px #69b87529;
  transform: none;
}
.signal-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 650px;
}
.signal-strip div {
  border: 1px solid var(--border);
  background: #ffffffbd;
  border-radius: var(--radius-small);
  padding: 14px 16px;
  box-shadow: inset 0 1px #ffffffc7;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}
.signal-strip div:before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(180deg, #d45c2fe6, #a943226b);
  opacity: 0.72;
}
.signal-strip div:hover {
  background: #ffffffeb;
  border-color: #d45c2f52;
  box-shadow: var(--shadow-soft);
  transform: translateY(-3px);
}
.signal-strip strong,
.signal-strip span {
  display: block;
}
.signal-strip strong {
  font-size: 1.1rem;
}
.signal-strip span {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 700;
}
.waitlist-card,
.waitlist-proof,
.preview-shell,
.prototype-controls,
.big-picture-card,
.step-card,
.token-table,
.faq-intro-card,
.faq-item,
.contact-card,
.contact-direct,
.contact-signal-card,
.final-inner {
  border: 1px solid var(--border);
  background: var(--panel-gradient);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
}
.waitlist-card,
.contact-card {
  min-width: 0;
  display: grid;
  gap: 18px;
  padding: 26px;
  position: relative;
  overflow: hidden;
}
.waitlist-card:before,
.contact-card:before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    115deg,
    rgba(255, 255, 255, 0.54),
    transparent 34%,
    rgba(212, 92, 47, 0.06)
  );
  opacity: 0.86;
}
.waitlist-card > *,
.contact-card > * {
  position: relative;
}
.waitlist-section {
  padding: 8px 0 64px;
}
.waitlist-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 18px;
  align-items: stretch;
}
.waitlist-proof {
  padding: 26px;
  display: grid;
  gap: 14px;
  box-shadow: var(--shadow-strong);
  background: linear-gradient(145deg, var(--inverse-surface), #1e1310);
  color: var(--inverse-text);
  position: relative;
  overflow: hidden;
}
.waitlist-proof:after {
  content: "";
  position: absolute;
  inset: auto -8% -38% 14%;
  height: 62%;
  background: repeating-linear-gradient(
    115deg,
    rgba(255, 225, 203, 0.11) 0 1px,
    transparent 1px 24px
  );
  transform: rotate(-4deg);
  pointer-events: none;
  z-index: 0;
}
.waitlist-proof > * {
  position: relative;
  z-index: 1;
}
.waitlist-proof h2,
.waitlist-proof p {
  margin: 0;
}
.waitlist-proof h2 {
  font-size: 1.8rem;
  line-height: 1.12;
}
.waitlist-proof > div {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  align-items: center;
  padding: 12px;
  border: 1px solid rgba(255, 225, 203, 0.22);
  border-radius: var(--radius-small);
  background: #ffe1cb12;
}
.waitlist-proof span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--accent);
  border: 1px solid rgba(212, 92, 47, 0.24);
  color: var(--primary-deep);
  font-size: 0.82rem;
  font-weight: 900;
}
.waitlist-proof p {
  color: var(--inverse-muted);
}
.form-heading h2,
.form-heading p,
.prototype-controls h3,
.prototype-controls p,
.analysis-header h3,
.results-header h3,
.score-feature .h2-style,
.mini-result-list .h3-style,
.step-card h3,
.token-table p,
.final-inner p,
.site-footer p {
  margin: 0;
}
.form-heading {
  display: grid;
  gap: 5px;
}
.form-heading h2 {
  font-size: 1.55rem;
}
.form-heading p:not(.section-kicker),
.form-note,
.prototype-controls p,
.step-card p,
.token-table p,
.final-inner p,
.site-footer p {
  color: var(--muted);
}
.field-grid {
  gap: 12px;
}
.field-grid label {
  flex: 1;
}
label {
  display: grid;
  gap: 7px;
  color: var(--text);
  font-size: 0.88rem;
  font-weight: 800;
}
input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--border);
  border-radius: var(--radius-small);
  background: #ffffffe6;
  color: var(--text);
  padding: 0 14px;
  outline: none;
  box-shadow: inset 0 1px #ffffffd1;
  transition:
    border 0.16s ease,
    box-shadow 0.16s ease,
    transform 0.16s ease;
}
select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='%232d1e19' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 14px;
  padding-right: 40px;
}
textarea {
  min-height: 150px;
  padding: 13px 14px;
  resize: vertical;
}
.consent-field {
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 12px;
  font-size: 0.9rem;
  font-weight: 700;
}
.consent-field input[type="checkbox"] {
  width: 18px;
  min-height: 18px;
  margin: 3px 0 0;
  padding: 0;
  border-radius: 5px;
  accent-color: var(--primary);
  box-shadow: none;
}
.consent-copy {
  display: grid;
  gap: 4px;
}
.consent-copy strong {
  font-size: 0.92rem;
  line-height: 1.4;
}
.consent-copy small {
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.45;
}
input:focus,
select:focus,
textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px #d45c2f1f;
  transform: translateY(-1px);
}
input[aria-invalid="true"],
select[aria-invalid="true"],
textarea[aria-invalid="true"] {
  border-color: var(--error-border);
  background:
    linear-gradient(0deg, var(--error-surface), var(--error-surface)), #ffffffeb;
  box-shadow: 0 0 0 4px var(--error-surface);
}
html[data-theme="dark"] input:focus,
html[data-theme="dark"] select:focus,
html[data-theme="dark"] textarea:focus {
  border-color: #f07a42ad;
  box-shadow: 0 0 0 4px #f07a4229;
}
html[data-theme="dark"] input[aria-invalid="true"],
html[data-theme="dark"] select[aria-invalid="true"],
html[data-theme="dark"] textarea[aria-invalid="true"] {
  border-color: var(--error-border);
  background:
    linear-gradient(0deg, var(--error-surface), var(--error-surface)), #130b09;
  box-shadow: 0 0 0 4px #f07c701f;
}
.form-button {
  width: min(100%, 220px);
  justify-self: start;
}
.form-button.is-complete {
  background: var(--success-action);
  background-color: var(--success-action);
  border-color: var(--success-action);
  color: var(--on-success);
  gap: 10px;
  transition: none;
}
.form-button.is-complete:before,
.form-success-icon:before {
  content: "";
  width: 12px;
  height: 7px;
  border-left: 3px solid currentColor;
  border-bottom: 3px solid currentColor;
  transform: rotate(-45deg) translateY(-1px);
}
.form-button.is-complete:after {
  display: none;
}
.form-button[disabled] {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}
.waitlist-card.is-submitting,
.contact-card.is-submitting {
  border-color: #d45c2f6b;
}
.waitlist-card.is-submitting .form-button,
.contact-card.is-submitting .contact-submit-button {
  gap: 12px;
}
.waitlist-card.is-submitting .form-button:before,
.contact-card.is-submitting .contact-submit-button:before {
  content: "";
  width: 14px;
  height: 14px;
  border: 2px solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  animation: buttonSpin 0.68s linear infinite;
}
html[data-theme="dark"] .waitlist-card.is-submitting,
html[data-theme="dark"] .contact-card.is-submitting {
  border-color: #f07a428f;
  box-shadow:
    0 30px 86px #00000057,
    0 0 0 1px #f07a421f inset;
}
.form-button.is-complete[disabled] {
  cursor: default;
  opacity: 1;
}
html[data-theme="dark"] .button.primary.form-button.is-complete,
html[data-theme="dark"] .button.primary.form-button.is-complete:hover,
html[data-theme="dark"] .button.primary.form-button.is-complete:disabled,
.waitlist-card.is-complete .form-status-row,
.contact-card.is-complete .form-status-row {
  padding: 12px 14px;
  border: 1px solid var(--success-border);
  border-radius: var(--radius-small);
  background: var(--success-surface);
}
.honeypot {
  position: absolute !important;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}
.form-status-row {
  min-height: 28px;
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 9px;
  align-items: center;
}
.contact-card:not(.is-complete) .form-status-row {
  grid-template-columns: 1fr;
}
.form-success-icon {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--success-action);
  color: var(--on-success);
  opacity: 0;
  transform: scale(0.72);
  transition:
    opacity 0.18s ease,
    transform 0.18s ease;
}
.contact-card:not(.is-complete) .form-success-icon {
  display: none;
}
.waitlist-card.is-complete .form-success-icon,
.contact-card.is-complete .form-success-icon {
  opacity: 1;
  transform: scale(1);
  transition: none;
}
.form-note {
  margin: 0;
  min-height: 22px;
  font-size: 0.9rem;
}
.form-note.error {
  color: var(--error-text);
  font-weight: 800;
}
.form-note.success {
  color: var(--success-text);
  font-weight: 800;
}
.hero-preview {
  min-width: 0;
  position: relative;
  isolation: isolate;
}
.hero-preview:before,
.hero-preview:after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: -1;
}
.hero-preview:before {
  inset: 8% -8% 4% 8%;
  border: 1px solid var(--hairline);
  border-radius: 28px;
  transform: rotate(-3deg);
  background: #ffffff38;
}
.hero-preview:after {
  width: 128px;
  height: 128px;
  right: -22px;
  bottom: 26px;
  border-radius: 50%;
  background: conic-gradient(
    from 90deg,
    rgba(58, 125, 68, 0.18),
    rgba(212, 92, 47, 0.22),
    transparent 68%
  );
  filter: blur(2px);
  animation: orbitGlow 16s ease-in-out infinite alternate;
}
.preview-shell {
  overflow: hidden;
  position: relative;
  isolation: isolate;
}
.compact-preview {
  max-width: 520px;
  margin-left: auto;
  transform: rotate(-1deg);
  box-shadow: var(--shadow-strong);
  animation: previewFloat 12s ease-in-out infinite;
}
.compact-preview:before {
  content: "";
  position: absolute;
  inset: 58px 0 auto;
  height: 120px;
  background:
    linear-gradient(90deg, transparent, rgba(212, 92, 47, 0.08), transparent),
    repeating-linear-gradient(
      90deg,
      transparent 0 42px,
      rgba(212, 92, 47, 0.06) 42px 43px,
      transparent 43px 86px
    );
  pointer-events: none;
  z-index: 0;
}
.compact-preview > * {
  position: relative;
  z-index: 1;
}
.compact-preview:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent 0 34%,
    rgba(255, 255, 255, 0.34) 46%,
    transparent 60% 100%
  );
  transform: translate(-112%);
  animation: previewSheen 14s ease-in-out infinite;
  pointer-events: none;
  z-index: 4;
}
.preview-topbar {
  min-height: 58px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0 18px;
  border-bottom: 1px solid var(--border);
  background: linear-gradient(180deg, #ffeadbc2, #ffe1cb75);
}
.window-dots {
  display: flex;
  gap: 6px;
}
.window-dots i {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--primary);
  opacity: 0.9;
}
.window-dots i:nth-child(2) {
  background: #d45c2f94;
}
.window-dots i:nth-child(3) {
  background: #d45c2f57;
}
.topbar-title {
  flex: 1;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 800;
}
.topbar-pill,
.source-pill,
.token-cost {
  border-radius: 999px;
  background: #fff;
  color: var(--primary-deep);
  padding: 7px 10px;
  font-size: 0.78rem;
  font-weight: 900;
  white-space: nowrap;
  box-shadow: inset 0 1px #ffffffd1;
}
.compact-search {
  display: grid;
  gap: 3px;
  margin: 22px;
  padding: 15px 16px;
  border-radius: var(--radius-small);
  background: linear-gradient(135deg, var(--inverse-surface), #3a251f);
  color: var(--inverse-text);
  box-shadow:
    inset 0 1px #ffffff14,
    0 14px 30px #2d1e191f;
}
.compact-search span {
  color: var(--inverse-muted);
  font-size: 0.82rem;
  font-weight: 800;
}
.score-feature {
  display: grid;
  grid-template-columns: 104px 1fr;
  gap: 18px;
  align-items: center;
  margin: 0 22px 18px;
  padding: 22px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, #ffffffc2, #fff5edc2);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  box-shadow:
    inset 0 1px #ffffffdb,
    0 12px 32px #843f220a;
  position: relative;
  overflow: hidden;
}
.score-feature:after {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, #d45c2f1f, #d45c2fad, #a9432238);
  opacity: 0.8;
}
.score-ring {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: conic-gradient(
    var(--success) 0 92%,
    rgba(58, 125, 68, 0.12) 92% 100%
  );
  display: grid;
  place-items: center;
  position: relative;
  box-shadow: 0 14px 32px #3a7d442e;
}
.score-ring:after {
  content: "";
  position: absolute;
  inset: -7px;
  border: 1px solid rgba(58, 125, 68, 0.24);
  border-radius: 50%;
  animation: pulseRing 5.6s ease-in-out infinite;
}
.score-ring:before {
  content: "";
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #fff;
  position: absolute;
}
.score-ring span {
  position: relative;
  color: var(--success);
  font-size: 1.6rem;
  font-weight: 900;
}
.score-label {
  margin: 0 0 2px;
  color: var(--success);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}
.score-feature .h2-style {
  font-size: 1.4rem;
}
.score-feature p:not(.score-label),
.mini-result-list p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 0.94rem;
}
.mini-result-list {
  display: grid;
  gap: 10px;
  padding: 0 22px 22px;
}
.mini-result-list article {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 12px;
  align-items: center;
  padding: 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-small);
  background: #ffffffa6;
  backdrop-filter: blur(12px);
  transition:
    transform 0.18s ease,
    border-color 0.18s ease,
    box-shadow 0.18s ease;
  position: relative;
  overflow: hidden;
}
.mini-result-list article:before {
  content: "";
  position: absolute;
  inset: 12px auto 12px 0;
  width: 3px;
  border-radius: 0 999px 999px 0;
  background: var(--primary);
  opacity: 0.36;
}
.mini-result-list article:hover {
  border-color: #d45c2f6b;
  box-shadow: var(--shadow-soft);
  transform: translateY(-2px);
}
.score-chip {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  font-weight: 900;
}
.score-chip.high {
  background: var(--success);
}
.score-chip.medium {
  background: var(--warning);
  color: var(--warm-text);
}
/* @critical-end */

/* source: src/styles/30-sections-forms.css */
.value-band {
  padding: 42px 0;
  background:
    linear-gradient(135deg, rgba(212, 92, 47, 0.16), transparent 28%),
    linear-gradient(180deg, var(--inverse-surface), #211511);
  color: var(--inverse-text);
  position: relative;
  overflow: hidden;
}
.value-band:after {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    90deg,
    transparent 0 96px,
    rgba(255, 225, 203, 0.07) 96px 97px,
    transparent 97px 194px
  );
  pointer-events: none;
}
.value-band .container {
  position: relative;
}
.value-grid,
.tokens-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 48px;
  align-items: center;
}
.value-grid h2,
.tokens-layout h2,
.section-heading h2,
.final-inner h2 {
  font-size: 2.7rem;
}
.value-grid p:last-child {
  margin: 0;
  color: var(--inverse-muted);
  font-size: 1.12rem;
}
.prototype-section,
.big-picture-section,
.how-section,
.tokens-section,
.faq-section,
.contact-signal-section,
.final-cta {
  padding: 88px 0;
}
.section-heading {
  max-width: 790px;
  display: grid;
  gap: 12px;
  margin-bottom: 30px;
}
.section-heading:before {
  display: none;
  content: none;
}
.section-heading.narrow:before {
  justify-self: center;
}
.section-heading h2,
.value-grid h2,
.tokens-layout h2,
.final-inner h2 {
  text-wrap: balance;
}
.section-heading.narrow {
  text-align: center;
  justify-items: center;
}
.section-heading p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
}
.prototype-layout {
  display: grid;
  grid-template-columns: 310px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}
.prototype-controls {
  padding: 22px;
  position: sticky;
  top: 100px;
  display: grid;
  gap: 16px;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}
.prototype-controls:before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: #d45c2f61;
}
.scenario-list {
  display: grid;
  gap: 10px;
}
.scenario-button {
  width: 100%;
  border: 1px solid var(--border);
  background: #ffffffc7;
  color: var(--text);
  border-radius: var(--radius-small);
  padding: 13px 14px 13px 18px;
  text-align: left;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition:
    border 0.18s ease,
    background 0.18s ease,
    transform 0.18s ease,
    box-shadow 0.18s ease;
}
.scenario-button:before {
  content: "";
  position: absolute;
  inset: 13px auto 13px 0;
  width: 4px;
  border-radius: 0 999px 999px 0;
  background: #d45c2f61;
  transition:
    background 0.18s ease,
    opacity 0.18s ease;
}
.scenario-button strong,
.scenario-button span {
  display: block;
}
.scenario-button strong {
  font-size: 0.98rem;
}
.scenario-button span {
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 700;
}
.scenario-button.active,
.scenario-button:hover {
  border-color: var(--primary);
  background: var(--accent);
  transform: translateY(-1px);
  box-shadow: 0 10px 24px #843f2214;
}
.scenario-button.active:before,
.scenario-button:hover:before {
  background: var(--primary);
}
.run-button {
  width: 100%;
}
.interactive-preview {
  min-height: 720px;
  box-shadow: var(--shadow-strong);
  position: relative;
}
.interactive-preview:after {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(
    90deg,
    #d45c2f14,
    #d45c2fbd,
    #a943223d,
    #d45c2f14
  );
  opacity: 0.7;
  pointer-events: none;
  z-index: 2;
}
.interactive-preview:before {
  content: "";
  position: absolute;
  inset: -16px;
  border-radius: calc(var(--radius) + 16px);
  background: radial-gradient(
    circle at 50% 50%,
    var(--surface),
    transparent 70%
  );
  z-index: -1;
  pointer-events: none;
  animation: pulseRing 6.5s ease-in-out infinite alternate;
}
.search-panel,
.analysis-panel,
.results-panel {
  padding: 22px;
  border-bottom: 1px solid var(--border);
}
.search-panel {
  background:
    linear-gradient(135deg, rgba(255, 225, 203, 0.2), transparent 42%),
    #ffffff57;
}
.analysis-panel {
  background: #fffdfb75;
}
.results-panel {
  background: linear-gradient(180deg, #fffdfb80, #fff7f094);
  border-bottom: 0;
}
.search-panel label {
  color: var(--primary-deep);
  font-size: 0.78rem;
  text-transform: uppercase;
}
.search-input-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: center;
  margin-top: 8px;
}
.search-input-row input {
  min-height: 54px;
  background: #fffffff0;
  font-weight: 800;
}
.token-cost {
  background: var(--inverse-surface);
  color: var(--inverse-text);
  min-height: 40px;
  display: inline-flex;
  align-items: center;
}
.meter {
  flex: 1;
  margin-left: 24px;
  height: 9px;
  border-radius: 999px;
  background: #d45c2f40;
  overflow: hidden;
}
.meter span {
  display: block;
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, var(--primary), var(--primary-deep));
  box-shadow: 0 0 12px #d45c2f66;
  border-radius: inherit;
  transition: width 0.42s ease;
}
.analysis-steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  padding: 0;
  margin: 18px 0 0;
}
.analysis-steps li {
  min-height: 92px;
  border: 1px solid var(--border);
  border-radius: var(--radius-small);
  background: #ffffffc2;
  padding: 14px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
  position: relative;
  overflow: hidden;
  transition:
    background 0.24s ease,
    border 0.24s ease,
    color 0.24s ease,
    transform 0.24s ease,
    box-shadow 0.24s ease;
}
.analysis-steps li:before {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  top: 0;
  height: 3px;
  border-radius: 0 0 999px 999px;
  background: #d45c2f33;
}
.analysis-steps li strong {
  display: block;
  margin-bottom: 4px;
  color: var(--text);
  font-size: 0.95rem;
}
.analysis-steps li.active {
  border-color: var(--primary);
  background: var(--accent);
  color: var(--primary-deep);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px #d45c2f1f;
}
.analysis-steps li.active:before {
  background: #d45c2fc2;
}
.analysis-steps li.done {
  border-color: var(--success-border);
  background: var(--success-surface);
  color: var(--success-text);
}
.results-header {
  justify-content: space-between;
  gap: 18px;
}
.source-pill {
  background: var(--accent);
}
.result-list {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}
.empty-results {
  min-height: 118px;
  display: grid;
  place-items: center;
  border: 1px dashed rgba(212, 92, 47, 0.42);
  border-radius: var(--radius-small);
  background: #ffe1cb57;
  color: var(--primary-deep);
  font-weight: 900;
  text-align: center;
  padding: 18px;
}
.result-card {
  display: grid;
  grid-template-columns: 68px minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  padding: 18px 18px 18px 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius-small);
  background: linear-gradient(145deg, #ffffffe6, #fff9f5b8);
  backdrop-filter: blur(12px);
  position: relative;
  overflow: hidden;
  transition:
    transform 0.25s cubic-bezier(0.25, 1, 0.5, 1),
    border 0.25s ease,
    box-shadow 0.25s ease;
  animation: resultRise 0.42s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.result-card:before {
  content: "";
  position: absolute;
  inset: 14px auto 14px 0;
  width: 4px;
  border-radius: 0 999px 999px 0;
  background: #d45c2f3d;
  transition: background 0.18s ease;
}
.result-card:hover {
  transform: translateY(-3px);
  border-color: #d45c2f73;
  box-shadow: 0 16px 34px #843f221f;
}
.result-card:hover:before {
  background: #d45c2fc2;
}
.result-score {
  width: 62px;
  height: 62px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 1.35rem;
  font-weight: 900;
  box-shadow:
    inset 0 1px #ffffff3d,
    0 10px 22px #2d1e1914;
}
.result-score.high {
  background: var(--success);
}
.result-score.medium {
  background: var(--warning);
  color: var(--warm-text);
}
.result-copy {
  min-width: 0;
}
.result-copy h4,
.result-copy p {
  margin: 0;
}
.result-copy h4 {
  font-size: 1.08rem;
  line-height: 1.18;
}
.result-copy p {
  color: var(--muted);
  font-size: 0.94rem;
}
.result-copy p:first-of-type {
  margin-top: 4px;
  font-weight: 800;
}
.reason-list {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 10px;
}
.reason-list span {
  border: 1px solid rgba(212, 92, 47, 0.16);
  border-radius: 999px;
  background: #ffe1cb8f;
  color: var(--primary-deep);
  padding: 5px 9px;
  font-size: 0.78rem;
  font-weight: 900;
}
.result-action {
  min-width: 132px;
  min-height: 42px;
  padding: 0 18px 0 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--text);
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
  overflow: hidden;
  transition:
    background 0.18s ease,
    color 0.18s ease,
    border-color 0.18s ease,
    transform 0.18s ease;
}
.result-action:after {
  content: "";
  width: 15px;
  height: 15px;
  display: inline-grid;
  place-items: center;
  flex: 0 0 15px;
  line-height: 1;
  background-color: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M3 8h8M8.8 4.2 12.6 8l-3.8 3.8' fill='none' stroke='%23000' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.8'/%3E%3C/svg%3E")
    center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M3 8h8M8.8 4.2 12.6 8l-3.8 3.8' fill='none' stroke='%23000' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.8'/%3E%3C/svg%3E")
    center / contain no-repeat;
}
.result-action:hover {
  background: var(--text);
  border-color: var(--text);
  color: var(--surface);
  transform: translateY(-1px);
}
.big-picture-section {
  background: linear-gradient(180deg, #fffdfb00, #fff7f0d1);
}
.big-picture-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.big-picture-card {
  min-height: 390px;
  display: grid;
  align-content: start;
  gap: 18px;
  padding: 22px;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  position: relative;
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    border-color 0.22s ease;
}
.big-picture-card:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    130deg,
    rgba(255, 255, 255, 0.48),
    transparent 42%,
    rgba(212, 92, 47, 0.04)
  );
  pointer-events: none;
}
.big-picture-card > * {
  position: relative;
}
.big-picture-card:after {
  content: "";
  position: absolute;
  inset: auto 18px 18px;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(212, 92, 47, 0.36),
    transparent
  );
  transform: scaleX(0.62);
  transform-origin: left center;
  transition:
    transform 0.22s ease,
    opacity 0.22s ease;
  opacity: 0.72;
}
.big-picture-card:hover {
  border-color: #d45c2f6b;
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}
.big-picture-card:hover:after {
  transform: scaleX(1);
  opacity: 1;
}
.big-picture-card h3 {
  margin: 0;
  font-size: 1.24rem;
  line-height: 1.18;
}
.mini-prototype-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.candidate-radar {
  position: relative;
  min-height: 128px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 50% 50%, var(--surface) 0 2px, transparent 3px),
    repeating-radial-gradient(
      circle at 50% 50%,
      var(--surface) 0 1px,
      transparent 1px 38px
    ),
    #ffffffd1;
  overflow: hidden;
}
.candidate-radar:before {
  content: "";
  position: absolute;
  inset: -35% 48% 48% -35%;
  background: linear-gradient(
    45deg,
    transparent,
    rgba(212, 92, 47, 0.18),
    transparent 68%
  );
  transform-origin: 100% 100%;
  animation: radarSweep 12s linear infinite;
}
.candidate-radar span {
  position: absolute;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 8px #3a7d441f;
}
.candidate-radar span:nth-child(1) {
  left: 57%;
  top: 34%;
}
.candidate-radar span:nth-child(2) {
  left: 31%;
  top: 54%;
  background: var(--warning);
  box-shadow: 0 0 0 8px #e5a93724;
}
.candidate-radar span:nth-child(3) {
  left: 73%;
  top: 66%;
  width: 13px;
  height: 13px;
  background: var(--primary);
  box-shadow: 0 0 0 7px #d45c2f1f;
}
.mini-ranking-list,
.academy-preview-list {
  display: grid;
  gap: 10px;
}
.mini-ranking-list div {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 12px;
  align-items: center;
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius-small);
  background: #ffffffc7;
  box-shadow: inset 0 0 0 1px #d45c2f0a;
}
.mini-ranking-list p,
.academy-preview-list div {
  margin: 0;
}
.mini-ranking-list small,
.academy-preview-list small {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 700;
}
.placement-flow {
  list-style: none;
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 4px 0 0;
}
.placement-flow li {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 12px;
  align-items: center;
  padding: 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-small);
  background: #ffffffc7;
  box-shadow: inset 0 0 0 1px #d45c2f0a;
}
.placement-flow span,
.academy-preview-list span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--accent);
  color: var(--primary-deep);
  font-size: 0.78rem;
  font-weight: 900;
}
.placement-flow span {
  width: 34px;
  height: 34px;
}
.placement-flow li.done {
  border-color: var(--success-border);
  background: var(--success-surface);
}
.placement-flow li.active {
  border-color: var(--warning-border);
  background: var(--warning-surface);
}
.academy-preview-list div {
  display: grid;
  gap: 6px;
  padding: 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-small);
  background: #ffffffc7;
  box-shadow: inset 0 0 0 1px #d45c2f0a;
}
.academy-preview-list span {
  width: fit-content;
  padding: 5px 9px;
}
.step-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
  position: relative;
}
.step-card {
  display: grid;
  align-content: start;
  padding: 26px 24px 24px;
  min-height: 236px;
  background: linear-gradient(145deg, #fffffff7, #fff8f3db);
  box-shadow: inset 0 1px #ffffffc2;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition:
    transform 0.22s ease,
    border-color 0.22s ease,
    box-shadow 0.22s ease;
}
.step-card:before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), transparent 72%);
  opacity: 0.68;
}
.step-card:after {
  content: "";
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 20px;
  height: 1px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    rgba(212, 92, 47, 0.42),
    rgba(212, 92, 47, 0.12),
    transparent
  );
  pointer-events: none;
  transition:
    opacity 0.18s ease,
    transform 0.18s ease;
}
.step-card:hover {
  border-color: #d45c2f6b;
  box-shadow: var(--shadow-soft);
  transform: translateY(-4px);
}
.step-card:hover:after {
  opacity: 1;
  transform: scaleX(1.02);
}
.step-card span {
  display: inline-flex;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(212, 92, 47, 0.18);
  border-radius: 14px;
  background: #ffe1cbb8;
  color: var(--primary-deep);
  font-weight: 900;
  box-shadow: inset 0 1px #ffffffc2;
  transition:
    background 0.18s ease,
    border-color 0.18s ease,
    color 0.18s ease,
    transform 0.18s ease;
}
.step-card:hover span {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  transform: translateY(-1px);
}
.step-card h3 {
  margin-top: 28px;
  margin-bottom: 8px;
  font-size: 1.18rem;
}
.step-card p {
  max-width: 30ch;
  line-height: 1.62;
}
.tokens-section {
  background:
    linear-gradient(180deg, #fff7f0eb, #fffdfbb8),
    repeating-linear-gradient(
      112deg,
      rgba(212, 92, 47, 0.04) 0 1px,
      transparent 1px 42px
    );
}
.tokens-layout {
  align-items: start;
}
.tokens-layout > div:first-child p:last-child {
  color: var(--muted);
  font-size: 1.08rem;
}
.token-table {
  display: grid;
  gap: 0;
  overflow: hidden;
}
.token-table div {
  display: grid;
  gap: 5px;
  padding: 20px 22px;
  border-bottom: 1px solid var(--border);
  background: #fffc;
  position: relative;
  overflow: hidden;
  transition:
    background 0.18s ease,
    transform 0.18s ease,
    box-shadow 0.18s ease;
}
.token-table div:before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: linear-gradient(180deg, #d45c2fd1, #a9432261);
  opacity: 0.64;
}
.token-table div:hover {
  background: #fff;
  transform: translate(4px);
  box-shadow: inset 0 0 0 1px #d45c2f14;
}
.token-table div:last-child {
  border-bottom: 0;
}
.token-table span {
  color: var(--primary);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}
.token-table strong {
  font-size: 1.1rem;
}
.faq-section {
  padding-top: 54px;
}
.faq-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: 22px;
  align-items: start;
}
.faq-intro-card {
  position: sticky;
  top: 100px;
  display: grid;
  gap: 14px;
  padding: 24px;
  box-shadow: var(--shadow-soft);
}
.faq-intro-card h3,
.faq-intro-card p,
.faq-item p,
.contact-copy p,
.contact-direct p,
.contact-signal-card p {
  margin: 0;
}
.faq-intro-card h3 {
  font-size: 1.62rem;
  line-height: 1.12;
}
.faq-intro-card p,
.faq-item p,
.contact-lede,
.contact-signal-card p {
  color: var(--muted);
}
.faq-intro-card .button {
  justify-self: start;
  min-height: 44px;
}
.faq-list {
  display: grid;
  gap: 12px;
}
.faq-item {
  overflow: hidden;
  box-shadow: none;
  position: relative;
  transition:
    border-color 0.18s ease,
    background 0.18s ease,
    box-shadow 0.18s ease,
    transform 0.18s ease;
}
.faq-item:before {
  content: "";
  position: absolute;
  inset: 16px auto 16px 0;
  width: 4px;
  border-radius: 0 999px 999px 0;
  background: #d45c2f2e;
  opacity: 0;
  transition:
    opacity 0.18s ease,
    background 0.18s ease;
}
.faq-item:hover {
  border-color: #d45c2f57;
  transform: translateY(-1px);
}
.faq-item[open] {
  border-color: #d45c2f5c;
  background: linear-gradient(145deg, #fff, #fff6ef);
  box-shadow: var(--shadow-soft);
}
.faq-item:hover:before,
.faq-item[open]:before {
  opacity: 1;
}
.faq-item[open]:before {
  background: #d45c2fad;
}
.faq-item summary {
  min-height: 72px;
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) 32px;
  gap: 14px;
  align-items: center;
  padding: 16px 18px;
  cursor: pointer;
  list-style: none;
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-item summary strong {
  font-size: 1.05rem;
  line-height: 1.22;
}
.faq-index,
.faq-toggle,
.contact-icon,
.contact-signal-card span {
  display: inline-grid;
  place-items: center;
}
.faq-index {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--primary-deep);
  font-size: 0.78rem;
  font-weight: 900;
}
.faq-toggle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--text);
  color: var(--surface);
  font-size: 0.9rem;
  transition:
    transform 0.18s ease,
    background 0.18s ease,
    color 0.18s ease;
}
.faq-item[open] .faq-toggle {
  background: var(--primary);
  color: #fff;
  transform: rotate(45deg);
}
.faq-item p {
  padding: 0 18px 18px 76px;
  font-size: 1rem;
  line-height: 1.7;
}
.contact-hero {
  min-height: calc(100vh - 76px);
  display: grid;
  align-items: center;
  padding: 78px 0 68px;
  position: relative;
  overflow: hidden;
}
.contact-hero:before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, #fffdfbad, #fffdfb2e 48%, #fffdfbc2),
    repeating-linear-gradient(
      90deg,
      transparent 0 84px,
      rgba(212, 92, 47, 0.035) 84px 85px,
      transparent 85px 168px
    );
  mask-image: linear-gradient(180deg, #000 0%, #000 74%, transparent 100%);
  z-index: -1;
}
html[data-theme="dark"] .contact-hero:before {
  background:
    linear-gradient(90deg, #17100ee6, #17100e38 48%, #17100ee0),
    repeating-linear-gradient(
      90deg,
      transparent 0 84px,
      rgba(240, 122, 66, 0.045) 84px 85px,
      transparent 85px 168px
    );
}
.contact-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 0.78fr);
  gap: 42px;
  align-items: center;
}
.contact-copy {
  display: grid;
  gap: 18px;
}
.contact-copy h1 {
  max-width: 680px;
  margin: 0;
  color: var(--primary);
  font-size: 4.35rem;
  line-height: 1.02;
  letter-spacing: 0;
  text-wrap: balance;
}
.contact-lede {
  max-width: 590px;
  font-size: 1.12rem;
}
.contact-direct {
  max-width: 520px;
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 14px;
  align-items: center;
  padding: 18px;
  background: linear-gradient(145deg, var(--inverse-surface), #211511);
  color: var(--inverse-text);
  box-shadow: var(--shadow-strong);
}
.contact-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-size: 1.2rem;
}
.contact-direct p {
  color: var(--inverse-muted);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}
.contact-direct a {
  display: inline-block;
  margin-top: 3px;
  font-size: 1.18rem;
  font-weight: 900;
  overflow-wrap: anywhere;
}
.contact-social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.contact-signal-section {
  background: linear-gradient(180deg, #fffdfb00, #fff7f0db);
}
.contact-signal-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: 28px;
  align-items: start;
}
.contact-signal-grid h2 {
  margin: 0;
  font-size: 2.45rem;
  line-height: 1.04;
  letter-spacing: 0;
  text-wrap: balance;
}
.contact-signal-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.contact-signal-card {
  min-height: 210px;
  display: grid;
  gap: 12px;
  align-content: start;
  padding: 20px;
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
  transition:
    transform 0.18s ease,
    border-color 0.18s ease,
    box-shadow 0.18s ease;
}
.contact-signal-card:before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: #d45c2f3d;
  transition: background 0.18s ease;
}
.contact-signal-card:hover {
  transform: translateY(-3px);
  border-color: #d45c2f6b;
  box-shadow: var(--shadow);
}
.contact-signal-card:hover:before {
  background: #d45c2fb8;
}
.contact-signal-card span {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--primary-deep);
  font-weight: 900;
}
.contact-signal-card h3 {
  margin: 10px 0 0;
  font-size: 1.1rem;
  line-height: 1.18;
}
.final-cta {
  padding-top: 40px;
}
.final-inner {
  display: grid;
  grid-template-columns: 78px 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 26px;
  background: linear-gradient(145deg, var(--inverse-surface), #201411);
  color: var(--inverse-text);
  overflow: hidden;
  position: relative;
}
.final-inner:before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(
    90deg,
    #d45c2f14,
    #d45c2fc2,
    #a9432247,
    #d45c2f14
  );
  opacity: 0.78;
  z-index: 1;
}
.final-inner:after {
  content: "";
  position: absolute;
  inset: auto -10% -40% 20%;
  height: 72%;
  background: repeating-linear-gradient(
    115deg,
    rgba(255, 225, 203, 0.1) 0 1px,
    transparent 1px 26px
  );
  pointer-events: none;
  z-index: 0;
}
.final-inner > * {
  position: relative;
  z-index: 1;
}
.final-join-button {
  min-height: 46px;
  min-width: 82px;
  justify-self: end;
  align-self: center;
  padding: 0 18px;
  font-size: 0.98rem;
  box-shadow: 0 12px 26px #d45c2f38;
}
.final-inner img {
  width: 72px;
  height: 72px;
  border-radius: 20px;
  background: var(--primary);
  padding: 8px;
}
.final-inner p:not(.section-kicker) {
  color: var(--inverse-muted);
}
.site-footer {
  padding: 24px 0 34px;
}
.footer-inner {
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid var(--border);
  padding-top: 20px;
  font-size: 0.92rem;
}
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  flex: 0 0 auto;
}
.footer-brand strong {
  font-size: 1rem;
}
.footer-links {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
}
.footer-links a:hover,
.footer-links a[aria-current="page"] {
  color: var(--primary);
}
.footer-social {
  width: 40px;
  height: 40px;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid var(--border);
  border-radius: 50%;
  padding: 0;
  transition:
    background 0.18s ease,
    border-color 0.18s ease,
    transform 0.18s ease;
}
html[data-theme="dark"] .footer-social {
  background: var(--surface-strong);
  border-color: var(--dark-contour-soft);
  box-shadow: var(--dark-inset);
}
html[data-theme="dark"] .footer-social:hover {
  background: #f07a4229;
  border-color: #f07a426b;
  color: var(--primary);
}
.footer-social:hover {
  background: var(--accent);
  border-color: #d45c2f66;
  transform: translateY(-1px);
}
html[data-theme="dark"] .compact-preview:before {
  background:
    linear-gradient(90deg, transparent, rgba(240, 122, 66, 0.09), transparent),
    repeating-linear-gradient(
      90deg,
      transparent 0 42px,
      rgba(240, 122, 66, 0.06) 42px 43px,
      transparent 43px 86px
    );
}
html[data-theme="dark"] .hero h1 {
  text-shadow: 0 20px 56px rgba(240, 122, 66, 0.16);
}
html[data-theme="dark"] .hero-copy:before,
html[data-theme="dark"] .section-heading:before,
html[data-theme="dark"] .interactive-preview:after,
html[data-theme="dark"] .final-inner:before {
  background: linear-gradient(
    90deg,
    #f07a4214,
    #f07a42a8,
    #6e42326b,
    #f07a4214
  );
}
html[data-theme="dark"] .signal-strip div:hover {
  background: #2f1c16f5;
}
html[data-theme="dark"] .score-feature:after,
html[data-theme="dark"] .step-card:before,
html[data-theme="dark"] .token-table div:before {
  opacity: 0.58;
}
html[data-theme="dark"] .big-picture-card:after {
  background: linear-gradient(
    90deg,
    transparent,
    rgba(240, 122, 66, 0.38),
    transparent
  );
}
html[data-theme="dark"] .eyebrow:before,
html[data-theme="dark"] .section-kicker:before {
  background: var(--primary);
  box-shadow: 0 0 0 4px #f07a4224;
}
html[data-theme="dark"] .scenario-button:before,
html[data-theme="dark"] .result-card:before,
html[data-theme="dark"] .faq-item:before,
html[data-theme="dark"] .contact-signal-card:before {
  background: #f07a4238;
}
html[data-theme="dark"] .scenario-button.active:before,
html[data-theme="dark"] .scenario-button:hover:before,
html[data-theme="dark"] .result-card:hover:before,
html[data-theme="dark"] .faq-item[open]:before,
html[data-theme="dark"] .contact-signal-card:hover:before {
  background: #f07a429e;
}
html[data-theme="dark"] .analysis-steps li:before {
  background: #f07a4233;
}
html[data-theme="dark"] .analysis-steps li.active:before {
  background: #f07a429e;
}
@keyframes backgroundDrift {
  0% {
    background-position:
      0% 0%,
      0 0,
      100% 0%;
    transform: translateZ(0) scale(1);
  }
  to {
    background-position:
      100% 72%,
      56px 36px,
      0% 100%;
    transform: translate3d(-1.8%, 1.4%, 0) scale(1.04);
  }
}
@keyframes backgroundSweep {
  0% {
    transform: translate3d(-4%, -2%, 0) rotate(-1deg);
  }
  to {
    transform: translate3d(5%, 3%, 0) rotate(1deg);
  }
}
@keyframes previewFloat {
  0%,
  to {
    transform: rotate(-1deg) translateZ(0);
  }
  50% {
    transform: rotate(-0.35deg) translate3d(0, -6px, 0);
  }
}
@keyframes previewSheen {
  0%,
  42% {
    transform: translate(-112%);
  }
  70%,
  to {
    transform: translate(112%);
  }
}
@keyframes orbitGlow {
  0% {
    opacity: 0.72;
    transform: translateZ(0) scale(0.92);
  }
  to {
    opacity: 0.92;
    transform: translate3d(-10px, -8px, 0) scale(1.03);
  }
}
@keyframes pulseRing {
  0%,
  to {
    opacity: 0.24;
    transform: scale(0.96);
  }
  50% {
    opacity: 0.58;
    transform: scale(1.03);
  }
}
@keyframes radarSweep {
  to {
    transform: rotate(360deg);
  }
}
@keyframes resultRise {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes buttonSpin {
  to {
    transform: rotate(360deg);
  }
}
html.motion-ready .reveal-on-scroll {
  opacity: 0;
  transform: translate3d(0, 14px, 0) scale(0.992);
  will-change: transform, opacity;
}
html.motion-ready .reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateZ(0) scale(1);
  transition:
    opacity 0.52s cubic-bezier(0.16, 1, 0.3, 1) var(--reveal-delay, 0ms),

/* source: src/styles/40-responsive.css */
    transform 0.52s cubic-bezier(0.16, 1, 0.3, 1) var(--reveal-delay, 0ms);
}
@media (min-width: 901px) {
  .header-inner {
    gap: 12px;
  }
  .nav-links {
    gap: 3px;
    font-size: 0.85rem;
  }
  .nav-links a {
    padding-inline: 7px;
  }
  .header-tools {
    gap: 7px;
  }
  .nav-social {
    display: none;
  }
  .header-cta {
    min-width: 70px;
    padding-inline: 12px;
  }
  .cta-full {
    display: none;
  }
  .cta-short {
    display: inline;
  }
}
@media (min-width: 901px) and (max-width: 1320px) {
  .brand {
    min-width: auto;
  }
  .brand-copy span {
    display: none;
  }
  .language-option {
    min-width: 32px;
  }
}
@keyframes introPulse {
  0% {
    opacity: 0.28;
    transform: scale(0.58);
  }
  to {
    opacity: 0.72;
    transform: scale(1.15);
  }
}
@keyframes introAuraSpin {
  to {
    transform: rotate(360deg);
  }
}
@keyframes introManualExit {
  to {
    opacity: 0;
    visibility: hidden;
  }
}
@media (max-width: 1020px) {
  .hero-grid,
  .value-grid,
  .tokens-layout,
  .prototype-layout,
  .waitlist-layout,
  .big-picture-grid,
  .faq-layout,
  .contact-hero-grid,
  .contact-signal-grid {
    grid-template-columns: 1fr;
  }
  .hero:after {
    display: none;
  }
  .compact-preview {
    max-width: 560px;
    margin: 0 auto;
  }
  .prototype-controls,
  .faq-intro-card {
    position: static;
  }
  .hero {
    min-height: auto;
    padding: 38px 0 36px;
  }
  .hero-grid {
    gap: 24px;
  }
  .hero-copy {
    gap: 16px;
  }
  .hero h1 {
    font-size: 3.7rem;
  }
  .hero-subtitle {
    font-size: 2.28rem;
  }
  .hero-lede {
    max-width: 680px;
  }
  .step-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .contact-signal-list {
    grid-template-columns: 1fr;
  }
}
@media (min-width: 901px) and (max-width: 1320px) {
  .site-header {
    overflow: visible;
  }
  .menu-toggle {
    display: inline-grid;
  }
  .nav-links {
    position: absolute;
    top: calc(100% + 10px);
    left: 20px;
    right: 20px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
    padding: 10px;
    border: 1px solid var(--border);
    border-radius: var(--radius-small);
    background: #fffdfbf5;
    color: var(--text);
    box-shadow: var(--shadow-soft);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px) scale(0.98);
    visibility: hidden;
    z-index: 60;
  }
  .nav-links.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
    visibility: visible;
  }
  .nav-links a {
    min-height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 10px;
    border: 1px solid transparent;
    border-radius: 10px;
    background: #fff7f0b8;
    text-align: center;
  }
  .nav-links a:hover,
  .nav-links a[aria-current="page"] {
    background: var(--accent);
    border-color: #d45c2f47;
    transform: none;
  }
  html[data-theme="dark"] .nav-links {
    background: #17100efa;
    border-color: #f07a424d;
    box-shadow: var(--shadow);
  }
  html[data-theme="dark"] .nav-links a {
    background: #241815db;
  }
  html[data-theme="dark"] .nav-links a:hover,
  html[data-theme="dark"] .nav-links a[aria-current="page"] {
    background: #f07a422e;
    border-color: #f07a426b;
  }
}
@media (max-width: 900px) {
  .site-header {
    overflow: visible;
  }
  .menu-toggle {
    display: inline-grid;
  }
  .nav-links {
    position: absolute;
    top: calc(100% + 10px);
    left: 20px;
    right: 20px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    padding: 10px;
    border: 1px solid var(--border);
    border-radius: var(--radius-small);
    background: #fffdfbf5;
    color: var(--text);
    box-shadow: var(--shadow-soft);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px) scale(0.98);
    visibility: hidden;
    z-index: 60;
  }
  .nav-links.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
    visibility: visible;
  }
  .nav-links a {
    min-height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 10px;
    border: 1px solid transparent;
    border-radius: 10px;
    background: #fff7f0b8;
    text-align: center;
  }
  .nav-links a:hover,
  .nav-links a[aria-current="page"] {
    background: var(--accent);
    border-color: #d45c2f47;
    transform: none;
  }
  html[data-theme="dark"] .nav-links {
    background: #17100efa;
    border-color: #f07a424d;
    box-shadow: var(--shadow);
  }
  html[data-theme="dark"] .nav-links a {
    background: #241815db;
  }
  html[data-theme="dark"] .nav-links a:hover,
  html[data-theme="dark"] .nav-links a[aria-current="page"] {
    background: #f07a422e;
    border-color: #f07a426b;
  }
  .header-inner {
    gap: 14px;
  }
  .signal-strip {
    display: none;
  }
  .final-inner {
    grid-template-columns: 64px minmax(0, 1fr);
  }
  .final-inner img {
    width: 64px;
    height: 64px;
  }
  .final-join-button {
    grid-column: 2;
    justify-self: start;
  }
}
@media (max-width: 760px) {
  .container {
    width: min(100% - 28px, var(--max-width));
  }
  .header-inner {
    min-height: 68px;
    gap: 10px;
    align-items: flex-start;
  }
  body:before {
    animation: none;
    opacity: 0.52;
  }
  body:after,
  main:before,
  .hero:after,
  .hero-preview:after,
  .interactive-preview:before {
    display: none;
  }
  .nav-links {
    left: 14px;
    right: 14px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .brand {
    min-width: auto;
  }
  .brand-copy span {
    display: none;
  }
  .brand-copy strong {
    font-size: 0.98rem;
  }
  .header-tools {
    gap: 7px;
    margin-left: auto;
    flex-wrap: wrap;
    justify-content: flex-end;
    row-gap: 8px;
    max-width: 236px;
  }
  .nav-social {
    display: none;
  }
  .language-switcher {
    min-height: 36px;
    flex: 0 0 auto;
  }
  .language-option {
    min-width: 32px;
    height: 34px;
    font-size: 0.7rem;
  }
  .social-icon,
  .theme-toggle {
    width: 38px;
    height: 38px;
    font-size: 1rem;
  }
  .menu-toggle,
  .theme-toggle {
    flex: 0 0 auto;
  }
  .header-cta {
    min-height: 40px;
    min-width: 0;
    flex: 1 1 100%;
    justify-content: center;
    padding: 0 14px;
    font-size: 0.88rem;
    box-shadow: 0 12px 24px #d45c2f29;
  }
  .cta-full {
    display: none;
  }
  .cta-short {
    display: inline;
  }
  .hero {
    padding: 28px 0 36px;
  }
  .hero-grid {
    gap: 22px;
  }
  .hero h1 {
    font-size: 2.76rem;
  }
  .hero-subtitle {
    font-size: 1.76rem;
  }
  .compact-preview {
    animation: none;
  }
  .hero-copy:before,
  .section-heading:before {
    width: 68px;
  }
  .hero-lede,
  .contact-lede,
  .section-heading p:last-child,
  .value-grid p:last-child,
  .tokens-layout > div:first-child p:last-child {
    font-size: 1rem;
  }
  .hero-actions,
  .contact-social-row,
  .field-grid,
  .footer-inner {
    align-items: stretch;
    flex-direction: column;
  }
  .button,
  .header-cta {
    text-align: center;
  }
  .hero-actions .button,
  .contact-social-row .button,
  .faq-intro-card .button,
  .final-join-button {
    width: 100%;
  }
  .hero-actions .button,
  .contact-social-row .button {
    justify-content: center;
  }
  .signal-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .signal-strip div {
    padding: 12px 10px;
  }
  .signal-strip span {
    font-size: 0.78rem;
  }
  .score-feature {
    grid-template-columns: 1fr;
  }
  .score-ring {
    width: 84px;
    height: 84px;
  }
  .score-ring:before {
    width: 62px;
    height: 62px;
  }
  .value-grid h2,
  .tokens-layout h2,
  .contact-signal-grid h2,
  .section-heading h2,
  .final-inner h2 {
    font-size: 2.05rem;
  }
  .prototype-section,
  .big-picture-section,
  .how-section,
  .tokens-section,
  .faq-section,
  .contact-signal-section,
  .final-cta {
    padding: 58px 0;
  }
  .analysis-steps,
  .step-grid {
    grid-template-columns: 1fr;
  }
  .analysis-header,
  .results-header {
    align-items: flex-start;
    flex-direction: column;
  }
  .meter {
    width: 100%;
    margin-left: 0;
  }
  .search-input-row,
  .result-card,
  .final-inner {
    grid-template-columns: 1fr;
  }
  .result-score {
    width: 54px;
    height: 54px;
    border-radius: 14px;
  }
  .result-action {
    width: 100%;
  }
  .interactive-preview {
    min-height: auto;
  }
  .contact-hero {
    min-height: auto;
    padding: 42px 0 52px;
  }
  .contact-copy h1 {
    font-size: 2.72rem;
  }
  .contact-direct {
    grid-template-columns: 46px 1fr;
    padding: 15px;
  }
  .contact-icon {
    width: 42px;
    height: 42px;
  }
  .contact-direct a {
    font-size: 1.02rem;
  }
  .faq-item summary {
    grid-template-columns: 38px minmax(0, 1fr) 30px;
    gap: 10px;
    padding: 14px;
  }
  .faq-item p {
    padding: 0 14px 16px 62px;
  }
  .footer-links {
    justify-content: flex-start;
    width: 100%;
    gap: 10px 14px;
  }
  .footer-brand {
    flex-wrap: wrap;
  }
  .final-inner {
    text-align: left;
    align-items: start;
  }
  .final-join-button {
    grid-column: auto;
    justify-self: start;
    min-width: 70px;
    min-height: 42px;
    padding: 0 16px;
  }
}
@media (max-width: 480px) {
  .brand {
    gap: 0;
  }
  .header-tools {
    max-width: 212px;
  }
  .nav-links {
    grid-template-columns: 1fr;
  }
  .brand-copy {
    display: none;
  }
}
@media (max-width: 380px) {
  .header-tools {
    gap: 6px;
  }
  .header-cta {
    display: none;
  }
}
:root {
  --ease-premium: cubic-bezier(0.16, 1, 0.3, 1);
  --motion-premium: 0.82s;
  --premium-lift: translate3d(0, -6px, 0);
}
.hero.hero-stage,
.contact-hero.contact-stage {
  min-height: calc(100svh - 76px);
  padding: 82px 0 72px;
  isolation: isolate;
}
.hero.hero-stage:before,
.contact-hero.contact-stage:before {
  opacity: 0.88;
}
.hero.hero-stage:after,
.contact-hero.contact-stage:after {
  right: -16%;
  top: 42px;
  width: 54%;
  height: 88%;
  opacity: 0.9;
  clip-path: polygon(12% 0, 100% 6%, 86% 78%, 16% 100%, 0 32%);
}
.contact-hero.contact-stage:after {
  content: "";
  position: absolute;
  background: linear-gradient(145deg, #ffe1cbdb, #d45c2f14);
  z-index: -1;
}
.hero-ambient {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: -1;
}
.hero-ambient span {
  position: absolute;
  border: 1px solid var(--hairline);
  background: linear-gradient(135deg, #fff6, #ffe1cb29);
  box-shadow: 0 24px 80px #843f2214;
  transform: rotate(-8deg);
}
.hero-ambient span:nth-child(1) {
  width: 42%;
  height: 44%;
  right: -15%;
  top: 6%;
  clip-path: polygon(18% 0, 100% 8%, 84% 86%, 0 100%);
}
.hero-ambient span:nth-child(2) {
  width: 26%;
  height: 30%;
  left: -10%;
  bottom: 5%;
  clip-path: polygon(0 8%, 100% 0, 78% 100%, 12% 88%);
}
.hero-ambient span:nth-child(3) {
  width: 56%;
  height: 1px;
  left: 23%;
  top: 22%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(212, 92, 47, 0.34),
    transparent
  );
  border: 0;
  box-shadow: none;
  animation: premiumLineScan 9s var(--ease-premium) infinite;
}
.hero.hero-stage .hero-grid,
.contact-hero.contact-stage .contact-hero-grid {
  position: relative;
  z-index: 1;
  gap: 68px;
}
.hero.hero-stage .hero-copy,
.contact-hero.contact-stage .contact-copy {
  gap: 22px;
}
.hero-brand-title {
  font-size: 6.35rem;
  line-height: 0.92;
  letter-spacing: 0;
}
.hero-title-line {
  font-size: 3.65rem;
  line-height: 1.03;
  letter-spacing: 0;
}
.hero-lede,
.contact-lede {
  font-size: 1.14rem;
}
.hero-actions .button,
.contact-social-row .button {
  position: relative;
  overflow: hidden;
}
.hero-actions .button:before,
.contact-social-row .button:before,
.contact-submit-button:after,
.form-button:after {
  transition: transform 0.28s var(--ease-premium);
}
.button.primary:before,
.button.secondary:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    110deg,
    transparent 0 34%,
    rgba(255, 255, 255, 0.28) 48%,
    transparent 62% 100%
  );
  transform: translate(-130%);
  pointer-events: none;
}
.button.primary:hover:before,
.button.secondary:hover:before {
  transform: translate(130%);
}
.premium-strip {
  position: relative;
  margin-top: 2px;
}
.premium-strip:before {
  content: "";
  position: absolute;
  left: 8px;
  right: 8px;
  top: 50%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(212, 92, 47, 0.22),
    transparent
  );
  z-index: -1;
}
.premium-strip div {
  transform: translateZ(0);
  transform-style: preserve-3d;
}
.premium-strip strong {
  font-size: 1.22rem;
}
.premium-tilt {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  --glow-x: 50%;
  --glow-y: 0%;
  position: relative;
  transform: perspective(900px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y))
    translateZ(0);
  transition:
    transform 0.35s var(--ease-premium),
    box-shadow 0.35s var(--ease-premium),
    border-color 0.35s ease;
}
.premium-tilt:hover {
  border-color: #d45c2f6b;
}
.compact-preview.product-stage {
  max-width: 560px;
  border-radius: 22px;
  transform: rotate(-1deg) perspective(900px) rotateX(var(--tilt-x))
    rotateY(var(--tilt-y));
  box-shadow:
    0 34px 92px #4722132e,
    0 0 0 1px #ffffff8c inset;
  animation: previewStageFloat 11s var(--ease-premium) infinite;
}
.compact-preview.product-stage:before {
  height: 190px;
  background:
    linear-gradient(90deg, transparent, rgba(212, 92, 47, 0.1), transparent),
    repeating-linear-gradient(
      90deg,
      transparent 0 40px,
      rgba(212, 92, 47, 0.08) 40px 41px,
      transparent 41px 80px
    );
}
.compact-preview.product-stage .preview-topbar {
  min-height: 64px;
}
.compact-preview.product-stage .compact-search {
  margin: 24px 24px 18px;
  min-height: 86px;
  align-content: center;
}
.score-feature {
  transition:
    transform 0.34s var(--ease-premium),
    box-shadow 0.34s var(--ease-premium),
    border-color 0.34s ease;
}
.product-stage .score-feature {
  margin-inline: 24px;
  box-shadow:
    inset 0 1px #ffffffdb,
    0 18px 42px #843f2221;
}
.score-ring-hero {
  animation: premiumScoreBreath 4.8s var(--ease-premium) infinite;
}
.mini-result-list article:nth-child(1) {
  animation: premiumCardRise 0.82s var(--ease-premium) 0.18s both;
}
.mini-result-list article:nth-child(2) {
  animation: premiumCardRise 0.82s var(--ease-premium) 0.32s both;
}
.waitlist-section {
  position: relative;
  padding-top: 24px;
}
.waitlist-layout,
.prototype-layout,
.big-picture-grid,
.step-grid,
.tokens-layout,
.faq-layout,
.contact-signal-grid {
  position: relative;
}
.waitlist-layout:before,
.prototype-layout:before,
.big-picture-grid:before,
.contact-signal-grid:before {
  content: "";
  position: absolute;
  inset: -16px 10% auto;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(212, 92, 47, 0.2),
    transparent
  );
  pointer-events: none;
}
.waitlist-card,
.contact-card {
  border-radius: 22px;
}
.waitlist-card:after,
.contact-card:after {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(
    180deg,
    var(--primary),
    rgba(212, 92, 47, 0.16),
    transparent
  );
  opacity: 0.62;
  pointer-events: none;
}
.prototype-controls,
.interactive-preview {
  border-radius: 22px;
}
.interactive-preview.is-analyzing {
  border-color: #d45c2f85;
  box-shadow: 0 34px 92px #843f222e;
}
.interactive-preview.is-analyzing:after {
  animation: premiumEngineScan 1.7s linear infinite;
}
.interactive-preview.is-ranked {
  box-shadow:
    0 36px 96px #3a7d4424,
    var(--shadow-strong);
}
.analysis-steps li.done {
  animation: premiumStepSettle 0.38s var(--ease-premium) both;
}
.result-card:nth-child(1) {
  animation-delay: 0ms;
}
.result-card:nth-child(2) {
  animation-delay: 80ms;
}
.result-card:nth-child(3) {
  animation-delay: 0.16s;
}
.big-picture-card,
.contact-signal-card,
.step-card,
.token-table div,
.faq-item {
  will-change: transform;
}
.big-picture-card.premium-tilt:hover,
.contact-signal-card.premium-tilt:hover,
.final-inner.premium-tilt:hover,
.contact-direct.premium-tilt:hover {
  transform: perspective(900px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y))
    translate3d(0, -5px, 0);
}
.big-picture-card {
  border-radius: 22px;
}
.step-card {
  border-radius: 20px;
}
.step-card span,
.result-score {
  border-radius: 12px;
}
.tokens-section,
.contact-signal-section {
  position: relative;
  overflow: hidden;
}
.tokens-section:before,
.contact-signal-section:before {
  content: "";
  position: absolute;
  left: max(20px, calc((100% - var(--max-width)) / 2));
  right: max(20px, calc((100% - var(--max-width)) / 2));
  top: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(212, 92, 47, 0.24),
    transparent
  );
}
.contact-hero.contact-stage {
  padding-top: 88px;
}
.contact-card.premium-tilt,
.contact-direct.premium-tilt {
  transform-origin: center;
}
.contact-direct {
  border-radius: 22px;
}
.contact-card {
  box-shadow: 0 34px 92px #47221324;
}
.contact-signal-card {
  border-radius: 20px;
}
.faq-item[open] {
  transform: translateY(-2px);
}
.form-success-icon {
  animation: premiumSuccessPop 0.45s var(--ease-premium) both;
}
.waitlist-card.is-complete,
.contact-card.is-complete {
  animation: premiumFormComplete 0.7s var(--ease-premium) both;
}
html[data-theme="dark"] .hero-ambient span {
  background: linear-gradient(135deg, #3a221aad, #f07a4214);
  border-color: #f07a4233;
  box-shadow: 0 28px 90px #00000042;
}
html[data-theme="dark"] .hero-ambient span:nth-child(3) {
  background: linear-gradient(
    90deg,
    transparent,
    rgba(240, 122, 66, 0.32),
    transparent
  );
}
html[data-theme="dark"] .contact-hero.contact-stage:after {
  background: linear-gradient(145deg, #3a221ab8, #f07a421a);
}
html[data-theme="dark"] .compact-preview.product-stage {
  box-shadow:
    0 34px 92px #00000080,
    var(--dark-inset);
}
html[data-theme="dark"] .premium-tilt:hover {
  border-color: #f07a426b;
}
html[data-theme="dark"] .interactive-preview.is-analyzing {
  box-shadow:
    0 34px 92px #00000080,
    0 0 0 1px #f07a423d inset;
}
html[data-theme="dark"] .interactive-preview.is-ranked {
  box-shadow:
    0 34px 92px #0000007a,
    0 0 0 1px #69b87538 inset;
}
@keyframes premiumLineScan {
  0%,
  22% {
    transform: translate(-18%) rotate(-8deg);
    opacity: 0.2;
  }
  55% {
    opacity: 0.7;
  }
  to {
    transform: translate(18%) rotate(-8deg);
    opacity: 0.2;
  }
}
@keyframes previewStageFloat {
  0%,
  to {
    transform: rotate(-1deg) perspective(900px) rotateX(var(--tilt-x))
      rotateY(var(--tilt-y)) translateZ(0);
  }
  50% {
    transform: rotate(-0.25deg) perspective(900px) rotateX(var(--tilt-x))
      rotateY(var(--tilt-y)) translate3d(0, -9px, 0);
  }
}
@keyframes premiumScoreBreath {
  0%,
  to {
    box-shadow: 0 14px 32px #3a7d442e;
  }
  50% {
    box-shadow: 0 18px 42px #3a7d4445;
  }
}
@keyframes premiumCardRise {
  0% {
    opacity: 0;
    transform: translate3d(0, 14px, 0) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateZ(0) scale(1);
  }
}
@keyframes premiumEngineScan {
  to {
    background-position: 160px 0;
  }
}
@keyframes premiumStepSettle {
  0% {
    transform: translateY(-2px) scale(0.985);
  }
  to {
    transform: translateY(0) scale(1);
  }
}
@keyframes premiumSuccessPop {
  0% {
    opacity: 0;
    transform: scale(0.6);
  }
  70% {
    opacity: 1;
    transform: scale(1.08);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes premiumFormComplete {
  0% {
    box-shadow: var(--shadow);
  }
  50% {
    box-shadow:
      0 0 0 5px var(--success-surface),
      var(--shadow);
  }
  to {
    box-shadow: var(--shadow);
  }
}
@media (max-width: 1020px) {
  .hero.hero-stage,
  .contact-hero.contact-stage {
    padding: 48px 0 52px;
  }
  .hero.hero-stage .hero-grid,
  .contact-hero.contact-stage .contact-hero-grid {
    gap: 34px;
  }
  .hero-brand-title {
    font-size: 4.35rem;
  }
  .hero-title-line {
    font-size: 2.56rem;
  }
  .compact-preview.product-stage {
    max-width: 620px;
  }
  .hero-ambient span:nth-child(1) {
    right: -24%;
    width: 68%;
  }
}
@media (max-width: 760px) {
  .hero.hero-stage,
  .contact-hero.contact-stage {
    padding: 34px 0 42px;
  }
  .hero-ambient {
    display: none;
  }
  .hero-brand-title {
    font-size: 3rem;
    line-height: 0.98;
  }
  .hero-title-line {
    font-size: 1.88rem;
  }
  .hero-lede,
  .contact-lede {
    font-size: 1rem;
  }
  .compact-preview.product-stage {
    border-radius: 18px;
    animation: none;
  }
  .product-stage .score-feature {
    margin-inline: 16px;
  }
  .compact-preview.product-stage .compact-search {
    margin: 18px 16px;
  }
  .premium-tilt,
  .premium-tilt:hover,
  .big-picture-card.premium-tilt:hover,
  .contact-signal-card.premium-tilt:hover,
  .final-inner.premium-tilt:hover,
  .contact-direct.premium-tilt:hover {
    transform: none;
  }
  .waitlist-layout:before,
  .prototype-layout:before,
  .big-picture-grid:before,
  .contact-signal-grid:before {
    display: none;
  }
  .waitlist-card,
  .contact-card,
  .prototype-controls,
  .interactive-preview,
  .big-picture-card,
  .contact-signal-card,
  .step-card {
    border-radius: 16px;
  }
}
@media (prefers-reduced-motion: reduce) {
  *,
  *:before,
  *:after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
  body:before,
  body:after,
  .compact-preview,
  .compact-preview:after,
  .hero-preview:after,
  .score-ring:after,
  .interactive-preview:before,
  .candidate-radar:before,
  .result-card {
    animation: none !important;
    will-change: auto !important;
  }
  html.motion-ready .reveal-on-scroll,
  html.motion-ready .reveal-on-scroll.is-visible {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .intro-loader {
    display: none;
  }
  .site-header,
  main,
  .site-footer {
    opacity: 1;
    transform: none;
    filter: none;
    animation: none !important;
  }
}
:root {
  --ease-wow: cubic-bezier(0.16, 1, 0.3, 1);
  --header-nav-width: clamp(460px, 42vw, 620px);
}
.site-header {
  overflow: visible;
}
@media (min-width: 901px) {
  .header-inner {
    display: grid;

/* source: src/styles/90-motion.css */
    grid-template-columns:
      minmax(185px, auto) minmax(0, var(--header-nav-width))
      auto;
    justify-content: normal;
  }
  .brand {
    min-width: 0;
  }
  .nav-links {
    justify-self: center;
    width: 100%;
    gap: 6px;
  }
  .nav-links a {
    min-width: max-content;
    padding-inline: 9px;
  }
  .header-tools {
    justify-self: end;
  }
}
.hero.hero-stage {
  background: linear-gradient(180deg, #fffdfb33, #fffdfba3);
}
.hero-copy {
  max-width: 760px;
}
.hero-brand-title {
  font-size: clamp(4.2rem, 7.3vw, 7.35rem);
}
.hero-title-line {
  font-size: clamp(2.45rem, 4vw, 4rem);
  max-width: 12ch;
}
.hero-lede {
  max-width: 660px;
}
.hero-ambient span:nth-child(1) {
  right: -10%;
  top: 1%;
  width: 38%;
  height: 48%;
  opacity: 0.76;
}
.hero-ambient span:nth-child(2) {
  left: -7%;
  bottom: 10%;
  opacity: 0.5;
}
.compact-preview.product-stage {
  box-shadow:
    0 36px 100px #47221333,
    0 0 0 1px #fff9 inset;
}
.product-stage .score-feature {
  backdrop-filter: blur(10px);
}
.value-band,
.how-section {
  position: relative;
}
.value-band:before,
.how-section:before {
  content: "";
  position: absolute;
  left: max(20px, calc((100% - var(--max-width)) / 2));
  right: max(20px, calc((100% - var(--max-width)) / 2));
  top: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(212, 92, 47, 0.2),
    transparent
  );
}
.big-picture-card,
.step-card,
.token-table div,
.faq-item,
.waitlist-card,
.waitlist-proof,
.prototype-controls,
.interactive-preview {
  box-shadow: 0 18px 58px #843f2214;
}
.step-card,
.big-picture-card,
.token-table div,
.faq-item {
  transition:
    transform 0.32s var(--ease-wow),
    box-shadow 0.32s var(--ease-wow),
    border-color 0.32s ease;
}
.step-card:hover,
.big-picture-card:hover,
.token-table div:hover,
.faq-item:hover {
  transform: translate3d(0, -4px, 0);
  border-color: #d45c2f5c;
  box-shadow: 0 26px 72px #843f221f;
}
.final-cta {
  padding-top: 64px;
}
.final-inner {
  grid-template-columns: 86px minmax(0, 1fr) auto;
  gap: 28px;
  padding: 34px 38px;
  border-color: #d45c2f57;
  background: linear-gradient(135deg, #2d1e19, #221511 58%, #301a12);
}
.final-inner img {
  width: 78px;
  height: 78px;
  box-shadow: 0 18px 38px #d45c2f4d;
}
.final-inner h2 {
  max-width: 820px;
}
.final-inner p:not(.section-kicker) {
  max-width: 860px;
}
.final-join-button {
  min-width: 110px;
  box-shadow: 0 18px 42px #d45c2f47;
}
.anime-ready .anime-seed {
  opacity: 0;
  transform: translate3d(0, 14px, 0) scale(0.992);
}
.anime-ready .score-ring-hero span,
.anime-ready .score-chip {
  font-variant-numeric: tabular-nums;
}
.anime-ready .hero-ambient span,
.anime-ready .preview-shell,
.anime-ready .final-inner,
.anime-ready .big-picture-card,
.anime-ready .step-card,
.anime-ready .token-table div,
.anime-ready .faq-item {
  will-change: transform, opacity;
}
@media (min-width: 1321px) {
  .menu-toggle {
    display: none !important;
  }
  .nav-links {
    position: static !important;
    display: flex !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transform: none !important;
    padding: 0 !important;
    border: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
  }
  .nav-links a {
    background: transparent;
  }
  .nav-links a:hover,
  .nav-links a[aria-current="page"],
  .nav-links a.is-active {
    background: #ffe1cb61;
  }
}
@media (min-width: 901px) and (max-width: 1320px) {
  .header-inner {
    grid-template-columns: minmax(155px, auto) 1fr auto;
  }
  .nav-links {
    width: auto;
  }
  .header-tools {
    gap: 8px;
  }
  .language-switcher {
    order: 2;
  }
  .theme-toggle {
    order: 3;
  }
  .header-cta {
    order: 4;
  }
  .menu-toggle {
    order: 1;
  }
  .nav-links {
    grid-template-columns: repeat(7, minmax(0, 1fr));
  }
}
@media (max-width: 1020px) {
  .header-inner {
    display: flex;
  }
  .hero-title-line {
    max-width: 16ch;
  }
  .hero-lede {
    max-width: 720px;
  }
  .final-inner {
    grid-template-columns: 72px minmax(0, 1fr);
    padding: 28px;
  }
  .final-inner img {
    width: 68px;
    height: 68px;
  }
  .final-join-button {
    grid-column: 2;
    justify-self: start;
  }
}
@media (max-width: 760px) {
  .header-inner {
    display: flex;
  }
  .hero-title-line {
    max-width: 12ch;
  }
  .final-inner {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 24px;
  }
  .final-inner:after {
    display: none;
  }
  .final-inner img {
    width: 66px;
    height: 66px;
  }
  .final-join-button {
    grid-column: auto;
    justify-self: stretch;
  }
  .step-card:hover,
  .big-picture-card:hover,
  .token-table div:hover,
  .faq-item:hover {
    transform: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  .anime-ready .anime-seed {
    opacity: 1;
    transform: none;
  }
  .step-card:hover,
  .big-picture-card:hover,
  .token-table div:hover,
  .faq-item:hover {
    transform: none;
  }
}
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--primary-deep);
  color: #fff;
  padding: 8px 16px;
  z-index: 100;
  font-weight: 800;
  transition: top 0.2s;
  border-radius: 0 0 8px;
}
.skip-link:focus {
  top: 0;
}
@media (min-width: 901px) {
  .mobile-controls {
    display: none !important;
  }
}
button,
input,
select,
textarea {
  font-family: inherit;
}
.score-chip,
.theme-toggle,
.language-option,
.menu-toggle,
.header-cta,
.button {
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.final-inner:after {
  display: none !important;
}
html[data-theme="dark"] .hero.hero-stage,
html[data-theme="dark"] .contact-hero.contact-stage {
  background: transparent;
}

/* source: src/styles/95-batch140-visual-refresh.css */
/* Batch 140 visual-system source overrides. Keep public/styles.css generated. */
/* @critical-start */
:root {
  --primary: #ff6a00;
  --primary-deep: #d95204;
  --accent: #fff1e6;
  --surface: #fafafa;
  --surface-strong: #ffffff;
  --text: #111827;
  --muted: #667280;
  --border: #e6e8ec;
  --success: #16a34a;
  --success-action: #16a34a;
  --success-text: #14783a;
  --success-surface: rgba(22, 163, 74, 0.1);
  --success-border: rgba(22, 163, 74, 0.28);
  --warning: #f4b740;
  --warning-surface: rgba(244, 183, 64, 0.14);
  --warning-border: rgba(244, 183, 64, 0.38);
  --error: #be3f34;
  --error-text: #be3f34;
  --error-surface: rgba(190, 63, 52, 0.1);
  --error-border: rgba(190, 63, 52, 0.32);
  --inverse-surface: #111827;
  --inverse-text: #ffffff;
  --inverse-muted: rgba(255, 255, 255, 0.74);
  --warm-text: #111827;
  --ink-soft: rgba(17, 24, 39, 0.08);
  --hairline: rgba(17, 24, 39, 0.1);
  --glass: rgba(255, 255, 255, 0.86);
  --panel-gradient: linear-gradient(145deg, #ffffff 0%, #fbfbfb 100%);
  --shadow: 0 14px 38px rgba(17, 24, 39, 0.08);
  --shadow-soft: 0 8px 24px rgba(17, 24, 39, 0.06);
  --shadow-strong: 0 18px 48px rgba(17, 24, 39, 0.12);
  --radius: 8px;
  --radius-small: 8px;
}

html[data-theme="dark"] {
  --primary: #ff8a3d;
  --primary-deep: #ffb27a;
  --accent: #2b1c15;
  --surface: #101318;
  --surface-strong: #171b22;
  --text: #f7f3ee;
  --muted: #b8c0ca;
  --border: #333b48;
  --success: #4ade80;
  --success-action: #5ee58c;
  --success-text: #8ff0ae;
  --success-surface: rgba(74, 222, 128, 0.14);
  --success-border: rgba(74, 222, 128, 0.36);
  --inverse-surface: #06080c;
  --inverse-text: #f7f3ee;
  --inverse-muted: rgba(247, 243, 238, 0.72);
  --hairline: rgba(255, 255, 255, 0.12);
  --glass: rgba(23, 27, 34, 0.84);
  --panel-gradient: linear-gradient(145deg, #171b22 0%, #12161d 100%);
}

body {
  background:
    linear-gradient(180deg, rgba(255, 241, 230, 0.7), transparent 420px),
    var(--surface);
}

body:before {
  inset: auto 0 0;
  height: min(34vh, 360px);
  background:
    linear-gradient(180deg, transparent 0%, rgba(230, 242, 236, 0.72) 100%),
    linear-gradient(135deg, transparent 0 28%, rgba(190, 211, 198, 0.65) 28% 38%, transparent 38%),
    linear-gradient(25deg, transparent 0 44%, rgba(145, 169, 155, 0.46) 44% 52%, transparent 52%);
  clip-path: polygon(0 62%, 10% 56%, 18% 68%, 29% 46%, 42% 70%, 57% 50%, 72% 66%, 86% 44%, 100% 60%, 100% 100%, 0 100%);
  opacity: 0.5;
  transform: none;
}

body:after,
.hero:before,
.hero:after,
.contact-hero:before,
.contact-hero:after,
.hero-ambient,
.hero-preview:after,
.compact-preview:after {
  display: none;
}

.site-header {
  background: rgba(255, 255, 255, 0.92);
  border-bottom-color: rgba(17, 24, 39, 0.08);
  box-shadow: 0 8px 28px rgba(17, 24, 39, 0.05);
}

html[data-theme="dark"] .site-header {
  background: rgba(16, 19, 24, 0.92);
  border-bottom-color: rgba(255, 255, 255, 0.1);
}

.brand-mark {
  border-radius: 8px;
  background: var(--primary);
}

.nav-links {
  color: #4b5563;
}

html[data-theme="dark"] .nav-links {
  color: var(--muted);
}

.hero.hero-stage,
.contact-hero.contact-stage {
  min-height: auto;
  padding: clamp(24px, 4vh, 38px) 0 12px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.58)),
    radial-gradient(circle at 78% 24%, rgba(22, 163, 74, 0.1), transparent 24%);
  color: var(--text);
}

.hero.hero-stage .hero-grid,
.contact-hero.contact-stage .contact-hero-grid {
  gap: clamp(22px, 3vw, 36px);
}

.hero.hero-stage .hero-copy,
.contact-hero.contact-stage .contact-copy {
  gap: 14px;
}

html[data-theme="dark"] .hero.hero-stage,
html[data-theme="dark"] .contact-hero.contact-stage {
  background:
    linear-gradient(180deg, rgba(23, 27, 34, 0.9), rgba(16, 19, 24, 0.72)),
    radial-gradient(circle at 78% 24%, rgba(74, 222, 128, 0.08), transparent 24%);
}

html[data-theme="dark"] .compact-preview,
html[data-theme="dark"] .interactive-preview {
  opacity: 1;
}

.hero h1,
.hero-subtitle,
.contact-copy h1 {
  color: var(--text);
}

.hero-brand-title {
  color: var(--primary);
  font-size: clamp(3.5rem, 5.6vw, 4.9rem);
  line-height: 0.94;
}

.hero-title-line {
  font-size: clamp(1.95rem, 3.2vw, 2.5rem);
  line-height: 1.04;
}

.hero-lede,
.contact-lede {
  max-width: 58ch;
}

.compact-preview.product-stage {
  max-width: 470px;
  border-radius: var(--radius);
}

.compact-preview.product-stage .preview-topbar {
  min-height: 46px;
}

.compact-preview.product-stage .compact-search {
  margin: 14px 16px 10px;
  min-height: 58px;
}

.product-stage .score-feature {
  margin-inline: 16px;
  padding: 12px;
}

.mini-result-list {
  padding-inline: 16px;
  padding-bottom: 14px;
}

.section-kicker,
.score-label,
.source-pill,
.topbar-pill,
.token-cost {
  letter-spacing: 0;
}

.button,
.header-cta,
.language-switcher,
.theme-toggle,
.menu-toggle,
.social-icon,
.preview-shell,
.step-card,
.token-table,
.token-table div,
.big-picture-card,
.waitlist-card,
.waitlist-proof,
.faq-intro-card,
.faq-item,
.final-inner,
.contact-card,
.contact-signal-card,
.contact-direct {
  border-radius: var(--radius);
}

.button.primary,
.header-cta {
  background: var(--primary);
  border-color: var(--primary);
  color: #ffffff;
  box-shadow: 0 8px 20px rgba(255, 106, 0, 0.22);
}

.button.secondary {
  background: #ffffff;
  border-color: var(--border);
  color: var(--text);
  box-shadow: none;
}

.button.secondary:hover,
.nav-links a:hover,
.nav-links a.is-active {
  background: #fff7f0;
  border-color: rgba(255, 106, 0, 0.28);
  color: var(--primary-deep);
}

.preview-shell,
.waitlist-card,
.faq-item,
.step-card,
.token-table,
.big-picture-card,
.contact-card {
  background: var(--surface-strong);
  border-color: var(--border);
  box-shadow: var(--shadow-soft);
}

.prototype-controls,
.interactive-preview,
.contact-direct,
.contact-signal-card {
  border-radius: var(--radius);
}

.step-card span,
.result-score {
  border-radius: var(--radius-small);
}

.score-ring,
.score-chip.high {
  background: var(--success);
}

.score-ring span,
.score-label {
  color: var(--success);
}

.trust-section .step-card span,
.waitlist-proof span,
.faq-index,
.contact-signal-card span {
  background: var(--success-surface);
  border-color: var(--success-border);
  color: var(--success-text);
}

.waitlist-proof,
.final-inner {
  background: var(--inverse-surface);
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

input,
select,
textarea {
  border-radius: var(--radius-small);
  background: #ffffff;
  box-shadow: none;
}

html[data-theme="dark"] input,
html[data-theme="dark"] select,
html[data-theme="dark"] textarea {
  background: #12161d;
}

.faq-item summary {
  min-height: 64px;
}

@media (max-width: 760px) {
  .hero.hero-stage,
  .contact-hero.contact-stage {
    min-height: auto;
    padding-block: 24px 28px;
  }

  .hero.hero-stage .hero-grid,
  .contact-hero.contact-stage .contact-hero-grid {
    gap: 16px;
  }

  .hero.hero-stage .hero-copy,
  .contact-hero.contact-stage .contact-copy {
    gap: 12px;
  }

  .desktop-language-switcher {
    display: none;
  }

  .header-tools {
    align-items: center;
    flex-wrap: nowrap;
    margin-left: auto;
    gap: 8px;
    max-width: none;
  }

  .brand {
    min-width: 0;
  }

  .brand-copy {
    display: none;
  }

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

  .button,
  .header-cta {
    min-height: 48px;
  }

  .header-cta {
    flex: 0 0 auto;
    min-width: 74px;
    padding-inline: 14px;
  }

  .hero-actions {
    gap: 10px;
  }

  .hero-actions .button {
    min-height: 44px;
    padding-inline: 16px;
  }

  .eyebrow,
  .section-kicker {
    max-width: 100%;
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .hero-title-line,
  .hero-lede,
  .contact-lede {
    max-width: 100%;
  }

  .hero-preview,
  .compact-preview,
  .preview-shell {
    width: 100%;
    max-width: 100%;
  }

  .compact-preview {
    transform: none;
  }

  .compact-preview.product-stage {
    border-radius: var(--radius);
  }

  .compact-preview.product-stage .preview-topbar {
    min-height: 42px;
  }

  .compact-preview.product-stage .compact-search {
    margin: 10px 12px;
    min-height: auto;
    padding: 10px 12px;
  }

  .product-stage .score-feature {
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 10px;
    margin: 0 12px 12px;
    padding: 10px 12px;
  }

  .score-ring {
    width: 58px;
    height: 58px;
  }

  .score-ring:before {
    width: 44px;
    height: 44px;
  }

  .score-feature .h2-style {
    font-size: 0.96rem;
  }

  .score-feature p:not(.score-label):not(.h2-style) {
    display: none;
  }

  .mini-result-list {
    display: none;
  }

  .mini-result-list article {
    grid-template-columns: 40px minmax(0, 1fr);
    padding: 12px;
  }

  .score-chip {
    width: 38px;
    height: 38px;
  }

  .preview-topbar {
    min-width: 0;
    padding-inline: 14px;
  }

  .topbar-title {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .topbar-pill {
    display: none;
  }
}

@media (max-width: 480px) {
  .container {
    width: calc(100% - 28px);
  }

  .hero.hero-stage,
  .contact-hero.contact-stage {
    padding-inline: 14px;
  }

  .hero.hero-stage .hero-grid,
  .contact-hero.contact-stage .contact-hero-grid,
  .hero-copy,
  .contact-copy {
    width: 100%;
    min-width: 0;
    margin-inline: 0;
  }

  .hero-copy,
  .contact-copy,
  .compact-preview,
  .preview-shell {
    max-width: 100%;
  }

  .hero h1,
  .hero-subtitle,
  .hero-lede,
  .eyebrow {
    width: 100%;
    max-width: 100%;
    white-space: normal;
    overflow-wrap: break-word;
  }

  .hero h1,
  .hero-brand-title {
    font-size: 2.42rem;
    line-height: 0.98;
  }

  .hero-subtitle {
    font-size: 1.95rem;
    line-height: 1.04;
  }

  .hero-lede {
    font-size: 1rem;
    max-width: 34ch;
  }

  .eyebrow,
  .section-kicker {
    font-size: 0.78rem;
    line-height: 1.25;
  }
}

/* @critical-end */

@media (min-width: 1180px) {
  .menu-toggle {
    display: none;
  }

  .nav-links {
    position: static;
    left: auto;
    right: auto;
    top: auto;
    display: flex;
    grid-template-columns: none;
    gap: 6px;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    visibility: visible;
  }

  .nav-links a {
    min-height: 36px;
    padding: 0 8px;
    border-radius: 999px;
    background: transparent;
  }

  html[data-theme="dark"] .nav-links {
    background: transparent;
    border-color: transparent;
    box-shadow: none;
  }

  html[data-theme="dark"] .nav-links a {
    background: transparent;
  }
}
