:root {
  --ink: #081d2b;
  --ink-2: #0d2a3b;
  --paper: #f5f8f7;
  --white: #ffffff;
  --mint: #62e6bd;
  --mint-dark: #22b98c;
  --blue: #1d6dff;
  --muted: #59707c;
  --line: #cbd8da;
  --shadow: 0 28px 80px rgba(5, 27, 40, 0.13);
  --radius: 1.15rem;
  --shell: min(1180px, calc(100% - 40px));
  --font-heading: "Inter Tight", "Inter", ui-sans-serif, system-ui, sans-serif;
  --font-body: "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-accent: "Source Serif 4", Georgia, "Times New Roman", serif;
  --header-height: 86px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scrollbar-gutter: stable; }
html.chat-scroll-locked, html.chat-scroll-locked body { overflow: hidden; }
@supports not (scrollbar-gutter: stable) {
  html.chat-scroll-locked body { padding-right: var(--chat-scrollbar-width, 0); }
}
[id] { scroll-margin-top: calc(var(--header-height) + 1rem); }
body { margin: 0; background: var(--paper); color: var(--ink); font-family: var(--font-body); font-size: 16px; line-height: 1.6; -webkit-font-smoothing: antialiased; }
button, input, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; }
button:focus-visible, a:focus-visible, input:focus-visible, textarea:focus-visible { outline: 3px solid var(--mint); outline-offset: 3px; }
.shell { width: var(--shell); margin-inline: auto; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; z-index: 1000; left: 1rem; top: -5rem; padding: .7rem 1rem; background: var(--white); color: var(--ink); border-radius: .5rem; }
.skip-link:focus { top: 1rem; }

.site-header { position: sticky; z-index: 80; top: 0; width: 100%; min-height: var(--header-height); margin-bottom: calc(-1 * var(--header-height)); color: var(--white); background: transparent; transition: background-color .2s ease, box-shadow .2s ease; }
.site-header.is-scrolled { background: rgba(8,29,43,.97); box-shadow: 0 1px 0 rgba(255,255,255,.12); }
.header-inner { min-height: var(--header-height); display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 1.5rem; border-bottom: 1px solid rgba(255,255,255,.15); }
.brand { display: inline-flex; align-items: center; text-decoration: none; }
.brand-logo { display: block; width: 8.6rem; height: auto; }
.brand-logo-dot, .brand-logo-dot-back-circle { transform-box: fill-box; transform-origin: center; }
.brand-logo-dot-back-circle { opacity: 0; filter: blur(1px); }
.brand-logo-dot-path { visibility: hidden; fill: none; pointer-events: none; }
.brand.is-dot-animating .brand-logo-dot, .brand.is-dot-animating .brand-logo-dot-back-circle { will-change: transform, opacity; }
.brand-word span { color: var(--mint); }
.brand-word { font-size: 1.72rem; line-height: .88; font-weight: 780; letter-spacing: -.065em; }
.site-nav { display: flex; justify-content: center; gap: 1.5rem; }
.site-nav a { text-decoration: none; color: rgba(255,255,255,.72); font-size: .92rem; font-weight: 600; }
.site-nav a:hover, .site-nav a:focus-visible { color: var(--white); }
.mobile-portal { display: none; }
.header-actions { display: flex; align-items: center; gap: 1rem; }
.header-portal { min-height: 42px; display: inline-flex; align-items: center; gap: .55rem; padding: .45rem .72rem .45rem .5rem; border: 1px solid rgba(98,230,189,.52); border-radius: .55rem; background: rgba(255,255,255,.055); color: var(--white); text-decoration: none; font-size: .82rem; font-weight: 750; white-space: nowrap; transition: background-color .2s ease, border-color .2s ease, color .2s ease, transform .2s ease; }
.portal-mark { width: 1.75rem; height: 1.75rem; display: inline-grid; place-items: center; border-radius: .38rem; background: var(--mint); color: var(--ink); font-size: .75rem; font-weight: 850; }
.portal-arrow { color: var(--mint); font-size: .85rem; transition: color .2s ease, transform .2s ease; }
.header-portal:hover, .header-portal:focus-visible { background: var(--mint); border-color: var(--mint); color: var(--ink); transform: translateY(-1px); }
.header-portal:hover .portal-arrow, .header-portal:focus-visible .portal-arrow { color: var(--ink); transform: translate(1px,-1px); }
.header-call { display: flex; flex-direction: column; text-align: right; text-decoration: none; line-height: 1.3; }
.header-call span { color: rgba(255,255,255,.58); font-size: .72rem; text-transform: uppercase; letter-spacing: .12em; }
.header-call strong { font-size: .92rem; }
.menu-toggle { display: none; background: none; border: 0; color: white; padding: .5rem; }
.menu-toggle > span:not(.sr-only) { display: block; width: 1.6rem; height: 2px; margin: .35rem; background: currentColor; }

@supports (backdrop-filter: blur(8px)) {
  .site-header.is-scrolled { background: rgba(8,29,43,.93); backdrop-filter: blur(8px); }
}

.hero { position: relative; min-height: max(700px, 100svh); display: grid; align-items: center; padding: 122px 0 64px; overflow: hidden; color: var(--white); background: var(--ink); }
.hero::before { content: ""; position: absolute; inset: 0; opacity: .12; background-image: linear-gradient(rgba(255,255,255,.18) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.18) 1px, transparent 1px); background-size: 64px 64px; mask-image: linear-gradient(to right, black, transparent 70%); }
.hero::after { content: ""; position: absolute; width: 44rem; height: 44rem; border: 1px solid rgba(98,230,189,.2); border-radius: 50%; right: -21rem; bottom: -23rem; box-shadow: 0 0 0 9rem rgba(98,230,189,.025), 0 0 0 18rem rgba(98,230,189,.018); }
.hero-glow { position: absolute; inset: auto auto -20% -10%; width: 44rem; height: 34rem; border-radius: 50%; background: rgba(29,109,255,.15); filter: blur(120px); }
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(0, 1.12fr) minmax(390px, .72fr); align-items: center; gap: clamp(3rem, 4.5vw, 4.5rem); }
.eyebrow { margin: 0 0 1.3rem; display: flex; align-items: center; gap: .7rem; color: var(--mint); font-size: .74rem; font-weight: 800; text-transform: uppercase; letter-spacing: .16em; }
.eyebrow span { width: 2rem; height: 1px; background: currentColor; }
.eyebrow.dark { color: var(--blue); }
.eyebrow.light { color: var(--mint); }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-family: var(--font-heading); }
h1 { max-width: 770px; margin-bottom: 1.35rem; font-size: clamp(3.8rem, 7.25vw, 6.7rem); line-height: .86; letter-spacing: -.075em; font-weight: 750; }
h1 em, h2 em { color: var(--mint); font-family: var(--font-accent); font-weight: 400; letter-spacing: -.055em; }
.hero-copy .eyebrow { margin-bottom: 1.55rem; }
.hero h1 { line-height: .88; }
.hero-title-primary { display: inline-block; font-size: .91em; font-weight: 720; letter-spacing: -.055em; }
.hero h1 em { display: inline-block; color: var(--mint); font-family: var(--font-accent); font-size: .88em; font-style: italic; font-weight: 400; letter-spacing: -.045em; line-height: .95; white-space: nowrap; }
.hero-lead { max-width: 600px; color: rgba(255,255,255,.72); font-size: clamp(1.05rem, 1.8vw, 1.24rem); line-height: 1.65; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; margin: 1.7rem 0 1.65rem; }
.button { min-height: 52px; display: inline-flex; align-items: center; justify-content: center; gap: 1rem; padding: .8rem 1.2rem; border: 1px solid transparent; border-radius: .55rem; cursor: pointer; text-decoration: none; font-weight: 750; transition: transform .2s ease, background .2s ease, border-color .2s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--mint); color: var(--ink); }
.button-primary:hover { background: #7af0cc; }
.button-ghost { color: var(--white); border-color: rgba(255,255,255,.25); }
.button-ghost:hover { border-color: rgba(255,255,255,.7); background: rgba(255,255,255,.06); }
.button-light { background: white; color: var(--ink); }
.button-mint { background: var(--mint); color: var(--ink); }
.trust-list { display: flex; flex-wrap: wrap; gap: 1.3rem; margin: 0; padding: 0; list-style: none; color: rgba(255,255,255,.65); font-size: .85rem; }
.trust-list li::before { content: "✓"; margin-right: .45rem; color: var(--mint); font-weight: 900; }

.hero-choices { position: relative; width: 100%; max-width: 430px; justify-self: end; padding: 1.25rem 0; color: var(--ink); }
.choice-ring { position: absolute; z-index: -1; width: 29rem; height: 29rem; top: 50%; right: -9rem; border: 1px solid rgba(98,230,189,.22); border-radius: 50%; box-shadow: 0 0 70px rgba(98,230,189,.06); transform: translateY(-50%); }
.choice-kicker { display: flex; align-items: center; margin: 0 0 1rem; color: rgba(255,255,255,.78); font-size: .72rem; font-weight: 760; letter-spacing: .075em; text-transform: uppercase; }
.status-dot { width: .5rem; height: .5rem; margin-right: .6rem; border-radius: 50%; background: var(--mint-dark); box-shadow: 0 0 0 .25rem rgba(34,185,140,.13); }
.choice-cluster { position: relative; display: grid; gap: .72rem; }
.choice-card { position: relative; width: 100%; min-height: 94px; display: grid; grid-template-columns: auto minmax(0, 1fr) auto; align-items: center; gap: .9rem; padding: .82rem .95rem; border: 1px solid rgba(255,255,255,.72); border-radius: 1rem; color: var(--ink); text-align: left; cursor: pointer; box-shadow: 0 14px 36px rgba(0,0,0,.17); transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease; }
.choice-card-hosting { background: rgba(255,255,255,.97); }
.choice-card-cloud { background: #e8faf4; border-color: rgba(98,230,189,.56); }
.choice-card-website { background: #edf0f8; border-color: rgba(215,222,241,.9); }
.choice-card:hover, .choice-card:focus-visible { z-index: 2; transform: translateY(-3px); border-color: var(--mint); box-shadow: 0 24px 55px rgba(0,0,0,.26); }
.route-icon { width: 2.7rem; height: 2.7rem; display: grid; place-items: center; border-radius: .72rem; background: #e9f4ff; color: var(--blue); font-weight: 880; }
.route-icon svg { width: 1.82rem; height: 1.82rem; transition: color .2s ease, transform .2s ease; }
.choice-card-cloud .route-icon { background: rgba(255,255,255,.7); color: #07865f; }
.choice-card-website .route-icon { background: rgba(255,255,255,.68); color: #4b53c7; }
.choice-card-hosting:hover .route-icon, .choice-card-hosting:focus-visible .route-icon { color: #145edb; }
.choice-card-cloud:hover .route-icon, .choice-card-cloud:focus-visible .route-icon { color: #057653; }
.choice-card-website:hover .route-icon, .choice-card-website:focus-visible .route-icon { color: #4047b4; }
.choice-card:hover .route-icon svg, .choice-card:focus-visible .route-icon svg { transform: translateY(-2px); }
.choice-copy, .choice-copy strong, .choice-copy small { display: block; }
.choice-copy strong { font-family: var(--font-heading); font-size: .96rem; line-height: 1.25; letter-spacing: -.018em; }
.choice-copy small { margin-top: .22rem; color: #526b78; font-size: .76rem; line-height: 1.4; }
.choice-arrow { width: 2.45rem; height: 2.45rem; display: grid; place-items: center; flex: none; border-radius: 50%; color: var(--white); background: var(--ink); font-size: 1rem; transition: transform .2s ease, background-color .2s ease; }
.choice-card:hover .choice-arrow, .choice-card:focus-visible .choice-arrow { transform: translateX(3px); background: var(--blue); }
.choice-contact { position: relative; z-index: 3; width: 100%; display: flex; align-items: center; justify-content: space-between; gap: .75rem; margin-top: .9rem; padding: .48rem .5rem .48rem .85rem; border: 1px solid rgba(255,255,255,.14); border-radius: 999px; color: rgba(255,255,255,.7); background: rgba(255,255,255,.055); font-size: .72rem; }
.choice-contact a { padding: .38rem .68rem; border-radius: 999px; color: var(--ink); background: var(--mint); text-decoration: none; font-weight: 800; white-space: nowrap; }
.choice-contact a:hover, .choice-contact a:focus-visible { background: #7af0cc; }

.site-header { animation: homepage-header-fade .65s ease-out backwards; }
.hero-copy.reveal, .hero-choices.reveal { opacity: 1; transform: none; }
.hero-copy .eyebrow { animation: homepage-bloom .65s ease-out .06s backwards; }
.hero-title-primary { animation: homepage-bloom .65s ease-out .12s backwards; }
.hero h1 em { animation: homepage-bloom .65s ease-out .18s backwards; }
.hero-lead { animation: homepage-bloom .65s ease-out .24s backwards; }
.hero-actions { animation: homepage-bloom .65s ease-out .3s backwards; }
.trust-list { animation: homepage-bloom .65s ease-out .36s backwards; }
.choice-kicker { animation: homepage-bloom .65s ease-out .42s backwards; }
.choice-card:nth-child(1) { animation: homepage-bloom .65s ease-out .46s backwards; }
.choice-card:nth-child(2) { animation: homepage-bloom .65s ease-out .51s backwards; }
.choice-card:nth-child(3) { animation: homepage-bloom .65s ease-out .56s backwards; }
.choice-contact { animation: homepage-bloom .65s ease-out .6s backwards; }
.hero::after { animation: homepage-rings-fade .72s ease-out .12s backwards; }
.choice-ring { animation: homepage-choice-ring-fade .72s ease-out .18s backwards; }

@keyframes homepage-header-fade {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes homepage-bloom {
  from { opacity: 0; transform: translateY(11px); filter: blur(2.5px); }
  to { opacity: 1; transform: none; filter: none; }
}

@keyframes homepage-rings-fade {
  from { opacity: 0; transform: scale(.98); }
  to { opacity: 1; transform: none; }
}

@keyframes homepage-choice-ring-fade {
  from { opacity: 0; transform: translateY(-50%) scale(.98); }
  to { opacity: 1; transform: translateY(-50%); }
}

.brand-intro { --intro-safe-top: env(safe-area-inset-top, 0px); --intro-safe-bottom: env(safe-area-inset-bottom, 0px); position: absolute; z-index: 5; inset: 0; display: none; place-items: center; overflow: hidden; pointer-events: auto; }
.brand-intro-stage { position: relative; width: clamp(300px, 34vw, 560px); }
.brand-intro-stage > img { position: relative; z-index: 2; display: block; width: 100%; height: auto; opacity: 0; transform: scale(.96); }
.brand-intro-rings { position: absolute; z-index: 1; inset: 0; pointer-events: none; }
.brand-intro-rings span, .brand-intro-rings i { position: absolute; left: 95.85%; top: 70%; display: block; aspect-ratio: 1; border: 1px solid rgba(98,230,189,.32); border-radius: 50%; transform: translate(-50%,-50%); }
.brand-intro-rings span:nth-child(1) { width: 88%; }
.brand-intro-rings span:nth-child(2) { width: 116%; border-color: rgba(76,170,171,.24); }
.brand-intro-rings span:nth-child(3) { width: 146%; border-color: rgba(98,230,189,.16); }
.brand-intro-rings i { width: 4.2%; border-color: rgba(98,230,189,.8); box-shadow: 0 0 1rem rgba(98,230,189,.24); }

.brand-intro-active:not(.intro-ready) .site-header, .brand-intro-active:not(.intro-ready) .hero-copy .eyebrow, .brand-intro-active:not(.intro-ready) .hero-title-primary, .brand-intro-active:not(.intro-ready) .hero h1 em, .brand-intro-active:not(.intro-ready) .hero-lead, .brand-intro-active:not(.intro-ready) .hero-actions, .brand-intro-active:not(.intro-ready) .trust-list, .brand-intro-active:not(.intro-ready) .choice-kicker, .brand-intro-active:not(.intro-ready) .choice-card, .brand-intro-active:not(.intro-ready) .choice-contact, .brand-intro-active:not(.intro-ready) .hero::after, .brand-intro-active:not(.intro-ready) .choice-ring { animation: none; opacity: 1; transform: none; filter: none; }
.brand-intro-active.intro-ready .brand-intro { display: grid; }
.brand-intro-active.intro-ready:not(.brand-intro-complete) .brand-logo { opacity: 0; }
.brand-intro-active.intro-ready .brand-intro-stage > img { animation: contained-intro-logo 1.2s ease-out .6s both; }
.brand-intro-active.intro-ready .brand-intro-rings span:nth-child(1) { animation: contained-intro-ring 1.6s cubic-bezier(.4,0,.2,1) .4s both; }
.brand-intro-active.intro-ready .brand-intro-rings span:nth-child(2) { animation: contained-intro-ring 1.6s cubic-bezier(.4,0,.2,1) .48s both; }
.brand-intro-active.intro-ready .brand-intro-rings span:nth-child(3) { animation: contained-intro-ring 1.6s cubic-bezier(.4,0,.2,1) .56s both; }
.brand-intro-active.intro-ready .brand-intro-rings i { animation: contained-intro-dot 2.15s cubic-bezier(.4,0,.2,1) .35s both; }
.brand-intro-active.intro-ready .hero-copy { animation: contained-hero-content .72s ease-out 3s both; }
.brand-intro-active.intro-ready .hero-choices { animation: contained-hero-content .72s ease-out 3.15s both; }
.brand-intro-active.intro-ready .hero-copy > *, .brand-intro-active.intro-ready .hero-choices .choice-kicker, .brand-intro-active.intro-ready .hero-choices .choice-card, .brand-intro-active.intro-ready .hero-choices .choice-contact, .brand-intro-active.intro-ready .hero::after, .brand-intro-active.intro-ready .choice-ring { animation: none; }
.brand-intro-active.brand-intro-complete .brand-logo { opacity: 1; }
.brand-intro-active.brand-intro-complete .brand-intro { display: none; }
.brand-intro-active.brand-intro-skipped .hero-copy, .brand-intro-active.brand-intro-skipped .hero-choices { opacity: 1; transform: none; filter: none; animation: none; }

@keyframes contained-intro-logo {
  from { opacity: 0; transform: scale(.96); filter: blur(3px); }
  to { opacity: 1; transform: scale(1); filter: none; }
}

@keyframes contained-intro-ring {
  0% { opacity: 0; transform: translate(-50%,-50%) scale(1); filter: blur(2px); }
  18%, 45% { opacity: 1; }
  100% { opacity: 0; transform: translate(-50%,-50%) scale(.045); filter: none; }
}

@keyframes contained-intro-dot {
  0% { opacity: 0; transform: translate(-50%,-50%) scale(8); filter: blur(2px); }
  75% { opacity: .9; transform: translate(-50%,-50%) scale(1); filter: none; }
  100% { opacity: 0; transform: translate(-50%,-50%) scale(1); filter: none; }
}

@keyframes contained-hero-content {
  from { opacity: 0; transform: translateY(10px); filter: blur(2px); }
  to { opacity: 1; transform: none; filter: none; }
}

.section { padding: clamp(4rem, 7vw, 6.3rem) 0; }
.section-heading { display: grid; grid-template-columns: 1.1fr .9fr; gap: 2rem; align-items: end; margin-bottom: 2.35rem; }
.section-heading .eyebrow { grid-column: 1 / -1; margin-bottom: -.5rem; }
.section-heading h2, .process-heading h2, .control h2, .contact h2 { margin: 0; font-size: clamp(2.55rem, 4.5vw, 4.55rem); line-height: .98; letter-spacing: -.06em; }
.section-heading > p:last-child { max-width: 480px; justify-self: end; margin-bottom: .2rem; color: var(--muted); font-size: 1.04rem; }
.service-grid { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.service-card { min-width: 0; min-height: 320px; position: relative; display: flex; grid-column: span 4; flex-direction: column; padding: 2.25rem; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); transition: background .25s ease, transform .25s ease; }
.service-grid:has(> .service-card:last-child:nth-child(3n + 2)) > .service-card:nth-last-child(-n + 2) { grid-column: span 6; }
.service-grid > .service-card:last-child:nth-child(3n + 1) { grid-column: 5 / span 4; }
.service-card:hover { z-index: 1; background: var(--white); transform: translateY(-6px); box-shadow: var(--shadow); }
.service-card-header { min-width: 0; display: flex; align-items: center; gap: 1.25rem; }
.line-icon { width: 3.5rem; height: 3.5rem; flex: 0 0 3.5rem; display: grid; place-items: center; border-radius: .85rem; color: var(--blue); background: #edf4ff; }
.line-icon-1 { color: #168b70; background: #eafaf5; }
.line-icon-2 { color: #5968b0; background: #f0f1fb; }
.line-icon svg { width: 1.8rem; height: 1.8rem; transition: transform .2s ease, color .2s ease; }
.service-card:hover .line-icon svg, .service-card:focus-within .line-icon svg { transform: translateY(-2px); }
.service-card h3 { min-width: 0; margin: 0; font-size: 1.25rem; letter-spacing: -.025em; }
.service-card p { margin: 1.6rem 0; color: var(--muted); font-size: .91rem; line-height: 1.7; }
.text-link { margin-top: auto; padding: 0; align-self: start; border: 0; border-bottom: 1px solid var(--ink); background: none; color: var(--ink); cursor: pointer; font-size: .82rem; font-weight: 750; }
.text-link span { color: var(--blue); }

.ai-section { position: relative; min-height: 340px; display: flex; align-items: center; overflow: hidden; padding: clamp(3.8rem, 6vw, 5.25rem) 0; color: var(--white); background: var(--ink); }
.ai-grid { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(280px, .65fr); gap: clamp(3rem, 7vw, 7rem); align-items: center; }
.ai-copy h2 { max-width: 700px; margin: .85rem 0 1.25rem; font-size: clamp(2.25rem, 4vw, 4.15rem); line-height: 1; letter-spacing: -.055em; }
.ai-copy > p:last-child { max-width: 700px; margin: 0; color: rgba(255,255,255,.68); }
.ai-action { justify-self: end; min-width: 280px; }
.ai-icon { display: grid; place-items: center; width: 3rem; height: 3rem; margin-bottom: 1.15rem; color: var(--mint); background: rgba(98,230,189,.1); border-radius: .7rem; }
.ai-icon svg { width: 1.65rem; height: 1.65rem; }
.ai-action ul { display: grid; gap: .7rem; margin: 0 0 1.5rem; padding: 0; list-style: none; }
.ai-action li::before { content: "✓"; margin-right: .7rem; color: var(--mint); }
.ai-rings span { position: absolute; right: -10rem; top: 50%; width: 26rem; aspect-ratio: 1; border: 1px solid rgba(98,230,189,.11); border-radius: 50%; transform: translateY(-50%); }
.ai-rings span:nth-child(2) { width: 38rem; right: -16rem; }
.ai-rings span:nth-child(3) { width: 52rem; right: -23rem; }

.control { position: relative; overflow: hidden; color: var(--white); background: var(--ink); }
.control::before { content: ""; position: absolute; width: 48rem; height: 48rem; border: 1px solid rgba(98,230,189,.14); border-radius: 50%; left: -30rem; bottom: -30rem; box-shadow: 0 0 0 8rem rgba(98,230,189,.02), 0 0 0 16rem rgba(98,230,189,.015); }
.control-grid { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: clamp(3rem, 7vw, 6.5rem); }
.control-copy { position: sticky; top: 3rem; align-self: start; }
.control-copy > p:not(.eyebrow) { max-width: 480px; margin: 1.5rem 0 1.7rem; color: rgba(255,255,255,.64); font-size: 1.05rem; }
.control-point { display: grid; grid-template-columns: 3rem 1fr; gap: .9rem; padding: 1.4rem 0; border-top: 1px solid rgba(255,255,255,.18); }
.control-point > span { color: var(--mint); font-size: .75rem; letter-spacing: .08em; }
.control-point h3 { margin-bottom: .45rem; font-size: 1.35rem; }
.control-point p { margin-bottom: 0; color: rgba(255,255,255,.62); }
.partner-note { display: grid; grid-template-columns: minmax(0, 1fr) auto; align-items: center; gap: clamp(1.5rem, 3vw, 2.5rem); padding: 1rem 1.1rem; margin-top: .85rem; color: var(--white); background: rgba(255,255,255,.025); border: 1px solid rgba(255,255,255,.12); border-radius: .7rem; }
.partner-note-copy { min-width: 0; }
.partner-note h3 { margin-bottom: .3rem; color: var(--white); font-size: 1.3rem; }
.partner-note p { max-width: 360px; margin: 0; color: rgba(255,255,255,.62); font-size: 1rem; line-height: 1.45; }
.synology-logo-panel { width: clamp(190px, 17vw, 210px); min-height: 70px; display: grid; place-items: center; padding: .7rem 1rem; background: #fbfcfc; border-radius: .7rem; }
.synology-logo { display: block; width: min(100%, 175px); height: auto; object-fit: contain; }

.process-heading { display: block; margin-bottom: 2.35rem; }
.process-heading .eyebrow { margin-bottom: 1rem; }
.process-heading h2 { max-width: 760px; }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin: 0; padding: 0; list-style: none; counter-reset: step; }
.steps li { padding: 1.55rem; background: var(--white); border-radius: .75rem; box-shadow: 0 10px 40px rgba(8,29,43,.05); }
.steps span { display: grid; place-items: center; width: 2.8rem; height: 2.8rem; margin-bottom: 1.55rem; color: var(--blue); background: #e8f0ff; border-radius: 50%; font-size: .76rem; font-weight: 800; }
.steps h3 { margin-bottom: .55rem; font-size: 1.2rem; }
.steps p { margin: 0; color: var(--muted); }

.contact { padding-top: 1rem; }
.domain-checker { padding: clamp(2.5rem, 5vw, 4.5rem) 0; background: var(--ink); }
.domain-checker-card { width: min(75vw, 1080px); padding: clamp(2.5rem, 4.5vw, 4rem); color: var(--ink); text-align: center; background: #eefbf7; border: 1px solid rgba(98,230,189,.55); border-radius: var(--radius); box-shadow: var(--shadow); }
.domain-checker-copy { max-width: 760px; margin-inline: auto; }
.domain-checker-copy .eyebrow { justify-content: center; margin-bottom: .8rem; color: var(--mint-dark); }
.domain-checker-copy h2 { margin-bottom: .8rem; color: var(--ink); font-size: clamp(2rem, 3.5vw, 3.4rem); line-height: 1; letter-spacing: -.05em; }
.domain-checker-copy > p:last-child { margin: 0; color: var(--muted); }
.domain-checker-interaction { width: min(100%, 900px); min-width: 0; margin: 1.75rem auto 0; text-align: left; }
.domain-checker-form label { display: block; margin-bottom: .45rem; color: var(--ink); font-size: .8rem; font-weight: 750; }
.domain-checker-fields { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: .7rem; }
.domain-checker-fields input { min-width: 0; height: 52px; padding: .75rem 1rem; border: 1px solid var(--line); border-radius: .55rem; color: var(--ink); background: var(--white); }
.domain-checker-fields input:focus { border-color: var(--blue); }
.domain-checker-fields .button:disabled { cursor: wait; opacity: .65; transform: none; }
.domain-checker-form[aria-busy="true"] input { opacity: .8; }
.domain-checker-error { margin: .5rem 0 0; color: #a52a2a; font-size: .84rem; }
.domain-checker-result { margin-top: clamp(1.25rem, 2vw, 1.5rem); padding: 1.1rem; color: var(--ink); background: var(--white); border: 1px solid rgba(8,29,43,.12); border-radius: .75rem; }
.domain-checker-result[hidden] { display: none; }
.domain-checker-result strong { display: block; overflow-wrap: anywhere; color: var(--ink); }
.domain-checker-result p { margin: .35rem 0 .9rem; color: var(--muted); font-size: .88rem; }
.domain-checker-result .button { min-height: 46px; }
.contact-card { position: relative; isolation: isolate; display: grid; grid-template-columns: 1.2fr .8fr; align-items: center; gap: 2.5rem; padding: clamp(2.5rem, 4.5vw, 4.2rem); color: var(--white); background: var(--blue); border-radius: 1.2rem; box-shadow: 0 10px 22px rgba(4,28,58,.1), 0 30px 65px rgba(12,51,105,.16), 0 48px 100px rgba(38,111,255,.1), inset 0 1px 0 rgba(255,255,255,.12); }
.contact-card::before { content: ""; position: absolute; z-index: -1; left: 20px; right: 20px; top: 24px; bottom: -22px; border-radius: inherit; background: rgba(38,111,255,.2); filter: blur(36px); pointer-events: none; }
.contact-card > div:first-child > p:last-child { max-width: 590px; margin: 1.2rem 0 0; color: rgba(255,255,255,.78); font-size: 1.05rem; }
.contact-actions { display: flex; flex-direction: column; align-items: stretch; gap: .7rem; }
.contact-actions > a { padding: .45rem; text-align: center; text-decoration: none; color: rgba(255,255,255,.84); font-weight: 650; }

.site-footer { padding: 2rem 0; }
.footer-grid { display: grid; grid-template-columns: auto minmax(0, 1fr) 200px; align-items: center; gap: 2rem; color: var(--muted); font-size: .8rem; }
.footer-brand { color: var(--ink); }
.footer-info { min-width: 0; display: flex; justify-content: center; align-items: center; gap: 1.4rem; }
.footer-info p { margin: 0; white-space: nowrap; }
.footer-meta { display: flex; flex-shrink: 0; gap: 1rem; }
.footer-clear { display: block; min-width: 200px; }
.footer-grid a { text-decoration: none; }

.chat-launch { position: fixed; z-index: 50; right: 1.25rem; bottom: 1.25rem; display: flex; align-items: center; gap: .65rem; min-height: 52px; padding: .65rem 1rem .65rem .7rem; border: 0; border-radius: 2rem; color: var(--ink); background: var(--mint); box-shadow: 0 14px 40px rgba(8,29,43,.25); cursor: pointer; font-weight: 780; }
.chat-bubble-icon { display: grid; place-items: center; width: 2.25rem; height: 2.25rem; color: white; background: var(--ink); border-radius: 50%; letter-spacing: .08em; }
.chat { position: fixed; z-index: 100; right: 1.25rem; bottom: 1.25rem; width: min(390px, calc(100% - 2rem)); overflow: hidden; color: var(--ink); background: white; border-radius: 1rem; box-shadow: 0 30px 100px rgba(0,0,0,.28); }
.chat[hidden], .chat-backdrop[hidden] { display: none; }
.chat-header { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: .75rem; padding: 1rem; color: white; background: var(--ink); }
.chat-avatar { width: 2.7rem; height: 2.7rem; display: grid; place-items: center; color: var(--ink); background: var(--mint); border-radius: .55rem; font-weight: 900; }
.chat-header strong, .chat-header span { display: block; }
.chat-header span { color: rgba(255,255,255,.65); font-size: .74rem; }
.chat-header i { display: inline-block; width: .45rem; height: .45rem; margin-right: .3rem; border-radius: 50%; background: var(--mint); }
.chat-close { width: 2.3rem; height: 2.3rem; border: 0; color: white; background: rgba(255,255,255,.1); border-radius: 50%; font-size: 1.4rem; cursor: pointer; }
.chat-body { max-height: min(570px, calc(100vh - 120px)); padding: 1rem; overflow: auto; background: #f4f7f7; }
.message { width: fit-content; max-width: 85%; padding: .75rem .9rem; border-radius: .85rem .85rem .85rem .2rem; background: white; box-shadow: 0 4px 20px rgba(8,29,43,.06); font-size: .9rem; }
.message.user { margin: .7rem 0 .7rem auto; color: white; background: var(--blue); border-radius: .85rem .85rem .2rem .85rem; }
.quick-replies { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: .8rem; }
.quick-replies button { padding: .5rem .7rem; color: var(--blue); background: white; border: 1px solid #cbd8ef; border-radius: 2rem; cursor: pointer; font-size: .77rem; font-weight: 700; }
.chat-form { margin-top: .9rem; padding: 1rem; background: white; border-radius: .8rem; }
.chat-form[hidden] { display: none; }
.chat-followup { color: var(--muted); font-size: .82rem; }
.chat-form label { display: block; margin-top: .65rem; color: var(--muted); font-size: .72rem; font-weight: 750; }
.chat-form input, .chat-form textarea { width: 100%; margin-top: .25rem; padding: .65rem .7rem; border: 1px solid var(--line); border-radius: .45rem; color: var(--ink); background: white; font-size: .88rem; resize: vertical; }
.chat-form input:focus, .chat-form textarea:focus { outline: 2px solid rgba(29,109,255,.25); border-color: var(--blue); }
.chat-form .button { width: 100%; margin-top: .8rem; }
.chat-form small { display: block; margin-top: .7rem; color: var(--muted); text-align: center; }
.chat-form small a { color: var(--ink); font-weight: 750; }
.chat-backdrop { position: fixed; z-index: 90; inset: 0; background: rgba(8,29,43,.4); backdrop-filter: blur(3px); }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 980px) {
  :root { --header-height: 80px; }
  .site-nav { display: none; position: absolute; top: var(--header-height); left: 20px; right: 20px; padding: 1rem; flex-direction: column; gap: .4rem; background: white; color: var(--ink); border-radius: .7rem; box-shadow: var(--shadow); }
  .site-nav.open { display: flex; }
  .site-nav a { padding: .65rem; color: var(--ink); }
  .site-nav .mobile-portal { display: flex; align-items: center; justify-content: space-between; margin-top: .35rem; border-radius: .45rem; background: var(--mint); color: var(--ink); font-weight: 800; }
  .header-inner { grid-template-columns: auto 1fr auto; }
  .menu-toggle { display: block; justify-self: end; }
  .header-actions { display: none; }
  .hero { padding-top: 116px; }
  .hero-grid { grid-template-columns: 1fr; gap: 3rem; }
  .hero-copy { max-width: 760px; }
  .hero-choices { width: min(100%, 520px); max-width: 520px; justify-self: center; padding-top: 1.5rem; }
  .service-card, .service-grid:has(> .service-card:last-child:nth-child(3n + 2)) > .service-card:nth-last-child(-n + 2) { grid-column: span 6; }
  .service-grid > .service-card:last-child:nth-child(odd) { grid-column: 4 / span 6; }
  .control-grid { gap: 3rem; }
  .partner-note { grid-template-columns: 1fr; justify-items: start; gap: 1rem; }
  .synology-logo-panel { width: clamp(190px, 28vw, 210px); }
  .ai-grid { grid-template-columns: 1fr; gap: 2.25rem; }
  .ai-action { justify-self: start; }
  .domain-checker-card { width: var(--shell); }
  .footer-grid { grid-template-columns: auto minmax(0, 1fr) 180px; gap: 1.25rem; }
  .footer-info { justify-content: flex-start; }
  .footer-info p { display: none; }
  .footer-clear { min-width: 180px; }
}

@media (max-width: 700px) {
  :root { --shell: min(100% - 28px, 1180px); }
  .hero { min-height: auto; display: block; padding: 116px 0 54px; }
  h1 { font-size: clamp(3.6rem, 18vw, 5.2rem); }
  .hero h1 em { white-space: normal; }
  .trust-list { flex-direction: column; gap: .4rem; }
  .hero-choices { min-height: auto; padding: 1rem 0 0; }
  .choice-ring { width: 22rem; height: 22rem; top: 1rem; right: -10rem; }
  .choice-kicker { margin-left: 0; }
  .choice-cluster { gap: .75rem; }
  .choice-card { width: 100%; min-height: 94px; }
  .choice-contact { max-width: 100%; margin-top: .85rem; }
  .section-heading, .control-grid, .contact-card { grid-template-columns: 1fr; }
  .domain-checker-card { width: calc(100% - 32px); padding: clamp(2rem, 6vw, 3rem); }
  .domain-checker-fields { grid-template-columns: 1fr; }
  .domain-checker-fields .button, .domain-checker-result .button { width: 100%; }
  .domain-checker { padding-bottom: 5rem; }
  .section-heading { gap: 1rem; }
  .section-heading > p:last-child { justify-self: start; }
  .service-grid { grid-template-columns: 1fr; }
  .service-grid > .service-card, .service-grid:has(> .service-card:last-child:nth-child(3n + 2)) > .service-card:nth-last-child(-n + 2), .service-grid > .service-card:last-child:nth-child(odd) { grid-column: 1; }
  .service-card { min-height: 285px; padding: 1.625rem; }
  .line-icon { width: 3.125rem; height: 3.125rem; flex-basis: 3.125rem; }
  .ai-section { min-height: auto; }
  .control-copy { position: relative; top: auto; }
  .partner-note { padding: .95rem 1rem; }
  .synology-logo-panel { width: min(210px, 100%); }
  .synology-logo { width: min(100%, 170px); }
  .process-heading { display: block; }
  .steps { grid-template-columns: 1fr; }
  .steps span { margin-bottom: 1.35rem; }
  .contact-card { gap: 2rem; box-shadow: 0 8px 18px rgba(4,28,58,.1), 0 22px 45px rgba(12,51,105,.14), 0 32px 65px rgba(38,111,255,.08); }
  .footer-grid { grid-template-columns: 1fr; gap: 1rem; text-align: center; }
  .footer-info { justify-content: center; }
  .footer-clear { display: none; }
  .chat-launch > span:last-child { display: none; }
  .chat-launch { width: 56px; height: 56px; padding: .6rem; }
  .chat-bubble-icon { width: 100%; height: 100%; }
  .brand-intro-stage { position: absolute; left: 50%; top: var(--intro-mobile-top, 45svh); width: min(78vw, 320px); transform: translate(-50%, -50%); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
  .site-header, .hero-copy .eyebrow, .hero-title-primary, .hero h1 em, .hero-lead, .hero-actions, .trust-list, .choice-kicker, .choice-card, .choice-contact, .hero::after, .choice-ring { opacity: 1; filter: none; }
  .choice-card:hover .route-icon svg, .choice-card:focus-visible .route-icon svg { transform: none; }
  .service-card:hover .line-icon svg, .service-card:focus-within .line-icon svg { transform: none; }
  .brand-intro { display: none; }
}

@media (max-width: 420px) {
  .domain-checker-card { width: calc(100% - 32px); padding: 1.75rem 1.25rem; }
  .choice-card { grid-template-columns: auto minmax(0, 1fr); }
  .choice-arrow { grid-column: 2; width: 2.2rem; height: 2.2rem; }
  .choice-contact { width: 100%; align-items: flex-start; flex-direction: column; border-radius: 1rem; }
}

@media (max-width: 350px) {
  .service-card-header { align-items: flex-start; flex-direction: column; }
}
