:root {
  --bg: #f5f6f3;
  --bg-rgb: 245, 246, 243;
  --surface: #ffffff;
  --surface-2: #eef0eb;
  --text: #111512;
  --muted: #666d67;
  --line: rgba(17, 21, 18, 0.12);
  --accent: #205b46;
  --accent-2: #b6ff5c;
  --accent-soft: rgba(32, 91, 70, 0.10);
  --dark: #0c1210;
  --dark-text: #eff4ef;
  --radius: 18px;
  --radius-sm: 10px;
  --shadow: 0 24px 70px rgba(15, 24, 20, 0.12);
  --font-display: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-body: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --max: 1220px;
  --header-h: 78px;
  --ease: cubic-bezier(.2,.8,.2,1);
}

html[data-style="editorial"] {
  --bg: #f2eee6;
  --bg-rgb: 242, 238, 230;
  --surface: #fbf8f2;
  --surface-2: #e5ded1;
  --text: #1a1712;
  --muted: #71695e;
  --line: rgba(26, 23, 18, 0.18);
  --accent: #b13c28;
  --accent-2: #f4b942;
  --accent-soft: rgba(177, 60, 40, 0.10);
  --dark: #17130f;
  --radius: 2px;
  --radius-sm: 1px;
  --shadow: 10px 10px 0 rgba(26, 23, 18, 0.12);
  --font-display: Georgia, "Times New Roman", serif;
}

html[data-style="neon"] {
  --bg: #08090d;
  --bg-rgb: 8, 9, 13;
  --surface: #101219;
  --surface-2: #171a24;
  --text: #f4f6ff;
  --muted: #969daf;
  --line: rgba(255, 255, 255, 0.13);
  --accent: #8b5cff;
  --accent-2: #00f0c8;
  --accent-soft: rgba(139, 92, 255, 0.14);
  --dark: #05060a;
  --dark-text: #f4f6ff;
  --radius: 22px;
  --radius-sm: 14px;
  --shadow: 0 26px 100px rgba(91, 50, 211, 0.25);
}

html[data-style="organic"] {
  --bg: #f4f1e8;
  --bg-rgb: 244, 241, 232;
  --surface: #fbfaf5;
  --surface-2: #e8e4d7;
  --text: #253025;
  --muted: #6b7467;
  --line: rgba(37, 48, 37, 0.13);
  --accent: #6e7953;
  --accent-2: #d2a765;
  --accent-soft: rgba(110, 121, 83, 0.12);
  --dark: #283127;
  --radius: 32px;
  --radius-sm: 18px;
  --shadow: 0 24px 60px rgba(77, 81, 55, 0.14);
  --font-display: Georgia, "Times New Roman", serif;
}

html[data-style="minimal"] {
  --bg: #ffffff;
  --bg-rgb: 255, 255, 255;
  --surface: #ffffff;
  --surface-2: #f3f3f3;
  --text: #0b0b0b;
  --muted: #6a6a6a;
  --line: rgba(0, 0, 0, 0.14);
  --accent: #111111;
  --accent-2: #d8ff36;
  --accent-soft: rgba(0, 0, 0, 0.05);
  --dark: #0b0b0b;
  --radius: 0px;
  --radius-sm: 0px;
  --shadow: none;
}

html[data-style="luxury"] {
  --bg: #11100f;
  --bg-rgb: 17, 16, 15;
  --surface: #181715;
  --surface-2: #211f1c;
  --text: #f0e9dc;
  --muted: #aaa295;
  --line: rgba(240, 233, 220, 0.13);
  --accent: #c1a56c;
  --accent-2: #f3e1b8;
  --accent-soft: rgba(193, 165, 108, 0.12);
  --dark: #090908;
  --dark-text: #f0e9dc;
  --radius: 4px;
  --radius-sm: 2px;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.34);
  --font-display: Georgia, "Times New Roman", serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  overflow-x: hidden;
  transition: background .45s var(--ease), color .45s var(--ease);
}
body.drawer-open { overflow: hidden; }
button, input, textarea, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { color: inherit; }
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
::selection { background: var(--accent); color: #fff; }

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 9999;
  transform: translateY(-160%);
  background: var(--text);
  color: var(--bg);
  padding: 10px 14px;
  border-radius: 8px;
}
.skip-link:focus { transform: translateY(0); }

:focus-visible {
  outline: 3px solid var(--accent-2);
  outline-offset: 3px;
}

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.shell { width: min(calc(100% - 40px), var(--max)); margin-inline: auto; }
.section-pad { padding: 110px 0; position: relative; }
.section-tint { background: var(--surface-2); transition: background .45s var(--ease); }
.section-dark { background: var(--dark); color: var(--dark-text); overflow: hidden; }

.ambient {
  position: fixed;
  pointer-events: none;
  z-index: -3;
  border-radius: 999px;
  filter: blur(80px);
  opacity: .12;
  transition: background .45s var(--ease);
}
.ambient-one { width: 460px; height: 460px; background: var(--accent-2); top: -160px; right: -80px; }
.ambient-two { width: 380px; height: 380px; background: var(--accent); bottom: 8%; left: -180px; }
.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 50;
  opacity: .018;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.75' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.85'/%3E%3C/svg%3E");
}
html[data-style="minimal"] .grain { display: none; }

.site-header {
  height: var(--header-h);
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(var(--bg-rgb), .78);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  transition: background .35s var(--ease), border-color .35s var(--ease), box-shadow .35s var(--ease);
}
.site-header.scrolled { border-color: var(--line); box-shadow: 0 8px 30px rgba(0,0,0,.04); }
.nav-wrap { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 11px; font-weight: 800; letter-spacing: .11em; font-size: 13px; }
.brand-mark { width: 28px; height: 28px; position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 3px; transform: rotate(45deg); }
.brand-mark span { background: var(--text); border-radius: 2px; transition: background .4s var(--ease), transform .35s var(--ease); }
.brand:hover .brand-mark span:nth-child(1), .brand:hover .brand-mark span:nth-child(4) { transform: scale(.72); background: var(--accent); }
.desktop-nav { display: flex; align-items: center; gap: 28px; font-size: 14px; color: var(--muted); }
.desktop-nav a { position: relative; transition: color .2s ease; }
.desktop-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -8px; height: 2px; background: var(--accent); transition: right .25s var(--ease); }
.desktop-nav a:hover, .desktop-nav a.active { color: var(--text); }
.desktop-nav a:hover::after, .desktop-nav a.active::after { right: 0; }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.icon-button, .menu-button {
  border: 1px solid var(--line);
  background: var(--surface);
  cursor: pointer;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: var(--radius-sm);
}
.icon-button svg { width: 18px; fill: var(--text); }
.icon-button:hover svg { fill: var(--accent); transform: rotate(-10deg); }
.icon-button svg { transition: fill .2s ease, transform .2s ease; }
.menu-button { display: none; padding: 11px; gap: 4px; align-content: center; }
.menu-button span { width: 100%; height: 1.5px; background: var(--text); transition: transform .25s ease, opacity .25s ease; }
.menu-button.open span:nth-child(1) { transform: translateY(5.5px) rotate(45deg); }
.menu-button.open span:nth-child(2) { opacity: 0; }
.menu-button.open span:nth-child(3) { transform: translateY(-5.5px) rotate(-45deg); }
.mobile-nav { position: absolute; top: var(--header-h); left: 0; right: 0; padding: 12px 20px 22px; background: var(--bg); border-bottom: 1px solid var(--line); }
.mobile-nav a { display: block; padding: 13px 4px; font-weight: 650; border-bottom: 1px solid var(--line); }

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 21px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  font-weight: 750;
  font-size: 14px;
  cursor: pointer;
  transition: transform .2s var(--ease), background .2s ease, border-color .2s ease, color .2s ease, box-shadow .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--accent); color: white; box-shadow: 0 10px 30px color-mix(in srgb, var(--accent) 25%, transparent); }
html[data-style="luxury"] .button-primary { color: #111; }
.button-primary:hover { box-shadow: 0 14px 34px color-mix(in srgb, var(--accent) 35%, transparent); }
.button-ghost { border-color: var(--line); background: var(--surface); color: var(--text); }
.button-ghost:hover { border-color: var(--accent); }
.button-spark {
  border-color: color-mix(in srgb, var(--accent) 28%, var(--line));
  background: linear-gradient(120deg, var(--accent-soft), color-mix(in srgb, var(--accent-2) 12%, var(--surface)));
  color: var(--text);
  box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--surface) 55%, transparent);
}
.button-spark span { color: var(--accent); transition: transform .35s var(--ease); }
.button-spark:hover { border-color: var(--accent); }
.button-spark:hover span { transform: rotate(135deg) scale(1.15); }
.button-small { min-height: 42px; padding: 0 16px; }
.button-full { width: 100%; }
.text-button { border: 0; padding: 8px 0; background: transparent; color: var(--text); font-weight: 750; cursor: pointer; }
.text-button span { display: inline-block; transition: transform .2s ease; }
.text-button:hover span { transform: translate(3px,-3px); }

.hero { min-height: calc(100vh - var(--header-h)); display: flex; align-items: center; padding-top: 82px; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 68px; align-items: center; }
.eyebrow { display: inline-flex; align-items: center; gap: 9px; text-transform: uppercase; letter-spacing: .14em; font-size: 11px; font-weight: 800; color: var(--muted); margin-bottom: 20px; }
.pulse-dot { width: 7px; height: 7px; background: var(--accent); border-radius: 50%; box-shadow: 0 0 0 0 color-mix(in srgb, var(--accent) 40%, transparent); animation: pulse 2.2s infinite; }
@keyframes pulse { 70% { box-shadow: 0 0 0 9px transparent; } 100% { box-shadow: 0 0 0 0 transparent; } }
.hero h1 { margin: 0; font-family: var(--font-display); font-size: clamp(52px, 6.7vw, 94px); line-height: .91; letter-spacing: -.065em; max-width: 780px; }
html[data-style="editorial"] .hero h1, html[data-style="organic"] .hero h1, html[data-style="luxury"] .hero h1 { letter-spacing: -.045em; font-weight: 500; }
.gradient-text { color: var(--accent); background: linear-gradient(110deg, var(--accent), var(--accent-2)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.hero-lede { max-width: 580px; font-size: 18px; line-height: 1.7; color: var(--muted); margin: 27px 0 30px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 11px; }
.hero-meta { display: flex; gap: 34px; margin-top: 42px; padding-top: 26px; border-top: 1px solid var(--line); max-width: 530px; }
.hero-meta div { display: grid; }
.hero-meta strong { font-size: 24px; line-height: 1; }
.hero-meta span { font-size: 11px; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); margin-top: 7px; }
.hero-visual { position: relative; perspective: 1100px; min-width: 0; }
.browser-card { background: var(--surface); border: 1px solid var(--line); border-radius: calc(var(--radius) + 4px); overflow: hidden; box-shadow: var(--shadow); transform: rotateY(-3deg) rotateX(1deg); transition: transform .18s ease-out, background .4s var(--ease), border-radius .4s var(--ease); }
.browser-chrome { height: 44px; border-bottom: 1px solid var(--line); display: grid; grid-template-columns: 60px 1fr 60px; align-items: center; padding: 0 14px; gap: 12px; background: color-mix(in srgb, var(--surface) 86%, var(--surface-2)); }
.traffic { display: flex; gap: 5px; }
.traffic span { width: 7px; height: 7px; border-radius: 50%; background: var(--line); }
.address { justify-self: center; min-width: 180px; max-width: 72%; height: 24px; border: 1px solid var(--line); border-radius: 999px; display: grid; place-items: center; font-size: 9px; color: var(--muted); }
.browser-mini-icon { width: 15px; height: 15px; border: 1px solid var(--line); border-radius: 50%; justify-self: end; }
.browser-page { min-height: 520px; background: var(--surface); padding: 24px; transition: background .4s var(--ease); }
.mini-nav { display: flex; align-items: center; gap: 18px; }
.mini-logo { font-family: var(--font-display); font-weight: 900; font-size: 13px; letter-spacing: .16em; }
.mini-links { display: flex; gap: 11px; margin-left: auto; }
.mini-links i { display: block; width: 24px; height: 3px; border-radius: 999px; background: var(--line); }
.mini-button { background: var(--accent); color: #fff; font-size: 8px; padding: 8px 11px; border-radius: var(--radius-sm); font-weight: 800; letter-spacing: .08em; }
.mini-hero { display: grid; grid-template-columns: 1fr 1.05fr; gap: 18px; padding: 60px 0 44px; align-items: center; }
.mini-kicker { font-size: 8px; color: var(--accent); letter-spacing: .14em; font-weight: 850; }
.mini-copy h2 { font-family: var(--font-display); font-size: clamp(26px, 3.2vw, 46px); letter-spacing: -.05em; line-height: .94; margin: 12px 0; }
.mini-copy p { color: var(--muted); font-size: 10px; line-height: 1.6; max-width: 220px; }
.mini-cta-row { display: flex; gap: 7px; margin-top: 18px; }
.mini-cta-row span { width: 64px; height: 18px; background: var(--accent); border-radius: calc(var(--radius-sm) / 1.5); }
.mini-cta-row span:last-child { width: 54px; border: 1px solid var(--line); background: transparent; }
.visual-scene { min-height: 270px; border-radius: var(--radius); background: linear-gradient(145deg, var(--accent-soft), color-mix(in srgb, var(--accent-2) 18%, var(--surface))); position: relative; overflow: hidden; border: 1px solid var(--line); }
.scene-orb { position: absolute; width: 180px; height: 180px; border-radius: 50%; background: radial-gradient(circle at 35% 30%, var(--accent-2), var(--accent)); top: 22%; left: 24%; box-shadow: 0 30px 70px color-mix(in srgb, var(--accent) 26%, transparent); }
.scene-card { position: absolute; width: 95px; height: 125px; background: color-mix(in srgb, var(--surface) 88%, transparent); border: 1px solid var(--line); box-shadow: 0 16px 40px rgba(0,0,0,.08); backdrop-filter: blur(8px); }
.scene-card-a { top: 20px; left: 8px; transform: rotate(-9deg); }
.scene-card-b { right: 8px; bottom: 20px; transform: rotate(8deg); }
.scene-line { position: absolute; width: 75%; height: 1px; background: var(--text); opacity: .3; bottom: 24px; left: 12.5%; }
.mini-stats { border-top: 1px solid var(--line); display: grid; grid-template-columns: repeat(3, 1fr); padding-top: 22px; }
.mini-stats div { display: grid; gap: 3px; }
.mini-stats b { font-size: 17px; }
.mini-stats span { font-size: 8px; color: var(--muted); text-transform: uppercase; letter-spacing: .06em; }
.floating-card { position: absolute; z-index: 3; background: color-mix(in srgb, var(--surface) 90%, transparent); border: 1px solid var(--line); box-shadow: 0 15px 40px rgba(0,0,0,.10); backdrop-filter: blur(14px); border-radius: var(--radius-sm); padding: 12px 14px; display: flex; align-items: center; gap: 10px; }
.floating-card strong, .floating-card small { display: block; }
.floating-card strong { font-size: 11px; }
.floating-card small { font-size: 8px; color: var(--muted); margin-top: 2px; }
.floating-card-top { top: -18px; right: -18px; }
.floating-card-bottom { bottom: -20px; left: -28px; }
.status-dot { width: 8px; height: 8px; background: #36c881; border-radius: 50%; }
.sparkline { height: 26px; display: flex; align-items: end; gap: 2px; }
.sparkline i { width: 3px; background: var(--accent); border-radius: 2px; }
.sparkline i:nth-child(1) { height: 28%; }.sparkline i:nth-child(2) { height: 48%; }.sparkline i:nth-child(3) { height: 38%; }.sparkline i:nth-child(4) { height: 70%; }.sparkline i:nth-child(5) { height: 62%; }.sparkline i:nth-child(6) { height: 100%; }

.trust-strip { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); overflow: hidden; padding: 18px 0; background: var(--surface); }
.marquee-shell { overflow: hidden; }
.marquee-track { width: max-content; display: flex; align-items: center; gap: 32px; color: var(--muted); text-transform: uppercase; font-size: 10px; letter-spacing: .14em; font-weight: 800; animation: marquee 26s linear infinite; }
.marquee-track i { font-style: normal; color: var(--accent); font-size: 8px; }
@keyframes marquee { to { transform: translateX(-50%); } }

.section-heading { display: grid; grid-template-columns: 1.5fr .7fr; gap: 60px; align-items: end; margin-bottom: 50px; }
.section-kicker { display: block; color: var(--accent); text-transform: uppercase; font-size: 10px; letter-spacing: .16em; font-weight: 850; margin-bottom: 13px; }
.section-heading h2, .faq-intro h2, .contact-copy h2 { font-family: var(--font-display); margin: 0; font-size: clamp(38px, 5vw, 66px); letter-spacing: -.055em; line-height: .98; }
.section-heading > p { margin: 0; color: var(--muted); font-size: 15px; line-height: 1.75; }
.section-heading-light > p { color: color-mix(in srgb, var(--dark-text) 58%, transparent); }

.service-grid { display: grid; grid-template-columns: 1.08fr .92fr; gap: 16px; }
.feature-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 34px; min-height: 320px; position: relative; overflow: hidden; transition: transform .3s var(--ease), border-color .3s ease, background .4s var(--ease), border-radius .4s var(--ease); }
.feature-card:hover { transform: translateY(-5px); border-color: color-mix(in srgb, var(--accent) 45%, var(--line)); }
.feature-large { min-height: 400px; }
.feature-wide { grid-column: 1 / -1; min-height: 330px; }
.card-index { position: absolute; top: 22px; right: 24px; font-size: 9px; letter-spacing: .12em; color: var(--muted); }
.feature-icon { width: 48px; height: 48px; border-radius: var(--radius-sm); background: var(--accent-soft); display: grid; place-items: center; margin-bottom: 54px; color: var(--accent); font-weight: 800; font-size: 21px; }
.feature-card h3 { font-family: var(--font-display); font-size: 28px; letter-spacing: -.035em; margin: 0 0 10px; }
.feature-card p { color: var(--muted); max-width: 560px; margin: 0; }
.icon-window { grid-template-columns: repeat(3, 5px); gap: 4px; align-content: center; }
.icon-window span { display: block; width: 5px; height: 18px; background: var(--accent); border-radius: 999px; }
.icon-window span:nth-child(2) { height: 28px; }.icon-window span:nth-child(3) { height: 12px; }
.swatch-row { display: flex; gap: 8px; margin-top: 46px; }
.swatch-row span { width: 40px; height: 40px; border-radius: calc(var(--radius-sm) * .8); border: 1px solid var(--line); }
.swatch-row span:nth-child(1){background:var(--accent)}.swatch-row span:nth-child(2){background:var(--accent-2)}.swatch-row span:nth-child(3){background:var(--text)}.swatch-row span:nth-child(4){background:var(--surface-2)}.swatch-row span:nth-child(5){background:var(--surface)}
.device-demo { position: absolute; right: 20px; bottom: 20px; width: 220px; height: 110px; }
.device { position: absolute; border: 2px solid var(--text); background: var(--surface-2); box-shadow: 0 10px 30px rgba(0,0,0,.06); }
.desktop-device { width: 140px; height: 90px; right: 0; bottom: 0; border-radius: 5px; }
.desktop-device::before { content:""; position:absolute; height:6px; width:38px; background:var(--accent); left:10px; top:10px; }
.tablet-device { width: 78px; height: 94px; left: 24px; bottom: 0; border-radius: 8px; }
.phone-device { width: 44px; height: 80px; left: 0; bottom: 0; border-radius: 9px; border-width: 3px; }
.journey-demo { display: flex; align-items: center; gap: 7px; margin-top: 44px; font-size: 8px; font-weight: 850; letter-spacing: .08em; }
.journey-demo span { border: 1px solid var(--line); padding: 8px 9px; border-radius: 999px; }
.journey-demo span:last-child { background: var(--accent); color: white; border-color: var(--accent); }
.journey-demo i { width: 24px; height: 1px; background: var(--line); position: relative; }
.journey-demo i::after { content:""; width:4px; height:4px; border-top:1px solid var(--muted); border-right:1px solid var(--muted); position:absolute; right:0; top:-2px; transform:rotate(45deg); }
.split-copy { display: grid; grid-template-columns: .9fr 1.1fr; gap: 50px; align-items: center; }
.code-window { border: 1px solid var(--line); background: var(--dark); color: #cdd5d0; border-radius: var(--radius-sm); overflow: hidden; box-shadow: var(--shadow); }
.code-top { height: 38px; display: flex; align-items: center; gap: 5px; padding: 0 12px; border-bottom: 1px solid rgba(255,255,255,.08); }
.code-top span { width: 6px; height: 6px; background: rgba(255,255,255,.25); border-radius: 50%; }
.code-top b { margin-left: auto; font: 9px/1 monospace; color: #7f8983; }
.code-window pre { margin: 0; padding: 25px; font: 13px/1.8 ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; overflow-x: auto; }
.code-purple { color: #c59aff; }.code-green { color: #76e3a8; }.code-string { color: #f4c46e; }

.business-tabs { display: grid; grid-template-columns: repeat(6, 1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); margin-bottom: 28px; }
.business-tab { border: 0; border-right: 1px solid var(--line); padding: 17px 10px; background: transparent; cursor: pointer; font-size: 12px; color: var(--muted); transition: background .2s ease, color .2s ease; }
.business-tab:last-child { border-right: 0; }
.business-tab span { font-size: 8px; display: block; margin-bottom: 4px; opacity: .7; }
.business-tab:hover, .business-tab.active { background: var(--surface); color: var(--text); }
.business-tab.active { box-shadow: inset 0 -3px var(--accent); }
.showcase-panel { display: grid; grid-template-columns: .9fr 1.1fr; min-height: 560px; border: 1px solid var(--line); background: var(--surface); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.showcase-main { padding: 56px; display: flex; flex-direction: column; }
.showcase-label { display: flex; justify-content: space-between; gap: 16px; font-size: 9px; letter-spacing: .14em; color: var(--muted); font-weight: 850; }
.showcase-main h3 { font-family: var(--font-display); font-size: clamp(38px, 4.3vw, 60px); line-height: .98; letter-spacing: -.055em; margin: auto 0 20px; }
.showcase-main > p { max-width: 600px; color: var(--muted); margin: 0 0 25px; }
.showcase-actions { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.metric-row { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); margin-top: 42px; padding-top: 24px; gap: 12px; }
.metric-row div { display: grid; }
.metric-row strong { font-size: 22px; }
.metric-row span { color: var(--muted); font-size: 9px; line-height: 1.35; text-transform: uppercase; letter-spacing: .07em; margin-top: 5px; }
.showcase-art { position: relative; overflow: hidden; min-height: 560px; background: linear-gradient(145deg, var(--accent), color-mix(in srgb, var(--accent-2) 58%, var(--accent))); display: grid; place-items: center; }
.showcase-art::before { content:""; position:absolute; width:440px; height:440px; border:1px solid rgba(255,255,255,.26); border-radius:50%; top:-120px; right:-100px; }
.showcase-art::after { content:""; position:absolute; width:240px; height:240px; background:rgba(255,255,255,.09); border-radius:50%; bottom:-60px; left:-50px; }
.art-frame { position: absolute; width: 56%; height: 70%; background: var(--surface); border: 1px solid rgba(255,255,255,.3); box-shadow: 0 30px 70px rgba(0,0,0,.24); transition: transform .45s var(--ease), border-radius .4s var(--ease); border-radius: calc(var(--radius) * .55); }
.art-frame-back { transform: rotate(10deg) translate(40px, 16px); background: color-mix(in srgb, var(--surface) 60%, var(--accent-2)); opacity: .72; }
.art-frame-front { transform: rotate(-3deg); z-index: 2; padding: 24px; color: var(--text); }
.showcase-panel:hover .art-frame-back { transform: rotate(13deg) translate(48px, 12px); }
.showcase-panel:hover .art-frame-front { transform: rotate(-1deg) translateY(-5px); }
.art-header { display: flex; justify-content: space-between; }
.art-header span { width: 42px; height: 4px; background: var(--line); }
.art-header span:last-child { width: 16px; border-radius: 50%; }
.art-title { font-family: var(--font-display); font-size: clamp(30px, 4vw, 54px); letter-spacing: -.05em; margin-top: 45px; font-weight: 800; }
.art-bars { display: grid; gap: 5px; margin-top: 8px; }
.art-bars i { display: block; height: 4px; width: 75%; background: var(--line); }
.art-bars i:nth-child(2) { width: 52%; }.art-bars i:nth-child(3) { width: 65%; }
.art-visual { height: 38%; background: linear-gradient(135deg, var(--accent-soft), var(--surface-2)); margin-top: 25px; display: flex; align-items: end; justify-content: center; gap: 7px; padding: 18px; border: 1px solid var(--line); }
.art-visual span { width: 24%; background: var(--accent); opacity: .75; }
.art-visual span:nth-child(1){height:38%}.art-visual span:nth-child(2){height:80%}.art-visual span:nth-child(3){height:58%}
.art-footer { display: flex; gap: 6px; margin-top: 18px; }
.art-footer i { display:block; width:48px; height:16px; background:var(--surface-2); }.art-footer i:first-child{background:var(--accent)}
.art-badge { z-index: 3; position: absolute; bottom: 10%; right: 7%; width: 115px; height: 115px; border-radius: 50%; background: var(--dark); color: var(--dark-text); display: grid; place-content: center; text-align: center; box-shadow: 0 18px 50px rgba(0,0,0,.28); transform: rotate(6deg); }
.art-badge span, .art-badge small { font-size: 7px; letter-spacing: .1em; }.art-badge strong{font-size:23px;line-height:1.05;margin:3px 0}


.makeover-section { overflow: hidden; }
.makeover-stage {
  --reveal: 58%;
  position: relative;
  min-height: 610px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: #e6e6e2;
  box-shadow: var(--shadow);
  isolation: isolate;
}
.makeover-stage:focus-within { outline: 3px solid var(--accent-2); outline-offset: 4px; }
.makeover-layer { position: absolute; inset: 0; padding: 46px; }
.makeover-before { background: #deded8; color: #272727; }
.makeover-after {
  color: var(--text);
  background: linear-gradient(135deg, var(--surface-2), var(--surface));
  clip-path: inset(0 calc(100% - var(--reveal)) 0 0);
  transition: background .4s var(--ease);
  z-index: 2;
}
.makeover-tag {
  position: absolute;
  top: 18px;
  padding: 7px 9px;
  border-radius: 999px;
  font: 800 8px/1 var(--font-body);
  letter-spacing: .12em;
}
.makeover-before .makeover-tag { right: 18px; background: #272727; color: #f5f5ef; }
.makeover-after .makeover-tag { left: 18px; background: var(--accent); color: #fff; }
.legacy-browser, .modern-browser { width: min(100%, 1000px); height: 100%; min-height: 510px; margin: 0 auto; box-shadow: 0 28px 70px rgba(0,0,0,.15); }
.legacy-browser { border: 3px ridge #8a8a85; background: #f0f0ea; font-family: Arial, Helvetica, sans-serif; }
.legacy-top { padding: 22px 24px 17px; color: #102b63; border-bottom: 5px double #888; background: linear-gradient(#fff, #d8d8d2); }
.legacy-top strong { display: block; font-size: clamp(22px, 3.2vw, 44px); line-height: 1; text-shadow: 1px 1px #fff; }
.legacy-top span { display: block; margin-top: 14px; font-size: 10px; text-decoration: underline; }
.legacy-body { display: grid; grid-template-columns: 190px 1fr; gap: 20px; padding: 24px; }
.legacy-sidebar { display: flex; flex-direction: column; gap: 9px; padding: 16px; background: #c9d4e8; border: 2px outset #eee; color: #15366d; font-size: 12px; }
.legacy-sidebar i { height: 28px; border: 1px solid #777; background: linear-gradient(#f9f9f9, #c4c4c4); }
.legacy-sidebar small { margin-top: auto; color: #b20f0f; font-weight: 800; text-align: center; }
.legacy-content h3 { margin: 0 0 12px; color: #9d1717; font: bold 26px/1.05 Georgia, serif; }
.legacy-content p { max-width: 560px; font-size: 13px; line-height: 1.45; }
.legacy-image { height: 220px; display: grid; place-items: center; margin: 20px 0; border: 1px solid #888; color: #777; background: repeating-linear-gradient(45deg,#dadada,#dadada 10px,#e9e9e9 10px,#e9e9e9 20px); font-size: 12px; }
.legacy-content button { border: 2px outset #ddd; background: #d2d2d2; padding: 8px 18px; font-weight: 700; color: #111; }
.modern-browser { position: relative; overflow: hidden; border: 1px solid var(--line); background: var(--surface); border-radius: calc(var(--radius) * .8); }
.modern-nav { display: grid; grid-template-columns: 1fr 42px 42px 74px; gap: 12px; align-items: center; padding: 24px 28px; border-bottom: 1px solid var(--line); }
.modern-nav strong { font-family: var(--font-display); letter-spacing: .15em; font-size: 13px; }
.modern-nav span { height: 3px; border-radius: 99px; background: var(--line); }
.modern-nav i { height: 29px; border-radius: var(--radius-sm); background: var(--accent); }
.modern-copy { position: absolute; z-index: 2; left: 7%; top: 25%; width: 46%; }
.modern-copy small { color: var(--accent); font-size: 9px; font-weight: 850; letter-spacing: .14em; }
.modern-copy h3 { margin: 16px 0 13px; font-family: var(--font-display); font-size: clamp(38px, 5.2vw, 76px); line-height: .9; letter-spacing: -.06em; }
.modern-copy p { max-width: 410px; color: var(--muted); font-size: 13px; }
.modern-copy b { display: inline-block; margin-top: 18px; padding: 12px 15px; background: var(--accent); color: #fff; border-radius: var(--radius-sm); font-size: 10px; }
.modern-art { position: absolute; right: 3%; top: 18%; width: 44%; height: 68%; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: linear-gradient(145deg, var(--accent-soft), color-mix(in srgb, var(--accent-2) 18%, var(--surface))); }
.modern-art::before { content: ""; position: absolute; width: 58%; aspect-ratio: 1; border-radius: 50%; left: 21%; top: 20%; background: radial-gradient(circle at 35% 30%, var(--accent-2), var(--accent)); box-shadow: 0 35px 80px color-mix(in srgb,var(--accent) 28%,transparent); }
.modern-art i { position: absolute; z-index: 2; width: 27%; height: 34%; border: 1px solid var(--line); background: color-mix(in srgb,var(--surface) 86%,transparent); backdrop-filter: blur(8px); }
.modern-art i:nth-child(1) { left: 7%; top: 9%; transform: rotate(-8deg); }
.modern-art i:nth-child(2) { right: 7%; bottom: 9%; transform: rotate(8deg); }
.modern-art i:nth-child(3) { width: 62%; height: 1px; left: 19%; bottom: 12%; background: var(--text); opacity: .25; }
.modern-art span { position: absolute; inset: auto 10% 8% 10%; height: 8px; border-radius: 99px; background: var(--accent); opacity: .2; }
.makeover-divider { position: absolute; z-index: 5; top: 0; bottom: 0; left: var(--reveal); width: 2px; transform: translateX(-1px); background: #fff; box-shadow: 0 0 0 1px rgba(0,0,0,.1), 0 0 30px rgba(0,0,0,.24); pointer-events: none; }
.makeover-divider span { position: absolute; top: 50%; left: 50%; width: 48px; height: 48px; display: grid; place-items: center; transform: translate(-50%,-50%); border: 1px solid rgba(0,0,0,.16); border-radius: 50%; background: #fff; color: #151515; box-shadow: 0 10px 30px rgba(0,0,0,.18); font-size: 18px; }
.makeover-range { position: absolute; z-index: 6; inset: 0; width: 100%; height: 100%; margin: 0; opacity: 0; cursor: ew-resize; }
.makeover-hint { position: absolute; z-index: 7; left: 50%; bottom: 18px; transform: translateX(-50%); pointer-events: none; padding: 8px 11px; border-radius: 999px; background: rgba(10,10,10,.72); color: #fff; backdrop-filter: blur(8px); font-size: 9px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; transition: opacity .25s ease; }
.makeover-stage.is-interacting .makeover-hint { opacity: 0; }
html[data-business="contractor"] .modern-art::before { border-radius: 22%; transform: rotate(45deg); }
html[data-business="wellness"] .modern-art::before { background: radial-gradient(circle at 40% 35%, var(--surface), var(--accent-2) 32%, var(--accent)); }
html[data-business="legal"] .modern-art::before { border-radius: 5px; background: linear-gradient(145deg,var(--accent),var(--dark)); }
html[data-business="saas"] .modern-art::before { border-radius: 28px; background: conic-gradient(var(--accent),var(--accent-2),var(--accent)); }
html[data-business="retail"] .modern-art::before { border-radius: 46% 46% 18% 18%; }

.lab-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.lab-card { border: 1px solid var(--line); background-color: var(--surface); border-radius: var(--radius); padding: 32px; min-height: 330px; transition: border-color .25s ease, background .4s var(--ease); }
.lab-card-wide { grid-column: 1 / -1; min-height: 390px; }
.lab-card-top { display: flex; align-items: center; justify-content: space-between; font-size: 9px; letter-spacing: .12em; color: var(--muted); font-weight: 800; }
.live-pill { padding: 5px 7px; border-radius: 999px; background: var(--accent-soft); color: var(--accent); }
.lab-card h3 { margin: 52px 0 8px; font-family: var(--font-display); font-size: 28px; letter-spacing: -.04em; }
.lab-card > p { margin: 0; color: var(--muted); }
.counter-demo { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 30px; }
.counter-demo div { background: var(--surface-2); border-radius: var(--radius-sm); padding: 18px; display: grid; }
.counter-demo strong { font-size: 34px; letter-spacing: -.06em; }
.counter-demo span { font-size: 8px; text-transform: uppercase; color: var(--muted); letter-spacing: .08em; }
.availability-demo { display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px; margin-top: 27px; }
.availability-option { border: 1px solid var(--line); background: transparent; border-radius: var(--radius-sm); padding: 10px 8px; font-size: 10px; cursor: pointer; color: var(--muted); }
.availability-option i { width: 6px; height: 6px; border-radius: 50%; background: #37c982; display: inline-block; margin-right: 4px; }.availability-option:nth-child(2) i{background:#f0ad42}.availability-option:nth-child(3) i{background:#8a9294}
.availability-option.active { border-color: var(--accent); color: var(--text); background: var(--accent-soft); }
.availability-result { display: flex; gap: 8px; align-items: center; margin-top: 17px; font-size: 11px; }
.availability-result span { width: 8px; height: 8px; border-radius: 50%; background: #37c982; box-shadow: 0 0 0 5px rgba(55,201,130,.1); }
kbd { font: 10px/1 ui-monospace, monospace; padding: 5px 7px; border: 1px solid var(--line); background: var(--surface-2); border-radius: 5px; box-shadow: inset 0 -1px var(--line); }
.command-demo { width:100%; margin-top:30px; display:flex; justify-content:space-between; align-items:center; border:1px solid var(--line); background:var(--surface-2); border-radius:var(--radius-sm); padding:14px 15px; cursor:pointer; text-align:left; }
.command-demo:hover { border-color: var(--accent); }
.micro-form { margin-top: 26px; }
.micro-form label { display: block; font-size: 9px; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); margin-bottom: 7px; font-weight: 800; }
.micro-form > div { display: grid; grid-template-columns: 1fr 44px; }
.micro-form input { min-width:0; border:1px solid var(--line); border-right:0; background:var(--surface-2); color:var(--text); border-radius:var(--radius-sm) 0 0 var(--radius-sm); padding:12px; outline:none; }
.micro-form button { border:0; background:var(--accent); color:white; border-radius:0 var(--radius-sm) var(--radius-sm) 0; cursor:pointer; }
.micro-form small { display:block; color:var(--muted); margin-top:8px; font-size:9px; }
.micro-form.success input { border-color:#37c982; }.micro-form.error input{border-color:#e45b5b}.micro-form.success small{color:#2ba468}.micro-form.error small{color:#d64a4a}

.estimator-layout { display: grid; grid-template-columns: 1.05fr .95fr; gap: 52px; align-items: stretch; margin-top: 34px; }
.estimator-layout h3 { margin: 0 0 8px; }
.estimator-layout p { margin: 0; color: var(--muted); max-width: 620px; }
.estimator-controls { display: grid; gap: 8px; margin-top: 30px; }
.estimator-controls label { display: flex; justify-content: space-between; gap: 20px; margin-top: 9px; font-size: 10px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); }
.estimator-controls output { color: var(--text); font-size: 12px; letter-spacing: 0; }
.estimator-controls input[type="range"] { width: 100%; accent-color: var(--accent); cursor: pointer; }
.estimator-result { display: flex; flex-direction: column; justify-content: center; min-height: 250px; padding: 28px; border: 1px solid var(--line); border-radius: var(--radius-sm); background: linear-gradient(145deg,var(--accent-soft),var(--surface-2)); overflow: hidden; }
.estimator-result > span { font-size: 8px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); font-weight: 850; }
.estimator-number { display: grid; margin: 18px 0 24px; }
.estimator-number strong { font-family: var(--font-display); font-size: clamp(54px, 7vw, 90px); line-height: .9; letter-spacing: -.07em; color: var(--accent); }
.estimator-number small { margin-top: 9px; color: var(--muted); }
.estimator-delta { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; font-size: 10px; color: var(--muted); }
.estimator-delta span { display: flex; justify-content: space-between; gap: 10px; padding: 10px 0; border-top: 1px solid var(--line); }
.estimator-delta b { color: var(--text); }
.estimator-bars { display: grid; gap: 6px; margin-top: 12px; }
.estimator-bars i { display: block; height: 7px; border-radius: 99px; transform-origin: left; transition: width .35s var(--ease); }
.estimator-bars i:first-child { width: 80%; background: var(--line); }
.estimator-bars i:last-child { width: 100%; background: linear-gradient(90deg,var(--accent),var(--accent-2)); }

.spotlight-card { background-image: radial-gradient(520px circle at var(--spot-x, 50%) var(--spot-y, 50%), var(--accent-soft), transparent 42%); }
body.presentation-mode .demo-fab { border-color: var(--accent); box-shadow: 0 0 0 5px var(--accent-soft), 0 14px 40px rgba(0,0,0,.15); }
body.presentation-mode .demo-fab .fab-icon { animation: presentation-spin 2.6s linear infinite; }
@keyframes presentation-spin { to { transform: rotate(360deg); } }


.process-list { border-top: 1px solid rgba(255,255,255,.15); }
.process-row { display:grid; grid-template-columns:70px 1fr 60px; gap:28px; align-items:center; padding:35px 4px; border-bottom:1px solid rgba(255,255,255,.15); transition:padding .25s var(--ease), background .25s ease; }
.process-row:hover { padding-left: 18px; background: rgba(255,255,255,.03); }
.process-number { color: color-mix(in srgb, var(--dark-text) 40%, transparent); font-size: 10px; letter-spacing: .1em; }
.process-row h3 { margin:0 0 5px; font-family:var(--font-display); font-size:31px; letter-spacing:-.035em; }
.process-row p { margin:0; color:color-mix(in srgb, var(--dark-text) 58%, transparent); }
.process-icon { width:46px; height:46px; border:1px solid rgba(255,255,255,.18); display:grid; place-items:center; border-radius:50%; font-size:18px; }

.pricing-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:16px; align-items:stretch; }
.price-card { border:1px solid var(--line); border-radius:var(--radius); background:var(--surface); padding:32px; display:flex; flex-direction:column; position:relative; min-height:500px; transition:transform .3s var(--ease), border-color .3s ease; }
.price-card:hover { transform:translateY(-6px); border-color:color-mix(in srgb, var(--accent) 50%, var(--line)); }
.price-featured { border-color:var(--accent); box-shadow:0 22px 60px var(--accent-soft); }
.recommended { position:absolute; right:18px; top:18px; font-size:8px; letter-spacing:.12em; background:var(--accent); color:#fff; padding:6px 8px; border-radius:999px; font-weight:850; }
.price-label { color:var(--accent); font-size:9px; letter-spacing:.14em; font-weight:850; }
.price-card h3 { font-family:var(--font-display); font-size:36px; letter-spacing:-.04em; margin:22px 0 8px; }
.price-card > p { color:var(--muted); min-height:74px; }
.price { margin:24px 0; padding:22px 0; border-top:1px solid var(--line); border-bottom:1px solid var(--line); color:var(--muted); }
.price strong { color:var(--text); font-size:26px; }
.price-card ul { list-style:none; padding:0; margin:0 0 28px; display:grid; gap:12px; color:var(--muted); font-size:13px; flex:1; }
.price-card li::before { content:"✓"; color:var(--accent); font-weight:900; margin-right:9px; }
.pricing-note { text-align:center; margin:24px 0 0; color:var(--muted); font-size:10px; }

.testimonial-section { border-top:1px solid var(--line); border-bottom:1px solid var(--line); }
.testimonial-wrap { max-width:950px; }
.quote-mark { font-family:Georgia,serif; font-size:100px; color:var(--accent); line-height:.6; }
blockquote { font-family:var(--font-display); font-size:clamp(34px,5vw,60px); letter-spacing:-.05em; line-height:1.05; margin:25px 0 45px; }
.testimonial-meta { display:flex; align-items:center; justify-content:space-between; gap:20px; padding-top:24px; border-top:1px solid var(--line); }
.testimonial-meta > div:first-child { display:grid; }.testimonial-meta strong{font-size:12px}.testimonial-meta span{font-size:9px;color:var(--muted);text-transform:uppercase;letter-spacing:.08em;margin-top:3px}
.testimonial-controls { display:flex; align-items:center; gap:11px; }
.testimonial-controls button { width:35px;height:35px;border:1px solid var(--line);background:var(--surface);border-radius:50%;cursor:pointer; }.testimonial-controls button:hover{border-color:var(--accent)}
.testimonial-controls span { min-width:44px;text-align:center;margin:0; }

.faq-layout { display:grid; grid-template-columns:.72fr 1.28fr; gap:80px; align-items:start; }
.faq-intro { position:sticky; top:130px; }
.faq-intro p { color:var(--muted); margin:22px 0 28px; max-width:430px; }
.accordion { border-top:1px solid var(--line); }
.accordion-item { border-bottom:1px solid var(--line); }
.accordion-item button { width:100%; border:0; background:transparent; display:flex; align-items:center; justify-content:space-between; gap:20px; text-align:left; padding:25px 0; cursor:pointer; font-weight:750; font-size:16px; }
.accordion-item button i { font-style:normal; font-size:22px; color:var(--accent); }
.accordion-panel { display:grid; grid-template-rows:0fr; transition:grid-template-rows .3s var(--ease); }
.accordion-panel p { overflow:hidden; margin:0; color:var(--muted); line-height:1.75; max-width:700px; }
.accordion-item.open .accordion-panel { grid-template-rows:1fr; }
.accordion-item.open .accordion-panel p { padding-bottom:25px; }

.contact-section { overflow:hidden; }
.contact-grid { display:grid; grid-template-columns:.9fr 1.1fr; gap:80px; align-items:start; }
.contact-copy { position:sticky; top:130px; }
.contact-copy > p { color:var(--muted); margin:25px 0; }
.contact-mini-grid { display:grid; grid-template-columns:1fr 1fr; border-top:1px solid var(--line); border-bottom:1px solid var(--line); margin-top:34px; }
.contact-mini-grid div { padding:17px 0; display:grid; }.contact-mini-grid div+div{border-left:1px solid var(--line);padding-left:18px}.contact-mini-grid span{font-size:8px;text-transform:uppercase;letter-spacing:.1em;color:var(--muted)}.contact-mini-grid strong{font-size:13px;margin-top:4px}
.contact-form { background:var(--surface); border:1px solid var(--line); border-radius:var(--radius); padding:36px; box-shadow:var(--shadow); }
.contact-form label { display:grid; gap:8px; font-size:10px; text-transform:uppercase; letter-spacing:.1em; font-weight:850; color:var(--muted); margin-bottom:20px; }
.field-row { display:grid; grid-template-columns:1fr 1fr; gap:14px; }
.contact-form input,.contact-form textarea,.contact-form select { width:100%; border:1px solid var(--line); background:var(--surface-2); border-radius:var(--radius-sm); color:var(--text); padding:14px; outline:none; text-transform:none; letter-spacing:0; font-weight:500; }
.contact-form input:focus,.contact-form textarea:focus,.contact-form select:focus { border-color:var(--accent); box-shadow:0 0 0 3px var(--accent-soft); }
.contact-form textarea { resize:vertical; min-height:130px; }
.form-disclaimer { margin:12px 0 0; text-align:center; font-size:9px; color:var(--muted); }

.site-footer { background:var(--dark); color:var(--dark-text); padding:65px 0 25px; }
.footer-main { display:grid; grid-template-columns:1.5fr .5fr .5fr; gap:80px; }
.footer-brand .brand-mark span { background:var(--dark-text); }
.footer-main > div:first-child p { color:color-mix(in srgb, var(--dark-text) 52%, transparent); max-width:430px; font-size:13px; margin-top:18px; }
.footer-links { display:grid; align-content:start; gap:12px; font-size:12px; color:color-mix(in srgb, var(--dark-text) 62%, transparent); }
.footer-links a:hover,.footer-links button:hover{color:var(--dark-text)}
.footer-links button { border:0;background:transparent;color:inherit;padding:0;text-align:left;cursor:pointer;font:inherit; }
.footer-bottom { margin-top:55px;padding-top:20px;border-top:1px solid rgba(255,255,255,.12);display:flex;justify-content:space-between;gap:20px;color:color-mix(in srgb, var(--dark-text) 42%, transparent);font-size:9px;text-transform:uppercase;letter-spacing:.1em; }

.demo-fab { position:fixed; right:22px; bottom:22px; z-index:90; display:flex; align-items:center; gap:9px; height:48px; border:1px solid var(--line); background:color-mix(in srgb, var(--surface) 91%, transparent); color:var(--text); box-shadow:0 14px 40px rgba(0,0,0,.15); backdrop-filter:blur(14px); border-radius:999px; padding:0 10px 0 15px; cursor:pointer; font-weight:750; font-size:11px; }
.demo-fab:hover { transform:translateY(-2px); }.demo-fab .fab-icon{color:var(--accent)}.demo-fab kbd{border-radius:999px;padding:5px 7px}
.drawer-backdrop { position:fixed; inset:0; background:rgba(5,8,7,.52); z-index:198; backdrop-filter:blur(4px); opacity:0; transition:opacity .25s ease; }
.drawer-backdrop.visible { opacity:1; }
.demo-drawer { position:fixed; z-index:199; right:0; top:0; bottom:0; width:min(470px,100%); background:var(--bg); border-left:1px solid var(--line); box-shadow:-30px 0 90px rgba(0,0,0,.22); padding:30px; overflow:auto; transform:translateX(105%); transition:transform .35s var(--ease), background .4s var(--ease); }
.demo-drawer.open { transform:translateX(0); }
.drawer-header { display:flex; justify-content:space-between; gap:20px; align-items:flex-start; padding-bottom:24px; border-bottom:1px solid var(--line); }
.drawer-header h2 { font-family:var(--font-display);font-size:34px;letter-spacing:-.04em;margin:0; }
.drawer-close { width:40px;height:40px;border:1px solid var(--line);background:var(--surface);border-radius:50%;font-size:24px;line-height:1;cursor:pointer; }
.control-group { border:0;padding:27px 0;margin:0;border-bottom:1px solid var(--line); }
.control-group legend { padding:0;margin:0 0 13px;font-size:9px;text-transform:uppercase;letter-spacing:.12em;color:var(--muted);font-weight:850; }
.choice-grid { display:grid;grid-template-columns:1fr 1fr;gap:8px; }
.choice { border:1px solid var(--line);background:var(--surface);border-radius:var(--radius-sm);padding:13px;text-align:left;display:grid;grid-template-columns:28px 1fr;column-gap:8px;cursor:pointer; }
.choice > span { grid-row:1/3;font-size:18px;align-self:center; }.choice b{font-size:11px}.choice small{font-size:8px;color:var(--muted)}
.choice.active { border-color:var(--accent);background:var(--accent-soft);box-shadow:inset 3px 0 var(--accent); }
.style-list { display:grid;gap:6px; }
.style-choice { border:1px solid transparent;background:transparent;border-radius:var(--radius-sm);padding:11px 8px;display:grid;grid-template-columns:24px 1fr 24px;gap:10px;align-items:center;text-align:left;cursor:pointer; }
.style-choice:hover { background:var(--surface); }.style-choice.active{border-color:var(--line);background:var(--surface)}
.style-choice span{display:grid}.style-choice b{font-size:11px}.style-choice small{font-size:8px;color:var(--muted)}.style-choice em{font-style:normal;font-size:8px;color:var(--muted)}
.style-dot { width:18px;height:18px;border-radius:50%;border:1px solid var(--line); }.executive-dot{background:linear-gradient(135deg,#205b46 50%,#b6ff5c 50%)}.editorial-dot{background:linear-gradient(135deg,#b13c28 50%,#f4b942 50%)}.neon-dot{background:linear-gradient(135deg,#8b5cff 50%,#00f0c8 50%)}.organic-dot{background:linear-gradient(135deg,#6e7953 50%,#d2a765 50%)}.minimal-dot{background:linear-gradient(135deg,#111 50%,#fff 50%)}.luxury-dot{background:linear-gradient(135deg,#c1a56c 50%,#181715 50%)}
.drawer-footer { padding-top:24px; }
.drawer-surprise { margin-bottom: 18px; }
.motion-toggle { display:flex;align-items:center;justify-content:space-between;gap:16px;margin-bottom:20px;cursor:pointer; }.motion-toggle span{display:grid}.motion-toggle b{font-size:11px}.motion-toggle small{font-size:8px;color:var(--muted);margin-top:2px}.motion-toggle input{position:absolute;opacity:0}.motion-toggle i{width:42px;height:24px;border-radius:999px;background:var(--line);position:relative;transition:background .2s ease;flex:0 0 auto}.motion-toggle i::after{content:"";position:absolute;width:18px;height:18px;border-radius:50%;background:var(--surface);top:3px;left:3px;box-shadow:0 1px 5px rgba(0,0,0,.2);transition:transform .2s ease}.motion-toggle input:checked+i{background:var(--accent)}.motion-toggle input:checked+i::after{transform:translateX(18px)}

.toast { position:fixed; left:50%; bottom:24px; z-index:300; transform:translate(-50%, calc(100% + 50px)); opacity:0; display:flex; align-items:center; gap:9px; background:var(--dark); color:var(--dark-text); border:1px solid rgba(255,255,255,.12); box-shadow:0 15px 50px rgba(0,0,0,.25); border-radius:999px; padding:11px 16px; transition:transform .3s var(--ease), opacity .3s ease; pointer-events:none; }
.toast.show { transform:translate(-50%,0);opacity:1; }.toast span{color:#60dda0}.toast p{margin:0;font-size:11px;font-weight:700}

.reveal { opacity:0; transform:translateY(24px); transition:opacity .75s var(--ease), transform .75s var(--ease); }
.reveal.visible { opacity:1; transform:none; }
.reveal-delay-1 { transition-delay:.09s; }.reveal-delay-2{transition-delay:.18s}
html.no-motion *, html.no-motion *::before, html.no-motion *::after { animation:none!important; transition-duration:.001ms!important; scroll-behavior:auto!important; }
html.no-motion .reveal { opacity:1;transform:none; }

html[data-business="contractor"] .visual-scene .scene-orb { border-radius: 22%; transform: rotate(45deg); }
html[data-business="contractor"] .art-visual span { clip-path: polygon(50% 0,100% 42%,84% 42%,84% 100%,16% 100%,16% 42%,0 42%); }
html[data-business="wellness"] .visual-scene .scene-orb { background: radial-gradient(circle at 40% 35%, var(--surface), var(--accent-2) 32%, var(--accent)); filter: blur(.2px); }
html[data-business="wellness"] .art-visual span { border-radius: 999px 999px 12px 12px; }
html[data-business="legal"] .visual-scene .scene-orb { border-radius: 5px; background: linear-gradient(145deg,var(--accent),var(--dark)); }
html[data-business="legal"] .art-visual span { width: 5px; }
html[data-business="saas"] .visual-scene .scene-orb { border-radius: 28px; background: conic-gradient(var(--accent),var(--accent-2),var(--accent)); }
html[data-business="saas"] .scene-line { height: 60px; border: 1px dashed var(--line); background: transparent; }
html[data-business="retail"] .visual-scene .scene-orb { border-radius: 46% 46% 18% 18%; }
html[data-business="retail"] .art-visual { align-items:center; }html[data-business="retail"] .art-visual span{border-radius:50%}

@media (max-width: 1080px) {
  .desktop-nav { display:none; }.menu-button{display:grid}.desktop-cta{display:none}
  .hero-grid { grid-template-columns:1fr; gap:70px; }.hero-copy{max-width:790px}.hero-visual{max-width:760px;margin-inline:auto;width:100%}
  .section-heading { grid-template-columns:1fr;gap:18px; }.section-heading>p{max-width:650px}
  .showcase-panel { grid-template-columns:1fr; }.showcase-art{min-height:500px}.showcase-main{min-height:520px}
  .makeover-stage{min-height:560px}.makeover-layer{padding:38px}.legacy-browser,.modern-browser{min-height:470px}.modern-copy{width:50%}.modern-art{width:42%}
  .faq-layout,.contact-grid { grid-template-columns:1fr;gap:55px}.faq-intro,.contact-copy{position:static}.faq-intro{max-width:720px}
  .footer-main { grid-template-columns:1fr 1fr; }.footer-main>div:first-child{grid-column:1/-1}
}

@media (max-width: 760px) {
  :root { --header-h:68px; }
  .shell { width:min(calc(100% - 28px),var(--max)); }
  .section-pad { padding:78px 0; }
  .site-header { height:var(--header-h); }.mobile-nav{top:var(--header-h)}
  .brand-word{font-size:11px}.brand-mark{width:24px;height:24px}
  .hero { padding-top:60px;min-height:auto }.hero h1{font-size:clamp(48px,15vw,76px)}.hero-lede{font-size:16px}.hero-meta{gap:20px;justify-content:space-between}.hero-meta strong{font-size:21px}.hero-meta span{font-size:8px}
  .browser-card{transform:none}.browser-page{min-height:430px;padding:17px}.browser-chrome{grid-template-columns:45px 1fr 30px;padding:0 10px}.address{min-width:120px}.mini-hero{padding:38px 0 30px;grid-template-columns:1fr .9fr}.mini-copy h2{font-size:30px}.visual-scene{min-height:210px}.scene-orb{width:130px;height:130px;left:18%}.scene-card{width:70px;height:90px}.floating-card-top{right:-5px;top:-25px}.floating-card-bottom{left:-7px;bottom:-28px}
  .service-grid,.lab-grid,.pricing-grid { grid-template-columns:1fr; }.feature-wide{grid-column:auto}.split-copy{grid-template-columns:1fr}.code-window{margin-top:10px}.feature-card{min-height:300px;padding:27px}.feature-icon{margin-bottom:40px}
  .business-tabs { grid-template-columns:repeat(3,1fr); }.business-tab:nth-child(3){border-right:0}.business-tab:nth-child(-n+3){border-bottom:1px solid var(--line)}
  .showcase-main { padding:34px 27px;min-height:540px}.showcase-main h3{font-size:42px}.metric-row{gap:6px}.metric-row strong{font-size:18px}.showcase-art{min-height:430px}.art-frame{width:65%;height:70%}.art-badge{width:92px;height:92px}.art-badge strong{font-size:19px}
  .availability-demo{grid-template-columns:1fr}.lab-card{min-height:auto;padding:27px}.lab-card h3{margin-top:38px}.lab-card-wide{grid-column:auto}.estimator-layout{grid-template-columns:1fr;gap:24px}.estimator-layout h3{margin-top:0}.estimator-result{min-height:220px}
  .makeover-stage{min-height:520px}.makeover-layer{padding:30px 20px}.legacy-browser,.modern-browser{min-height:455px}.legacy-body{grid-template-columns:130px 1fr;gap:12px;padding:15px}.legacy-sidebar{padding:10px}.legacy-image{height:170px}.modern-nav{padding:18px 20px;grid-template-columns:1fr 28px 28px 54px}.modern-copy{left:6%;top:27%;width:55%}.modern-copy h3{font-size:42px}.modern-copy p{font-size:11px}.modern-art{right:2%;top:22%;width:39%;height:61%}.makeover-hint{bottom:10px}
  .process-row { grid-template-columns:38px 1fr 40px;gap:12px;padding:28px 0}.process-row h3{font-size:24px}.process-row p{font-size:13px}.process-icon{width:36px;height:36px}
  .price-card{min-height:auto}.price-card>p{min-height:auto}
  .faq-layout{gap:38px}.accordion-item button{font-size:14px}
  .field-row{grid-template-columns:1fr}.contact-form{padding:24px}
  .footer-main{grid-template-columns:1fr 1fr;gap:40px}.footer-main>div:first-child{grid-column:1/-1}.footer-bottom{flex-direction:column;gap:8px}
  .demo-fab span:nth-child(2),.demo-fab kbd{display:none}.demo-fab{width:48px;padding:0;justify-content:center}.fab-icon{font-size:17px}.demo-drawer{padding:24px 18px}.choice-grid{grid-template-columns:1fr 1fr}
  .testimonial-meta{align-items:flex-end}.testimonial-controls{gap:7px}
}

@media (max-width: 460px) {
  .hero-actions .button { width:100%; }.hero-meta{display:grid;grid-template-columns:repeat(3,1fr);gap:10px}.hero-meta span{max-width:75px}
  .mini-links{display:none}.mini-hero{grid-template-columns:1fr}.visual-scene{min-height:160px}.mini-copy p{display:none}.browser-page{min-height:500px}.mini-stats span{font-size:7px}
  .section-heading h2,.faq-intro h2,.contact-copy h2{font-size:40px}.feature-card h3{font-size:25px}
  .business-tabs{grid-template-columns:1fr 1fr}.business-tab:nth-child(2n){border-right:0}.business-tab:nth-child(3){border-right:1px}.business-tab:nth-child(-n+4){border-bottom:1px solid var(--line)}
  .metric-row{grid-template-columns:1fr}.metric-row div{grid-template-columns:60px 1fr;align-items:center;padding:7px 0}.metric-row span{margin:0}
  .showcase-art{min-height:390px}.art-frame{width:72%}
  .counter-demo{grid-template-columns:1fr}.estimator-delta{grid-template-columns:1fr}.makeover-stage{min-height:470px}.makeover-layer{padding:24px 12px}.legacy-browser,.modern-browser{min-height:420px}.legacy-top{padding:18px 14px 12px}.legacy-top strong{font-size:24px}.legacy-top span{font-size:8px}.legacy-body{grid-template-columns:1fr}.legacy-sidebar{display:none}.legacy-content h3{font-size:22px}.legacy-image{height:135px}.modern-nav{grid-template-columns:1fr 18px 18px 44px;padding:16px}.modern-copy{top:24%;left:7%;width:68%}.modern-copy h3{font-size:36px}.modern-copy p{max-width:250px}.modern-art{width:44%;height:52%;right:-12%;top:38%;opacity:.78}.makeover-divider span{width:42px;height:42px}.contact-mini-grid{grid-template-columns:1fr}.contact-mini-grid div+div{border-left:0;border-top:1px solid var(--line);padding-left:0}
  .choice-grid{grid-template-columns:1fr}.footer-main{grid-template-columns:1fr}.footer-main>div:first-child{grid-column:auto}
}

@media (prefers-reduced-motion: reduce) {
  *,*::before,*::after { scroll-behavior:auto!important; animation-duration:.001ms!important; animation-iteration-count:1!important; transition-duration:.001ms!important; }
  .reveal { opacity:1; transform:none; }
}
