:root {
  --bg: #f7f8fa;
  --surface: #ffffff;
  --surface-2: #eef1f5;
  --text: #101318;
  --muted: #626a76;
  --line: #dfe3e8;
  --accent: #4f6df5;
  --accent-2: #20b486;
  --accent-soft: #e8edff;
  --dark: #111620;
  --dark-text: #f6f8fb;
  --shadow: 0 24px 80px rgba(20, 29, 48, .1);
  --radius: 22px;
  --radius-small: 12px;
  --wrap: 1180px;
  --body-font: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --display-font: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mono-font: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html[data-theme="dark"] { color-scheme: dark; }
html[data-theme="light"] { color-scheme: light; }
body { margin: 0; background: var(--bg); color: var(--text); font-family: var(--body-font); -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
svg { display: block; }
.wrap { width: min(calc(100% - 48px), var(--wrap)); margin-inline: auto; }
.site-shell { overflow: hidden; }
.section { padding: 118px 0; position: relative; }
.eyebrow { margin: 0 0 20px; color: var(--accent); font-family: var(--mono-font); font-size: 11px; font-weight: 500; letter-spacing: .13em; text-transform: uppercase; }
.eyebrow span { display: inline-block; width: 28px; height: 1px; margin: 0 9px 3px 0; background: currentColor; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-family: var(--display-font); }
h1 { margin-bottom: 28px; font-size: clamp(54px, 6vw, 86px); font-weight: 700; letter-spacing: -.065em; line-height: .98; }
h2 { margin-bottom: 24px; font-size: clamp(38px, 4.2vw, 62px); font-weight: 650; letter-spacing: -.055em; line-height: 1.03; }
h3 { margin-bottom: 10px; font-size: 19px; letter-spacing: -.025em; line-height: 1.2; }
em { color: var(--accent); font-style: normal; }
p { color: var(--muted); font-size: 16px; line-height: 1.65; }

.candidate-bar { position: relative; z-index: 200; height: 38px; display: flex; align-items: center; justify-content: center; gap: 24px; padding: 0 18px; background: #0a0d12; color: #aeb5c0; font-family: var(--mono-font); font-size: 10px; letter-spacing: .08em; text-transform: uppercase; }
.candidate-bar b { color: #fff; font-weight: 500; }
.candidate-back { position: absolute; left: 18px; transition: color .2s ease; }
.candidate-bar nav { position: absolute; right: 12px; display: flex; gap: 4px; }
.candidate-bar nav a { width: 28px; height: 26px; display: grid; place-items: center; border: 1px solid #2b313b; border-radius: 5px; color: #fff; }
.candidate-bar a:hover { color: #fff; background: #1b2029; }

.family-bar { position: relative; z-index: 40; border-bottom: 1px solid var(--line); background: #03070d; }
.family-inner { min-height: 34px; display: flex; align-items: center; justify-content: space-between; gap: 20px; color: var(--muted); font-size: 12px; }
.family-links { display: flex; align-items: center; gap: 14px; }
.family-links a { transition: color .18s ease; }
.family-links a:hover { color: var(--accent); }
.family-links .current { color: var(--text); font-weight: 700; }
.theme-toggle { width: 52px; min-width: 52px; min-height: 26px; display: inline-flex; align-items: center; justify-content: center; gap: 9px; margin-left: auto; padding: 0 7px; border: 0; border-radius: 7px; background: transparent; color: var(--muted); cursor: pointer; transition: color .18s, background .18s; }
.theme-toggle:hover { background: color-mix(in srgb, var(--surface) 80%, transparent); color: var(--text); }
.theme-toggle:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }
.theme-icon { display: block; width: 14px; height: 14px; flex: none; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; opacity: .35; transition: opacity .18s, color .18s; }
.theme-icon-moon { color: var(--accent); opacity: 1; }
html[data-theme="light"] .theme-icon-sun { color: var(--accent); opacity: 1; }
html[data-theme="light"] .theme-icon-moon { color: var(--muted); opacity: .35; }

.site-header { position: relative; z-index: 100; height: 78px; border-bottom: 1px solid var(--line); background: color-mix(in srgb, var(--bg) 88%, transparent); backdrop-filter: blur(16px); }
.header-inner { height: 100%; display: flex; align-items: center; gap: 34px; }
.brand { display: inline-flex; align-items: center; gap: 10px; flex: 0 0 auto; font-family: var(--display-font); font-size: 15px; font-weight: 750; letter-spacing: .025em; }
.brand img { width: 31px; height: 31px; object-fit: contain; }
.brand b { color: var(--accent); font-weight: inherit; }
.main-nav { margin-left: auto; display: flex; align-items: center; gap: 28px; color: var(--muted); font-size: 13px; font-weight: 500; }
.main-nav a { position: relative; transition: color .2s ease; }
.main-nav a::after { content: ''; position: absolute; right: 0; bottom: -7px; left: 0; height: 1px; background: var(--accent); transform: scaleX(0); transform-origin: left; transition: transform .25s ease; }
.main-nav a:hover { color: var(--text); }
.main-nav a:hover::after { transform: scaleX(1); }
.menu-toggle { display: none; border: 0; background: transparent; color: var(--text); }

.button { min-height: 50px; display: inline-flex; align-items: center; justify-content: center; gap: 12px; padding: 0 23px; border: 1px solid transparent; border-radius: 10px; font-size: 13px; font-weight: 650; transition: transform .2s ease, background .2s ease, border-color .2s ease, color .2s ease; }
.button svg, .text-link svg { width: 18px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--accent); color: white; box-shadow: 0 12px 28px color-mix(in srgb, var(--accent) 24%, transparent); }
.button-primary:hover { background: color-mix(in srgb, var(--accent) 86%, black); }
.button-secondary { border-color: var(--line); background: var(--surface); color: var(--text); }
.button-secondary:hover { border-color: color-mix(in srgb, var(--accent) 40%, var(--line)); }
.button-small { min-height: 42px; padding: 0 17px; font-size: 12px; }
.text-link { display: inline-flex; align-items: center; gap: 10px; color: var(--accent); font-size: 13px; font-weight: 650; transition: gap .2s ease, color .2s ease; }
.text-link:hover { gap: 14px; color: color-mix(in srgb, var(--accent) 80%, black); }

.hero { min-height: 760px; display: flex; align-items: center; position: relative; padding: 84px 0 96px; }
.hero::before { content: ''; position: absolute; width: 600px; height: 600px; right: -200px; top: -240px; border-radius: 50%; background: radial-gradient(circle, color-mix(in srgb, var(--accent) 12%, transparent), transparent 68%); pointer-events: none; }
.hero-layout { display: grid; grid-template-columns: minmax(0, .95fr) minmax(470px, 1.05fr); align-items: center; gap: 46px; }
.hero-copy { position: relative; z-index: 2; }
.hero-lede { max-width: 650px; margin-bottom: 32px; font-size: 18px; line-height: 1.62; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 30px; }
.hero-meta { display: flex; flex-wrap: wrap; gap: 20px; color: var(--muted); font-size: 11px; font-weight: 600; }
.hero-meta span { display: inline-flex; align-items: center; gap: 7px; }
.hero-meta svg { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.hero-art { min-width: 0; }

.connection-visual { height: 540px; position: relative; border: 1px solid var(--line); border-radius: calc(var(--radius) + 8px); background: var(--surface); box-shadow: var(--shadow); overflow: hidden; }
.connection-visual::before { content: ''; position: absolute; inset: 0; background-image: linear-gradient(color-mix(in srgb, var(--line) 55%, transparent) 1px, transparent 1px), linear-gradient(90deg, color-mix(in srgb, var(--line) 55%, transparent) 1px, transparent 1px); background-size: 38px 38px; opacity: .5; mask-image: linear-gradient(to right, black, transparent 88%); }
.signal-field { position: absolute; border: 1px solid color-mix(in srgb, var(--accent) 30%, transparent); border-radius: 50%; }
.signal-a { width: 380px; height: 380px; left: -240px; top: 76px; }
.signal-b { width: 280px; height: 280px; right: -220px; top: 128px; border-color: color-mix(in srgb, var(--accent-2) 34%, transparent); }
.path-map { position: absolute; inset: 0; width: 100%; height: 100%; }
.path { fill: none; stroke-width: 2; stroke-linecap: round; stroke-dasharray: 7 9; animation: pathFlow 3s linear infinite; }
.path-one, .path-three { stroke: color-mix(in srgb, var(--accent) 56%, var(--line)); }
.path-two, .path-out { stroke: var(--accent-2); stroke-width: 2.5; }
.path-three { animation-delay: -1s; }
@keyframes pathFlow { to { stroke-dashoffset: -32; } }
.source { width: 100px; min-height: 62px; position: absolute; left: 20px; z-index: 2; display: grid; grid-template-columns: 25px 1fr; align-items: center; padding: 11px; border: 1px solid var(--line); border-radius: 10px; background: color-mix(in srgb, var(--surface) 90%, transparent); box-shadow: 0 6px 18px rgba(20, 30, 55, .06); }
.source i { width: 11px; height: 11px; border: 3px solid var(--accent); border-radius: 50%; box-shadow: 0 0 0 5px color-mix(in srgb, var(--accent) 12%, transparent); }
.source span { font-size: 11px; font-weight: 650; }
.source small { grid-column: 2; margin-top: 2px; color: var(--muted); font-family: var(--mono-font); font-size: 8px; }
.source-wifi { top: 54px; }
.source-cell { top: 218px; }
.source-ethernet { bottom: 54px; }
.source-ethernet i { border-color: var(--accent-2); box-shadow: 0 0 0 5px color-mix(in srgb, var(--accent-2) 12%, transparent); }
.phone-shell { width: 190px; height: 400px; position: absolute; top: 70px; left: 52%; z-index: 3; transform: translateX(-50%); padding: 8px; border: 3px solid color-mix(in srgb, var(--text) 82%, transparent); border-radius: 31px; background: var(--dark); box-shadow: 0 26px 56px rgba(10, 15, 28, .26); }
.phone-speaker { width: 47px; height: 4px; position: absolute; z-index: 4; top: 13px; left: 50%; transform: translateX(-50%); border-radius: 5px; background: #3a414c; }
.phone-screen { height: 100%; padding: 25px 14px 14px; border-radius: 22px; background: #111722; color: #f3f5f8; }
.app-top { display: flex; align-items: center; gap: 7px; margin-bottom: 27px; font-size: 9px; }
.app-top i { width: 6px; height: 6px; margin-left: auto; border-radius: 50%; background: #31d39b; box-shadow: 0 0 0 4px rgba(49, 211, 155, .12); }
.app-mark { width: 20px; height: 20px; flex: 0 0 20px; display: block; padding: 1px; border-radius: 50%; background: rgba(255,255,255,.06); box-shadow: 0 0 0 1px rgba(255,255,255,.1); object-fit: contain; }
.app-state { padding-bottom: 14px; border-bottom: 1px solid #29303b; }
.app-state span { display: block; margin-bottom: 3px; color: #8d96a5; font-size: 8px; text-transform: uppercase; letter-spacing: .1em; }
.app-state strong { font-size: 20px; letter-spacing: -.04em; }
.bond-bar { display: grid; grid-template-columns: 1.5fr 1fr .6fr; gap: 4px; margin: 13px 0 17px; }
.bond-bar i { height: 5px; border-radius: 4px; background: #45d29d; }
.bond-bar i:nth-child(2) { background: #6a83ff; }
.bond-bar i:nth-child(3) { background: #4c5666; }
.app-link { display: flex; align-items: center; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid #232a35; font-size: 9px; }
.app-link strong { color: #45d29d; font-family: var(--mono-font); font-size: 8px; font-weight: 500; }
.app-link.dim { color: #798291; }
.app-link.dim strong { color: #798291; }
.phone-screen button { width: 100%; height: 35px; margin-top: 22px; border: 1px solid #394251; border-radius: 7px; background: transparent; color: #e8ebf0; font-size: 9px; }
.destination { width: 108px; position: absolute; z-index: 3; right: 12px; top: 210px; text-align: center; }
.destination span { width: 42px; height: 42px; display: grid; place-items: center; margin: 0 auto 9px; border: 1px solid color-mix(in srgb, var(--accent-2) 48%, var(--line)); border-radius: 50%; background: var(--surface); color: var(--accent-2); }
.destination svg { width: 19px; fill: none; stroke: currentColor; stroke-width: 1.5; }
.destination strong { display: inline-block; padding: 3px 5px; border-radius: 4px; background: color-mix(in srgb, var(--surface) 88%, transparent); font-size: 10px; line-height: 1.3; }

.problem-strip { padding: 58px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--surface); }
.problem-grid { display: grid; grid-template-columns: 1.55fr repeat(3, 1fr); gap: 36px; }
.problem-intro { padding-right: 30px; }
.problem-intro .eyebrow { margin-bottom: 13px; }
.problem-intro h2 { margin: 0; font-size: 27px; line-height: 1.16; letter-spacing: -.04em; }
.problem-grid article { padding-left: 24px; border-left: 1px solid var(--line); }
.problem-grid article > span { display: block; margin-bottom: 20px; color: var(--accent); font-family: var(--mono-font); font-size: 10px; }
.problem-grid h3 { font-size: 14px; }
.problem-grid article p { margin: 0; font-size: 12px; line-height: 1.55; }

.section-heading { max-width: 780px; margin-bottom: 58px; }
.section-heading h2 { margin-bottom: 18px; }
.section-heading > p:last-child { max-width: 630px; margin: 0; font-size: 17px; }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); }
.step { min-height: 340px; position: relative; padding: 28px 45px 35px 0; border-right: 1px solid var(--line); }
.step + .step { padding-left: 45px; }
.step:last-child { border-right: 0; }
.step-number { display: block; margin-bottom: 47px; color: var(--muted); font-family: var(--mono-font); font-size: 10px; }
.step-symbol { width: 100%; height: 72px; position: relative; margin-bottom: 31px; }
.step-symbol::after { content: ''; position: absolute; top: 50%; right: 0; left: 0; height: 1px; background: var(--line); }
.step-symbol i, .step-symbol b { position: absolute; z-index: 2; top: 50%; transform: translateY(-50%); background: var(--surface); }
.step-symbol.choose i { width: 30px; height: 30px; border: 1px solid var(--text); border-radius: 7px; }
.step-symbol.choose i:first-child { left: 7%; }
.step-symbol.choose i:nth-child(2) { right: 7%; border-radius: 50%; border-color: var(--accent); box-shadow: 0 0 0 8px var(--accent-soft); }
.step-symbol.combine i { width: 12px; height: 12px; left: 5%; border: 3px solid var(--accent); border-radius: 50%; }
.step-symbol.combine i:nth-child(2) { top: 25%; }
.step-symbol.combine i:nth-child(3) { top: 75%; }
.step-symbol.combine::before { content: ''; width: 42px; height: 42px; position: absolute; z-index: 2; top: 50%; right: 7%; transform: translateY(-50%); border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 9px var(--accent-soft); }
.step-symbol.adapt i { width: 64%; height: 36px; left: 8%; border-bottom: 2px solid var(--accent); border-radius: 0 0 60% 0; background: transparent; }
.step-symbol.adapt i::after { content: ''; width: 12px; height: 12px; position: absolute; right: -1px; bottom: -7px; border: 3px solid var(--accent-2); border-radius: 50%; background: var(--surface); }
.step h3 { font-size: 20px; }
.step p { max-width: 290px; margin: 0; font-size: 14px; }
.technical-link { display: flex; align-items: center; justify-content: space-between; gap: 22px; margin-top: 34px; padding: 22px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); color: var(--muted); font-size: 13px; transition: color .2s ease, padding .2s ease; }
.technical-link svg { width: 18px; fill: none; stroke: currentColor; stroke-width: 1.8; }
.technical-link:hover { color: var(--accent); padding-left: 10px; }

.benefits-section { background: var(--dark); color: var(--dark-text); }
.benefits-section p { color: #aeb6c4; }
.benefits-layout { display: grid; grid-template-columns: .9fr 1.1fr; gap: 100px; align-items: center; }
.benefits-statement { position: sticky; top: 80px; }
.benefits-statement h2 { max-width: 540px; }
.benefit-list article { min-height: 140px; display: grid; grid-template-columns: 48px 1fr; gap: 22px; align-content: center; border-bottom: 1px solid #303744; }
.benefit-list article:first-child { border-top: 1px solid #303744; }
.benefit-list article > span { color: #798392; font-family: var(--mono-font); font-size: 10px; }
.benefit-list h3 { margin-bottom: 7px; color: #fff; font-size: 21px; }
.benefit-list p { max-width: 520px; margin: 0; font-size: 14px; }
.benefit-orbit { width: 360px; height: 360px; position: relative; margin-top: 48px; border: 1px solid #343c49; border-radius: 50%; }
.benefit-orbit::before { content: ''; position: absolute; inset: 42px; border: 1px dashed #343c49; border-radius: 50%; }
.benefit-orbit b { width: 92px; height: 92px; position: absolute; top: 50%; left: 50%; display: grid; place-items: center; transform: translate(-50%, -50%); border-radius: 50%; background: var(--accent); font-size: 13px; letter-spacing: .12em; }
.benefit-orbit span { position: absolute; padding: 7px 12px; border: 1px solid #3b4453; border-radius: 20px; background: #171d27; color: #aeb6c4; font-size: 10px; }
.benefit-orbit span:first-child { top: 18px; left: 44%; }
.benefit-orbit span:nth-child(2) { right: -18px; bottom: 86px; }
.benefit-orbit span:nth-child(3) { left: -17px; bottom: 86px; }

.downloads-section { background: var(--surface-2); }
.download-grid { display: grid; grid-template-columns: 1fr 1fr .55fr; gap: 18px; align-items: stretch; }
.download-card { min-height: 520px; display: grid; grid-template-columns: 56px 1fr; align-content: start; padding: 34px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); box-shadow: 0 10px 35px rgba(20, 30, 50, .04); }
.download-card.featured { border-color: color-mix(in srgb, var(--accent) 40%, var(--line)); box-shadow: 0 18px 50px color-mix(in srgb, var(--accent) 10%, transparent); }
.download-icon { width: 43px; height: 43px; display: grid; place-items: center; border-radius: 11px; background: var(--accent-soft); color: var(--accent); }
.download-icon svg { width: 23px; height: 23px; fill: none; stroke: currentColor; stroke-width: 1.45; stroke-linecap: round; stroke-linejoin: round; }
.download-title span { display: block; margin-bottom: 2px; color: var(--muted); font-family: var(--mono-font); font-size: 8px; letter-spacing: .08em; text-transform: uppercase; }
.download-title h3 { margin: 0; font-size: 29px; }
.download-card > p, .download-card dl, .download-card > .button, .download-card > small, .download-card > .text-link { grid-column: 1 / -1; }
.download-card > p { min-height: 76px; margin: 25px 0 21px; font-size: 14px; }
.download-card dl { margin: 0 0 27px; border-top: 1px solid var(--line); }
.download-card dl div { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 12px 0; border-bottom: 1px solid var(--line); font-size: 11px; }
.download-card dt { color: var(--muted); }
.download-card dd { margin: 0; font-weight: 650; text-align: right; }
.download-card .button { margin-top: auto; }
.download-card > small { display: block; margin-top: 13px; color: var(--muted); font-size: 9px; text-align: center; }
.download-card.compact { min-height: auto; display: grid; grid-template-columns: 50px 1fr; align-content: start; }
.download-card.compact p { min-height: 0; margin-bottom: 26px; }

.hosting-layout { display: grid; grid-template-columns: .7fr 1.3fr; gap: 80px; align-items: start; }
.hosting-copy { position: sticky; top: 80px; }
.hosting-copy p:last-child { max-width: 420px; }
.hosting-options { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.hosting-card { min-height: 560px; position: relative; padding: 30px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); overflow: hidden; }
.hosting-card > span { color: var(--muted); font-family: var(--mono-font); font-size: 10px; }
.hosting-card h3 { margin-top: 30px; font-size: 25px; }
.hosting-card p { font-size: 13px; }
.hosting-card ul { display: grid; gap: 10px; margin: 28px 0; padding: 0; list-style: none; color: var(--muted); font-size: 11px; }
.hosting-card li { display: flex; align-items: center; gap: 8px; }
.hosting-card li svg { width: 15px; fill: none; stroke: var(--accent-2); stroke-width: 2; }
.hosting-diagram { height: 165px; position: relative; margin: 25px -30px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px); background-size: 24px 24px; }
.hosting-flow { display: grid; grid-template-columns: minmax(105px, 1fr) minmax(115px, 1.15fr) minmax(105px, 1fr); align-items: center; gap: 8px; padding: 20px 24px; }
.flow-endpoint { min-width: 0; display: flex; align-items: center; flex-direction: column; text-align: center; }
.flow-endpoint > strong { max-width: 120px; margin-top: 8px; color: var(--text); font-size: 10px; line-height: 1.25; }
.flow-endpoint > small { max-width: 120px; margin-top: 3px; color: var(--muted); font-size: 8px; line-height: 1.25; }
.flow-device-glyph, .flow-server-glyph, .flow-cloud-glyph { width: 45px; height: 45px; display: grid; place-items: center; position: relative; border: 1px solid color-mix(in srgb, var(--accent) 55%, var(--line)); background: color-mix(in srgb, var(--accent) 8%, var(--surface)); color: var(--accent); box-shadow: 0 0 0 6px color-mix(in srgb, var(--accent) 7%, transparent); }
.flow-device-glyph { border-radius: 9px; }
.flow-device-glyph::before { content: ''; width: 17px; height: 27px; border: 1.5px solid currentColor; border-radius: 4px; }
.flow-device-glyph::after { content: ''; width: 3px; height: 3px; position: absolute; bottom: 11px; border-radius: 50%; background: currentColor; }
.flow-server-glyph { align-content: center; gap: 3px; border-radius: 7px; }
.flow-server-glyph b { width: 24px; height: 5px; position: relative; border: 1px solid currentColor; border-radius: 2px; }
.flow-server-glyph b::after { content: ''; width: 2px; height: 2px; position: absolute; top: 1px; right: 2px; border-radius: 50%; background: currentColor; }
.flow-cloud-glyph { border-color: color-mix(in srgb, var(--accent-2) 55%, var(--line)); border-radius: 50%; background: color-mix(in srgb, var(--accent-2) 9%, var(--surface)); color: var(--accent-2); box-shadow: 0 0 0 6px color-mix(in srgb, var(--accent-2) 7%, transparent); }
.flow-cloud-glyph svg { width: 23px; height: 23px; fill: none; stroke: currentColor; stroke-width: 1.4; }
.flow-path { min-width: 0; display: grid; grid-template-columns: 1fr auto; align-items: center; position: relative; color: var(--accent); }
.flow-path::before { content: ''; height: 1px; grid-column: 1; grid-row: 1; background: currentColor; opacity: .8; }
.flow-path > span { grid-column: 1 / -1; grid-row: 1; justify-self: center; z-index: 1; margin-top: -28px; padding: 3px 7px; border: 1px solid color-mix(in srgb, currentColor 35%, var(--line)); border-radius: 20px; background: var(--surface); color: var(--text); font-size: 7px; white-space: nowrap; }
.flow-path > svg { width: 16px; grid-column: 2; grid-row: 1; margin-left: -3px; fill: none; stroke: currentColor; stroke-width: 1.5; }
.flow-path > small { grid-column: 1 / -1; grid-row: 1; justify-self: center; margin-top: 30px; color: var(--muted); font-size: 7px; white-space: nowrap; }
.managed-flow .flow-path { color: var(--accent-2); }

.uses-section { border-top: 1px solid var(--line); background: var(--surface); }
.use-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.use-grid article { min-height: 310px; position: relative; padding: 28px; border: 1px solid var(--line); border-radius: var(--radius-small); overflow: hidden; }
.use-card-top { display: flex; align-items: center; justify-content: space-between; gap: 12px; position: relative; z-index: 1; }
.use-index { color: var(--accent); font-family: var(--mono-font); font-size: 10px; }
.use-context { color: var(--muted); font-family: var(--mono-font); font-size: 8px; letter-spacing: .06em; text-transform: uppercase; }
.use-grid h3 { margin-top: 96px; font-size: 24px; }
.use-grid p { max-width: 300px; margin-bottom: 0; font-size: 13px; }
.use-outcome { display: grid; gap: 5px; margin-top: 19px; padding-top: 15px; border-top: 1px solid var(--line); }
.use-outcome span { color: var(--accent); font-family: var(--mono-font); font-size: 8px; letter-spacing: .06em; text-transform: uppercase; }
.use-outcome strong { max-width: 330px; color: var(--text); font-size: 10px; font-weight: 500; line-height: 1.5; }
.use-line { position: absolute; width: 220px; height: 220px; top: -150px; right: -60px; border: 1px solid color-mix(in srgb, var(--accent) 34%, var(--line)); border-radius: 50%; }
.use-line::before, .use-line::after { content: ''; position: absolute; border: inherit; border-radius: inherit; }
.use-line::before { inset: 24px; }
.use-line::after { inset: 51px; }

.faq-section { background: var(--surface-2); }
.faq-layout { display: grid; grid-template-columns: .75fr 1.25fr; gap: 100px; }
.faq-heading { position: sticky; top: 90px; align-self: start; }
.faq-heading p:last-child { max-width: 390px; }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { min-height: 80px; display: flex; align-items: center; justify-content: space-between; gap: 30px; cursor: pointer; list-style: none; font-family: var(--display-font); font-size: 17px; font-weight: 600; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { color: var(--accent); font-family: var(--body-font); font-size: 22px; font-weight: 400; }
.faq-list details p { max-width: 650px; margin: -5px 50px 26px 0; font-size: 14px; }

.ecosystem-section { background: var(--dark); color: var(--dark-text); }
.ecosystem-section .section-heading p { color: #aeb6c4; }
.ecosystem-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid #343b47; border-left: 1px solid #343b47; }
.ecosystem-card { min-height: 270px; display: flex; flex-direction: column; padding: 28px; border-right: 1px solid #343b47; border-bottom: 1px solid #343b47; transition: background .25s ease, color .25s ease; }
.ecosystem-card:hover { background: #1a212c; }
.ecosystem-card.current { background: var(--accent); border-color: var(--accent); }
.ecosystem-card > span { margin-bottom: auto; color: #8993a2; font-family: var(--mono-font); font-size: 9px; text-transform: uppercase; letter-spacing: .08em; }
.ecosystem-card.current > span, .ecosystem-card.current p { color: rgba(255,255,255,.72); }
.ecosystem-card strong { margin-bottom: 13px; font-family: var(--display-font); font-size: 20px; }
.ecosystem-card p { margin: 0; color: #9ca6b5; font-size: 12px; }

.final-cta { padding: 72px 0; background: var(--accent); color: #fff; }
.final-cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.final-cta .eyebrow { color: rgba(255,255,255,.68); }
.final-cta h2 { max-width: 700px; margin: 0; font-size: clamp(36px, 4vw, 56px); }
.final-cta .button-primary { background: #fff; color: var(--accent); box-shadow: none; }

.site-footer { padding: 72px 0 28px; background: #0a0d12; color: #f5f7fa; }
.footer-grid { display: grid; grid-template-columns: 1.8fr repeat(3, 1fr); gap: 50px; }
.footer-brand .brand { margin-bottom: 17px; }
.footer-brand .brand img { filter: invert(1); }
.footer-brand p { max-width: 320px; color: #858e9d; font-size: 12px; }
.footer-grid h3 { margin-bottom: 18px; color: #737d8d; font-family: var(--mono-font); font-size: 9px; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; }
.footer-grid > div:not(.footer-brand) { display: flex; flex-direction: column; align-items: flex-start; gap: 11px; color: #b2bac6; font-size: 11px; }
.footer-grid button { padding: 0; border: 0; background: transparent; color: inherit; cursor: pointer; font: inherit; }
.footer-grid a:hover { color: #fff; }
.footer-grid button:hover { color: #fff; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 30px; margin-top: 58px; padding-top: 22px; border-top: 1px solid #252b35; color: #646d7b; font-family: var(--mono-font); font-size: 8px; letter-spacing: .08em; text-transform: uppercase; }

.reveal { opacity: 0; transform: translateY(16px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal.visible { opacity: 1; transform: none; }

.analytics-consent { width: min(500px, calc(100% - 32px)); position: fixed; z-index: 500; right: 20px; bottom: 20px; padding: 20px; border: 1px solid var(--line); border-radius: 12px; background: color-mix(in srgb, var(--surface) 94%, transparent); box-shadow: 0 22px 70px rgba(0,0,0,.28); backdrop-filter: blur(18px); }
.analytics-consent[hidden] { display: none; }
.analytics-consent-copy { padding-right: 8px; }
.analytics-consent h2 { margin-bottom: 7px; font-size: 17px; letter-spacing: -.025em; }
.analytics-consent p { margin: 0; font-size: 11px; line-height: 1.55; }
.analytics-consent-actions { display: flex; justify-content: flex-end; gap: 8px; margin-top: 16px; }
.analytics-consent .button { min-height: 38px; padding-inline: 15px; font-size: 10px; }
.analytics-consent .button-secondary { background: transparent; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } .reveal { opacity: 1; transform: none; transition: none; } .path { animation: none; } }

@media (max-width: 1050px) {
  .main-nav { gap: 18px; }
  .hero-layout { grid-template-columns: 1fr 480px; gap: 26px; }
  .problem-grid { grid-template-columns: 1.3fr repeat(3, 1fr); gap: 22px; }
  .download-grid { grid-template-columns: 1fr 1fr; }
  .download-card.compact { grid-column: 1 / -1; min-height: 260px; }
  .hosting-layout { grid-template-columns: 1fr; }
  .hosting-copy { position: static; }
}

@media (max-width: 850px) {
  .wrap { width: min(calc(100% - 36px), var(--wrap)); }
  .site-header { height: 68px; }
  .menu-toggle { display: block; margin-left: auto; }
  .main-nav { position: absolute; top: 67px; right: 18px; left: 18px; display: none; flex-direction: column; align-items: stretch; gap: 0; padding: 10px; border: 1px solid var(--line); border-radius: 12px; background: var(--surface); box-shadow: var(--shadow); }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 13px 12px; }
  .main-nav a::after { display: none; }
  .header-cta { display: none; }
  .hero { padding-top: 68px; }
  .hero-layout { grid-template-columns: 1fr; }
  .hero-copy { max-width: 700px; }
  .hero-art { max-width: 620px; width: 100%; margin-inline: auto; }
  .problem-grid { grid-template-columns: 1fr 1fr; }
  .problem-intro { grid-column: 1 / -1; }
  .problem-grid article:last-child { grid-column: 1 / -1; }
  .steps { grid-template-columns: 1fr; }
  .step, .step + .step { min-height: 250px; padding: 28px 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .step-symbol { max-width: 390px; }
  .step-number { margin-bottom: 20px; }
  .benefits-layout { grid-template-columns: 1fr; gap: 60px; }
  .benefits-statement { position: static; }
  .download-grid { grid-template-columns: 1fr; }
  .download-card.compact { grid-column: auto; }
  .hosting-options { max-width: 700px; }
  .use-grid { grid-template-columns: 1fr; }
  .use-grid article { min-height: 250px; }
  .use-grid h3 { margin-top: 55px; }
  .faq-layout { grid-template-columns: 1fr; gap: 40px; }
  .faq-heading { position: static; }
  .ecosystem-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1.7fr 1fr 1fr; }
  .footer-grid > div:last-child { grid-column: 2; }
}

@media (max-width: 580px) {
  .candidate-bar { justify-content: flex-start; padding-left: 76px; font-size: 8px; }
  .candidate-back { width: 45px; overflow: hidden; white-space: nowrap; }
  .candidate-bar nav { right: 6px; }
  .family-inner { gap: 10px; }
  .family-links { gap: 0; }
  .family-links a:not(.current) { display: none; }
  .family-links .current { font-size: 10px; line-height: 1.35; white-space: nowrap; }
  .brand { font-size: 13px; }
  .brand img { width: 27px; height: 27px; }
  .section { padding: 82px 0; }
  h1 { font-size: 48px; }
  h2 { font-size: 38px; }
  .hero { min-height: auto; padding: 62px 0 68px; }
  .hero-lede { font-size: 16px; }
  .hero-actions .button { width: 100%; }
  .hero-meta { gap: 12px; }
  .connection-visual { height: 440px; }
  .source { width: 79px; left: 8px; padding: 8px; grid-template-columns: 20px 1fr; }
  .source-wifi { top: 30px; }
  .source-cell { top: 187px; }
  .source-ethernet { bottom: 30px; }
  .phone-shell { width: 166px; height: 350px; top: 45px; left: 57%; }
  .destination { width: 72px; right: 0; top: 177px; }
  .destination strong { font-size: 8px; }
  .problem-grid { grid-template-columns: 1fr; }
  .problem-grid article, .problem-grid article:last-child { grid-column: auto; }
  .problem-grid article { padding: 24px 0 0; border-top: 1px solid var(--line); border-left: 0; }
  .benefit-orbit { width: 280px; height: 280px; }
  .download-card { min-height: auto; padding: 25px; }
  .hosting-options { grid-template-columns: 1fr; }
  .hosting-card { min-height: auto; }
  .ecosystem-grid { grid-template-columns: 1fr; }
  .ecosystem-card { min-height: 210px; }
  .final-cta-inner { align-items: flex-start; flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-grid > div:last-child { grid-column: auto; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
  .analytics-consent { width: calc(100% - 18px); right: 9px; bottom: 9px; padding: 17px; }
  .analytics-consent-actions { justify-content: stretch; }
  .analytics-consent .button { flex: 1; }
}
