:root {
  color-scheme: dark;
  --ink: #f7f7f2;
  --muted: #adbac8;
  --faint: #6f8192;
  --canvas: #0b1118;
  --surface: #101820;
  --surface-raised: #162330;
  --line: #263746;
  --mint: #9effc7;
  --mint-ink: #082016;
  --periwinkle: #8da2ff;
  --amber: #ffc978;
  --content: 1160px;
  --reading: 760px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { background: var(--canvas); color: var(--ink); margin: 0; min-width: 0; }
body::before {
  background: radial-gradient(circle at 78% 5%, rgb(141 162 255 / 12%), transparent 34rem);
  content: "";
  height: 46rem;
  pointer-events: none;
  position: fixed;
  right: 0;
  top: 0;
  width: 60rem;
  z-index: -1;
}
a { color: inherit; }
button, input { font: inherit; }
img, svg { max-width: 100%; }
.sr-only { clip: rect(0, 0, 0, 0); clip-path: inset(50%); height: 1px; overflow: hidden; position: absolute; white-space: nowrap; width: 1px; }
.skip-link { background: var(--mint); color: var(--mint-ink); left: 1rem; padding: .65rem 1rem; position: fixed; top: -5rem; z-index: 1000; }
.skip-link:focus { top: 1rem; }

.site-header { backdrop-filter: blur(18px); background: rgb(11 17 24 / 82%); border-bottom: 1px solid rgb(255 255 255 / 8%); position: sticky; top: 0; z-index: 100; }
.header-inner { align-items: center; display: flex; gap: 2rem; justify-content: space-between; margin: 0 auto; max-width: var(--content); min-height: 72px; padding: 0 24px; }
.brand { align-items: center; display: inline-flex; gap: .7rem; text-decoration: none; white-space: nowrap; }
.brand-mark { align-items: center; background: var(--mint); border-radius: 8px; color: var(--mint-ink); display: inline-flex; font-size: .68rem; font-weight: 900; height: 32px; justify-content: center; letter-spacing: 0; width: 32px; }
.brand-name { font-size: .96rem; font-weight: 720; letter-spacing: 0; }
.brand-product { border-left: 1px solid var(--line); color: var(--mint); font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: .8rem; padding-left: .7rem; }
.primary-nav { align-items: center; display: flex; gap: .35rem; }
.primary-nav a { border-radius: 8px; color: var(--muted); font-size: .88rem; font-weight: 620; padding: .62rem .75rem; text-decoration: none; }
.primary-nav a:hover, .primary-nav a:focus-visible { background: var(--surface-raised); color: var(--ink); }
.primary-nav .api-link { border: 1px solid var(--line); color: var(--ink); margin-left: .3rem; }
.nav-toggle { background: transparent; border: 0; display: none; padding: .5rem; }
.nav-toggle > span[aria-hidden] { background: var(--ink); display: block; height: 2px; margin: 4px 0; width: 22px; }

.hero { margin: 0 auto; max-width: var(--content); padding: 112px 24px 76px; }
.hero-grid { align-items: center; display: grid; gap: clamp(3rem, 8vw, 7rem); grid-template-columns: minmax(0, 1.1fr) minmax(330px, .9fr); }
.eyebrow { color: var(--mint); font-size: .74rem; font-weight: 800; letter-spacing: 0; margin-bottom: 1rem; text-transform: uppercase; }
.release-kicker { align-items: center; border: 1px solid var(--line); border-radius: 999px; color: var(--muted); display: inline-flex; font: .74rem/1 ui-monospace, SFMono-Regular, Menlo, monospace; gap: .55rem; margin-bottom: 1.5rem; padding: .48rem .75rem; }
.release-kicker::before { background: var(--mint); border-radius: 50%; box-shadow: 0 0 0 5px rgb(158 255 199 / 9%); content: ""; height: 7px; width: 7px; }
.hero h1 { font-size: 5.5rem; letter-spacing: 0; line-height: .91; margin: 0; max-width: 780px; }
.hero h1 em { color: var(--mint); display: block; font-style: normal; }
.hero-copy { color: var(--muted); font-size: 1.2rem; line-height: 1.7; margin: 1.8rem 0 0; max-width: 610px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 2rem; }
.button { align-items: center; border: 1px solid var(--line); border-radius: 8px; display: inline-flex; font-size: .9rem; font-weight: 760; gap: .55rem; justify-content: center; min-height: 48px; padding: .75rem 1rem; text-decoration: none; }
.button.primary { background: var(--mint); border-color: var(--mint); color: var(--mint-ink); }
.button.secondary { background: var(--surface); }
.button:hover { transform: translateY(-1px); }
.hero-terminal { background: #080d12; border: 1px solid var(--line); border-radius: 8px; box-shadow: 0 28px 70px rgb(0 0 0 / 35%); min-width: 0; overflow: hidden; transform: rotate(1deg); }
.terminal-bar { align-items: center; border-bottom: 1px solid var(--line); color: var(--faint); display: flex; font: .72rem ui-monospace, monospace; gap: .4rem; padding: .8rem 1rem; }
.terminal-bar i { background: #ff6c68; border-radius: 50%; display: block; height: 8px; width: 8px; }
.terminal-bar i:nth-child(2) { background: var(--amber); }
.terminal-bar i:nth-child(3) { background: var(--mint); }
.terminal-bar span { margin-left: .45rem; }
.hero-terminal pre { color: #dce5ed; font: .78rem/1.75 ui-monospace, SFMono-Regular, Menlo, monospace; margin: 0; overflow-x: auto; padding: 1.35rem; }
.hero-terminal .prompt { color: var(--mint); }
.hero-terminal .result { color: var(--periwinkle); }

.home-section { margin: 0 auto; max-width: var(--content); padding: 80px 24px; }
.home-section + .home-section { border-top: 1px solid rgb(255 255 255 / 7%); }
.section-heading { align-items: end; display: flex; gap: 2rem; justify-content: space-between; margin-bottom: 2.4rem; }
.section-heading h2 { font-size: 3.6rem; letter-spacing: 0; line-height: 1; margin: 0; max-width: 670px; }
.section-heading p { color: var(--muted); line-height: 1.65; margin: 0; max-width: 420px; }
.path-grid { display: grid; gap: 1rem; grid-template-columns: repeat(3, 1fr); }
.path-card, .deployment-card { background: linear-gradient(145deg, rgb(22 35 48 / 95%), rgb(16 24 32 / 92%)); border: 1px solid var(--line); border-radius: 8px; display: flex; flex-direction: column; min-height: 260px; padding: 1.55rem; text-decoration: none; transition: border-color .16s ease, transform .16s ease; }
.path-card:hover, .deployment-card:hover { border-color: var(--mint); transform: translateY(-3px); }
.path-card .number { color: var(--faint); font: .7rem ui-monospace, monospace; letter-spacing: 0; }
.path-card h3, .deployment-card h3 { font-size: 1.45rem; letter-spacing: 0; margin: auto 0 .6rem; }
.path-card p, .deployment-card p { color: var(--muted); line-height: 1.55; margin: 0; }
.path-card .arrow, .deployment-card .arrow { color: var(--mint); font-size: 1.2rem; margin-top: 1.2rem; }
.deployment-card .dw-cloud-promotion__action { align-self: flex-start; font-size: .9rem; font-weight: 760; text-underline-offset: 3px; }
.deployment-grid { display: grid; gap: 1rem; grid-template-columns: repeat(2, 1fr); }
.deployment-card { min-height: 220px; }
.deployment-card .tag { color: var(--periwinkle); font-size: .72rem; font-weight: 760; letter-spacing: 0; text-transform: uppercase; }
.capability-strip { background: var(--mint); color: var(--mint-ink); overflow: hidden; }
.capability-strip div { display: flex; font-size: .78rem; font-weight: 850; gap: 2.6rem; justify-content: center; letter-spacing: 0; padding: 1rem 2rem; text-transform: uppercase; white-space: nowrap; }
.capability-strip span::before { content: "•"; margin-right: 2.6rem; }

.docs-shell { display: grid; grid-template-columns: 250px minmax(0, var(--reading)); gap: clamp(2.5rem, 7vw, 6rem); justify-content: center; margin: 0 auto; max-width: var(--content); padding: 52px 24px 96px; }
.docs-sidebar { align-self: start; max-height: calc(100vh - 105px); overflow-y: auto; position: sticky; top: 96px; }
.release-chip { border: 1px solid var(--line); border-radius: 8px; color: var(--muted); font: .72rem ui-monospace, monospace; margin-bottom: 1.75rem; padding: .65rem .75rem; }
.release-chip span { color: var(--mint); margin-right: .4rem; }
.docs-sidebar section + section { margin-top: 1.35rem; }
.docs-sidebar h2 { color: var(--faint); font-size: .68rem; letter-spacing: 0; margin: 0 0 .4rem; text-transform: uppercase; }
.docs-sidebar ul { list-style: none; margin: 0; padding: 0; }
.docs-sidebar a { border-left: 2px solid transparent; color: var(--muted); display: block; font-size: .83rem; line-height: 1.35; padding: .42rem .65rem; text-decoration: none; }
.docs-sidebar a:hover { color: var(--ink); }
.docs-sidebar a[aria-current="page"] { background: rgb(158 255 199 / 7%); border-color: var(--mint); color: var(--mint); }
.guide-content { min-width: 0; }
.guide-content > h1 { font-size: 4.8rem; letter-spacing: 0; line-height: .96; margin: 0 0 1.25rem; }
.guide-content .lead { color: var(--muted); font-size: 1.2rem; line-height: 1.65; margin: 0 0 3rem; max-width: 700px; }
.guide-content h2 { border-top: 1px solid var(--line); font-size: 1.75rem; letter-spacing: 0; margin: 3.5rem 0 1rem; padding-top: 2rem; }
.guide-content h3 { font-size: 1.16rem; margin: 2.2rem 0 .8rem; }
.guide-content p, .guide-content li { color: #c6d0da; font-size: .98rem; line-height: 1.75; }
.guide-content li + li { margin-top: .45rem; }
.guide-content a:not(.button):not(.next-links a) { color: var(--mint); text-underline-offset: 3px; }
.guide-content code:not(pre code) { background: var(--surface-raised); border: 1px solid var(--line); border-radius: 5px; color: #f1d5a7; font: .86em ui-monospace, SFMono-Regular, Menlo, monospace; overflow-wrap: anywhere; padding: .15rem .32rem; word-break: break-word; }
.guide-content table { border-collapse: collapse; display: block; margin: 1.4rem 0; max-width: 100%; overflow-x: auto; }
.guide-content th, .guide-content td { border-bottom: 1px solid var(--line); padding: .75rem 1rem; text-align: left; vertical-align: top; }
.guide-content th { color: var(--ink); font-size: .8rem; }
.guide-content td { color: var(--muted); font-size: .9rem; }
.guide-content blockquote { border-left: 3px solid var(--periwinkle); color: var(--muted); margin: 1.5rem 0; padding: .35rem 1.2rem; }
.code-stage { background: #080d12; border: 1px solid var(--line); border-radius: 8px; margin: 1.35rem 0; max-width: 100%; overflow: hidden; }
.code-stage__bar { align-items: center; border-bottom: 1px solid var(--line); color: var(--faint); display: flex; font: .72rem ui-monospace, SFMono-Regular, Menlo, monospace; justify-content: space-between; padding: .55rem .8rem .55rem 1rem; }
.copy-button { background: transparent; border: 1px solid var(--line); border-radius: 5px; color: var(--muted); cursor: pointer; font-size: .68rem; padding: .3rem .5rem; }
.copy-button:hover { color: var(--ink); }
.code-stage pre, .guide-content > pre { margin: 0; max-width: 100%; overflow-x: auto; padding: 1.05rem; }
.code-stage code, .guide-content > pre code { color: #dce5ed; font: .82rem/1.7 ui-monospace, SFMono-Regular, Menlo, monospace; }
.guide-content > pre { background: #080d12; border: 1px solid var(--line); border-radius: 8px; }
.code-disclosure { border: 1px solid var(--line); border-radius: 8px; margin: 1rem 0; overflow: hidden; }
.code-disclosure > summary { background: var(--surface); color: var(--muted); cursor: pointer; line-height: 1.45; padding: .9rem 1rem; }
.code-disclosure > summary strong { color: var(--ink); }
.code-disclosure[open] > summary { border-bottom: 1px solid var(--line); }
.code-disclosure .code-stage { border: 0; border-radius: 0; margin: 0; }
.outcome, .note, .warning { border: 1px solid var(--line); border-radius: 8px; margin: 1.4rem 0; padding: 1rem 1.1rem; }
.outcome { background: rgb(158 255 199 / 7%); border-color: rgb(158 255 199 / 32%); }
.note { background: rgb(141 162 255 / 7%); border-color: rgb(141 162 255 / 32%); }
.warning { background: rgb(255 201 120 / 7%); border-color: rgb(255 201 120 / 36%); }
.outcome strong, .note strong, .warning strong { color: var(--ink); display: block; font-size: .78rem; letter-spacing: 0; margin-bottom: .35rem; text-transform: uppercase; }
.outcome p, .note p, .warning p { margin: 0; }
.choice-grid { display: grid; gap: .85rem; grid-template-columns: repeat(2, minmax(0, 1fr)); margin: 1.3rem 0; }
.choice { border: 1px solid var(--line); border-radius: 8px; padding: 1rem; }
.choice h3 { margin: 0 0 .4rem; }
.choice p { font-size: .9rem; margin: 0; }
.registration-options .choice { min-width: 0; }
.registration-options p { margin-bottom: .8rem; }
.registration-options pre { background: #080d12; border: 1px solid var(--line); border-radius: 8px; margin: 0; max-width: 100%; overflow-x: auto; padding: .85rem; }
.registration-options code { color: #dce5ed; font: .75rem/1.65 ui-monospace, SFMono-Regular, Menlo, monospace; }
.steps { counter-reset: stages; list-style: none; padding: 0; }
.steps > li { counter-increment: stages; padding-left: 3rem; position: relative; }
.steps > li + li { margin-top: 2rem; }
.steps > li::before { align-items: center; background: var(--mint); border-radius: 50%; color: var(--mint-ink); content: counter(stages); display: flex; font-size: .75rem; font-weight: 850; height: 1.8rem; justify-content: center; left: 0; position: absolute; top: .1rem; width: 1.8rem; }
.steps h3 { margin-top: 0; }
.next-links { border-top: 1px solid var(--line); display: grid; gap: 1rem; grid-template-columns: repeat(2, 1fr); margin-top: 4rem; padding-top: 1.5rem; }
.next-links a { border: 1px solid var(--line); border-radius: 8px; display: flex; flex-direction: column; font-size: .9rem; gap: .2rem; padding: .85rem 1rem; text-decoration: none; }
.next-links a:hover { border-color: var(--mint); }
.next-links span { color: var(--faint); font-size: .68rem; letter-spacing: 0; text-transform: uppercase; }

.site-footer { border-top: 1px solid var(--line); color: var(--muted); display: flex; gap: 3rem; justify-content: space-between; margin: 0 auto; max-width: var(--content); padding: 3rem 24px; }
.site-footer strong { color: var(--ink); }
.site-footer p { font-size: .82rem; margin: .45rem 0 0; }
.site-footer nav { align-items: center; display: flex; flex-wrap: wrap; gap: 1.2rem; }
.site-footer a { font-size: .82rem; }

@media (max-width: 900px) {
  .hero { padding-top: 80px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 3.5rem; }
  .hero-copy { font-size: 1.1rem; }
  .hero-terminal { max-width: 620px; transform: none; }
  .section-heading { align-items: start; flex-direction: column; gap: 1rem; }
  .section-heading h2 { font-size: 2.75rem; }
  .docs-shell { gap: 2.5rem; grid-template-columns: 210px minmax(0, 1fr); }
  .guide-content > h1 { font-size: 3.25rem; }
  .path-grid { grid-template-columns: 1fr; }
  .path-card { min-height: 200px; }
  .registration-options { grid-template-columns: 1fr; }
}

@media (max-width: 800px) {
  .header-inner { min-height: 64px; padding: 0 18px; position: relative; }
  .brand-name { display: none; }
  .nav-toggle { display: block; }
  .primary-nav { align-items: stretch; background: var(--surface); border: 1px solid var(--line); border-radius: 0 0 8px 8px; box-shadow: 0 18px 38px rgb(0 0 0 / 38%); display: none; flex-direction: column; left: 0; max-height: calc(100vh - 64px); overflow-y: auto; padding: .7rem 18px 1rem; position: absolute; right: 0; top: 100%; }
  .primary-nav.is-open { display: flex; }
  .primary-nav a { min-height: 42px; }
  .primary-nav .api-link { margin-left: 0; }
  body.nav-open { overflow: hidden; }
  .nav-open main, .nav-open .docs-shell, .nav-open .site-footer { visibility: hidden; }
}

@media (max-width: 700px) {
  .hero { padding: 64px 18px 52px; }
  .hero h1 { font-size: 3.5rem; }
  .hero-copy { font-size: 1.04rem; }
  .hero-grid { gap: 2.5rem; }
  .home-section { padding: 60px 18px; }
  .deployment-grid, .choice-grid { grid-template-columns: 1fr; }
  .capability-strip div { justify-content: flex-start; overflow: hidden; }
  .docs-shell { display: block; padding: 38px 18px 72px; }
  .docs-sidebar { max-height: none; overflow: visible; position: static; }
  .docs-sidebar section { display: none; }
  .release-chip { display: inline-block; margin-bottom: 2rem; }
  .section-heading h2 { font-size: 2.25rem; }
  .guide-content > h1 { font-size: 2.7rem; }
  .guide-content .lead { font-size: 1.08rem; }
  .code-stage pre, .guide-content > pre { padding: .9rem; }
  .code-stage code, .guide-content > pre code { font-size: .75rem; }
  .next-links { grid-template-columns: 1fr; }
  .site-footer { align-items: flex-start; flex-direction: column; padding: 2.5rem 18px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; }
}
