:root {
  color-scheme: dark;
  --bg: #06120e;
  --bg-2: #0c2018;
  --panel: rgba(246, 239, 221, 0.08);
  --panel-strong: rgba(246, 239, 221, 0.14);
  --cream: #f6efdd;
  --cream-soft: #d8cfb5;
  --muted: #9fae9c;
  --green: #123d2c;
  --green-2: #1f6f4a;
  --mint: #91e6ad;
  --gold: #f7c85f;
  --orange: #f08b4f;
  --line: rgba(246, 239, 221, 0.18);
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.4);
  --radius: 28px;
  --radius-sm: 16px;
  --font: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", sans-serif;
  --mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
  margin: 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 10%, rgba(31, 111, 74, 0.5), transparent 28rem),
    radial-gradient(circle at 90% 20%, rgba(247, 200, 95, 0.16), transparent 24rem),
    radial-gradient(circle at 50% 120%, rgba(145, 230, 173, 0.12), transparent 28rem),
    linear-gradient(140deg, #04100c, var(--bg) 45%, #091b13);
  color: var(--cream);
  font-family: var(--font);
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -3;
  pointer-events: none;
  content: "";
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(246, 239, 221, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(246, 239, 221, 0.06) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(circle at 50% 50%, black, transparent 78%);
}

.ambient {
  position: fixed;
  z-index: -2;
  filter: blur(22px);
  border-radius: 999px;
  opacity: 0.55;
  pointer-events: none;
}

.ambient-one {
  width: 24rem;
  height: 24rem;
  left: -8rem;
  bottom: 6rem;
  background: rgba(31, 111, 74, 0.34);
}

.ambient-two {
  width: 18rem;
  height: 18rem;
  right: -4rem;
  top: 7rem;
  background: rgba(247, 200, 95, 0.14);
}

.topbar,
.bottombar {
  position: fixed;
  left: clamp(18px, 3vw, 44px);
  right: clamp(18px, 3vw, 44px);
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--cream-soft);
}

.topbar {
  top: 22px;
}

.bottombar {
  bottom: 22px;
  gap: 18px;
}

.brand {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  color: var(--cream);
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: linear-gradient(145deg, rgba(246, 239, 221, 0.16), rgba(145, 230, 173, 0.08));
  color: var(--gold);
  font-weight: 900;
  letter-spacing: -0.08em;
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.75rem;
}

.topbar-actions {
  display: flex;
  gap: 10px;
  align-items: center;
}

.slide-count,
.ghost-button {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(5, 18, 14, 0.56);
  color: var(--cream-soft);
  backdrop-filter: blur(18px);
}

.slide-count {
  padding: 10px 14px;
  font-size: 0.82rem;
}

.ghost-button {
  padding: 10px 14px;
  cursor: pointer;
  font: inherit;
  transition: 180ms ease;
}

.ghost-button:hover,
.ghost-button[aria-pressed="true"] {
  border-color: rgba(247, 200, 95, 0.45);
  color: var(--cream);
  transform: translateY(-1px);
}

.deck {
  position: relative;
  width: 100vw;
  height: 100vh;
}

.slide {
  position: absolute;
  inset: 0;
  display: none;
  width: 100%;
  height: 100%;
  padding: clamp(84px, 9vh, 112px) clamp(32px, 6vw, 92px) clamp(76px, 8vh, 100px);
  overflow: hidden;
}

.slide.active {
  display: block;
  animation: slideIn 420ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.99);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.slide::after {
  position: absolute;
  right: clamp(24px, 5vw, 72px);
  bottom: clamp(72px, 9vh, 110px);
  z-index: -1;
  width: min(42vw, 560px);
  height: min(42vw, 560px);
  content: "";
  border: 1px solid rgba(246, 239, 221, 0.08);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(145, 230, 173, 0.08), transparent 62%);
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--gold);
  font-size: clamp(0.78rem, 1.2vw, 0.95rem);
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 9ch;
  margin-bottom: 18px;
  font-size: clamp(5.8rem, 15vw, 13.5rem);
  line-height: 0.78;
  letter-spacing: -0.095em;
}

h2 {
  max-width: 1040px;
  margin-bottom: 34px;
  font-size: clamp(2.55rem, 5.5vw, 6.1rem);
  line-height: 0.92;
  letter-spacing: -0.072em;
}

h3 {
  margin-bottom: 10px;
  color: var(--cream);
  font-size: clamp(1.02rem, 1.5vw, 1.35rem);
  line-height: 1.06;
  letter-spacing: -0.035em;
}

.lead {
  max-width: 760px;
  color: var(--cream-soft);
  font-size: clamp(1.08rem, 2vw, 1.55rem);
  line-height: 1.42;
}

.hero-subtitle {
  margin-bottom: 22px;
  color: var(--mint);
  font-size: clamp(1.5rem, 3.3vw, 3rem);
  line-height: 1;
  letter-spacing: -0.055em;
}

.slide-grid,
.split,
.three-column,
.proof-grid,
.feature-showcase,
.chat-layout,
.pricing-grid,
.moat-grid,
.ask-grid {
  display: grid;
  gap: clamp(18px, 3vw, 36px);
}

.hero-grid {
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.68fr);
  align-items: center;
  height: 100%;
}

.hero-actions,
.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-actions span,
.pill-row span {
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(246, 239, 221, 0.07);
  color: var(--cream-soft);
  font-size: 0.95rem;
}

.device-cluster {
  position: relative;
  min-height: 520px;
}

.quick-intake-card {
  align-self: center;
  padding: clamp(18px, 2.6vw, 30px);
  border: 1px solid rgba(145, 230, 173, 0.28);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 12% 12%, rgba(145, 230, 173, 0.14), transparent 34%),
    linear-gradient(145deg, rgba(246, 239, 221, 0.13), rgba(246, 239, 221, 0.05)),
    rgba(5, 18, 14, 0.7);
  box-shadow: var(--shadow);
  backdrop-filter: blur(22px);
}

.quick-intake-card h2 {
  max-width: 12ch;
  margin-bottom: 12px;
  font-size: clamp(2rem, 4.3vw, 4.4rem);
  line-height: 0.92;
  letter-spacing: -0.07em;
}

.quick-intake-card p:not(.eyebrow):not(.quick-intake-status) {
  margin-bottom: 18px;
  color: var(--cream-soft);
  line-height: 1.45;
}

.quick-intake-form {
  display: grid;
  gap: 12px;
}

.quick-intake-form label {
  display: grid;
  gap: 7px;
  color: var(--cream-soft);
  font-size: 0.88rem;
  font-weight: 800;
}

.quick-intake-form input,
.quick-intake-form select,
.quick-intake-form textarea {
  width: 100%;
  border: 1px solid rgba(246, 239, 221, 0.18);
  border-radius: 14px;
  background: rgba(3, 14, 10, 0.72);
  color: var(--cream);
  font: inherit;
  outline: none;
  padding: 11px 12px;
}

.quick-intake-form input:focus,
.quick-intake-form select:focus,
.quick-intake-form textarea:focus {
  border-color: rgba(247, 200, 95, 0.65);
  box-shadow: 0 0 0 4px rgba(247, 200, 95, 0.08);
}

.quick-form-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(150px, 0.72fr);
  gap: 10px;
}

.quick-form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-top: 2px;
}

.quick-form-actions .primary-button,
.quick-form-actions .ghost-button {
  min-height: 42px;
}

.quick-intake-status {
  min-height: 1.2em;
  margin: 0;
  color: var(--mint);
  font-size: 0.86rem;
  font-weight: 800;
}

.phone,
.feature-phone,
.dashboard-card,
.briefing-card,
.identity-card,
.chat-window,
.fit-card,
.card,
.price-card,
.proof-grid article,
.moat-grid article,
.ask-grid article,
.ops-step,
.revenue-wheel div {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(246, 239, 221, 0.12), rgba(246, 239, 221, 0.05)),
    rgba(5, 18, 14, 0.54);
  box-shadow: var(--shadow);
  backdrop-filter: blur(22px);
}

.phone {
  position: absolute;
  right: 40px;
  top: 2px;
  width: 250px;
  height: 500px;
  padding: 22px;
  border-radius: 38px;
  transform: rotate(4deg);
}

.phone-left {
  right: 54px;
}

.phone-header {
  width: 74px;
  height: 8px;
  margin: 0 auto 30px;
  border-radius: 999px;
  background: rgba(246, 239, 221, 0.22);
}

.app-card {
  padding: 18px;
  margin-bottom: 14px;
  border-radius: 18px;
  font-weight: 800;
}

.app-card.green {
  background: linear-gradient(135deg, var(--green-2), #2a9b66);
  color: #edfff4;
}

.app-card.cream {
  background: var(--cream);
  color: #153628;
}

.app-card.outline {
  border: 1px solid var(--line);
  color: var(--cream-soft);
}

.dashboard-card {
  position: absolute;
  right: 220px;
  bottom: 32px;
  width: min(390px, 80vw);
  padding: 24px;
}

.dashboard-topline,
.briefing-header,
.metric-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.dashboard-topline {
  margin-bottom: 22px;
  color: var(--gold);
  font-weight: 800;
}

.metric-row {
  padding: 12px 0;
  border-top: 1px solid var(--line);
  color: var(--cream-soft);
}

.metric-row b {
  color: var(--mint);
}

.sparkline {
  height: 70px;
  margin-top: 16px;
  border-radius: 18px;
  background:
    linear-gradient(120deg, transparent 0 12%, rgba(145, 230, 173, 0.22) 12% 18%, transparent 18% 31%, rgba(247, 200, 95, 0.25) 31% 36%, transparent 36% 52%, rgba(145, 230, 173, 0.28) 52% 60%, transparent 60%),
    linear-gradient(to top, rgba(145, 230, 173, 0.18), transparent),
    rgba(246, 239, 221, 0.06);
}

.split {
  grid-template-columns: minmax(0, 0.92fr) minmax(380px, 1fr);
  align-items: start;
}

.split.reverse {
  grid-template-columns: minmax(380px, 0.72fr) minmax(0, 1fr);
}

.pain-list,
.check-list,
.two-column-list ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.pain-list li,
.check-list li,
.two-column-list li {
  position: relative;
  padding: 12px 0 12px 34px;
  border-bottom: 1px solid rgba(246, 239, 221, 0.1);
  color: var(--cream-soft);
  font-size: clamp(1rem, 1.45vw, 1.25rem);
}

.pain-list li::before,
.check-list li::before,
.two-column-list li::before {
  position: absolute;
  left: 0;
  color: var(--gold);
  content: "✦";
}

.check-list li::before,
.two-column-list li::before {
  color: var(--mint);
  content: "✓";
}

.messy-stack,
.merchant-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-content: start;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(246, 239, 221, 0.06);
}

.messy-stack span,
.merchant-grid span {
  padding: 16px 18px;
  border: 1px solid rgba(246, 239, 221, 0.18);
  border-radius: 18px;
  background: rgba(5, 18, 14, 0.5);
  color: var(--cream);
  font-weight: 850;
}

.three-column,
.pricing-grid,
.moat-grid,
.ask-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.three-column.compact {
  margin-top: 30px;
}

.card,
.proof-grid article,
.moat-grid article,
.ask-grid article,
.price-card {
  padding: clamp(20px, 2.5vw, 32px);
}

.card p,
.proof-grid p,
.moat-grid p,
.ask-grid p,
.price-card p,
.fit-card p,
.ops-step small,
.revenue-wheel span,
.ai-capabilities span {
  color: var(--cream-soft);
  line-height: 1.45;
}

.icon {
  display: inline-grid;
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  place-items: center;
  border-radius: 16px;
  background: rgba(247, 200, 95, 0.13);
  font-size: 1.35rem;
}

.statement {
  max-width: 960px;
  margin: 34px 0 0;
  color: var(--mint);
  font-size: clamp(1.25rem, 2.2vw, 2rem);
  font-weight: 850;
  line-height: 1.18;
  letter-spacing: -0.045em;
}

.statement.small {
  font-size: clamp(1.05rem, 1.7vw, 1.38rem);
}

.layered-system {
  display: grid;
  gap: 16px;
  max-width: 1080px;
}

.layer {
  display: grid;
  grid-template-columns: minmax(190px, 0.28fr) 1fr;
  gap: 20px;
  align-items: center;
  padding: 24px 28px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(246, 239, 221, 0.07);
}

.layer strong {
  color: var(--cream);
  font-size: clamp(1.12rem, 1.7vw, 1.45rem);
}

.layer span {
  color: var(--cream-soft);
}

.layer-customer { border-color: rgba(145, 230, 173, 0.32); }
.layer-ops { border-color: rgba(247, 200, 95, 0.3); }
.layer-intel { border-color: rgba(240, 139, 79, 0.3); }
.layer-open { border-color: rgba(246, 239, 221, 0.22); }

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

.proof-grid article {
  min-height: 180px;
}

.feature-showcase {
  grid-template-columns: minmax(280px, 0.42fr) minmax(0, 1fr);
  align-items: center;
}

.feature-phone {
  min-height: 520px;
  padding: 30px;
  border-radius: 42px;
}

.feature-phone h3 {
  font-size: 2rem;
}

.tab-row {
  display: flex;
  gap: 8px;
  margin-bottom: 28px;
}

.tab-row span {
  flex: 1;
  padding: 9px;
  border-radius: 999px;
  background: rgba(246, 239, 221, 0.08);
  color: var(--cream-soft);
  text-align: center;
  font-size: 0.78rem;
}

.two-column-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.architecture-row {
  display: grid;
  grid-template-columns: 1.2fr auto 1.2fr auto 1fr auto 1fr;
  gap: 12px;
  align-items: center;
  margin-bottom: 18px;
}

.node {
  min-height: 126px;
  display: grid;
  place-items: center;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(246, 239, 221, 0.07);
  color: var(--cream);
  font-weight: 900;
  text-align: center;
  line-height: 1.1;
}

.node small {
  color: var(--cream-soft);
  font-weight: 650;
}

.node.accent {
  border-color: rgba(247, 200, 95, 0.55);
  background: linear-gradient(145deg, rgba(247, 200, 95, 0.16), rgba(246, 239, 221, 0.06));
}

.arrow {
  color: var(--gold);
  font-size: 2rem;
  font-weight: 900;
}

.footnote {
  margin-top: 22px;
  padding: 16px 18px;
  border: 1px solid rgba(247, 200, 95, 0.22);
  border-radius: 18px;
  background: rgba(247, 200, 95, 0.07);
  color: var(--cream-soft);
}

code {
  font-family: var(--mono);
  color: var(--mint);
}

.identity-card {
  padding: 34px;
}

.avatar {
  display: inline-grid;
  width: 78px;
  height: 78px;
  margin-bottom: 28px;
  place-items: center;
  border-radius: 24px;
  background: linear-gradient(145deg, var(--green-2), var(--green));
  color: var(--cream);
  font-family: var(--mono);
  font-weight: 900;
}

.chat-layout {
  grid-template-columns: minmax(380px, 0.82fr) minmax(0, 1fr);
  align-items: stretch;
}

.chat-window {
  padding: 24px;
}

.bubble {
  max-width: 88%;
  padding: 14px 16px;
  margin: 12px 0;
  border-radius: 18px;
  line-height: 1.35;
}

.bubble.user {
  margin-left: auto;
  background: var(--cream);
  color: #143527;
  font-weight: 750;
}

.bubble.ai {
  background: rgba(145, 230, 173, 0.12);
  color: var(--cream-soft);
}

.ai-capabilities {
  display: grid;
  gap: 14px;
}

.ai-capabilities article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(246, 239, 221, 0.06);
}

.ai-capabilities strong,
.ai-capabilities span {
  display: block;
}

.ai-capabilities strong {
  margin-bottom: 8px;
  color: var(--gold);
}

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

.ops-step {
  padding: 26px;
}

.ops-step span {
  display: inline-grid;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  place-items: center;
  border-radius: 50%;
  background: var(--gold);
  color: #143527;
  font-weight: 950;
}

.ops-step strong,
.ops-step small {
  display: block;
}

.ops-step strong {
  margin-bottom: 8px;
  font-size: 1.25rem;
}

.lower {
  margin-top: 26px;
}

.briefing-card {
  max-width: 1040px;
  padding: 30px;
}

.briefing-header {
  margin-bottom: 22px;
}

.briefing-header span {
  color: var(--gold);
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

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

.briefing-grid article {
  padding: 20px;
  border-radius: 18px;
  background: rgba(246, 239, 221, 0.07);
}

.briefing-grid small,
.briefing-grid b,
.briefing-grid em {
  display: block;
}

.briefing-grid small {
  color: var(--muted);
}

.briefing-grid b {
  margin: 8px 0 4px;
  color: var(--cream);
  font-size: 1.9rem;
  letter-spacing: -0.05em;
}

.briefing-grid em {
  color: var(--mint);
  font-style: normal;
}

.pill-row {
  max-width: 1050px;
  margin-top: 28px;
}

.stack-diagram {
  display: grid;
  gap: 12px;
}

.stack-row {
  display: grid;
  grid-template-columns: 140px repeat(4, minmax(0, 1fr));
  gap: 10px;
  align-items: center;
}

.stack-row span,
.stack-row b {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
}

.stack-row span {
  color: var(--gold);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.76rem;
}

.stack-row b {
  min-height: 56px;
  display: grid;
  place-items: center;
  background: rgba(246, 239, 221, 0.06);
  color: var(--cream-soft);
  text-align: center;
  font-size: 0.95rem;
}

.price-card {
  position: relative;
  min-height: 290px;
}

.price-card.highlighted {
  border-color: rgba(247, 200, 95, 0.5);
  background: linear-gradient(145deg, rgba(247, 200, 95, 0.14), rgba(246, 239, 221, 0.06));
}

.tier {
  display: inline-block;
  margin-bottom: 28px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(145, 230, 173, 0.1);
  color: var(--mint);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.merchant-grid {
  max-width: 1060px;
}

.fit-card {
  max-width: 980px;
  margin-top: 28px;
  padding: 28px;
}

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

.revenue-wheel div {
  min-height: 190px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 22px;
}

.revenue-wheel strong {
  color: var(--cream);
  font-size: 1.15rem;
}

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

.timeline article {
  position: relative;
  min-height: 300px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(246, 239, 221, 0.06);
}

.timeline span {
  display: block;
  margin-bottom: 54px;
  color: rgba(247, 200, 95, 0.52);
  font-size: 4rem;
  font-weight: 950;
  line-height: 0.8;
  letter-spacing: -0.08em;
}

.timeline p {
  color: var(--cream-soft);
  line-height: 1.45;
}

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

.ask-grid {
  margin-bottom: 36px;
}

.closing-line {
  max-width: 1100px;
  color: var(--mint);
  font-size: clamp(2rem, 4.3vw, 4.8rem);
  font-weight: 950;
  line-height: 0.95;
  letter-spacing: -0.065em;
}

.speaker-notes {
  display: none;
  position: absolute;
  right: clamp(32px, 6vw, 92px);
  bottom: 78px;
  left: clamp(32px, 6vw, 92px);
  padding: 16px 18px;
  border: 1px solid rgba(247, 200, 95, 0.28);
  border-radius: 18px;
  background: rgba(5, 18, 14, 0.82);
  color: var(--cream-soft);
  font-size: 0.95rem;
  line-height: 1.4;
  backdrop-filter: blur(20px);
}

body.show-notes .speaker-notes {
  display: block;
}

.progress {
  flex: 1;
  height: 8px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(246, 239, 221, 0.08);
}

.progress span {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--mint), var(--gold));
  transition: width 240ms ease;
}

.keyboard-hint {
  color: var(--muted);
  font-size: 0.82rem;
  white-space: nowrap;
}

@media (max-width: 980px) {
  html,
  body {
    overflow: auto;
  }

  .topbar,
  .bottombar {
    position: static;
    padding: 16px;
  }

  .bottombar {
    display: none;
  }

  .deck {
    height: auto;
  }

  .slide,
  .slide.active {
    position: relative;
    display: block;
    min-height: auto;
    padding: 48px 20px;
    animation: none;
  }

  .slide::after,
  .speaker-notes,
  .topbar-actions {
    display: none !important;
  }

  .hero-grid,
  .split,
  .split.reverse,
  .feature-showcase,
  .chat-layout,
  .three-column,
  .proof-grid,
  .pricing-grid,
  .moat-grid,
  .ask-grid,
  .ops-flow,
  .briefing-grid,
  .timeline,
  .revenue-wheel {
    grid-template-columns: 1fr;
  }

  .device-cluster {
    min-height: 520px;
  }

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

  .quick-intake-card h2 {
    max-width: 100%;
  }

  .phone {
    right: 22px;
  }

  .dashboard-card {
    right: auto;
    left: 0;
  }

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

  .arrow {
    transform: rotate(90deg);
    text-align: center;
  }

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

  .two-column-list {
    grid-template-columns: 1fr;
  }
}

@media print {
  @page {
    size: 16in 9in;
    margin: 0;
  }

  html,
  body {
    overflow: visible;
    background: #06120e !important;
    print-color-adjust: exact;
    -webkit-print-color-adjust: exact;
  }

  .topbar,
  .bottombar,
  .ambient {
    display: none !important;
  }

  .deck {
    width: auto;
    height: auto;
  }

  .slide,
  .slide.active {
    position: relative;
    display: block !important;
    width: 16in;
    height: 9in;
    page-break-after: always;
    padding: 0.75in 0.82in 0.72in;
    overflow: hidden;
    animation: none;
  }

  .speaker-notes {
    display: none !important;
  }
}

.requirements-slide h2 {
  max-width: 1160px;
  margin-bottom: 18px;
  font-size: clamp(2rem, 4.2vw, 4.5rem);
}

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

.requirements-card {
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(246, 239, 221, 0.07);
  box-shadow: var(--shadow);
  backdrop-filter: blur(22px);
}

.requirements-card h3 {
  margin-bottom: 12px;
  color: var(--gold);
  font-size: clamp(1rem, 1.35vw, 1.18rem);
  letter-spacing: -0.02em;
}

.requirements-card ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.requirements-card li {
  position: relative;
  padding: 5px 0 5px 20px;
  border-bottom: 1px solid rgba(246, 239, 221, 0.08);
  color: var(--cream-soft);
  font-size: clamp(0.7rem, 0.95vw, 0.86rem);
  line-height: 1.24;
}

.requirements-card li::before {
  position: absolute;
  left: 0;
  color: var(--mint);
  content: "✓";
  font-weight: 900;
}

.repo-matrix {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-top: 14px;
  padding: 12px;
  border: 1px solid rgba(145, 230, 173, 0.25);
  border-radius: 18px;
  background: rgba(145, 230, 173, 0.07);
}

.repo-matrix strong {
  margin-right: 4px;
  color: var(--mint);
  font-size: 0.9rem;
}

.repo-matrix span {
  padding: 7px 10px;
  border: 1px solid rgba(246, 239, 221, 0.14);
  border-radius: 999px;
  background: rgba(5, 18, 14, 0.44);
  color: var(--cream-soft);
  font-family: var(--mono);
  font-size: clamp(0.66rem, 0.86vw, 0.82rem);
}

.requirements-footnote {
  margin-top: 12px;
  font-size: clamp(0.66rem, 0.82vw, 0.78rem);
}

.requirements-slide .requirements-card {
  background: linear-gradient(145deg, rgba(246, 239, 221, 0.16), rgba(246, 239, 221, 0.08)), rgba(5, 18, 14, 0.78);
  border-color: rgba(246, 239, 221, 0.26);
}

.requirements-slide .requirements-card li,
.requirements-slide .requirements-footnote,
.requirements-slide .repo-matrix span {
  color: #efe7d3;
}

.requirements-slide .requirements-card {
  background: rgba(246, 239, 221, 0.94);
  color: #0b2419;
  border-color: rgba(246, 239, 221, 0.78);
}

.requirements-slide .requirements-card h3 {
  color: #123d2c;
}

.requirements-slide .requirements-card li {
  color: #17382a;
  border-bottom-color: rgba(18, 61, 44, 0.14);
}

.requirements-slide .requirements-card li::before {
  color: #1f6f4a;
}

.requirements-slide .requirements-card code {
  color: #0b5f3b;
}

.requirements-slide .requirements-card li {
  font-size: clamp(0.82rem, 1.04vw, 0.98rem);
  line-height: 1.28;
}

.requirements-slide h2 {
  color: #fff7e4;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.55);
}

.requirements-slide .repo-matrix {
  background: rgba(246, 239, 221, 0.12);
  border-color: rgba(246, 239, 221, 0.32);
}

.requirements-slide .repo-matrix span {
  background: rgba(246, 239, 221, 0.9);
  color: #143527;
  font-weight: 750;
}

.requirements-slide .requirements-footnote {
  color: #fff1cc;
}

.requirements-slide {
  background:
    radial-gradient(circle at 12% 18%, rgba(145, 230, 173, 0.34), transparent 24rem),
    radial-gradient(circle at 88% 14%, rgba(247, 200, 95, 0.32), transparent 22rem),
    linear-gradient(135deg, #f8f0dc 0%, #eadfbe 52%, #d5c89f 100%);
  color: #092018;
}

.requirements-slide::after {
  border-color: rgba(18, 61, 44, 0.12);
  background: radial-gradient(circle, rgba(18, 61, 44, 0.08), transparent 62%);
}

.requirements-slide .eyebrow {
  color: #1f6f4a;
}

.requirements-slide h2 {
  color: #092018;
  text-shadow: none;
}

.requirements-slide .requirements-card {
  background: rgba(255, 252, 242, 0.88);
  border-color: rgba(18, 61, 44, 0.18);
  box-shadow: 0 22px 70px rgba(18, 61, 44, 0.14);
}

.requirements-slide .repo-matrix {
  background: rgba(18, 61, 44, 0.12);
  border-color: rgba(18, 61, 44, 0.2);
}

.requirements-slide .repo-matrix strong {
  color: #092018;
}

.requirements-slide .repo-matrix span {
  background: #123d2c;
  color: #fff4d6;
}

.requirements-slide .requirements-footnote {
  background: rgba(255, 252, 242, 0.82);
  border-color: rgba(18, 61, 44, 0.18);
  color: #153628;
}

.requirements-slide .requirements-footnote code {
  color: #0b5f3b;
}

body.requirements-active .brand,
body.requirements-active .keyboard-hint {
  color: #143527;
}

body.requirements-active .brand small,
body.requirements-active .keyboard-hint {
  color: rgba(20, 53, 39, 0.72);
}

body.requirements-active .slide-count,
body.requirements-active .ghost-button,
body.requirements-active .progress {
  background: rgba(255, 252, 242, 0.66);
  border-color: rgba(18, 61, 44, 0.24);
  color: #143527;
}

body.requirements-active .progress span {
  background: linear-gradient(90deg, #1f6f4a, #b47920);
}

.requirements-slide .requirements-footnote {
  font-size: clamp(0.76rem, 0.9vw, 0.9rem);
}

/* Get Started intake page */
.ghost-button {
  text-decoration: none;
}

.get-started-link {
  border-color: rgba(247, 200, 95, 0.42);
  color: var(--cream);
}

.intake-page {
  overflow: auto;
}

.intake-page .topbar {
  position: sticky;
  top: 18px;
  z-index: 20;
  margin-top: 18px;
}

.intake-shell {
  width: min(1180px, calc(100vw - 40px));
  margin: 0 auto;
  padding: clamp(72px, 9vh, 118px) 0 70px;
}

.intake-hero {
  margin-bottom: 34px;
}

.intake-hero h1 {
  max-width: 11ch;
  margin-bottom: 22px;
  font-size: clamp(4.4rem, 12vw, 10rem);
  line-height: 0.82;
}

.intake-promise {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.intake-promise span {
  padding: 10px 14px;
  border: 1px solid rgba(145, 230, 173, 0.25);
  border-radius: 999px;
  background: rgba(145, 230, 173, 0.08);
  color: var(--mint);
  font-weight: 750;
}

.intake-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.42fr);
  gap: 24px;
  align-items: start;
}

.intake-grid-priority {
  margin-bottom: 28px;
}

.intake-sales-heading {
  grid-column: 1 / -1;
  display: grid;
  gap: 16px;
  padding: clamp(20px, 3vw, 32px);
  border: 1px solid rgba(145, 230, 173, 0.22);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 18% 18%, rgba(145, 230, 173, 0.16), transparent 34%),
    linear-gradient(145deg, rgba(246, 239, 221, 0.12), rgba(246, 239, 221, 0.04)),
    rgba(5, 18, 14, 0.62);
  box-shadow: var(--shadow);
  backdrop-filter: blur(22px);
}

.intake-sales-heading h1 {
  max-width: 12ch;
  margin: 0;
  font-size: clamp(3rem, 8vw, 6.8rem);
  line-height: 0.86;
  letter-spacing: -0.075em;
}

.intake-sales-heading .lead {
  max-width: 780px;
}

.sales-card p:not(.eyebrow) {
  color: var(--cream-soft);
  line-height: 1.5;
}

.intake-form,
.sidecar-card,
.screenshot-card,
.output-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(246, 239, 221, 0.12), rgba(246, 239, 221, 0.05)),
    rgba(5, 18, 14, 0.64);
  box-shadow: var(--shadow);
  backdrop-filter: blur(22px);
}

.intake-form {
  padding: clamp(20px, 3vw, 34px);
}

.intake-form fieldset {
  padding: 0 0 28px;
  margin: 0 0 28px;
  border: 0;
  border-bottom: 1px solid rgba(246, 239, 221, 0.13);
}

.intake-form fieldset:last-of-type {
  margin-bottom: 0;
}

.intake-form legend,
.sidecar-card h2,
.screenshot-card h2,
.output-card h2 {
  margin-bottom: 16px;
  color: var(--gold);
  font-size: 1.05rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.form-row {
  display: grid;
  gap: 14px;
}

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

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

.intake-form label {
  display: grid;
  gap: 8px;
  margin-bottom: 14px;
  color: var(--cream-soft);
  font-weight: 750;
  line-height: 1.35;
}

.intake-form input,
.intake-form select,
.intake-form textarea,
.output-card textarea {
  width: 100%;
  border: 1px solid rgba(246, 239, 221, 0.18);
  border-radius: 16px;
  background: rgba(3, 14, 10, 0.72);
  color: var(--cream);
  font: inherit;
  outline: none;
  padding: 13px 14px;
}

.intake-form input:focus,
.intake-form select:focus,
.intake-form textarea:focus,
.output-card textarea:focus {
  border-color: rgba(247, 200, 95, 0.65);
  box-shadow: 0 0 0 4px rgba(247, 200, 95, 0.08);
}

.intake-form textarea,
.output-card textarea {
  resize: vertical;
}

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

.checkbox-grid label {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 12px;
  margin: 0;
  border: 1px solid rgba(246, 239, 221, 0.12);
  border-radius: 14px;
  background: rgba(246, 239, 221, 0.05);
  color: var(--cream-soft);
}

.checkbox-grid input {
  width: auto;
  margin-top: 4px;
  accent-color: var(--gold);
}

.custom-question {
  padding: 22px !important;
  border: 1px solid rgba(247, 200, 95, 0.25) !important;
  border-radius: 22px;
  background: rgba(247, 200, 95, 0.08);
}

.form-actions,
.output-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.primary-button {
  border: 1px solid rgba(247, 200, 95, 0.5);
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold), #f09a45);
  color: #143527;
  cursor: pointer;
  font: inherit;
  font-weight: 900;
  padding: 12px 18px;
  text-decoration: none;
}

.primary-button:hover,
.ghost-button:hover {
  transform: translateY(-1px);
}

.intake-sidecar {
  position: sticky;
  top: 98px;
  display: grid;
  gap: 16px;
}

.sidecar-card,
.screenshot-card,
.output-card {
  padding: 24px;
}

.sidecar-card ol {
  padding-left: 20px;
  margin: 0;
  color: var(--cream-soft);
  line-height: 1.55;
}

.screenshot-slots {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.screenshot-slots span {
  padding: 8px 10px;
  border: 1px solid rgba(145, 230, 173, 0.22);
  border-radius: 999px;
  background: rgba(145, 230, 173, 0.08);
  color: var(--mint);
  font-size: 0.88rem;
  font-weight: 800;
}

.screenshot-card p,
.copy-status {
  color: var(--cream-soft);
  line-height: 1.45;
}

.output-card textarea {
  min-height: 280px;
  margin-bottom: 12px;
  font-family: var(--mono);
  font-size: 0.82rem;
  line-height: 1.42;
}

.copy-status {
  min-height: 1.3em;
  margin: 12px 0 0;
  color: var(--mint);
}

@media (max-width: 980px) {
  .intake-page .topbar {
    position: static;
    margin-top: 0;
  }

  .intake-shell {
    width: min(100% - 28px, 720px);
    padding-top: 40px;
  }

  .intake-grid,
  .form-row.two,
  .form-row.three,
  .checkbox-grid {
    grid-template-columns: 1fr;
  }

  .intake-sidecar {
    position: static;
  }
}

.requirements-footnote a {
  color: #0b5f3b;
  font-weight: 900;
}

/* Readiness selects have long labels; keep them full-width. */
.intake-form fieldset:nth-of-type(4) .form-row.three {
  grid-template-columns: 1fr;
}

/* Live screenshots */
.live-screens-slide h2 {
  max-width: 1120px;
  margin-bottom: 22px;
  font-size: clamp(2.25rem, 4.5vw, 4.8rem);
}

.screens-showcase {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  align-items: end;
}

.screens-showcase figure,
.gallery-strip figure {
  margin: 0;
}

.screens-showcase figure {
  position: relative;
  padding: 10px 10px 44px;
  border: 1px solid rgba(246, 239, 221, 0.18);
  border-radius: 28px;
  background: rgba(246, 239, 221, 0.1);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
  transform: rotate(var(--tilt, 0deg));
}

.screens-showcase figure:nth-child(1) { --tilt: -3deg; }
.screens-showcase figure:nth-child(2) { --tilt: 2deg; margin-bottom: 22px; }
.screens-showcase figure:nth-child(3) { --tilt: -1deg; margin-bottom: 44px; }
.screens-showcase figure:nth-child(4) { --tilt: 2deg; margin-bottom: 18px; }
.screens-showcase figure:nth-child(5) { --tilt: -2deg; }

.screens-showcase img {
  display: block;
  width: 100%;
  height: min(48vh, 440px);
  object-fit: cover;
  object-position: top;
  border-radius: 20px;
}

.screens-showcase figcaption,
.gallery-strip figcaption {
  color: var(--cream);
  font-weight: 850;
  letter-spacing: -0.02em;
}

.screens-showcase figcaption {
  position: absolute;
  right: 12px;
  bottom: 12px;
  left: 12px;
  text-align: center;
  font-size: 0.9rem;
}

.screens-proof-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.screens-proof-pills span {
  padding: 8px 12px;
  border: 1px solid rgba(145, 230, 173, 0.24);
  border-radius: 999px;
  background: rgba(145, 230, 173, 0.08);
  color: var(--mint);
  font-size: 0.88rem;
  font-weight: 850;
}

.product-gallery {
  margin: 0 0 28px;
  padding: clamp(20px, 3vw, 30px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(246, 239, 221, 0.12), rgba(246, 239, 221, 0.05)),
    rgba(5, 18, 14, 0.58);
  box-shadow: var(--shadow);
  backdrop-filter: blur(22px);
}

.gallery-heading {
  max-width: 860px;
  margin-bottom: 22px;
}

.gallery-heading h2 {
  margin-bottom: 12px;
  font-size: clamp(1.9rem, 3.5vw, 3.8rem);
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.gallery-heading p:not(.eyebrow) {
  color: var(--cream-soft);
  font-size: 1.05rem;
  line-height: 1.45;
}

.gallery-strip {
  display: grid;
  grid-auto-columns: minmax(160px, 210px);
  grid-auto-flow: column;
  gap: 14px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  padding: 4px 4px 14px;
  scroll-snap-type: inline mandatory;
}

.gallery-strip figure {
  scroll-snap-align: start;
  padding: 8px 8px 12px;
  border: 1px solid rgba(246, 239, 221, 0.16);
  border-radius: 24px;
  background: rgba(246, 239, 221, 0.08);
}

.gallery-strip img {
  display: block;
  width: 100%;
  aspect-ratio: 588 / 1280;
  object-fit: cover;
  object-position: top;
  border-radius: 18px;
}

.gallery-strip figcaption {
  margin-top: 10px;
  text-align: center;
  font-size: 0.84rem;
}

@media (max-width: 980px) {
  .screens-showcase {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .screens-showcase img {
    height: auto;
    max-height: none;
  }
}

.live-screens-slide h2 {
  letter-spacing: -0.045em;
}

/* Customer-facing architecture + naming */
.architecture-linkline {
  max-width: 880px;
  margin-top: 22px;
  color: var(--cream-soft);
  font-size: 1.08rem;
}

.architecture-linkline a {
  color: var(--mint);
  font-weight: 900;
}

.naming-layout {
  display: grid;
  grid-template-columns: minmax(360px, 0.78fr) minmax(0, 1fr);
  gap: 24px;
  align-items: stretch;
}

.name-hero-card,
.name-options article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(246, 239, 221, 0.12), rgba(246, 239, 221, 0.05)),
    rgba(5, 18, 14, 0.62);
  box-shadow: var(--shadow);
  backdrop-filter: blur(22px);
}

.name-hero-card {
  padding: 34px;
}

.name-hero-card span {
  display: inline-block;
  margin-bottom: 28px;
  color: var(--gold);
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.name-hero-card strong {
  display: block;
  margin-bottom: 22px;
  color: var(--cream);
  font-size: clamp(3rem, 6vw, 6.2rem);
  line-height: 0.82;
  letter-spacing: -0.08em;
}

.name-hero-card p {
  color: var(--cream-soft);
  font-size: clamp(1.02rem, 1.55vw, 1.3rem);
  line-height: 1.45;
}

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

.name-options article {
  padding: 22px;
}

.name-options b,
.name-options small {
  display: block;
}

.name-options b {
  margin-bottom: 10px;
  color: var(--mint);
  font-size: 1.45rem;
  letter-spacing: -0.04em;
}

.name-options small {
  color: var(--cream-soft);
  font-size: 0.98rem;
  line-height: 1.4;
}

.architecture-page {
  overflow: auto;
}

.architecture-shell {
  width: min(1500px, calc(100vw - 40px));
  margin: 0 auto;
  padding: clamp(72px, 9vh, 118px) 0 80px;
}

.architecture-hero {
  max-width: 1180px;
  margin-bottom: 36px;
}

.architecture-hero h1 {
  max-width: 11.5ch;
  margin-bottom: 22px;
  font-size: clamp(4rem, 9.4vw, 10.5rem);
  line-height: 0.82;
}

.architecture-map {
  display: grid;
  grid-template-columns: minmax(220px, 0.42fr) minmax(620px, 1fr) minmax(260px, 0.48fr);
  gap: 18px;
  align-items: stretch;
}

.map-column {
  display: grid;
  gap: 12px;
  align-content: start;
}

.map-column h2 {
  margin: 0 0 6px;
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.map-card,
.architecture-layer,
.architecture-story article,
.name-recommendation,
.name-grid article {
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(246, 239, 221, 0.07);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(22px);
}

.map-card {
  padding: 18px;
}

.map-card strong,
.map-card span {
  display: block;
}

.map-card strong {
  margin-bottom: 7px;
  color: var(--cream);
  font-size: 1.05rem;
}

.map-card span {
  color: var(--cream-soft);
  font-size: 0.92rem;
  line-height: 1.38;
}

.outcome-card {
  border-color: rgba(145, 230, 173, 0.22);
}

.architecture-layer {
  padding: 16px;
}

.layer-title {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 12px;
}

.layer-title span {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 12px;
  background: rgba(247, 200, 95, 0.16);
  color: var(--gold);
  font-weight: 950;
}

.layer-title h2 {
  margin: 0;
  color: var(--cream);
  font-size: clamp(1rem, 1.35vw, 1.32rem);
  letter-spacing: -0.03em;
  text-transform: none;
}

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

.layer-grid b {
  min-height: 44px;
  display: grid;
  place-items: center;
  padding: 9px;
  border-radius: 13px;
  background: rgba(5, 18, 14, 0.45);
  color: var(--cream-soft);
  font-size: 0.86rem;
  text-align: center;
}

.customer-layer { border-color: rgba(145, 230, 173, 0.32); }
.merchant-layer { border-color: rgba(247, 200, 95, 0.28); }
.intelligence-layer { border-color: rgba(240, 139, 79, 0.32); }
.commerce-layer { border-color: rgba(116, 183, 255, 0.26); }
.rewards-layer { border-color: rgba(247, 200, 95, 0.42); }
.identity-layer { border-color: rgba(181, 145, 230, 0.32); }
.data-layer { border-color: rgba(246, 239, 221, 0.22); }
.infra-layer { border-color: rgba(145, 230, 173, 0.22); }

.architecture-story {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 28px 0;
}

.architecture-story article {
  padding: 24px;
}

.architecture-story h2,
.naming-lab h2 {
  margin-bottom: 12px;
  font-size: clamp(1.55rem, 2.4vw, 2.6rem);
  line-height: 1;
  letter-spacing: -0.05em;
}

.architecture-story p,
.naming-lab p {
  color: var(--cream-soft);
  line-height: 1.48;
}

.naming-lab {
  margin-top: 30px;
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(246, 239, 221, 0.06);
}

.name-recommendation {
  padding: 24px;
  margin: 18px 0;
  border-color: rgba(247, 200, 95, 0.36);
}

.name-recommendation span,
.name-recommendation strong {
  display: block;
}

.name-recommendation span {
  color: var(--gold);
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.name-recommendation strong {
  margin: 8px 0;
  color: var(--cream);
  font-size: clamp(3rem, 6vw, 6.2rem);
  line-height: 0.82;
  letter-spacing: -0.08em;
}

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

.name-grid article {
  padding: 18px;
}

.name-grid strong,
.name-grid span {
  display: block;
}

.name-grid strong {
  margin-bottom: 8px;
  color: var(--mint);
}

.name-grid span {
  color: var(--cream-soft);
  font-size: 0.9rem;
  line-height: 1.35;
}

.naming-note {
  margin: 18px 0 0;
  color: var(--gold) !important;
  font-weight: 800;
}

@media (max-width: 1100px) {
  .architecture-map,
  .architecture-story,
  .name-grid,
  .naming-layout {
    grid-template-columns: 1fr;
  }

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

.architecture-hero h1 {
  max-width: 14ch;
  font-size: clamp(3.2rem, 7.2vw, 8.2rem);
  line-height: 0.9;
  letter-spacing: -0.07em;
}

.architecture-hero h1 {
  letter-spacing: -0.045em;
}

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

.managed-grid article {
  min-height: 260px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(246, 239, 221, 0.12), rgba(246, 239, 221, 0.05)),
    rgba(5, 18, 14, 0.62);
  box-shadow: var(--shadow);
  backdrop-filter: blur(22px);
}

.managed-grid span {
  display: block;
  margin-bottom: 44px;
  color: rgba(247, 200, 95, 0.56);
  font-size: 3.6rem;
  font-weight: 950;
  line-height: 0.82;
  letter-spacing: -0.08em;
}

.managed-grid h3 {
  margin-bottom: 12px;
  color: var(--cream);
  font-size: 1.28rem;
}

.managed-grid p {
  color: var(--cream-soft);
  line-height: 1.42;
}

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

.ai-capabilities span {
  color: #e7dcc4;
  font-size: 1rem;
}


/* Sales-first homepage */
.home-intake-page .intake-shell {
  padding-top: clamp(34px, 5vh, 64px);
}

.home-intake-page .intake-grid-priority {
  margin-top: 0;
}

.form-kicker {
  margin-bottom: 24px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(246, 239, 221, 0.13);
}

.form-kicker h1 {
  max-width: 12ch;
  margin: 0 0 12px;
  font-size: clamp(2.2rem, 5vw, 4.6rem);
  line-height: 0.9;
  letter-spacing: -0.07em;
}

.form-kicker p:not(.eyebrow) {
  max-width: 680px;
  color: var(--cream-soft);
  line-height: 1.5;
}

/* Visible Nostr / AI ops chat */
.runbig-chat {
  position: fixed;
  right: clamp(14px, 2.2vw, 28px);
  bottom: clamp(14px, 2.2vw, 28px);
  z-index: 2147483000;
  width: min(390px, calc(100vw - 28px));
  color: var(--cream);
}

.runbig-chat-launcher {
  display: flex;
  align-items: center;
  width: 100%;
  gap: 12px;
  border: 1px solid rgba(145, 230, 173, 0.38);
  border-radius: 999px;
  background:
    radial-gradient(circle at 10% 0%, rgba(145, 230, 173, 0.28), transparent 42%),
    linear-gradient(145deg, rgba(15, 67, 47, 0.96), rgba(5, 18, 14, 0.94));
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.34), 0 0 0 6px rgba(145, 230, 173, 0.08);
  color: var(--cream);
  cursor: pointer;
  font: inherit;
  padding: 12px 16px 12px 12px;
  text-align: left;
}

.runbig-chat-launcher-icon {
  display: grid;
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 999px;
  background: var(--mint);
  color: #04110d;
  font-size: 1.25rem;
  font-weight: 950;
}

.runbig-chat-launcher strong,
.runbig-chat-launcher small {
  display: block;
}

.runbig-chat-launcher strong {
  font-size: 0.98rem;
  letter-spacing: -0.02em;
}

.runbig-chat-launcher small {
  margin-top: 2px;
  color: var(--cream-soft);
  font-size: 0.78rem;
  font-weight: 750;
}

.runbig-chat-panel {
  display: none;
  max-height: min(650px, calc(100vh - 40px));
  overflow: hidden;
  border: 1px solid rgba(145, 230, 173, 0.28);
  border-radius: 28px;
  background:
    radial-gradient(circle at 14% 0%, rgba(145, 230, 173, 0.16), transparent 34%),
    linear-gradient(145deg, rgba(246, 239, 221, 0.14), rgba(246, 239, 221, 0.05)),
    rgba(5, 18, 14, 0.94);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.36);
  backdrop-filter: blur(26px);
}

.runbig-chat.is-open .runbig-chat-launcher {
  display: none;
}

.runbig-chat.is-open .runbig-chat-panel {
  display: block;
}

.runbig-chat-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 18px 14px;
  border-bottom: 1px solid rgba(246, 239, 221, 0.12);
}

.runbig-chat-header .eyebrow {
  margin-bottom: 6px;
  font-size: 0.65rem;
}

.runbig-chat-header h2 {
  margin: 0;
  font-size: 1.3rem;
  line-height: 1;
  letter-spacing: -0.04em;
}

.runbig-chat-toggle {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(246, 239, 221, 0.2);
  border-radius: 999px;
  background: rgba(246, 239, 221, 0.08);
  color: var(--cream);
  cursor: pointer;
  font: inherit;
  font-size: 1.25rem;
  font-weight: 900;
}

.runbig-chat-body {
  display: grid;
  gap: 12px;
  padding: 14px;
}

.runbig-chat-messages {
  display: grid;
  max-height: 210px;
  gap: 10px;
  overflow-y: auto;
  padding-right: 4px;
}

.runbig-chat-message {
  width: fit-content;
  max-width: 92%;
  white-space: pre-line;
  border: 1px solid rgba(246, 239, 221, 0.12);
  border-radius: 18px;
  padding: 10px 12px;
  color: var(--cream-soft);
  font-size: 0.9rem;
  line-height: 1.38;
}

.runbig-chat-message.assistant {
  justify-self: start;
  background: rgba(246, 239, 221, 0.08);
}

.runbig-chat-message.user {
  justify-self: end;
  border-color: rgba(145, 230, 173, 0.32);
  background: rgba(145, 230, 173, 0.12);
  color: var(--cream);
}

.runbig-chat-suggestions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.runbig-chat-suggestions button {
  border: 1px solid rgba(145, 230, 173, 0.22);
  border-radius: 999px;
  background: rgba(145, 230, 173, 0.08);
  color: var(--mint);
  cursor: pointer;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 850;
  padding: 7px 10px;
}

.runbig-chat-form {
  display: grid;
  gap: 10px;
}

.runbig-chat-form label {
  display: grid;
  gap: 7px;
  color: var(--cream-soft);
  font-size: 0.82rem;
  font-weight: 850;
  line-height: 1.25;
}

.runbig-chat-form textarea {
  width: 100%;
  border: 1px solid rgba(246, 239, 221, 0.18);
  border-radius: 16px;
  background: rgba(3, 14, 10, 0.78);
  color: var(--cream);
  font: inherit;
  outline: none;
  padding: 11px 12px;
  resize: vertical;
}

.runbig-chat-form textarea:focus {
  border-color: rgba(247, 200, 95, 0.65);
  box-shadow: 0 0 0 4px rgba(247, 200, 95, 0.08);
}

.runbig-chat-form .primary-button {
  justify-content: center;
}

.runbig-chat-status,
.runbig-chat-privacy {
  margin: 0;
  color: var(--cream-soft);
  font-size: 0.74rem;
  line-height: 1.35;
}

.runbig-chat-status {
  color: var(--mint);
  font-weight: 850;
}

@media (max-width: 980px) {
  .runbig-chat {
    right: 10px;
    bottom: 10px;
  }

  .runbig-chat-panel {
    max-height: calc(100vh - 20px);
  }

  .runbig-chat-messages {
    max-height: 180px;
  }
}

@media print {
  .runbig-chat {
    display: none !important;
  }
}
