:root {
  --bg: #f3ecdf;
  --bg-2: #ece2d0;
  --paper: rgba(255, 251, 244, 0.88);
  --paper-strong: #fffaf1;
  --surface: rgba(255, 248, 239, 0.74);
  --surface-dark: rgba(10, 20, 33, 0.74);
  --ink: #11161d;
  --muted: #5a6370;
  --muted-strong: #3b4654;
  --line: rgba(17, 22, 29, 0.09);
  --deep: #0b1320;
  --deep-2: #132238;
  --deep-3: #18314d;
  --teal: #1d8f7a;
  --teal-soft: rgba(29, 143, 122, 0.14);
  --gold: #d89a2b;
  --gold-soft: rgba(216, 154, 43, 0.12);
  --glow: rgba(216, 154, 43, 0.3);
  --danger-soft: #ffd0c7;
  --shadow: 0 24px 72px rgba(18, 24, 34, 0.09);
  --shadow-strong: 0 28px 80px rgba(12, 18, 29, 0.18);
  --radius-xl: 34px;
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 16px;
  --container: min(1440px, calc(100vw - 56px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 15% 10%, rgba(216, 154, 43, 0.18), transparent 24%),
    radial-gradient(circle at 82% 12%, rgba(29, 143, 122, 0.18), transparent 22%),
    radial-gradient(circle at 50% 100%, rgba(24, 49, 77, 0.06), transparent 30%),
    linear-gradient(180deg, var(--bg), var(--bg-2));
  line-height: 1.6;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(17, 22, 29, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 22, 29, 0.025) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(circle at center, black 35%, transparent 86%);
  opacity: 0.34;
}

main,
section {
  content-visibility: visible;
  contain-intrinsic-size: auto;
}

a {
  color: inherit;
}

img {
  display: block;
}

.site-shell {
  position: relative;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.narrow {
  width: min(920px, 100%);
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 14px 0;
  background: transparent;
  border-bottom: 0;
  backdrop-filter: none;
}

.topbar-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 12px 18px;
  border-radius: 999px;
  background: rgba(255, 251, 244, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.62);
  box-shadow: 0 18px 48px rgba(18, 24, 34, 0.1);
  backdrop-filter: blur(16px);
}

.enterprise-strip-wrap {
  padding-top: 6px;
}

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

.enterprise-strip-compact {
  margin-bottom: 22px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.enterprise-chip {
  position: relative;
  padding: 18px 18px 16px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 251, 244, 0.92), rgba(248, 242, 233, 0.88));
  border: 1px solid rgba(17, 22, 29, 0.08);
  box-shadow: 0 14px 36px rgba(18, 24, 34, 0.06);
  overflow: hidden;
}

.enterprise-chip span {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.enterprise-chip strong {
  display: block;
  margin-bottom: 8px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1rem;
  line-height: 1.2;
}

.enterprise-chip p {
  margin: 0;
  color: var(--muted-strong);
  font-size: 0.93rem;
  line-height: 1.5;
}

.product-topbar {
  padding-bottom: 12px;
}

.topbar-stack {
  position: relative;
  isolation: isolate;
  display: grid;
  gap: 6px;
}

.topbar-main,
.topbar-sub {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 12px 18px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  box-shadow: 0 16px 42px rgba(18, 24, 34, 0.08);
}

.topbar-main {
  justify-content: space-between;
  border-radius: 999px;
  background: rgba(255, 251, 244, 0.82);
  backdrop-filter: blur(16px);
  z-index: 3;
}

.topbar-sub {
  justify-content: space-between;
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(255, 251, 244, 0.88), rgba(245, 239, 230, 0.84));
  backdrop-filter: blur(16px);
  margin: 0 56px;
  padding: 8px 14px;
  z-index: 1;
}

.topbar-sub::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    radial-gradient(circle at 12% 30%, rgba(29, 143, 122, 0.11), transparent 24%),
    radial-gradient(circle at 86% 30%, rgba(216, 154, 43, 0.14), transparent 24%);
  pointer-events: none;
}

.product-meta,
.product-subnav {
  position: relative;
  z-index: 1;
}

.product-meta {
  display: grid;
  gap: 2px;
}

.product-meta strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.96rem;
  line-height: 1;
}

.product-meta span {
  color: var(--muted);
  font-size: 0.82rem;
}

.product-subnav {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}

.product-subnav a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  color: var(--muted-strong);
  font-size: 0.84rem;
  font-weight: 800;
  text-decoration: none;
  background: rgba(17, 22, 29, 0.03);
  border: 1px solid rgba(17, 22, 29, 0.06);
  transition: background-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.product-subnav a:hover,
.product-subnav a.is-active {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.78);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  text-decoration: none;
}

.brand span {
  position: relative;
}

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

.site-nav a,
.nav-dropdown-toggle {
  color: var(--muted-strong);
  text-decoration: none;
  font-weight: 800;
  padding: 11px 16px;
  border-radius: 999px;
  border: 0;
  background: transparent;
  font: inherit;
  cursor: pointer;
  transition: background-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.site-nav a:hover,
.site-nav a.is-active,
.nav-dropdown-toggle:hover,
.nav-dropdown-toggle.is-active,
.nav-dropdown.is-open .nav-dropdown-toggle {
  color: var(--ink);
  background: rgba(17, 22, 29, 0.06);
}

.site-nav a:focus-visible,
.nav-dropdown-toggle:focus-visible,
.btn:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid rgba(29, 143, 122, 0.6);
  outline-offset: 2px;
}

.nav-dropdown {
  position: relative;
  z-index: 6;
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 250px;
  display: grid;
  gap: 6px;
  padding: 12px;
  border-radius: 24px;
  background: rgba(255, 251, 244, 0.98);
  border: 1px solid var(--line);
  box-shadow: 0 20px 42px rgba(18, 24, 34, 0.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
  z-index: 30;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu,
.nav-dropdown.is-open .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown-menu a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  border-radius: 18px;
  padding: 12px 14px;
}

.nav-dropdown-menu a span {
  color: var(--muted);
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.nav-dropdown-menu a.is-coming-soon {
  color: rgba(59, 70, 84, 0.72);
  background: rgba(17, 22, 29, 0.04);
}

.site-nav .nav-cta {
  background: linear-gradient(135deg, var(--gold), #efba58);
  color: #15110a;
  box-shadow: 0 16px 36px rgba(216, 154, 43, 0.22);
}

.site-nav .nav-cta:hover,
.site-nav .nav-cta.is-active {
  background: linear-gradient(135deg, #e0a43b, #f3c570);
  color: #15110a;
}

.nav-toggle {
  display: none;
  min-height: 46px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
  padding: 0 14px;
  font-weight: 800;
}

.hero,
.page-hero,
.section {
  position: relative;
  overflow: hidden;
}

.hero {
  padding: 88px 0 96px;
}

.page-hero {
  padding: 84px 0 68px;
}

.section {
  padding: 80px 0;
}

.hero-background,
.page-hero::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    radial-gradient(circle at 82% 12%, rgba(216, 154, 43, 0.24), transparent 25%),
    radial-gradient(circle at 13% 16%, rgba(29, 143, 122, 0.18), transparent 24%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.18), transparent 55%);
  pointer-events: none;
}

.hero-grid,
.split-layout,
.cta-grid,
.login-grid,
.comparison-band,
.menu-highlight,
.story-grid,
.credibility-grid {
  position: relative;
  display: grid;
  gap: 28px;
  align-items: start;
}

.hero-grid {
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  align-items: center;
}

.page-hero-product .hero-grid {
  align-items: start;
}

.split-layout,
.cta-grid,
.login-grid,
.comparison-band,
.story-grid,
.credibility-grid {
  grid-template-columns: 1fr 1fr;
}

.menu-highlight {
  grid-template-columns: 1.15fr 0.85fr;
  margin-top: 30px;
}

.eyebrow,
.kicker,
.panel-label,
.product-tag,
.mini-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--teal);
}

.eyebrow::before,
.kicker::before,
.mini-label::before {
  content: "";
  width: 28px;
  height: 1px;
  background: currentColor;
  opacity: 0.6;
}

.hero h1,
.page-hero h1,
h2,
h3,
h4 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  letter-spacing: -0.04em;
}

.hero h1,
.page-hero h1 {
  font-size: clamp(3.2rem, 6vw, 6.1rem);
  line-height: 0.93;
  margin: 18px 0 20px;
  max-width: 11ch;
}

.page-hero-product h1,
.page-hero-products h1 {
  max-width: 12.5ch;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 0.98;
  margin-bottom: 16px;
}

h3 {
  font-size: 1.45rem;
  line-height: 1.1;
  margin-bottom: 12px;
}

.lead,
.long-copy,
.section-copy {
  font-size: 1.08rem;
  color: var(--muted);
}

.section-dark .lead,
.section-dark .long-copy,
.section-dark .section-copy,
.page-hero-products .lead,
.page-hero-company .lead,
.page-hero-comparison .lead,
.dashboard-body .lead,
.dashboard-body .section-copy,
.site-footer .lead {
  color: rgba(237, 244, 239, 0.82);
}

.lead {
  max-width: 62ch;
}

.section-dark,
.section-accent,
.page-hero-products,
.page-hero-company,
.page-hero-comparison,
.dashboard-body,
.site-footer {
  color: #edf4ef;
}

.section-dark,
.page-hero-products,
.page-hero-company,
.page-hero-comparison {
  background:
    radial-gradient(circle at 84% 16%, rgba(216, 154, 43, 0.18), transparent 24%),
    linear-gradient(160deg, var(--deep), var(--deep-2));
}

.section-accent {
  background:
    radial-gradient(circle at 18% 12%, rgba(29, 143, 122, 0.18), transparent 24%),
    linear-gradient(140deg, rgba(11, 19, 32, 0.98), rgba(24, 37, 57, 0.98));
}

.section-light {
  background:
    linear-gradient(180deg, rgba(255, 252, 247, 0.26), rgba(255, 255, 255, 0));
  border-top: 1px solid rgba(17, 22, 29, 0.04);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.page-hero-product + .section {
  padding-top: 66px;
}

.hero-copy {
  position: relative;
}

.hero-copy::after {
  content: "";
  position: absolute;
  right: 10%;
  top: 8%;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(216, 154, 43, 0.2), transparent 70%);
  filter: blur(8px);
  z-index: -1;
}

.hero-actions,
.hero-proof,
.button-row,
.section-actions,
.metric-strip,
.micro-stats {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}

.hero-actions {
  margin-top: 28px;
}

.hero-proof {
  margin-top: 22px;
}

.hero-proof span,
.micro-stats span {
  position: relative;
  padding: 10px 16px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(249, 243, 234, 0.84));
  border: 1px solid rgba(17, 21, 31, 0.1);
  font-size: 0.92rem;
  font-weight: 700;
  box-shadow: 0 14px 32px rgba(18, 24, 34, 0.08);
  padding-left: 42px;
}

.hero-proof span::before,
.micro-stats span::before {
  content: "";
  position: absolute;
  left: 12px;
  top: 50%;
  width: 20px;
  height: 20px;
  border-radius: 999px;
  transform: translateY(-50%);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.34);
}

.hero-proof span::before {
  background:
    radial-gradient(circle at 35% 35%, rgba(255, 255, 255, 0.95), transparent 34%),
    linear-gradient(145deg, var(--teal), #2aaf96);
}

.micro-stats span::before {
  background:
    radial-gradient(circle at 35% 35%, rgba(255, 255, 255, 0.95), transparent 34%),
    linear-gradient(145deg, var(--gold), #efba58);
}

.metric-strip {
  margin-top: 24px;
}

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

.product-badges span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.product-badges-ai span {
  background: rgba(29, 143, 122, 0.14);
  color: #dcf8ee;
}

.product-badges-messaging span {
  background: rgba(216, 154, 43, 0.16);
  color: #fde8bc;
}

.product-badges-file span {
  background: rgba(159, 167, 179, 0.16);
  color: #edf2f7;
}

.metric-chip {
  min-width: 142px;
  padding: 14px 18px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 250, 241, 0.86), rgba(248, 242, 233, 0.84));
  border: 1px solid rgba(17, 21, 31, 0.08);
  box-shadow: 0 18px 40px rgba(18, 24, 34, 0.08);
}

.metric-chip strong {
  display: block;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.9rem;
  line-height: 1;
}

.metric-chip span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.92rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  border-radius: 999px;
  border: 1px solid transparent;
  padding: 0 22px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease, border-color 160ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:active {
  transform: translateY(0);
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), #efba58);
  color: #15110a;
  box-shadow: 0 18px 36px rgba(216, 154, 43, 0.22);
}

.btn-secondary {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(249, 243, 234, 0.82));
  border-color: rgba(17, 21, 31, 0.1);
  color: var(--ink);
}

.btn-ghost {
  background: transparent;
  border-color: rgba(237, 244, 239, 0.16);
  color: #edf4ef;
}

.btn-block {
  width: 100%;
}

.surface-glass,
.feature-card,
.product-card,
.detail-card,
.statement-card,
.surface-card,
.contact-card,
.comparison-table,
.dashboard-card,
.hero-proof span,
.metric-chip,
.menu-card,
.signal-card,
.timeline-card,
.principle-band,
.story-panel {
  box-shadow: var(--shadow);
}

.surface-glass,
.feature-card,
.product-card,
.detail-card,
.statement-card,
.surface-card,
.contact-card,
.comparison-table,
.dashboard-card,
.menu-card,
.signal-card,
.timeline-card,
.principle-band,
.story-panel {
  border: 1px solid var(--line);
}

.surface-glass {
  padding: 30px;
  border-radius: 32px;
  background:
    linear-gradient(180deg, rgba(255, 251, 244, 0.9), rgba(255, 248, 239, 0.76));
  position: relative;
  overflow: hidden;
}

.surface-glass::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(216, 154, 43, 0.16), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.2), transparent 45%);
  pointer-events: none;
}

.surface-glass::after {
  content: "";
  position: absolute;
  right: 24px;
  bottom: 24px;
  width: 138px;
  height: 138px;
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(11, 19, 32, 0.1), rgba(29, 143, 122, 0.03)),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 160 160'%3E%3Cg fill='none' stroke='%23132638' stroke-width='4' opacity='0.8'%3E%3Cpath d='M26 45h108'/%3E%3Cpath d='M26 80h108'/%3E%3Cpath d='M26 115h108'/%3E%3Ccircle cx='45' cy='45' r='8' fill='%23d89a2b' stroke='none'/%3E%3Ccircle cx='82' cy='80' r='8' fill='%231d8f7a' stroke='none'/%3E%3Ccircle cx='118' cy='115' r='8' fill='%23132638' stroke='none'/%3E%3C/g%3E%3C/svg%3E") center/cover no-repeat;
  border: 1px solid rgba(17, 21, 31, 0.08);
  box-shadow: 0 18px 40px rgba(18, 24, 34, 0.08);
  opacity: 0.9;
  pointer-events: none;
}

.product-panel::after {
  width: 148px;
  height: 148px;
}

.product-panel-ai::after {
  background:
    linear-gradient(135deg, rgba(11, 19, 32, 0.08), rgba(29, 143, 122, 0.04)),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 160 160'%3E%3Cg fill='none' stroke='%23132638' stroke-width='4'%3E%3Crect x='30' y='40' width='100' height='80' rx='18'/%3E%3Cpath d='M50 30v12M80 30v12M110 30v12M50 118v12M80 118v12M110 118v12M20 60h12M20 80h12M20 100h12M128 60h12M128 80h12M128 100h12'/%3E%3Cpath d='M56 98l20-36 14 20 14-10' stroke='%231d8f7a'/%3E%3C/g%3E%3C/svg%3E") center/cover no-repeat;
}

.product-panel-messaging::after {
  background:
    linear-gradient(135deg, rgba(11, 19, 32, 0.08), rgba(216, 154, 43, 0.04)),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 160 160'%3E%3Cg fill='none' stroke='%23132638' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M28 48h104a12 12 0 0 1 12 12v46a12 12 0 0 1-12 12H70l-24 18v-18H28a12 12 0 0 1-12-12V60a12 12 0 0 1 12-12z'/%3E%3Cpath d='M42 72h76M42 90h52'/%3E%3Cpath d='M108 58l16 16' stroke='%23d89a2b'/%3E%3C/g%3E%3C/svg%3E") center/cover no-repeat;
}

.product-panel-file::after {
  background:
    linear-gradient(135deg, rgba(11, 19, 32, 0.08), rgba(159, 167, 179, 0.06)),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 160 160'%3E%3Cg fill='none' stroke='%23132638' stroke-width='4' stroke-linejoin='round'%3E%3Cpath d='M42 22h52l24 24v92H42z'/%3E%3Cpath d='M94 22v24h24'/%3E%3Cpath d='M56 78h48M56 96h48M56 114h32'/%3E%3Cpath d='M100 104l24 24' stroke='%231d8f7a'/%3E%3Ccircle cx='96' cy='100' r='16'/%3E%3C/g%3E%3C/svg%3E") center/cover no-repeat;
}

.hero-panel {
  isolation: isolate;
}

.hero-panel-header {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 24px;
}

.hero-panel-header strong {
  display: block;
  max-width: 18ch;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.55rem;
  line-height: 1.05;
}

.signal-card {
  min-width: 132px;
  padding: 16px 18px;
  border-radius: 22px;
  background: rgba(11, 19, 32, 0.88);
  color: #edf4ef;
  box-shadow: var(--shadow-strong);
}

.signal-card strong {
  display: block;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.65rem;
  line-height: 1;
}

.signal-card span {
  display: block;
  margin-top: 6px;
  color: rgba(237, 244, 239, 0.68);
  font-size: 0.88rem;
}

.flow-stack,
.statement-stack,
.stack-gap,
.timeline-stack {
  display: grid;
  gap: 18px;
}

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

.product-signal {
  position: relative;
  padding: 22px 22px 20px;
  border-radius: 24px;
  border: 1px solid rgba(17, 22, 29, 0.08);
  box-shadow: 0 16px 38px rgba(18, 24, 34, 0.08);
  overflow: hidden;
}

.product-signal strong {
  display: block;
  margin-bottom: 8px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.08rem;
  color: var(--ink);
}

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

.product-signal-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 54px;
  height: 32px;
  margin-bottom: 14px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.product-signal-ai {
  background: linear-gradient(180deg, rgba(235, 252, 248, 0.96), rgba(248, 251, 248, 0.94));
}

.product-signal-ai .product-signal-icon {
  background: rgba(29, 143, 122, 0.14);
  color: var(--teal);
}

.product-signal-messaging {
  background: linear-gradient(180deg, rgba(255, 246, 228, 0.96), rgba(255, 250, 242, 0.94));
}

.product-signal-messaging .product-signal-icon {
  background: rgba(216, 154, 43, 0.18);
  color: #9b6612;
}

.product-signal-file {
  background: linear-gradient(180deg, rgba(240, 243, 247, 0.96), rgba(250, 251, 252, 0.94));
}

.product-signal-file .product-signal-icon {
  background: rgba(24, 49, 77, 0.12);
  color: #18314d;
}

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

.plan-card {
  padding: 24px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 251, 244, 0.96), rgba(248, 242, 233, 0.92));
  border: 1px solid rgba(17, 22, 29, 0.08);
  box-shadow: 0 16px 42px rgba(18, 24, 34, 0.08);
  color: var(--ink);
}

.plan-card h3 {
  padding-right: 18px;
}

.plan-card-featured {
  background: linear-gradient(180deg, rgba(255, 248, 238, 0.98), rgba(245, 234, 216, 0.96));
  border-color: rgba(216, 154, 43, 0.32);
  box-shadow: 0 24px 56px rgba(18, 24, 34, 0.12);
}

.plan-card.is-muted {
  opacity: 0.86;
}

.plan-label {
  margin: 0 0 10px;
  color: var(--teal);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.plan-meta {
  margin: 8px 0 0;
  color: var(--muted-strong);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.price-mark {
  margin: 18px 0 6px;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2rem, 3.2vw, 3rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
}

.price-mark span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.96rem;
  font-weight: 700;
  letter-spacing: 0;
}

.price-note {
  margin: 0 0 16px;
  color: var(--muted-strong);
  font-size: 0.92rem;
}

.source-note {
  margin-top: 22px;
  padding: 18px 20px;
  border-radius: 22px;
  background: rgba(17, 22, 29, 0.04);
  border: 1px solid rgba(17, 22, 29, 0.07);
}

.source-note strong {
  display: block;
  margin-bottom: 8px;
  font-family: "Space Grotesk", sans-serif;
}

.source-note p {
  margin: 0;
  color: var(--muted-strong);
}

.pricing-controls {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin: 0 0 24px;
}

.pricing-toggle {
  display: inline-flex;
  padding: 4px;
  border-radius: 999px;
  background: rgba(17, 22, 29, 0.06);
  border: 1px solid rgba(17, 22, 29, 0.08);
}

.pricing-toggle button {
  min-height: 38px;
  padding: 0 16px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted-strong);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.pricing-toggle button.is-active {
  background: linear-gradient(135deg, var(--gold), #efba58);
  color: #15110a;
  box-shadow: 0 10px 24px rgba(216, 154, 43, 0.22);
}

.pricing-save {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(29, 143, 122, 0.12);
  color: var(--teal);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

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

.pricing-compare-card {
  padding: 24px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 251, 244, 0.96), rgba(248, 242, 233, 0.92));
  border: 1px solid rgba(17, 22, 29, 0.08);
  box-shadow: 0 16px 42px rgba(18, 24, 34, 0.08);
}

.pricing-compare-card strong {
  display: block;
  margin-bottom: 8px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.25rem;
}

.pricing-compare-card p {
  margin: 0 0 14px;
  color: var(--muted-strong);
}

.pricing-compare-card .price-mark {
  margin-top: 6px;
}

.flow-card,
.feature-card,
.product-card,
.detail-card,
.statement-card,
.surface-card,
.contact-card,
.dashboard-card,
.menu-card,
.signal-card,
.timeline-card,
.story-panel {
  padding: 26px;
  border-radius: var(--radius-lg);
  background: var(--paper-strong);
}

.enterprise-chip::before,
.feature-card::before,
.product-card::before,
.statement-card::before,
.surface-card::before,
.impact-card::before,
.proof-card::before,
.story-panel::before,
.menu-card::before {
  content: "";
  position: absolute;
  right: 18px;
  top: 18px;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  box-shadow: 0 14px 28px rgba(18, 24, 34, 0.12);
  pointer-events: none;
}

.enterprise-chip::before,
.impact-card::before,
.proof-card::before {
  background:
    linear-gradient(145deg, rgba(29, 143, 122, 0.95), rgba(17, 98, 95, 0.95)),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 48'%3E%3Cpath fill='%23ffffff' d='M24 6l13 5v9c0 8-5.4 15.2-13 17-7.6-1.8-13-9-13-17v-9l13-5zm-5.4 16.4l-2.1 2.2 5.1 5 9.7-9.9-2.1-2.1-7.6 7.7-3-2.9z'/%3E%3C/svg%3E") center/20px 20px no-repeat;
}

.feature-card::before,
.product-card::before,
.surface-card::before {
  background:
    linear-gradient(145deg, rgba(216, 154, 43, 0.96), rgba(239, 186, 88, 0.96)),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 48'%3E%3Cg fill='none' stroke='%2311161d' stroke-width='2.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='24' r='4' fill='%2311161d'/%3E%3Ccircle cx='24' cy='14' r='4' fill='%2311161d'/%3E%3Ccircle cx='36' cy='24' r='4' fill='%2311161d'/%3E%3Ccircle cx='24' cy='34' r='4' fill='%2311161d'/%3E%3Cpath d='M16 22l4-4M28 18l4 4M20 30l-4-4M28 30l4-4'/%3E%3C/g%3E%3C/svg%3E") center/21px 21px no-repeat;
}

.statement-card::before,
.story-panel::before,
.menu-card::before {
  background:
    linear-gradient(145deg, rgba(19, 34, 56, 0.96), rgba(24, 49, 77, 0.96)),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 48'%3E%3Cg fill='none' stroke='%23ffffff' stroke-width='2.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M10 24h22'/%3E%3Cpath d='M24 14l10 10-10 10'/%3E%3Cpath d='M10 14h12' opacity='0.55'/%3E%3Cpath d='M10 34h12' opacity='0.55'/%3E%3C/g%3E%3C/svg%3E") center/21px 21px no-repeat;
}

.flow-card {
  position: relative;
  padding: 22px;
}

.flow-card span,
.surface-card span,
.timeline-card span,
.menu-card span {
  display: block;
  margin-bottom: 8px;
  color: var(--teal);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.flow-card.accent,
.menu-card.featured {
  background: linear-gradient(160deg, var(--deep), #223553);
  color: #f5f7fb;
}

.flow-card.accent span,
.menu-card.featured span {
  color: #f6d18c;
}

.flow-card.accent strong,
.flow-card.accent p,
.menu-card.featured h3,
.menu-card.featured p,
.menu-card.featured ul,
.menu-card.featured li,
.menu-card.featured .text-link {
  color: #f5f7fb;
}

.flow-arrow {
  text-align: center;
  font-size: 0.92rem;
  font-weight: 800;
  color: var(--muted);
}

.micro-label {
  display: block;
  color: var(--muted);
  font-size: 0.92rem;
  margin-top: 6px;
}

.menu-card p,
.feature-card p,
.surface-card p,
.product-card p,
.detail-card p,
.statement-card p,
.story-panel p,
.timeline-card p {
  color: var(--muted);
}

.section-dark .kicker,
.section-dark .eyebrow,
.page-hero-products .eyebrow,
.page-hero-company .eyebrow,
.page-hero-comparison .eyebrow,
.site-footer .brand,
.site-footer h4 {
  color: #edf4ef;
}

.section-dark .kicker::before,
.section-dark .eyebrow::before,
.page-hero-products .eyebrow::before,
.page-hero-company .eyebrow::before,
.page-hero-comparison .eyebrow::before {
  background: currentColor;
  opacity: 0.45;
}

.menu-card ul,
.story-panel ul {
  margin: 16px 0 0;
  padding-left: 18px;
  color: var(--muted);
}

.menu-card li + li,
.story-panel li + li {
  margin-top: 8px;
}

.card-grid,
.surface-grid,
.footer-grid,
.dashboard-grid,
.logo-grid {
  display: grid;
  gap: 20px;
}

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

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

.feature-card.emphasis {
  background: linear-gradient(145deg, #fff3d9, #fffdf8);
}

.product-card {
  position: relative;
  overflow: hidden;
}

.product-card-spotlight {
  min-height: 100%;
}

.product-card.is-muted,
.detail-card.is-muted,
.statement-card.is-muted {
  background: linear-gradient(145deg, rgba(255, 250, 241, 0.76), rgba(246, 241, 232, 0.86));
  color: rgba(17, 22, 29, 0.76);
}

.badge-row,
.badge-cluster {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(17, 22, 29, 0.06);
  color: var(--muted-strong);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.status-badge.success {
  background: rgba(29, 143, 122, 0.14);
  color: var(--teal);
}

.status-badge.warn {
  background: rgba(216, 154, 43, 0.14);
  color: #9b6612;
}

.status-badge.muted {
  background: rgba(17, 22, 29, 0.05);
  color: rgba(59, 70, 84, 0.72);
}

.product-card::after,
.detail-card::after,
.menu-card::after,
.story-panel::after {
  content: "";
  position: absolute;
  right: -40px;
  top: -40px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(216, 154, 43, 0.14), transparent 72%);
}

.product-card a,
.register-link a,
.text-link {
  color: var(--teal);
  font-weight: 800;
  text-decoration: none;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.product-tag {
  color: var(--gold);
  margin-bottom: 10px;
}

.clean-list {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

.clean-list li + li {
  margin-top: 10px;
}

.principle-band {
  padding: 24px 26px;
  border-radius: 26px;
  background: linear-gradient(135deg, rgba(255, 248, 239, 0.9), rgba(255, 252, 247, 0.72));
}

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

.impact-card,
.proof-card {
  position: relative;
  padding: 24px;
  border-radius: var(--radius-lg);
  background: var(--paper-strong);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  color: var(--ink);
  overflow: hidden;
}

.impact-card strong,
.proof-card strong {
  display: block;
  margin-bottom: 10px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.15rem;
}

.impact-card p,
.proof-card p {
  color: var(--muted);
}

.feature-card,
.product-card,
.detail-card,
.statement-card,
.surface-card,
.contact-card,
.menu-card,
.timeline-card,
.story-panel,
.surface-glass {
  color: var(--ink);
}

.feature-card h3,
.product-card h3,
.detail-card h2,
.detail-card h3,
.statement-card strong,
.surface-card h3,
.contact-card h3,
.menu-card h3,
.timeline-card h3,
.story-panel h3,
.surface-glass strong {
  color: var(--ink);
}

.risk-quote {
  padding: 26px;
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, rgba(11, 19, 32, 0.96), rgba(24, 49, 77, 0.96));
  color: #edf4ef;
  border: 1px solid rgba(237, 244, 239, 0.08);
  box-shadow: var(--shadow-strong);
}

.risk-quote p:last-child {
  margin-bottom: 0;
}

.pricing-band {
  display: grid;
  gap: 18px;
}

.pricing-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.pricing-row strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.2rem;
}

.pricing-row span {
  color: var(--muted);
}

.page-hero-product::before {
  background:
    radial-gradient(circle at 82% 12%, rgba(216, 154, 43, 0.26), transparent 25%),
    radial-gradient(circle at 13% 16%, rgba(29, 143, 122, 0.18), transparent 24%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), transparent 55%);
}

.visual-note {
  padding: 18px 20px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(29, 143, 122, 0.08), rgba(255, 255, 255, 0.56));
  border: 1px dashed rgba(29, 143, 122, 0.34);
  color: var(--muted-strong);
  font-weight: 700;
}

.visual-note strong {
  display: block;
  margin-bottom: 6px;
  color: var(--teal);
  font-family: "Space Grotesk", sans-serif;
}

.risk-quote strong,
.risk-quote p,
.risk-quote .kicker,
.risk-quote .eyebrow {
  color: #edf4ef;
}

.principle-band strong {
  display: block;
  margin-bottom: 10px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.2rem;
}

.comparison-table {
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--paper-strong);
}

.comparison-table-large {
  max-width: 1220px;
  margin: 0 auto;
}

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

.comparison-row span {
  padding: 18px 22px;
  border-bottom: 1px solid var(--line);
}

.comparison-row span:last-child {
  background: rgba(29, 143, 122, 0.06);
  font-weight: 800;
}

.comparison-head span {
  background: var(--deep);
  color: #edf4ef;
  font-weight: 800;
}

.comparison-head span:last-child {
  background: linear-gradient(145deg, #20344f, #1d8f7a);
}

.contact-card label {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
  font-weight: 800;
}

.auth-card {
  max-width: 520px;
}

.register-link {
  margin: 16px 0 0;
  color: var(--muted);
  text-align: center;
}

.form-heading {
  margin-bottom: 6px;
}

input {
  width: 100%;
  min-height: 54px;
  border-radius: 16px;
  border: 1px solid rgba(17, 21, 31, 0.12);
  background: rgba(255, 255, 255, 0.78);
  padding: 0 16px;
  font: inherit;
}

input:focus {
  outline: 2px solid rgba(29, 143, 122, 0.18);
  border-color: rgba(29, 143, 122, 0.55);
}

.message {
  min-height: 24px;
  margin: 16px 0 0;
  font-weight: 700;
}

.message-dark {
  color: var(--muted);
}

select {
  width: 100%;
  min-height: 54px;
  border-radius: 16px;
  border: 1px solid rgba(17, 21, 31, 0.12);
  background: rgba(255, 255, 255, 0.78);
  padding: 0 16px;
  font: inherit;
}

.section-divider {
  margin-top: 26px;
  padding-top: 24px;
  border-top: 1px solid rgba(17, 21, 31, 0.08);
}

.auth-layout,
.wizard-grid,
.org-grid {
  display: grid;
  gap: 20px;
}

.auth-layout {
  grid-template-columns: 0.95fr 1.05fr;
}

.wizard-grid {
  grid-template-columns: 1fr 1fr;
  margin-top: 24px;
}

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

.app-panel,
.org-card {
  padding: 24px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(237, 244, 239, 0.08);
  background: rgba(255, 255, 255, 0.04);
}

.app-panel strong,
.app-panel b,
.org-card strong,
.org-card b,
.dashboard-card h2,
.dashboard-card h3,
.dashboard-card .kicker,
.dashboard-card .section-heading p,
.dashboard-card .section-heading h2 {
  color: #edf4ef;
}

.org-card span {
  display: inline-flex;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.76rem;
  font-weight: 800;
  color: #f6d18c;
}

.org-card h3,
.app-panel h3 {
  margin-bottom: 10px;
}

.org-card p,
.app-panel p,
.app-panel label {
  color: rgba(237, 244, 239, 0.78);
}

.org-member-list p,
.promptcloak-row p,
.promptcloak-row strong,
.promptcloak-row label,
.promptcloak-row-stack p,
.promptcloak-row-stack strong {
  color: rgba(237, 244, 239, 0.82);
}

.promptcloak-row strong,
.org-member-list strong {
  color: #edf4ef;
}

.app-panel input,
.app-panel select,
.app-panel textarea,
.org-card input,
.org-card select {
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
}

.app-panel textarea,
.org-card textarea {
  width: 100%;
  min-height: 180px;
  border-radius: 16px;
  border: 1px solid rgba(17, 21, 31, 0.12);
  background: rgba(255, 255, 255, 0.92);
  padding: 14px 16px;
  font: inherit;
  resize: vertical;
}

.app-panel select[multiple] {
  min-height: 180px;
  border-radius: 16px;
  border: 1px solid rgba(17, 21, 31, 0.12);
  padding: 10px 12px;
}

.org-member-list {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(237, 244, 239, 0.08);
}

.org-member-list strong {
  display: block;
  margin-bottom: 8px;
  font-family: "Space Grotesk", sans-serif;
}

.invite-form {
  margin-top: 18px;
  display: grid;
  gap: 12px;
}

.promptcloak-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  padding: 14px 0;
  border-top: 1px solid rgba(237, 244, 239, 0.08);
}

.promptcloak-row:first-child {
  border-top: 0;
  padding-top: 0;
}

.promptcloak-row-stack {
  display: grid;
  justify-content: start;
}

.promptcloak-inline-btn {
  min-height: 38px;
  padding: 0 14px;
}

.promptcloak-policy-controls {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.promptcloak-policy-controls select,
[data-type-policy] {
  min-width: 140px;
}

.hidden {
  display: none !important;
}

.story-panel,
.timeline-card {
  background: rgba(255, 250, 241, 0.88);
}

.timeline-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: start;
}

.timeline-index {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, rgba(29, 143, 122, 0.14), rgba(255, 255, 255, 0.74));
  color: var(--teal);
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  box-shadow: inset 0 0 0 1px rgba(29, 143, 122, 0.1), 0 10px 24px rgba(18, 24, 34, 0.08);
}

.site-footer {
  position: relative;
  padding: 38px 0 48px;
  background:
    radial-gradient(circle at 18% 12%, rgba(29, 143, 122, 0.14), transparent 26%),
    linear-gradient(160deg, #0b1320, #132238);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.brand-footer {
  margin-bottom: 12px;
}

.site-footer h4 {
  margin-bottom: 10px;
  font-size: 1rem;
}

.site-footer a {
  display: block;
  margin-bottom: 8px;
  color: rgba(237, 244, 239, 0.72);
  text-decoration: none;
}

.site-footer p {
  color: rgba(237, 244, 239, 0.72);
}

.footer-grid {
  grid-template-columns: 1.2fr 0.8fr 0.8fr 0.8fr;
}

.dashboard-body {
  background:
    radial-gradient(circle at top left, rgba(29, 143, 122, 0.1), transparent 30%),
    #0f1825;
}

.dashboard-topbar {
  background: rgba(15, 24, 37, 0.82);
  border-bottom-color: rgba(237, 244, 239, 0.08);
}

.dashboard-topbar .brand,
.dashboard-topbar .site-nav a,
.dashboard-topbar .nav-dropdown-toggle {
  color: #edf4ef;
}

.dashboard-main {
  padding: 44px 0 72px;
}

.dashboard-shell {
  --container: min(1540px, calc(100vw - 56px));
}

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

.dashboard-hero-card {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.85fr);
  gap: 22px;
  align-items: stretch;
}

.dashboard-hero-copy .section-copy {
  max-width: 68ch;
}

.dashboard-hero-metrics {
  display: grid;
  gap: 16px;
}

.dashboard-stat {
  padding: 22px 24px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(237, 244, 239, 0.08);
}

.metric-compact {
  font-size: 2.2rem;
}

.dashboard-role-strip,
.studio-launch-grid {
  display: grid;
  gap: 18px;
}

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

.ops-card,
.studio-launch-card {
  padding: 24px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(237, 244, 239, 0.08);
}

.ops-card h3,
.studio-launch-card h3 {
  margin: 10px 0;
  color: #edf4ef;
}

.ops-card p,
.studio-launch-card p,
.studio-launch-card label {
  color: rgba(237, 244, 239, 0.78);
}

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

.studio-launch-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}

.studio-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 18px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: #15110a;
}

.studio-icon-prompt {
  background: linear-gradient(145deg, #efba58, #d89a2b);
}

.studio-icon-message {
  background: linear-gradient(145deg, #64ccb7, #1d8f7a);
}

.dashboard-launch-row {
  margin-top: 18px;
}

.studio-hero-card h1 {
  margin: 0;
  font-size: clamp(2.2rem, 4vw, 3.35rem);
  line-height: 0.98;
  color: #edf4ef;
}

.studio-body .dashboard-main {
  padding-top: 36px;
}

.dashboard-switcher-card {
  display: grid;
  gap: 18px;
}

.dashboard-switcher {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(237, 244, 239, 0.1);
}

.dashboard-switcher button {
  min-height: 42px;
  padding: 0 16px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: rgba(237, 244, 239, 0.72);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.dashboard-switcher button.is-active {
  background: linear-gradient(135deg, var(--gold), #efba58);
  color: #15110a;
  box-shadow: 0 10px 24px rgba(216, 154, 43, 0.22);
}

.dashboard-panel {
  display: none;
  grid-column: 1 / -1;
  gap: 20px;
}

.dashboard-panel.is-active {
  display: grid;
}

.dashboard-card {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(237, 244, 239, 0.08);
}

.dashboard-card .btn-secondary {
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  border-color: rgba(17, 21, 31, 0.12);
}

.dashboard-card .btn-primary {
  color: #15110a;
}

.dashboard-card.wide {
  grid-column: span 3;
}

.admin-workbench {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 22px;
  align-items: start;
}

.admin-sidebar,
.admin-stage-panel {
  padding: 24px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(237, 244, 239, 0.08);
  background: rgba(255, 255, 255, 0.04);
}

.admin-sidebar {
  position: sticky;
  top: 120px;
  display: grid;
  gap: 18px;
}

.admin-sidebar-head h3,
.admin-stage-panel h3 {
  color: #edf4ef;
}

.admin-sidebar-head p,
.admin-stage-panel p {
  color: rgba(237, 244, 239, 0.76);
}

.admin-sidebar-nav {
  display: grid;
  gap: 10px;
}

.admin-sidebar-nav button {
  width: 100%;
  min-height: 48px;
  padding: 0 16px;
  border: 1px solid rgba(237, 244, 239, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  color: rgba(237, 244, 239, 0.76);
  text-align: left;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.admin-sidebar-nav button.is-active {
  background: linear-gradient(135deg, var(--gold), #efba58);
  border-color: rgba(216, 154, 43, 0.34);
  color: #15110a;
  box-shadow: 0 10px 24px rgba(216, 154, 43, 0.18);
}

.admin-stage {
  min-width: 0;
}

.admin-stage-panel {
  display: none;
}

.admin-stage-panel.is-active {
  display: block;
}

.admin-inner-grid {
  margin-top: 0;
}

.plan-card .status-badge {
  margin-bottom: 12px;
}

.metric {
  margin: 14px 0 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: 2.8rem;
  line-height: 1;
}

.metric span {
  display: block;
  margin-top: 10px;
  font-size: 0.96rem;
  color: rgba(237, 244, 239, 0.72);
}

.hero-proof span,
.micro-stats span,
.metric-chip,
.enterprise-chip,
.feature-card,
.product-card,
.detail-card,
.statement-card,
.surface-card,
.contact-card,
.menu-card,
.timeline-card,
.story-panel,
.comparison-table,
.principle-band,
.impact-card,
.proof-card,
.visual-note {
  color: var(--ink);
}

.hero-proof span,
.micro-stats span,
.metric-chip,
.enterprise-chip,
.feature-card p,
.product-card p,
.detail-card p,
.statement-card p,
.surface-card p,
.contact-card p,
.menu-card p,
.timeline-card p,
.story-panel p,
.comparison-table span,
.principle-band p,
.impact-card p,
.proof-card p,
.visual-note {
  color: var(--muted-strong);
}

@media (hover: hover) {
  .enterprise-chip,
  .feature-card,
  .product-card,
  .detail-card,
  .statement-card,
  .surface-card,
  .contact-card,
  .menu-card,
  .timeline-card,
  .impact-card,
  .proof-card,
  .story-panel,
  .surface-glass,
  .hero-proof span,
  .micro-stats span,
  .metric-chip,
  .site-nav a,
  .nav-dropdown-toggle {
    transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease, border-color 180ms ease;
  }

  .enterprise-chip:hover,
  .feature-card:hover,
  .product-card:hover,
  .detail-card:hover,
  .statement-card:hover,
  .surface-card:hover,
  .contact-card:hover,
  .menu-card:hover,
  .timeline-card:hover,
  .impact-card:hover,
  .proof-card:hover,
  .story-panel:hover,
  .surface-glass:hover {
    transform: translateY(-4px);
    box-shadow: 0 28px 56px rgba(18, 24, 34, 0.12);
  }

  .hero-proof span:hover,
  .micro-stats span:hover,
  .metric-chip:hover,
  .site-nav a:hover,
  .nav-dropdown-toggle:hover {
    transform: translateY(-1px);
  }
}

table {
  width: 100%;
  border-collapse: collapse;
}

th,
td {
  padding: 14px 0;
  text-align: left;
  border-bottom: 1px solid rgba(237, 244, 239, 0.08);
}

.fade-up {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 620ms ease forwards;
}

.fade-up.delay-1 {
  animation-delay: 90ms;
}

.fade-up.delay-2 {
  animation-delay: 180ms;
}

.fade-up.delay-3 {
  animation-delay: 270ms;
}

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

@media (max-width: 1024px) {
  .hero-grid,
  .split-layout,
  .cta-grid,
  .login-grid,
  .comparison-band,
  .menu-highlight,
  .story-grid,
  .credibility-grid,
  .card-grid.three,
  .surface-grid,
  .footer-grid,
  .dashboard-grid,
  .logo-grid,
  .auth-layout,
  .wizard-grid,
  .org-grid,
  .admin-workbench {
    grid-template-columns: 1fr;
  }

  .impact-grid,
  .proof-grid,
  .product-signal-grid,
  .plan-grid,
  .pricing-compare,
  .dashboard-role-strip,
  .studio-launch-grid,
  .dashboard-hero-card {
    grid-template-columns: 1fr;
  }

  .dashboard-card.wide {
    grid-column: auto;
  }

  .admin-sidebar {
    position: static;
  }
}

@media (max-width: 760px) {
  :root {
    --container: min(100vw - 24px, 100vw);
  }

  .dashboard-shell {
    --container: min(100vw - 24px, 100vw);
  }

  body::before {
    background-size: 44px 44px;
  }

  .topbar {
    padding: 12px 0;
  }

  .topbar-inner {
    padding: 10px 12px;
    border-radius: 26px;
  }

  .dashboard-switcher {
    width: 100%;
    border-radius: 24px;
  }

  .dashboard-switcher button {
    flex: 1 1 calc(50% - 10px);
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    min-width: 240px;
    padding: 14px;
    border-radius: 24px;
    background: rgba(255, 251, 244, 0.96);
    border: 1px solid var(--line);
    box-shadow: 0 20px 42px rgba(18, 24, 34, 0.12);
  }

  .site-nav a {
    width: 100%;
  }

  .nav-dropdown {
    width: 100%;
  }

  .nav-dropdown-toggle {
    width: 100%;
    text-align: left;
  }

  .nav-dropdown-menu {
    position: static;
    min-width: 0;
    margin-top: 8px;
    padding: 8px;
    border-radius: 18px;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
    box-shadow: none;
    background: rgba(17, 22, 29, 0.03);
  }

  .nav-dropdown.is-open .nav-dropdown-menu {
    display: grid;
  }

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

  .hero,
  .page-hero,
  .section {
    padding: 56px 0;
  }

  .page-hero-product + .section {
    padding-top: 46px;
  }

  .topbar-stack {
    gap: 6px;
  }

  .topbar-main,
  .topbar-sub {
    padding: 10px 12px;
  }

  .topbar-main {
    border-radius: 26px;
  }

  .topbar-sub {
    margin: 0 8px;
    border-radius: 22px;
    align-items: stretch;
    flex-direction: column;
  }

  .product-subnav {
    width: 100%;
  }

  .product-subnav a {
    width: 100%;
    justify-content: center;
  }

  .hero h1,
  .page-hero h1 {
    max-width: none;
    font-size: clamp(2.45rem, 10vw, 3.6rem);
    line-height: 0.98;
    margin: 14px 0 16px;
  }

  h2 {
    font-size: clamp(1.85rem, 8vw, 2.45rem);
    line-height: 1.02;
  }

  .lead,
  .long-copy,
  .section-copy {
    font-size: 1rem;
  }

  .hero-actions,
  .hero-proof,
  .product-badges,
  .micro-stats,
  .metric-strip {
    gap: 10px;
  }

  .hero-proof span,
  .micro-stats span {
    min-height: 38px;
    padding-left: 40px;
    font-size: 0.82rem;
  }

  .product-badges span {
    font-size: 0.74rem;
  }

  .metric-chip {
    width: 100%;
    min-width: 0;
  }

  .hero-panel-header {
    flex-direction: column;
    align-items: stretch;
  }

  .signal-card {
    width: 100%;
  }

  .page-hero-product .hero-grid {
    gap: 18px;
  }

  .page-hero-product .surface-glass {
    padding: 22px 22px 40px;
  }

  .page-hero-product .surface-glass::after {
    width: 108px;
    height: 108px;
    right: 16px;
    bottom: 16px;
    border-radius: 22px;
  }

  .topbar-inner {
    gap: 12px;
  }

  .brand {
    gap: 10px;
    font-size: 1.08rem;
  }

  .site-footer {
    padding: 32px 0 40px;
  }

  .site-footer a,
  .site-footer p {
    font-size: 0.9rem;
  }

  .surface-glass,
  .feature-card,
  .product-card,
  .detail-card,
  .statement-card,
  .surface-card,
  .contact-card,
  .menu-card,
  .timeline-card,
  .story-panel {
    padding: 22px;
  }

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

  .comparison-row span:last-child {
    border-top: 1px solid var(--line);
  }

  .enterprise-strip,
  .enterprise-strip-compact {
    grid-template-columns: 1fr;
  }
}

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

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

  body::before {
    opacity: 0.14;
  }
}

body.figma-public {
  background: #ffffff;
  color: #121b33;
  font-family: "Manrope", sans-serif;
}

body.figma-public[data-page="login"] {
  background: linear-gradient(180deg, #ffffff 0%, #f6f9ff 100%);
}

body.figma-public::before {
  display: none;
}

.figma-public .container {
  width: min(1280px, calc(100vw - 64px));
}

.figma-public .topbar {
  position: sticky;
  top: 0;
  padding: 0;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid #e8edf7;
  backdrop-filter: blur(10px);
}

.figma-public .topbar-inner {
  min-height: 72px;
  padding: 12px 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.figma-public .brand {
  gap: 10px;
  font-size: 1.05rem;
  font-weight: 700;
  text-decoration: none;
  color: #25314f;
}

.figma-public .brand-inline {
  display: inline-flex;
  margin-bottom: 24px;
}

.auth-topbar {
  background: transparent;
  border-bottom: 0;
  backdrop-filter: none;
}

.auth-topbar .topbar-inner {
  min-height: 64px;
}

.auth-home-link {
  color: #7383a3;
  font-weight: 700;
  text-decoration: none;
}

.figma-public .site-nav {
  display: flex;
  align-items: center;
  gap: 18px;
}

.figma-public .site-nav a {
  color: #5a6987;
  font-weight: 600;
  text-decoration: none;
}

.figma-public .nav-dropdown {
  position: relative;
  z-index: 15;
}

.figma-public .nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: transparent;
  color: #5a6987;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.figma-public .nav-dropdown-toggle::after {
  content: "";
  width: 8px;
  height: 8px;
  border-right: 1.6px solid currentColor;
  border-bottom: 1.6px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
  transition: transform 180ms ease;
}

.figma-public .nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  min-width: 260px;
  display: grid;
  gap: 8px;
  padding: 14px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid #e6ecf4;
  box-shadow: 0 24px 55px rgba(20, 33, 61, 0.14);
  backdrop-filter: blur(10px);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px) scale(0.98);
  transform-origin: top left;
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
}

.figma-public .nav-dropdown-menu-wide {
  min-width: 290px;
}

.figma-public .nav-dropdown:hover .nav-dropdown-menu,
.figma-public .nav-dropdown:focus-within .nav-dropdown-menu,
.figma-public .nav-dropdown.is-open .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.figma-public .nav-dropdown:hover .nav-dropdown-toggle,
.figma-public .nav-dropdown:focus-within .nav-dropdown-toggle,
.figma-public .nav-dropdown.is-open .nav-dropdown-toggle {
  color: #18233f;
  background: #f3f7ff;
  border-color: #dbe6fb;
}

.figma-public .nav-dropdown:hover .nav-dropdown-toggle::after,
.figma-public .nav-dropdown:focus-within .nav-dropdown-toggle::after,
.figma-public .nav-dropdown.is-open .nav-dropdown-toggle::after {
  transform: rotate(225deg) translateY(1px);
}

.figma-public .nav-dropdown-menu a {
  display: grid;
  gap: 3px;
  padding: 12px 14px;
  border-radius: 14px;
  transition: background-color 180ms ease, transform 180ms ease;
}

.figma-public .nav-dropdown-menu a:hover {
  background: #f4f7fd;
  transform: translateX(3px);
}

.figma-public .nav-dropdown-menu b {
  color: #152241;
  font-size: 0.95rem;
}

.figma-public .nav-dropdown-menu span {
  color: #7b89a3;
  font-size: 0.78rem;
  text-transform: none;
  letter-spacing: 0;
}

.figma-public .site-nav a:hover,
.figma-public .site-nav a.is-active {
  color: #18233f;
}

.figma-public .nav-cta,
.figma-public .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 24px;
  border-radius: 12px;
  border: 1px solid #d8e0ee;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease, background-color 160ms ease;
}

.figma-public .nav-cta,
.figma-public .btn-primary {
  background: #0d1020;
  color: #ffffff;
  border-color: #0d1020;
  box-shadow: none;
}

.figma-public .btn-secondary {
  background: #ffffff;
  color: #18233f;
  border-color: #d8e0ed;
}

.figma-public .btn-light {
  background: #ffffff;
  color: #101a32;
  border-color: rgba(255, 255, 255, 0.85);
}

.figma-public .btn-ghost-light {
  background: transparent;
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.35);
}

.figma-public .btn-block {
  width: 100%;
}

.figma-public .btn:hover,
.figma-public .nav-cta:hover {
  transform: translateY(-1px);
}

.figma-main {
  display: block;
}

.figma-hero,
.figma-section {
  padding: 72px 0;
}

.figma-hero-home {
  padding: 92px 0 84px;
}

.figma-hero-products,
.figma-hero-split {
  background: linear-gradient(180deg, #f7faff 0%, #ffffff 72%);
}

.figma-tone-prompt {
  background: linear-gradient(180deg, #eff5ff 0%, #ffffff 72%);
}

.figma-tone-message {
  background: linear-gradient(180deg, #faf5ff 0%, #ffffff 72%);
}

.figma-tone-file {
  background: linear-gradient(180deg, #f4fff6 0%, #ffffff 72%);
}

.figma-hero-center {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}

.figma-hero-center-file {
  max-width: 880px;
}

.figma-split-layout,
.figma-section-grid,
.figma-auth-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 40px;
  align-items: center;
}

.figma-pill,
.figma-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 16px;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 700;
  color: #2f6cf6;
  background: #eef4ff;
  border: 1px solid #d3e1ff;
}

.figma-pill-message {
  color: #8d38ff;
  background: #f2e7ff;
  border-color: #e4ccff;
}

.figma-pill-file {
  color: #0f9250;
  background: #e8fff0;
  border-color: #c2f0d0;
}

.figma-title,
.figma-heading {
  margin: 22px 0 18px;
  color: #152241;
  font-size: clamp(2.65rem, 5vw, 5rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
  font-weight: 800;
}

.figma-title-home {
  font-size: clamp(3rem, 6vw, 5.4rem);
}

.figma-heading {
  font-size: clamp(2rem, 4vw, 3.7rem);
}

.figma-heading-auth {
  font-size: clamp(2.5rem, 4vw, 3.8rem);
  line-height: 1.02;
}

.figma-text,
.figma-copy {
  margin: 0;
  color: #60708e;
  font-size: 1.22rem;
  line-height: 1.6;
}

.figma-text-home {
  font-size: 1.28rem;
}

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

.figma-actions-center {
  justify-content: center;
}

.figma-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.figma-chip-row-center {
  justify-content: center;
}

.figma-chip-row span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: #f4f7fc;
  color: #667692;
  font-size: 0.95rem;
  border: 1px solid #e6edf7;
}

.figma-section-dark {
  background: #1a233b;
}

.figma-section-soft {
  background: #f7faff;
}

.figma-section-green {
  background: #15692f;
}

.figma-section-cta-purple {
  background: #6f24ab;
}

.figma-kicker-light,
.figma-heading-light,
.figma-copy-light,
.figma-section-cta-purple .figma-heading,
.figma-section-cta-purple .figma-copy {
  color: #ffffff;
}

.figma-section-dark .figma-kicker-light {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
}

.figma-section-heading {
  max-width: 920px;
  margin-bottom: 36px;
}

.figma-section-heading.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.figma-card-stack,
.figma-check-panel {
  display: grid;
  gap: 16px;
}

.figma-note-card,
.figma-feature-card,
.figma-product-summary,
.figma-auth-card,
.figma-price-box,
.figma-mock-card,
.figma-waitlist-card,
.figma-pricing-card {
  background: #ffffff;
  border: 1px solid #e7edf6;
  border-radius: 22px;
  box-shadow: 0 16px 40px rgba(20, 33, 61, 0.08);
}

.figma-note-card,
.figma-product-summary,
.figma-pricing-card,
.figma-price-box,
.figma-auth-card,
.figma-waitlist-card {
  padding: 28px;
}

.figma-note-card strong,
.figma-feature-card h3,
.figma-product-summary h2,
.figma-auth-card h2,
.figma-pricing-card h3 {
  color: #152443;
}

.figma-feature-grid,
.figma-pricing-grid,
.figma-product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.figma-pricing-showcase {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
  align-items: stretch;
}

.figma-pricing-tier {
  position: relative;
  padding: 30px 32px 34px;
  border-radius: 20px;
  border: 1px solid #dbe5f3;
  background: #ffffff;
  box-shadow: 0 18px 44px rgba(20, 33, 61, 0.06);
}

.figma-pricing-tier-featured {
  border: 2px solid #2f6cf6;
  box-shadow: 0 22px 52px rgba(47, 108, 246, 0.14);
}

.figma-tier-badge {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 0 18px;
  border-radius: 999px;
  background: #2f6cf6;
  color: #ffffff;
  font-size: 0.88rem;
  font-weight: 800;
}

.figma-pricing-tier h3 {
  margin: 0 0 12px;
  color: #18233f;
  font-size: 1.2rem;
}

.figma-tier-price {
  margin: 0;
  color: #12203d;
  font-size: 3rem;
  line-height: 1;
  letter-spacing: -0.05em;
}

.figma-tier-price span {
  font-size: 0.42em;
  letter-spacing: 0;
  color: #5f6f8e;
}

.figma-tier-copy {
  margin: 12px 0 8px;
  color: #4f5f7c;
}

.figma-tier-note {
  margin: 0 0 18px;
  color: #7a8aa6;
  font-size: 0.92rem;
}

.figma-tier-list {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 26px 0 0;
  list-style: none;
}

.figma-tier-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #41536f;
}

.figma-tier-list i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  border-radius: 999px;
  background: #e2f8ea;
  color: #1dbf68;
  font-style: normal;
  font-size: 0.85rem;
  font-weight: 900;
}

.figma-product-summary {
  padding: 34px;
}

.figma-product-summary.prompt {
  background: linear-gradient(180deg, #f3f8ff 0%, #ffffff 100%);
}

.figma-product-summary.messaging {
  background: linear-gradient(180deg, #fbf5ff 0%, #ffffff 100%);
}

.figma-product-summary.file {
  background: linear-gradient(180deg, #f4fff6 0%, #ffffff 100%);
}

.figma-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #edf3ff;
  color: #2f6cf6;
  font-weight: 800;
}

.figma-feature-card {
  padding: 28px;
}

.figma-check-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  color: #ffffff;
}

.figma-check-grid div,
.figma-check-panel div {
  padding: 18px 20px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.09);
}

.figma-check-panel {
  color: #ffffff;
}

.figma-check-panel div {
  position: relative;
  padding-left: 54px;
}

.figma-check-panel div::before {
  content: "✓";
  position: absolute;
  top: 50%;
  left: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  background: #21a46b;
  color: #ffffff;
  font-size: 0.86rem;
  font-weight: 900;
  transform: translateY(-50%);
  box-shadow: 0 10px 24px rgba(33, 164, 107, 0.22);
}

.figma-price-row {
  display: grid;
  gap: 6px;
  padding: 14px 0;
  border-bottom: 1px solid #e8edf5;
}

.figma-price-row:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.figma-copy-col {
  max-width: 620px;
}

.figma-mock-card {
  padding: 24px;
}

.figma-demo-shell {
  display: grid;
  gap: 20px;
  padding: 28px;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, #f6f9ff 100%);
  border: 1px solid #deebff;
  box-shadow: 0 28px 70px rgba(38, 84, 179, 0.14);
}

.figma-mock-head,
.figma-mock-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.figma-mock-body {
  margin: 18px 0;
  padding-top: 16px;
  border-top: 1px solid #e8edf5;
}

.figma-mock-body p {
  margin: 0 0 18px;
  padding: 18px;
  border-radius: 16px;
  background: #f5f7fb;
  color: #233253;
  line-height: 1.7;
}

.figma-token {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 3px;
  padding: 0.18em 0.55em;
  border-radius: 9px;
  border: 1px solid transparent;
  font-weight: 700;
  vertical-align: baseline;
  white-space: nowrap;
}

.figma-demo-label {
  display: block;
  margin-bottom: 8px;
  color: #18233f;
  font-size: 0.93rem;
  font-weight: 800;
}

.figma-demo-help {
  margin: 0 0 12px;
  color: #6d7d98;
  font-size: 0.92rem;
  line-height: 1.6;
}

.figma-demo-textarea {
  width: 100%;
  min-height: 184px;
  padding: 18px 18px 20px;
  border: 1px solid #d9e5fb;
  border-radius: 22px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
  color: #1e2a46;
  font: inherit;
  font-size: 1rem;
  line-height: 1.72;
  resize: vertical;
}

.figma-demo-textarea:focus-visible {
  outline: none;
  border-color: #7db0ff;
  box-shadow: 0 0 0 4px rgba(47, 108, 246, 0.12);
}

.figma-demo-scan {
  display: grid;
  gap: 14px;
  padding: 18px;
  border-radius: 22px;
  background: #f6f9ff;
  border: 1px solid #e1ebfa;
}

.figma-demo-scan-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.figma-demo-progress {
  overflow: hidden;
  height: 10px;
  border-radius: 999px;
  background: #e3ebf9;
}

.figma-demo-progress-bar {
  width: 22%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #4a8cff 0%, #8e6dff 60%, #21a46b 100%);
  box-shadow: 0 0 20px rgba(74, 140, 255, 0.34);
  transition: width 280ms ease, transform 280ms ease;
}

.figma-demo-shell.is-scanning .figma-demo-progress-bar {
  animation: demoScan 1.1s ease-in-out infinite;
}

.figma-demo-preview-wrap {
  display: grid;
  gap: 14px;
  padding: 18px;
  border-radius: 24px;
  background: #ffffff;
  border: 1px solid #e1ebfa;
}

.figma-demo-preview-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.figma-demo-preview-head strong {
  display: block;
  margin-bottom: 6px;
  color: #18233f;
}

.figma-demo-preview-head p {
  margin: 0;
  color: #6d7d98;
  font-size: 0.92rem;
}

.figma-demo-preview-tools {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.figma-demo-segment-group {
  display: grid;
  gap: 8px;
}

.figma-demo-segment-group span {
  color: #70819e;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.figma-demo-segment {
  display: inline-flex;
  padding: 5px;
  border-radius: 16px;
  background: #eff4fb;
  border: 1px solid #dce7f7;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.figma-demo-segment button {
  min-height: 42px;
  padding: 0 16px;
  border: 0;
  border-radius: 12px;
  background: transparent;
  color: #6d7d98;
  font: inherit;
  font-size: 0.9rem;
  font-weight: 800;
  cursor: pointer;
  transition: color 180ms ease, background-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.figma-demo-segment button:hover {
  color: #1e2a46;
}

.figma-demo-segment button.is-active {
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  color: #17233d;
  box-shadow: 0 12px 25px rgba(28, 62, 139, 0.12);
}

.figma-demo-plan-toggle button.is-active {
  color: #2157d8;
}

.figma-demo-view-toggle button.is-active {
  color: #16734b;
}

.figma-demo-preview {
  min-height: 168px;
  padding: 18px 18px 20px;
  border-radius: 20px;
  background: linear-gradient(180deg, #f8fbff 0%, #f2f6ff 100%);
  border: 1px solid #dfe7f5;
  color: #1f2b46;
  font-size: 1rem;
  line-height: 1.76;
}

.figma-demo-preview-empty {
  color: #8290aa;
}

.figma-token-label {
  display: inline;
}

.figma-token-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 19px;
  height: 19px;
  flex: 0 0 19px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1;
}

.figma-token-email {
  background: #ffe3ec;
  border-color: #ffbfd0;
  color: #ab2e57;
}

.figma-token-email .figma-token-icon {
  background: #ff6c9b;
  color: #ffffff;
}

.figma-token-project {
  background: #ffedb8;
  border-color: #ffd45c;
  color: #8c6100;
}

.figma-token-project .figma-token-icon {
  background: #ffbf1f;
  color: #ffffff;
}

.figma-token-phone {
  background: #ffe0d0;
  border-color: #ffbe98;
  color: #a45416;
}

.figma-token-phone .figma-token-icon {
  background: #ff8b4a;
  color: #ffffff;
}

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

.figma-check-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: #2f405f;
}

.figma-check-item span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.figma-check-item i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  border-radius: 999px;
  font-style: normal;
  font-size: 0.72rem;
  font-weight: 800;
}

.figma-check-item b {
  font-weight: 700;
}

.figma-check-item-email span {
  color: #b63e63;
}

.figma-check-item-email i {
  background: #ff6c9b;
  color: #ffffff;
}

.figma-check-item-phone span {
  color: #b15b18;
}

.figma-check-item-phone i {
  background: #ff8b4a;
  color: #ffffff;
}

.figma-check-item-project span {
  color: #9c6a00;
}

.figma-check-item-project i {
  background: #ffbf1f;
  color: #ffffff;
}

.figma-demo-status {
  display: grid;
  gap: 10px;
  margin-top: 18px;
  padding: 16px 18px;
  border-radius: 14px;
  background: #f8fbff;
  border: 1px solid #e3ebf7;
}

.figma-demo-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.figma-filter-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 14px;
  border: 1px solid #d7e1f1;
  border-radius: 999px;
  background: #ffffff;
  color: #5f6f8e;
  font: inherit;
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background-color 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.figma-filter-chip:hover {
  transform: translateY(-1px);
  border-color: #bbcdf1;
  box-shadow: 0 8px 18px rgba(47, 108, 246, 0.12);
}

.figma-filter-chip.is-active {
  background: #edf4ff;
  border-color: #cfe0ff;
  color: #2d66f6;
}

.figma-filter-chip:not(.is-active) {
  opacity: 0.55;
}

.figma-demo-status p {
  margin: 0;
  padding: 0;
  background: transparent;
  color: #60708e;
}

.figma-demo-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.figma-demo-badge-warn {
  background: #fff0c2;
  color: #8b6300;
}

.figma-demo-badge-safe {
  background: #daf7e7;
  color: #16734b;
}

.figma-demo-badge-blocked {
  background: #ffe1e8;
  color: #ab2e57;
}

.figma-demo-reset {
  min-width: 96px;
}

#prompt-demo.is-anonymized .figma-token-email,
#prompt-demo.is-anonymized .figma-token-phone,
#prompt-demo.is-anonymized .figma-token-project,
#message-demo.is-anonymized .figma-token-email,
#message-demo.is-anonymized .figma-token-phone,
#message-demo.is-anonymized .figma-token-project,
#file-demo.is-anonymized .figma-token-email,
#file-demo.is-anonymized .figma-token-phone,
#file-demo.is-anonymized .figma-token-project {
  background: #daf7e7;
  border-color: #b9ebd0;
  color: #16734b;
  animation: demoPulse 420ms ease;
}

#prompt-demo.is-anonymized .figma-token-icon,
#message-demo.is-anonymized .figma-token-icon,
#file-demo.is-anonymized .figma-token-icon {
  background: #21a46b;
  color: #ffffff;
}

#prompt-demo.is-anonymized .figma-check-item,
#message-demo.is-anonymized .figma-check-item,
#file-demo.is-anonymized .figma-check-item {
  opacity: 0.8;
}

#prompt-demo.is-anonymized .figma-check-item strong,
#message-demo.is-anonymized .figma-check-item strong,
#file-demo.is-anonymized .figma-check-item strong {
  color: #16734b;
}

#prompt-demo.is-blocked .figma-mock-body p,
#message-demo.is-blocked .figma-mock-body p,
#file-demo.is-blocked .figma-mock-body p,
#file-demo.is-blocked .figma-document-preview {
  background: #fff1f4;
  border: 1px solid #ffd1dc;
}

#prompt-demo.is-blocked .figma-token,
#message-demo.is-blocked .figma-token,
#file-demo.is-blocked .figma-token {
  background: #ffe3ec;
  border-color: #ffbfd0;
  color: #ab2e57;
}

#prompt-demo.is-blocked .figma-token-icon,
#message-demo.is-blocked .figma-token-icon,
#file-demo.is-blocked .figma-token-icon {
  background: #e54b78;
  color: #ffffff;
}

#prompt-demo.is-blocked .figma-mock-actions .btn-primary,
#message-demo.is-blocked .figma-mock-actions .btn-primary,
#file-demo.is-blocked .figma-mock-actions .btn-primary {
  opacity: 0.55;
  pointer-events: none;
}

.figma-token.is-disabled {
  opacity: 0.32;
  filter: grayscale(0.2);
}

.figma-check-item.is-disabled {
  opacity: 0.35;
}

.figma-document-preview {
  padding: 18px;
  border-radius: 16px;
  background: #f5f7fb;
  border: 1px solid transparent;
}

.figma-document-preview p {
  margin: 0;
  color: #233253;
  line-height: 1.85;
}

.figma-redacted {
  background: #151b32 !important;
  border-color: #151b32 !important;
  color: #ffffff !important;
  letter-spacing: 0.08em;
}

.figma-redacted .figma-token-icon {
  background: rgba(255, 255, 255, 0.16) !important;
}

@keyframes demoPulse {
  0% { transform: scale(0.96); box-shadow: 0 0 0 rgba(33, 164, 107, 0); }
  55% { transform: scale(1.03); box-shadow: 0 10px 24px rgba(33, 164, 107, 0.18); }
  100% { transform: scale(1); box-shadow: 0 0 0 rgba(33, 164, 107, 0); }
}

@keyframes demoScan {
  0% { width: 12%; transform: translateX(0); }
  50% { width: 76%; transform: translateX(18%); }
  100% { width: 18%; transform: translateX(0); }
}

.figma-check-list strong {
  color: #667796;
  font-size: 0.84rem;
}

.success {
  color: #10945a;
}

.figma-mock-field,
.figma-message-preview,
.figma-auth-card input,
.figma-waitlist-card input {
  width: 100%;
  min-height: 48px;
  border: 1px solid #e4eaf3;
  border-radius: 12px;
  background: #f6f8fb;
  color: #45536f;
}

.figma-mock-field,
.figma-message-preview {
  display: flex;
  align-items: center;
  padding: 0 14px;
  margin: 8px 0 14px;
}

.figma-message-preview {
  min-height: auto;
  align-items: flex-start;
  flex-direction: column;
  padding: 16px;
}

.figma-message-preview p,
.figma-message-preview small {
  margin: 0;
}

.figma-message-preview small {
  margin-top: 8px;
  color: #16985e;
}

.figma-design-track {
  display: inline-grid;
  gap: 4px;
  margin-top: 28px;
  padding: 18px 24px;
  border-radius: 20px;
  background: #f4f7fb;
  border: 1px solid #e5ecf6;
}

.figma-band-section {
  padding-top: 8px;
}

.figma-leak-band {
  padding: 54px 28px;
  border-radius: 0;
  background: #f4f8ff;
  text-align: center;
}

.figma-leak-band h2 {
  margin: 0 0 14px;
  color: #18233f;
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.figma-leak-band p {
  margin: 0;
  color: #6b7b99;
  font-size: 1.06rem;
}

.figma-waitlist-card {
  max-width: 770px;
  margin: 0 auto;
}

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

.figma-auth-layout {
  align-items: start;
}

.figma-auth-section {
  padding-top: 36px;
  padding-bottom: 80px;
}

.figma-auth-stack {
  display: grid;
  gap: 22px;
}

.figma-auth-card {
  padding: 30px;
}

.figma-auth-card-secondary {
  box-shadow: 0 14px 40px rgba(20, 33, 61, 0.06);
}

.figma-form-heading h2 {
  margin: 0 0 6px;
  font-size: 2rem;
  line-height: 1.1;
}

.figma-form-heading p {
  margin: 0 0 20px;
  color: #5a6a86;
}

.figma-auth-card label,
.figma-waitlist-card label {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
  color: #1a2946;
  font-weight: 700;
}

.figma-consent {
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 10px;
  margin-top: 4px;
  color: #60708c;
  font-size: 0.95rem;
  font-weight: 500;
}

.figma-consent input {
  width: 16px;
  min-height: 16px;
  margin-top: 3px;
}

.figma-form-note {
  margin: 16px 0 0;
  color: #7a88a3;
  text-align: center;
}

.figma-form-note a {
  color: #3d66ff;
  text-decoration: none;
  font-weight: 700;
}

.figma-auth-card input,
.figma-waitlist-card input {
  padding: 0 14px;
  font: inherit;
}

.figma-auth-copy {
  max-width: 520px;
}

.figma-check-column {
  display: grid;
  gap: 18px;
  margin: 28px 0;
}

.figma-check-column div {
  display: grid;
  gap: 2px;
  padding-left: 34px;
  position: relative;
}

.figma-check-column div::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 2px;
  color: #13a45e;
  font-weight: 800;
}

.figma-check-column strong {
  font-size: 1.12rem;
}

.figma-check-column span {
  color: #687896;
}

.figma-benefit-box {
  padding: 20px 22px;
  border-radius: 18px;
  background: #eef5ff;
  border: 1px solid #d6e4ff;
}

.figma-benefit-box ul {
  margin: 12px 0 0;
  padding-left: 18px;
  color: #3f5d99;
}

.figma-footer {
  padding: 56px 0;
  background: #1a233b;
}

.figma-footer .footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 28px;
}

.figma-footer .brand,
.figma-footer h4,
.figma-footer a {
  color: #ffffff;
}

.figma-footer p {
  color: #8ea1c8;
}

.figma-footer a {
  display: block;
  margin-top: 12px;
  text-decoration: none;
}

.message.message-dark {
  margin: 10px 0 0;
  color: #51627f;
}

@media (max-width: 980px) {
  .figma-public .site-nav {
    position: absolute;
    right: 24px;
    top: calc(100% + 10px);
    display: none;
    width: min(320px, calc(100vw - 48px));
    padding: 18px;
    border-radius: 20px;
    background: #ffffff;
    border: 1px solid #e6ecf4;
    box-shadow: 0 24px 50px rgba(20, 33, 61, 0.16);
    flex-direction: column;
    align-items: stretch;
  }

  .figma-public .nav-dropdown-menu {
    position: static;
    min-width: 0;
    margin-top: 8px;
    padding: 8px;
    border-radius: 16px;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
    background: #f8fbff;
  }

  .figma-public .nav-dropdown.is-open .nav-dropdown-menu {
    display: grid;
  }

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

  .figma-public .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 16px;
    border: 1px solid #d9e2ef;
    border-radius: 12px;
    background: #ffffff;
    color: #182440;
    font-weight: 800;
  }

  .figma-split-layout,
  .figma-section-grid,
  .figma-auth-layout,
  .figma-product-grid,
  .figma-feature-grid,
  .figma-pricing-grid,
  .figma-pricing-showcase,
  .figma-form-two,
  .figma-footer .footer-grid,
  .figma-check-grid {
    grid-template-columns: 1fr;
  }

  .figma-title,
  .figma-title-home,
  .figma-heading {
    letter-spacing: -0.04em;
  }
}

@media (min-width: 981px) {
  .figma-public .nav-toggle {
    display: none;
  }
}

@media (max-width: 640px) {
  .figma-public .container {
    width: min(100vw - 32px, 1280px);
  }

  .figma-hero,
  .figma-section {
    padding: 52px 0;
  }

  .figma-auth-card,
  .figma-note-card,
  .figma-product-summary,
  .figma-mock-card,
  .figma-price-box,
  .figma-waitlist-card {
    padding: 22px;
  }

  .figma-public .btn,
  .figma-public .nav-cta {
    width: 100%;
  }
}

.figma-enterprise-hero {
  background: #1b2540;
}

.figma-pill-enterprise {
  width: fit-content;
  margin: 0 auto 18px;
  background: rgba(255, 255, 255, 0.09);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.12);
}

.figma-enterprise-cap-grid,
.figma-enterprise-columns,
.figma-enterprise-visibility-grid,
.figma-enterprise-role-grid {
  display: grid;
  gap: 22px;
}

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

.figma-enterprise-cap-card,
.figma-enterprise-check-card,
.figma-enterprise-visibility-card,
.figma-enterprise-role-card {
  padding: 26px;
  border-radius: 22px;
  background: #f8fbff;
  border: 1px solid #e2eaf6;
}

.figma-enterprise-cap-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 16px;
  border-radius: 12px;
  background: #dfeaff;
  color: #2d66f6;
  font-weight: 900;
}

.figma-enterprise-cap-card h3,
.figma-enterprise-check-card h3,
.figma-enterprise-visibility-card h3,
.figma-enterprise-role-card h3 {
  margin: 0 0 12px;
  color: #152241;
}

.figma-enterprise-cap-card p,
.figma-enterprise-visibility-card p,
.figma-enterprise-role-card p {
  margin: 0;
  color: #566784;
}

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

.figma-enterprise-check-card {
  background: #ffffff;
}

.figma-enterprise-check-list,
.figma-enterprise-role-card ul {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.figma-enterprise-check-list li,
.figma-enterprise-role-card li {
  position: relative;
  padding-left: 32px;
  color: #1f2e4d;
}

.figma-enterprise-check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #e7faef;
  color: #0ea95a;
  font-weight: 900;
}

.figma-enterprise-visibility-grid,
.figma-enterprise-role-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.figma-enterprise-visibility-card {
  background: #ffffff;
}

.figma-enterprise-visibility-card span {
  display: block;
  margin-top: 18px;
  color: #5f75f1;
}

.figma-enterprise-visibility-card.is-featured {
  background: #eef5ff;
  border-color: #b9d5ff;
}

.figma-enterprise-role-card {
  background: #ffffff;
}

.figma-enterprise-role-card p {
  margin-bottom: 18px;
}

.figma-enterprise-role-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #2d66f6;
}

.figma-enterprise-price-box {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  padding: 28px 30px;
  border-radius: 22px;
  background: #f8fbff;
  border: 1px solid #e2eaf6;
  margin-bottom: 28px;
}

.figma-enterprise-price-box span,
.figma-enterprise-price-box small {
  display: block;
  color: #60708f;
}

.figma-enterprise-price-box strong {
  display: block;
  margin: 10px 0 6px;
  color: #152241;
  font-size: 2rem;
  font-weight: 800;
}

@media (max-width: 980px) {
  .figma-enterprise-cap-grid,
  .figma-enterprise-visibility-grid,
  .figma-enterprise-role-grid,
  .figma-enterprise-price-box {
    grid-template-columns: 1fr;
  }

  .figma-enterprise-columns {
    grid-template-columns: 1fr;
  }
}

.figma-onprem-hero {
  background: linear-gradient(180deg, #eef3ff 0%, #ffffff 100%);
}

.figma-onprem-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 560px);
  gap: 48px;
  align-items: center;
}

.figma-pill-onprem {
  width: fit-content;
  background: #e7ebff;
  color: #5d56f3;
}

.figma-title-onprem,
.figma-text-onprem {
  max-width: 640px;
}

.figma-onprem-arch-card {
  padding: 30px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid #dde7f8;
  box-shadow: 0 22px 54px rgba(20, 33, 61, 0.12);
}

.figma-onprem-arch-card h3 {
  margin: 0 0 20px;
  padding-bottom: 18px;
  border-bottom: 1px solid #e6edf8;
  color: #152241;
  text-align: center;
  font-size: 1.85rem;
}

.figma-onprem-node {
  display: grid;
  gap: 6px;
  padding: 16px 18px;
  border-radius: 14px;
  border: 1px solid transparent;
}

.figma-onprem-node strong {
  color: #152241;
}

.figma-onprem-node span {
  color: #6b7b99;
  font-size: 0.92rem;
}

.figma-onprem-node-blue {
  background: #edf4ff;
  border-color: #cfe0ff;
}

.figma-onprem-node-indigo {
  background: #eef0ff;
  border-color: #d8ddff;
}

.figma-onprem-node-green {
  background: #edfdf2;
  border-color: #bdefc8;
}

.figma-onprem-node-violet {
  background: #f7eeff;
  border-color: #e0c6ff;
}

.figma-onprem-arrow {
  padding: 10px 0;
  color: #7f8fb0;
  text-align: center;
  font-size: 1.3rem;
}

.figma-onprem-node-row,
.figma-onprem-qa-grid,
.figma-onprem-cap-grid,
.figma-onprem-product-grid,
.figma-onprem-deploy-grid {
  display: grid;
  gap: 22px;
}

.figma-onprem-node-row,
.figma-onprem-qa-grid,
.figma-onprem-deploy-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.figma-onprem-cap-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.figma-onprem-qa-card,
.figma-onprem-product,
.figma-onprem-deploy-card {
  padding: 26px;
  border-radius: 20px;
  background: #ffffff;
  border: 1px solid #dce5f3;
  box-shadow: 0 12px 34px rgba(20, 33, 61, 0.04);
}

.figma-onprem-qa-card p {
  margin: 0 0 14px;
  color: #5d56f3;
}

.figma-onprem-qa-card h3 {
  margin: 0;
  color: #152241;
  line-height: 1.45;
}

.figma-onprem-cap-grid div {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 18px;
  border-radius: 16px;
  background: #f7faff;
  border: 1px solid #edf2fb;
  color: #1c2a46;
}

.figma-onprem-cap-grid i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: #f0ebff;
  color: #5d56f3;
  font-style: normal;
  font-weight: 900;
}

.figma-onprem-schema {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  padding: 28px;
  border-radius: 24px;
  background: #ffffff;
  border: 1px solid #dce5f3;
}

.figma-onprem-schema div {
  padding: 18px 16px;
  border-radius: 14px;
  background: #f8fbff;
  color: #21304f;
  border: 1px solid #edf2fb;
}

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

.figma-onprem-product {
  text-align: center;
}

.figma-onprem-product.prompt {
  background: #eff5ff;
  border-color: #bfd5ff;
}

.figma-onprem-product.messaging {
  background: #f7efff;
  border-color: #e1c4ff;
}

.figma-onprem-product.file {
  background: #ecfbf0;
  border-color: #bdeec9;
}

.figma-onprem-product-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin-bottom: 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  color: #1f5ceb;
  font-size: 1.4rem;
}

.figma-onprem-product.messaging .figma-onprem-product-icon {
  color: #922bf2;
}

.figma-onprem-product.file .figma-onprem-product-icon {
  color: #11a24d;
}

.figma-onprem-product h3 {
  margin: 0 0 10px;
  color: #152241;
}

.figma-onprem-product p {
  margin: 0;
  color: #53637f;
}

.figma-onprem-deploy {
  background: #403796;
}

.figma-onprem-deploy-grid {
  margin-bottom: 28px;
}

.figma-onprem-deploy-card {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: none;
}

.figma-onprem-deploy-card h3,
.figma-onprem-deploy-card p,
.figma-onprem-deploy-card span {
  color: #ffffff;
}

.figma-onprem-deploy-card span {
  display: block;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 980px) {
  .figma-onprem-split,
  .figma-onprem-schema,
  .figma-onprem-product-grid {
    grid-template-columns: 1fr;
  }

  .figma-onprem-node-row,
  .figma-onprem-qa-grid,
  .figma-onprem-cap-grid,
  .figma-onprem-deploy-grid {
    grid-template-columns: 1fr;
  }
}

.figma-demo-shell {
  gap: 16px;
  padding: 24px;
  border-radius: 24px;
}

.figma-demo-topbar {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.figma-demo-topbar strong {
  display: block;
  margin-bottom: 4px;
  color: #18233f;
}

.figma-demo-topbar p {
  margin: 0;
  color: #6d7d98;
  font-size: 0.9rem;
}

.figma-demo-count-chip {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: #eef4ff;
  color: #2459d7;
  font-size: 0.82rem;
  font-weight: 800;
}

.figma-demo-workbench {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  align-items: start;
}

.figma-demo-column {
  display: grid;
  gap: 12px;
}

.figma-demo-column-side {
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: 0;
}

.figma-demo-inline-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.figma-demo-scan {
  gap: 12px;
  padding: 16px 18px;
  border-radius: 20px;
}

.figma-demo-toolbar {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
}

.figma-demo-segment-group {
  gap: 6px;
}

.figma-demo-segment-group span {
  font-size: 0.72rem;
}

.figma-demo-segment {
  padding: 4px;
  border-radius: 14px;
}

.figma-demo-segment button {
  min-height: 36px;
  padding: 0 14px;
  border-radius: 10px;
  font-size: 0.84rem;
}

.figma-demo-mode-copy {
  margin: 0;
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: #64738e;
  font-size: 0.84rem;
  line-height: 1.5;
}

.figma-demo-preview {
  min-height: 132px;
  padding: 16px 16px 18px;
  border-radius: 18px;
  background: #f6f9ff;
  font-size: 0.95rem;
  line-height: 1.68;
}

.figma-check-list {
  gap: 10px;
}

.figma-check-list li {
  padding: 10px 12px;
  border-radius: 14px;
  background: #ffffff;
  border: 1px solid #e7edf8;
}

.figma-demo-status {
  gap: 8px;
  padding: 14px 16px;
  border-radius: 16px;
}

.figma-demo-controls {
  gap: 8px;
}

.figma-filter-chip {
  min-height: 32px;
  padding: 0 12px;
  font-size: 0.82rem;
}

.figma-demo-badge {
  min-height: 28px;
  padding: 0 10px;
  font-size: 0.76rem;
}

.figma-demo-reset {
  min-width: 84px;
}

@media (max-width: 980px) {
  .figma-demo-workbench {
    grid-template-columns: 1fr;
  }
}

.figma-demo-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.figma-demo-input {
  width: 100%;
  min-height: 46px;
  margin-top: 8px;
  padding: 0 14px;
  border: 1px solid #d9e5fb;
  border-radius: 14px;
  background: #ffffff;
  color: #1e2a46;
  font: inherit;
}

.figma-demo-input:focus-visible {
  outline: none;
  border-color: #7db0ff;
  box-shadow: 0 0 0 4px rgba(47, 108, 246, 0.12);
}

.figma-demo-preview-structured {
  display: grid;
  gap: 12px;
}

.figma-preview-line {
  display: grid;
  gap: 6px;
  padding: 12px 12px 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid #e6edf8;
}

.figma-preview-line small {
  color: #72829d;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.figma-demo-preview-doc {
  min-height: 188px;
}

.figma-demo-textarea-doc {
  min-height: 192px;
}

.figma-demo-source-block {
  display: none;
}

#prompt-demo {
  gap: 14px;
  padding: 24px 24px 26px;
  border-radius: 22px;
}

#prompt-demo .figma-demo-topbar {
  align-items: center;
  padding-bottom: 12px;
  border-bottom: 1px solid #e7edf8;
}

#prompt-demo .figma-demo-topbar p {
  display: none;
}

#prompt-demo .figma-demo-count-chip {
  min-height: 30px;
  background: #fff1e7;
  color: #ef7f2c;
}

#prompt-demo .figma-demo-toolbar-tight {
  justify-content: flex-start;
  gap: 18px;
}

#prompt-demo .figma-demo-segment-group span {
  display: none;
}

#prompt-demo .figma-demo-preview {
  min-height: 88px;
  padding: 18px 16px;
  border-radius: 16px;
  background: #f5f8fd;
  border: 0;
}

#prompt-demo .figma-demo-controls-prompt {
  justify-content: flex-start;
}

#prompt-demo .figma-check-list-prompt {
  gap: 6px;
}

#prompt-demo .figma-check-list-prompt li {
  padding: 6px 0;
  background: transparent;
  border: 0;
  border-radius: 0;
}

#prompt-demo .figma-demo-inline-actions-prompt {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr) auto auto;
  gap: 8px;
}

#prompt-demo .figma-demo-inline-actions-prompt .btn {
  min-height: 44px;
}

#prompt-demo .figma-demo-status-compact {
  display: none;
}

@media (max-width: 980px) {
  #prompt-demo .figma-demo-inline-actions-prompt {
    grid-template-columns: 1fr 1fr;
  }
}

.figma-onprem-hero {
  background: linear-gradient(180deg, #eef3ff 0%, #ffffff 88%);
}

.figma-onprem-split {
  gap: 56px;
  align-items: start;
}

.figma-onprem-copy {
  padding-top: 8px;
}

.figma-onprem-arch-card {
  margin-top: 6px;
}

.figma-onprem-qa-grid {
  max-width: 980px;
}

.figma-onprem-cap-grid {
  max-width: 920px;
}

.figma-onprem-product-grid {
  max-width: 1280px;
}

@media (max-width: 980px) {
  .figma-demo-form-grid {
    grid-template-columns: 1fr;
  }
}

.figma-onprem-hero {
  padding-top: 58px;
}

.figma-pill-onprem {
  padding: 0 18px;
  min-height: 38px;
  border-color: #d7defe;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

.figma-title-onprem {
  max-width: 520px;
  font-size: clamp(3.35rem, 6vw, 5rem);
  line-height: 0.95;
}

.figma-text-onprem {
  max-width: 600px;
  font-size: 1rem;
  line-height: 1.5;
  color: #566784;
}

.figma-onprem-arch-card {
  padding: 26px 30px 28px;
  border-radius: 20px;
  box-shadow: 0 20px 44px rgba(28, 41, 73, 0.1);
}

.figma-onprem-arch-card h3 {
  margin-bottom: 16px;
  padding-bottom: 16px;
  font-size: 1.15rem;
  font-weight: 800;
}

.figma-onprem-node {
  gap: 5px;
  padding: 14px 16px;
  border-radius: 12px;
}

.figma-onprem-node strong {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.98rem;
}

.figma-onprem-node span {
  font-size: 0.85rem;
}

.figma-onprem-mini-icon {
  position: relative;
  width: 10px;
  height: 12px;
  border: 1.8px solid currentColor;
  border-radius: 4px 4px 6px 6px;
  display: inline-block;
  clip-path: polygon(50% 0%, 100% 15%, 100% 52%, 50% 100%, 0% 52%, 0% 15%);
}

.figma-onprem-mini-icon-blue {
  color: #2d66f6;
}

.figma-onprem-mini-icon-indigo {
  color: #6d59f6;
}

.figma-onprem-mini-icon-green {
  color: #19a857;
}

.figma-onprem-mini-icon-violet {
  color: #9837ff;
}

.figma-onprem-arrow {
  padding: 8px 0;
  font-size: 1rem;
}

.figma-onprem-qa-grid {
  gap: 16px 30px;
  max-width: 910px;
  margin: 0 auto;
}

.figma-onprem-qa-card {
  padding: 24px 24px 22px;
  border-radius: 18px;
  box-shadow: none;
}

.figma-onprem-qa-card p {
  margin-bottom: 12px;
  font-size: 0.88rem;
  font-weight: 500;
}

.figma-onprem-qa-card h3 {
  font-size: 0.95rem;
  font-weight: 500;
}

.figma-onprem-cap-grid {
  max-width: 900px;
  margin: 0 auto;
}

.figma-onprem-cap-grid div {
  min-height: 56px;
  padding: 0 18px;
  border-radius: 14px;
  background: #f7f9fd;
}

.figma-onprem-cap-grid i {
  width: 22px;
  height: 22px;
  background: transparent;
  color: #574cff;
  font-size: 1rem;
}

.figma-onprem-schema {
  max-width: 1030px;
  margin: 0 auto;
  padding: 30px;
  border-radius: 22px;
  box-shadow: none;
}

.figma-onprem-schema div {
  min-height: 60px;
  display: flex;
  align-items: center;
  padding: 16px 14px;
  border-radius: 12px;
  font-size: 0.95rem;
}

.figma-onprem-product-grid {
  gap: 32px;
}

.figma-onprem-product {
  padding: 34px 24px;
  border-radius: 18px;
  box-shadow: none;
}

.figma-onprem-product-icon {
  position: relative;
  width: 42px;
  height: 50px;
  margin: 0 auto 18px;
  background: transparent;
}

.figma-onprem-product-icon::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 4px solid currentColor;
  border-radius: 14px 14px 18px 18px;
  clip-path: polygon(50% 0%, 100% 14%, 100% 54%, 50% 100%, 0% 54%, 0% 14%);
}

.figma-onprem-product.prompt .figma-onprem-product-icon {
  color: #2157e6;
}

.figma-onprem-product.messaging .figma-onprem-product-icon {
  color: #9a2df4;
}

.figma-onprem-product.file .figma-onprem-product-icon {
  color: #0ea84f;
}

.figma-onprem-product h3 {
  font-size: 1.1rem;
}

.figma-onprem-product p {
  font-size: 0.96rem;
}

.figma-onprem-deploy {
  background: #403796;
  padding-top: 70px;
  padding-bottom: 70px;
}

.figma-onprem-deploy-card {
  padding: 24px 26px;
  border-radius: 18px;
}

.figma-onprem-deploy-card h3 {
  margin: 0 0 12px;
  font-size: 1rem;
}

.figma-onprem-deploy-card p {
  margin: 0;
  font-size: 0.96rem;
}

.figma-onprem-deploy-card span {
  margin-top: 20px;
  font-size: 0.92rem;
}

@media (max-width: 980px) {
  .figma-title-onprem {
    max-width: none;
  }

  .figma-onprem-qa-grid,
  .figma-onprem-cap-grid,
  .figma-onprem-schema {
    max-width: none;
  }
}
