.hero {
  position: relative;
  min-height: 100vh;
  height: 100vh;
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 560px);
  grid-template-rows: 1fr;
  gap: clamp(40px, 5vw, 80px);
  padding-top: clamp(120px, 14vw, 170px);
  padding-bottom: clamp(60px, 10vw, 100px);
  padding-left: clamp(40px, calc(50vw - 960px), 520px);
  padding-right: clamp(32px, calc(50vw - 1000px), 400px);
  overflow: hidden;
  background: var(--canvas);
  align-items: stretch;
  align-content: stretch;
}
.hero__right {
  justify-self: end;
  align-self: center;
}
.hero__navy {
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 28%;
  background: linear-gradient(170deg, color-mix(in srgb, var(--accent-base) 7%, var(--canvas)) 0%, color-mix(in srgb, var(--accent-base) 12%, var(--canvas)) 100%);
  clip-path: polygon(0 0, 100% 0, calc(100% - 180px) 100%, 0 100%);
  overflow: hidden;
  z-index: 0;
}
[data-theme="dark"] .hero__navy {
  background: linear-gradient(170deg, var(--navy-1) 0%, var(--navy-2) 100%);
}
.hero__navy::before,
.hero__navy::after {
  content: "";
  position: absolute; top: -10%;
  width: 1px; height: 140%;
  background: color-mix(in srgb, var(--accent-base) 55%, transparent);
  transform: rotate(13.5deg);
}
[data-theme="dark"] .hero__navy::before,
[data-theme="dark"] .hero__navy::after {
  background: rgba(255, 255, 255, 0.45);
}
.hero__navy::before { right: 60px; }
.hero__navy::after { right: 95px; opacity: 0.18; }
.hero__navy-accent {
  position: absolute;
  bottom: 4%;
  left: 12%;
  width: 1px;
  height: 38%;
  background: var(--accent-base);
  transform: rotate(13.5deg);
}
.hero__navy-glow {
  position: absolute;
  inset: -10% -20% -10% 20%;
  background: radial-gradient(circle at 30% 60%, color-mix(in srgb, var(--accent-base) 22%, transparent), transparent 70%);
  pointer-events: none;
  opacity: 0.55;
}
[data-theme="dark"] .hero__navy-glow {
  background: radial-gradient(circle at 30% 60%, color-mix(in srgb, var(--accent-base) 35%, transparent), transparent 70%);
  opacity: 0.45;
}
.hero__body {
  position: relative;
  padding: clamp(120px, 14vw, 170px) 7vw clamp(60px, 10vw, 100px) clamp(40px, 6vw, 80px);
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}
.hero__left {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 100%;
  padding-top: clamp(20px, 4vw, 60px);
}
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--mono);
  font-size: clamp(12px, 0.85vw, 14px);
  font-weight: 500;
  letter-spacing: 0.32em;
  color: var(--accent-base);
  padding: 9px 18px;
  border: 1px solid color-mix(in srgb, var(--accent-base) 30%, transparent);
  background: var(--accent-soft);
  border-radius: 999px;
  margin-bottom: 36px;
  align-self: flex-start;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  white-space: nowrap;
  max-width: 100%;
}
@media (max-width: 500px) {
  .hero__eyebrow {
    white-space: normal;
    font-size: 10px;
    letter-spacing: 0.22em;
    text-align: center;
  }
}
.hero__eyebrow::before {
  content: "";
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--accent-base);
  box-shadow: 0 0 16px var(--accent-base), 0 0 4px var(--accent-base);
  animation: pulseDot 2.4s ease-in-out infinite;
  flex-shrink: 0;
}
.hero__eyebrow::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 30%, color-mix(in srgb, var(--accent-base) 40%, transparent) 50%, transparent 70%);
  background-size: 250% 100%;
  animation: ebShimmer 3.6s linear infinite;
  pointer-events: none;
  z-index: -1;
}
@keyframes ebShimmer {
  0% { background-position: 150% 0%; }
  100% { background-position: -150% 0%; }
}
@keyframes pulseDot { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }

.hero__headline {
  font-family: var(--display);
  font-size: clamp(40px, 5.4vw, 84px);
  font-weight: 200;
  letter-spacing: -0.022em;
  line-height: 0.98;
  color: var(--headline);
  margin: 0;
  max-width: min(100%, 1200px);
  word-spacing: 0.08em;
  cursor: pointer;
  user-select: none;
}
.hero--flipped .hero__headline {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}
.hero--flipped .hero__headline .line {
  padding: 0.04em 0;
  white-space: nowrap;
}
.hero--flipped .hero__headline .line:nth-child(2) { padding-left: 1.2em; color: var(--accent-base); }
.hero--flipped .hero__headline .line:nth-child(3) { padding-left: 2.4em; }
.hero__headline .line {
  display: block;
  white-space: normal;
  line-height: 1.04;
  word-spacing: 0.04em;
}
.hero__headline .line .word {
  display: inline-block;
  white-space: nowrap;
}
.hero__headline .line .char {
  display: inline-block;
  will-change: transform;
}
.hero__headline .line em {
  margin-left: 0.06em;
}
.hero__headline .line .char {
  display: inline-block;
  will-change: transform;
}
.hero__headline .line .char[data-space="1"] { width: 0.32em; }
.hero__headline em,
.hero__headline em .word,
.hero__headline em .char {
  font-style: normal;
  font-weight: 300;
  background: linear-gradient(120deg, var(--accent-base) 0%, var(--pop-2) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.hero__strap {
  margin-top: 26px;
  font-size: 18px;
  color: var(--body);
  line-height: 1.55;
  font-weight: 400;
  max-width: 44ch;
}
.hero__strap b { color: var(--headline); font-weight: 600; }

.hero__cta {
  margin-top: auto;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero__trust {
  margin-top: 32px;
  border-top: 1px solid var(--card-line);
  padding-top: 28px;
  padding-bottom: clamp(48px, 6vw, 80px);
}
.hero__trust-line {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--mute);
  text-transform: uppercase;
  margin-bottom: 18px;
}
.hero__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.hero__stats > div { display: flex; flex-direction: column; gap: 4px; }
.hero__stats b {
  font-family: var(--display);
  font-size: clamp(24px, 2.2vw, 34px);
  font-weight: 200;
  color: var(--headline);
  letter-spacing: -0.01em;
}
.hero__stats span {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  color: var(--mute);
  text-transform: uppercase;
}

.hero__right {
  position: relative;
  z-index: 2;
  min-height: 440px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: center;
  justify-content: center;
}
.hero__viz-toggle {
  display: flex; gap: 4px; padding: 3px;
  background: var(--accent-soft);
  border-radius: 999px;
  position: relative;
  z-index: 3;
}
.viz-btn {
  padding: 6px 16px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mute);
  background: transparent;
  transition: background 200ms var(--easing), color 200ms var(--easing);
}
.viz-btn.is-active {
  background: var(--accent-base);
  color: #fff;
}
.hero-orb-wrapper {
  position: relative;
  width: clamp(280px, 32vw, 520px);
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-orb-wrapper::after {
  content: "";
  position: absolute; inset: 8%;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, color-mix(in srgb, var(--accent-base) 30%, transparent), transparent 70%);
  pointer-events: none;
  z-index: -1;
  filter: blur(20px);
  opacity: 0.6;
}
.orb-status {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 8px 16px;
  background: var(--card);
  border: 1px solid var(--card-line);
  border-radius: 999px;
  position: relative;
  z-index: 3;
}
.orb-status-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent-base);
  box-shadow: 0 0 10px var(--accent-base);
  animation: pulseDot 2.4s ease-in-out infinite;
}
.orb-status-text {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--headline);
  text-transform: uppercase;
}

.hero__meta {
  position: absolute;
  bottom: 28px; left: 0; right: 0;
  display: flex;
  justify-content: space-between;
  padding: 0 7vw 0 6vw;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--mute);
  pointer-events: none;
  z-index: 4;
  text-transform: uppercase;
}
.hero__meta b { color: var(--headline); font-weight: 600; }

.marquee {
  position: relative;
  height: clamp(220px, 22vw, 320px);
  background: linear-gradient(110deg, var(--navy-1) 0%, var(--navy-2) 100%);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1200px;
}
.marquee::before,
.marquee::after {
  content: "";
  position: absolute; top: 0; bottom: 0;
  width: 14%;
  z-index: 2;
  pointer-events: none;
}
.marquee::before { left: 0; background: linear-gradient(to right, var(--navy-1), transparent); }
.marquee::after { right: 0; background: linear-gradient(to left, var(--navy-1), transparent); }
.marquee .tube {
  position: relative;
  width: 100%;
  height: 14vw;
  min-height: 160px;
}
.marquee .line {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  line-height: 1;
  margin: 0;
  letter-spacing: -0.4vw;
  font-size: clamp(48px, 11vw, 168px);
  font-family: var(--display);
  font-weight: 200;
  white-space: nowrap;
  color: var(--off-white);
}
.marquee .line .char {
  display: inline-block;
  opacity: 0;
}
[data-theme="dark"] .marquee .line { color: rgba(255,255,255,0.95); }
.marquee__hint {
  position: absolute;
  bottom: 24px; left: 50%;
  transform: translateX(-50%);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.4em;
  color: rgba(255, 255, 255, 0.4);
  z-index: 3;
  text-transform: uppercase;
}

.hosting-showcase {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: start;
  margin-bottom: 72px;
}
.studio-mockup {
  background: var(--card);
  border: 1px solid var(--card-line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lift);
  display: flex;
  flex-direction: column;
}
.studio-mockup__bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 18px;
  background: var(--canvas-soft);
  border-bottom: 1px solid var(--card-line);
}
.studio-mockup__bar .dot { width: 10px; height: 10px; border-radius: 50%; }
.studio-mockup__bar .dot.r { background: #ff5f57; }
.studio-mockup__bar .dot.y { background: #ffbd2e; }
.studio-mockup__bar .dot.g { background: #28c840; }
.studio-mockup__title {
  margin-left: 14px;
  font-size: 12px;
  color: var(--mute);
  font-weight: 500;
}
.studio-mockup__chip {
  margin-left: auto;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  padding: 4px 10px;
  background: var(--accent-soft);
  color: var(--accent-base);
  border-radius: 999px;
}
.studio-mockup__body {
  display: grid;
  grid-template-columns: 180px 1fr;
  min-height: 460px;
  flex: 1;
}
.studio-mockup__sidebar {
  padding: 16px;
  background: var(--canvas-soft);
  border-right: 1px solid var(--card-line);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.studio-mockup__sidebar .nav {
  padding: 9px 12px;
  border-radius: 8px;
  font-size: 13px;
  color: var(--mute);
  cursor: pointer;
  transition: background 200ms var(--easing), color 200ms var(--easing);
  font-weight: 500;
}
.studio-mockup__sidebar .nav.active {
  background: var(--card);
  color: var(--headline);
  box-shadow: 0 1px 0 var(--card-line);
}
.studio-mockup__chat {
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.bubble {
  padding: 12px 16px;
  border-radius: 14px;
  max-width: 90%;
  font-size: 13.5px;
  line-height: 1.55;
  font-weight: 400;
}
.bubble.user {
  align-self: flex-end;
  background: var(--navy-1);
  color: #fff;
  border-bottom-right-radius: 4px;
}
.bubble.ai {
  align-self: flex-start;
  background: var(--canvas-soft);
  color: var(--headline);
  border-bottom-left-radius: 4px;
}
.bubble .ai-label {
  display: block;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  color: var(--accent-base);
  margin-bottom: 6px;
  text-transform: uppercase;
}
.pipeline {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
  flex-wrap: wrap;
}
.pipeline .step {
  padding: 5px 11px;
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--accent-base);
  background: var(--accent-soft);
  border: 1px solid color-mix(in srgb, var(--accent-base) 24%, transparent);
}
.pipeline .step.done {
  background: var(--accent-base);
  color: #fff;
  border-color: var(--accent-base);
}
.pipeline .arrow { color: var(--mute); font-size: 14px; }
.studio-mockup__preview {
  margin-top: auto;
  padding: 18px 22px;
  border-top: 1px dashed var(--card-line);
  display: grid;
  grid-template-columns: 110px 1fr auto;
  align-items: center;
  gap: 14px;
  background: var(--canvas);
}
.studio-mockup__preview .thumb {
  height: 64px;
  width: 100%;
  border-radius: 8px;
  background:
    linear-gradient(135deg, var(--accent-soft) 0%, transparent 70%),
    repeating-linear-gradient(45deg, var(--card-line) 0 1px, transparent 1px 8px);
  border: 1px solid var(--card-line);
}
.studio-mockup__preview .meta b {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--headline);
  margin-bottom: 4px;
}
.studio-mockup__preview .meta span {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--accent-base);
  letter-spacing: 0.08em;
}
.studio-mockup__preview .open {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  color: var(--accent-base);
  border: 1px solid var(--card-line);
  padding: 8px 12px;
  border-radius: 999px;
  text-transform: uppercase;
  transition: background 200ms var(--easing), color 200ms var(--easing);
}
.studio-mockup__preview .open:hover {
  background: var(--accent-base);
  color: #fff;
  border-color: var(--accent-base);
}
.hosting-info {
  display: grid;
  gap: 16px;
  align-self: start;
}
.info-card {
  background: var(--card);
  border: 1px solid var(--card-line);
  border-radius: var(--radius-md);
  padding: 22px 24px;
  transition: transform 320ms var(--easing), border-color 320ms var(--easing), box-shadow 320ms var(--easing);
}
.info-card:hover {
  transform: translateY(-3px);
  border-color: var(--accent-base);
  box-shadow: var(--shadow-card);
}
.info-icon {
  width: 42px; height: 42px;
  border-radius: 10px;
  background: var(--accent-soft);
  color: var(--accent-base);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.info-card h3 {
  font-family: var(--display);
  font-size: 18px;
  font-weight: 600;
  color: var(--headline);
  margin-bottom: 8px;
  letter-spacing: 0;
}
.info-card p {
  font-size: 14px;
  color: var(--body);
  line-height: 1.55;
  font-weight: 400;
}
.info-tag {
  background: var(--navy-1);
  color: #fff;
  padding: 22px 26px;
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.info-tag .tag-amount { font-size: 24px; font-weight: 300; }
.info-tag .tag-period {
  font-size: 12px;
  opacity: 0.6;
  font-family: var(--mono);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.info-tag .tag-note {
  font-size: 12px;
  opacity: 0.6;
  margin-top: 8px;
  line-height: 1.5;
}

.templates {
  margin: 60px 0 40px;
  text-align: center;
}
.templates__title {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 300;
  color: var(--body);
  margin-bottom: 24px;
  letter-spacing: 0.02em;
}
.templates__row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--card);
  border: 1px solid var(--card-line);
  font-size: 13px;
  color: var(--headline);
  font-weight: 500;
  transition: background 220ms var(--easing), color 220ms var(--easing), border-color 220ms var(--easing), transform 220ms var(--bounce);
}
.chip:hover {
  background: var(--accent-base);
  color: #fff;
  border-color: var(--accent-base);
  transform: translateY(-3px);
}

.ecosystem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.eco-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 28px;
  border: 1px solid var(--card-line);
  border-radius: var(--radius-md);
  background: var(--card);
  color: var(--headline);
  position: relative;
  overflow: hidden;
  transition: transform 320ms var(--easing), border-color 320ms var(--easing), box-shadow 320ms var(--easing);
}
.eco-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 100% 0%, var(--accent-soft), transparent 60%);
  opacity: 0;
  transition: opacity 320ms var(--easing);
  pointer-events: none;
}
.eco-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent-base);
  box-shadow: var(--shadow-lift);
}
.eco-card:hover::before { opacity: 1; }
.eco-icon {
  position: relative;
  width: 44px; height: 44px;
  border-radius: 10px;
  background: var(--navy-1);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 8px;
  z-index: 1;
}
.eco-name {
  font-family: var(--display);
  font-size: 19px;
  font-weight: 600;
  color: var(--headline);
  position: relative;
  z-index: 1;
}
.eco-tag {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--mute);
  text-transform: uppercase;
  position: relative;
  z-index: 1;
}
.eco-card p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--body);
  margin-top: 8px;
  font-weight: 400;
  position: relative;
  z-index: 1;
}
.eco-cta {
  margin-top: auto;
  padding-top: 14px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--accent-base);
  font-weight: 500;
  position: relative;
  z-index: 1;
  text-transform: uppercase;
}

.surfaces-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 48px;
}
.surface-card {
  padding: 28px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.03);
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform 320ms var(--easing), border-color 320ms var(--easing), background 320ms var(--easing);
}
.surface-card:hover {
  transform: translateY(-6px);
  border-color: rgba(155, 182, 224, 0.4);
  background: rgba(255,255,255,0.06);
}
.surface-icon {
  width: 42px; height: 42px;
  border-radius: 10px;
  background: rgba(155, 182, 224, 0.12);
  color: #9BB6E0;
  display: flex; align-items: center; justify-content: center;
}
.surface-tag {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
}
.surface-card h3 {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 400;
  color: #fff;
  letter-spacing: 0;
}
.surface-card p {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255,255,255,0.7);
  font-weight: 400;
}
.surface-link {
  margin-top: auto;
  padding-top: 10px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  color: #9BB6E0;
  font-weight: 500;
  text-transform: uppercase;
}
.choreo {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.choreo-card {
  display: flex; flex-direction: column;
  gap: 8px;
  padding: 20px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  background: rgba(255,255,255,0.02);
  color: #9BB6E0;
  font-size: 12px;
}
.choreo-card strong { color: #fff; font-size: 13px; font-weight: 600; }
.choreo-card span { color: rgba(255,255,255,0.55); font-size: 12px; line-height: 1.45; font-weight: 400; }

.dfy-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: stretch;
  margin: 32px 0 64px;
}
.dfy-chat {
  background: var(--card);
  border: 1px solid var(--card-line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lift);
  display: flex;
  flex-direction: column;
}
.dfy-chat__header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: rgba(37, 211, 102, 0.06);
  border-bottom: 1px solid rgba(37, 211, 102, 0.15);
}
.dfy-chat__avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: #25D366;
  color: var(--navy-1);
  display: flex; align-items: center; justify-content: center;
}
.dfy-chat__header strong {
  display: block;
  font-size: 14px;
  color: var(--headline);
  font-weight: 600;
}
.dfy-chat__header span {
  display: block;
  font-size: 11px;
  color: var(--mute);
}
.dfy-chat__body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: var(--canvas-soft);
  flex: 1;
}
.dfy-msg {
  padding: 9px 14px 14px;
  border-radius: 14px;
  font-size: 13.5px;
  line-height: 1.55;
  max-width: 82%;
}
.dfy-msg.out {
  align-self: flex-end;
  background: #DCF8C6;
  color: var(--navy-1);
  border-bottom-right-radius: 4px;
}
.dfy-msg.in {
  align-self: flex-start;
  background: var(--card);
  color: var(--headline);
  border: 1px solid var(--card-line);
  border-bottom-left-radius: 4px;
}
.dfy-msg.card { padding: 8px 8px 14px; }
.dfy-preview {
  border: 1px solid var(--card-line);
  border-radius: 10px;
  overflow: hidden;
  min-width: 240px;
  background: var(--canvas-soft);
}
.dfy-preview .bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  background: var(--card);
  border-bottom: 1px solid var(--card-line);
}
.dfy-preview .bar .d { width: 8px; height: 8px; border-radius: 50%; }
.dfy-preview .bar .d.r { background: #ff5f57; }
.dfy-preview .bar .d.y { background: #ffbd2e; }
.dfy-preview .bar .d.g { background: #28c840; }
.dfy-preview .bar .url {
  margin-left: 8px;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--accent-base);
}
.dfy-preview .meta {
  padding: 12px 14px;
  display: flex; flex-direction: column;
  gap: 4px;
}
.dfy-preview .meta strong {
  font-size: 14px;
  color: var(--headline);
  font-weight: 600;
}
.dfy-preview .meta span {
  font-size: 11px;
  color: var(--mute);
}
.dfy-typing {
  display: inline-flex;
  gap: 5px;
  padding: 12px 14px;
  background: var(--card);
  border: 1px solid var(--card-line);
  border-radius: 14px;
  align-self: flex-start;
}
.dfy-typing span {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--mute);
  animation: dfyTyping 1.2s ease-in-out infinite;
}
.dfy-typing span:nth-child(2) { animation-delay: 0.15s; }
.dfy-typing span:nth-child(3) { animation-delay: 0.3s; }
@keyframes dfyTyping { 0%, 60%, 100% { opacity: 0.35; transform: translateY(0); } 30% { opacity: 1; transform: translateY(-3px); } }
.dfy-offer {
  background: var(--navy-1);
  color: #fff;
  padding: 36px;
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  gap: 18px;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.dfy-offer::before {
  content: ""; position: absolute;
  inset: -50% -10% auto auto;
  width: 220px; height: 220px;
  background: radial-gradient(circle, rgba(37, 211, 102, 0.3), transparent 70%);
  filter: blur(20px);
}
.dfy-eyebrow {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.28em;
  color: #9BB6E0;
  align-self: flex-start;
  padding: 5px 12px;
  border: 1px solid rgba(155, 182, 224, 0.3);
  border-radius: 999px;
  text-transform: uppercase;
  position: relative;
  z-index: 2;
}
.dfy-time {
  font-family: var(--display);
  font-size: clamp(48px, 6vw, 72px);
  font-weight: 200;
  line-height: 1;
  letter-spacing: -0.02em;
  position: relative;
  z-index: 2;
}
.dfy-offer p {
  font-size: 15px;
  line-height: 1.65;
  color: rgba(255,255,255,0.75);
  font-weight: 400;
  position: relative;
  z-index: 2;
}
.dfy-trust {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 12px;
  color: rgba(255,255,255,0.65);
  position: relative;
  z-index: 2;
}
.dfy-trust li {
  display: inline-flex; gap: 8px;
  align-items: center;
}
.dfy-trust li::before { content: "✓"; color: #25D366; font-weight: 700; }
.dfy-included-title {
  text-align: center;
  font-family: var(--display);
  font-size: clamp(28px, 3.4vw, 44px);
  font-weight: 200;
  color: var(--headline);
  margin: 48px auto 32px;
  max-width: 28ch;
  letter-spacing: -0.005em;
}
.dfy-included {
  list-style: none;
  max-width: 940px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 28px;
}
.dfy-included li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 16px;
  background: var(--card);
  border: 1px solid var(--card-line);
  border-radius: 12px;
  font-size: 14px;
  color: var(--headline);
  line-height: 1.5;
  font-weight: 400;
}
.dfy-included li::before {
  content: "";
  width: 18px; height: 18px;
  border-radius: 50%;
  flex-shrink: 0;
  background: var(--accent-base) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>") center / 11px no-repeat;
  margin-top: 2px;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  counter-reset: step;
}
.step {
  padding: 32px 24px;
  background: var(--canvas-soft);
  border: 1px solid var(--card-line);
  border-radius: var(--radius-md);
  position: relative;
  overflow: hidden;
}
.step::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--accent-base), var(--pop-2));
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 320ms var(--easing);
}
.step:hover::before { transform: scaleY(1); }
.step-n {
  display: inline-block;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--accent-base);
  margin-bottom: 14px;
  text-transform: uppercase;
}
.step h4 {
  font-family: var(--display);
  font-size: 18px;
  font-weight: 600;
  color: var(--headline);
  margin-bottom: 10px;
  letter-spacing: 0;
}
.step p {
  font-size: 14px;
  color: var(--body);
  line-height: 1.6;
  font-weight: 400;
}

.models-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-bottom: 36px;
}
.model-card {
  padding: 26px;
  background: var(--card);
  border: 1px solid var(--card-line);
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform 320ms var(--easing), border-color 320ms var(--easing), box-shadow 320ms var(--easing);
}
.model-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent-base);
  box-shadow: var(--shadow-card);
}
.model-card__head { display: flex; align-items: center; gap: 12px; }
.model-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--navy-1), var(--accent-base));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--mono);
  font-weight: 600;
  font-size: 14px;
}
.model-name {
  font-family: var(--display);
  font-size: 18px;
  font-weight: 600;
  color: var(--headline);
}
.model-provider {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  color: var(--mute);
  text-transform: uppercase;
}
.model-card p {
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--body);
  font-weight: 400;
}
.model-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--card-line);
}
.model-stats > div { display: flex; flex-direction: column; gap: 4px; }
.model-stats b {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--mute);
  font-weight: 500;
  text-transform: uppercase;
}
.model-stats span {
  font-size: 13px;
  color: var(--headline);
  font-weight: 600;
}
.model-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.model-tags span {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  padding: 4px 10px;
  background: var(--accent-soft);
  color: var(--accent-base);
  border-radius: 999px;
  text-transform: uppercase;
}
.model-cta {
  margin-top: auto;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--accent-base);
  font-weight: 500;
  text-transform: uppercase;
}

.tools-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 48px;
}
.tool-card {
  padding: 28px;
  background: var(--canvas-soft);
  border: 1px solid var(--card-line);
  border-radius: var(--radius-md);
}
.tool-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}
.tool-head h3 {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 500;
  color: var(--headline);
  letter-spacing: 0;
}
.badge {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  padding: 4px 10px;
  border-radius: 999px;
  text-transform: uppercase;
  font-weight: 500;
}
.badge--sync { background: var(--accent-soft); color: var(--accent-base); }
.badge--async { background: rgba(101, 158, 92, 0.15); color: #4F7B43; }
.tool-card p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--body);
  font-weight: 400;
}
.tool-examples {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 14px;
}
.tool-examples span {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  padding: 4px 10px;
  background: var(--card);
  color: var(--headline);
  border: 1px solid var(--card-line);
  border-radius: 999px;
  text-transform: uppercase;
}
.tool-flow {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 48px;
}
.flow-item {
  display: flex;
  gap: 16px;
  padding: 22px;
  background: var(--card);
  border: 1px solid var(--card-line);
  border-radius: var(--radius-md);
}
.flow-n {
  flex-shrink: 0;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--navy-1);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 600;
}
.flow-item strong {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: var(--headline);
  margin-bottom: 4px;
}
.flow-item p {
  font-size: 13px;
  color: var(--body);
  line-height: 1.55;
  font-weight: 400;
}
.tools-benefits {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.tools-benefits > div {
  padding: 22px;
  border: 1px solid var(--card-line);
  border-radius: 12px;
  background: var(--card);
}
.tools-benefits strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--headline);
  margin-bottom: 6px;
  letter-spacing: 0;
}
.tools-benefits span {
  font-size: 13px;
  color: var(--body);
  line-height: 1.55;
  font-weight: 400;
}

.nrn-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 48px;
}
.nrn-card {
  padding: 28px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.03);
}
.nrn-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}
.nrn-head h3 {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 400;
  color: #fff;
}
.nrn-card .badge { background: rgba(155, 182, 224, 0.12); color: #9BB6E0; }
.nrn-card p {
  font-size: 14px;
  line-height: 1.65;
  color: rgba(255,255,255,0.7);
  font-weight: 400;
}
.nrn-card .tool-examples span {
  background: rgba(255,255,255,0.04);
  color: #fff;
  border-color: rgba(255,255,255,0.08);
}
.nrn-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.nrn-stats > div {
  padding: 28px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.03);
}
.nrn-stats b {
  display: block;
  font-family: var(--display);
  font-size: clamp(36px, 4.4vw, 56px);
  font-weight: 200;
  color: #9BB6E0;
  line-height: 1;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}
.nrn-stats span {
  display: block;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  color: #fff;
  margin-bottom: 10px;
  text-transform: uppercase;
}
.nrn-stats p {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  line-height: 1.55;
  font-weight: 400;
}

.shield-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 48px;
}
.shield-col {
  padding: 28px;
  border: 1px solid var(--card-line);
  border-radius: var(--radius-md);
  background: var(--card);
}
.shield-col h3 {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 18px;
  color: var(--headline);
}
.shield-col ul {
  list-style: none;
  display: grid;
  gap: 10px;
}
.shield-col li {
  padding-left: 30px;
  position: relative;
  font-size: 14px;
  color: var(--headline);
  line-height: 1.55;
  font-weight: 400;
}
.shield-col li::before {
  content: "";
  position: absolute;
  left: 0; top: 4px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background-position: center;
  background-repeat: no-repeat;
}
.shield-col--bad li::before {
  background-color: rgba(220, 80, 80, 0.12);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23DC5050' stroke-width='3'><line x1='18' y1='6' x2='6' y2='18'/><line x1='6' y1='6' x2='18' y2='18'/></svg>");
  background-size: 10px;
}
.shield-col--good li::before {
  background-color: var(--accent-soft);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231E4D9B' stroke-width='3'><polyline points='20 6 9 17 4 12'/></svg>");
  background-size: 10px;
}
.shield-flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-bottom: 48px;
}
.shield-flow > div {
  padding: 22px;
  border: 1px solid var(--card-line);
  border-radius: var(--radius-md);
  background: var(--canvas-soft);
}
.shield-flow strong {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: var(--headline);
  margin: 12px 0 8px;
}
.shield-flow p {
  font-size: 13px;
  color: var(--body);
  line-height: 1.55;
  font-weight: 400;
}
.shield-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.shield-stats > div {
  padding: 26px;
  border: 1px solid var(--card-line);
  border-radius: var(--radius-md);
  background: var(--card);
  text-align: center;
}
.shield-stats b {
  display: block;
  font-family: var(--display);
  font-size: clamp(28px, 3.4vw, 44px);
  font-weight: 200;
  color: var(--accent-base);
  line-height: 1;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}
.shield-stats span {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--mute);
  text-transform: uppercase;
}

.diff-wrap {
  overflow-x: auto;
  margin-bottom: 64px;
  border: 1px solid var(--card-line);
  border-radius: var(--radius-md);
  background: var(--card);
}
.diff {
  width: 100%;
  border-collapse: collapse;
}
.diff thead th {
  padding: 18px 20px;
  text-align: left;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--mute);
  border-bottom: 1px solid var(--card-line);
  text-transform: uppercase;
}
.diff thead th.agentics { color: var(--accent-base); }
.diff td {
  padding: 16px 20px;
  border-bottom: 1px solid var(--card-line);
  font-size: 14px;
  color: var(--headline);
  line-height: 1.5;
}
.diff tbody tr:last-child td { border-bottom: none; }
.diff tbody tr:hover td { background: var(--canvas-soft); }
.diff td.y { color: var(--accent-base); font-weight: 600; }
.diff td.n { color: var(--mute); font-weight: 400; }

.closers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.closers > div {
  padding: 32px;
  border: 1px solid var(--card-line);
  border-radius: var(--radius-md);
  background: var(--canvas-soft);
  position: relative;
  overflow: hidden;
}
.closer-n {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.24em;
  color: var(--accent-base);
  margin-bottom: 12px;
  display: block;
  text-transform: uppercase;
}
.closers h4 {
  font-family: var(--display);
  font-size: 19px;
  font-weight: 600;
  color: var(--headline);
  margin-bottom: 10px;
  letter-spacing: 0;
}
.closers p {
  font-size: 13.5px;
  color: var(--body);
  line-height: 1.6;
  font-weight: 400;
}

@media (max-width: 1100px) {
  .hero { grid-template-columns: 1fr; min-height: auto; height: auto; padding: clamp(100px, 16vw, 140px) clamp(20px, 5vw, 48px) 80px; gap: 28px; }
  .hero__navy { width: 100%; height: 30%; clip-path: polygon(0 0, 100% 0, 100% calc(100% - 40px), 0 100%); }
  .hero__left { max-width: 100%; }
  .hero__headline { font-size: clamp(34px, 7vw, 60px); }
  .hero__right { min-height: 320px; align-items: center; justify-self: center; }
  .hero-orb-wrapper { width: clamp(220px, 70vw, 360px); }
  .hero__meta { font-size: 11px; }
  .hero__stats { grid-template-columns: 1fr 1fr; }
  .hosting-showcase,
  .dfy-grid,
  .nrn-stats,
  .nrn-grid,
  .shield-flow,
  .shield-compare,
  .tool-flow,
  .tools-grid,
  .closers,
  .ecosystem-grid,
  .surfaces-grid,
  .models-grid,
  .steps-grid,
  .tools-benefits,
  .shield-stats { grid-template-columns: 1fr 1fr; }
  .choreo { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 700px) {
  .hero {
    padding: clamp(110px, 24vw, 150px) 22px 64px;
    gap: 26px;
  }
  .hero__navy {
    width: 100%;
    height: 22%;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 30px), 0 100%);
  }
  .hero__left {
    padding-top: 0;
    align-items: flex-start;
  }
  .hero__headline {
    font-size: clamp(34px, 9.5vw, 52px);
    line-height: 1.02;
  }
  .hero__strap {
    font-size: 16px;
    margin-top: 20px;
    max-width: 100%;
  }
  .hero__cta {
    margin-top: 28px;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    gap: 10px;
  }
  .hero__cta .btn-primary,
  .hero__cta .btn-secondary {
    width: 100%;
    justify-content: center;
    padding: 14px 22px;
  }
  .hero__trust {
    margin-top: 36px;
    padding-top: 24px;
    padding-bottom: 12px;
  }
  .hero__stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .hero__right {
    min-height: 300px;
    width: 100%;
    justify-self: center;
  }
  .hero-orb-wrapper {
    width: min(78vw, 320px);
  }
  .hero__viz-toggle .viz-btn {
    padding: 6px 14px;
    font-size: 9px;
  }
  .hero__meta {
    position: relative;
    bottom: auto;
    left: auto;
    right: auto;
    padding: 28px 0 0;
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
    text-align: left;
  }
  .hosting-showcase,
  .dfy-grid,
  .nrn-stats,
  .nrn-grid,
  .shield-flow,
  .shield-compare,
  .tool-flow,
  .tools-grid,
  .closers,
  .ecosystem-grid,
  .surfaces-grid,
  .models-grid,
  .steps-grid,
  .tools-benefits,
  .shield-stats { grid-template-columns: 1fr; }
  .dfy-included { grid-template-columns: 1fr; }
  .choreo { grid-template-columns: 1fr; }
}

.wave-divider {
  position: relative;
  height: clamp(180px, 22vw, 320px);
  background: var(--navy-1);
  overflow: hidden;
  cursor: crosshair;
}
.wave-divider::before,
.wave-divider::after {
  content: "";
  position: absolute; top: 0; bottom: 0;
  width: 8%;
  z-index: 2;
  pointer-events: none;
}
.wave-divider::before { left: 0; background: linear-gradient(to right, var(--navy-1), transparent); }
.wave-divider::after { right: 0; background: linear-gradient(to left, var(--navy-1), transparent); }
.wave-divider__label {
  position: absolute;
  left: 50%; bottom: 22px;
  transform: translateX(-50%);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.4em;
  color: rgba(255, 255, 255, 0.45);
  text-transform: uppercase;
  z-index: 3;
  pointer-events: none;
}

.eco-card .card-light {
  position: absolute; inset: 0;
  border-radius: inherit;
  pointer-events: none;
  opacity: 0;
  transition: opacity 320ms var(--easing);
  z-index: 0;
  overflow: hidden;
}
.eco-card:hover .card-light { opacity: 1; }
.card-light__spot {
  position: absolute;
  width: 280px; height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, color-mix(in srgb, var(--accent-base) 28%, transparent) 0%, transparent 60%);
  transform: translate(-50%, -50%);
  pointer-events: none;
  filter: blur(8px);
}

.docs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
  margin: 28px 0;
}
.docs-grid .card {
  padding: 28px;
  background: var(--canvas-soft);
  border: 1px solid var(--card-line);
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform 320ms var(--easing), border-color 320ms var(--easing), background 320ms var(--easing);
  position: relative;
}
.docs-grid .card:hover {
  transform: translateY(-4px);
  border-color: color-mix(in srgb, var(--accent-base) 50%, transparent);
  background: var(--card);
}
.docs-grid .card h3,
.docs-grid .card h4 {
  font-family: var(--display);
  font-size: 18px;
  font-weight: 500;
  color: var(--headline);
  letter-spacing: -0.005em;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.docs-grid .card p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--body);
  margin: 0;
}
.docs-grid .card ul {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 8px;
}
.docs-grid .card ul li {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--body);
}
.docs-grid .card .ic,
.docs-grid .card > .ic {
  width: 40px; height: 40px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  background: var(--accent-soft); color: var(--accent-base);
  flex-shrink: 0;
  margin-bottom: 6px;
}
.docs-grid .card .ic.wa {
  background: rgba(37, 211, 102, 0.12);
  color: #25d366;
}
.docs-grid .card .param-type {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-base);
  font-weight: 600;
}
.section--navy .docs-grid .card,
.section--navy.docs-grid .card,
[data-theme="dark"] .docs-grid .card {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.08);
}
.section--navy .docs-grid .card:hover,
.section--navy.docs-grid .card:hover,
[data-theme="dark"] .docs-grid .card:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(155, 182, 224, 0.4);
}
.section--navy .docs-grid .card h3,
.section--navy .docs-grid .card h4,
.section--navy .docs-grid .card p,
.section--navy .docs-grid .card ul li {
  color: rgba(255,255,255,0.92);
}

.params-table,
.docs-table {
  width: 100%;
  border-collapse: collapse;
  margin: 18px 0;
  font-size: 14px;
}
.params-table th,
.docs-table th {
  text-align: left;
  padding: 12px 14px;
  background: var(--canvas-soft);
  border-bottom: 1px solid var(--card-line);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--mute-strong);
  font-weight: 600;
}
.params-table td,
.docs-table td {
  padding: 12px 14px;
  border-bottom: 1px solid var(--card-line);
  color: var(--body);
  line-height: 1.55;
  vertical-align: top;
}
.params-table code,
.docs-table code {
  font-family: var(--mono);
  font-size: 12.5px;
  padding: 2px 6px;
  background: var(--canvas-soft);
  border-radius: 4px;
  color: var(--accent-base);
}
