:root {
  --bg: #050a12;
  --bg-deep: #03070d;
  --surface: #09111c;
  --surface-light: #0e1a29;
  --text: #f5f8fc;
  --muted: #97a5b7;
  --subtle: #65758b;
  --line: rgba(166, 196, 230, 0.17);
  --line-strong: rgba(166, 196, 230, 0.31);
  --blue: #4d86ff;
  --blue-light: #9bbaff;
  --cyan: #8ee9ff;
  --max: 1240px;
  --display: "Space Grotesk", sans-serif;
  --body: "DM Sans", sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; overflow-x: clip; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--body);
  overflow-x: clip;
}

body, button, a { -webkit-font-smoothing: antialiased; }

a { color: inherit; text-decoration: none; }

button { color: inherit; font: inherit; }

p { line-height: 1.65; }

.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;
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 18px;
  left: 50%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(var(--max), calc(100% - 40px));
  min-height: 66px;
  padding: 8px 10px 8px 14px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(5, 10, 18, 0.78);
  box-shadow: 0 20px 80px rgba(0, 0, 0, 0.25);
  transform: translateX(-50%);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: -0.04em;
  white-space: nowrap;
}

.brand-mark {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid rgba(142, 233, 255, 0.35);
  border-radius: 11px;
  background: linear-gradient(145deg, #e9fbff, #6b9eff);
  color: #07101b;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: -0.08em;
  box-shadow: 0 0 28px rgba(77, 134, 255, 0.3);
}

.brand-copy b { color: var(--cyan); font-weight: 600; }

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(15px, 2.1vw, 30px);
  margin-left: auto;
  margin-right: clamp(18px, 2.4vw, 34px);
  color: var(--muted);
  font-size: 11px;
}

.desktop-nav a, .store-link, .header-cta, .text-link { transition: color 180ms ease, border-color 180ms ease, background 180ms ease, transform 180ms ease; }
.desktop-nav a:hover, .store-link:hover, .text-link:hover { color: var(--text); }

.header-actions { display: flex; align-items: center; gap: 10px; }

.store-link {
  color: var(--cyan);
  font-size: 11px;
  font-weight: 600;
  white-space: nowrap;
}

.store-link span { margin-left: 3px; }

.header-cta, .button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.header-cta {
  min-height: 42px;
  padding: 0 17px;
  background: var(--text);
  color: #07101a;
}

.header-cta:hover, .button:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(103, 171, 255, 0.25); }

.menu-toggle { display: none; border: 0; background: transparent; cursor: pointer; }

.mobile-menu { display: none; }

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.93fr) minmax(420px, 1.07fr);
  grid-template-rows: 1fr auto;
  gap: 40px;
  min-height: max(760px, 100svh);
  padding: 154px max(5vw, 28px) 38px;
  isolation: isolate;
  overflow: hidden;
  background: var(--bg-deep);
}

.hero::before {
  position: absolute;
  z-index: -2;
  inset: 0;
  background: radial-gradient(circle at 82% 38%, rgba(77, 134, 255, 0.14), transparent 28%), radial-gradient(circle at 11% 80%, rgba(142, 233, 255, 0.06), transparent 26%);
  content: "";
}

.hero-grid {
  position: absolute;
  z-index: -1;
  inset: 0;
  opacity: 0.55;
  background-image: linear-gradient(rgba(135, 170, 217, 0.06) 1px, transparent 1px), linear-gradient(90deg, rgba(135, 170, 217, 0.06) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, black, transparent 86%);
}

.hero-copy { grid-column: 1; grid-row: 1; align-self: center; max-width: 660px; padding-left: max(0px, calc((100vw - var(--max)) / 2)); }

.eyebrow {
  margin: 0 0 18px;
  color: var(--blue-light);
  font-family: var(--display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow span { color: var(--cyan); }

h1, h2, h3 { font-family: var(--display); font-weight: 500; }

h1, h2, h3, p { margin-top: 0; }

.hero h1 {
  max-width: 720px;
  margin-bottom: 26px;
  font-size: clamp(52px, 7vw, 104px);
  line-height: 0.94;
  letter-spacing: -0.075em;
}

.type-line { position: relative; display: inline-block; color: var(--cyan); white-space: nowrap; }
.type-line::after { display: inline-block; width: 0.055em; height: 0.82em; margin-left: 0.1em; background: var(--cyan); content: ""; vertical-align: -0.05em; animation: cursor-blink 1s steps(1, end) infinite; }

.hero-lead { max-width: 560px; margin-bottom: 0; color: var(--muted); font-size: clamp(16px, 1.35vw, 19px); }

.hero-actions, .store-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 23px; margin-top: 32px; }

.button { min-height: 50px; padding: 0 20px; }

.button-primary { background: var(--text); color: #07101a; }

.button-primary span { color: var(--blue); font-size: 15px; }

.text-link { display: inline-flex; align-items: center; gap: 10px; width: fit-content; padding-bottom: 6px; border-bottom: 1px solid rgba(155, 186, 255, 0.45); color: #d7e3f3; font-size: 11px; font-weight: 600; }
.text-link:hover { border-color: var(--cyan); transform: translateX(2px); }

.hero-visual { grid-column: 2; grid-row: 1; position: relative; align-self: center; justify-self: center; width: min(100%, 650px); min-height: 560px; }

.visual-frame {
  position: absolute;
  right: 7%;
  bottom: 0;
  width: min(76%, 470px);
  height: min(600px, 68vh);
  min-height: 460px;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 30px 30px 10px 10px;
  background: #0d1b2a;
  box-shadow: -30px 45px 100px rgba(0, 0, 0, 0.5), 0 0 80px rgba(77, 134, 255, 0.12);
}

.visual-frame img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center top; filter: brightness(0.73) contrast(1.08) saturate(0.82); }
.visual-glow { position: absolute; z-index: 1; width: 420px; height: 420px; top: 18%; left: -20%; border-radius: 50%; background: radial-gradient(circle, rgba(142, 233, 255, 0.2), transparent 68%); mix-blend-mode: screen; }
.visual-shade { position: absolute; z-index: 2; inset: 0; background: linear-gradient(to bottom, rgba(2, 7, 13, 0.06), rgba(4, 9, 16, 0.22) 40%, rgba(4, 9, 16, 0.95) 100%), linear-gradient(100deg, rgba(77, 134, 255, 0.16), transparent 65%); }

.visual-caption { position: absolute; z-index: 3; right: 28px; bottom: 28px; left: 28px; padding-top: 15px; border-top: 1px solid rgba(222, 239, 255, 0.28); }
.visual-caption span, .visual-caption strong { display: block; }
.visual-caption span { margin-bottom: 7px; color: var(--cyan); font-size: 9px; letter-spacing: 0.12em; text-transform: uppercase; }
.visual-caption strong { font-family: var(--display); font-size: 21px; letter-spacing: -0.05em; }

.visual-orbit { position: absolute; right: 12%; bottom: 13%; width: 440px; height: 190px; border: 1px solid rgba(142, 233, 255, 0.2); border-radius: 50%; transform: rotate(-16deg); }
.orbit-two { right: 1%; bottom: 16%; width: 510px; height: 225px; border-color: rgba(77, 134, 255, 0.28); transform: rotate(20deg); }

.visual-tag { position: absolute; z-index: 4; display: flex; align-items: center; gap: 10px; padding: 12px 14px; border: 1px solid var(--line-strong); border-radius: 12px; background: rgba(8, 17, 29, 0.82); color: #d9e7f6; font-size: 10px; backdrop-filter: blur(12px); }
.visual-tag b { color: var(--cyan); font-family: var(--display); font-size: 9px; }
.tag-one { top: 17%; left: 1%; }
.tag-two { top: 42%; right: 0; }
.tag-three { bottom: 14%; left: 10%; }

.proof-bar { grid-column: 1 / -1; grid-row: 2; display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; padding-top: 19px; border-top: 1px solid var(--line); }
.proof-bar div { display: flex; flex-direction: column; gap: 4px; }
.proof-bar strong { font-family: var(--display); font-size: 15px; font-weight: 500; letter-spacing: -0.04em; }
.proof-bar span { color: var(--subtle); font-size: 10px; }

.ticker { overflow: hidden; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: #07101b; }
.ticker-track { display: flex; align-items: center; gap: 22px; width: max-content; padding: 15px 0; animation: ticker 34s linear infinite; color: #afc0d5; font-family: var(--display); font-size: 12px; letter-spacing: 0.03em; }
.ticker-track i { color: var(--blue); font-style: normal; }

.section-shell { max-width: var(--max); margin: 0 auto; padding: clamp(100px, 12vw, 165px) max(28px, 5vw); }

.statement { display: grid; grid-template-columns: 190px 1fr; gap: 30px; }
.section-index { padding-top: 5px; color: var(--cyan); font-family: var(--display); font-size: 12px; }
.section-index span { display: block; margin-top: 9px; color: var(--subtle); font-family: var(--body); font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase; }
.statement h2, .section-heading h2, .process h2, .store-copy h2, .founder h2, .contact h2 { max-width: 850px; margin-bottom: 0; font-size: clamp(42px, 5.9vw, 80px); line-height: 0.99; letter-spacing: -0.075em; }
.statement-bottom { display: flex; align-items: end; justify-content: space-between; gap: 30px; max-width: 760px; margin-top: 35px; }
.statement-bottom p { max-width: 530px; margin: 0; color: var(--muted); font-size: 15px; }

.services { max-width: none; background: #07111e; }
.section-heading { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(240px, 0.65fr); align-items: end; gap: 70px; max-width: var(--max); margin: 0 auto 70px; }
.section-heading > p { max-width: 360px; margin: 0 0 4px; color: var(--muted); font-size: 14px; }
.service-list { max-width: var(--max); margin: auto; }
.service-row { position: relative; display: grid; grid-template-columns: 58px minmax(220px, 0.9fr) minmax(280px, 1.15fr) 44px; gap: 24px; align-items: start; padding: 30px 0 34px; border-top: 1px solid var(--line); transition: border-color 240ms ease, padding 240ms ease; }
.service-row:last-child { border-bottom: 1px solid var(--line); }
.service-row:hover { padding-right: 10px; padding-left: 10px; border-color: rgba(142, 233, 255, 0.5); }
.service-number { color: var(--cyan); font-family: var(--display); font-size: 11px; }
.service-title span { display: block; margin-bottom: 13px; color: var(--subtle); font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; }
.service-title h3 { margin: 0; font-size: clamp(24px, 3vw, 42px); line-height: 1; letter-spacing: -0.06em; }
.service-detail p { max-width: 430px; margin: 0 0 16px; color: var(--muted); font-size: 13px; }
.service-detail ul { display: flex; flex-wrap: wrap; gap: 8px 18px; margin: 0; padding: 0; color: #c9d8ea; font-size: 10px; list-style: none; }
.service-detail li::before { margin-right: 6px; color: var(--blue-light); content: "/"; }
.row-arrow { display: grid; width: 38px; height: 38px; place-items: center; border: 1px solid var(--line-strong); border-radius: 50%; color: var(--cyan); font-size: 15px; transition: background 180ms ease, color 180ms ease, transform 180ms ease; }
.row-arrow:hover { background: var(--cyan); color: #07101a; transform: rotate(45deg); }

.service-carousel { max-width: var(--max); margin: auto; }
.service-track { position: relative; min-height: 425px; }
.service-card { position: relative; display: none; min-height: 425px; padding: clamp(28px, 5vw, 55px); overflow: hidden; border: 1px solid var(--line-strong); border-radius: 23px; background: radial-gradient(circle at 85% 15%, rgba(77, 134, 255, .22), transparent 30%), linear-gradient(135deg, #0c1b2d, #07101c 58%, #091522); }
.service-card::before { position: absolute; right: -75px; bottom: -150px; width: 430px; height: 430px; border: 1px solid rgba(142, 233, 255, .22); border-radius: 50%; content: ""; }
.service-card::after { position: absolute; right: 70px; bottom: -100px; width: 280px; height: 280px; border: 1px solid rgba(77, 134, 255, .22); border-radius: 50%; content: ""; }
.service-card.is-active { display: flex; flex-direction: column; animation: case-in 500ms cubic-bezier(.2,.8,.2,1) both; }
.service-card > * { position: relative; z-index: 1; }
.service-card-top { display: flex; justify-content: space-between; color: var(--cyan); font-family: var(--display); font-size: 11px; letter-spacing: .1em; text-transform: uppercase; }
.service-card-top b { display: grid; width: 42px; height: 42px; place-items: center; border: 1px solid var(--line-strong); border-radius: 50%; font-size: 17px; font-weight: 400; }
.service-card h3 { max-width: 620px; margin: 76px 0 16px; font-size: clamp(40px, 6vw, 76px); line-height: .9; letter-spacing: -.08em; }
.service-card > p { max-width: 570px; margin: 0; color: var(--muted); font-size: 15px; }
.service-card ul { display: flex; flex-wrap: wrap; gap: 9px 22px; margin: auto 0 0; padding: 22px 0 0; list-style: none; color: #ccdeef; font-size: 11px; }
.service-card li::before { margin-right: 6px; color: var(--cyan); content: "/"; }
.card-link { position: absolute; right: clamp(28px, 5vw, 55px); bottom: clamp(29px, 5vw, 55px); display: inline-flex; align-items: center; gap: 9px; color: var(--text); font-size: 11px; font-weight: 600; }
.card-link span { color: var(--cyan); font-size: 15px; }
.service-carousel-controls { display: grid; grid-template-columns: 75px 1fr 90px; gap: 25px; align-items: center; padding-top: 23px; }
.service-counter { color: var(--subtle); font-family: var(--display); font-size: 12px; }
.service-counter strong { margin-right: 5px; color: var(--cyan); font-size: 18px; font-weight: 500; }
.service-dots { display: flex; justify-content: center; gap: 8px; }
.service-dots button { width: 42px; height: 3px; padding: 0; border: 0; background: rgba(166, 196, 230, .22); cursor: pointer; transition: background 180ms ease, width 180ms ease; }
.service-dots button.is-active { width: 68px; background: var(--cyan); }
.service-arrows { display: flex; justify-content: end; gap: 8px; }
.service-arrows button { display: grid; width: 38px; height: 38px; place-items: center; border: 1px solid var(--line-strong); border-radius: 50%; background: transparent; color: var(--cyan); cursor: pointer; transition: background 180ms ease, color 180ms ease; }
.service-arrows button:hover { background: var(--cyan); color: var(--bg-deep); }

.process { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(50px, 10vw, 150px); }
.process-intro { display: grid; grid-template-columns: 100px 1fr; gap: 22px; align-content: start; }
.process-intro > div:last-child > p:last-child { max-width: 360px; margin: 28px 0 0; color: var(--muted); font-size: 14px; }
.process-list { margin: 0; padding: 0; list-style: none; }
.process-item { display: grid; grid-template-columns: 45px 1fr 28px; gap: 20px; align-items: start; padding: 20px 0; border-top: 1px solid var(--line); }
.process-item:last-child { border-bottom: 1px solid var(--line); }
.process-item > span { color: var(--blue-light); font-family: var(--display); font-size: 11px; }
.process-item h3 { margin: -5px 0 6px; font-size: 29px; letter-spacing: -0.06em; }
.process-item p { margin: 0; color: var(--muted); font-size: 13px; }
.process-item > b { color: var(--cyan); font-size: 15px; font-weight: 400; }

.portfolio { max-width: none; background: var(--bg-deep); }
.portfolio .section-heading { margin-bottom: 60px; }
.case-viewer { max-width: var(--max); margin: auto; }
.case-stage { position: relative; min-height: 510px; }
.case-slide { display: none; grid-template-columns: minmax(300px, 0.86fr) minmax(0, 1.14fr); min-height: 510px; overflow: hidden; border: 1px solid var(--line); border-radius: 22px; background: var(--surface); }
.case-slide.is-active { display: grid; animation: case-in 500ms cubic-bezier(.2,.8,.2,1) both; }
.case-copy { display: flex; flex-direction: column; align-items: flex-start; justify-content: end; padding: clamp(28px, 5vw, 62px); }
.case-copy > span { margin-bottom: auto; color: var(--cyan); font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; }
.case-copy h3 { max-width: 470px; margin: 80px 0 15px; font-size: clamp(36px, 5vw, 68px); line-height: 0.95; letter-spacing: -0.08em; }
.case-copy p { max-width: 430px; margin-bottom: 27px; color: var(--muted); font-size: 14px; }
.case-art { position: relative; display: grid; min-height: 420px; place-items: center; overflow: hidden; border-left: 1px solid var(--line); isolation: isolate; }
.case-art::before { position: absolute; z-index: -1; width: 420px; height: 420px; border: 1px solid rgba(142, 233, 255, 0.26); border-radius: 50%; content: ""; }
.case-art::after { position: absolute; z-index: -1; width: 680px; height: 680px; border: 1px solid rgba(77, 134, 255, 0.18); border-radius: 50%; content: ""; }
.case-art-jarvis { background: radial-gradient(circle at 50% 50%, #13345b, #0a1524 45%, #050b13 85%); }
.case-art-jejuei { background: radial-gradient(circle at 45% 35%, #20446e, #0a1622 48%, #050b13 85%); }
.case-art-claudia { background: radial-gradient(circle at 60% 42%, #1b356c, #091426 50%, #050b13 85%); }
.case-art-falkenburg { background: radial-gradient(circle at 42% 60%, #173d4d, #091622 50%, #050b13 85%); }
.terminal-card, .app-card, .campaign-card, .logistics-card { position: relative; z-index: 2; display: flex; flex-direction: column; justify-content: center; width: min(65%, 340px); min-height: 210px; padding: 27px; border: 1px solid rgba(183, 221, 255, 0.36); border-radius: 15px; background: rgba(5, 13, 23, 0.75); box-shadow: 25px 30px 80px rgba(0,0,0,.4); transform: rotate(-5deg); backdrop-filter: blur(10px); }
.terminal-card span, .app-card span, .campaign-card small, .logistics-card span { color: var(--cyan); font-size: 9px; letter-spacing: 0.13em; text-transform: uppercase; }
.terminal-card strong { margin: 30px 0 20px; color: #eff7ff; font-family: var(--display); font-size: 82px; line-height: 0.8; letter-spacing: -0.1em; }
.terminal-card small, .app-card small, .campaign-card span, .logistics-card small { color: var(--subtle); font-size: 9px; letter-spacing: 0.12em; }
.case-signal { position: absolute; width: 180px; height: 180px; border: 1px solid var(--cyan); border-radius: 50%; opacity: .36; animation: pulse 3s ease-in-out infinite; }
.case-art em { position: absolute; right: 30px; bottom: 28px; color: var(--blue-light); font-size: 10px; font-style: normal; }
.app-card { min-height: 280px; background: linear-gradient(145deg, rgba(33, 67, 103, .9), rgba(9, 22, 35, .9)); transform: rotate(4deg); }
.app-card strong { margin: 50px 0 30px; font-family: var(--display); font-size: 35px; line-height: 0.93; letter-spacing: -0.07em; }
.case-star { position: absolute; top: 22%; right: 24%; color: var(--cyan); font-size: 35px; animation: float 4s ease-in-out infinite; }
.campaign-card { min-height: 240px; transform: rotate(-3deg); }
.campaign-card strong { margin: 16px 0 5px; color: #d9e8ff; font-family: var(--display); font-size: 105px; line-height: .75; letter-spacing: -.13em; }
.case-line, .route-route { position: absolute; width: 70%; height: 1px; background: linear-gradient(90deg, transparent, var(--cyan), transparent); transform: rotate(-32deg); opacity: .6; }
.case-line::after, .route-route::after { position: absolute; right: 15%; top: -4px; width: 9px; height: 9px; border: 1px solid var(--cyan); border-radius: 50%; background: var(--bg); content: ""; }
.logistics-card { min-height: 230px; transform: rotate(3deg); }
.logistics-card strong { margin: 28px 0; font-family: var(--display); font-size: 36px; line-height: .9; letter-spacing: -.08em; }
.route-route { transform: rotate(25deg); }

.case-controls { display: grid; grid-template-columns: 75px 1fr 90px; gap: 25px; align-items: center; padding-top: 25px; }
.case-counter { color: var(--subtle); font-family: var(--display); font-size: 12px; }
.case-counter strong { margin-right: 5px; color: var(--cyan); font-size: 18px; font-weight: 500; }
.case-tabs { display: flex; justify-content: center; gap: 8px; }
.case-tab { display: flex; align-items: center; gap: 8px; padding: 9px 10px; border: 0; border-bottom: 1px solid transparent; background: transparent; color: var(--subtle); cursor: pointer; font-size: 10px; text-align: left; }
.case-tab span { color: var(--subtle); }
.case-tab.is-active { border-color: var(--cyan); color: var(--text); }
.case-tab.is-active span { color: var(--cyan); }
.case-arrows { display: flex; justify-content: end; gap: 8px; }
.case-arrows button { display: grid; width: 38px; height: 38px; place-items: center; border: 1px solid var(--line-strong); border-radius: 50%; background: transparent; color: var(--cyan); cursor: pointer; transition: background 180ms ease, color 180ms ease; }
.case-arrows button:hover { background: var(--cyan); color: var(--bg-deep); }

.store-callout { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(45px, 9vw, 125px); align-items: center; max-width: none; background: #071522; }
.store-art { display: grid; min-height: 430px; place-items: center; overflow: hidden; border: 1px solid var(--line); border-radius: 24px; background: radial-gradient(circle at 50% 50%, rgba(77, 134, 255, 0.2), transparent 55%), #08111d; }
.store-window { position: relative; width: min(70%, 400px); min-height: 290px; padding: 30px; border: 1px solid rgba(142, 233, 255, 0.3); border-radius: 15px; background: linear-gradient(145deg, rgba(15, 36, 58, .94), rgba(5, 14, 25, .94)); box-shadow: 0 35px 90px rgba(0,0,0,.4); transform: rotate(-4deg); }
.store-window::before { position: absolute; inset: 11px; border: 1px solid rgba(166, 196, 230, .1); border-radius: 9px; content: ""; }
.window-label { position: relative; z-index: 1; color: var(--cyan); font-size: 9px; letter-spacing: .14em; }
.store-window strong { position: relative; z-index: 1; display: block; margin-top: 65px; font-family: var(--display); font-size: 37px; line-height: .9; letter-spacing: -.08em; }
.store-pills { position: absolute; right: 24px; bottom: 25px; left: 24px; display: flex; gap: 6px; }
.store-pills i { padding: 8px; border: 1px solid var(--line-strong); border-radius: 5px; color: var(--blue-light); font-size: 8px; font-style: normal; }
.store-copy > p:not(.eyebrow) { max-width: 470px; margin: 28px 0 0; color: var(--muted); font-size: 15px; }

.founder { display: grid; grid-template-columns: 0.82fr 1.18fr; gap: clamp(50px, 9vw, 140px); align-items: center; }
.founder-visual { position: relative; min-height: 570px; overflow: hidden; border: 1px solid var(--line); border-radius: 22px; background: #0b1420; }
.founder-visual img { width: 100%; height: 100%; min-height: 570px; object-fit: cover; object-position: center top; filter: brightness(.75) saturate(.75) contrast(1.07); }
.founder-visual::after { position: absolute; inset: 0; background: linear-gradient(to bottom, transparent 45%, rgba(3, 9, 16, .88)); content: ""; }
.founder-stamp { position: absolute; z-index: 1; right: 25px; bottom: 25px; color: var(--cyan); font-family: var(--display); font-size: 42px; line-height: .78; letter-spacing: -.1em; }
.founder-stamp span { display: block; margin-top: 13px; color: #d3e0ee; font-family: var(--body); font-size: 9px; line-height: 1.25; letter-spacing: .12em; text-transform: uppercase; }
.founder-copy > p:not(.eyebrow) { max-width: 570px; color: var(--muted); font-size: 14px; }
.founder-copy .founder-lead { margin: 28px 0 24px; color: var(--text); font-family: var(--display); font-size: 21px; line-height: 1.25; letter-spacing: -.045em; }
.founder-copy .text-link { margin-top: 18px; }
.founder-meta { display: flex; flex-wrap: wrap; gap: 10px 18px; margin: 2px 0 27px; color: var(--cyan); font-family: var(--display); font-size: 11px; }
.founder-meta b { color: var(--muted); font-weight: 500; }
.founder-meta i { color: var(--subtle); font-family: var(--body); font-style: normal; }
.founder-meta em { color: var(--blue-light); font-style: normal; }
.founder-stats { display: grid; grid-template-columns: repeat(3, 1fr); max-width: 610px; margin: 0 0 29px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.founder-stats div { display: flex; flex-direction: column; gap: 6px; padding: 17px 15px 17px 0; border-right: 1px solid var(--line); }
.founder-stats div + div { padding-left: 15px; }
.founder-stats div:last-child { border-right: 0; }
.founder-stats strong { color: var(--text); font-family: var(--display); font-size: clamp(18px, 2.5vw, 28px); font-weight: 500; letter-spacing: -.06em; }
.founder-stats span { color: var(--subtle); font-size: 9px; }
.founder-stack { max-width: 610px; margin-top: 31px; padding-top: 21px; border-top: 1px solid var(--line); }
.founder-stack h3 { margin: 0 0 15px; color: var(--blue-light); font-size: 11px; letter-spacing: .1em; text-transform: uppercase; }
.stack-list { display: flex; flex-wrap: wrap; gap: 8px; }
.stack-list span { padding: 8px 10px; border: 1px solid var(--line); border-radius: 5px; color: #cedbea; font-size: 10px; }

.contact { position: relative; display: grid; grid-template-columns: minmax(0, 1fr) minmax(250px, .5fr); gap: 40px; align-items: end; overflow: hidden; background: #040912; }
.contact::before { position: absolute; z-index: 0; top: 50%; left: 50%; width: 680px; height: 680px; border: 1px solid rgba(77, 134, 255, .2); border-radius: 50%; content: ""; transform: translate(-50%, -50%); }
.contact::after { position: absolute; z-index: 0; top: 50%; left: 50%; width: 420px; height: 420px; border: 1px solid rgba(142, 233, 255, .14); border-radius: 50%; content: ""; transform: translate(-50%, -50%); }
.contact-copy, .contact-actions { position: relative; z-index: 1; }
.contact h2 { max-width: 850px; }
.contact-copy > p:not(.eyebrow) { max-width: 480px; margin: 30px 0 0; color: var(--muted); font-size: 15px; }
.contact-actions { display: flex; flex-direction: column; align-items: flex-start; gap: 23px; padding-bottom: 6px; }
.contact-email { padding-bottom: 6px; border-bottom: 1px solid var(--line-strong); color: var(--cyan); font-size: 12px; }

.site-footer { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 50px; padding: 54px max(28px, 5vw) 24px; border-top: 1px solid var(--line); background: #03070d; }
.footer-brand p { max-width: 290px; margin: 19px 0 0; color: var(--subtle); font-size: 11px; }
.footer-column { display: flex; flex-direction: column; align-items: flex-start; gap: 11px; font-size: 11px; }
.footer-column span { margin-bottom: 5px; color: var(--blue-light); font-family: var(--display); font-size: 10px; letter-spacing: .08em; text-transform: uppercase; }
.footer-column a { color: var(--muted); }
.footer-column a:hover { color: var(--text); }
.footer-bottom { grid-column: 1 / -1; display: flex; justify-content: space-between; gap: 20px; padding-top: 24px; border-top: 1px solid var(--line); color: var(--subtle); font-size: 10px; }

.reveal { opacity: 0; transform: translateY(25px); transition: opacity 750ms cubic-bezier(.2,.7,.2,1), transform 750ms cubic-bezier(.2,.7,.2,1); }
.reveal.visible { opacity: 1; transform: none; }

@keyframes ticker { to { transform: translateX(-50%); } }
@keyframes case-in { from { opacity: 0; transform: translateY(15px); } to { opacity: 1; transform: none; } }
@keyframes pulse { 50% { opacity: .18; transform: scale(1.08); } }
@keyframes float { 50% { transform: translateY(-10px); } }
@keyframes cursor-blink { 50% { opacity: 0; } }

@media (max-width: 1050px) {
  .desktop-nav { gap: 14px; margin-right: 16px; }
  .desktop-nav a:nth-child(5) { display: none; }
  .header-cta { padding: 0 13px; }
  .hero { grid-template-columns: minmax(0, .95fr) minmax(360px, 1.05fr); }
  .hero h1 { font-size: clamp(49px, 6.6vw, 80px); }
  .statement { grid-template-columns: 120px 1fr; }
  .section-heading { gap: 40px; }
}

@media (max-width: 800px) {
  .site-header { top: 10px; width: calc(100% - 22px); }
  .desktop-nav, .store-link { display: none; }
  .menu-toggle { display: flex; flex-direction: column; gap: 5px; width: 40px; height: 40px; align-items: center; justify-content: center; }
  .menu-toggle span:not(.sr-only) { display: block; width: 20px; height: 1px; background: var(--text); }
  .mobile-menu { position: absolute; top: calc(100% + 9px); right: 0; left: 0; display: flex; flex-direction: column; gap: 0; padding: 12px; border: 1px solid var(--line); border-radius: 16px; background: rgba(5, 10, 18, .96); box-shadow: 0 20px 70px rgba(0,0,0,.38); }
  .mobile-menu[hidden] { display: none; }
  .mobile-menu a { padding: 14px 12px; border-bottom: 1px solid var(--line); color: var(--muted); font-size: 13px; }
  .mobile-menu a:last-child { border-bottom: 0; }
  .mobile-menu a:hover { color: var(--text); }
  .hero { grid-template-columns: 1fr; grid-template-rows: auto auto auto; min-height: auto; padding-top: 145px; }
  .hero-copy { max-width: 680px; padding-left: 0; }
  .hero h1 { max-width: 650px; font-size: clamp(52px, 11vw, 84px); }
  .hero-visual { width: min(100%, 590px); min-height: 560px; }
  .proof-bar { grid-row: 3; }
  .statement, .process, .founder, .store-callout, .contact { grid-template-columns: 1fr; }
  .section-shell { padding: 100px max(22px, 5vw); }
  .statement { gap: 18px; }
  .section-index { padding-top: 0; }
  .statement-bottom { align-items: start; flex-direction: column; }
  .section-heading { grid-template-columns: 1fr; gap: 20px; margin-bottom: 45px; }
  .service-track, .service-card { min-height: 430px; }
  .service-card h3 { margin-top: 65px; }
  .service-card ul { gap: 8px 16px; }
  .card-link { position: static; margin-top: 22px; }
  .service-carousel-controls { grid-template-columns: 60px 1fr 82px; gap: 12px; }
  .service-dots { justify-content: start; overflow: hidden; }
  .service-dots button { flex: 0 0 28px; }
  .service-dots button.is-active { flex-basis: 52px; }
  .service-row { grid-template-columns: 40px 1fr 40px; gap: 13px; }
  .service-detail { grid-column: 2 / -1; }
  .row-arrow { grid-column: 3; grid-row: 1; }
  .process { gap: 60px; }
  .case-slide { grid-template-columns: 1fr; }
  .case-copy { min-height: 350px; }
  .case-copy h3 { margin-top: 60px; }
  .case-art { min-height: 390px; border-top: 1px solid var(--line); border-left: 0; }
  .case-controls { grid-template-columns: 60px 1fr 82px; gap: 12px; }
  .case-tabs { justify-content: start; overflow-x: auto; }
  .case-tab { min-width: max-content; }
  .store-art { min-height: 390px; }
  .founder-visual, .founder-visual img { min-height: 540px; }
  .contact-actions { align-items: start; }
  .site-footer { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 500px) {
  .site-header { padding-left: 9px; }
  .brand { font-size: 12px; }
  .brand-mark { width: 34px; height: 34px; }
  .header-cta { display: none; }
  .hero { padding-right: 20px; padding-left: 20px; }
  .hero h1 { font-size: 51px; }
  .hero-lead { font-size: 15px; }
  .hero-visual { min-height: 420px; }
  .visual-frame { right: 3%; width: 78%; height: 420px; min-height: 0; border-radius: 23px 23px 8px 8px; }
  .visual-orbit { right: 7%; bottom: 12%; width: 340px; height: 145px; }
  .orbit-two { width: 385px; height: 170px; }
  .visual-tag { padding: 9px 10px; font-size: 9px; }
  .tag-one { top: 12%; left: 0; }
  .tag-two { top: 38%; right: 0; }
  .tag-three { bottom: 7%; left: 5%; }
  .proof-bar { grid-template-columns: 1fr 1fr; gap: 20px 14px; }
  .proof-bar strong { font-size: 13px; }
  .proof-bar span { font-size: 9px; }
  .section-shell { padding-top: 82px; padding-bottom: 82px; }
  .statement h2, .section-heading h2, .process h2, .store-copy h2, .founder h2, .contact h2 { font-size: 43px; }
  .service-row { padding: 24px 0 27px; }
  .service-title h3 { font-size: 26px; }
  .service-detail p { font-size: 12px; }
  .service-detail ul { display: block; line-height: 1.8; }
  .service-detail li { display: inline; margin-right: 10px; }
  .service-track, .service-card { min-height: 445px; }
  .service-card { padding: 27px; }
  .service-card h3 { margin-top: 60px; font-size: 47px; }
  .service-card > p { font-size: 13px; }
  .service-card ul { display: block; line-height: 1.8; }
  .service-card li { display: inline; margin-right: 10px; }
  .service-carousel-controls { grid-template-columns: 1fr auto; }
  .service-dots { grid-column: 1 / -1; grid-row: 1; justify-content: start; }
  .service-counter { grid-column: 1; grid-row: 2; }
  .service-arrows { grid-column: 2; grid-row: 2; }
  .process-intro { display: block; }
  .process-intro .section-index { margin-bottom: 35px; }
  .process-item h3 { font-size: 25px; }
  .case-copy { min-height: 350px; padding: 27px; }
  .case-copy h3 { font-size: 43px; }
  .case-art { min-height: 330px; }
  .terminal-card, .app-card, .campaign-card, .logistics-card { width: 72%; }
  .terminal-card strong { font-size: 62px; }
  .case-controls { grid-template-columns: 1fr auto; }
  .case-tabs { grid-column: 1 / -1; grid-row: 1; justify-content: start; }
  .case-counter { grid-column: 1; grid-row: 2; }
  .case-arrows { grid-column: 2; grid-row: 2; }
  .store-window { width: 82%; }
  .store-window strong { font-size: 31px; }
  .founder-visual, .founder-visual img { min-height: 430px; }
  .founder-stats strong { font-size: 17px; }
  .founder-stats span { font-size: 8px; }
  .site-footer { grid-template-columns: 1fr; gap: 33px; }
  .footer-column { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
}

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

/* Fan portfolio, partners and editorial preview */
.section-heading-side { max-width: 390px; margin-bottom: 4px; }
.section-heading-side > p { margin: 0; color: var(--muted); font-size: 14px; }
.interaction-hint { display: block; margin-top: 17px; color: var(--blue-light); font-size: 10px; letter-spacing: .03em; }

.case-fan-stage { min-height: 640px; overflow: hidden; padding-top: 34px; }
.case-fan-stage .case-slide { position: absolute; top: 34px; left: 50%; display: grid; grid-template-columns: 1fr; grid-template-rows: 278px 1fr; width: min(430px, 34vw); min-height: 548px; border-color: rgba(175, 211, 245, .22); background: #091421; box-shadow: 0 34px 85px rgba(0, 0, 0, .3); transform-origin: center bottom; transition: transform 560ms cubic-bezier(.2, .8, .2, 1), opacity 420ms ease, box-shadow 420ms ease; }
.case-fan-stage .case-slide.is-active { display: grid; animation: none; }
.case-fan-stage .case-slide[data-fan-position="center"] { z-index: 5; opacity: 1; transform: translateX(-50%) rotate(0deg) scale(1); box-shadow: 0 38px 100px rgba(0, 0, 0, .46), 0 0 70px rgba(77, 134, 255, .12); }
.case-fan-stage .case-slide[data-fan-position="left"] { z-index: 3; opacity: .84; transform: translateX(-116%) rotate(-8deg) scale(.94); }
.case-fan-stage .case-slide[data-fan-position="right"] { z-index: 3; opacity: .84; transform: translateX(16%) rotate(8deg) scale(.94); }
.case-fan-stage .case-slide[data-fan-position="far-left"] { z-index: 1; opacity: .48; transform: translateX(-166%) rotate(-14deg) scale(.84); }
.case-fan-stage .case-slide[data-fan-position="far-right"] { z-index: 1; opacity: .48; transform: translateX(66%) rotate(14deg) scale(.84); }
.case-fan-stage .case-art { min-height: 278px; border-left: 0; border-bottom: 1px solid var(--line); }
.case-fan-stage .case-art::before { z-index: 2; width: 65%; height: 145%; border-color: rgba(142, 233, 255, .22); }
.case-fan-stage .case-art::after { z-index: 1; inset: 0; width: auto; height: auto; border: 0; border-radius: 0; background: linear-gradient(to bottom, rgba(4, 10, 17, .02), rgba(4, 10, 17, .64)); }
.case-cover { position: absolute; z-index: 0; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center top; filter: brightness(.78) contrast(1.08) saturate(.84); transition: transform 700ms cubic-bezier(.2, .8, .2, 1), filter 500ms ease; }
.case-fan-stage .case-slide[data-fan-position="center"] .case-cover { filter: brightness(.88) contrast(1.06) saturate(.92); transform: scale(1.03); }
.case-art-label { position: absolute; z-index: 3; right: 18px; bottom: 16px; color: #e4f3ff; font-size: 9px; letter-spacing: .1em; text-transform: uppercase; }
.case-fan-stage .case-copy { min-height: 270px; padding: 23px 25px 25px; justify-content: flex-start; }
.case-fan-stage .case-copy > span { margin-bottom: 0; }
.case-fan-stage .case-copy h3 { margin: 34px 0 12px; font-size: clamp(31px, 3.2vw, 48px); }
.case-fan-stage .case-copy p { margin-bottom: 22px; font-size: 13px; }
.case-button { min-height: 40px; padding: 0 15px; font-size: 10px; }
.case-button span { color: var(--blue); font-size: 14px; }
.case-fan-viewer .case-controls { position: relative; z-index: 7; }

.clients-block { display: grid; grid-template-columns: minmax(210px, .5fr) minmax(0, 1.5fr); gap: 45px; margin: 72px auto 0; padding-top: 24px; border-top: 1px solid var(--line); max-width: var(--max); }
.clients-heading h3 { max-width: 240px; margin: 0; font-family: var(--display); font-size: clamp(26px, 3vw, 39px); line-height: .96; letter-spacing: -.07em; }
.client-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0 12px; }
.client-grid > span { display: flex; min-height: 70px; align-items: center; padding: 15px 13px; border-bottom: 1px solid var(--line); color: #dbe6f2; font-family: var(--display); font-size: 13px; line-height: 1.05; letter-spacing: -.035em; }
.client-grid > span:nth-child(-n + 3) { border-top: 1px solid var(--line); }
.client-grid small { display: block; margin-top: 5px; color: var(--subtle); font-family: var(--body); font-size: 9px; line-height: 1.25; letter-spacing: 0; }

.partners { max-width: none; background: #07101a; }
.partner-marquee { overflow: hidden; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.partner-track { display: flex; align-items: stretch; width: max-content; animation: partner-loop 34s linear infinite; }
.partner-logo { display: grid; grid-template-columns: 38px auto; grid-template-rows: auto auto; align-items: center; gap: 1px 12px; min-width: 245px; padding: 25px 34px; border-right: 1px solid var(--line); color: #dbe8f7; }
.partner-logo > span { grid-row: 1 / -1; display: grid; width: 38px; height: 38px; place-items: center; border: 1px solid currentColor; border-radius: 50%; color: var(--cyan); font-family: var(--display); font-size: 13px; }
.partner-logo-image { grid-row: 1 / -1; display: block; width: 50px; max-height: 38px; object-fit: contain; object-position: left center; }
.partner-logo strong { font-family: var(--display); font-size: 14px; font-weight: 500; letter-spacing: -.04em; }
.partner-logo small { color: var(--subtle); font-size: 9px; letter-spacing: .04em; }
.partner-imob > span { color: #f2c17a; }
.partner-yuri > span { color: #d7b6ff; }
.partner-crypto > span { color: #ffb35c; }

.blog { max-width: none; background: var(--bg); }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; max-width: var(--max); margin: 0 auto; }
.post-card { overflow: hidden; border: 1px solid var(--line); border-radius: 18px; background: var(--surface); transition: transform 300ms cubic-bezier(.2, .8, .2, 1), border-color 300ms ease; }
.post-card:hover { border-color: rgba(142, 233, 255, .48); transform: translateY(-6px); }
.post-media { position: relative; display: flex; min-height: 235px; flex-direction: column; justify-content: space-between; overflow: hidden; padding: 22px; isolation: isolate; }
.post-media::before { position: absolute; z-index: -1; width: 300px; height: 300px; border: 1px solid rgba(142, 233, 255, .24); border-radius: 50%; content: ""; transform: translate(28%, -26%); }
.post-media::after { position: absolute; z-index: -1; inset: 0; background: linear-gradient(145deg, rgba(7, 16, 28, .08), rgba(3, 8, 15, .75)); content: ""; }
.post-media span { color: var(--cyan); font-size: 9px; letter-spacing: .12em; }
.post-media strong { align-self: end; color: rgba(225, 242, 255, .88); font-family: var(--display); font-size: 110px; font-weight: 500; line-height: .7; letter-spacing: -.13em; }
.post-media-ai { background: radial-gradient(circle at 78% 35%, #1f5c76, #0a1c2d 45%, #07101a 88%); }
.post-media-web { background: radial-gradient(circle at 22% 25%, #314c92, #0a1830 47%, #07101a 88%); }
.post-media-wp { background: radial-gradient(circle at 75% 70%, #204f6a, #091c2b 46%, #07101a 88%); }
.post-body { padding: 25px; }
.post-meta { color: var(--blue-light); font-size: 9px; letter-spacing: .08em; text-transform: uppercase; }
.post-body h3 { min-height: 98px; margin: 18px 0 26px; font-size: clamp(23px, 2.3vw, 32px); line-height: .98; letter-spacing: -.065em; }
.blog-footer { display: flex; align-items: center; justify-content: space-between; gap: 25px; max-width: var(--max); margin: 30px auto 0; padding-top: 22px; border-top: 1px solid var(--line); }
.blog-footer small { color: var(--subtle); font-size: 10px; }

@keyframes partner-loop { to { transform: translateX(-50%); } }

@media (max-width: 800px) {
  .hero-copy, .hero-visual, .proof-bar { grid-column: 1; }
  .hero-copy { grid-row: 1; }
  .hero-visual { grid-row: 2; }
  .proof-bar { grid-row: 3; }
  .case-fan-stage { min-height: 585px; }
  .case-fan-stage .case-slide { width: min(380px, 71vw); min-height: 500px; grid-template-rows: 245px 1fr; }
  .case-fan-stage .case-art { min-height: 245px; }
  .case-fan-stage .case-copy { min-height: 255px; }
  .case-fan-stage .case-copy h3 { margin-top: 28px; }
  .case-fan-stage .case-slide[data-fan-position="left"] { transform: translateX(-104%) rotate(-6deg) scale(.91); }
  .case-fan-stage .case-slide[data-fan-position="right"] { transform: translateX(4%) rotate(6deg) scale(.91); }
  .case-fan-stage .case-slide[data-fan-position="far-left"] { transform: translateX(-144%) rotate(-11deg) scale(.8); }
  .case-fan-stage .case-slide[data-fan-position="far-right"] { transform: translateX(44%) rotate(11deg) scale(.8); }
  .clients-block { grid-template-columns: 1fr; gap: 28px; margin-top: 54px; }
  .clients-heading h3 { max-width: 380px; }
  .client-grid { grid-template-columns: repeat(2, 1fr); }
  .client-grid > span:nth-child(-n + 3) { border-top: 0; }
  .client-grid > span:nth-child(-n + 2) { border-top: 1px solid var(--line); }
  .blog-grid { grid-template-columns: 1fr; }
  .post-media { min-height: 180px; }
  .post-body h3 { min-height: 0; }
  .blog-footer { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 500px) {
  .case-fan-stage { min-height: 540px; }
  .case-fan-stage .case-slide { width: min(330px, 82vw); min-height: 465px; grid-template-rows: 210px 1fr; }
  .case-fan-stage .case-art { min-height: 210px; }
  .case-fan-stage .case-copy { min-height: 250px; padding: 20px; }
  .case-fan-stage .case-copy h3 { font-size: 35px; }
  .case-fan-stage .case-copy p { font-size: 12px; }
  .case-fan-stage .case-slide[data-fan-position="left"] { transform: translateX(-84%) rotate(-5deg) scale(.87); }
  .case-fan-stage .case-slide[data-fan-position="right"] { transform: translateX(-16%) rotate(5deg) scale(.87); }
  .case-fan-stage .case-slide[data-fan-position="far-left"], .case-fan-stage .case-slide[data-fan-position="far-right"] { opacity: .2; }
  .client-grid { grid-template-columns: 1fr; }
  .client-grid > span:nth-child(2) { border-top: 0; }
  .partner-logo { min-width: 218px; padding: 22px 26px; }
}

@media (prefers-reduced-motion: reduce) {
  .partner-track, .case-fan-stage .case-slide, .post-card { animation: none; transition: none; }
}

/* Agency-owned projects */
.brand-logo { display: block; width: clamp(150px, 15vw, 205px); height: 48px; object-fit: contain; object-position: left center; mix-blend-mode: screen; }
.site-footer .brand-logo { width: 230px; height: 62px; }
.own-projects { max-width: none; background: #06121f; }
.own-projects .section-heading, .own-projects .case-viewer { max-width: var(--max); margin-right: auto; margin-left: auto; }
.own-projects .section-heading { margin-bottom: 60px; }
.own-project-stage .case-slide { border-color: rgba(142, 233, 255, .25); background: #081624; }
.case-art-own { background: #091a2b; }
.case-art-jarvis2 { background: #071827; }
.case-art-igreen { background: #0a1726; }
.case-art-vendix { background: #071827; }
.case-art-vendix::before { border-color: rgba(77, 134, 255, .38); }
.case-art-vendix::after { border-color: rgba(142, 233, 255, .2); }
.vendix-screen { position: relative; z-index: 2; width: 78%; min-height: 190px; padding: 18px; overflow: hidden; border: 1px solid rgba(142, 233, 255, .35); border-radius: 14px; background: #0b1a2a; box-shadow: 25px 30px 80px rgba(0, 0, 0, .45); transform: rotate(-4deg); }
.vendix-top { display: grid; grid-template-columns: 1fr auto auto; gap: 9px; align-items: center; color: var(--cyan); font-family: var(--display); font-size: 13px; letter-spacing: -.04em; }
.vendix-top i { width: 5px; height: 5px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 12px var(--cyan); }
.vendix-top b { padding: 5px 7px; border: 1px solid rgba(142, 233, 255, .26); border-radius: 999px; color: var(--blue-light); font-family: var(--body); font-size: 7px; font-weight: 500; letter-spacing: .03em; }
.vendix-body { display: grid; grid-template-columns: .76fr 1.24fr; gap: 12px; margin-top: 20px; }
.vendix-inbox, .vendix-chat { display: flex; min-width: 0; flex-direction: column; gap: 7px; padding: 11px; border: 1px solid rgba(166, 196, 230, .14); border-radius: 8px; background: #0e2236; }
.vendix-screen small { color: var(--subtle); font-size: 7px; letter-spacing: .08em; text-transform: uppercase; }
.vendix-screen strong { color: #eaf6ff; font-family: var(--display); font-size: 11px; font-weight: 500; letter-spacing: -.04em; }
.vendix-inbox > span { display: block; width: 84%; height: 4px; border-radius: 99px; background: rgba(142, 233, 255, .3); }
.vendix-inbox > span:nth-of-type(2) { width: 64%; background: rgba(77, 134, 255, .4); }
.vendix-inbox > span:nth-of-type(3) { width: 73%; background: rgba(142, 233, 255, .18); }
.vendix-chat p { margin: 2px 0 0; color: var(--muted); font-size: 8px; line-height: 1.35; }
.vendix-chat em { color: var(--cyan); font-size: 7px; font-style: normal; }

@media (max-width: 800px) {
  .brand-logo { width: 155px; height: 43px; }
  .site-footer .brand-logo { width: 210px; height: 57px; }
  .own-projects .section-heading { margin-bottom: 44px; }
  .vendix-screen { width: 78%; min-height: 170px; padding: 14px; }
}

@media (max-width: 500px) {
  .brand-logo { width: 143px; height: 40px; }
  .vendix-screen { width: 82%; min-height: 158px; padding: 12px; }
  .vendix-body { gap: 7px; margin-top: 14px; }
  .vendix-inbox, .vendix-chat { padding: 8px; }
  .vendix-screen strong { font-size: 9px; }
}

@media (prefers-reduced-motion: reduce) {
  .brand-logo, .vendix-screen { transition: none; }
}

/* Refinement: hierarchy, native scrollbar and stronger content sections */
html { scrollbar-color: var(--blue) #03070d; scrollbar-width: auto; }
::-webkit-scrollbar { width: 14px; height: 14px; }
::-webkit-scrollbar-track { background: #03070d; border-left: 1px solid rgba(166, 196, 230, .12); }
::-webkit-scrollbar-thumb { border: 3px solid #03070d; border-radius: 999px; background: linear-gradient(180deg, var(--cyan), var(--blue) 58%, #2347a2); box-shadow: 0 0 12px rgba(77, 134, 255, .6); }
::-webkit-scrollbar-thumb:hover { background: linear-gradient(180deg, #e9fbff, var(--cyan) 40%, var(--blue)); box-shadow: 0 0 21px rgba(142, 233, 255, .92); }

.hero h1 { font-size: clamp(46px, 5.3vw, 78px); }
.statement h2, .section-heading h2, .process h2, .store-copy h2, .founder h2, .contact h2, .consulting-copy h2 { font-size: clamp(30px, 3.5vw, 50px); }
.service-card h3 { font-size: clamp(32px, 4.2vw, 58px); }
.case-fan-stage .case-copy h3 { margin-top: 25px; font-size: clamp(28px, 2.9vw, 42px); }
.section-heading { margin-bottom: 48px; }
.section-index { padding-top: 0; }
.section-index span { margin-top: 0; }
.process-item { grid-template-columns: 1fr 28px; }
.service-carousel-controls, .case-controls { grid-template-columns: 1fr 90px; }
.case-tabs { justify-content: flex-start; overflow-x: auto; scrollbar-width: none; }
.case-tabs::-webkit-scrollbar { display: none; }
.case-tab { flex: 0 0 auto; }

.ticker { position: relative; background: #06101b; box-shadow: inset 0 1px 0 rgba(142, 233, 255, .08), inset 0 -1px 0 rgba(77, 134, 255, .1); }
.ticker-track { gap: clamp(28px, 4vw, 62px); padding: 24px 0; animation-duration: 25s; color: #dbe9f8; font-size: clamp(17px, 2vw, 28px); letter-spacing: -.035em; text-transform: uppercase; }
.ticker-track i { display: block; width: 7px; height: 7px; padding: 0; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 10px var(--cyan), 0 0 23px rgba(77, 134, 255, .82); font-size: 0; animation: ticker-light 1.8s ease-in-out infinite; }
@keyframes ticker-light { 50% { opacity: .4; transform: scale(.72); } }

.client-art-placeholder { background: #0a192a; }
.client-placeholder { position: relative; z-index: 2; display: flex; width: 76%; min-height: 205px; flex-direction: column; justify-content: center; padding: 25px; border: 1px solid rgba(142, 233, 255, .31); border-radius: 15px; background: #0c2034; box-shadow: 25px 30px 70px rgba(0, 0, 0, .4); transform: rotate(-4deg); }
.client-placeholder span { color: var(--cyan); font-size: 9px; letter-spacing: .12em; text-transform: uppercase; }
.client-placeholder strong { margin: 25px 0 18px; color: #eff7ff; font-family: var(--display); font-size: clamp(27px, 3vw, 44px); font-weight: 500; line-height: .9; letter-spacing: -.08em; }
.client-placeholder small { color: var(--subtle); font-size: 9px; letter-spacing: .08em; text-transform: uppercase; }
.client-controls .case-tabs { justify-content: flex-start; }

.partner-viewer { max-width: var(--max); margin: auto; }
.partner-stage .case-slide { background: #081725; }
.partner-art { background: #0a1929; }
.partner-art-igreen { background: #071a27; }
.partner-art-imob { background: #151b2a; }
.partner-art-yuri { background: #17162b; }
.partner-art-crypto { background: #1b1724; }
.partner-cover { position: relative; z-index: 2; display: block; width: 62%; height: 48%; object-fit: contain; object-position: center; filter: drop-shadow(0 18px 25px rgba(0, 0, 0, .35)); }
.partner-placeholder { position: relative; z-index: 2; display: flex; width: 74%; min-height: 205px; flex-direction: column; justify-content: center; padding: 25px; border: 1px solid rgba(166, 196, 230, .27); border-radius: 15px; background: #101d30; box-shadow: 25px 30px 70px rgba(0, 0, 0, .38); transform: rotate(3deg); }
.partner-placeholder strong { color: var(--cyan); font-family: var(--display); font-size: 74px; font-weight: 500; line-height: .75; letter-spacing: -.1em; }
.partner-placeholder span { margin-top: 23px; color: #eff7ff; font-family: var(--display); font-size: 22px; letter-spacing: -.06em; }
.partner-placeholder small { margin-top: 8px; color: var(--subtle); font-size: 9px; letter-spacing: .09em; text-transform: uppercase; }
.partner-art-yuri .partner-placeholder strong { color: #d7b6ff; }
.partner-art-crypto .partner-placeholder strong { color: #ffb35c; }
.partner-controls .case-tabs { justify-content: flex-start; }

.automation-showcase { max-width: none; background: #07111e; }
.automation-showcase .section-heading, .automation-layout, .data-showcase .section-heading, .data-layout { max-width: var(--max); margin-right: auto; margin-left: auto; }
.automation-layout { display: grid; grid-template-columns: minmax(0, 1fr) minmax(360px, .78fr); gap: clamp(50px, 10vw, 145px); align-items: center; }
.automation-copy { max-width: 560px; }
.automation-copy > p:not(.automation-lead) { max-width: 500px; color: var(--muted); font-size: 14px; }
.automation-lead, .data-lead { max-width: 520px; margin-bottom: 25px; color: var(--text); font-family: var(--display); font-size: clamp(25px, 2.5vw, 36px); line-height: 1.06; letter-spacing: -.06em; }
.automation-points { display: grid; grid-template-columns: repeat(2, 1fr); max-width: 510px; margin: 31px 0; border-top: 1px solid var(--line); }
.automation-points span { padding: 15px 0; border-bottom: 1px solid var(--line); color: #dbe8f6; font-family: var(--display); font-size: 13px; }
.automation-points span:nth-child(even) { padding-left: 16px; border-left: 1px solid var(--line); }
.phone-demo { position: relative; display: grid; min-height: 570px; place-items: center; }
.phone-demo::before, .phone-demo::after { position: absolute; border: 1px solid rgba(142, 233, 255, .2); border-radius: 50%; content: ""; }
.phone-demo::before { width: 470px; height: 470px; transform: rotate(-13deg); }
.phone-demo::after { width: 365px; height: 545px; border-color: rgba(77, 134, 255, .32); transform: rotate(17deg); }
.phone-shell { position: relative; z-index: 2; display: flex; width: min(100%, 326px); height: 565px; flex-direction: column; padding: 15px; overflow: hidden; border: 1px solid rgba(190, 224, 255, .44); border-radius: 36px; background: #081522; box-shadow: 0 35px 100px rgba(0, 0, 0, .48), 0 0 55px rgba(77, 134, 255, .17); transform: rotate(3deg); }
.phone-status { display: flex; align-items: center; justify-content: space-between; padding: 4px 10px 14px; color: var(--subtle); font-size: 8px; }
.phone-status i { width: 5px; height: 5px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 9px var(--cyan); }
.phone-header { display: flex; flex-direction: column; gap: 4px; padding: 15px 13px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.phone-header strong { font-family: var(--display); font-size: 14px; font-weight: 500; letter-spacing: -.04em; }
.phone-header small { color: var(--cyan); font-size: 8px; letter-spacing: .08em; text-transform: uppercase; }
.chat-window { display: flex; flex: 1; flex-direction: column; gap: 10px; padding: 18px 8px; }
.chat-time { align-self: center; color: var(--subtle); font-size: 8px; letter-spacing: .1em; text-transform: uppercase; }
.chat-bubble { max-width: 83%; padding: 10px 12px; border: 1px solid rgba(166, 196, 230, .18); border-radius: 13px; color: #d9e9f7; font-size: 10px; line-height: 1.4; animation: chat-rise 500ms cubic-bezier(.2, .8, .2, 1) both; }
.chat-bot { align-self: flex-start; border-top-left-radius: 4px; background: #10283e; }
.chat-user { align-self: flex-end; border-color: rgba(77, 134, 255, .35); border-top-right-radius: 4px; background: #14396a; }
.chat-bubble:nth-child(2) { animation-delay: 80ms; }
.chat-bubble:nth-child(3) { animation-delay: 160ms; }
.chat-bubble:nth-child(4) { animation-delay: 240ms; }
.chat-composer { display: flex; align-items: center; justify-content: space-between; padding: 12px; border: 1px solid var(--line); border-radius: 11px; color: var(--subtle); font-size: 9px; }
.chat-composer b { display: grid; width: 23px; height: 23px; place-items: center; border-radius: 50%; background: var(--cyan); color: #07101a; font-size: 14px; }
.phone-note { position: absolute; z-index: 3; right: 4%; bottom: 4%; padding: 9px 11px; border: 1px solid var(--line-strong); border-radius: 999px; background: #091829; color: var(--cyan); font-size: 9px; letter-spacing: .08em; text-transform: uppercase; }
@keyframes chat-rise { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }

.data-showcase { max-width: none; background: #040b14; }
.data-layout { display: grid; grid-template-columns: minmax(360px, .95fr) minmax(0, 1fr); gap: clamp(50px, 9vw, 130px); align-items: center; }
.data-stack { position: relative; min-height: 430px; }
.data-sheet { position: absolute; display: flex; width: 67%; min-height: 190px; flex-direction: column; justify-content: center; padding: 25px; border: 1px solid rgba(166, 196, 230, .2); border-radius: 16px; background: #0b1a2a; box-shadow: 20px 30px 65px rgba(0, 0, 0, .35); }
.data-sheet span { color: var(--blue-light); font-size: 8px; letter-spacing: .13em; text-transform: uppercase; }
.data-sheet strong { max-width: 190px; margin-top: 28px; color: #e9f4ff; font-family: var(--display); font-size: 24px; line-height: .94; letter-spacing: -.06em; }
.data-sheet-back { top: 28px; left: 3%; transform: rotate(-8deg); }
.data-sheet-mid { top: 81px; left: 13%; transform: rotate(5deg); }
.data-board { position: absolute; z-index: 3; right: 2%; bottom: 5px; display: flex; width: 75%; min-height: 295px; flex-direction: column; padding: 23px; border: 1px solid rgba(142, 233, 255, .34); border-radius: 17px; background: #0a1b2d; box-shadow: 30px 40px 85px rgba(0, 0, 0, .46); transform: rotate(-3deg); }
.data-board-top, .data-board-footer { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.data-board-top span { color: #e4f3ff; font-family: var(--display); font-size: 13px; letter-spacing: -.04em; }
.data-board-top b { color: var(--cyan); font-size: 8px; font-weight: 500; text-transform: uppercase; }
.data-board-chart { display: flex; height: 165px; align-items: end; gap: 9px; margin: 28px 0 18px; padding: 14px 11px 25px; border-bottom: 1px solid var(--line); background: repeating-linear-gradient(to top, transparent 0, transparent 32px, rgba(166, 196, 230, .1) 33px); }
.data-board-chart i { display: block; width: 18px; border-radius: 5px 5px 2px 2px; background: var(--blue); box-shadow: 0 0 18px rgba(77, 134, 255, .28); }
.data-board-chart i:nth-child(1) { height: 35%; }
.data-board-chart i:nth-child(2) { height: 57%; background: #3973e9; }
.data-board-chart i:nth-child(3) { height: 46%; background: #5c9cff; }
.data-board-chart i:nth-child(4) { height: 76%; background: var(--cyan); }
.data-board-chart i:nth-child(5) { height: 64%; background: #6cbdf7; }
.data-board-chart i:nth-child(6) { height: 89%; background: #e2f8ff; }
.data-board-chart span { display: none; }
.data-board-footer span { max-width: 170px; color: var(--subtle); font-size: 8px; line-height: 1.35; }
.data-board-footer em { color: var(--blue-light); font-family: var(--display); font-size: 11px; font-style: normal; }
.data-copy { max-width: 520px; }
.data-copy > p:not(.data-lead) { color: var(--muted); font-size: 14px; }
.service-tags { display: flex; flex-wrap: wrap; gap: 8px; margin: 28px 0; }
.service-tags span { padding: 9px 11px; border: 1px solid var(--line); border-radius: 5px; color: #cfe0f1; font-size: 10px; }

.consulting { display: grid; grid-template-columns: minmax(0, .8fr) minmax(450px, 1.2fr); gap: clamp(50px, 9vw, 140px); align-items: center; max-width: none; background: #07101a; }
.consulting-copy { max-width: 510px; }
.consulting-copy h2 { max-width: 540px; margin-bottom: 24px; font-size: clamp(32px, 4.1vw, 58px); line-height: .99; letter-spacing: -.075em; }
.consulting-copy > p:not(.eyebrow) { max-width: 460px; margin-bottom: 29px; color: var(--muted); font-size: 14px; }
.consulting-stack { position: relative; min-height: 480px; }
.consulting-card { position: absolute; width: 58%; min-height: 155px; padding: 22px 24px; border: 1px solid rgba(166, 196, 230, .21); border-radius: 14px; background: #0b1a2a; box-shadow: 25px 30px 70px rgba(0, 0, 0, .36); transition: transform 300ms cubic-bezier(.2, .8, .2, 1), border-color 300ms ease; }
.consulting-card:hover { border-color: rgba(142, 233, 255, .55); transform: translateY(-7px) rotate(0deg); }
.consulting-card span { color: var(--cyan); font-size: 8px; letter-spacing: .12em; text-transform: uppercase; }
.consulting-card h3 { margin: 20px 0 7px; color: #eef7ff; font-size: 24px; letter-spacing: -.06em; }
.consulting-card p { margin: 0; color: var(--muted); font-size: 10px; line-height: 1.45; }
.consulting-card-main { z-index: 4; top: 26px; left: 10%; transform: rotate(-6deg); }
.consulting-card-side { z-index: 3; top: 112px; right: 2%; transform: rotate(5deg); }
.consulting-card-low { z-index: 2; top: 228px; left: 2%; transform: rotate(4deg); }
.consulting-card-wide { z-index: 1; top: 330px; right: 9%; width: 67%; transform: rotate(-3deg); }

.contact { grid-template-columns: minmax(270px, .72fr) minmax(430px, 1.28fr); align-items: start; min-height: 760px; }
.contact-stack { position: absolute; z-index: 0; top: 17%; left: 5%; width: 360px; height: 385px; opacity: .72; pointer-events: none; }
.contact-stack span { position: absolute; width: 270px; height: 175px; border: 1px solid rgba(142, 233, 255, .22); border-radius: 16px; background: #091827; box-shadow: 20px 25px 60px rgba(0, 0, 0, .3); }
.contact-stack span:nth-child(1) { top: 25px; left: 12px; transform: rotate(-11deg); }
.contact-stack span:nth-child(2) { top: 92px; left: 43px; border-color: rgba(77, 134, 255, .35); transform: rotate(6deg); }
.contact-stack span:nth-child(3) { top: 165px; left: 75px; border-color: rgba(142, 233, 255, .36); transform: rotate(-3deg); }
.contact-copy, .contact-form-wrap { position: relative; z-index: 1; }
.contact-copy { padding-top: 25px; }
.contact-copy > p:not(.eyebrow) { max-width: 400px; }
.contact-options { display: flex; flex-direction: column; max-width: 330px; margin-top: 34px; border-top: 1px solid var(--line); }
.contact-options span { padding: 13px 0; border-bottom: 1px solid var(--line); color: #d5e5f5; font-family: var(--display); font-size: 12px; letter-spacing: -.03em; }
.contact-form-wrap { width: 100%; max-width: 640px; justify-self: end; }
.brief-form { padding: 27px; border: 1px solid rgba(166, 196, 230, .22); border-radius: 19px; background: #081523; box-shadow: 25px 35px 90px rgba(0, 0, 0, .34); }
.brief-progress { padding-bottom: 19px; border-bottom: 1px solid var(--line); }
.brief-progress > div { position: relative; height: 3px; background: rgba(166, 196, 230, .17); }
.brief-progress > div::before { position: absolute; top: -8px; left: 0; color: var(--cyan); content: attr(data-label); font-size: 9px; }
.brief-progress span { display: block; margin-bottom: 14px; color: var(--cyan); font-size: 9px; letter-spacing: .11em; text-transform: uppercase; }
.brief-progress i { display: block; width: 25%; height: 3px; border-radius: 99px; background: var(--cyan); box-shadow: 0 0 13px rgba(142, 233, 255, .65); transition: width 360ms ease; }
.brief-step { padding: 29px 0 8px; animation: brief-in 380ms cubic-bezier(.2, .8, .2, 1) both; }
.brief-step[hidden] { display: none; }
.brief-kicker { margin-bottom: 11px; color: var(--blue-light); font-size: 9px; letter-spacing: .1em; text-transform: uppercase; }
.brief-step h3 { max-width: 460px; margin-bottom: 25px; color: #eef7ff; font-size: clamp(25px, 3vw, 37px); line-height: .98; letter-spacing: -.07em; }
.choice-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 9px; }
.choice-grid label { position: relative; display: flex; min-height: 58px; align-items: center; padding: 12px 14px; border: 1px solid var(--line); border-radius: 9px; color: #d8e6f3; cursor: pointer; font-size: 11px; transition: border-color 180ms ease, background 180ms ease, transform 180ms ease; }
.choice-grid label:hover { border-color: rgba(142, 233, 255, .52); transform: translateY(-2px); }
.choice-grid input { position: absolute; opacity: 0; pointer-events: none; }
.choice-grid input:checked + span { color: var(--cyan); }
.choice-grid input:checked + span::before { background: var(--cyan); box-shadow: 0 0 9px var(--cyan); }
.choice-grid label span { display: flex; align-items: center; gap: 9px; }
.choice-grid label span::before { display: block; width: 7px; height: 7px; border: 1px solid var(--line-strong); border-radius: 50%; content: ""; }
.brief-fields { display: grid; grid-template-columns: repeat(2, 1fr); gap: 15px; }
.brief-fields label { display: flex; flex-direction: column; gap: 8px; }
.brief-fields label span { color: var(--blue-light); font-size: 9px; letter-spacing: .06em; text-transform: uppercase; }
.brief-fields input, .brief-fields textarea, .brief-fields select { width: 100%; border: 1px solid var(--line); border-radius: 8px; outline: 0; background: #0b1b2c; color: var(--text); font: inherit; font-size: 12px; }
.brief-fields input, .brief-fields select { height: 46px; padding: 0 12px; }
.brief-fields textarea { min-height: 108px; padding: 12px; resize: vertical; }
.brief-fields input:focus, .brief-fields textarea:focus, .brief-fields select:focus { border-color: var(--cyan); box-shadow: 0 0 0 3px rgba(142, 233, 255, .08); }
.brief-field-wide { grid-column: 1 / -1; }
.brief-summary { display: grid; gap: 0; margin-top: 6px; }
.brief-summary-row { display: grid; grid-template-columns: minmax(112px, .34fr) 14px minmax(0, .66fr); gap: 8px; align-items: start; padding: 13px 0; border-bottom: 1px solid var(--line); }
.brief-summary-row:last-child { border-bottom: 0; }
.brief-summary-label { color: var(--blue-light); font-size: 10px; font-weight: 600; letter-spacing: .06em; line-height: 1.45; text-transform: uppercase; }
.brief-summary-separator { color: var(--cyan); font-size: 14px; line-height: 1.2; }
.brief-summary-value { min-width: 0; color: #e6f1fb; font-size: 14px; font-weight: 500; line-height: 1.48; overflow-wrap: anywhere; }
.brief-actions { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-top: 21px; padding-top: 19px; border-top: 1px solid var(--line); }
.brief-actions button[hidden] { display: none !important; }
.brief-back { padding: 9px 0; border: 0; border-bottom: 1px solid var(--line-strong); background: transparent; color: var(--muted); cursor: pointer; font-size: 10px; }
.brief-next, .brief-submit { margin-left: auto; }
.brief-feedback { min-height: 18px; margin: 13px 0 0; color: #ffb8b8; font-size: 10px; }
.contact-form-wrap > .contact-email { display: inline-block; margin-top: 20px; }
@keyframes brief-in { from { opacity: 0; transform: translateX(12px); } to { opacity: 1; transform: none; } }

@media (max-width: 900px) {
  .automation-layout, .data-layout, .consulting, .contact { grid-template-columns: 1fr; }
  .automation-layout, .data-layout { gap: 58px; }
  .automation-copy, .data-copy, .consulting-copy { max-width: 650px; }
  .phone-demo { justify-self: center; width: min(100%, 520px); }
  .data-stack { min-height: 410px; max-width: 590px; }
  .consulting-stack { min-height: 470px; width: min(100%, 620px); }
  .contact { min-height: 0; }
  .contact-form-wrap { max-width: 700px; justify-self: start; }
  .contact-stack { top: 7%; left: 5%; }
}

@media (max-width: 600px) {
  .hero h1 { font-size: 48px; }
  .statement h2, .section-heading h2, .process h2, .store-copy h2, .founder h2, .contact h2, .consulting-copy h2 { font-size: 37px; }
  .ticker-track { gap: 25px; padding: 20px 0; font-size: 16px; }
  .ticker-track i { width: 5px; height: 5px; }
  .phone-shell { height: 540px; }
  .phone-demo { min-height: 560px; }
  .data-stack { min-height: 355px; }
  .data-sheet { min-height: 145px; padding: 17px; }
  .data-sheet strong { margin-top: 19px; font-size: 19px; }
  .data-board { min-height: 245px; padding: 15px; }
  .data-board-chart { height: 125px; margin-top: 18px; }
  .consulting-stack { min-height: 445px; }
  .consulting-card { min-height: 142px; padding: 16px; }
  .consulting-card h3 { margin-top: 14px; font-size: 19px; }
  .choice-grid, .brief-fields { grid-template-columns: 1fr; }
  .brief-field-wide { grid-column: auto; }
  .brief-form { padding: 21px; }
  .contact-stack { left: -45px; opacity: .5; }
}

@media (prefers-reduced-motion: reduce) {
  .ticker-track, .ticker-track i, .chat-bubble, .brief-step, .brief-progress i { animation: none; transition: none; }
}

/* Refinement: ticker, automation demo, service stack, proof cards and contact layout */
.ticker { background: #06101b; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.ticker-track { gap: clamp(22px, 3.2vw, 46px); padding: 18px 0; animation-duration: 31s; color: #dbe9f8; font-size: clamp(13px, 1.35vw, 19px); letter-spacing: -.018em; will-change: transform; }
.ticker-track span { display: inline-block; transition: color 220ms ease, transform 220ms ease; }
.ticker-track span:nth-of-type(3n) { color: #b7cbf2; }
.ticker-track span:nth-of-type(4n) { color: var(--cyan); }
.ticker::after { position: absolute; z-index: 2; top: 0; left: -18%; width: 16%; height: 100%; background: linear-gradient(90deg, transparent, rgba(142, 233, 255, .16), transparent); content: ""; pointer-events: none; transform: skewX(-18deg); animation: ticker-scan 8s ease-in-out infinite; }
.ticker-track i { width: 6px; height: 6px; box-shadow: 0 0 9px var(--cyan), 0 0 19px rgba(77, 134, 255, .72); }
@keyframes ticker-scan { 0%, 56% { opacity: 0; transform: translateX(0) skewX(-18deg); } 63% { opacity: 1; } 84%, 100% { opacity: 0; transform: translateX(760%) skewX(-18deg); } }

.statement { grid-template-columns: minmax(130px, .2fr) minmax(0, 1fr); gap: clamp(18px, 3vw, 42px); }
.statement-content { max-width: 900px; }

.service-carousel { padding-bottom: 15px; }
.service-track { min-height: 365px; padding: 0 28px 18px; }
.service-track::before, .service-track::after { position: absolute; z-index: 0; right: 15px; left: 15px; border: 1px solid rgba(166, 196, 230, .22); border-radius: 18px; content: ""; pointer-events: none; }
.service-track::before { top: 15px; bottom: 5px; background: #0b1a2b; transform: rotate(1.6deg); }
.service-track::after { top: 26px; right: 5px; bottom: -6px; left: 25px; border-color: rgba(77, 134, 255, .25); background: #091522; transform: rotate(-1.2deg); }
.service-card { z-index: 1; min-height: 365px; padding: clamp(26px, 4vw, 44px); border-radius: 18px; box-shadow: 0 28px 75px rgba(0, 0, 0, .28); }
.service-card.is-active { z-index: 2; }
.service-card h3 { max-width: 560px; margin-top: 47px; font-size: clamp(30px, 3.2vw, 46px); line-height: .94; }
.service-card > p { max-width: 520px; font-size: 14px; }
.service-card ul { padding-top: 17px; font-size: 10px; }

.demo-choice { max-width: 560px; margin-top: 29px; }
.demo-choice > span { display: block; margin-bottom: 11px; color: var(--blue-light); font-size: 9px; letter-spacing: .11em; text-transform: uppercase; }
.demo-switcher { display: flex; flex-wrap: wrap; gap: 7px; }
.demo-switcher button { min-height: 36px; padding: 0 12px; border: 1px solid var(--line-strong); border-radius: 7px; background: rgba(8, 21, 35, .65); color: #c8d9ec; cursor: pointer; font-size: 10px; letter-spacing: -.01em; transition: border-color 180ms ease, background 180ms ease, color 180ms ease, transform 180ms ease; }
.demo-switcher button:hover, .demo-switcher button:focus-visible { border-color: rgba(142, 233, 255, .6); color: var(--text); transform: translateY(-2px); }
.demo-switcher button.is-active { border-color: var(--cyan); background: var(--cyan); color: #06111c; box-shadow: 0 0 22px rgba(142, 233, 255, .2); }
.chat-typing { display: flex; width: 46px; align-items: center; justify-content: center; gap: 4px; padding: 11px 9px; border: 1px solid rgba(166, 196, 230, .18); border-radius: 13px 13px 13px 4px; background: #10283e; }
.chat-typing i { display: block; width: 4px; height: 4px; border-radius: 50%; background: var(--cyan); animation: typing-dot 900ms ease-in-out infinite; }
.chat-typing i:nth-child(2) { animation-delay: 120ms; }
.chat-typing i:nth-child(3) { animation-delay: 240ms; }
@keyframes typing-dot { 0%, 60%, 100% { opacity: .3; transform: translateY(0); } 30% { opacity: 1; transform: translateY(-3px); } }

.proof-bar { gap: 12px; padding-top: 0; border-top: 0; }
.proof-bar div { position: relative; min-height: 112px; justify-content: space-between; gap: 12px; padding: 20px 18px; overflow: hidden; border: 1px solid var(--line); border-radius: 14px; background: linear-gradient(145deg, rgba(13, 31, 51, .96), rgba(6, 15, 26, .96)); box-shadow: 0 18px 38px rgba(0, 0, 0, .2); }
.proof-bar div::after { position: absolute; right: -35px; bottom: -55px; width: 120px; height: 120px; border: 1px solid rgba(142, 233, 255, .2); border-radius: 50%; content: ""; }
.proof-bar strong { position: relative; z-index: 1; color: #f1f8ff; font-size: clamp(23px, 2.3vw, 34px); line-height: .95; }
.proof-bar span { position: relative; z-index: 1; max-width: 160px; color: #aabbd0; font-size: 12px; line-height: 1.3; }

.process { position: relative; isolation: isolate; background: radial-gradient(circle at 18% 30%, rgba(77, 134, 255, .11), transparent 31%), linear-gradient(180deg, #050a12, #07111c); }
.process::after { position: absolute; z-index: -1; right: 10%; bottom: 14%; width: 240px; height: 240px; border: 1px solid rgba(142, 233, 255, .12); border-radius: 50%; content: ""; }
.process-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
.process-item { position: relative; display: flex; min-height: 192px; flex-direction: column; justify-content: space-between; gap: 25px; padding: 22px; overflow: hidden; border: 1px solid var(--line); border-radius: 14px; background: linear-gradient(145deg, rgba(12, 28, 46, .95), rgba(5, 13, 23, .98)); box-shadow: 0 22px 50px rgba(0, 0, 0, .25); transition: border-color 220ms ease, transform 220ms ease, background 220ms ease; }
.process-item:nth-child(2) { transform: translateY(18px); }
.process-item:nth-child(3) { transform: translateY(-8px); }
.process-item:nth-child(4) { transform: translateY(10px); }
.process-item::before { position: absolute; top: -40px; right: -30px; width: 120px; height: 120px; border: 1px solid rgba(142, 233, 255, .15); border-radius: 50%; content: ""; }
.process-item:hover { border-color: rgba(142, 233, 255, .55); background: linear-gradient(145deg, rgba(15, 39, 63, .98), rgba(6, 17, 29, .98)); transform: translateY(-5px); }
.process-item:nth-child(2):hover, .process-item:nth-child(4):hover { transform: translateY(13px); }
.process-item > div { position: relative; z-index: 1; }
.process-item h3 { margin: 0 0 9px; color: #eef7ff; font-size: clamp(25px, 2.4vw, 34px); }
.process-item p { max-width: 240px; margin: 0; color: var(--muted); font-size: 12px; line-height: 1.5; }
.process-item > b { align-self: flex-end; color: var(--cyan); font-size: 18px; font-weight: 400; }

.clients-block { grid-template-columns: minmax(210px, .5fr) minmax(0, 1.5fr); gap: 45px; }
.client-grid { display: flex; gap: 12px; overflow-x: auto; padding: 2px 2px 16px; scroll-snap-type: x mandatory; scrollbar-width: thin; }
.client-grid > span { flex: 0 0 min(235px, 68vw); min-height: 124px; align-items: flex-end; padding: 18px; border: 1px solid var(--line); border-radius: 13px; background: linear-gradient(145deg, #0c1e31, #07121f); color: #e4eef9; font-size: 16px; line-height: 1.05; scroll-snap-align: start; transition: border-color 180ms ease, transform 180ms ease, background 180ms ease; }
.client-grid > span:nth-child(-n + 3) { border-top: 1px solid var(--line); }
.client-grid > span:hover { border-color: rgba(142, 233, 255, .55); background: linear-gradient(145deg, #102944, #091827); transform: translateY(-5px); }
.client-grid small { margin-top: 8px; font-size: 10px; line-height: 1.35; }

.contact { grid-template-columns: minmax(0, .78fr) minmax(0, 1.22fr); gap: clamp(28px, 5vw, 76px); min-height: 0; }
.contact-copy { align-self: center; padding-top: 0; }
.contact-form-wrap { align-self: start; }

.footer-brand p { font-size: 13px; line-height: 1.55; }
.footer-column { gap: 13px; font-size: 13px; }
.footer-column span { font-size: 11px; }
.footer-bottom { align-items: center; font-size: 12px; line-height: 1.4; }
.footer-bottom small { display: block; }

@media (min-width: 801px) {
  .contact { grid-template-columns: minmax(260px, .78fr) minmax(0, 1.22fr); }
}

@media (max-width: 900px) {
  .clients-block { grid-template-columns: 1fr; gap: 28px; }
  .clients-heading h3 { max-width: 520px; }
}

@media (max-width: 800px) {
  .process-list { grid-template-columns: 1fr; }
  .process-item:nth-child(2), .process-item:nth-child(3), .process-item:nth-child(4) { transform: none; }
  .process-item:hover, .process-item:nth-child(2):hover, .process-item:nth-child(4):hover { transform: translateY(-5px); }
}

@media (max-width: 600px) {
  .service-track { min-height: 390px; padding: 0 12px 14px; }
  .service-card { min-height: 390px; padding: 27px; }
  .service-track::before { right: 9px; left: 9px; }
  .service-track::after { right: 2px; left: 16px; }
  .service-card h3 { margin-top: 42px; }
  .demo-switcher button { flex: 1 1 auto; }
  .proof-bar strong { font-size: clamp(21px, 6vw, 30px); }
  .proof-bar span { font-size: 11px; }
  .footer-bottom { align-items: flex-start; gap: 9px; }
}

@media (prefers-reduced-motion: reduce) {
  .ticker::after, .chat-typing i, .process-item, .client-grid > span { animation: none; transition: none; }
}

/* Refinement: readable copy, founder motion and client strip controls */
.section-shell { scroll-margin-top: 108px; }
.section-heading > p, .statement-bottom p, .automation-copy > p:not(.automation-lead), .data-copy > p:not(.data-lead), .consulting-copy > p:not(.eyebrow), .process-intro > div:last-child > p:last-child, .founder-copy > p:not(.eyebrow):not(.founder-lead), .contact-copy > p:not(.eyebrow) { font-size: clamp(14px, 1.05vw, 16px); line-height: 1.58; }
.service-card > p, .case-fan-stage .case-copy p { font-size: 14px; line-height: 1.58; }
.brief-fields input, .brief-fields textarea, .brief-fields select { font-size: 13px; }
.choice-grid label { font-size: 12px; }
.reveal { will-change: opacity, transform; }

.founder { position: relative; isolation: isolate; background: radial-gradient(circle at 78% 22%, rgba(77, 134, 255, .1), transparent 28%); }
.founder::before { position: absolute; z-index: -1; top: 13%; right: 3%; width: 310px; height: 310px; border: 1px solid rgba(142, 233, 255, .1); border-radius: 50%; content: ""; animation: founder-orbit 16s linear infinite; }
.founder-visual { box-shadow: 0 32px 90px rgba(0, 0, 0, .34); transition: border-color 300ms ease, box-shadow 300ms ease, transform 300ms ease; }
.founder-visual::before { position: absolute; z-index: 1; top: 20px; left: 20px; width: 58px; height: 58px; border-top: 1px solid var(--cyan); border-left: 1px solid var(--cyan); opacity: .65; content: ""; transition: width 350ms ease, height 350ms ease, opacity 350ms ease; }
.founder-visual img { transition: transform 900ms cubic-bezier(.2, .8, .2, 1), filter 500ms ease; }
.founder-visual:hover { border-color: rgba(142, 233, 255, .55); box-shadow: 0 38px 105px rgba(0, 0, 0, .46), 0 0 48px rgba(77, 134, 255, .12); transform: translateY(-6px); }
.founder-visual:hover::before { width: 82px; height: 82px; opacity: 1; }
.founder-visual:hover img { filter: brightness(.84) saturate(.9) contrast(1.08); transform: scale(1.035); }
.founder-meta { padding: 13px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.founder-stats { gap: 10px; max-width: 610px; margin: 0 0 29px; border: 0; }
.founder-stats div, .founder-stats div + div { min-height: 94px; justify-content: space-between; padding: 16px; border: 1px solid var(--line); border-radius: 12px; background: linear-gradient(145deg, rgba(13, 31, 51, .92), rgba(6, 15, 26, .94)); transition: border-color 220ms ease, transform 220ms ease, background 220ms ease; }
.founder-stats div:hover { border-color: rgba(142, 233, 255, .5); background: linear-gradient(145deg, rgba(15, 39, 63, .96), rgba(7, 17, 29, .96)); transform: translateY(-5px); }
.founder-stats strong { font-size: clamp(22px, 2.4vw, 32px); }
.founder-stats span { color: #aabbd0; font-size: 11px; line-height: 1.3; }
.founder-stack { margin-top: 35px; padding-top: 24px; }
.stack-list span { padding: 10px 12px; border-radius: 7px; background: rgba(10, 25, 42, .72); color: #d8e6f3; font-size: 11px; transition: border-color 180ms ease, color 180ms ease, transform 180ms ease; }
.stack-list span:hover { border-color: rgba(142, 233, 255, .5); color: var(--cyan); transform: translateY(-3px); }

.button { min-height: 46px; padding: 0 18px; }
.button-primary { box-shadow: 0 12px 32px rgba(77, 134, 255, .15); }
.button-primary:hover { box-shadow: 0 16px 38px rgba(77, 134, 255, .3), 0 0 24px rgba(142, 233, 255, .1); }
.text-link, .card-link { transition: color 180ms ease, transform 180ms ease; }
.text-link:hover, .card-link:hover { color: var(--cyan); transform: translateX(4px); }

.client-grid-wrap { display: grid; grid-template-columns: 36px minmax(0, 1fr) 36px; gap: 10px; align-items: center; }
.client-list-arrow { display: grid; width: 36px; height: 36px; place-items: center; border: 1px solid var(--line-strong); border-radius: 50%; background: transparent; color: var(--cyan); cursor: pointer; transition: background 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease; }
.client-list-arrow:hover, .client-list-arrow:focus-visible { border-color: var(--cyan); background: var(--cyan); color: #06111c; transform: translateY(-2px); }
.client-grid { min-width: 0; }

@keyframes founder-orbit { to { transform: rotate(360deg); } }

@media (max-width: 600px) {
  .founder::before { right: -110px; width: 240px; height: 240px; }
  .founder-stats div, .founder-stats div + div { min-height: 88px; padding: 13px; }
  .founder-stats strong { font-size: clamp(20px, 6vw, 28px); }
  .founder-stats span { font-size: 10px; }
  .client-grid-wrap { grid-template-columns: 30px minmax(0, 1fr) 30px; gap: 6px; }
  .client-list-arrow { width: 30px; height: 30px; font-size: 12px; }
}

@media (prefers-reduced-motion: reduce) {
  .founder::before { animation: none; }
}

/* Refinement: keep the briefing content in the intended two-column grid */
.contact-orbit { position: absolute; z-index: 0; inset: 0; pointer-events: none; }
.contact { min-height: 0; padding-top: clamp(92px, 8vw, 118px); padding-bottom: clamp(86px, 8vw, 112px); }
.contact-copy, .contact-form-wrap { min-width: 0; }

@media (max-width: 800px) {
  .contact { padding-top: 82px; padding-bottom: 82px; }
}

/* Responsive guardrails and header readability */
.desktop-nav { font-size: 12px; }
.store-link { font-size: 12px; }
.header-cta, .button { font-size: 12px; }

@media (max-width: 900px) {
  .desktop-nav, .store-link { display: none; }
  .menu-toggle { display: flex; width: 44px; height: 44px; flex-direction: column; align-items: center; justify-content: center; gap: 6px; border: 0; background: transparent; cursor: pointer; }
  .menu-toggle span:not(.sr-only) { display: block; width: 23px; height: 2px; border-radius: 2px; background: var(--text); transition: transform 180ms ease, opacity 180ms ease, background 180ms ease; }
  .menu-toggle:hover span:not(.sr-only), .menu-toggle:focus-visible span:not(.sr-only) { background: var(--cyan); }
  .mobile-menu { position: absolute; top: calc(100% + 9px); right: 0; left: 0; display: flex; flex-direction: column; gap: 0; padding: 12px; border: 1px solid var(--line); border-radius: 16px; background: rgba(5, 10, 18, .97); box-shadow: 0 20px 70px rgba(0, 0, 0, .38); }
  .mobile-menu[hidden] { display: none; }
  .mobile-menu a { padding: 15px 13px; border-bottom: 1px solid var(--line); color: var(--muted); font-size: 14px; line-height: 1.2; }
  .mobile-menu a:last-child { border-bottom: 0; }
  .mobile-menu a:hover, .mobile-menu a:focus-visible { color: var(--text); }
}

@media (max-width: 800px) {
  .contact { grid-template-columns: minmax(0, 1fr); gap: 34px; align-items: start; }
  .contact-copy { align-self: start; }
  .contact-form-wrap { width: 100%; max-width: none; justify-self: stretch; }
  .contact-stack { max-width: 100%; }
  .automation-layout, .data-layout, .consulting { grid-template-columns: minmax(0, 1fr); }
  .automation-layout, .data-layout { gap: 48px; }
  .consulting { gap: 42px; }
  .hero-copy, .automation-copy, .data-copy, .consulting-copy, .contact-copy { width: 100%; min-width: 0; }
  .hero-lead, .section-heading > p, .statement-bottom p, .automation-copy > p:not(.automation-lead), .data-copy > p:not(.data-lead), .consulting-copy > p:not(.eyebrow), .contact-copy > p:not(.eyebrow) { max-width: 100%; }
  .phone-demo { width: min(100%, 520px); max-width: 100%; overflow: hidden; }
  .data-stack, .consulting-stack { width: 100%; max-width: 620px; }
  .site-footer { min-width: 0; }
}

@media (max-width: 600px) {
  .site-header { min-height: 60px; }
  .header-actions { gap: 5px; }
  .menu-toggle { width: 42px; height: 42px; }
  .menu-toggle span:not(.sr-only) { width: 22px; }
  .service-track, .service-card { width: 100%; max-width: 100%; }
  .service-card { padding: 24px; }
  .service-card h3 { max-width: 100%; }
  .case-fan-stage { width: 100%; max-width: 100%; }
  .case-fan-stage .case-slide { width: min(330px, calc(100% - 28px)); max-width: calc(100% - 28px); }
  .case-fan-stage .case-copy { min-width: 0; overflow-wrap: anywhere; }
  .case-fan-stage .case-copy h3 { max-width: 100%; font-size: clamp(28px, 9vw, 35px); }
  .consulting-stack { min-height: 445px; max-width: 100%; overflow: hidden; }
  .consulting-card { width: min(84%, 390px); max-width: calc(100% - 16px); }
  .consulting-card-wide { width: min(88%, 420px); max-width: calc(100% - 16px); }
  .brief-form { width: 100%; max-width: 100%; }
  .brief-summary-row { grid-template-columns: minmax(96px, .36fr) 12px minmax(0, .64fr); gap: 6px; padding: 12px 0; }
  .brief-summary-value { font-size: 13px; }
  .brief-actions { align-items: stretch; flex-wrap: wrap; }
  .brief-next, .brief-submit { margin-left: auto; }
  .footer-bottom { overflow-wrap: anywhere; }
}

@media (max-width: 380px) {
  .site-header { width: calc(100% - 16px); }
  .brand-logo { width: 132px; height: 37px; }
  .hero, .section-shell { padding-right: 16px; padding-left: 16px; }
  .hero h1 { font-size: clamp(42px, 12vw, 48px); }
  .hero-lead { font-size: 14px; }
  .phone-shell { width: min(100%, 306px); height: 520px; }
  .phone-demo { min-height: 535px; }
  .client-grid-wrap { grid-template-columns: 28px minmax(0, 1fr) 28px; gap: 4px; }
  .client-list-arrow { width: 28px; height: 28px; }
}

/* Keep the contact decoration clear of the copy */
.contact-stack { top: 36%; left: -290px; opacity: .42; transform: scale(.8); transform-origin: left center; }

@media (max-width: 800px) {
  .contact-stack { display: none; }
}

/* Automation flow and scenario selector */
.automation-points { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 8px; max-width: 590px; margin: 31px 0; border: 0; }
.automation-points span { position: relative; display: flex; min-height: 118px; flex-direction: column; align-items: flex-start; gap: 8px; padding: 14px; overflow: hidden; border: 1px solid var(--line); border-radius: 14px; background: linear-gradient(145deg, rgba(15, 38, 61, .94), rgba(6, 15, 26, .98)); box-shadow: 0 16px 32px rgba(0, 0, 0, .2); transition: border-color 220ms ease, background 220ms ease, transform 220ms ease, box-shadow 220ms ease; }
.automation-points span::after { position: absolute; right: -26px; bottom: -34px; width: 88px; height: 88px; border: 1px solid rgba(142, 233, 255, .18); border-radius: 50%; content: ""; }
.automation-points span:hover { border-color: rgba(142, 233, 255, .58); background: linear-gradient(145deg, rgba(18, 49, 79, .98), rgba(7, 18, 31, .98)); box-shadow: 0 20px 38px rgba(0, 0, 0, .28), 0 0 22px rgba(77, 134, 255, .1); transform: translateY(-5px); }
.automation-points span:nth-child(even) { padding-left: 14px; border-left: 1px solid var(--line); }
.automation-points i { position: relative; z-index: 1; display: grid; width: 28px; height: 28px; place-items: center; border: 1px solid rgba(142, 233, 255, .4); border-radius: 9px; color: var(--cyan); font-size: 15px; font-style: normal; }
.automation-points strong { position: relative; z-index: 1; color: #eff7ff; font-family: var(--display); font-size: 14px; font-weight: 500; letter-spacing: -.04em; }
.automation-points small { position: relative; z-index: 1; color: #9fb1c6; font-size: 10px; line-height: 1.35; }
.demo-choice { max-width: 590px; }
.demo-switcher { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 6px; padding: 6px; border: 1px solid rgba(142, 233, 255, .2); border-radius: 15px; background: rgba(7, 18, 30, .78); box-shadow: inset 0 0 0 1px rgba(77, 134, 255, .06), 0 14px 30px rgba(0, 0, 0, .18); }
.demo-switcher button { position: relative; min-height: 46px; padding: 0 12px; border: 1px solid transparent; border-radius: 10px; background: transparent; color: #abc0d5; cursor: pointer; font-size: 11px; font-weight: 600; line-height: 1.15; transition: border-color 180ms ease, background 180ms ease, color 180ms ease, transform 180ms ease, box-shadow 180ms ease; }
.demo-switcher button:hover, .demo-switcher button:focus-visible { border-color: rgba(142, 233, 255, .38); color: var(--text); transform: translateY(-2px); }
.demo-switcher button.is-active { border-color: rgba(142, 233, 255, .55); background: linear-gradient(145deg, rgba(142, 233, 255, .96), rgba(77, 134, 255, .9)); color: #06111c; box-shadow: 0 8px 20px rgba(77, 134, 255, .2), inset 0 1px 0 rgba(255, 255, 255, .4); }

/* Client cards with image-first composition */
.client-grid { align-items: stretch; }
.client-card { flex: 0 0 min(258px, 68vw); display: flex; min-height: 318px; flex-direction: column; overflow: hidden; border: 1px solid var(--line); border-radius: 15px; background: linear-gradient(145deg, #0c1e31, #07121f); scroll-snap-align: start; transition: border-color 220ms ease, transform 220ms ease, background 220ms ease, box-shadow 220ms ease; }
.client-card-media { position: relative; display: flex; min-height: 146px; align-items: flex-end; padding: 15px; overflow: hidden; border-bottom: 1px solid var(--line); background: radial-gradient(circle at 76% 32%, rgba(142, 233, 255, .2), transparent 23%), linear-gradient(145deg, #102e4a, #091827 72%); }
.client-card-media::before { position: absolute; z-index: 1; top: -48px; right: -28px; width: 160px; height: 160px; border: 1px solid rgba(142, 233, 255, .23); border-radius: 50%; content: ""; pointer-events: none; }
.client-card-media::after { position: absolute; z-index: 2; right: 18px; bottom: 20px; width: 8px; height: 8px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 12px var(--cyan), 0 0 25px rgba(77, 134, 255, .7); content: ""; }
.client-card-media > span { position: relative; z-index: 3; color: #bcd3e8; font-size: 9px; letter-spacing: .12em; text-transform: uppercase; }
.client-card-cover { position: absolute; z-index: 0; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: brightness(.66) contrast(1.06) saturate(.85); transition: transform 500ms cubic-bezier(.2, .8, .2, 1), filter 300ms ease; }
.client-card-body { display: flex; flex: 1; flex-direction: column; gap: 11px; padding: 17px; }
.client-card-body strong { color: #eef7ff; font-family: var(--display); font-size: 18px; font-weight: 500; line-height: 1.02; letter-spacing: -.05em; }
.client-card-body small { margin: 0; color: #a9bbcf; font-size: 12px; line-height: 1.45; }
.client-card-action { margin-top: auto; color: var(--cyan); font-size: 9px; letter-spacing: .1em; text-transform: uppercase; }
.client-card { color: inherit; text-decoration: none; }
.client-card:hover { border-color: rgba(142, 233, 255, .58); background: linear-gradient(145deg, #102944, #091827); box-shadow: 0 20px 42px rgba(0, 0, 0, .26); transform: translateY(-6px); }
.client-card:hover .client-card-cover { filter: brightness(.78) contrast(1.08) saturate(.95); transform: scale(1.05); }

@media (max-width: 600px) {
  .automation-points { grid-template-columns: repeat(2, minmax(0, 1fr)); max-width: 100%; }
  .automation-points span { min-height: 110px; padding: 13px; }
  .automation-points span:nth-child(even) { padding-left: 13px; }
  .client-card { flex-basis: min(258px, 77vw); min-height: 300px; }
  .client-card-media { min-height: 132px; }
}

@media (max-width: 420px) {
  .demo-switcher { grid-template-columns: 1fr; }
  .demo-switcher button { min-height: 42px; }
}

@media (prefers-reduced-motion: reduce) {
  .automation-points span, .demo-switcher button, .client-card { transition: none; }
}

/* Data signals and stronger call to action */
.service-tags { display: flex; flex-wrap: wrap; gap: 9px; margin: 28px 0 25px; }
.service-tags span { display: inline-flex; align-items: center; gap: 8px; min-height: 36px; padding: 0 13px; border: 1px solid rgba(142, 233, 255, .2); border-radius: 999px; background: linear-gradient(145deg, rgba(18, 48, 75, .92), rgba(7, 18, 30, .96)); color: #d9e9f7; font-family: var(--display); font-size: 11px; letter-spacing: -.025em; box-shadow: inset 0 1px 0 rgba(255, 255, 255, .04), 0 10px 22px rgba(0, 0, 0, .14); transition: border-color 180ms ease, color 180ms ease, transform 180ms ease, box-shadow 180ms ease; }
.service-tags span i { display: block; width: 6px; height: 6px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 9px var(--cyan); }
.service-tags span:hover { border-color: rgba(142, 233, 255, .58); color: var(--text); box-shadow: 0 14px 28px rgba(0, 0, 0, .22), 0 0 18px rgba(77, 134, 255, .1); transform: translateY(-3px); }
.data-cta { min-height: 52px; padding: 0 23px; background: linear-gradient(135deg, #f4fbff 0%, #9cecff 58%, #75a3ff 100%); box-shadow: 0 16px 34px rgba(77, 134, 255, .24), 0 0 24px rgba(142, 233, 255, .1); }
.data-cta:hover { box-shadow: 0 20px 42px rgba(77, 134, 255, .38), 0 0 34px rgba(142, 233, 255, .18); }
.data-cta span { color: #2b62d8; }

@media (max-width: 600px) {
  .service-tags { gap: 7px; }
  .service-tags span { min-height: 34px; padding: 0 11px; font-size: 10px; }
  .data-cta { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  .service-tags span, .data-cta { transition: none; }
}

/* Founder section: editorial metrics instead of rigid boxes */
.founder { gap: clamp(42px, 7vw, 104px); }
.founder-visual { isolation: isolate; }
.founder-visual::before { top: 12%; right: 12%; left: auto; width: 150px; height: 150px; border: 0; border-radius: 50%; background: radial-gradient(circle, rgba(142, 233, 255, .22), rgba(77, 134, 255, .08) 38%, transparent 72%); opacity: .7; animation: founder-aura 6s ease-in-out infinite; }
.founder-visual::after { background: linear-gradient(to bottom, transparent 36%, rgba(3, 9, 16, .9) 100%), linear-gradient(135deg, rgba(77, 134, 255, .1), transparent 55%); }
.founder-visual img { animation: none; }
.founder-visual.reveal.visible img { animation: founder-image-in 1.1s cubic-bezier(.2, .8, .2, 1) both; }
.founder-copy { overflow-wrap: anywhere; }
.founder-copy > p.founder-lead { max-width: 610px; font-size: clamp(22px, 2.1vw, 28px); line-height: 1.18; }
.founder-copy > p:not(.eyebrow):not(.founder-lead) { max-width: 610px; font-size: clamp(15px, 1.08vw, 17px); line-height: 1.62; }
.founder-meta { align-items: baseline; gap: 9px 20px; margin: 7px 0 31px; padding: 0; border: 0; color: var(--cyan); font-size: 12px; }
.founder-meta span { color: #eff7ff; font-size: 16px; }
.founder-meta b { color: var(--blue-light); font-size: 12px; }
.founder-meta i { color: #9eb4cb; font-size: 12px; }
.founder-stats { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; max-width: 650px; margin: 0 0 32px; }
.founder-stats div, .founder-stats div + div { position: relative; min-height: 124px; justify-content: flex-end; padding: 18px 0; border: 0; border-radius: 0; background: radial-gradient(circle at 0 100%, rgba(77, 134, 255, .18), transparent 58%); transition: transform 220ms ease, color 220ms ease; }
.founder-stats div::after { position: absolute; top: 6px; right: 10px; width: 9px; height: 9px; border: 1px solid rgba(142, 233, 255, .6); border-radius: 50%; box-shadow: 0 0 13px rgba(142, 233, 255, .3); content: ""; }
.founder-stats div:hover { background: radial-gradient(circle at 0 100%, rgba(77, 134, 255, .3), transparent 62%); transform: translateY(-6px); }
.founder-stats strong { color: #f1f8ff; font-size: clamp(28px, 3.1vw, 42px); line-height: .9; text-shadow: 0 0 24px rgba(142, 233, 255, .14); }
.founder-stats span { max-width: 125px; color: #aabbd0; font-size: 12px; line-height: 1.35; }
.founder-stack { max-width: 650px; margin-top: 39px; padding: 0; border: 0; }
.founder-stack h3 { margin-bottom: 17px; color: var(--blue-light); font-size: 11px; letter-spacing: .12em; }
.stack-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 2px 24px; }
.stack-list span { position: relative; padding: 8px 0 8px 17px; border: 0; border-radius: 0; background: transparent; color: #d6e3ef; font-size: 13px; transition: color 180ms ease, transform 180ms ease; }
.stack-list span::before { position: absolute; top: 50%; left: 0; width: 5px; height: 5px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 10px rgba(142, 233, 255, .58); content: ""; transform: translateY(-50%); }
.stack-list span:hover { border: 0; color: var(--cyan); transform: translateX(4px); }
.founder-cta { margin-top: 20px; min-height: 52px; padding: 0 23px; background: linear-gradient(135deg, #f4fbff 0%, #9cecff 58%, #75a3ff 100%); box-shadow: 0 16px 34px rgba(77, 134, 255, .23); }
.founder-cta span { color: #2b62d8; }
.founder-copy.reveal.visible .founder-meta { animation: founder-rise 650ms 100ms cubic-bezier(.2, .8, .2, 1) both; }
.founder-copy.reveal.visible .founder-stats { animation: founder-rise 650ms 180ms cubic-bezier(.2, .8, .2, 1) both; }
.founder-copy.reveal.visible .founder-stack { animation: founder-rise 650ms 260ms cubic-bezier(.2, .8, .2, 1) both; }
.founder-copy.reveal.visible .founder-cta { animation: founder-rise 650ms 340ms cubic-bezier(.2, .8, .2, 1) both; }
@keyframes founder-rise { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }
@keyframes founder-image-in { from { opacity: .25; transform: scale(1.08); } to { opacity: 1; transform: scale(1); } }
@keyframes founder-aura { 50% { opacity: 1; transform: scale(1.13); } }

@media (max-width: 600px) {
  .founder-stats { gap: 8px; }
  .founder-stats div, .founder-stats div + div { min-height: 104px; padding: 14px 0; }
  .founder-stats strong { font-size: clamp(27px, 8vw, 36px); }
  .founder-stats span { font-size: 11px; }
  .stack-list { gap: 2px 16px; }
  .stack-list span { font-size: 12px; }
  .founder-cta { width: 100%; }
}

@media (max-width: 420px) {
  .founder-stats { grid-template-columns: 1fr; gap: 0; }
  .founder-stats div, .founder-stats div + div { min-height: 73px; padding: 13px 0; }
  .founder-stats div::after { top: 50%; right: 3px; }
  .stack-list { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  .founder-visual::before, .founder-visual img, .founder-copy.reveal.visible .founder-meta, .founder-copy.reveal.visible .founder-stats, .founder-copy.reveal.visible .founder-stack, .founder-copy.reveal.visible .founder-cta { animation: none; }
}

/* Refinement: compact service carousel, readable type and ambient motion */
.hero h1 { font-size: clamp(43px, 4.9vw, 72px); }
.service-carousel { max-width: 1000px; }
.service-track { min-height: 332px; padding: 0 22px 15px; }
.service-card { min-height: 332px; padding: clamp(24px, 3.2vw, 36px); border-radius: 20px; }
.service-card h3 { margin-top: 38px; font-size: clamp(32px, 3.4vw, 44px); line-height: .98; }
.service-card > p { max-width: 600px; font-size: 15.5px; line-height: 1.55; }
.service-card ul { gap: 8px 18px; padding-top: 18px; color: #d5e5f3; font-size: 12px; line-height: 1.45; }
.card-link { right: clamp(24px, 3.2vw, 36px); bottom: clamp(24px, 3.2vw, 36px); font-size: 12px; }
.phone-demo { overflow: hidden; }
.service-card.is-active { transition: border-color 260ms ease, box-shadow 260ms ease, transform 260ms ease; }
.service-card.is-active:hover { border-color: rgba(142, 233, 255, .55); box-shadow: 0 34px 86px rgba(0, 0, 0, .38), 0 0 32px rgba(77, 134, 255, .1); transform: translateY(-6px); }
.service-track::before, .service-track::after { animation: service-depth-float 8s ease-in-out infinite; }
.service-track::after { animation-delay: -3.5s; }
.data-sheet, .data-board, .store-window, .proof-bar > div, .partner-placeholder, .client-placeholder { transition: border-color 300ms ease, box-shadow 300ms ease, transform 420ms cubic-bezier(.2, .8, .2, 1); }
.data-sheet-back:hover { border-color: rgba(142, 233, 255, .4); box-shadow: 20px 34px 72px rgba(0, 0, 0, .42); transform: rotate(-8deg) translateY(-7px); }
.data-sheet-mid:hover { border-color: rgba(142, 233, 255, .4); box-shadow: 20px 34px 72px rgba(0, 0, 0, .42); transform: rotate(5deg) translateY(-7px); }
.data-board:hover { border-color: rgba(142, 233, 255, .58); box-shadow: 30px 46px 95px rgba(0, 0, 0, .5), 0 0 30px rgba(77, 134, 255, .12); transform: rotate(-3deg) translateY(-7px); }
.store-window:hover { border-color: rgba(142, 233, 255, .58); box-shadow: 0 42px 100px rgba(0, 0, 0, .5), 0 0 30px rgba(77, 134, 255, .12); transform: rotate(-4deg) translateY(-7px); }
.proof-bar > div:hover { border-color: rgba(142, 233, 255, .55); box-shadow: 0 24px 50px rgba(0, 0, 0, .3), 0 0 23px rgba(77, 134, 255, .08); transform: translateY(-6px); }
.partner-placeholder:hover { border-color: rgba(142, 233, 255, .58); box-shadow: 25px 38px 84px rgba(0, 0, 0, .46), 0 0 30px rgba(77, 134, 255, .12); transform: rotate(3deg) translateY(-7px); }
.client-placeholder:hover { border-color: rgba(142, 233, 255, .58); box-shadow: 25px 38px 84px rgba(0, 0, 0, .46), 0 0 30px rgba(77, 134, 255, .12); transform: rotate(-4deg) translateY(-7px); }
.choice-grid label:focus-within { border-color: var(--cyan); background: rgba(18, 48, 75, .7); box-shadow: 0 0 0 3px rgba(142, 233, 255, .1); }
.section-shell { transition: box-shadow 700ms ease, background-color 700ms ease; }
.section-shell.section-visible { box-shadow: inset 0 1px 0 rgba(142, 233, 255, .06), inset 0 -1px 0 rgba(77, 134, 255, .045); }
@keyframes service-depth-float { 50% { translate: 0 -4px; } }

@media (max-width: 800px) {
  .service-track { min-height: 350px; }
  .service-card { min-height: 350px; }
  .service-card h3 { margin-top: 33px; }
  .service-card > p { font-size: 15px; }
  .service-card ul { font-size: 11.5px; }
}

@media (max-width: 600px) {
  .hero h1 { font-size: 46px; }
  .service-track { min-height: 362px; padding-right: 12px; padding-left: 12px; }
  .service-card { min-height: 362px; padding: 23px; }
  .service-card h3 { margin-top: 30px; font-size: clamp(31px, 8.5vw, 39px); }
  .service-card > p { font-size: 15px; }
  .service-card ul { padding-top: 15px; font-size: 11.5px; }
  .card-link { right: auto; bottom: auto; font-size: 12px; }
}

@media (max-width: 420px) {
  .service-track { min-height: 378px; }
  .service-card { min-height: 378px; padding: 22px; }
  .service-card h3 { margin-top: 27px; font-size: 34px; }
  .service-card > p { font-size: 14.5px; }
}

@media (prefers-reduced-motion: reduce) {
  .service-track::before, .service-track::after, .service-card.is-active, .data-sheet, .data-board, .store-window, .proof-bar > div, .partner-placeholder, .client-placeholder, .section-shell { animation: none; transition: none; }
}

/* Growth showcase: strategy, media, creative and continuity */
.growth-showcase { position: relative; isolation: isolate; overflow: hidden; }
.growth-showcase::before { position: absolute; z-index: -1; top: 22%; right: -12%; width: 55vw; height: 55vw; max-width: 760px; max-height: 760px; border: 1px solid rgba(77, 134, 255, .09); border-radius: 50%; content: ""; animation: growth-background-orbit 22s linear infinite; }
.growth-layout { display: grid; grid-template-columns: minmax(0, .98fr) minmax(0, 1.02fr); gap: clamp(34px, 7vw, 96px); align-items: center; margin-top: clamp(42px, 6vw, 76px); }
.growth-visual { position: relative; min-height: 560px; overflow: hidden; border: 1px solid rgba(142, 233, 255, .2); border-radius: 28px; background: radial-gradient(circle at 50% 42%, rgba(24, 68, 112, .6), transparent 34%), linear-gradient(145deg, #0c2034, #07111e 62%, #050a12); box-shadow: 0 35px 95px rgba(0, 0, 0, .38), 0 0 42px rgba(77, 134, 255, .1); isolation: isolate; }
.growth-visual::before { position: absolute; z-index: -1; inset: -20%; background: radial-gradient(circle at 50% 50%, rgba(142, 233, 255, .12), transparent 24%), radial-gradient(circle at 18% 78%, rgba(77, 134, 255, .18), transparent 28%); content: ""; animation: growth-aura 8s ease-in-out infinite; }
.growth-visual::after { position: absolute; z-index: 4; top: -30%; left: -20%; width: 1px; height: 160%; background: linear-gradient(to bottom, transparent, rgba(142, 233, 255, .65), transparent); content: ""; opacity: .48; transform: rotate(26deg); animation: growth-scan 7s ease-in-out infinite; pointer-events: none; }
.growth-orbit { position: absolute; border: 1px solid rgba(142, 233, 255, .22); border-radius: 50%; pointer-events: none; }
.growth-orbit-one { top: 22%; left: 4%; width: 92%; height: 55%; transform: rotate(-13deg); animation: growth-orbit-one 18s linear infinite; }
.growth-orbit-two { top: 12%; left: 19%; width: 62%; height: 78%; border-color: rgba(77, 134, 255, .32); transform: rotate(28deg); animation: growth-orbit-two 22s linear infinite reverse; }
.growth-signal { position: absolute; z-index: 3; display: flex; align-items: center; gap: 9px; color: #e3f3ff; font-family: var(--display); font-size: 11px; letter-spacing: .02em; }
.growth-signal i { width: 7px; height: 7px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 14px rgba(142, 233, 255, .9); animation: growth-signal-pulse 2.2s ease-in-out infinite; }
.growth-signal b { color: var(--subtle); font-family: var(--body); font-size: 9px; font-weight: 500; text-transform: uppercase; }
.growth-signal-top { top: 12%; left: 10%; }
.growth-signal-bottom { right: 9%; bottom: 13%; animation-delay: -1.2s; }
.growth-console { position: absolute; z-index: 2; top: 25%; left: 14%; display: flex; width: 72%; min-height: 285px; flex-direction: column; padding: 24px; border: 1px solid rgba(166, 211, 245, .25); border-radius: 22px; background: linear-gradient(145deg, rgba(11, 31, 51, .96), rgba(5, 14, 25, .94)); box-shadow: 25px 35px 75px rgba(0, 0, 0, .46), 0 0 28px rgba(77, 134, 255, .12); transform: rotate(-4deg); animation: growth-console-float 7s ease-in-out infinite; }
.growth-console-top, .growth-console-bottom { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.growth-console-top span { color: #edf7ff; font-family: var(--display); font-size: 14px; letter-spacing: -.04em; }
.growth-console-top b { display: inline-flex; align-items: center; gap: 6px; color: var(--cyan); font-size: 8px; font-weight: 500; letter-spacing: .09em; text-transform: uppercase; }
.growth-console-top b i { width: 5px; height: 5px; border-radius: 50%; background: #68f5ac; box-shadow: 0 0 10px rgba(104, 245, 172, .8); animation: growth-signal-pulse 1.7s ease-in-out infinite; }
.growth-route { display: grid; grid-template-columns: auto 1fr auto 1fr auto; align-items: center; gap: 9px; margin: 32px 0 26px; color: var(--blue-light); font-size: 8px; letter-spacing: .08em; text-transform: uppercase; }
.growth-route i { position: relative; height: 1px; overflow: hidden; background: rgba(142, 233, 255, .25); }
.growth-route i::after { position: absolute; top: 0; left: -35%; width: 35%; height: 1px; background: var(--cyan); box-shadow: 0 0 9px var(--cyan); content: ""; animation: growth-route-flow 2.8s linear infinite; }
.growth-route i:nth-of-type(2)::after { animation-delay: -1.1s; }
.growth-meters { display: grid; gap: 19px; }
.growth-meters > div { display: grid; grid-template-columns: 74px 1fr; align-items: center; gap: 14px; color: #a8bdd2; font-size: 10px; }
.growth-meters > div > i { position: relative; display: block; height: 5px; overflow: hidden; border-radius: 99px; background: rgba(166, 196, 230, .14); }
.growth-meters > div > i::after { position: absolute; inset: 0; border-radius: inherit; background: linear-gradient(90deg, var(--blue), var(--cyan)); content: ""; transform-origin: left center; animation: growth-meter-pulse 4.8s ease-in-out infinite; }
.growth-meter-wide::after { transform: scaleX(.86); }
.growth-meter-mid::after { transform: scaleX(.68); animation-delay: -.9s !important; }
.growth-meter-short::after { transform: scaleX(.48); animation-delay: -1.8s !important; }
.growth-console-bottom { margin-top: auto; padding-top: 21px; border-top: 1px solid rgba(166, 196, 230, .13); }
.growth-console-bottom small { color: var(--subtle); font-size: 9px; }
.growth-console-bottom strong { color: var(--cyan); font-family: var(--display); font-size: 11px; font-weight: 500; }
.growth-badge { position: absolute; z-index: 3; display: flex; min-width: 104px; flex-direction: column; gap: 3px; padding: 12px 14px; border: 1px solid rgba(142, 233, 255, .24); border-radius: 13px; background: rgba(7, 19, 32, .85); box-shadow: 0 15px 28px rgba(0, 0, 0, .28); color: #eef8ff; font-family: var(--display); font-size: 11px; transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease; }
.growth-badge small { color: var(--subtle); font-family: var(--body); font-size: 9px; }
.growth-badge:hover { border-color: rgba(142, 233, 255, .65); box-shadow: 0 20px 35px rgba(0, 0, 0, .36), 0 0 20px rgba(77, 134, 255, .14); transform: translateY(-6px) rotate(-2deg); }
.growth-badge-google { top: 20%; right: 8%; animation: growth-badge-float 5.5s ease-in-out infinite; }
.growth-badge-meta { bottom: 22%; left: 8%; animation: growth-badge-float 6.3s ease-in-out -1.6s infinite; }
.growth-badge-tiktok { right: 13%; bottom: 7%; animation: growth-badge-float 5.8s ease-in-out -3.2s infinite; }
.growth-pulse { position: absolute; z-index: 1; top: 48%; left: 50%; width: 20px; height: 20px; border: 1px solid rgba(142, 233, 255, .75); border-radius: 50%; box-shadow: 0 0 24px rgba(142, 233, 255, .5); transform: translate(-50%, -50%); }
.growth-pulse::before, .growth-pulse::after { position: absolute; inset: -13px; border: 1px solid rgba(142, 233, 255, .28); border-radius: 50%; content: ""; animation: growth-pulse-ring 3.4s ease-out infinite; }
.growth-pulse::after { animation-delay: -1.7s; }
.growth-pulse span { position: absolute; inset: 6px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 14px var(--cyan); }
.growth-copy { max-width: 650px; }
.growth-lead { max-width: 560px; margin: 0 0 20px; color: var(--text); font-family: var(--display); font-size: clamp(21px, 2.1vw, 30px); line-height: 1.14; letter-spacing: -.055em; }
.growth-copy > p:not(.growth-lead) { max-width: 610px; margin: 0; color: var(--muted); font-size: clamp(15px, 1.08vw, 17px); line-height: 1.62; }
.growth-services { display: grid; gap: 5px; margin: 31px 0 0; }
.growth-service-row { position: relative; display: grid; grid-template-columns: 32px minmax(0, 1fr); gap: 14px; padding: 17px 18px 17px 0; border-radius: 17px; transition: background 260ms ease, transform 320ms cubic-bezier(.2, .8, .2, 1), padding-left 260ms ease; }
.growth-service-row::before { position: absolute; z-index: -1; inset: 0; border-radius: inherit; background: linear-gradient(100deg, rgba(18, 48, 75, .7), rgba(8, 20, 34, .08)); content: ""; opacity: 0; transition: opacity 260ms ease; }
.growth-service-row:hover { padding-left: 12px; transform: translateX(6px); }
.growth-service-row:hover::before { opacity: 1; }
.growth-service-mark { color: var(--cyan); font-family: var(--display); font-size: 19px; line-height: 1.15; transition: transform 260ms ease, color 260ms ease; }
.growth-service-row:hover .growth-service-mark { color: #f0fbff; transform: translate(2px, -2px) rotate(-10deg); }
.growth-service-row h3 { margin: 0 0 5px; color: #edf7ff; font-family: var(--display); font-size: clamp(17px, 1.5vw, 21px); font-weight: 500; letter-spacing: -.045em; }
.growth-service-row p { max-width: 540px; margin: 0; color: #aebfd2; font-size: 13px; line-height: 1.48; }
.growth-copy .button { margin-top: 27px; }
.growth-copy.reveal.visible .growth-service-row { animation: growth-row-in 650ms cubic-bezier(.2, .8, .2, 1) both; }
.growth-copy.reveal.visible .growth-service-row:nth-child(2) { animation-delay: 90ms; }
.growth-copy.reveal.visible .growth-service-row:nth-child(3) { animation-delay: 180ms; }
.growth-copy.reveal.visible .growth-service-row:nth-child(4) { animation-delay: 270ms; }
@keyframes growth-background-orbit { to { transform: rotate(360deg); } }
@keyframes growth-aura { 50% { transform: scale(1.08); opacity: .82; } }
@keyframes growth-scan { 0%, 100% { transform: translateX(-8vw) rotate(26deg); opacity: 0; } 35%, 70% { opacity: .48; } 50% { transform: translateX(78vw) rotate(26deg); } }
@keyframes growth-orbit-one { to { transform: rotate(347deg); } }
@keyframes growth-orbit-two { to { transform: rotate(388deg); } }
@keyframes growth-console-float { 50% { transform: rotate(-4deg) translateY(-8px); } }
@keyframes growth-route-flow { to { left: 100%; } }
@keyframes growth-meter-pulse { 0%, 100% { opacity: .72; filter: brightness(.9); } 50% { opacity: 1; filter: brightness(1.25); } }
@keyframes growth-badge-float { 50% { transform: translateY(-8px); } }
@keyframes growth-pulse-ring { 0% { opacity: .65; transform: scale(.55); } 75%, 100% { opacity: 0; transform: scale(1.55); } }
@keyframes growth-signal-pulse { 50% { opacity: .45; transform: scale(.72); } }
@keyframes growth-row-in { from { opacity: 0; transform: translateX(18px); } to { opacity: 1; transform: none; } }

@media (min-width: 1101px) {
  .choice-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .choice-grid label { min-height: 54px; }
}

@media (max-width: 1000px) {
  .growth-layout { grid-template-columns: 1fr; }
  .growth-visual { width: min(100%, 680px); margin: 0 auto; }
  .growth-copy { max-width: 720px; margin: 0 auto; }
}

@media (max-width: 600px) {
  .growth-showcase::before { top: 35%; right: -55%; width: 125vw; height: 125vw; }
  .growth-layout { gap: 44px; margin-top: 39px; }
  .growth-visual { min-height: 455px; border-radius: 22px; }
  .growth-console { top: 25%; left: 8%; width: 84%; min-height: 248px; padding: 19px; }
  .growth-console-top span { font-size: 12px; }
  .growth-route { gap: 6px; margin: 25px 0 22px; font-size: 7px; }
  .growth-meters { gap: 15px; }
  .growth-meters > div { grid-template-columns: 62px 1fr; gap: 9px; font-size: 9px; }
  .growth-signal { font-size: 9px; }
  .growth-signal b { font-size: 8px; }
  .growth-signal-top { top: 12%; left: 7%; }
  .growth-signal-bottom { right: 6%; bottom: 13%; }
  .growth-badge { min-width: 88px; padding: 9px 10px; font-size: 9px; }
  .growth-badge small { font-size: 8px; }
  .growth-badge-google { top: 20%; right: 5%; }
  .growth-badge-meta { bottom: 21%; left: 5%; }
  .growth-badge-tiktok { right: 8%; bottom: 7%; }
  .growth-lead { font-size: 23px; }
  .growth-copy > p:not(.growth-lead) { font-size: 15px; }
  .growth-service-row { grid-template-columns: 26px minmax(0, 1fr); gap: 11px; padding: 15px 8px 15px 0; }
  .growth-service-row p { font-size: 13px; }
}

@media (prefers-reduced-motion: reduce) {
  .growth-showcase::before, .growth-visual::before, .growth-visual::after, .growth-orbit, .growth-signal, .growth-signal i, .growth-console, .growth-console-top b i, .growth-route i::after, .growth-meters > div > i::after, .growth-badge, .growth-pulse::before, .growth-pulse::after, .growth-copy.reveal.visible .growth-service-row { animation: none; }
  .growth-service-row, .growth-badge { transition: none; }
}

/* Briefing service groups: compact multi-select with progressive disclosure */
.service-groups { display: grid; gap: 0; margin-top: 25px; }
.service-group { border-top: 1px solid rgba(166, 196, 230, .16); }
.service-group:last-child { border-bottom: 1px solid rgba(166, 196, 230, .16); }
.service-group summary { display: grid; grid-template-columns: minmax(0, 1fr) auto 20px; gap: 12px; align-items: center; padding: 16px 0; color: #e4f2ff; cursor: pointer; list-style: none; transition: color 220ms ease, padding 240ms ease; }
.service-group summary::-webkit-details-marker { display: none; }
.service-group summary span { font-family: var(--display); font-size: 15px; font-weight: 500; letter-spacing: -.035em; }
.service-group summary small { color: var(--subtle); font-size: 10px; line-height: 1.35; text-align: right; }
.service-group summary b { display: grid; width: 20px; height: 20px; place-items: center; border: 1px solid rgba(142, 233, 255, .28); border-radius: 50%; color: var(--cyan); font-size: 16px; font-weight: 400; line-height: 1; transition: background 220ms ease, color 220ms ease, transform 280ms cubic-bezier(.2, .8, .2, 1); }
.service-group summary:hover, .service-group summary:focus-visible { color: var(--cyan); }
.service-group summary:focus-visible { outline: 2px solid rgba(142, 233, 255, .72); outline-offset: 5px; }
.service-group[open] summary { padding-bottom: 12px; color: var(--cyan); }
.service-group[open] summary b { background: var(--cyan); color: #06111c; transform: rotate(45deg); }
.service-group-content { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; padding: 0 0 17px; animation: brief-group-in 380ms cubic-bezier(.2, .8, .2, 1) both; }
.service-group .choice-grid label { min-height: 48px; padding: 10px 12px; border-radius: 12px; font-size: 11px; }
.service-group .choice-grid label span { gap: 8px; line-height: 1.28; }
.service-group .choice-grid label span::before { width: 8px; height: 8px; transition: background 180ms ease, box-shadow 180ms ease, transform 180ms ease; }
.service-group .choice-grid input:checked + span::before { transform: scale(1.18); }
.brief-selection { display: flex; flex-direction: column; gap: 7px; margin-top: 15px; padding: 12px 14px; border-radius: 14px; background: linear-gradient(100deg, rgba(18, 48, 75, .68), rgba(8, 20, 34, .46)); color: #dcecf8; }
.brief-selection > span { display: inline-flex; align-items: center; gap: 8px; font-family: var(--display); font-size: 11px; }
.brief-selection > span i { width: 6px; height: 6px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 10px rgba(142, 233, 255, .8); }
.brief-selection > span strong { color: var(--cyan); font-size: 14px; font-weight: 600; }
.brief-selection small { max-height: 34px; overflow: auto; color: #9fb5c9; font-size: 10px; line-height: 1.45; scrollbar-width: thin; scrollbar-color: var(--blue) transparent; }
@keyframes brief-group-in { from { opacity: 0; transform: translateY(-5px); } to { opacity: 1; transform: none; } }

@media (max-width: 600px) {
  .service-group summary { grid-template-columns: minmax(0, 1fr) 20px; gap: 9px; padding: 15px 0; }
  .service-group summary small { grid-column: 1 / -1; grid-row: 2; max-width: 250px; text-align: left; }
  .service-group summary b { grid-column: 2; grid-row: 1 / span 2; }
  .service-group[open] summary { padding-bottom: 11px; }
  .service-group-content { grid-template-columns: 1fr; }
  .brief-selection small { max-height: 46px; }
}

@media (prefers-reduced-motion: reduce) {
  .service-group summary, .service-group summary b, .service-group-content { animation: none; transition: none; }
}

/* Selected portrait background for the agency statement */
.statement { position: relative; isolation: isolate; overflow: hidden; background-image: linear-gradient(90deg, rgba(5, 10, 18, .99) 0%, rgba(5, 10, 18, .93) 38%, rgba(5, 10, 18, .58) 100%), url("douglas-desk.jpeg"); background-position: center, 74% center; background-size: cover; }
.statement::after { position: absolute; z-index: -1; inset: 0; background: linear-gradient(120deg, transparent 48%, rgba(77, 134, 255, .08) 100%); content: ""; pointer-events: none; }
.statement > * { position: relative; z-index: 1; }

@media (max-width: 800px) {
  .statement { background-image: linear-gradient(90deg, rgba(5, 10, 18, .98) 0%, rgba(5, 10, 18, .86) 100%), url("douglas-desk.jpeg"); background-position: center, 74% center; }
  .founder, .phone-demo { overflow: hidden; }
}

/* Refinement: section labels belong above their content */
.statement { display: block; }
.statement .section-index { margin-bottom: 30px; padding-top: 0; }
.statement .section-index span, .process-intro .section-index span { display: inline-flex; margin-top: 0; color: var(--blue-light); font-family: var(--display); font-size: 11px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; }
.statement-content { max-width: 900px; }
.process-intro { display: block; }
.process-intro .section-index { margin-bottom: 24px; padding-top: 0; }

@media (max-width: 600px) {
  .statement .section-index { margin-bottom: 22px; }
  .process-intro .section-index { margin-bottom: 24px; }
}

/* Refinement: section introductions share one reading axis */
.section-heading { display: block; }
.section-heading > div:first-child { max-width: 920px; }
.section-heading > p, .section-heading-side { max-width: 650px; margin-top: 23px; margin-right: 0; margin-bottom: 0; }
.section-heading-side > p { max-width: 650px; }
.section-heading-side .interaction-hint { margin-top: 13px; }

/* Refinement: briefing highlights use motion and rhythm instead of dividers */
.contact-options { display: flex; max-width: 520px; flex-direction: row; flex-wrap: wrap; gap: 12px 10px; margin-top: 31px; border-top: 0; }
.contact-options span { position: relative; display: inline-flex; min-height: 42px; align-items: center; padding: 0 16px 0 29px; border: 0; border-radius: 999px; background: linear-gradient(135deg, rgba(18, 48, 75, .92), rgba(9, 23, 38, .72)); box-shadow: inset 0 1px 0 rgba(255, 255, 255, .05), 0 10px 25px rgba(0, 0, 0, .16); color: #d8e8f6; font-family: var(--display); font-size: 12px; letter-spacing: -.03em; transition: color 220ms ease, box-shadow 220ms ease, transform 220ms ease, background 220ms ease; }
.contact-options span::before { position: absolute; left: 14px; width: 6px; height: 6px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 11px rgba(142, 233, 255, .8); content: ""; }
.contact-options span::after { position: absolute; top: 50%; right: 13px; width: 5px; height: 5px; border-radius: 50%; background: rgba(142, 233, 255, .7); box-shadow: 0 0 12px rgba(142, 233, 255, .65); content: ""; opacity: 0; transform: translateY(-50%); transition: opacity 220ms ease, transform 220ms ease; }
.contact-options span:hover { background: linear-gradient(135deg, rgba(27, 69, 105, .96), rgba(10, 28, 46, .84)); box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08), 0 16px 32px rgba(0, 0, 0, .25), 0 0 22px rgba(77, 134, 255, .14); color: var(--text); transform: translateY(-4px) rotate(-1deg); }
.contact-options span:hover::after { opacity: 1; transform: translateY(-50%) scale(1.6); }
.contact-copy.reveal.visible .contact-options span { animation: contact-chip-float 5.6s ease-in-out infinite; }
.contact-copy.reveal.visible .contact-options span:nth-child(2) { animation-delay: -1.7s; }
.contact-copy.reveal.visible .contact-options span:nth-child(3) { animation-delay: -3.4s; }
@keyframes contact-chip-float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-4px); } }

/* Refinement: services become a scroll-driven stacked carousel */
[data-scroll-stack] .service-track { display: grid; gap: clamp(132px, 20vh, 210px); min-height: auto; padding: 0 clamp(12px, 2vw, 22px) clamp(150px, 20vh, 230px); }
[data-scroll-stack] .service-track::before, [data-scroll-stack] .service-track::after { display: none; }
[data-scroll-stack] .service-card { --stack-exit: 0; position: sticky; top: 118px; z-index: 1; display: flex !important; flex-direction: column; height: 392px; min-height: 392px; transform: translate3d(0, calc(var(--stack-exit) * -18px), 0) scale(calc(1 - (var(--stack-exit) * .055))) rotate(calc(var(--stack-exit) * -1.6deg)); transform-origin: center top; scroll-margin-top: 118px; will-change: transform; transition: filter 120ms linear, box-shadow 120ms linear; }
[data-scroll-stack] .service-card:nth-child(1) { z-index: 1; }
[data-scroll-stack] .service-card:nth-child(2) { top: 126px; z-index: 2; }
[data-scroll-stack] .service-card:nth-child(3) { top: 134px; z-index: 3; }
[data-scroll-stack] .service-card:nth-child(4) { top: 142px; z-index: 4; }
[data-scroll-stack] .service-card[style*="--stack-exit"] { filter: saturate(calc(1 - (var(--stack-exit) * .16))) brightness(calc(1 - (var(--stack-exit) * .04))); }
[data-scroll-stack] .service-card h3, [data-scroll-stack] .service-card > p, [data-scroll-stack] .service-card ul, [data-scroll-stack] .service-card li { min-width: 0; overflow-wrap: anywhere; }
[data-scroll-stack] .service-card ul { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px 18px; padding-right: clamp(190px, 20vw, 250px); }
[data-scroll-stack] .service-card li { line-height: 1.45; }
[data-scroll-stack] .service-card:hover { box-shadow: 0 22px 55px rgba(0, 0, 0, .24), 0 0 28px rgba(77, 134, 255, .12); }
[data-scroll-stack] .service-carousel-controls { margin-top: 2px; }

@media (max-width: 800px) {
  [data-scroll-stack] .service-track { gap: clamp(118px, 19vh, 164px); padding-right: 12px; padding-bottom: 132px; padding-left: 12px; }
  [data-scroll-stack] .service-card { top: 78px; height: 420px; min-height: 420px; scroll-margin-top: 78px; }
  [data-scroll-stack] .service-card ul { grid-template-columns: 1fr; gap: 8px; padding-right: 0; }
  [data-scroll-stack] .service-card li { display: block; margin-right: 0; }
  [data-scroll-stack] .service-card:nth-child(2) { top: 88px; }
  [data-scroll-stack] .service-card:nth-child(3) { top: 98px; }
  [data-scroll-stack] .service-card:nth-child(4) { top: 108px; }
}

@media (max-width: 420px) {
  [data-scroll-stack] .service-card { height: 420px; min-height: 420px; }
}

@media (prefers-reduced-motion: reduce) {
  [data-scroll-stack] .service-card { position: sticky; top: 118px; height: 392px; min-height: 392px; transform: none; filter: none; animation: none; }
  [data-scroll-stack] .service-card:nth-child(2) { top: 126px; }
  [data-scroll-stack] .service-card:nth-child(3) { top: 134px; }
  [data-scroll-stack] .service-card:nth-child(4) { top: 142px; }
  [data-scroll-stack] .service-track { gap: clamp(132px, 20vh, 210px); }
}

@media (max-width: 800px) and (prefers-reduced-motion: reduce) {
  [data-scroll-stack] .service-card { top: 78px; height: 420px; min-height: 420px; }
  [data-scroll-stack] .service-card:nth-child(2) { top: 88px; }
  [data-scroll-stack] .service-card:nth-child(3) { top: 98px; }
  [data-scroll-stack] .service-card:nth-child(4) { top: 108px; }
  [data-scroll-stack] .service-track { gap: clamp(118px, 19vh, 164px); }
}

@media (prefers-reduced-motion: reduce) {
  .contact-copy.reveal.visible .contact-options span { animation: none; }
}

/* Refinement: legibility and a tighter section rhythm */
.section-shell { padding-top: clamp(92px, 10vw, 142px); padding-bottom: clamp(92px, 10vw, 142px); }
.section-heading-side > p { font-size: clamp(15px, 1.05vw, 17px); line-height: 1.58; }
.interaction-hint { font-size: 12px; line-height: 1.45; }
.case-tab { font-size: clamp(12px, .9vw, 14px); line-height: 1.25; }
.blog-footer small { max-width: 620px; color: #aebfd2; font-size: clamp(13px, 1vw, 15px); line-height: 1.5; }
.footer-bottom { font-size: clamp(13px, 1vw, 15px); line-height: 1.45; }

@media (max-width: 800px) {
  .section-shell { padding-top: 72px; padding-bottom: 72px; }
}

@media (max-width: 500px) {
  .section-shell { padding-top: 68px; padding-bottom: 68px; }
  .section-heading-side > p { font-size: 15px; }
  .interaction-hint { font-size: 12px; }
  .footer-bottom { font-size: 13px; }
}

/* Refinement: agency intro keeps its action under the supporting copy */
.statement-bottom { display: block; max-width: 760px; }
.statement-bottom p { max-width: 620px; }
.statement-bottom .text-link { display: inline-flex; margin-top: 24px; }

/* Refinement: professional metrics without heavy gradients or card chrome */
.founder-stats { gap: clamp(18px, 2.4vw, 30px); max-width: 680px; }
.founder-stats div, .founder-stats div + div { position: relative; min-height: 116px; justify-content: flex-end; padding: 22px 16px 15px 0; border: 0; border-radius: 0; background: transparent; transition: color 260ms ease, transform 300ms cubic-bezier(.2, .8, .2, 1); }
.founder-stats div::before { position: absolute; bottom: 0; left: 0; width: 42px; height: 2px; border-radius: 99px; background: var(--cyan); box-shadow: 0 0 13px rgba(142, 233, 255, .65); content: ""; transition: width 300ms ease, box-shadow 300ms ease; }
.founder-stats div::after { top: 18px; right: 10px; width: 8px; height: 8px; border: 1px solid rgba(142, 233, 255, .58); border-radius: 50%; background: transparent; box-shadow: 0 0 13px rgba(142, 233, 255, .24); content: ""; transition: transform 300ms ease, box-shadow 300ms ease; }
.founder-stats div:hover { background: transparent; transform: translateY(-7px); }
.founder-stats div:hover::before { width: 72px; box-shadow: 0 0 20px rgba(142, 233, 255, .9); }
.founder-stats div:hover::after { box-shadow: 0 0 18px rgba(142, 233, 255, .7); transform: scale(1.4); }
.founder-stats strong { font-size: clamp(32px, 3.6vw, 48px); line-height: .9; white-space: nowrap; }
.founder-stats span { max-width: 160px; color: #b2c3d5; font-size: 13px; line-height: 1.35; }
.founder-copy.reveal.visible .founder-stats div { animation: founder-metric-in 700ms cubic-bezier(.2, .8, .2, 1) both; }
.founder-copy.reveal.visible .founder-stats div:nth-child(2) { animation-delay: 90ms; }
.founder-copy.reveal.visible .founder-stats div:nth-child(3) { animation-delay: 180ms; }
@keyframes founder-metric-in { from { opacity: 0; transform: translateY(15px); } to { opacity: 1; transform: translateY(0); } }

@media (max-width: 420px) {
  .founder-stats div, .founder-stats div + div { min-height: 94px; padding-top: 18px; }
  .founder-stats strong { font-size: 36px; }
  .founder-stats span { font-size: 13px; }
}

@media (prefers-reduced-motion: reduce) {
  .founder-copy.reveal.visible .founder-stats div { animation: none; }
}

/* Refinement: biography lead copy returns to a supporting scale */
.founder-copy > p.founder-lead { max-width: 570px; font-size: clamp(18px, 1.6vw, 22px); line-height: 1.28; }

@media (max-width: 500px) {
  .founder-copy > p.founder-lead { font-size: 18px; line-height: 1.32; }
}

/* Founder metrics: a connected evolution rail instead of large cards */
.founder-stats { position: relative; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 0; max-width: 720px; padding-top: 15px; overflow: visible; }
.founder-stats::before { position: absolute; z-index: 0; top: 29px; right: 0; left: 0; height: 1px; background: linear-gradient(90deg, rgba(142, 233, 255, .2), rgba(77, 134, 255, .48), rgba(142, 233, 255, .12)); content: ""; }
.founder-stats::after { position: absolute; z-index: 1; top: 27px; left: -60px; width: 58px; height: 4px; border-radius: 99px; background: var(--cyan); box-shadow: 0 0 17px rgba(142, 233, 255, .85); content: ""; animation: founder-rail-scan 6.2s ease-in-out infinite; pointer-events: none; }
.founder-stats div, .founder-stats div + div { z-index: 2; display: flex; min-height: 112px; justify-content: flex-start; gap: 9px; padding: 42px 20px 12px 0; border: 0; border-radius: 0; background: transparent; transition: transform 320ms cubic-bezier(.2, .8, .2, 1), color 220ms ease; }
.founder-stats div::before { top: 23px; bottom: auto; left: 0; width: 12px; height: 12px; border: 1px solid rgba(142, 233, 255, .72); border-radius: 50%; background: #07131f; box-shadow: 0 0 13px rgba(142, 233, 255, .38); content: ""; transition: background 220ms ease, box-shadow 280ms ease, transform 280ms ease; }
.founder-stats div::after { top: 27px; right: auto; left: 4px; width: 4px; height: 4px; border: 0; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 8px var(--cyan); content: ""; transition: transform 280ms ease, box-shadow 280ms ease; }
.founder-stats div:hover { background: transparent; transform: translateY(-5px); }
.founder-stats div:hover::before { background: var(--cyan); box-shadow: 0 0 22px rgba(142, 233, 255, .8); transform: scale(1.18); }
.founder-stats div:hover::after { box-shadow: 0 0 15px var(--cyan); transform: scale(1.8); }
.founder-stats strong { color: #f1f8ff; font-size: clamp(30px, 3vw, 39px); line-height: .94; text-shadow: 0 0 20px rgba(142, 233, 255, .12); }
.founder-stats span { max-width: 150px; color: #b2c3d5; font-size: 12.5px; line-height: 1.35; }
@keyframes founder-rail-scan { 0%, 12% { left: -60px; opacity: 0; } 28%, 72% { opacity: 1; } 88%, 100% { left: calc(100% + 2px); opacity: 0; } }

@media (max-width: 600px) {
  .founder-stats { padding-top: 12px; }
  .founder-stats::before { top: 26px; }
  .founder-stats::after { top: 24px; }
  .founder-stats div, .founder-stats div + div { min-height: 100px; padding-top: 39px; padding-right: 9px; }
  .founder-stats strong { font-size: 33px; }
  .founder-stats span { font-size: 11.5px; }
}

@media (max-width: 420px) {
  .founder-stats { grid-template-columns: 1fr; gap: 0; padding: 0 0 0 29px; }
  .founder-stats::before { top: 7px; bottom: 7px; left: 5px; width: 1px; height: auto; background: linear-gradient(to bottom, rgba(142, 233, 255, .42), rgba(77, 134, 255, .12)); }
  .founder-stats::after { top: -5px; left: 4px; width: 4px; height: 46px; animation-name: founder-rail-scan-vertical; }
  .founder-stats div, .founder-stats div + div { min-height: 72px; padding: 18px 0 14px; }
  .founder-stats div::before { top: 21px; left: -29px; }
  .founder-stats div::after { top: 25px; left: -25px; }
  .founder-stats strong { font-size: 32px; }
}

@keyframes founder-rail-scan-vertical { 0%, 12% { top: -5px; opacity: 0; } 28%, 72% { opacity: 1; } 88%, 100% { top: calc(100% - 41px); opacity: 0; } }

@media (prefers-reduced-motion: reduce) {
  .founder-stats::after { animation: none; }
}

/* Biography lead: supporting subtitle scale */
.founder-copy > p.founder-lead { max-width: 520px; color: #c3d3e2; font-size: clamp(16px, 1.25vw, 19px); line-height: 1.42; letter-spacing: -.025em; }

@media (max-width: 600px) {
  .founder-copy > p.founder-lead { font-size: 17px; line-height: 1.42; }
}

/* Footer legal line stays centered and wraps cleanly on narrow screens. */
.footer-bottom { justify-content: center; text-align: center; }
.footer-bottom small { width: 100%; max-width: 100%; }
