:root {
  --fd-navy: #061326;
  --fd-navy-2: #0a1a31;
  --fd-navy-3: #10233d;
  --fd-blue: #2094ff;
  --fd-blue-2: #38a5ff;
  --fd-green: #10d9a0;
  --fd-text: #f7fbff;
  --fd-muted: #a8b7cc;
  --fd-dim: #65758d;
  --fd-line: rgba(32, 148, 255, 0.26);
  --fd-line-strong: rgba(32, 148, 255, 0.72);
  --fd-card: rgba(14, 31, 55, 0.92);
  --fd-font-sans: "IBM Plex Sans", system-ui, -apple-system, sans-serif;
  --fd-font-mono: "IBM Plex Mono", Menlo, monospace;
  --fd-container: 1420px;
  --fd-header-h: 82px;
  --fd-shadow-blue: 0 0 44px rgba(32, 148, 255, 0.28);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--fd-text);
  background:
    radial-gradient(circle at 76% 18%, rgba(32, 148, 255, 0.18), transparent 34%),
    linear-gradient(180deg, #061326 0%, #08182e 58%, #071426 100%);
  font-family: var(--fd-font-sans);
}

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

button {
  cursor: pointer;
}

[hidden] {
  display: none !important;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 34px;
  align-items: center;
  height: var(--fd-header-h);
  padding: 0 max(26px, calc((100vw - var(--fd-container)) / 2));
  background: rgba(6, 19, 38, 0.94);
  border-bottom: 1px solid rgba(32, 148, 255, 0.12);
  backdrop-filter: blur(18px);
}

.logo-link {
  display: flex;
  gap: 18px;
  align-items: center;
  color: var(--fd-text);
  text-decoration: none;
}

.logo-link img {
  width: 48px;
  height: 48px;
  border-radius: 2px;
  object-fit: cover;
  box-shadow: 0 0 22px rgba(32, 148, 255, 0.2);
}

.logo-link > span {
  font-family: var(--fd-font-mono);
  font-size: 28px;
  letter-spacing: 0.22em;
}

.logo-link > span span {
  color: var(--fd-blue);
}

.main-nav,
.header-actions {
  display: flex;
  align-items: center;
}

.main-nav {
  justify-content: center;
  gap: clamp(22px, 4vw, 58px);
}

.main-nav a,
.sign-in {
  color: var(--fd-muted);
  font-family: var(--fd-font-mono);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: 0.2s ease;
}

.main-nav a:hover,
.sign-in:hover {
  color: var(--fd-text);
}

.header-actions {
  gap: 22px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  border: 1px solid var(--fd-line);
  border-radius: 999px;
  padding: 0 24px;
  color: var(--fd-text);
  background: rgba(14, 31, 55, 0.74);
  font-family: var(--fd-font-mono);
  font-weight: 800;
  letter-spacing: 0.03em;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
  border-color: var(--fd-line-strong);
  box-shadow: var(--fd-shadow-blue);
}

.btn-primary {
  border-color: rgba(32, 148, 255, 0.9);
  background: linear-gradient(135deg, #1f8fff 0%, #2fa3ff 100%);
  color: white;
  box-shadow: 0 16px 34px rgba(32, 148, 255, 0.22);
  text-transform: uppercase;
}

.btn-ghost {
  color: var(--fd-blue-2);
}

.btn-light {
  background: white;
  color: #071426;
}

.btn-small {
  min-height: 58px;
  padding: 0 32px;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 0.8fr);
  gap: 54px;
  align-items: center;
  min-height: calc(100vh - var(--fd-header-h) - 72px);
  padding: 56px max(26px, calc((100vw - var(--fd-container)) / 2)) 78px;
  overflow: hidden;
}

.hero::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    radial-gradient(ellipse 760px 520px at 76% 48%, rgba(32, 148, 255, 0.22), transparent 66%),
    linear-gradient(90deg, rgba(6, 19, 38, 0.22), rgba(12, 35, 63, 0.5));
  pointer-events: none;
}

.hero-copy,
.phone-stage,
.variation-dock {
  position: relative;
  z-index: 1;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  max-width: 100%;
  margin-bottom: 44px;
  border: 1px solid var(--fd-line);
  border-radius: 999px;
  padding: 10px 20px;
  color: var(--fd-blue-2);
  background: rgba(14, 31, 55, 0.48);
  font-family: var(--fd-font-mono);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0 0 34px;
  color: var(--fd-text);
  font-size: clamp(62px, 8.6vw, 118px);
  font-weight: 300;
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.hero h1 em {
  color: var(--fd-blue);
  font-style: italic;
  font-weight: 300;
}

.hero p {
  max-width: 690px;
  margin: 0;
  color: #c3cee0;
  font-size: clamp(20px, 2vw, 29px);
  line-height: 1.65;
}

.hero-actions,
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

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

.trust-row {
  gap: 36px;
  margin-top: 42px;
}

.trust-row span {
  display: grid;
  gap: 5px;
  color: var(--fd-dim);
  font-family: var(--fd-font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.trust-row strong {
  color: var(--fd-blue);
  font-size: 22px;
  letter-spacing: 0;
}

.phone-stage {
  min-height: 590px;
  display: grid;
  place-items: center;
}

.phone-shell {
  position: relative;
  width: min(440px, 100%);
  height: 650px;
  border: 14px solid #02060b;
  border-radius: 54px;
  background: #02060b;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.56), 0 0 80px rgba(32, 148, 255, 0.28);
  overflow: hidden;
}

.phone-notch {
  position: absolute;
  top: 20px;
  left: 50%;
  z-index: 3;
  width: 130px;
  height: 34px;
  border-radius: 999px;
  background: #02060b;
  transform: translateX(-50%);
}

.phone-screen {
  height: 100%;
  border-radius: 40px;
  background: #081014;
  overflow: hidden;
}

.phone-status {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 66px;
  padding: 0 34px;
  color: white;
  font-family: var(--fd-font-mono);
}

.phone-chat-top {
  display: grid;
  grid-template-columns: 42px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 14px 18px;
  background: #202c33;
}

.phone-chat-top img,
.brand-orb img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
}

.phone-chat-top strong,
.phone-chat-top span {
  display: block;
}

.phone-chat-top span {
  margin-top: 4px;
  color: #8fa0ad;
  font-size: 13px;
}

.phone-chat-top span::first-letter {
  color: var(--fd-green);
}

.phone-chat-top b {
  color: #e751aa;
  font-size: 20px;
}

.phone-messages {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 24px 18px;
}

.phone-messages > small {
  color: #7d91a4;
  font-family: var(--fd-font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-align: center;
  text-transform: uppercase;
}

.bubble {
  max-width: 82%;
  border-radius: 9px;
  padding: 13px 15px;
  color: white;
  font-size: 15px;
  line-height: 1.5;
}

.bubble.bot {
  align-self: flex-start;
  background: #202c33;
}

.bubble.user {
  align-self: flex-end;
  background: #005c4b;
}

.bubble b {
  color: var(--fd-green);
}

.bubble.rich span {
  display: block;
  margin-bottom: 8px;
  color: #7d91a4;
  font-family: var(--fd-font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.bubble.rich p {
  display: flex;
  justify-content: space-between;
  margin: 5px 0;
  color: white;
  font-size: 13px;
}

.advisor-float {
  position: absolute;
  top: 115px;
  left: 0;
  z-index: 4;
  width: 250px;
  border: 1px solid var(--fd-line);
  border-radius: 16px;
  padding: 20px 22px;
  background: rgba(13, 34, 62, 0.96);
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.36);
}

.advisor-float span {
  display: inline-block;
  width: 13px;
  height: 13px;
  margin-right: 9px;
  border-radius: 50%;
  background: var(--fd-green);
  box-shadow: 0 0 16px rgba(16, 217, 160, 0.68);
}

.advisor-float small {
  color: var(--fd-green);
  font-family: var(--fd-font-mono);
  font-size: 12px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
}

.advisor-float p {
  margin: 14px 0 0;
  color: var(--fd-text);
  font-size: 16px;
  line-height: 1.5;
}

.advisor-float strong {
  color: var(--fd-blue-2);
}

.brand-orb {
  position: absolute;
  right: 28px;
  bottom: 110px;
  display: grid;
  place-items: center;
  width: 94px;
  height: 94px;
  border-radius: 50%;
  background: #0d8cff;
  box-shadow: 0 0 36px rgba(32, 148, 255, 0.7);
}

.brand-orb::after {
  position: absolute;
  right: 7px;
  bottom: 10px;
  width: 20px;
  height: 20px;
  content: "";
  border: 4px solid #061326;
  border-radius: 50%;
  background: var(--fd-green);
}

.brand-orb img {
  width: 72px;
  height: 72px;
  border-radius: 8px;
}

.variation-dock {
  position: absolute;
  left: 50%;
  bottom: 36px;
  display: flex;
  gap: 0;
  align-items: center;
  border: 1px solid var(--fd-line);
  border-radius: 999px;
  background: rgba(8, 24, 46, 0.92);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.28);
  transform: translateX(-50%);
  overflow: hidden;
}

.variation-dock span,
.variation-dock b,
.variation-dock strong {
  padding: 18px 26px;
  font-family: var(--fd-font-mono);
  font-size: 13px;
  letter-spacing: 0.12em;
  white-space: nowrap;
}

.variation-dock span {
  color: var(--fd-dim);
  text-transform: uppercase;
}

.variation-dock b {
  color: var(--fd-muted);
  border-left: 1px solid rgba(32, 148, 255, 0.16);
}

.variation-dock strong {
  color: white;
  background: var(--fd-blue);
  border-radius: 999px;
}

.stats-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--fd-line);
  border-bottom: 1px solid var(--fd-line);
  background: rgba(7, 20, 38, 0.9);
}

.stats-band article {
  padding: 30px 24px;
  border-right: 1px solid rgba(32, 148, 255, 0.16);
  text-align: center;
}

.stats-band strong {
  display: block;
  color: var(--fd-blue);
  font-family: var(--fd-font-mono);
  font-size: 26px;
}

.stats-band span {
  display: block;
  margin-top: 8px;
  color: var(--fd-muted);
}

.section {
  padding: 90px max(26px, calc((100vw - var(--fd-container)) / 2));
  background: var(--fd-navy);
}

.section.alt {
  background: #08182e;
}

.section-head {
  max-width: 820px;
  margin: 0 auto 42px;
  text-align: center;
}

.section-head.align-left {
  margin: 0;
  text-align: left;
}

.section-head span,
.calc-title-row span,
.result-panel span,
.portfolio-top span {
  color: var(--fd-blue);
  font-family: var(--fd-font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.section-head h2,
.cta-section h2 {
  margin: 12px 0 16px;
  color: var(--fd-text);
  font-size: clamp(34px, 4.8vw, 62px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.section-head p,
.answer-grid p,
.product-card p,
.footer p,
.fine-print {
  color: var(--fd-muted);
  line-height: 1.7;
}

.product-grid,
.answer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.product-card,
.answer-grid article,
.calculator-card,
.chat-panel {
  border: 1px solid var(--fd-line);
  border-radius: 22px;
  background: var(--fd-card);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.product-card,
.answer-grid article {
  min-height: 300px;
  padding: 44px;
  transition: 0.2s ease;
}

.product-card:hover,
.answer-grid article:hover {
  border-color: var(--fd-line-strong);
  box-shadow: var(--fd-shadow-blue);
  transform: translateY(-3px);
}

.product-card.featured {
  background: linear-gradient(180deg, rgba(17, 42, 75, 0.98), rgba(13, 31, 56, 0.98));
}

.product-card span {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  margin-bottom: 36px;
  border: 1px solid var(--fd-line-strong);
  clip-path: polygon(50% 0, 93% 25%, 93% 75%, 50% 100%, 7% 75%, 7% 25%);
  color: var(--fd-blue);
  font-size: 28px;
}

.product-card h3,
.answer-grid h3 {
  margin: 0 0 18px;
  color: var(--fd-text);
  font-size: 28px;
}

.product-card ul {
  margin: 26px 0 0;
  padding: 24px 0 0;
  border-top: 1px dashed rgba(168, 183, 204, 0.18);
  color: var(--fd-muted);
  font-family: var(--fd-font-mono);
  line-height: 1.8;
  list-style: none;
}

.product-card li::before {
  content: "- ";
}

.calculator-shell {
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.calculator-tabs {
  position: sticky;
  top: 106px;
  display: grid;
  gap: 10px;
}

.calc-tab {
  min-height: 48px;
  border: 1px solid var(--fd-line);
  border-radius: 14px;
  background: rgba(14, 31, 55, 0.72);
  color: var(--fd-muted);
  font-family: var(--fd-font-mono);
  font-weight: 800;
}

.calc-tab.is-active {
  color: white;
  border-color: var(--fd-line-strong);
  background: var(--fd-blue);
  box-shadow: var(--fd-shadow-blue);
}

.calculator-card {
  padding: 32px;
}

.calc-title-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: start;
  margin-bottom: 26px;
}

.calc-title-row h3 {
  margin: 8px 0 0;
  color: var(--fd-text);
  font-size: 28px;
}

.input-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

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

.field label {
  color: var(--fd-muted);
  font-size: 13px;
  font-weight: 700;
}

.field input,
.field select,
.chat-form input {
  width: 100%;
  min-height: 50px;
  border: 1px solid rgba(168, 183, 204, 0.22);
  border-radius: 12px;
  padding: 0 14px;
  background: rgba(4, 13, 25, 0.72);
  color: var(--fd-text);
}

.field input:focus,
.field select:focus,
.chat-form input:focus {
  border-color: var(--fd-blue);
  outline: 3px solid rgba(32, 148, 255, 0.18);
}

.result-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 310px;
  gap: 24px;
  margin-top: 24px;
  border: 1px solid var(--fd-line);
  border-radius: 22px;
  padding: 26px;
  background: rgba(4, 13, 25, 0.5);
}

.result-panel strong {
  display: block;
  margin-top: 10px;
  color: var(--fd-green);
  font-family: var(--fd-font-mono);
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1;
}

.result-breakdown {
  display: grid;
  gap: 10px;
}

.result-breakdown div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 1px solid rgba(168, 183, 204, 0.16);
  padding-bottom: 10px;
  color: var(--fd-muted);
}

.result-breakdown b {
  color: var(--fd-text);
  font-family: var(--fd-font-mono);
}

.fine-print {
  margin: 18px 0 0;
  font-size: 13px;
}

.chat-feature {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 440px;
  gap: 56px;
  align-items: center;
}

.quick-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.quick-list button {
  border: 1px solid var(--fd-line);
  border-radius: 999px;
  padding: 11px 15px;
  background: rgba(14, 31, 55, 0.72);
  color: var(--fd-blue-2);
  font-weight: 800;
}

.chat-panel,
.chat-window {
  overflow: hidden;
}

.chat-header {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 16px;
  background: #202c33;
  color: white;
}

.chat-header img {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  object-fit: cover;
}

.chat-header strong,
.chat-header span {
  display: block;
}

.chat-header span {
  color: #8fa0ad;
  font-size: 12px;
}

.chat-header button {
  margin-left: auto;
  border: 0;
  background: transparent;
  color: white;
  font-size: 28px;
}

.messages {
  display: grid;
  gap: 10px;
  max-height: 380px;
  padding: 18px;
  overflow: auto;
  background: #081014;
}

.messages article {
  max-width: 84%;
  border-radius: 10px;
  padding: 12px 14px;
  color: white;
  line-height: 1.5;
}

.messages .bot {
  justify-self: start;
  background: #202c33;
}

.messages .user {
  justify-self: end;
  background: #005c4b;
}

.cta-section {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  margin: 0 max(26px, calc((100vw - var(--fd-container)) / 2)) 90px;
  border: 1px solid var(--fd-line-strong);
  border-radius: 28px;
  padding: 42px;
  background: linear-gradient(135deg, rgba(12, 45, 84, 0.98), rgba(18, 107, 188, 0.92));
  box-shadow: var(--fd-shadow-blue);
}

.cta-section h2 {
  margin-top: 0;
}

.cta-section p {
  margin: 0;
  color: #c3cee0;
  font-size: 18px;
}

.footer {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) 0.7fr minmax(0, 1fr);
  gap: 32px;
  padding: 52px max(26px, calc((100vw - var(--fd-container)) / 2));
  border-top: 1px solid var(--fd-line);
  background: #030914;
}

.footer img {
  width: 140px;
}

.footer a,
.footer p {
  display: block;
  color: var(--fd-muted);
  text-decoration: none;
}

.footer strong {
  display: block;
  margin-bottom: 12px;
}

.whatsapp-fab {
  position: fixed;
  right: 100px;
  bottom: 28px;
  z-index: 50;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  color: #ffffff;
  box-shadow: 0 16px 34px rgba(37, 211, 102, 0.3);
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background-color 160ms ease;
}

.whatsapp-fab:hover {
  transform: translateY(-2px);
  background: #1ebe5d;
  box-shadow: 0 20px 40px rgba(37, 211, 102, 0.4);
}

.whatsapp-fab:focus-visible {
  outline: 3px solid rgba(37, 211, 102, 0.34);
  outline-offset: 4px;
}

.whatsapp-fab svg {
  width: 31px;
  height: 31px;
}

.chat-fab {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 50;
  display: grid;
  place-items: center;
  width: 66px;
  height: 66px;
  border: 0;
  border-radius: 50%;
  background: #0d8cff;
  box-shadow: 0 0 34px rgba(32, 148, 255, 0.68);
}

.chat-fab span {
  font-size: 28px;
}

.chat-fab b {
  position: absolute;
  top: -4px;
  right: -3px;
  display: grid;
  place-items: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #ef4444;
  color: white;
  font-size: 12px;
}

.chat-window {
  position: fixed;
  right: 24px;
  bottom: 100px;
  z-index: 60;
  width: min(390px, calc(100vw - 32px));
  border: 1px solid var(--fd-line);
  border-radius: 22px;
  background: #081014;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.5);
}

.chat-form {
  display: flex;
  gap: 8px;
  padding: 12px;
  border-top: 1px solid rgba(168, 183, 204, 0.18);
  background: #081014;
}

.chat-form button {
  width: 48px;
  border: 0;
  border-radius: 50%;
  color: white;
  background: var(--fd-blue);
}

@media (max-width: 1100px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .main-nav {
    display: none;
  }

  .hero,
  .calculator-shell,
  .chat-feature,
  .footer {
    grid-template-columns: 1fr;
  }

  .phone-stage {
    min-height: 600px;
  }

  .advisor-float {
    left: 4%;
  }

  .calculator-tabs {
    position: static;
    grid-template-columns: repeat(3, 1fr);
  }

  .product-grid,
  .answer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 700px) {
  .site-header {
    height: 70px;
    padding: 0 16px;
  }

  .logo-link > span {
    font-size: 20px;
  }

  .logo-link img {
    width: 40px;
    height: 40px;
  }

  .header-actions .sign-in {
    display: none;
  }

  .btn-small {
    min-height: 42px;
    padding: 0 16px;
    font-size: 12px;
  }

  .hero,
  .section {
    padding-left: 16px;
    padding-right: 16px;
  }

  .hero {
    gap: 36px;
    min-height: auto;
    padding-top: 44px;
  }

  .hero-pill {
    margin-bottom: 26px;
    font-size: 11px;
    letter-spacing: 0.12em;
  }

  .hero h1 {
    font-size: 52px;
  }

  .hero p {
    font-size: 17px;
  }

  .trust-row {
    gap: 18px;
  }

  .phone-stage {
    min-height: auto;
  }

  .phone-shell {
    height: 610px;
    border-width: 10px;
  }

  .advisor-float,
  .brand-orb,
  .variation-dock {
    display: none;
  }

  .stats-band,
  .product-grid,
  .answer-grid,
  .input-grid,
  .result-panel {
    grid-template-columns: 1fr;
  }

  .calculator-tabs {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-card,
  .answer-grid article,
  .calculator-card,
  .cta-section {
    padding: 24px;
  }

  .calc-title-row,
  .cta-section {
    display: grid;
  }

  .cta-section {
    margin-left: 16px;
    margin-right: 16px;
  }
}

body.agentic-os-body {
  min-height: 100vh;
  background:
    radial-gradient(circle at 80% 18%, rgba(96, 78, 255, 0.18), transparent 28%),
    radial-gradient(circle at 20% 0%, rgba(37, 117, 255, 0.16), transparent 26%),
    linear-gradient(180deg, #08090f 0%, #110f1e 42%, #140f1a 100%);
  color: #f6efff;
}

.agentic-os-body .os-shell {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  min-height: 100vh;
}

.agentic-os-body .os-sidebar {
  position: sticky;
  top: 0;
  align-self: start;
  min-height: 100vh;
  padding: 30px 22px;
  border-right: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(10, 8, 18, 0.88);
  backdrop-filter: blur(24px);
}

.agentic-os-body .os-brand-block {
  margin-bottom: 30px;
}

.agentic-os-body .os-city,
.agentic-os-body .os-overline,
.agentic-os-body .os-panel-head span,
.agentic-os-body .os-card-head span,
.agentic-os-body .os-sidebar-group p,
.agentic-os-body .os-meta-row span,
.agentic-os-body .os-workspace-card span {
  display: inline-flex;
  color: rgba(214, 196, 255, 0.72);
  font-family: var(--fd-font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.agentic-os-body .os-brand {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-top: 12px;
  color: #fff8ff;
  text-decoration: none;
}

.agentic-os-body .os-brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: linear-gradient(135deg, #7a63ff 0%, #ec7cff 100%);
  color: white;
  font-family: var(--fd-font-mono);
  font-weight: 800;
}

.agentic-os-body .os-brand strong {
  display: block;
  font-size: 28px;
}

.agentic-os-body .os-brand small {
  display: block;
  margin-top: 4px;
  color: rgba(235, 227, 255, 0.64);
}

.agentic-os-body .os-sidebar-group + .os-sidebar-group {
  margin-top: 24px;
}

.agentic-os-body .os-sidebar-group p {
  margin: 0 0 12px;
}

.agentic-os-body .os-agent-cluster + .os-agent-cluster {
  margin-top: 14px;
}

.agentic-os-body .os-agent-cluster-title {
  display: block;
  margin: 0 0 8px;
  padding-left: 4px;
  color: rgba(231, 223, 255, 0.54);
  font-family: var(--fd-font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.agentic-os-body .os-workspace-list,
.agentic-os-body .os-agent-list,
.agentic-os-body .os-self-list {
  display: grid;
  gap: 10px;
}

.agentic-os-body .os-workspace-card,
.agentic-os-body .os-agent-row,
.agentic-os-body .os-self-list span,
.agentic-os-body .os-mode-pill,
.agentic-os-body .os-command-chip,
.agentic-os-body .os-command-row,
.agentic-os-body .os-panel,
.agentic-os-body .os-pill-button,
.agentic-os-body .os-approval-card,
.agentic-os-body .os-decision-card,
.agentic-os-body .os-routing-row,
.agentic-os-body .os-voice-card,
.agentic-os-body .os-factory-card {
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(22, 18, 34, 0.86);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.02);
}

.agentic-os-body .os-workspace-card {
  display: grid;
  gap: 4px;
  padding: 14px;
  border-radius: 18px;
}

.agentic-os-body .os-workspace-card strong,
.agentic-os-body .os-agent-copy strong,
.agentic-os-body .os-panel-head strong,
.agentic-os-body .os-card-head strong {
  color: #fff7ff;
}

.agentic-os-body .os-workspace-card small,
.agentic-os-body .os-panel-copy,
.agentic-os-body .os-routing-row small,
.agentic-os-body .os-approval-card p {
  color: rgba(231, 223, 255, 0.66);
  line-height: 1.55;
}

.agentic-os-body .os-agent-row,
.agentic-os-body .os-command-row,
.agentic-os-body .os-mode-pill,
.agentic-os-body .os-command-chip,
.agentic-os-body .os-pill-button {
  display: flex;
  gap: 12px;
  align-items: center;
  width: 100%;
  border-radius: 16px;
  padding: 12px 14px;
  color: rgba(231, 223, 255, 0.8);
  background: rgba(22, 18, 34, 0.7);
}

.agentic-os-body .os-agent-row {
  align-items: flex-start;
}

.agentic-os-body .os-agent-copy {
  display: grid;
  gap: 4px;
  text-align: left;
}

.agentic-os-body .os-agent-copy strong {
  display: block;
  font-size: 14px;
}

.agentic-os-body .os-agent-copy small {
  color: rgba(231, 223, 255, 0.62);
  font-family: var(--fd-font-mono);
  font-size: 11px;
  letter-spacing: 0.04em;
}

.agentic-os-body .os-agent-row.is-active,
.agentic-os-body .os-command-row.is-active,
.agentic-os-body .os-command-chip.is-active,
.agentic-os-body .os-mode-pill.is-active {
  border-color: rgba(110, 129, 255, 0.66);
  background: linear-gradient(135deg, rgba(46, 61, 122, 0.94), rgba(96, 57, 132, 0.92));
  color: white;
}

.agentic-os-body .os-agent-dot {
  width: 10px;
  height: 10px;
  margin-top: 5px;
  border-radius: 50%;
  flex: 0 0 auto;
}

.agentic-os-body .os-agent-dot.is-sun { background: #ff9b61; }
.agentic-os-body .os-agent-dot.is-pink { background: #ff6ac7; }
.agentic-os-body .os-agent-dot.is-blue { background: #6ea0ff; }
.agentic-os-body .os-agent-dot.is-violet { background: #8a7fff; }
.agentic-os-body .os-agent-dot.is-purple { background: #b468ff; }
.agentic-os-body .os-agent-dot.is-mint { background: #57ddb5; }
.agentic-os-body .os-agent-dot.is-orange { background: #ff8b67; }
.agentic-os-body .os-agent-dot.is-teal { background: #3ed6d0; }

.agentic-os-body .os-self-list span {
  border-radius: 14px;
  padding: 12px 14px;
  color: rgba(231, 223, 255, 0.68);
}

.agentic-os-body .os-main {
  padding: 30px;
}

.agentic-os-body .os-topbar {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: start;
}

.agentic-os-body .os-overline {
  margin: 0 0 14px;
}

.agentic-os-body #os-agent-title {
  margin: 0;
  font-size: clamp(52px, 6vw, 84px);
  font-weight: 700;
  letter-spacing: -0.05em;
}

.agentic-os-body .os-subtitle {
  max-width: 760px;
  margin: 14px 0 0;
  color: rgba(244, 238, 255, 0.72);
  font-size: 20px;
  line-height: 1.6;
}

.agentic-os-body .os-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.agentic-os-body .os-meta-row span,
.agentic-os-body .os-top-actions .os-pill-button {
  border-radius: 999px;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.04);
}

.agentic-os-body .os-top-actions {
  display: flex;
  gap: 10px;
}

.agentic-os-body .os-pill-button {
  width: auto;
  white-space: nowrap;
}

.agentic-os-body .os-pill-button.is-strong {
  background: linear-gradient(135deg, #7964ff 0%, #e57dff 100%);
  color: white;
}

.agentic-os-body .os-mode-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.agentic-os-body .os-mode-pill {
  width: auto;
  border-radius: 999px;
  font-family: var(--fd-font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.agentic-os-body .os-hero-grid,
.agentic-os-body .os-detail-grid {
  display: grid;
  gap: 18px;
  margin-top: 24px;
}

.agentic-os-body .os-hero-grid {
  grid-template-columns: 1.15fr 1fr;
}

.agentic-os-body .os-detail-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.agentic-os-body .os-voice-card,
.agentic-os-body .os-factory-card,
.agentic-os-body .os-panel {
  border-radius: 28px;
  padding: 22px;
}

.agentic-os-body .os-card-head,
.agentic-os-body .os-panel-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: start;
}

.agentic-os-body .os-card-head strong,
.agentic-os-body .os-panel-head strong {
  display: block;
  margin-top: 8px;
  font-size: 24px;
}

.agentic-os-body .os-card-head small {
  color: rgba(231, 223, 255, 0.58);
  font-family: var(--fd-font-mono);
  font-size: 12px;
}

.agentic-os-body .os-playback-row {
  display: flex;
  justify-content: center;
  gap: 26px;
  align-items: center;
  margin: 36px 0 28px;
}

.agentic-os-body .os-control-ring,
.agentic-os-body .os-control-play {
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: white;
}

.agentic-os-body .os-control-ring {
  width: 74px;
  height: 74px;
  font-family: var(--fd-font-mono);
  font-size: 24px;
}

.agentic-os-body .os-control-play {
  position: relative;
  width: 110px;
  height: 110px;
}

.agentic-os-body .os-control-play::before {
  position: absolute;
  top: 50%;
  left: 50%;
  content: "";
  border-top: 18px solid transparent;
  border-bottom: 18px solid transparent;
  border-left: 28px solid white;
  transform: translate(-36%, -50%);
}

.agentic-os-body .os-orb-stage {
  display: grid;
  justify-items: center;
  padding: 24px 18px 18px;
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(30, 24, 46, 0.8), rgba(18, 14, 28, 0.8));
}

.agentic-os-body .os-orb-core {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 30%, #7ea8ff 0%, #4c73ff 34%, #2a3bb6 100%);
  box-shadow:
    0 0 28px rgba(126, 168, 255, 0.4),
    0 0 72px rgba(82, 110, 255, 0.32);
}

.agentic-os-body .os-orb-stage p,
.agentic-os-body .os-orb-stage small {
  max-width: 440px;
  text-align: center;
}

.agentic-os-body .os-orb-stage p {
  margin: 20px 0 8px;
  color: rgba(245, 241, 255, 0.84);
}

.agentic-os-body .os-orb-stage small {
  color: rgba(220, 211, 241, 0.62);
}

.agentic-os-body .os-quick-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.agentic-os-body .os-command-chip {
  width: auto;
  border-radius: 999px;
  font-family: var(--fd-font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.agentic-os-body .os-factory-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 1.04fr;
  gap: 18px;
  margin-top: 24px;
}

.agentic-os-body .os-builder-stack,
.agentic-os-body .os-preview-stage {
  border-radius: 24px;
  padding: 18px;
  background: rgba(12, 10, 20, 0.68);
}

.agentic-os-body .os-builder-input {
  display: grid;
  gap: 8px;
}

.agentic-os-body .os-builder-input label {
  color: rgba(220, 211, 241, 0.64);
  font-family: var(--fd-font-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.agentic-os-body .os-builder-input textarea,
.agentic-os-body .os-code-panel {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 14px;
  background: rgba(22, 18, 34, 0.88);
  color: #fff7ff;
  font-family: var(--fd-font-mono);
}

.agentic-os-body .os-builder-input textarea {
  min-height: 92px;
  resize: none;
}

.agentic-os-body .os-build-list {
  display: grid;
  gap: 10px;
  margin: 16px 0;
  padding-left: 18px;
  color: rgba(231, 223, 255, 0.76);
}

.agentic-os-body .os-code-panel {
  min-height: 180px;
  margin: 0;
  white-space: pre-wrap;
  line-height: 1.7;
}

.agentic-os-body .os-preview-screen {
  display: grid;
  place-items: center;
  min-height: 340px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(9, 9, 15, 0.96), rgba(19, 16, 28, 0.96));
  color: rgba(231, 223, 255, 0.72);
}

.agentic-os-body .os-preview-dot {
  width: 26px;
  height: 26px;
  margin-bottom: 14px;
  border: 4px solid rgba(112, 214, 184, 0.24);
  border-top-color: #63d2b4;
  border-radius: 50%;
  animation: os-spin 1s linear infinite;
}

.agentic-os-body .os-preview-tabs {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 12px;
  color: rgba(203, 191, 231, 0.68);
  font-family: var(--fd-font-mono);
  font-size: 11px;
}

.agentic-os-body .os-routing-table,
.agentic-os-body .os-approval-list,
.agentic-os-body .os-command-list,
.agentic-os-body .os-tag-grid,
.agentic-os-body .os-run-list,
.agentic-os-body .os-decision-list {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.agentic-os-body .os-routing-row,
.agentic-os-body .os-approval-card,
.agentic-os-body .os-decision-card {
  border-radius: 18px;
  padding: 16px;
}

.agentic-os-body .os-routing-row strong,
.agentic-os-body .os-approval-card strong,
.agentic-os-body .os-decision-card strong {
  display: block;
  margin-bottom: 6px;
}

.agentic-os-body .os-decision-card {
  display: grid;
  gap: 10px;
  background:
    linear-gradient(135deg, rgba(48, 72, 104, 0.78), rgba(25, 23, 37, 0.92));
}

.agentic-os-body .os-decision-card div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: start;
}

.agentic-os-body .os-decision-card div span {
  border-radius: 999px;
  padding: 7px 10px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(231, 223, 255, 0.76);
  font-family: var(--fd-font-mono);
  font-size: 10px;
  letter-spacing: 0.04em;
  text-align: right;
  text-transform: uppercase;
}

.agentic-os-body .os-decision-card p,
.agentic-os-body .os-decision-card small {
  margin: 0;
  color: rgba(231, 223, 255, 0.68);
  line-height: 1.55;
}

.agentic-os-body .os-decision-card small {
  color: rgba(87, 221, 181, 0.78);
  font-family: var(--fd-font-mono);
  font-size: 11px;
}

.agentic-os-body .os-approval-card div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.agentic-os-body .os-approval-card div span,
.agentic-os-body .os-tag-grid span,
.agentic-os-body .os-run-list span {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  border-radius: 999px;
  padding: 9px 12px;
  background: rgba(255, 255, 255, 0.05);
  color: rgba(236, 229, 255, 0.8);
  font-family: var(--fd-font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.agentic-os-body .os-command-row {
  display: grid;
  justify-items: start;
}

.agentic-os-body .os-command-row strong {
  color: white;
  font-family: var(--fd-font-mono);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.agentic-os-body .os-command-row small {
  color: rgba(231, 223, 255, 0.66);
}

.agentic-os-body .os-inline-link {
  display: inline-flex;
  margin-top: 20px;
  color: #9dc0ff;
  font-family: var(--fd-font-mono);
  text-decoration: none;
}

@keyframes os-spin {
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 1180px) {
  .agentic-os-body .os-shell,
  .agentic-os-body .os-hero-grid,
  .agentic-os-body .os-factory-grid,
  .agentic-os-body .os-detail-grid {
    grid-template-columns: 1fr;
  }

  .agentic-os-body .os-sidebar {
    position: static;
    min-height: auto;
  }
}

@media (max-width: 720px) {
  .agentic-os-body .os-main,
  .agentic-os-body .os-sidebar {
    padding: 18px 16px;
  }

  .agentic-os-body .os-topbar,
  .agentic-os-body .os-card-head,
  .agentic-os-body .os-panel-head {
    display: grid;
  }

  .agentic-os-body .os-top-actions {
    margin-top: 14px;
    flex-wrap: wrap;
  }

  .agentic-os-body #os-agent-title {
    font-size: 44px;
  }
}

/* Findost MVP rebuild */
body:not(.agentic-os-body) {
  --fd-navy: #071426;
  --fd-ink: #101820;
  --fd-graphite: #25313d;
  --fd-muted: #617080;
  --fd-soft: #eef4f8;
  --fd-paper: #ffffff;
  --fd-line: rgba(16, 24, 32, 0.12);
  --fd-line-strong: rgba(21, 101, 192, 0.36);
  --fd-blue: #1565c0;
  --fd-blue-2: #0b7bd3;
  --fd-green: #15936b;
  --fd-card: #ffffff;
  color: var(--fd-ink);
  background:
    linear-gradient(180deg, #ffffff 0%, #f5f8fb 42%, #eef4f8 100%);
}

body:not(.agentic-os-body) .site-header {
  height: 76px;
  border-bottom: 1px solid var(--fd-line);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 14px 34px rgba(16, 24, 32, 0.06);
}

body:not(.agentic-os-body) .logo-link,
body:not(.agentic-os-body) .main-nav a,
body:not(.agentic-os-body) .sign-in {
  color: var(--fd-ink);
}

body:not(.agentic-os-body) .logo-link img {
  border: 1px solid var(--fd-line);
  border-radius: 6px;
  box-shadow: none;
}

body:not(.agentic-os-body) .logo-link > span {
  color: var(--fd-ink);
  font-size: 24px;
  letter-spacing: 0.16em;
}

body:not(.agentic-os-body) .main-nav a,
body:not(.agentic-os-body) .sign-in {
  color: #4d5a66;
  font-size: 13px;
}

body:not(.agentic-os-body) .main-nav a:hover,
body:not(.agentic-os-body) .sign-in:hover {
  color: var(--fd-blue);
}

body:not(.agentic-os-body) .btn {
  min-height: 48px;
  border-color: var(--fd-line);
  border-radius: 8px;
  color: var(--fd-ink);
  background: #ffffff;
  box-shadow: none;
  letter-spacing: 0.01em;
  text-transform: none;
}

body:not(.agentic-os-body) .btn:hover {
  border-color: var(--fd-blue);
  box-shadow: 0 14px 28px rgba(21, 101, 192, 0.14);
}

body:not(.agentic-os-body) .btn-primary {
  border-color: #0d5fb5;
  background: #0d5fb5;
  color: #ffffff;
}

body:not(.agentic-os-body) .btn-ghost {
  color: var(--fd-blue);
}

body:not(.agentic-os-body) .btn-small {
  min-height: 44px;
  padding: 0 18px;
  font-size: 13px;
}

body:not(.agentic-os-body) .hero {
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 0.8fr);
  gap: 68px;
  min-height: calc(100vh - 76px - 48px);
  padding-top: 72px;
  padding-bottom: 72px;
  background:
    linear-gradient(90deg, #ffffff 0%, rgba(255, 255, 255, 0.84) 58%, rgba(238, 244, 248, 0.74) 100%),
    linear-gradient(135deg, #f9fbfd 0%, #e9f3fb 100%);
}

body:not(.agentic-os-body) .hero::before {
  display: none;
}

body:not(.agentic-os-body) .hero-copy,
body:not(.agentic-os-body) .wealth-terminal {
  position: relative;
  z-index: 1;
}

body:not(.agentic-os-body) .hero h1 {
  max-width: 760px;
  margin: 0 0 24px;
  color: var(--fd-ink);
  font-size: clamp(52px, 6.8vw, 92px);
  font-weight: 700;
  letter-spacing: 0;
}

body:not(.agentic-os-body) .hero p {
  max-width: 690px;
  color: #40505f;
  font-size: clamp(18px, 1.7vw, 24px);
  line-height: 1.55;
}

body:not(.agentic-os-body) .trust-row {
  gap: 30px;
  margin-top: 34px;
}

body:not(.agentic-os-body) .trust-row span {
  color: #647486;
  font-size: 11px;
}

body:not(.agentic-os-body) .trust-row strong {
  color: var(--fd-blue);
  font-size: 20px;
}

.wealth-terminal {
  border: 1px solid rgba(7, 20, 38, 0.12);
  border-radius: 8px;
  padding: 24px;
  background: #071426;
  color: #ffffff;
  box-shadow: 0 28px 70px rgba(7, 20, 38, 0.24);
}

.terminal-top,
.score-card,
.terminal-note {
  border-radius: 8px;
}

.terminal-top {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: start;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.terminal-top span,
.score-card span,
.terminal-grid span,
.terminal-note span,
.card-index,
.intake-steps span {
  color: rgba(221, 232, 242, 0.72);
  font-family: var(--fd-font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.terminal-top strong {
  display: block;
  margin-top: 6px;
  font-size: 28px;
}

.terminal-top b {
  border-radius: 999px;
  padding: 7px 10px;
  background: rgba(21, 147, 107, 0.14);
  color: #6de0bd;
  font-family: var(--fd-font-mono);
  font-size: 11px;
  text-transform: uppercase;
}

.score-card {
  display: grid;
  grid-template-columns: 128px minmax(0, 1fr);
  gap: 22px;
  align-items: center;
  margin-top: 22px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.08);
}

.score-card strong {
  display: block;
  margin-top: 6px;
  color: #6de0bd;
  font-family: var(--fd-font-mono);
  font-size: 58px;
  line-height: 1;
}

body:not(.agentic-os-body) .wealth-terminal .score-card p,
body:not(.agentic-os-body) .wealth-terminal .terminal-note p {
  margin: 0;
  color: rgba(239, 246, 252, 0.78);
  font-size: 15px;
  line-height: 1.55;
}

.terminal-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 14px;
}

.terminal-grid article {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.05);
}

.terminal-grid strong {
  display: block;
  margin-top: 8px;
  color: #ffffff;
  font-size: 18px;
}

.terminal-grid small {
  display: block;
  margin-top: 8px;
  color: rgba(221, 232, 242, 0.66);
  line-height: 1.4;
}

.terminal-note {
  margin-top: 14px;
  padding: 18px;
  background: rgba(21, 101, 192, 0.22);
}

body:not(.agentic-os-body) .wealth-terminal .terminal-note p {
  margin-top: 8px;
}

body:not(.agentic-os-body) .stats-band {
  border-color: var(--fd-line);
  background: #ffffff;
}

body:not(.agentic-os-body) .stats-band article {
  border-right-color: var(--fd-line);
}

body:not(.agentic-os-body) .stats-band strong {
  color: var(--fd-blue);
}

body:not(.agentic-os-body) .stats-band span {
  color: var(--fd-muted);
}

body:not(.agentic-os-body) .section,
body:not(.agentic-os-body) .section.alt {
  background: transparent;
}

body:not(.agentic-os-body) .fd-section {
  background: #ffffff;
}

body:not(.agentic-os-body) .section-head h2,
body:not(.agentic-os-body) .cta-section h2 {
  color: var(--fd-ink);
  letter-spacing: 0;
}

body:not(.agentic-os-body) .section-head p,
body:not(.agentic-os-body) .answer-grid p,
body:not(.agentic-os-body) .product-card p,
body:not(.agentic-os-body) .footer p,
body:not(.agentic-os-body) .fine-print {
  color: var(--fd-muted);
}

body:not(.agentic-os-body) .product-card,
body:not(.agentic-os-body) .answer-grid article,
body:not(.agentic-os-body) .calculator-card,
body:not(.agentic-os-body) .chat-panel,
.wealth-form {
  border: 1px solid var(--fd-line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 18px 46px rgba(16, 24, 32, 0.08);
}

body:not(.agentic-os-body) .product-card,
body:not(.agentic-os-body) .answer-grid article {
  min-height: 270px;
  padding: 32px;
}

body:not(.agentic-os-body) .product-card.featured {
  background: #f6fbff;
}

body:not(.agentic-os-body) .card-index,
body:not(.agentic-os-body) .product-card span.card-index {
  display: inline-flex;
  width: auto;
  height: auto;
  margin-bottom: 28px;
  border: 0;
  clip-path: none;
  color: var(--fd-blue);
  font-size: 12px;
}

body:not(.agentic-os-body) .product-card h3,
body:not(.agentic-os-body) .answer-grid h3 {
  color: var(--fd-ink);
  font-size: 25px;
}

body:not(.agentic-os-body) .product-card ul {
  border-top-color: var(--fd-line);
  color: var(--fd-muted);
}

body:not(.agentic-os-body) .calculator-tabs {
  gap: 8px;
}

body:not(.agentic-os-body) .calc-tab {
  border-radius: 8px;
  background: #ffffff;
  color: #526373;
}

body:not(.agentic-os-body) .calc-tab.is-active {
  border-color: var(--fd-blue);
  background: var(--fd-blue);
  box-shadow: none;
}

body:not(.agentic-os-body) .calc-title-row h3 {
  color: var(--fd-ink);
}

body:not(.agentic-os-body) .field label,
.wealth-form label {
  color: #354454;
  font-size: 13px;
  font-weight: 700;
}

body:not(.agentic-os-body) .field input,
body:not(.agentic-os-body) .field select,
body:not(.agentic-os-body) .chat-form input,
.wealth-form input,
.wealth-form select,
.wealth-form textarea {
  border: 1px solid var(--fd-line);
  border-radius: 8px;
  background: #fbfdff;
  color: var(--fd-ink);
}

body:not(.agentic-os-body) .result-panel {
  border-color: var(--fd-line);
  border-radius: 8px;
  background: #f6fbff;
}

body:not(.agentic-os-body) .result-panel strong {
  color: var(--fd-green);
}

body:not(.agentic-os-body) .result-breakdown div {
  border-bottom-color: var(--fd-line);
  color: var(--fd-muted);
}

body:not(.agentic-os-body) .result-breakdown b {
  color: var(--fd-ink);
}

body:not(.agentic-os-body) .chat-feature {
  grid-template-columns: minmax(0, 1fr) 440px;
}

body:not(.agentic-os-body) .quick-list button {
  border-radius: 8px;
  background: #ffffff;
  color: var(--fd-blue);
}

body:not(.agentic-os-body) .chat-header {
  background: #071426;
}

body:not(.agentic-os-body) .messages {
  background: #f6fbff;
}

body:not(.agentic-os-body) .messages article {
  color: var(--fd-ink);
}

body:not(.agentic-os-body) .messages .bot {
  background: #ffffff;
  border: 1px solid var(--fd-line);
}

body:not(.agentic-os-body) .messages .user {
  background: #e5f1ff;
}

.compliance-grid article:nth-child(2) {
  border-color: rgba(21, 101, 192, 0.34);
  background: #f6fbff;
}

.intake-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(480px, 1fr);
  gap: 46px;
  align-items: start;
}

.intake-shell h2 {
  margin: 0 0 18px;
  color: var(--fd-ink);
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.08;
}

.intake-shell > div > p {
  margin: 0;
  color: var(--fd-muted);
  font-size: 18px;
  line-height: 1.7;
}

.intake-steps {
  display: grid;
  gap: 10px;
  margin-top: 30px;
}

.intake-steps span {
  width: fit-content;
  border: 1px solid var(--fd-line);
  border-radius: 8px;
  padding: 12px 14px;
  color: var(--fd-graphite);
  background: #ffffff;
}

.wealth-form {
  display: grid;
  gap: 18px;
  padding: 28px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.wealth-form label {
  display: grid;
  gap: 8px;
}

.wealth-form input,
.wealth-form select {
  min-height: 48px;
  padding: 0 12px;
}

.wealth-form textarea {
  min-height: 126px;
  padding: 13px 12px;
  resize: vertical;
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: var(--fd-blue);
  font-weight: 700;
}

.form-status.is-error {
  color: #b42318;
}

.form-status.is-success {
  color: var(--fd-green);
}

body:not(.agentic-os-body) .footer {
  border-top-color: var(--fd-line);
  background: #071426;
}

body:not(.agentic-os-body) .chat-fab {
  border-radius: 8px;
  background: var(--fd-blue);
  box-shadow: 0 20px 38px rgba(21, 101, 192, 0.24);
}

body:not(.agentic-os-body) .whatsapp-fab {
  border-radius: 8px;
}

body:not(.agentic-os-body) .chat-fab span {
  color: #ffffff;
  font-family: var(--fd-font-mono);
  font-size: 15px;
  font-weight: 800;
}

body:not(.agentic-os-body) .chat-window {
  border-radius: 8px;
  background: #ffffff;
}

body:not(.agentic-os-body) .chat-form {
  background: #ffffff;
}

body:not(.agentic-os-body) .chat-form button {
  width: auto;
  min-width: 66px;
  border-radius: 8px;
  background: var(--fd-blue);
}

@media (max-width: 1100px) {
  body:not(.agentic-os-body) .hero,
  body:not(.agentic-os-body) .chat-feature,
  .intake-shell {
    grid-template-columns: 1fr;
  }

  .wealth-terminal {
    max-width: 720px;
  }
}

@media (max-width: 700px) {
  body:not(.agentic-os-body) .hero {
    padding-top: 42px;
  }

  body:not(.agentic-os-body) .hero h1 {
    font-size: 42px;
  }

  .terminal-grid,
  .score-card,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .wealth-terminal,
  .wealth-form {
    padding: 20px;
  }

  .whatsapp-fab {
    right: 84px;
    bottom: 22px;
    width: 54px;
    height: 54px;
  }

  .chat-fab {
    right: 18px;
    bottom: 18px;
    width: 58px;
    height: 58px;
  }
}
