:root {
  --bg: #f4efe4;
  --bg-deep: #0d1a1e;
  --ink: #152026;
  --ink-soft: #42525c;
  --heading: #112126;
  --line: rgba(21, 32, 38, 0.12);
  --card: rgba(255, 252, 247, 0.78);
  --card-strong: #fffaf3;
  --card-border: rgba(255, 255, 255, 0.65);
  --glass: rgba(255, 255, 255, 0.72);
  --input-bg: rgba(255, 255, 255, 0.78);
  --provider: #0d8b74;
  --provider-deep: #0a6d5b;
  --buyer: #ba6c2f;
  --buyer-deep: #95501c;
  --signal: #f3b36e;
  --shadow: 0 24px 80px rgba(13, 139, 116, 0.09), 0 8px 24px rgba(14, 24, 28, 0.07);
  --shadow-card: 0 16px 48px rgba(13, 139, 116, 0.06), 0 4px 12px rgba(14, 24, 28, 0.04);
  --radius-lg: 30px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --container: 1180px;
  --ease-spring: cubic-bezier(0.32, 0.72, 0, 1);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

:root[data-theme="dark"] {
  --bg: #071014;
  --bg-deep: #03080a;
  --ink: #f5efe3;
  --ink-soft: #b6c3be;
  --heading: #fff7e8;
  --line: rgba(245, 239, 227, 0.14);
  --card: rgba(15, 30, 34, 0.78);
  --card-strong: #12272c;
  --card-border: rgba(255, 255, 255, 0.1);
  --glass: rgba(15, 30, 34, 0.74);
  --input-bg: rgba(5, 13, 16, 0.58);
  --provider: #18b99b;
  --provider-deep: #62dec8;
  --buyer: #df8b45;
  --buyer-deep: #ffbb7d;
  --signal: #ffc17a;
  --shadow: 0 24px 80px rgba(24, 185, 155, 0.12), 0 8px 28px rgba(0, 0, 0, 0.28);
  --shadow-card: 0 16px 48px rgba(24, 185, 155, 0.07), 0 4px 16px rgba(0, 0, 0, 0.18);
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.skip-link:focus {
  position: fixed;
  top: 16px;
  left: 16px;
  z-index: 9999;
  width: auto;
  height: auto;
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--bg);
  font-weight: 800;
  font-size: 0.9rem;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(13, 139, 116, 0.12), transparent 22rem),
    radial-gradient(circle at 90% 18%, rgba(243, 179, 110, 0.16), transparent 18rem),
    linear-gradient(180deg, #f7f3eb 0%, #efe8dc 100%);
  min-height: 100vh;
}

:root[data-theme="dark"] body {
  background:
    radial-gradient(circle at top left, rgba(24, 185, 155, 0.18), transparent 24rem),
    radial-gradient(circle at 92% 18%, rgba(223, 139, 69, 0.18), transparent 20rem),
    linear-gradient(180deg, #071014 0%, #0b171b 100%);
}

@keyframes grain {
  0%   { background-position: 0% 0%; }
  10%  { background-position: -12% -8%; }
  20%  { background-position: 6% -18%; }
  30%  { background-position: -9% 7%; }
  40%  { background-position: 15% -5%; }
  50%  { background-position: -7% 16%; }
  60%  { background-position: 3% -11%; }
  70%  { background-position: -16% 5%; }
  80%  { background-position: 11% -13%; }
  90%  { background-position: -4% 17%; }
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='320' height='320'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.68' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='320' height='320' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  background-size: 220px 220px;
  opacity: 0.07;
  mix-blend-mode: multiply;
  pointer-events: none;
  z-index: -1;
  animation: grain 0.75s steps(8) infinite;
}

:root[data-theme="dark"] body::before {
  opacity: 0.13;
  mix-blend-mode: screen;
}

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

h1, h2, h3 {
  text-wrap: balance;
}

button,
input,
select,
textarea {
  font: inherit;
}

.page-shell {
  max-width: var(--container);
  margin: 0 auto;
  padding: 24px 20px 56px;
}

.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 10px 0 28px;
}

.site-controls {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  border-radius: 14px;
  color: #fffef9;
  background: linear-gradient(135deg, var(--provider), #123740);
  box-shadow: 0 14px 28px rgba(13, 139, 116, 0.18);
}

.brand-text {
  font-size: 1rem;
}

.hamburger {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--glass);
  cursor: pointer;
  flex-shrink: 0;
  transition: background-color 200ms var(--ease-out);
}

.hamburger:hover {
  background: var(--card);
}

.hamburger-line {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--ink);
  border-radius: 2px;
  transform-origin: center;
  transition: transform 320ms var(--ease-spring), opacity 200ms var(--ease-out), width 200ms var(--ease-out);
}

.hamburger.is-open .hamburger-line:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.hamburger.is-open .hamburger-line:nth-child(2) {
  opacity: 0;
  width: 0;
}

.hamburger.is-open .hamburger-line:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

.site-nav {
  display: inline-flex;
  gap: 10px;
  flex-wrap: wrap;
}

.site-nav a {
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--ink-soft);
  transition: background-color 180ms ease, color 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a.is-current {
  background: var(--glass);
  color: var(--ink);
}

.site-nav a.is-current {
  box-shadow: inset 0 0 0 1px var(--line);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 15px;
  border-radius: 999px;
  color: #fffef8;
  background: linear-gradient(135deg, var(--provider), #163b43);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 14px 28px rgba(13, 139, 116, 0.16);
  font-weight: 900;
  transition: transform 300ms var(--ease-spring), box-shadow 300ms var(--ease-spring);
}

.nav-cta:hover,
.nav-cta:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 20px 40px rgba(13, 139, 116, 0.24);
}

.nav-cta:active {
  transform: scale(0.97);
  transition-duration: 80ms;
}

.lang-toggle,
.theme-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px;
  border-radius: 999px;
  background: var(--glass);
  border: 1px solid var(--line);
}

.lang-button,
.theme-toggle {
  border: 0;
  color: var(--ink-soft);
  border-radius: 999px;
  font-weight: 800;
  cursor: pointer;
}

.lang-button {
  padding: 8px 12px;
  background: transparent;
}

.lang-button.is-active {
  color: #fffef8;
  background: linear-gradient(135deg, var(--provider), #163b43);
}

.theme-toggle {
  border: 1px solid var(--line);
  padding: 9px 13px;
  background: linear-gradient(135deg, var(--glass), rgba(255, 255, 255, 0.42));
  transition: color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

:root[data-theme="dark"] .theme-toggle {
  color: #fff7e8;
  background: linear-gradient(135deg, rgba(24, 185, 155, 0.18), rgba(255, 255, 255, 0.06));
  border-color: rgba(98, 222, 200, 0.28);
}

.theme-toggle:hover,
.theme-toggle:focus-visible {
  color: var(--ink);
  transform: translateY(-1px);
}

.theme-toggle-icon {
  position: relative;
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: var(--ink);
  box-shadow: inset -6px -5px 0 var(--glass);
}

:root[data-theme="dark"] .theme-toggle-icon {
  background: var(--signal);
  box-shadow: 0 0 16px rgba(255, 193, 122, 0.45);
}

.section {
  padding: 88px 0;
}

.page-hero {
  max-width: 920px;
  padding-top: 36px;
  padding-bottom: 42px;
}

.page-hero h1 {
  margin: 0;
  font-family: "Fraunces", serif;
  color: var(--heading);
  font-size: clamp(3rem, 7vw, 5.7rem);
  line-height: 0.96;
  letter-spacing: -0.045em;
}

.subpage-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.85fr);
  gap: 32px;
  align-items: stretch;
  padding-top: 18px;
}

.eyebrow,
.kicker {
  margin: 0 0 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--provider-deep);
}

.hero h1,
.section-head h2 {
  margin: 0;
  font-family: "Fraunces", serif;
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.03em;
  color: var(--heading);
}

.hero h1 {
  max-width: 100%;
  overflow: visible;
  overflow-wrap: anywhere;
  hyphens: auto;
  font-size: clamp(3rem, 6.4vw, 5.4rem);
}

html[lang="nb"] .hero h1 {
  font-size: clamp(2.75rem, 5.8vw, 4.85rem);
}

.lede,
.section-head p,
.card-copy,
.feature-card p,
.insight-card p,
.narrative-card p,
.thesis-copy p,
.model-detail p,
.signal-card p,
.flow-node p,
.site-footer p {
  color: var(--ink-soft);
  line-height: 1.7;
}

.lede {
  max-width: 63ch;
  margin: 22px 0 0;
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  padding: 15px 22px;
  font-weight: 800;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: transform 300ms var(--ease-spring), box-shadow 300ms var(--ease-spring), background-color 200ms var(--ease-out);
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button:active {
  transform: scale(0.97) translateY(0);
  transition-duration: 80ms;
}

.button:disabled {
  opacity: 0.68;
  cursor: wait;
  transform: none;
}

.button[data-disabled-reason="blocked"] {
  cursor: not-allowed;
}

.button-primary {
  color: #fffef8;
  background: linear-gradient(135deg, var(--provider), #163b43);
  box-shadow: 0 14px 30px rgba(13, 139, 116, 0.2);
}

.button-secondary {
  color: var(--ink);
  background: var(--glass);
  border: 1px solid var(--line);
}

.button-tertiary {
  color: var(--provider-deep);
  background: rgba(13, 139, 116, 0.1);
  border: 1px solid rgba(13, 139, 116, 0.18);
}

.button-full {
  width: 100%;
  justify-content: center;
}

.inline-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin-top: 8px;
  padding: 11px 15px;
  border-radius: 999px;
  color: #fffef8;
  background: linear-gradient(135deg, var(--provider), #163b43);
  font-weight: 900;
  box-shadow: 0 14px 30px rgba(13, 139, 116, 0.16);
  transition: transform 300ms var(--ease-spring), box-shadow 300ms var(--ease-spring);
}

.inline-cta:hover,
.inline-cta:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 20px 40px rgba(13, 139, 116, 0.22);
}

.inline-cta:active {
  transform: scale(0.97);
  transition-duration: 80ms;
}

.inline-cta-secondary {
  color: var(--ink);
  background: var(--glass);
  border: 1px solid var(--line);
  box-shadow: none;
}

.text-link {
  color: var(--provider-deep);
  font-weight: 900;
  text-decoration: underline;
  text-decoration-thickness: 0.12em;
  text-underline-offset: 0.18em;
}

.text-link:hover,
.text-link:focus-visible {
  color: var(--provider);
}

.hero-points {
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.hero-points li {
  position: relative;
  padding-left: 28px;
  color: var(--ink-soft);
}

.hero-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--provider), var(--signal));
  box-shadow: 0 0 0 5px rgba(13, 139, 116, 0.09);
}

.hero-trust {
  display: inline-flex;
  width: fit-content;
  margin: 20px 0 0;
  padding: 10px 13px;
  border-radius: 999px;
  color: var(--ink-soft);
  background: var(--glass);
  border: 1px solid var(--line);
  font-size: 0.9rem;
  font-weight: 800;
}

.hero-panel {
  position: relative;
}

.panel-stack {
  height: 100%;
  padding: 24px;
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(255, 250, 243, 0.72)),
    linear-gradient(135deg, rgba(13, 139, 116, 0.08), rgba(243, 179, 110, 0.14));
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow);
}

:root[data-theme="dark"] .panel-stack,
:root[data-theme="dark"] .market-model,
:root[data-theme="dark"] .mechanics-section {
  background:
    radial-gradient(circle at 88% 14%, rgba(223, 139, 69, 0.12), transparent 16rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
  border-color: var(--card-border);
}

.signal-card,
.flow-card,
.insight-card,
.feature-card,
.norway-card,
.founder-card,
.proof-strip article,
.mockup-card,
.product-preview-note,
.fit-card,
.investor-card,
.next-steps article,
.security-strip,
.faq-grid details,
.narrative-card,
.attention-card,
.mechanic-step,
.rev-split-card,
.use-case-card,
.thesis-card,
.thesis-reader,
.form-card {
  background: var(--card);
  backdrop-filter: blur(16px);
  border: 1px solid var(--card-border);
  box-shadow: var(--shadow-card);
}

.signal-card {
  padding: 26px;
  border-radius: 26px;
}

.signal-label {
  margin: 0 0 8px;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--buyer-deep);
}

.signal-card h2 {
  margin: 0;
  font-family: "Fraunces", serif;
  color: var(--heading);
  font-size: clamp(1.8rem, 3vw, 2.45rem);
  line-height: 1.05;
}

.flow-card {
  display: grid;
  gap: 14px;
  margin-top: 18px;
  padding: 22px;
  border-radius: 26px;
}

.flow-node {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 14px;
  align-items: start;
}

.flow-node span {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 16px;
  font-weight: 800;
  color: #fffef9;
  background: linear-gradient(135deg, var(--buyer), var(--provider));
}

.flow-node strong,
.feature-card h3,
.insight-card h3,
.narrative-card h3,
.form-card h3 {
  display: block;
  margin-bottom: 6px;
  font-size: 1.05rem;
  line-height: 1.3;
}

.insight-strip,
.feature-grid,
.narrative-grid,
.attention-chain,
.mechanics-layout,
.mechanics-steps,
.norway-grid,
.proof-strip,
.product-preview,
.fit-grid,
.next-steps,
.investor-points,
.faq-grid,
.use-case-grid,
.thesis-selector,
.form-grid {
  display: grid;
  gap: 18px;
}

.insight-strip {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.insight-card,
.feature-card,
.norway-card,
.fit-card,
.narrative-card,
.attention-card,
.mechanic-step,
.use-case-card {
  padding: 24px;
  border-radius: 24px;
}

.attention-section {
  position: relative;
}

.attention-chain {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  counter-reset: attention;
}

.attention-card {
  position: relative;
  min-height: 230px;
  overflow: hidden;
}

.attention-card::after {
  content: "→";
  position: absolute;
  right: 18px;
  bottom: 14px;
  color: rgba(13, 139, 116, 0.24);
  font-family: "Fraunces", serif;
  font-size: 4rem;
  line-height: 1;
}

.attention-card:last-child::after {
  content: "";
}

.attention-card span {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 8px 10px;
  border-radius: 999px;
  color: var(--provider-deep);
  background: rgba(13, 139, 116, 0.11);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.attention-card h3,
.mechanic-step h3,
.use-case-card h3 {
  margin: 0 0 10px;
  font-family: "Fraunces", serif;
  font-size: clamp(1.55rem, 2.8vw, 2.3rem);
  line-height: 1;
  letter-spacing: -0.035em;
}

.attention-card p,
.mechanic-step p,
.rev-split-card p,
.norway-card p,
.founder-card p,
.product-preview-note p,
.mockup-content p,
.fit-card li,
.investor-card p,
.security-strip p,
.faq-grid p,
.use-case-card p,
.use-case-disclaimer {
  color: var(--ink-soft);
  line-height: 1.65;
}

.party-thesis {
  position: relative;
}

.thesis-selector {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-bottom: 18px;
}

.thesis-card {
  position: relative;
  display: grid;
  gap: 10px;
  min-height: 190px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 24px;
  text-align: left;
  color: var(--ink);
  overflow: hidden;
  cursor: pointer;
  transition: transform 300ms var(--ease-spring), border-color 200ms var(--ease-out), box-shadow 300ms var(--ease-spring), background-color 200ms var(--ease-out);
}

.thesis-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--provider), var(--signal), var(--buyer));
  opacity: 0.9;
}

.thesis-card::after {
  content: "";
  position: absolute;
  right: -74px;
  bottom: -86px;
  width: 210px;
  height: 210px;
  border-radius: 999px;
  opacity: 0.38;
  filter: blur(24px);
  pointer-events: none;
}

.thesis-card:hover,
.thesis-card:focus-visible,
.thesis-card.is-active {
  transform: translateY(-2px);
  border-color: rgba(13, 139, 116, 0.34);
  background: var(--glass);
  box-shadow: 0 24px 58px rgba(17, 33, 38, 0.12);
}

.thesis-card[data-thesis-party="developer"]::after {
  background: rgba(13, 139, 116, 0.22);
}

.thesis-card[data-thesis-party="business"]::after {
  background: rgba(186, 108, 47, 0.24);
}

.thesis-card[data-thesis-party="customer"]::after {
  background: rgba(243, 179, 110, 0.3);
}

.thesis-card[data-thesis-party="platform"]::after {
  background: rgba(17, 33, 38, 0.2);
}

.thesis-card > * {
  position: relative;
  z-index: 1;
}

.thesis-card strong {
  font-family: "Fraunces", serif;
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  line-height: 1;
  letter-spacing: -0.03em;
}

.thesis-card small {
  color: var(--ink-soft);
  line-height: 1.55;
}

.read-more {
  align-self: end;
  width: fit-content;
  padding: 8px 11px;
  border-radius: 999px;
  color: var(--provider-deep);
  background: rgba(13, 139, 116, 0.11);
  font-size: 0.82rem;
  font-weight: 800;
}

.thesis-reader {
  padding: 26px;
  border-radius: 32px;
}

.thesis-detail {
  display: none;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: 24px;
  align-items: stretch;
}

.thesis-detail.is-active {
  display: grid;
  animation: modelDetailIn 220ms ease both;
}

.standalone-detail {
  display: grid;
  padding: 26px;
  border-radius: 32px;
  background: var(--card);
  border: 1px solid var(--card-border);
  box-shadow: 0 20px 50px rgba(17, 33, 38, 0.08);
}

.thesis-copy {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.thesis-copy h3 {
  max-width: 15ch;
  margin: 0;
  font-family: "Fraunces", serif;
  font-size: clamp(2.2rem, 4.4vw, 4rem);
  line-height: 0.96;
  letter-spacing: -0.04em;
}

.thesis-copy p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.7;
}

.thesis-article-lede {
  color: var(--ink);
  font-size: 1.04rem;
  font-weight: 700;
  line-height: 1.62;
}

.explainer-card {
  position: relative;
  display: grid;
  gap: 20px;
  min-height: 430px;
  padding: 24px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 85% 12%, rgba(243, 179, 110, 0.22), transparent 13rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(255, 250, 243, 0.74));
  border: 1px solid rgba(21, 32, 38, 0.08);
  overflow: hidden;
}

:root[data-theme="dark"] .explainer-card,
:root[data-theme="dark"] .rev-split-card {
  background:
    radial-gradient(circle at 85% 12%, rgba(223, 139, 69, 0.14), transparent 13rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.03));
  border-color: var(--card-border);
}

.explainer-topline {
  display: grid;
  gap: 6px;
}

.explainer-topline span {
  color: var(--provider-deep);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.explainer-topline strong {
  max-width: 18ch;
  font-family: "Fraunces", serif;
  font-size: clamp(1.7rem, 3.2vw, 2.65rem);
  line-height: 1;
  letter-spacing: -0.035em;
}

.explainer-note {
  align-self: end;
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.65;
}

.cost-bars {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  align-items: end;
  min-height: 220px;
}

.cost-case {
  display: grid;
  gap: 10px;
  justify-items: center;
}

.cost-case p {
  margin: 0;
  font-weight: 800;
}

.stack-bar {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  width: min(100%, 130px);
  height: 210px;
  border-radius: 20px;
  overflow: hidden;
  background: rgba(21, 32, 38, 0.08);
  box-shadow: inset 0 0 0 1px rgba(21, 32, 38, 0.08);
}

.stack {
  display: block;
  width: 100%;
}

.stack-build {
  background: #9ccac1;
}

.stack-ads {
  background: #1a3037;
}

.stack-share {
  background: #ba6c2f;
}

.stack-friction {
  background: #f3b36e;
}

.stack-profit {
  background: #0d8b74;
}

.stack-legend {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.stack-legend span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 10px;
  border-radius: 999px;
  background: var(--glass);
  color: var(--ink-soft);
  font-size: 0.82rem;
  font-weight: 800;
}

.stack-legend i {
  width: 10px;
  height: 10px;
  border-radius: 999px;
}

.legend-build {
  background: #9ccac1;
}

.legend-ads {
  background: #1a3037;
}

.legend-share {
  background: #ba6c2f;
}

.legend-profit {
  background: #0d8b74;
}

.market-pressure {
  display: grid;
  gap: 14px;
  padding: 14px 0 0;
}

.pressure-lane {
  display: grid;
  gap: 8px;
}

.pressure-lane span {
  font-size: 0.86rem;
  font-weight: 800;
}

.pressure-line {
  position: relative;
  height: 38px;
  border-radius: 999px;
  background: rgba(21, 32, 38, 0.08);
  overflow: hidden;
}

.pressure-line::before {
  content: "";
  position: absolute;
  inset: 9px auto 9px 10px;
  border-radius: 999px;
}

.pressure-line-flat::before {
  width: 48%;
  background: linear-gradient(90deg, #9ccac1, #0d8b74);
}

.pressure-line-rise::before {
  width: 72%;
  background: linear-gradient(90deg, #f3b36e, #ba6c2f);
}

.pressure-line-recover::before {
  width: 86%;
  background: linear-gradient(90deg, #0d8b74, #123740);
}

.customer-flow {
  display: flex;
  gap: 10px;
  align-items: center;
}

.customer-flow span {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(186, 108, 47, 0.36), rgba(13, 139, 116, 0.22));
}

.customer-flow span:nth-child(4),
.customer-flow span:nth-child(5) {
  transform: translateX(-8px) scale(0.72);
  opacity: 0.42;
}

.filter-funnel {
  display: grid;
  gap: 16px;
}

.noise-cloud {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.noise-cloud span {
  padding: 9px 11px;
  border-radius: 999px;
  background: rgba(21, 32, 38, 0.08);
  color: var(--ink-soft);
  font-size: 0.84rem;
  font-weight: 800;
}

.trusted-gate {
  display: grid;
  place-items: center;
  min-height: 82px;
  border-radius: 22px;
  color: #fffef8;
  background: linear-gradient(135deg, var(--provider), #123740);
  box-shadow: 0 18px 42px rgba(13, 139, 116, 0.18);
}

.trusted-gate span {
  font-weight: 900;
}

.shortlist-card {
  padding: 20px;
  border-radius: 22px;
  background: var(--glass);
  border: 1px solid var(--line);
}

.shortlist-card strong {
  display: block;
  font-family: "Fraunces", serif;
  font-size: 1.65rem;
  line-height: 1;
}

.shortlist-card p {
  margin: 8px 0 0;
  color: var(--ink-soft);
}

.loop-diagram {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  min-height: 250px;
}

.loop-diagram::before {
  content: "";
  position: absolute;
  inset: 18%;
  border: 2px dashed rgba(13, 139, 116, 0.34);
  border-radius: 999px;
  animation: loopSpin 22s linear infinite;
}

.loop-node {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  min-height: 106px;
  padding: 16px;
  border-radius: 24px;
  text-align: center;
  color: #fffef8;
  background: linear-gradient(135deg, #0d8b74, #123740);
  box-shadow: 0 18px 44px rgba(17, 33, 38, 0.12);
}

.loop-node span {
  font-weight: 900;
}

@keyframes loopSpin {
  to {
    transform: rotate(360deg);
  }
}

.section-head {
  max-width: 62rem;
  margin-bottom: 36px;
}

.section-head h2 {
  font-size: clamp(2.1rem, 5vw, 3.75rem);
}

.section-head p {
  margin: 14px 0 0;
  max-width: 54rem;
}

.section-head.narrow {
  max-width: 44rem;
}

.feature-grid {
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 0.85fr) minmax(0, 0.85fr);
}

.feature-card:first-child {
  background:
    radial-gradient(circle at 90% 10%, rgba(13, 139, 116, 0.12), transparent 12rem),
    var(--card);
  border-color: rgba(13, 139, 116, 0.2);
}

.mechanics-section {
  margin-top: 30px;
  padding: 28px;
  border-radius: 34px;
  background:
    radial-gradient(circle at 92% 14%, rgba(13, 139, 116, 0.14), transparent 16rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.58), rgba(255, 250, 243, 0.76));
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow);
}

.mechanics-layout {
  grid-template-columns: minmax(0, 1.3fr) minmax(320px, 0.72fr);
  align-items: stretch;
}

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

.mechanic-step {
  position: relative;
  min-height: 220px;
}

.mechanic-step span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border-radius: 15px;
  color: #fffef8;
  background: linear-gradient(135deg, var(--provider), #123740);
  font-weight: 900;
}

.rev-split-card {
  padding: 26px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 80% 18%, rgba(243, 179, 110, 0.28), transparent 12rem),
    linear-gradient(180deg, rgba(255, 252, 247, 0.92), rgba(255, 250, 243, 0.76));
}

.rev-split-card h3 {
  margin: 0;
  font-family: "Fraunces", serif;
  font-size: clamp(1.9rem, 3.6vw, 3rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.split-bars {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.split-bar {
  width: var(--share);
  min-width: 132px;
  max-width: 100%;
  padding: 12px 14px;
  border-radius: 999px;
  color: #fffef8;
  font-weight: 900;
  box-shadow: 0 12px 28px rgba(17, 33, 38, 0.12);
}

.split-distributor {
  background: linear-gradient(135deg, var(--buyer), #8f4f1f);
}

.split-developer {
  background: linear-gradient(135deg, var(--provider), #0b6757);
}

.split-mega {
  background: linear-gradient(135deg, #1a3037, #0d1a1e);
}

.market-model {
  position: relative;
  display: grid;
  gap: 18px;
  margin: 28px 0;
  padding: 26px;
  border-radius: 32px;
  background:
    radial-gradient(circle at 50% 24%, rgba(243, 179, 110, 0.22), transparent 18rem),
    linear-gradient(135deg, rgba(13, 139, 116, 0.12), rgba(255, 255, 255, 0.66));
  border: 1px solid rgba(255, 255, 255, 0.74);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.market-model::before {
  content: "";
  position: absolute;
  inset: 74px 12% auto;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(13, 139, 116, 0.48), transparent);
  pointer-events: none;
}

.market-model::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 112px;
  width: 2px;
  height: 118px;
  background: linear-gradient(180deg, rgba(13, 139, 116, 0.42), transparent);
  pointer-events: none;
}

.model-top-row {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.model-node {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 8px;
  width: 100%;
  min-height: 172px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 26px;
  text-align: left;
  color: var(--ink);
  background: var(--card);
  box-shadow: var(--shadow-card);
  cursor: pointer;
  transition: transform 300ms var(--ease-spring), border-color 200ms var(--ease-out), box-shadow 300ms var(--ease-spring), background-color 200ms var(--ease-out);
}

.model-node:hover,
.model-node:focus-visible,
.model-node.is-active {
  transform: translateY(-3px);
  border-color: rgba(13, 139, 116, 0.4);
  background: var(--glass);
  box-shadow: var(--shadow);
}

.model-node-center {
  color: #fffef8;
  background: linear-gradient(135deg, #0d8b74, #10252c);
  border-color: rgba(255, 255, 255, 0.36);
}

.model-node-center:hover,
.model-node-center:focus-visible,
.model-node-center.is-active {
  background: linear-gradient(135deg, #0f9d82, #10252c);
  border-color: rgba(255, 255, 255, 0.6);
}

.model-node-customer {
  justify-self: center;
  max-width: 540px;
  min-height: 132px;
  background: linear-gradient(135deg, rgba(186, 108, 47, 0.15), rgba(255, 255, 255, 0.88));
}

:root[data-theme="dark"] .model-node-customer {
  background: linear-gradient(135deg, rgba(223, 139, 69, 0.16), rgba(255, 255, 255, 0.05));
}

.model-node-kicker {
  width: fit-content;
  padding: 7px 10px;
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--provider-deep);
  background: rgba(13, 139, 116, 0.11);
}

.model-node-center .model-node-kicker {
  color: #fffef8;
  background: rgba(255, 255, 255, 0.16);
}

.model-node strong {
  font-family: "Fraunces", serif;
  font-size: clamp(1.45rem, 2.6vw, 2.35rem);
  line-height: 1;
  letter-spacing: -0.03em;
}

.model-node small {
  color: var(--ink-soft);
  line-height: 1.55;
  font-size: 0.96rem;
}

.model-node-center small {
  color: rgba(255, 254, 248, 0.78);
}

.model-detail-panel {
  position: relative;
  z-index: 1;
  min-height: 210px;
}

.model-detail {
  display: none;
  padding: 26px;
  border-radius: 26px;
  background: var(--card);
  border: 1px solid var(--card-border);
  box-shadow: 0 20px 50px rgba(17, 33, 38, 0.08);
}

.model-detail.is-active {
  display: block;
  animation: modelDetailIn 220ms ease both;
}

.model-detail h3 {
  margin: 0;
  max-width: 18ch;
  font-family: "Fraunces", serif;
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 0.98;
  letter-spacing: -0.035em;
}

.model-detail p {
  max-width: 58rem;
  margin: 14px 0 0;
  font-size: 1.04rem;
}

@keyframes modelDetailIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.feature-index {
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: var(--provider-deep);
}

.narrative-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.norway-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.norway-card {
  position: relative;
  min-height: 260px;
  overflow: hidden;
}

.norway-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--provider), var(--signal), var(--buyer));
}

.norway-card span {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 8px 10px;
  border-radius: 999px;
  color: var(--provider-deep);
  background: rgba(13, 139, 116, 0.11);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.norway-card h3,
.founder-card h2,
.next-steps strong {
  margin: 0;
  font-family: "Fraunces", serif;
  color: var(--heading);
  letter-spacing: -0.035em;
}

.norway-card h3 {
  margin-bottom: 10px;
  font-size: clamp(1.55rem, 2.8vw, 2.3rem);
  line-height: 1;
}

.proof-strip {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.proof-strip article {
  padding: 22px;
  border-radius: 24px;
}

.proof-strip span,
.fit-card span,
.investor-points span {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 7px 10px;
  border-radius: 999px;
  color: var(--provider-deep);
  background: rgba(13, 139, 116, 0.11);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.proof-strip strong {
  display: block;
  margin-bottom: 8px;
  font-family: "Fraunces", serif;
  color: var(--heading);
  font-size: clamp(1.45rem, 2.4vw, 2.1rem);
  line-height: 1;
  letter-spacing: -0.035em;
}

.proof-strip p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.6;
}

.product-preview {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(280px, 0.75fr);
  align-items: stretch;
}

.product-preview-builder {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.8fr);
}

.mockup-card,
.product-preview-note {
  padding: 18px;
  border-radius: 28px;
}

.mockup-window {
  height: 100%;
  min-height: 360px;
  overflow: hidden;
  border-radius: 22px;
  background:
    radial-gradient(circle at 80% 12%, rgba(243, 179, 110, 0.22), transparent 10rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(255, 250, 243, 0.72));
  border: 1px solid var(--line);
}

:root[data-theme="dark"] .mockup-window {
  background:
    radial-gradient(circle at 80% 12%, rgba(223, 139, 69, 0.14), transparent 10rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.03));
}

.mockup-topbar {
  display: flex;
  gap: 7px;
  padding: 14px;
  border-bottom: 1px solid var(--line);
}

.mockup-topbar span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--line);
}

.mockup-content {
  display: grid;
  gap: 16px;
  padding: 22px;
}

.mockup-tag,
.product-preview-note span {
  width: fit-content;
  padding: 8px 10px;
  border-radius: 999px;
  color: var(--provider-deep);
  background: rgba(13, 139, 116, 0.11);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.mockup-content h3,
.product-preview-note h3 {
  margin: 0;
  font-family: "Fraunces", serif;
  color: var(--heading);
  font-size: clamp(1.85rem, 3.4vw, 2.9rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.mockup-content p,
.product-preview-note p {
  margin: 0;
}

.mockup-score {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  margin-top: 12px;
  padding: 16px;
  border-radius: 20px;
  background: var(--glass);
  border: 1px solid var(--line);
}

.mockup-score span,
.catalog-rows span {
  color: var(--ink-soft);
  font-size: 0.86rem;
  font-weight: 800;
}

.mockup-score strong {
  color: var(--provider-deep);
  font-family: "Fraunces", serif;
  font-size: 2.6rem;
  line-height: 1;
}

.catalog-rows {
  display: grid;
  gap: 12px;
}

.catalog-rows div {
  display: grid;
  gap: 5px;
  padding: 14px;
  border-radius: 18px;
  background: var(--glass);
  border: 1px solid var(--line);
}

.catalog-rows strong {
  color: var(--heading);
}

.product-preview-note {
  display: grid;
  align-content: center;
  gap: 16px;
  background:
    radial-gradient(circle at 20% 18%, rgba(13, 139, 116, 0.16), transparent 12rem),
    var(--card);
}

:root[data-theme="dark"] .product-preview-note {
  background:
    radial-gradient(circle at 20% 18%, rgba(24, 185, 155, 0.14), transparent 12rem),
    var(--card);
}

.narrative-card {
  appearance: none;
  display: grid;
  gap: 14px;
  min-height: 330px;
  width: 100%;
  padding: 24px;
  border: 1px solid var(--card-border);
  border-radius: 24px;
  background: var(--card);
  text-align: left;
  color: var(--ink);
  cursor: pointer;
  overflow: hidden;
  transition: transform 300ms var(--ease-spring), border-color 200ms var(--ease-out), box-shadow 300ms var(--ease-spring), background-color 200ms var(--ease-out);
}

.narrative-card h3,
.narrative-card p {
  margin: 0;
}

.narrative-card:hover,
.narrative-card:focus-visible,
.narrative-card.is-active {
  transform: translateY(-2px);
  border-color: rgba(13, 139, 116, 0.34);
  background: var(--glass);
  box-shadow: 0 28px 68px rgba(17, 33, 38, 0.14);
}

.narrative-visual {
  position: relative;
  display: block;
  min-height: 124px;
  border-radius: 22px;
  background:
    radial-gradient(circle at 22% 24%, rgba(13, 139, 116, 0.24), transparent 5rem),
    linear-gradient(135deg, rgba(243, 179, 110, 0.2), rgba(255, 255, 255, 0.58));
  border: 1px solid var(--line);
  overflow: hidden;
}

:root[data-theme="dark"] .narrative-visual {
  background:
    radial-gradient(circle at 22% 24%, rgba(24, 185, 155, 0.24), transparent 5rem),
    linear-gradient(135deg, rgba(223, 139, 69, 0.12), rgba(255, 255, 255, 0.04));
}

.narrative-visual i {
  position: absolute;
  display: block;
}

.narrative-visual-uber i {
  width: 58px;
  height: 34px;
  border-radius: 18px 18px 12px 12px;
  background: linear-gradient(135deg, var(--provider), #123740);
  box-shadow: 0 16px 28px rgba(17, 33, 38, 0.14);
}

.narrative-visual-uber i::before,
.narrative-visual-uber i::after {
  content: "";
  position: absolute;
  bottom: -6px;
  width: 13px;
  height: 13px;
  border-radius: 999px;
  background: var(--heading);
}

.narrative-visual-uber i::before {
  left: 8px;
}

.narrative-visual-uber i::after {
  right: 8px;
}

.narrative-visual-uber i:nth-child(1) {
  left: 22px;
  top: 22px;
}

.narrative-visual-uber i:nth-child(2) {
  right: 28px;
  top: 42px;
  transform: scale(0.82);
  opacity: 0.72;
}

.narrative-visual-uber i:nth-child(3) {
  left: 44%;
  bottom: 24px;
  transform: scale(1.12);
}

.narrative-visual-airbnb i {
  width: 54px;
  height: 54px;
  border-radius: 16px 16px 8px 8px;
  background: linear-gradient(135deg, var(--buyer), var(--signal));
  box-shadow: 0 16px 28px rgba(17, 33, 38, 0.14);
}

.narrative-visual-airbnb i::before {
  content: "";
  position: absolute;
  inset: -18px 8px auto;
  height: 28px;
  background: inherit;
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
}

.narrative-visual-airbnb i:nth-child(1) {
  left: 18px;
  bottom: 18px;
}

.narrative-visual-airbnb i:nth-child(2) {
  left: 38%;
  top: 38px;
  transform: scale(0.78);
}

.narrative-visual-airbnb i:nth-child(3) {
  right: 22px;
  bottom: 24px;
  transform: scale(0.95);
}

.narrative-visual-airbnb i:nth-child(4) {
  right: 34%;
  top: 18px;
  transform: scale(0.55);
  opacity: 0.72;
}

.narrative-visual-delivery i {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--provider), var(--buyer));
  box-shadow: 0 12px 24px rgba(17, 33, 38, 0.14);
}

.narrative-visual-delivery::before {
  content: "";
  position: absolute;
  inset: 28px;
  border: 2px dashed rgba(13, 139, 116, 0.34);
  border-radius: 999px;
}

.narrative-visual-delivery i:nth-child(1) {
  left: 24px;
  top: 22px;
}

.narrative-visual-delivery i:nth-child(2) {
  right: 26px;
  top: 28px;
}

.narrative-visual-delivery i:nth-child(3) {
  left: 45%;
  top: 44px;
  transform: scale(1.18);
}

.narrative-visual-delivery i:nth-child(4) {
  left: 28%;
  bottom: 22px;
  transform: scale(0.78);
}

.narrative-visual-delivery i:nth-child(5) {
  right: 26%;
  bottom: 18px;
  transform: scale(0.78);
}

.narrative-reader {
  margin-top: 18px;
  padding: 26px;
  border-radius: 32px;
  background: var(--card);
  border: 1px solid var(--card-border);
  box-shadow: 0 20px 50px rgba(17, 33, 38, 0.08);
}

.narrative-detail {
  display: none;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 1fr);
  gap: 24px;
  align-items: stretch;
}

.narrative-detail.is-active {
  display: grid;
  animation: modelDetailIn 220ms ease both;
}

.narrative-detail h3 {
  max-width: 18ch;
  margin: 0;
  font-family: "Fraunces", serif;
  color: var(--heading);
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1;
  letter-spacing: -0.04em;
}

.narrative-detail p {
  margin: 14px 0 0;
  color: var(--ink-soft);
  line-height: 1.7;
}

.marketplace-visual {
  position: relative;
  min-height: 290px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 72% 24%, rgba(243, 179, 110, 0.24), transparent 12rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.84), rgba(255, 250, 243, 0.58));
  border: 1px solid var(--line);
  overflow: hidden;
}

:root[data-theme="dark"] .marketplace-visual {
  background:
    radial-gradient(circle at 72% 24%, rgba(223, 139, 69, 0.16), transparent 12rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.03));
}

.marketplace-visual span {
  position: absolute;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--provider), #123740);
  box-shadow: 0 18px 42px rgba(17, 33, 38, 0.18);
}

.marketplace-visual-uber span:nth-child(1),
.marketplace-visual-airbnb span:nth-child(1),
.marketplace-visual-delivery span:nth-child(1) {
  left: 50%;
  top: 50%;
  width: 90px;
  height: 90px;
  transform: translate(-50%, -50%);
  background: linear-gradient(135deg, #1a3037, var(--provider));
}

.marketplace-visual span:not(:first-child) {
  width: 54px;
  height: 54px;
  background: linear-gradient(135deg, var(--buyer), var(--signal));
}

.marketplace-visual span:not(:first-child)::before {
  content: "";
  position: absolute;
  inset: -44px;
  border: 1px solid rgba(13, 139, 116, 0.24);
  border-radius: 999px;
}

.marketplace-visual span:nth-child(2) {
  left: 14%;
  top: 18%;
}

.marketplace-visual span:nth-child(3) {
  right: 16%;
  top: 20%;
}

.marketplace-visual span:nth-child(4) {
  left: 22%;
  bottom: 18%;
}

.marketplace-visual span:nth-child(5) {
  right: 20%;
  bottom: 16%;
}

.marketplace-visual span:nth-child(6) {
  left: 48%;
  bottom: 10%;
}

.use-case-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.use-case-card {
  position: relative;
  min-height: 300px;
  overflow: hidden;
}

.use-case-card::after {
  content: "";
  position: absolute;
  right: -52px;
  bottom: -72px;
  width: 190px;
  height: 190px;
  border-radius: 999px;
  background: rgba(13, 139, 116, 0.13);
  filter: blur(14px);
}

.use-case-card > * {
  position: relative;
  z-index: 1;
}

.use-case-card strong {
  display: inline-flex;
  margin-top: 12px;
  padding: 9px 12px;
  border-radius: 999px;
  color: var(--provider-deep);
  background: rgba(13, 139, 116, 0.11);
  font-size: 0.86rem;
  line-height: 1.35;
}

.use-case-disclaimer {
  margin: 16px 0 0;
  font-size: 0.9rem;
}

.fit-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

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

.fit-card {
  min-height: 330px;
  position: relative;
  overflow: hidden;
}

.fit-card h3 {
  margin: 0 0 14px;
  font-family: "Fraunces", serif;
  color: var(--heading);
  font-size: clamp(1.7rem, 3vw, 2.55rem);
  line-height: 1;
  letter-spacing: -0.04em;
}

.fit-card ul {
  display: grid;
  gap: 11px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.fit-card li {
  position: relative;
  padding-left: 22px;
}

.fit-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58em;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--provider);
}

.fit-bad li::before {
  background: var(--buyer);
}

.fit-good::after,
.fit-bad::after {
  content: "";
  position: absolute;
  right: -54px;
  bottom: -74px;
  width: 180px;
  height: 180px;
  border-radius: 999px;
  filter: blur(18px);
  opacity: 0.55;
}

.fit-good::after {
  background: rgba(13, 139, 116, 0.16);
}

.fit-bad::after {
  background: rgba(186, 108, 47, 0.16);
}

.founder-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.72fr);
  gap: 24px;
  padding: 30px;
  border-radius: 34px;
  background:
    radial-gradient(circle at 92% 18%, rgba(243, 179, 110, 0.24), transparent 16rem),
    var(--card);
}

:root[data-theme="dark"] .founder-card {
  background:
    radial-gradient(circle at 92% 18%, rgba(223, 139, 69, 0.16), transparent 16rem),
    var(--card);
}

.founder-card h2 {
  max-width: 14ch;
  font-size: clamp(2.2rem, 4.4vw, 4rem);
  line-height: 0.98;
}

.founder-copy {
  display: grid;
  gap: 14px;
  align-content: start;
}

.founder-copy p {
  max-width: 64ch;
  margin: 0;
}

.founder-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.founder-proof {
  display: grid;
  gap: 12px;
  align-content: center;
}

.founder-proof span {
  display: flex;
  align-items: center;
  min-height: 54px;
  padding: 13px 15px;
  border-radius: 18px;
  color: var(--ink);
  background: var(--glass);
  border: 1px solid var(--line);
  font-weight: 900;
}

.founder-trust-note {
  display: grid;
  gap: 10px;
  padding: 18px;
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(13, 139, 116, 0.14), rgba(243, 179, 110, 0.1)),
    var(--glass);
  border: 1px solid var(--line);
}

.founder-trust-note span {
  display: inline-flex;
  width: fit-content;
  min-height: 0;
  padding: 7px 10px;
  border-radius: 999px;
  color: var(--provider-deep);
  background: rgba(13, 139, 116, 0.11);
  border: 0;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.founder-trust-note strong {
  color: var(--heading);
  font-family: "Fraunces", serif;
  font-size: clamp(1.35rem, 2.4vw, 1.85rem);
  line-height: 1;
  letter-spacing: -0.035em;
}

.founder-trust-note p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.6;
}

.investor-card {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1fr);
  gap: 24px;
  padding: 30px;
  border-radius: 34px;
  background:
    radial-gradient(circle at 10% 20%, rgba(13, 139, 116, 0.16), transparent 16rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.62), rgba(255, 250, 243, 0.72));
}

:root[data-theme="dark"] .investor-card {
  background:
    radial-gradient(circle at 10% 20%, rgba(24, 185, 155, 0.14), transparent 16rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.03));
}

.investor-card h2 {
  max-width: 16ch;
  margin: 0;
  font-family: "Fraunces", serif;
  color: var(--heading);
  font-size: clamp(2.1rem, 4.4vw, 3.8rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.investor-card p {
  max-width: 58ch;
}

.investor-points {
  align-content: stretch;
}

.investor-points article {
  display: grid;
  align-content: center;
  min-height: 120px;
  padding: 18px;
  border-radius: 22px;
  background: var(--glass);
  border: 1px solid var(--line);
}

.investor-points strong {
  color: var(--heading);
  line-height: 1.35;
}

.signup-section {
  padding-bottom: 12px;
}

.next-steps {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-bottom: 18px;
}

.next-steps article {
  padding: 20px;
  border-radius: 24px;
  background: var(--card);
  border: 1px solid var(--card-border);
  box-shadow: 0 20px 50px rgba(17, 33, 38, 0.08);
}

.next-steps span {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 7px 10px;
  border-radius: 999px;
  color: var(--provider-deep);
  background: rgba(13, 139, 116, 0.11);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.next-steps strong {
  display: block;
  font-size: 1.42rem;
  line-height: 1;
}

.next-steps p {
  margin: 10px 0 0;
  color: var(--ink-soft);
  line-height: 1.6;
}

.next-steps a {
  display: inline-flex;
  margin-top: 12px;
  color: var(--provider-deep);
  font-weight: 900;
}

.investor-step {
  background:
    linear-gradient(135deg, rgba(13, 139, 116, 0.16), rgba(243, 179, 110, 0.14)),
    var(--card);
}

.security-strip {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: 18px;
  align-items: center;
  margin-bottom: 18px;
  padding: 22px;
  border-radius: 26px;
  background:
    linear-gradient(135deg, rgba(13, 139, 116, 0.14), rgba(243, 179, 110, 0.1)),
    var(--card);
}

.security-strip span {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 7px 10px;
  border-radius: 999px;
  color: var(--provider-deep);
  background: rgba(13, 139, 116, 0.11);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.security-strip strong {
  display: block;
  color: var(--heading);
  font-family: "Fraunces", serif;
  font-size: clamp(1.5rem, 2.8vw, 2.25rem);
  line-height: 1;
  letter-spacing: -0.035em;
}

.security-strip p {
  margin: 0;
}

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

.faq-grid details {
  padding: 22px;
  border-radius: 24px;
}

.faq-grid summary {
  cursor: pointer;
  color: var(--heading);
  font-weight: 900;
  line-height: 1.35;
}

.faq-grid summary::marker {
  color: var(--provider);
}

.faq-grid p {
  margin: 12px 0 0;
}

.form-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
}

.form-card {
  padding: 26px;
  border-radius: 28px;
  position: relative;
  overflow: hidden;
  transition: transform 300ms var(--ease-spring), box-shadow 300ms var(--ease-spring), border-color 200ms var(--ease-out);
}

.form-card::after {
  content: "";
  position: absolute;
  inset: auto -10% -36% auto;
  width: 220px;
  height: 220px;
  border-radius: 999px;
  opacity: 0.5;
  filter: blur(30px);
  pointer-events: none;
}

.form-card[data-role-card="provider"]::after {
  background: rgba(13, 139, 116, 0.2);
}

.form-card[data-role-card="buyer"]::after {
  background: rgba(186, 108, 47, 0.22);
}

.form-card.is-active {
  transform: translateY(-3px);
  box-shadow: 0 28px 70px rgba(17, 33, 38, 0.12);
}

.form-card[data-role-card="provider"].is-active {
  border-color: rgba(13, 139, 116, 0.24);
}

.form-card[data-role-card="buyer"].is-active {
  border-color: rgba(186, 108, 47, 0.24);
}

.investor-form-card {
  max-width: 820px;
}

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

.pill {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 800;
}

.pill-provider {
  color: var(--provider-deep);
  background: rgba(13, 139, 116, 0.12);
}

.pill-buyer {
  color: var(--buyer-deep);
  background: rgba(186, 108, 47, 0.12);
}

.mini-note {
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.signup-form {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.turnstile-wrap {
  display: grid;
  gap: 8px;
}

.turnstile-slot {
  min-height: 66px;
}

.turnstile-note {
  margin: 0;
  min-height: 1.25rem;
  color: var(--ink-soft);
  font-size: 0.88rem;
}

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

.field {
  display: grid;
  gap: 8px;
}

.field span {
  font-size: 0.9rem;
  font-weight: 700;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: var(--input-bg);
  color: var(--ink);
  border-radius: 16px;
  padding: 14px 16px;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: rgba(13, 139, 116, 0.5);
  box-shadow: 0 0 0 4px rgba(13, 139, 116, 0.12);
  background: var(--glass);
}

.field input[aria-invalid="true"],
.field select[aria-invalid="true"],
.field textarea[aria-invalid="true"] {
  border-color: rgba(179, 39, 39, 0.52);
  box-shadow: 0 0 0 4px rgba(179, 39, 39, 0.1);
}

.form-status {
  min-height: 1.5rem;
  margin: 0;
  font-size: 0.94rem;
  font-weight: 600;
}

.form-status[data-state="pending"] {
  color: var(--ink-soft);
}

.form-status[data-state="success"] {
  color: var(--provider-deep);
}

.form-status[data-state="error"] {
  color: #9f2d2d;
}

.catalog-section {
  padding-top: 48px;
}

.catalog-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0 18px;
}

.catalog-toolbar .is-active {
  color: #fffef8;
  background: linear-gradient(135deg, var(--provider), #163b43);
  box-shadow: 0 14px 30px rgba(13, 139, 116, 0.16);
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 22px;
}

.catalog-card,
.catalog-empty,
.profile-public {
  border: 1px solid var(--card-border);
  border-radius: 28px;
  background: var(--card);
  box-shadow: var(--shadow-card);
  padding: 24px;
}

.catalog-card {
  display: grid;
  gap: 14px;
  align-content: start;
  min-height: 310px;
}

.catalog-card h3,
.catalog-empty h3,
.profile-public h2,
.profile-request-card h2,
.profile-editor-card h2 {
  margin: 0;
  color: var(--heading);
  font-family: "Fraunces", serif;
  font-size: clamp(1.65rem, 3vw, 2.25rem);
  line-height: 1.03;
  letter-spacing: -0.03em;
}

.catalog-card p,
.catalog-empty p,
.profile-public p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.7;
}

.catalog-empty {
  grid-column: 1 / -1;
  display: grid;
  gap: 14px;
  max-width: 720px;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag-row span {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 7px 10px;
  color: var(--ink-soft);
  background: var(--glass);
  border: 1px solid var(--line);
  font-size: 0.82rem;
  font-weight: 800;
}

.profile-shell {
  padding-top: 30px;
}

.profile-request-card,
.profile-editor-card,
.profile-public {
  max-width: 880px;
}

.profile-link-form,
.profile-edit-form {
  display: grid;
  gap: 16px;
  margin-top: 22px;
}

.profile-step {
  border: 1px solid var(--line);
  border-radius: 26px;
  background: var(--card);
  box-shadow: 0 18px 42px rgba(17, 33, 38, 0.06);
  overflow: clip;
}

.profile-step summary {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding: 18px;
  cursor: pointer;
  list-style: none;
}

.profile-step summary::-webkit-details-marker {
  display: none;
}

.profile-step summary::after {
  justify-self: end;
  grid-column: 2;
  grid-row: 1;
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink-soft);
  background: var(--glass);
  text-align: center;
  line-height: 32px;
  transform: rotate(0deg);
  transition: transform 180ms var(--ease-spring), background-color 180ms var(--ease-out);
  content: "+";
}

.profile-step[open] summary::after {
  background: var(--card-strong);
  transform: rotate(45deg);
}

.profile-step summary strong {
  display: block;
  max-width: calc(100% - 46px);
  color: var(--heading);
  font-size: 1.05rem;
  line-height: 1.2;
}

.profile-step summary small {
  display: block;
  max-width: calc(100% - 46px);
  margin-top: 4px;
  color: var(--ink-soft);
  line-height: 1.45;
}

.profile-step-index {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  color: #fffef8;
  background: linear-gradient(135deg, var(--provider), var(--provider-deep));
  font-size: 0.9rem;
  font-weight: 900;
}

.profile-step-body {
  display: grid;
  gap: 14px;
  padding: 0 18px 18px;
}

.profile-step > .profile-qualification {
  margin: 0 18px 18px;
}

.profile-step-optional {
  background:
    linear-gradient(135deg, rgba(191, 111, 36, 0.08), transparent 42%),
    var(--card);
}

.profile-role-choice {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 0;
  margin: 0;
  border: 0;
}

.profile-role-choice legend {
  grid-column: 1 / -1;
  margin: 0 0 2px;
  font-size: 0.9rem;
  font-weight: 800;
}

.profile-role-card {
  display: grid;
  gap: 10px;
  align-content: start;
  min-height: 150px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--glass);
  cursor: pointer;
  transition: transform 260ms var(--ease-spring), border-color 200ms var(--ease-out), background-color 200ms var(--ease-out);
}

.profile-role-card:hover,
.profile-role-card:focus-within {
  transform: translateY(-2px);
  border-color: rgba(13, 139, 116, 0.28);
}

.profile-role-card.is-active {
  background: var(--card-strong);
  border-color: rgba(13, 139, 116, 0.35);
  box-shadow: var(--shadow-card);
}

.profile-role-card input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.profile-role-card strong {
  color: var(--heading);
  font-size: 1.05rem;
}

.profile-role-card small,
.profile-role-note {
  color: var(--ink-soft);
  line-height: 1.6;
}

.profile-role-note {
  margin: 0;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(13, 139, 116, 0.08);
  font-size: 0.94rem;
}

.switch-field {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  min-height: 58px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--card);
  cursor: pointer;
}

.switch-field input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.switch-track {
  position: relative;
  width: 52px;
  height: 30px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--glass);
  transition: background-color 180ms var(--ease-out), border-color 180ms var(--ease-out);
}

.switch-track::after {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: var(--card-strong);
  box-shadow: 0 6px 16px rgba(17, 33, 38, 0.16);
  transition: transform 220ms var(--ease-spring);
  content: "";
}

.switch-field input:checked + .switch-track {
  border-color: rgba(31, 91, 255, 0.42);
  background: linear-gradient(135deg, #1f5bff, #14223d);
}

.switch-field input:checked + .switch-track::after {
  transform: translateX(22px);
}

.switch-field strong,
.switch-field small {
  display: block;
}

.switch-field small {
  margin-top: 2px;
  color: var(--ink-soft);
  line-height: 1.4;
}

.choice-cluster {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--glass);
}

.choice-cluster-label {
  flex: 0 0 100%;
  color: var(--ink-soft);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.choice-cluster button {
  min-height: 36px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 12px;
  color: var(--ink);
  background: var(--card);
  font: inherit;
  font-size: 0.86rem;
  font-weight: 900;
  cursor: pointer;
  transition: transform 180ms var(--ease-spring), border-color 180ms var(--ease-out), background-color 180ms var(--ease-out);
}

.choice-cluster button:hover,
.choice-cluster button:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(13, 139, 116, 0.34);
}

.choice-cluster button.is-active {
  color: #fffef8;
  border-color: transparent;
  background: linear-gradient(135deg, var(--provider), var(--provider-deep));
}

.range-field {
  display: grid;
  gap: 10px;
  padding: 13px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--card);
}

.range-field input[type="range"] {
  width: 100%;
  accent-color: var(--provider);
}

.range-readout {
  color: var(--heading);
  font-size: 1.05rem;
  font-weight: 900;
}

.range-markers {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  color: var(--ink-soft);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.profile-qualification {
  display: grid;
  gap: 14px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(13, 139, 116, 0.09), transparent 46%),
    var(--glass);
}

.profile-qualification-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(150px, 220px);
  gap: 18px;
  align-items: start;
}

.profile-qualification-head h3 {
  max-width: 620px;
  margin: 6px 0 0;
  color: var(--heading);
  font-size: clamp(1.25rem, 3vw, 1.8rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.profile-score {
  display: grid;
  gap: 6px;
  justify-items: end;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--card-strong);
  text-align: right;
}

.profile-score strong {
  color: var(--provider-deep);
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 0.9;
  letter-spacing: -0.06em;
}

.profile-score span {
  color: var(--ink-soft);
  font-size: 0.82rem;
  line-height: 1.45;
}

.profile-next-actions {
  display: grid;
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.profile-next-actions li {
  display: flex;
  gap: 8px;
  align-items: center;
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink-soft);
  background: var(--card);
  font-size: 0.88rem;
  font-weight: 800;
}

.profile-next-actions li::before {
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  border-radius: 999px;
  background: var(--provider);
  content: "";
}

.profile-next-actions .profile-next-actions-title {
  border: 0;
  padding: 0 2px;
  color: var(--heading);
  background: transparent;
  font-size: 0.76rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.profile-next-actions .profile-next-actions-title::before {
  display: none;
}

.profile-editor-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.profile-public {
  display: grid;
  gap: 18px;
}

.catalog-card-image,
.profile-hero-image {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--glass);
  object-fit: cover;
}

.catalog-card-image {
  aspect-ratio: 16 / 10;
}

.profile-hero-image {
  max-height: 360px;
}

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

.pill-agent {
  color: #fffef8;
  background: linear-gradient(135deg, #1f5bff, #14223d);
}

.profile-facts {
  display: grid;
  gap: 12px;
  margin: 4px 0 0;
}

.profile-facts div {
  display: grid;
  gap: 4px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--glass);
}

.profile-facts dt {
  color: var(--ink-soft);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.profile-facts dd {
  margin: 0;
  color: var(--ink);
  line-height: 1.6;
}

.match-room-shell {
  padding-top: 24px;
}

.match-room-shell > div {
  display: grid;
  gap: 20px;
}

.match-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.8fr) minmax(0, 1fr);
  gap: 18px;
  align-items: stretch;
}

.match-party-card,
.match-fit-card,
.match-detail-card {
  border: 1px solid var(--card-border);
  border-radius: 28px;
  background: var(--card);
  box-shadow: var(--shadow-card);
  padding: 24px;
}

.match-party-card {
  display: grid;
  gap: 16px;
  align-content: start;
  min-height: 380px;
}

.match-party-card h2,
.match-fit-card h2,
.match-detail-card h2 {
  margin: 0;
  color: var(--heading);
  font-family: "Fraunces", serif;
  font-size: clamp(1.7rem, 3vw, 2.45rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.match-party-card p,
.match-fit-card p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.7;
}

.match-score {
  color: var(--provider-deep);
  font-size: 2.6rem;
  font-weight: 900;
  letter-spacing: -0.06em;
  line-height: 0.9;
}

.match-fit-card {
  display: grid;
  gap: 16px;
  align-content: center;
  background:
    radial-gradient(circle at top, rgba(243, 179, 110, 0.2), transparent 34%),
    var(--card-strong);
}

.match-fit-card h3 {
  margin: 8px 0 0;
  color: var(--heading);
  font-size: 1rem;
  letter-spacing: 0.02em;
}

.match-fit-line {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 12px;
  align-items: center;
  color: var(--provider-deep);
  font-weight: 900;
  letter-spacing: -0.02em;
}

.match-fit-line span {
  height: 1px;
  background: var(--line);
}

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

.match-detail-card {
  display: grid;
  gap: 14px;
  align-content: start;
}

.match-response-card {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 22px;
  align-items: start;
  border: 1px solid var(--card-border);
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(186, 108, 47, 0.1), transparent 48%),
    var(--card);
  box-shadow: var(--shadow-card);
  padding: 24px;
}

.match-response-card h2 {
  margin: 0 0 10px;
  color: var(--heading);
  font-family: "Fraunces", serif;
  font-size: clamp(1.7rem, 3vw, 2.45rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.match-response-card p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.7;
}

.match-response-card form {
  display: grid;
  gap: 14px;
}

.match-response-options {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  padding: 0;
  margin: 0;
  border: 0;
}

.match-response-options label {
  display: grid;
  cursor: pointer;
}

.match-response-options label:first-of-type {
  grid-column: span 3;
}

.match-response-options input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.match-response-options span {
  display: grid;
  place-items: center;
  min-height: 66px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 18px;
  color: var(--heading);
  background: var(--glass);
  text-align: center;
  font-weight: 900;
  transition: transform 220ms var(--ease-spring), border-color 180ms var(--ease-out), background-color 180ms var(--ease-out);
}

.match-response-options label:first-of-type span {
  min-height: 78px;
  color: #fffef8;
  background:
    radial-gradient(circle at 15% 20%, rgba(255, 255, 255, 0.24), transparent 28%),
    linear-gradient(135deg, var(--provider), #163b43);
  font-size: 1.05rem;
}

.match-response-options label:hover span,
.match-response-options label:focus-within span {
  transform: translateY(-2px);
  border-color: rgba(13, 139, 116, 0.28);
}

.match-response-options input:checked + span {
  color: #fffef8;
  border-color: transparent;
  background: linear-gradient(135deg, var(--provider), #163b43);
}

.match-fit-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.match-page .site-controls,
.match-page .hamburger {
  display: none;
}

.match-checklist {
  background:
    linear-gradient(135deg, rgba(13, 139, 116, 0.08), transparent 50%),
    var(--glass);
}

.match-check-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.match-check-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: center;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--glass);
}

.match-check-list span {
  border-radius: 999px;
  padding: 5px 8px;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.match-check-list strong {
  color: var(--heading);
}

.match-check-list .is-present span {
  color: var(--provider-deep);
  background: rgba(13, 139, 116, 0.12);
}

.match-check-list .is-missing span {
  color: var(--buyer-deep);
  background: rgba(186, 108, 47, 0.12);
}

.resource-hero .lede {
  max-width: 820px;
}

.resource-section {
  padding-top: 34px;
}

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

.resource-card,
.resource-checklist article,
.resource-terms-card {
  border: 1px solid var(--card-border);
  border-radius: 28px;
  background:
    linear-gradient(145deg, rgba(13, 139, 116, 0.08), transparent 52%),
    var(--card);
  box-shadow: var(--shadow-card);
}

.resource-card {
  display: grid;
  gap: 12px;
  align-content: start;
  min-height: 250px;
  padding: 22px;
}

.resource-card span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  color: #fffef8;
  background: linear-gradient(135deg, var(--provider), #163b43);
  font-weight: 900;
}

.resource-card h3,
.resource-checklist h3,
.resource-terms-card h2 {
  margin: 0;
  color: var(--heading);
  font-family: "Fraunces", serif;
  line-height: 1;
  letter-spacing: -0.04em;
}

.resource-card h3 {
  font-size: clamp(1.35rem, 2vw, 1.75rem);
}

.resource-card p,
.resource-checklist li,
.resource-terms-card p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.65;
}

.resource-playbook {
  display: grid;
  gap: 24px;
}

.resource-playbook-head {
  max-width: 720px;
}

.resource-playbook-head h2 {
  margin: 0;
  color: var(--heading);
  font-family: "Fraunces", serif;
  font-size: clamp(2.3rem, 6vw, 5rem);
  line-height: 0.95;
  letter-spacing: -0.06em;
}

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

.resource-checklist article {
  display: grid;
  gap: 18px;
  padding: 24px;
}

.resource-checklist h3 {
  font-size: clamp(1.6rem, 2.4vw, 2.3rem);
}

.resource-checklist ul {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.resource-checklist li {
  position: relative;
  padding-left: 24px;
}

.resource-checklist li::before {
  position: absolute;
  top: 0.65em;
  left: 0;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--provider);
  content: "";
}

.resource-matrix {
  display: grid;
  gap: 24px;
}

.matrix-table {
  overflow: hidden;
  border: 1px solid var(--card-border);
  border-radius: 28px;
  background: var(--card);
  box-shadow: var(--shadow-card);
}

.matrix-table [role="row"] {
  display: grid;
  grid-template-columns: 0.75fr repeat(3, minmax(0, 1fr));
}

.matrix-table [role="row"] + [role="row"] {
  border-top: 1px solid var(--line);
}

.matrix-table strong,
.matrix-table span {
  padding: 18px;
  border-right: 1px solid var(--line);
  color: var(--ink-soft);
  line-height: 1.5;
}

.matrix-table strong:last-child,
.matrix-table span:last-child {
  border-right: 0;
}

.matrix-table strong {
  color: var(--heading);
  background: rgba(13, 139, 116, 0.08);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.resource-terms-card {
  display: grid;
  gap: 22px;
  padding: clamp(24px, 4vw, 44px);
}

.resource-terms-card h2 {
  max-width: 820px;
  font-size: clamp(2rem, 5vw, 4rem);
}

.terms-list {
  display: grid;
  gap: 14px;
  max-width: 900px;
}

.terms-list strong {
  color: var(--heading);
}

pre {
  overflow-x: auto;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(10, 19, 23, 0.92);
  color: #f4efe4;
  padding: 18px;
  font-size: 0.86rem;
  line-height: 1.55;
}

code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
}

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

.agent-code-grid article {
  min-width: 0;
}

.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.site-footer {
  padding-top: 48px;
  border-top: 1px solid var(--line);
  margin-top: 40px;
}

.footer-top {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 40px 64px;
  padding-bottom: 36px;
}

.footer-brand {
  display: grid;
  gap: 16px;
  align-content: start;
}

.footer-tagline {
  margin: 0;
  max-width: 46ch;
  font-size: 0.95rem;
}

.footer-nav {
  display: flex;
  gap: 48px;
  justify-content: flex-end;
}

.footer-nav-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-nav-heading {
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--provider-deep);
  margin-bottom: 4px;
}

.footer-nav-col a {
  color: var(--ink-soft);
  font-size: 0.95rem;
  font-weight: 600;
  transition: color 180ms var(--ease-out);
}

.footer-nav-col a:hover {
  color: var(--ink);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.footer-legal {
  margin: 0;
  font-size: 0.88rem;
  color: var(--ink-soft);
}

.footer-legal a {
  font-weight: 700;
  color: var(--ink-soft);
  text-decoration: underline;
  text-decoration-color: var(--line);
  transition: color 180ms var(--ease-out);
}

.footer-legal a:hover {
  color: var(--ink);
}

.footer-legal-links {
  display: flex;
  gap: 20px;
}

.footer-legal-links a {
  font-size: 0.88rem;
  color: var(--ink-soft);
  font-weight: 700;
  transition: color 180ms var(--ease-out);
}

.footer-legal-links a:hover {
  color: var(--ink);
}

@media (max-width: 720px) {
  .footer-top {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-nav {
    justify-content: flex-start;
  }
}

[data-reveal] {
  opacity: 0;
  transform: translateY(44px);
  transition: opacity 680ms var(--ease-out), transform 680ms var(--ease-out);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

@media (max-width: 1080px) {
  .hero,
  .insight-strip,
  .narrative-grid,
  .narrative-detail,
  .attention-chain,
  .mechanics-layout,
  .mechanics-steps,
  .norway-grid,
  .proof-strip,
  .product-preview,
  .fit-grid,
  .founder-card,
  .investor-card,
  .investor-points,
  .next-steps,
  .security-strip,
  .faq-grid,
  .use-case-grid,
  .thesis-selector,
  .thesis-detail,
  .model-top-row,
  .form-grid {
    grid-template-columns: 1fr;
  }

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

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

  .resource-checklist,
  .matrix-table [role="row"] {
    grid-template-columns: 1fr;
  }

  .matrix-table strong,
  .matrix-table span {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .matrix-table strong:last-child,
  .matrix-table span:last-child {
    border-bottom: 0;
  }

  .hero h1 {
    max-width: 10ch;
  }

  .market-model::before,
  .market-model::after,
  .attention-card::after {
    display: none;
  }
}

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

  .hero h1 {
    max-width: 12ch;
  }
}

@keyframes menuSlideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 720px) {
  .section {
    padding: 56px 0;
  }

  .page-shell {
    padding: 18px 16px 42px;
  }

  .site-header {
    flex-direction: row;
    align-items: center;
    padding-bottom: 18px;
    position: relative;
  }

  .hamburger {
    display: flex;
    margin-left: auto;
  }

  .site-controls {
    display: none;
    position: absolute;
    top: calc(100% + 2px);
    left: -16px;
    right: -16px;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding: 20px 16px 24px;
    background:
      radial-gradient(circle at 90% 0%, rgba(186, 108, 47, 0.09), transparent 12rem),
      rgba(244, 239, 228, 0.96);
    backdrop-filter: blur(28px);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 16px 40px rgba(13, 139, 116, 0.08), 0 4px 12px rgba(14, 24, 28, 0.06);
    z-index: 200;
  }

  :root[data-theme="dark"] .site-controls {
    background:
      radial-gradient(circle at 90% 0%, rgba(223, 139, 69, 0.1), transparent 12rem),
      rgba(7, 16, 20, 0.96);
  }

  .site-controls.is-open {
    display: flex;
    animation: menuSlideDown 260ms var(--ease-spring) both;
  }

  .site-nav {
    flex-direction: column;
    gap: 4px;
    width: 100%;
  }

  .hero {
    gap: 22px;
  }

  .hero h1 {
    font-size: clamp(3rem, 14vw, 4.3rem);
  }

  .panel-stack,
  .market-model,
  .mechanics-section,
  .model-node,
  .model-detail,
  .thesis-card,
  .thesis-reader,
  .narrative-reader,
  .founder-card,
  .thesis-detail,
  .explainer-card,
  .form-card,
  .signal-card,
  .flow-card,
  .insight-card,
  .feature-card,
  .norway-card,
  .proof-strip article,
  .mockup-card,
  .product-preview-note,
  .fit-card,
  .investor-card,
  .investor-points article,
  .next-steps article,
  .security-strip,
  .faq-grid details,
  .narrative-card,
  .narrative-reader,
  .attention-card,
  .mechanic-step,
  .rev-split-card,
  .use-case-card {
    border-radius: 22px;
  }

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

  .match-grid,
  .match-detail-grid,
  .match-response-card,
  .resource-grid,
  .resource-checklist {
    grid-template-columns: 1fr;
  }

  .match-response-options {
    grid-template-columns: 1fr;
  }

  .match-response-options label:first-of-type {
    grid-column: auto;
  }

  .catalog-card,
  .catalog-empty,
  .profile-public {
    border-radius: 22px;
    padding: 18px;
  }

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

  .profile-role-choice {
    grid-template-columns: 1fr;
  }

  .profile-qualification-head {
    grid-template-columns: 1fr;
  }

  .profile-score {
    justify-items: start;
    text-align: left;
  }

  .profile-editor-actions {
    width: 100%;
    justify-content: flex-start;
  }

  .thesis-reader,
  .narrative-reader,
  .founder-card,
  .investor-card,
  .proof-strip article,
  .mockup-card,
  .product-preview-note,
  .fit-card,
  .security-strip,
  .faq-grid details,
  .explainer-card,
  .resource-card,
  .resource-checklist article,
  .resource-terms-card {
    padding: 18px;
  }

  .cost-bars,
  .loop-diagram {
    grid-template-columns: 1fr;
  }

  .button,
  .nav-cta {
    width: 100%;
    justify-content: center;
  }

  .nav-cta,
  .lang-toggle,
  .theme-toggle {
    width: 100%;
  }

  .lang-toggle {
    justify-content: center;
  }

  .lang-button {
    flex: 1 1 0;
  }

  .hero-actions {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
