:root {
  color-scheme: dark;
  --bg: #040507;
  --bg-2: #080b10;
  --bg-3: #0d1118;
  --panel: rgba(12, 16, 22, 0.72);
  --panel-2: rgba(255, 255, 255, 0.045);
  --panel-3: rgba(255, 255, 255, 0.078);
  --line: rgba(255, 255, 255, 0.12);
  --line-strong: rgba(255, 255, 255, 0.2);
  --text: #f7f8fb;
  --muted: rgba(247, 248, 251, 0.72);
  --muted-2: rgba(247, 248, 251, 0.52);
  --red: #ff4655;
  --red-2: #ff6a73;
  --red-dark: #9b1520;
  --green: #45e58c;
  --shadow: 0 36px 100px rgba(0, 0, 0, 0.55);
  --shadow-soft: 0 20px 50px rgba(0, 0, 0, 0.34);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --shell: min(1180px, calc(100vw - 44px));
  --ease: cubic-bezier(.16, 1, .3, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--bg); }
body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 72% 8%, rgba(255, 70, 85, 0.18), transparent 30vw),
    radial-gradient(circle at 20% 26%, rgba(255, 255, 255, 0.065), transparent 28vw),
    linear-gradient(180deg, #040507 0%, #070a0f 42%, #030405 100%);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Segoe UI", Roboto, Inter, Arial, sans-serif;
  letter-spacing: -0.018em;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }
::selection { background: rgba(255, 70, 85, .35); color: #fff; }
.shell { width: var(--shell); margin-inline: auto; }
.hidden, .sr-only, .skip-link {
  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:focus {
  position: fixed; z-index: 9999; top: 14px; left: 14px; width: auto; height: auto;
  padding: 12px 16px; margin: 0; overflow: visible; clip: auto; border-radius: 999px;
  background: #fff; color: #050609;
}
.progress { position: fixed; top: 0; left: 0; z-index: 1001; width: 0; height: 2px; background: linear-gradient(90deg, var(--red), #fff, var(--red)); box-shadow: 0 0 24px rgba(255,70,85,.8); }
.noise { pointer-events: none; position: fixed; inset: 0; z-index: 0; opacity: .14; 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='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.32'/%3E%3C/svg%3E"); mix-blend-mode: overlay; }
.page-glow { pointer-events: none; position: fixed; z-index: 0; border-radius: 999px; filter: blur(20px); opacity: .7; }
.page-glow-a { width: 720px; height: 720px; top: -260px; right: -180px; background: radial-gradient(circle, rgba(255,70,85,.18), transparent 68%); }
.page-glow-b { width: 620px; height: 620px; bottom: -320px; left: -230px; background: radial-gradient(circle, rgba(255,255,255,.08), transparent 70%); }

.site-header { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; padding: 14px 0; transition: background .3s var(--ease), border-color .3s var(--ease), backdrop-filter .3s var(--ease); }
.site-header.scrolled { background: rgba(4, 5, 7, .76); border-bottom: 1px solid var(--line); backdrop-filter: blur(22px) saturate(140%); }
.nav { display: flex; align-items: center; justify-content: space-between; min-height: 68px; border-bottom: 1px solid rgba(255,255,255,.09); }
.brand { display: flex; align-items: center; gap: 12px; min-width: 220px; }
.brand-icon { width: 54px; height: 54px; border-radius: 14px; display: grid; place-items: center; background: radial-gradient(circle at 50% 28%, rgba(255,70,85,.16), transparent 62%); border: 1px solid rgba(255,255,255,.08); overflow: hidden; box-shadow: 0 12px 30px rgba(0,0,0,.35); }
.brand-icon img { width: 62px; max-width: none; transform: translateY(1px); filter: drop-shadow(0 10px 20px rgba(255,70,85,.16)); }
.brand-text { display: grid; line-height: .96; }
.brand-text strong { font-size: 16px; font-weight: 760; letter-spacing: -.03em; }
.brand-text em { margin-top: 4px; color: #fff; font-size: 15px; font-style: normal; font-weight: 650; letter-spacing: -.03em; }
.nav-menu { display: flex; align-items: center; gap: 28px; color: rgba(255,255,255,.76); font-size: 13px; font-weight: 650; }
.nav-menu a { position: relative; transition: color .2s ease; }
.nav-menu a:hover { color: #fff; }
.nav-menu a:not(.nav-cta)::after { content: ""; position: absolute; left: 0; right: 0; bottom: -8px; height: 1px; background: var(--red); transform: scaleX(0); transform-origin: left; transition: transform .24s var(--ease); }
.nav-menu a:not(.nav-cta):hover::after { transform: scaleX(1); }
.nav-cta { padding: 13px 21px; border: 1px solid rgba(255,70,85,.78); border-radius: 999px; color: #fff !important; background: linear-gradient(180deg, rgba(255,70,85,.12), rgba(255,70,85,.03)); box-shadow: inset 0 1px 0 rgba(255,255,255,.15), 0 10px 30px rgba(255,70,85,.12); }
.nav-toggle { display: none; width: 44px; height: 44px; border: 1px solid var(--line); border-radius: 12px; background: rgba(255,255,255,.04); color: #fff; }
.nav-toggle span:not(.sr-only) { display: block; width: 18px; height: 2px; margin: 5px auto; background: #fff; transition: transform .2s ease; }

.hero { position: relative; z-index: 2; min-height: 760px; padding: 138px 0 70px; overflow: hidden; border-bottom: 1px solid var(--line); }
.hero::before { content: ""; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px); background-size: 76px 76px; mask-image: radial-gradient(circle at 70% 22%, black, transparent 62%); opacity: .18; }
.hero-grid { position: relative; display: grid; grid-template-columns: minmax(0, 1fr) minmax(420px, .88fr); gap: 62px; align-items: center; }
.eyebrow, .section-kicker { display: inline-flex; align-items: center; gap: 9px; margin: 0 0 18px; color: var(--red-2); text-transform: uppercase; letter-spacing: .14em; font-weight: 850; font-size: 11px; }
.eyebrow span { width: 7px; height: 7px; border-radius: 999px; background: var(--red); box-shadow: 0 0 20px rgba(255,70,85,.9); }
.hero h1 { margin: 0; max-width: 720px; font-size: clamp(48px, 7vw, 86px); line-height: .91; letter-spacing: -.07em; font-weight: 860; }
.hero-lede { max-width: 620px; margin: 26px 0 0; color: var(--muted); font-size: 20px; line-height: 1.54; letter-spacing: -.025em; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 30px; }
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 11px; min-height: 54px; padding: 0 22px; border-radius: 12px; border: 1px solid var(--line); font-weight: 820; font-size: 14px; transition: transform .25s var(--ease), border-color .25s ease, background .25s ease, box-shadow .25s ease; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { color: #fff; border-color: rgba(255,70,85,.9); background: linear-gradient(180deg, #ff5966 0%, #e42f3f 54%, #aa1e2a 100%); box-shadow: inset 0 1px 0 rgba(255,255,255,.32), 0 20px 48px rgba(255,70,85,.28); }
.btn-primary:hover { box-shadow: inset 0 1px 0 rgba(255,255,255,.35), 0 26px 60px rgba(255,70,85,.36); }
.btn-ghost { color: #fff; background: rgba(255,255,255,.045); box-shadow: inset 0 1px 0 rgba(255,255,255,.07); }
.btn-ghost:hover { border-color: rgba(255,255,255,.25); background: rgba(255,255,255,.075); }
.btn.compact { min-height: 46px; padding-inline: 17px; font-size: 13px; }
.hero-badges { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; max-width: 610px; margin-top: 34px; }
.hero-badges div { display: grid; grid-template-columns: 38px 1fr; align-items: center; min-height: 68px; padding: 12px; border: 1px solid var(--line); border-radius: 14px; background: rgba(255,255,255,.035); box-shadow: inset 0 1px 0 rgba(255,255,255,.05); }
.mini-icon { grid-row: span 2; width: 34px; height: 34px; border: 1px solid var(--line); border-radius: 10px; display: grid; place-items: center; color: rgba(255,255,255,.78); font-size: 10px; font-weight: 800; }
.hero-badges strong { font-size: 12px; }
.hero-badges em { color: var(--muted-2); font-style: normal; font-size: 12px; }
.hero-visual { position: relative; min-height: 560px; display: grid; place-items: center; }
.hero-visual::before { content: ""; position: absolute; width: 570px; height: 570px; border-radius: 999px; background: radial-gradient(circle, rgba(255,255,255,.12), rgba(255,70,85,.10) 32%, transparent 64%); filter: blur(6px); }
.hero-visual img { position: relative; z-index: 2; width: min(580px, 100%); filter: drop-shadow(0 45px 70px rgba(0,0,0,.66)) drop-shadow(0 0 46px rgba(255,70,85,.12)); animation: float 7s ease-in-out infinite; }
.hero-orbit { position: absolute; z-index: 1; width: min(520px, 90%); aspect-ratio: 1; border: 1px solid rgba(255,255,255,.09); border-radius: 999px; box-shadow: inset 0 0 70px rgba(255,70,85,.07), 0 0 70px rgba(255,70,85,.05); animation: spin 32s linear infinite; }
.hero-orbit::before, .hero-orbit::after { content: ""; position: absolute; inset: 18%; border: 1px solid rgba(255,70,85,.16); border-radius: 999px; }
.hero-orbit::after { inset: 35%; border-color: rgba(255,255,255,.12); }
.signal-card { position: absolute; z-index: 3; padding: 10px 14px; border: 1px solid rgba(255,255,255,.16); border-radius: 999px; background: rgba(7,10,15,.72); backdrop-filter: blur(18px); color: rgba(255,255,255,.78); font-size: 12px; font-weight: 760; box-shadow: var(--shadow-soft); }
.signal-one { top: 82px; right: 16px; }
.signal-two { left: 12px; top: 250px; }
.signal-three { right: 48px; bottom: 78px; }
@keyframes float { 0%,100% { transform: translate3d(0,0,0); } 50% { transform: translate3d(0,-16px,0); } }
@keyframes spin { to { transform: rotate(360deg); } }

.service-band { position: relative; z-index: 3; border-bottom: 1px solid var(--line); background: rgba(4,5,7,.78); backdrop-filter: blur(18px); }
.band-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 0; }
.band-grid span { padding: 18px 12px; text-align: center; color: rgba(255,255,255,.6); border-left: 1px solid rgba(255,255,255,.06); font-size: 13px; font-weight: 760; }
.band-grid span:last-child { border-right: 1px solid rgba(255,255,255,.06); }

.section { position: relative; z-index: 2; padding: 92px 0; }
.section-heading { text-align: center; max-width: 790px; }
.section-kicker { display: block; margin-bottom: 10px; color: rgba(255,255,255,.52); }
.section-kicker.red { color: var(--red-2); }
.section-heading h2, .marketplace-copy h2, .case-copy h2, .ai-copy h2, .contact-copy h2 { margin: 0; font-size: clamp(36px, 4.4vw, 62px); line-height: .98; letter-spacing: -.055em; font-weight: 830; }
.section-heading p { margin: 18px auto 0; max-width: 700px; color: var(--muted); font-size: 18px; line-height: 1.55; }
.cards-six { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 14px; margin-top: 44px; }
.service-card { min-height: 292px; padding: 28px 22px; border: 1px solid var(--line); border-radius: 18px; background: linear-gradient(180deg, rgba(255,255,255,.055), rgba(255,255,255,.025)); box-shadow: inset 0 1px 0 rgba(255,255,255,.07), 0 24px 70px rgba(0,0,0,.26); transition: transform .28s var(--ease), border-color .28s ease, background .28s ease; }
.service-card:hover { transform: translateY(-6px); border-color: rgba(255,255,255,.24); background: linear-gradient(180deg, rgba(255,255,255,.078), rgba(255,255,255,.032)); }
.card-icon { width: 44px; height: 44px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.16); border-radius: 13px; color: #fff; font-weight: 900; background: rgba(255,255,255,.035); box-shadow: inset 0 0 18px rgba(255,70,85,.08); }
.service-card h3 { margin: 22px 0 12px; font-size: 19px; line-height: 1.08; }
.service-card p { margin: 0; color: var(--muted); line-height: 1.48; font-size: 14px; }
.service-card a { display: inline-flex; margin-top: 22px; color: var(--red-2); font-weight: 790; font-size: 13px; }

.marketplace { padding-top: 20px; }
.marketplace-panel, .case-panel, .ai-panel, .contact-grid { border: 1px solid var(--line); border-radius: var(--radius-xl); background: linear-gradient(145deg, rgba(255,255,255,.055), rgba(255,255,255,.024)); box-shadow: var(--shadow-soft); overflow: hidden; }
.marketplace-panel { display: grid; grid-template-columns: .82fr 1.18fr; gap: 46px; padding: 48px; }
.marketplace-copy p { color: var(--muted); line-height: 1.58; font-size: 16px; }
.checklist { display: grid; gap: 11px; padding: 0; margin: 24px 0 28px; list-style: none; }
.checklist li { position: relative; padding-left: 28px; color: rgba(255,255,255,.78); font-size: 14px; }
.checklist li::before { content: ""; position: absolute; left: 0; top: 1px; width: 17px; height: 17px; border-radius: 999px; background: linear-gradient(180deg, #ff6974, #d82a39); box-shadow: 0 0 22px rgba(255,70,85,.32); }
.checklist li::after { content: ""; position: absolute; left: 6px; top: 5px; width: 4px; height: 8px; border-right: 2px solid #fff; border-bottom: 2px solid #fff; transform: rotate(45deg); }
.marketplace-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; align-content: center; }
.marketplace-grid div { min-height: 150px; padding: 22px 18px; border: 1px solid var(--line); border-radius: 16px; background: rgba(255,255,255,.043); display: grid; gap: 8px; align-content: center; text-align: center; transition: transform .25s var(--ease), border-color .25s ease; }
.marketplace-grid div:hover { transform: translateY(-5px); border-color: rgba(255,70,85,.42); }
.marketplace-grid span { margin-inline: auto; width: 38px; height: 38px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.14); border-radius: 13px; color: var(--red-2); font-size: 12px; font-weight: 850; }
.marketplace-grid strong { font-size: 15px; }
.marketplace-grid em { color: var(--muted-2); font-style: normal; font-size: 12px; line-height: 1.35; }

.case-study { padding-top: 10px; }
.case-panel { display: grid; grid-template-columns: .75fr 1fr 1.05fr; gap: 24px; align-items: stretch; padding: 28px; }
.case-copy { padding: 20px 6px 20px 8px; }
.case-copy p, .proposal-card p, .ai-copy p, .contact-copy p { color: var(--muted); line-height: 1.55; }
.proposal-card { padding: 28px; border: 1px solid var(--line); border-radius: 20px; background: rgba(255,255,255,.05); box-shadow: inset 0 1px 0 rgba(255,255,255,.07); }
.card-label { margin: 0 0 8px !important; color: var(--red-2) !important; text-transform: uppercase; letter-spacing: .12em; font-size: 11px; font-weight: 850; }
.proposal-card h3 { margin: 0 0 10px; font-size: 22px; letter-spacing: -.035em; }
.metrics-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(132px, 1fr));
  gap: 14px;
  margin-top: 25px;
}
.metrics-row div {
  min-height: 78px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 16px;
  padding: 14px 14px 13px;
  background: linear-gradient(180deg, rgba(255,255,255,.045), rgba(255,255,255,.018));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.05);
}
.metrics-row strong {
  display: block;
  color: var(--red-2);
  font-size: clamp(19px, 1.75vw, 23px);
  line-height: 1.08;
  letter-spacing: -.035em;
  white-space: normal;
  overflow-wrap: normal;
}
.metrics-row span {
  display: block;
  color: var(--muted-2);
  font-size: 11px;
  line-height: 1.25;
}
.network-map { position: relative; min-height: 260px; border-radius: 20px; border: 1px solid var(--line); background: radial-gradient(circle at 58% 35%, rgba(255,70,85,.16), transparent 34%), rgba(255,255,255,.035); overflow: hidden; }
.network-map svg { width: 100%; height: 100%; min-height: 260px; padding: 18px; }
.map-outline { fill: rgba(255,255,255,.025); stroke: rgba(255,255,255,.18); stroke-width: 2; }
.map-line { fill: none; stroke: rgba(255,70,85,.68); stroke-width: 2; stroke-dasharray: 5 7; }
.map-nodes circle { fill: #ff4b58; stroke: #fff; stroke-width: 1.5; filter: drop-shadow(0 0 9px #ff4655); }
.network-map span { position: absolute; right: 16px; bottom: 16px; padding: 10px 14px; border: 1px solid var(--line); border-radius: 999px; color: rgba(255,255,255,.7); background: rgba(0,0,0,.28); backdrop-filter: blur(12px); font-size: 12px; font-weight: 760; }

.ai-section { padding-top: 10px; }
.ai-panel { display: grid; grid-template-columns: 1.05fr .95fr; gap: 46px; padding: 36px; align-items: center; }
.phone-demo { display: grid; grid-template-columns: 220px 1fr; gap: 22px; align-items: center; }
.orb-wrap { min-height: 250px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 26px; background: radial-gradient(circle, rgba(255,70,85,.09), transparent 65%), rgba(255,255,255,.035); }
.orb { width: 128px; height: 128px; border-radius: 999px; background: radial-gradient(circle at 40% 35%, #ff99a2, #ff4655 24%, #a41522 48%, #0a0d12 70%); box-shadow: inset 0 0 34px rgba(255,255,255,.16), 0 0 44px rgba(255,70,85,.5); position: relative; animation: pulse 2.8s ease-in-out infinite; }
.orb::before, .orb::after { content: ""; position: absolute; inset: -18px; border: 1px solid rgba(255,70,85,.24); border-radius: inherit; }
.orb::after { inset: -38px; border-color: rgba(255,255,255,.08); }
@keyframes pulse { 0%,100% { transform: scale(1); } 50% { transform: scale(1.05); } }
.call-screen { min-height: 250px; padding: 22px; border: 1px solid var(--line); border-radius: 20px; background: rgba(0,0,0,.22); }
.screen-top { display: flex; justify-content: space-between; align-items: center; color: rgba(255,255,255,.64); text-transform: uppercase; letter-spacing: .12em; font-size: 10px; font-weight: 850; }
.screen-top em { color: var(--green); font-style: normal; }
.call-screen p { margin: 28px 0 0; color: var(--muted-2); }
.call-screen h3 { margin: 4px 0; font-size: 24px; }
.muted { color: var(--muted-2); }
.wave { display: flex; align-items: center; gap: 4px; height: 48px; margin: 24px 0; }
.wave i { width: 4px; height: 14px; border-radius: 999px; background: var(--red); animation: wave 1.2s ease-in-out infinite; opacity: .88; }
.wave i:nth-child(2n) { animation-delay: .1s; height: 28px; }
.wave i:nth-child(3n) { animation-delay: .2s; height: 38px; }
.wave i:nth-child(4n) { animation-delay: .3s; height: 22px; }
@keyframes wave { 50% { transform: scaleY(.45); opacity: .45; } }
.call-controls { display: grid; grid-template-columns: repeat(4, 1fr); gap: 9px; }
.call-controls button { height: 42px; border: 1px solid var(--line); border-radius: 999px; color: #fff; background: rgba(255,255,255,.04); }
.call-controls .end { background: var(--red); border-color: var(--red); }
.feature-list { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin: 22px 0; }
.feature-list span { position: relative; padding-left: 22px; color: rgba(255,255,255,.78); font-size: 14px; }
.feature-list span::before { content: ""; position: absolute; left: 0; top: 5px; width: 9px; height: 9px; border-radius: 999px; background: var(--red); box-shadow: 0 0 16px rgba(255,70,85,.7); }
.demo-box { margin-top: 24px; padding: 20px; border: 1px solid var(--line); border-radius: 18px; background: rgba(0,0,0,.18); }
.demo-box label { color: rgba(255,255,255,.8); font-size: 13px; font-weight: 740; }
.demo-input { display: grid; grid-template-columns: 1fr auto; gap: 10px; margin: 12px 0 12px; }
.demo-input input { min-height: 48px; width: 100%; border: 1px solid var(--line); border-radius: 12px; color: #fff; background: rgba(255,255,255,.05); padding: 0 14px; outline: none; }
.demo-input input:focus { border-color: rgba(255,70,85,.75); box-shadow: 0 0 0 4px rgba(255,70,85,.11); }
.demo-input button { min-height: 48px; border: 0; border-radius: 12px; padding: 0 18px; color: #fff; background: var(--red); font-weight: 850; cursor: pointer; white-space: nowrap; }
.demo-input button:disabled { opacity: .7; cursor: wait; }
.quick-prompts { display: flex; flex-wrap: wrap; gap: 8px; margin: 0 0 14px; }
.quick-prompts button { border: 1px solid var(--line); border-radius: 999px; padding: 8px 11px; color: rgba(255,255,255,.82); background: rgba(255,255,255,.05); font-size: 12px; font-weight: 760; cursor: pointer; }
.quick-prompts button:hover { border-color: rgba(255,70,85,.55); color: #fff; }
.ai-status { margin: 0 0 8px !important; color: var(--red-2) !important; font-size: 12px !important; font-weight: 850; text-transform: uppercase; letter-spacing: .12em; }
.ai-reply { margin: 0 !important; color: rgba(255,255,255,.82) !important; line-height: 1.55; padding: 14px; border: 1px solid rgba(255,255,255,.08); border-radius: 14px; background: rgba(255,255,255,.035); }
.ai-book-link { display: inline-flex; margin-top: 14px; color: var(--red-2); font-weight: 850; text-decoration: none; }

.process { padding-top: 74px; }
.process-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; margin-top: 38px; }
.process-grid article { padding: 25px; min-height: 206px; border: 1px solid var(--line); border-radius: 20px; background: rgba(255,255,255,.04); }
.process-grid span { color: var(--red-2); font-weight: 900; font-size: 12px; letter-spacing: .12em; }
.process-grid h3 { margin: 18px 0 10px; font-size: 23px; }
.process-grid p { margin: 0; color: var(--muted); line-height: 1.5; }

.contact-section { padding-top: 14px; }
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 42px; padding: 44px; }
.contact-logo { width: 96px; margin-bottom: 18px; filter: drop-shadow(0 18px 35px rgba(255,70,85,.18)); }
.contact-points { display: grid; gap: 10px; margin: 24px 0 28px; color: rgba(255,255,255,.76); }
.contact-points span { padding-left: 19px; position: relative; }
.contact-points span::before { content: ""; position: absolute; left: 0; top: 8px; width: 8px; height: 8px; border-radius: 999px; background: var(--red); }
.lead-form { display: grid; gap: 15px; padding: 26px; border: 1px solid var(--line); border-radius: 22px; background: rgba(0,0,0,.22); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.lead-form label { display: grid; gap: 8px; color: rgba(255,255,255,.76); font-size: 13px; font-weight: 750; }
.lead-form input, .lead-form textarea, .lead-form select { width: 100%; border: 1px solid var(--line); border-radius: 12px; color: #fff; background: rgba(255,255,255,.05); padding: 13px 14px; outline: none; }
.lead-form select { color-scheme: dark; }
.lead-form textarea { resize: vertical; min-height: 126px; }
.lead-form input:focus, .lead-form textarea:focus, .lead-form select:focus { border-color: rgba(255,70,85,.75); box-shadow: 0 0 0 4px rgba(255,70,85,.1); }
.form-submit { width: 100%; border-radius: 13px; }
.form-note { margin: 0; color: var(--muted-2); font-size: 12px; text-align: center; }

.site-footer { position: relative; z-index: 2; padding: 60px 0 20px; border-top: 1px solid var(--line); background: #030405; }
.footer-grid { display: grid; grid-template-columns: 1.25fr .65fr .85fr .9fr .85fr; gap: 34px; }
.footer-brand .brand-icon { width: 50px; height: 50px; }
.site-footer p { color: var(--muted); line-height: 1.55; max-width: 320px; }
.site-footer h4 { margin: 0 0 16px; font-size: 13px; color: rgba(255,255,255,.62); }
.site-footer a { display: block; margin: 10px 0; color: rgba(255,255,255,.62); font-size: 13px; }
.site-footer a:hover { color: #fff; }
.socials { display: flex; gap: 10px; margin-top: 20px; }
.socials a { width: 34px; height: 34px; margin: 0; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 999px; color: #fff; }
.footer-cta { display: inline-flex !important; margin-top: 12px !important; padding: 12px 14px; border: 1px solid var(--line); border-radius: 12px; color: #fff !important; background: rgba(255,255,255,.04); }
.footer-bottom { display: flex; justify-content: space-between; gap: 18px; margin-top: 44px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.08); color: var(--muted-2); font-size: 12px; }
.footer-bottom a { display: inline; margin-left: 16px; font-size: 12px; }

.utility-main { position: relative; z-index: 2; min-height: 100vh; padding: 150px 0 80px; }
.utility-card { width: min(820px, calc(100vw - 44px)); margin: 0 auto; padding: 44px; border: 1px solid var(--line); border-radius: 28px; background: linear-gradient(145deg, rgba(255,255,255,.06), rgba(255,255,255,.025)); box-shadow: var(--shadow); }
.utility-card img { width: 90px; margin-bottom: 18px; }
.utility-card h1 { margin: 0 0 16px; font-size: clamp(42px, 6vw, 70px); line-height: .95; letter-spacing: -.06em; }
.utility-card p, .utility-card li { color: var(--muted); line-height: 1.6; }
.utility-card h2 { margin-top: 32px; }
.utility-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 26px; }

[data-reveal] { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); transition-delay: var(--reveal-delay, 0ms); }
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1120px) {
  .cards-six { grid-template-columns: repeat(3, 1fr); }
  .marketplace-panel { grid-template-columns: 1fr; }
  .case-panel { grid-template-columns: 1fr; }
  .network-map { min-height: 300px; }
  .footer-grid { grid-template-columns: 1.3fr 1fr 1fr; }
}
@media (max-width: 920px) {
  .nav { min-height: 60px; }
  .nav-toggle { display: block; }
  .nav-menu { position: fixed; top: 86px; left: 22px; right: 22px; display: grid; gap: 6px; padding: 16px; border: 1px solid var(--line); border-radius: 20px; background: rgba(4,5,7,.94); backdrop-filter: blur(18px); box-shadow: var(--shadow); transform: translateY(-12px); opacity: 0; pointer-events: none; transition: opacity .2s ease, transform .2s ease; }
  .nav-menu.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav-menu a { padding: 13px 12px; border-radius: 12px; }
  .nav-cta { text-align: center; }
  .hero { padding-top: 122px; }
  .hero-grid { grid-template-columns: 1fr; gap: 28px; }
  .hero-visual { min-height: 430px; }
  .hero-visual img { width: min(450px, 96%); }
  .hero h1 { font-size: clamp(44px, 12vw, 72px); }
  .hero-lede { font-size: 18px; }
  .band-grid { grid-template-columns: repeat(3, 1fr); }
  .ai-panel, .contact-grid { grid-template-columns: 1fr; }
  .phone-demo { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 680px) {
  :root { --shell: min(100vw - 28px, 1180px); }
  .site-header { padding: 8px 0; }
  .brand { min-width: 0; }
  .brand-icon { width: 44px; height: 44px; }
  .brand-icon img { width: 52px; }
  .brand-text strong, .brand-text em { font-size: 13px; }
  .hero { min-height: auto; padding-bottom: 46px; }
  .hero-actions, .utility-actions { display: grid; }
  .hero-badges { grid-template-columns: 1fr; }
  .signal-card { display: none; }
  .section { padding: 64px 0; }
  .cards-six, .marketplace-grid, .process-grid, .form-row, .metrics-row { grid-template-columns: 1fr; }
  .marketplace-panel, .ai-panel, .contact-grid, .case-panel { padding: 22px; border-radius: 22px; }
  .service-card { min-height: auto; }
  .feature-list { grid-template-columns: 1fr; }
  .demo-input { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
  .band-grid { grid-template-columns: 1fr 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}

/* Founder + assessment upgrades */
.founder-section, .assessment-section { position: relative; z-index: 2; }
.founder-panel, .assessment-panel {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 34px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, rgba(255,255,255,.055), rgba(255,255,255,.018));
  box-shadow: var(--shadow);
  padding: clamp(22px, 4vw, 44px);
  overflow: hidden;
}
.founder-photo-wrap { position: relative; min-height: 420px; border-radius: 30px; overflow: hidden; background: rgba(255,255,255,.04); border: 1px solid var(--line); }
.founder-photo { width: 100%; height: 100%; min-height: 420px; object-fit: cover; display: block; filter: saturate(1.02) contrast(1.04); }
.founder-photo-wrap::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(0,0,0,.52)); pointer-events: none; }
.founder-badge { position: absolute; left: 18px; right: 18px; bottom: 18px; z-index: 2; padding: 14px 16px; border: 1px solid rgba(255,255,255,.12); border-radius: 18px; background: rgba(5,7,12,.72); backdrop-filter: blur(16px); color: #fff; font-weight: 850; box-shadow: 0 18px 38px rgba(0,0,0,.28); }
.founder-copy p { color: var(--muted); line-height: 1.75; max-width: 760px; }
.founder-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin: 26px 0; }
.founder-stats div { padding: 18px; border: 1px solid var(--line); border-radius: 18px; background: rgba(255,255,255,.035); }
.founder-stats strong { display: block; color: #fff; font-size: clamp(24px, 3vw, 34px); letter-spacing: -.04em; }
.founder-stats span { display: block; color: var(--muted); font-size: 13px; margin-top: 6px; }
.founder-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.assessment-panel { grid-template-columns: .95fr 1.05fr; align-items: start; }
.assessment-copy p { color: var(--muted); line-height: 1.75; }
.assessment-form { display: grid; gap: 16px; padding: 20px; border: 1px solid var(--line); border-radius: 26px; background: rgba(0,0,0,.22); }
.assessment-form label { display: grid; gap: 8px; color: rgba(255,255,255,.82); font-weight: 750; font-size: 13px; }
.assessment-form input, .assessment-form textarea { width: 100%; border: 1px solid rgba(255,255,255,.12); background: rgba(255,255,255,.045); color: #fff; border-radius: 15px; padding: 14px 14px; outline: none; font: inherit; }
.assessment-form input:focus, .assessment-form textarea:focus { border-color: rgba(255,70,100,.65); box-shadow: 0 0 0 4px rgba(255,70,100,.12); }
.assessment-form textarea { resize: vertical; min-height: 110px; }
.socials a[href*="linkedin"] { text-transform: uppercase; letter-spacing: .04em; }

@media (max-width: 980px) {
  .founder-panel, .assessment-panel { grid-template-columns: 1fr; }
  .founder-photo-wrap, .founder-photo { min-height: 360px; }
  .founder-stats { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .founder-photo-wrap, .founder-photo { min-height: 320px; }
  .founder-actions .btn { width: 100%; justify-content: center; }
  .assessment-form { padding: 16px; }
}
