:root {
  --ink: #030714;
  --ink-soft: #080f24;
  --surface: #f5f7fb;
  --paper: #ffffff;
  --blue: #145dff;
  --blue-deep: #0738e8;
  --cyan: #22e6ec;
  --cyan-soft: #aafcff;
  --text: #f7f9ff;
  --muted: #9aa6c3;
  --line: rgba(255, 255, 255, 0.12);
  --dark-text: #0b1020;
  --dark-muted: #5d667b;
  --radius: 24px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--ink);
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 88% 6%, rgba(20, 93, 255, 0.14), transparent 25rem),
    var(--ink);
  color: var(--text);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

button, summary, a {
  -webkit-tap-highlight-color: transparent;
}

.section-shell {
  width: min(1240px, calc(100% - 48px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 18px;
  width: min(1240px, calc(100% - 48px));
  min-height: 68px;
  margin: 18px auto 0;
  padding: 10px 12px 10px 16px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 18px;
  background: rgba(5, 10, 25, 0.78);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  width: max-content;
  color: #fff;
  font-size: 19px;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.brand-mark {
  width: 40px;
  height: 40px;
  overflow: hidden;
  display: grid;
  place-items: center;
  border: 1px solid rgba(47, 227, 255, 0.42);
  border-radius: 50%;
  box-shadow: 0 0 24px rgba(34, 230, 236, 0.16);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-dot {
  color: var(--cyan);
  font-weight: 500;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.desktop-nav a {
  color: #c8d0e2;
  font-size: 13px;
  font-weight: 650;
  transition: color 180ms ease;
}

.desktop-nav a:hover {
  color: var(--cyan);
}

.header-cta {
  justify-self: end;
  padding: 13px 18px;
  border-radius: 11px;
  background: linear-gradient(135deg, var(--blue), #0c49ed);
  box-shadow: 0 8px 28px rgba(20, 93, 255, 0.28);
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
}

.header-cta span,
.button span,
.text-link span {
  margin-left: 7px;
}

.mobile-nav {
  display: none;
  justify-self: end;
}

.hero {
  position: relative;
  min-height: 790px;
  padding: 104px 0 90px;
  display: grid;
  grid-template-columns: minmax(0, 0.93fr) minmax(470px, 1.07fr);
  align-items: center;
  gap: 76px;
  overflow: hidden;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.eyebrow {
  margin: 0 0 22px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--cyan);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 23px;
  height: 1px;
  background: currentColor;
  box-shadow: 9px 0 12px currentColor;
}

.hero h1 {
  max-width: 650px;
  margin: 0;
  color: #fff;
  font-size: clamp(3.2rem, 5.3vw, 5.3rem);
  font-weight: 760;
  letter-spacing: -0.07em;
  line-height: 0.97;
}

.hero h1 em,
.about h2 em,
.final-cta h2 em {
  display: block;
  color: transparent;
  background: linear-gradient(96deg, #3d79ff 2%, #21e6ee 82%);
  -webkit-background-clip: text;
  background-clip: text;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -0.045em;
}

.hero-lead {
  max-width: 600px;
  margin: 28px 0 0;
  color: #aeb9d2;
  font-size: 18px;
  line-height: 1.72;
}

.hero-actions {
  margin-top: 36px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  min-height: 54px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: #fff;
  background: linear-gradient(135deg, #1766ff, #0b40e9);
  box-shadow: 0 18px 45px rgba(20, 93, 255, 0.32);
}

.button-secondary {
  color: #d7def0;
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.035);
}

.button-secondary:hover {
  border-color: rgba(34, 230, 236, 0.5);
}

.hero-credentials {
  margin-top: 42px;
  padding-top: 24px;
  display: flex;
  align-items: center;
  gap: 14px;
  border-top: 1px solid var(--line);
}

.hero-reassurance {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 9px 18px;
  color: #8290ad;
  font-size: 10px;
  font-weight: 650;
}

.hero-reassurance span::first-letter {
  color: var(--cyan);
}

.credential-monogram {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid rgba(34, 230, 236, 0.4);
  border-radius: 50%;
  background: rgba(34, 230, 236, 0.07);
  color: var(--cyan);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.06em;
}

.hero-credentials p {
  margin: 0;
  display: grid;
  gap: 4px;
}

.hero-credentials strong {
  color: #edf2ff;
  font-size: 13px;
}

.hero-credentials small {
  color: #73809c;
  font-size: 11px;
}

.hero-visual {
  position: relative;
  z-index: 1;
  min-width: 0;
  perspective: 1100px;
}

.hero-glow {
  position: absolute;
  pointer-events: none;
  filter: blur(2px);
}

.hero-glow-one {
  width: 530px;
  height: 530px;
  right: -100px;
  top: 100px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(20, 93, 255, 0.16), transparent 68%);
}

.hero-glow-two {
  width: 290px;
  height: 290px;
  right: 300px;
  bottom: 40px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(34, 230, 236, 0.09), transparent 70%);
}

.orbit {
  position: absolute;
  z-index: -1;
  border: 1px solid rgba(41, 210, 255, 0.16);
  border-radius: 50%;
  transform: rotate(-16deg);
}

.orbit-one {
  width: 660px;
  height: 395px;
  top: 2%;
  left: -4%;
}

.orbit-two {
  width: 520px;
  height: 300px;
  top: 14%;
  left: 8%;
}

.studio-window {
  position: relative;
  overflow: hidden;
  width: 100%;
  min-height: 485px;
  border: 1px solid rgba(107, 152, 255, 0.28);
  border-radius: 20px;
  background: rgba(6, 12, 28, 0.88);
  box-shadow: 0 50px 100px rgba(0, 0, 0, 0.42), 0 0 80px rgba(21, 93, 255, 0.08);
  transform: rotateY(-5deg) rotateX(2deg);
}

.studio-window::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(115deg, rgba(255, 255, 255, 0.035), transparent 36%);
}

.window-topbar,
.browser-bar {
  height: 48px;
  padding: 0 18px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  color: #65718d;
  font-family: Consolas, monospace;
  font-size: 9px;
}

.window-dots,
.browser-dots {
  display: flex;
  gap: 6px;
}

.window-dots i,
.browser-dots i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #2e3750;
}

.window-topbar b {
  justify-self: end;
  padding: 4px 7px;
  border: 1px solid rgba(34, 230, 236, 0.18);
  border-radius: 4px;
  color: var(--cyan);
  font-size: 8px;
}

.studio-body {
  min-height: 437px;
  display: grid;
  grid-template-columns: 72px 1fr;
}

.studio-sidebar {
  padding: 22px 17px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  border-right: 1px solid rgba(255, 255, 255, 0.07);
}

.studio-sidebar img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
}

.side-line {
  width: 26px;
  height: 3px;
  border-radius: 10px;
  background: #232d47;
}

.side-line.short {
  width: 17px;
}

.side-line.active {
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  box-shadow: 0 0 12px rgba(34, 230, 236, 0.4);
}

.studio-content {
  position: relative;
  padding: 64px 48px 26px;
}

.studio-content::before {
  content: "";
  position: absolute;
  width: 190px;
  height: 190px;
  right: -25px;
  top: 16px;
  border: 1px solid rgba(34, 230, 236, 0.14);
  border-radius: 50%;
  box-shadow: 0 0 60px rgba(20, 93, 255, 0.12) inset;
}

.studio-label {
  color: var(--cyan);
  font-family: Consolas, monospace;
  font-size: 8px;
  letter-spacing: 0.19em;
}

.studio-heading {
  max-width: 420px;
  margin-top: 18px;
  color: #f5f8ff;
  font-size: clamp(1.9rem, 3.1vw, 3.2rem);
  font-weight: 730;
  letter-spacing: -0.055em;
  line-height: 1.03;
}

.studio-copy-line {
  width: 58%;
  height: 5px;
  margin-top: 27px;
  border-radius: 10px;
  background: #26314a;
}

.studio-copy-line.short {
  width: 39%;
  margin-top: 9px;
}

.studio-cta {
  width: max-content;
  margin-top: 30px;
  padding: 12px 15px;
  border-radius: 7px;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), #0b43e9);
  font-size: 9px;
  font-weight: 800;
}

.studio-cta span {
  margin-left: 12px;
}

.studio-grid {
  position: absolute;
  left: 48px;
  right: 22px;
  bottom: 26px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.studio-grid div {
  min-height: 69px;
  padding: 13px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.018);
}

.studio-grid span {
  color: var(--cyan);
  font-family: Consolas, monospace;
  font-size: 8px;
}

.studio-grid b {
  color: #77839f;
  font-size: 7px;
  letter-spacing: 0.11em;
}

.floating-chip {
  position: absolute;
  z-index: 4;
  padding: 12px 15px;
  display: flex;
  align-items: center;
  gap: 9px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  background: rgba(12, 20, 43, 0.93);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.34);
  color: #e7edff;
  font-size: 10px;
  font-weight: 700;
  backdrop-filter: blur(12px);
}

.floating-chip span {
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(34, 230, 236, 0.12);
  color: var(--cyan);
}

.chip-top {
  right: -19px;
  top: 55px;
}

.chip-bottom {
  left: -24px;
  bottom: 38px;
}

.proof-strip {
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.025);
}

.proof-strip > div {
  width: max-content;
  min-height: 68px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: 30px;
  color: #929db5;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.proof-strip i {
  color: var(--cyan);
  font-size: 8px;
  font-style: normal;
}

.services,
.process,
.faq {
  margin-top: 96px;
  padding: 90px 72px 78px;
  border-radius: 30px;
  background: var(--surface);
  color: var(--dark-text);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(300px, 0.7fr);
  align-items: end;
  gap: 70px;
}

.section-heading .eyebrow,
.case-intro .eyebrow,
.faq .eyebrow {
  color: var(--blue);
}

.section-heading h2,
.faq h2 {
  max-width: 760px;
  margin: 0;
  color: var(--dark-text);
  font-size: clamp(2.5rem, 4.5vw, 4.2rem);
  line-height: 1.02;
  letter-spacing: -0.065em;
}

.section-heading > p,
.faq-intro {
  margin: 0 0 5px;
  color: var(--dark-muted);
  font-size: 15px;
  line-height: 1.72;
}

.service-grid {
  margin-top: 58px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.service-card {
  position: relative;
  min-height: 370px;
  padding: 34px 34px 30px;
  overflow: hidden;
  border: 1px solid #dde2ec;
  border-radius: 20px;
  background: var(--paper);
  transition: transform 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: #adc0f2;
  box-shadow: 0 24px 55px rgba(20, 47, 100, 0.1);
}

.service-card.featured {
  color: #fff;
  border-color: rgba(55, 112, 255, 0.6);
  background:
    radial-gradient(circle at 100% 0, rgba(34, 230, 236, 0.18), transparent 15rem),
    linear-gradient(145deg, #0c51f0, #062bc8);
  box-shadow: 0 24px 60px rgba(20, 93, 255, 0.25);
}

.service-number {
  position: absolute;
  right: 28px;
  top: 25px;
  color: #a1a9ba;
  font-family: Consolas, monospace;
  font-size: 10px;
}

.featured .service-number {
  color: rgba(255, 255, 255, 0.55);
}

.service-icon {
  width: 47px;
  height: 47px;
  display: grid;
  place-items: center;
  border: 1px solid #dbe0eb;
  border-radius: 12px;
  color: var(--blue);
  background: #f5f7fb;
  font-size: 20px;
  font-weight: 600;
}

.featured .service-icon {
  border-color: rgba(255, 255, 255, 0.25);
  color: var(--cyan);
  background: rgba(255, 255, 255, 0.08);
}

.service-card h3 {
  margin: 34px 0 12px;
  font-size: 25px;
  letter-spacing: -0.04em;
}

.service-card > p {
  max-width: 470px;
  margin: 0;
  color: var(--dark-muted);
  font-size: 14px;
  line-height: 1.65;
}

.featured > p {
  color: #c8d8ff;
}

.service-card ul {
  margin: 24px 0 0;
  padding: 20px 0 0;
  display: grid;
  gap: 10px;
  border-top: 1px solid #e7eaf1;
  list-style: none;
}

.featured ul {
  border-color: rgba(255, 255, 255, 0.15);
}

.service-card li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #414b60;
  font-size: 12px;
  font-weight: 600;
}

.featured li {
  color: #edf3ff;
}

.service-card li::before {
  content: "✓";
  color: var(--blue);
  font-size: 11px;
  font-weight: 900;
}

.marketing-foundation {
  margin-top: 18px;
  padding: 22px 26px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 26px;
  border: 1px solid #dce2ed;
  border-radius: 16px;
  background: #fff;
}

.marketing-foundation > p {
  margin: 0;
  color: #11182a;
  font-size: 11px;
  font-weight: 850;
  white-space: nowrap;
}

.marketing-foundation > div {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.marketing-foundation span {
  padding: 8px 10px;
  border: 1px solid #e1e6ef;
  border-radius: 20px;
  color: #536078;
  background: #f7f9fc;
  font-size: 8px;
  font-weight: 750;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.featured li::before {
  color: var(--cyan);
}

.case-study {
  padding: 128px 0 120px;
}

.case-title-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}

.case-title-row h2 {
  margin: 0;
  font-size: clamp(3.4rem, 7vw, 6.8rem);
  font-weight: 720;
  letter-spacing: -0.07em;
  line-height: 0.88;
}

.case-title-row > span {
  color: #687590;
  font-family: Consolas, monospace;
  font-size: 9px;
  letter-spacing: 0.12em;
}

.case-layout {
  margin-top: 56px;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(350px, 0.75fr);
  align-items: center;
  gap: 70px;
}

.case-preview {
  overflow: hidden;
  display: block;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 18px;
  background: #eff3fa;
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.38);
  transition: transform 220ms ease, border-color 220ms ease;
}

.case-preview:hover {
  transform: translateY(-5px);
  border-color: rgba(34, 230, 236, 0.4);
}

.control-screenshot-wrap {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #f3f5ee;
}

.control-screenshot {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.control-screenshot-label {
  position: absolute;
  left: 16px;
  bottom: 16px;
  padding: 8px 10px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 7px;
  color: #fff;
  background: rgba(8, 17, 22, 0.84);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  font-size: 7px;
  font-weight: 850;
  letter-spacing: 0.1em;
  backdrop-filter: blur(10px);
}

.control-screenshot-label i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #b6dc55;
  box-shadow: 0 0 10px rgba(182, 220, 85, 0.75);
}

.browser-bar {
  color: #808ba2;
  background: #0a1123;
}

.browser-bar b {
  justify-self: end;
  color: var(--cyan);
}

.control-site {
  min-height: 430px;
  padding: 28px 30px 36px;
  color: #12192a;
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 157, 72, 0.13), transparent 14rem),
    #f5f1ea;
  font-family: Arial, sans-serif;
}

.control-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: #5a6170;
  font-size: 7px;
}

.control-nav > div {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #162033;
  font-size: 11px;
}

.control-nav img {
  width: 25px;
  height: 25px;
  object-fit: contain;
}

.control-nav b {
  padding: 7px 9px;
  border-radius: 4px;
  color: #fff;
  background: #d9672d;
}

.control-hero {
  min-height: 340px;
  display: grid;
  grid-template-columns: 0.84fr 1.16fr;
  align-items: center;
  gap: 28px;
}

.control-copy small {
  color: #d8672d;
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.control-copy h3 {
  margin: 14px 0 13px;
  font-size: clamp(1.35rem, 2.4vw, 2.2rem);
  line-height: 1.03;
  letter-spacing: -0.055em;
}

.control-copy p {
  margin: 0;
  color: #666c77;
  font-size: 9px;
  line-height: 1.55;
}

.control-button {
  width: max-content;
  margin-top: 18px;
  padding: 9px 11px;
  display: block;
  border-radius: 5px;
  color: #fff;
  background: #d9682d;
  font-size: 7px;
  font-weight: 800;
}

.control-dashboard {
  min-height: 240px;
  padding: 16px;
  display: grid;
  gap: 11px;
  border: 1px solid #d7dae0;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 20px 45px rgba(54, 48, 40, 0.13);
}

.dash-title,
.dash-route,
.dash-alert {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.dash-title {
  font-size: 9px;
  font-weight: 800;
}

.dash-title small {
  color: #8c94a2;
  font-size: 7px;
}

.dash-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.control-modules {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.control-modules div {
  padding: 10px;
  display: grid;
  gap: 4px;
  border: 1px solid #e6e8ec;
  border-radius: 7px;
  background: #fafafa;
}

.control-modules span {
  color: #29364c;
  font-size: 8px;
  font-weight: 800;
}

.control-modules small {
  color: #8d95a2;
  font-size: 6px;
}

.dash-metrics div {
  padding: 12px;
  display: grid;
  gap: 5px;
  border: 1px solid #e6e8ec;
  border-radius: 7px;
  background: #fafafa;
}

.dash-metrics small,
.dash-alert small {
  color: #8d95a2;
  font-size: 6px;
  letter-spacing: 0.08em;
}

.dash-metrics b {
  color: #29364c;
  font-size: 10px;
}

.dash-metrics div:last-child b {
  color: #36936a;
}

.dash-route,
.dash-alert {
  padding: 11px;
  border: 1px solid #e3e5e9;
  border-radius: 7px;
  background: #fff;
  font-size: 7px;
}

.dash-route b {
  color: #d8672d;
  font-size: 5px;
}

.dash-alert {
  align-items: start;
  flex-direction: column;
  background: #fff8f1;
  color: #515969;
}

.case-tag {
  width: max-content;
  padding: 7px 10px;
  border: 1px solid rgba(34, 230, 236, 0.25);
  border-radius: 20px;
  color: var(--cyan);
  background: rgba(34, 230, 236, 0.06);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.case-copy h3 {
  margin: 25px 0 18px;
  color: #f1f5ff;
  font-size: clamp(2rem, 3.4vw, 3rem);
  letter-spacing: -0.055em;
  line-height: 1.05;
}

.case-copy > p {
  margin: 0;
  color: #929eb8;
  font-size: 14px;
  line-height: 1.75;
}

.case-results {
  margin-top: 30px;
  padding: 24px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.case-results div {
  display: grid;
  gap: 4px;
}

.case-results strong {
  color: #fff;
  font-size: 22px;
  letter-spacing: -0.04em;
}

.case-results span {
  color: #687590;
  font-size: 9px;
}

.case-tags {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.case-tags span {
  padding: 7px 9px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 5px;
  color: #71809b;
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.text-link {
  margin-top: 30px;
  padding-bottom: 6px;
  display: inline-block;
  border-bottom: 1px solid rgba(34, 230, 236, 0.45);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
}

.process {
  margin-top: 0;
  margin-bottom: 100px;
}

.process-heading h2 {
  font-size: clamp(2.5rem, 4.2vw, 4rem);
}

.process-list {
  margin-top: 58px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid #dbe0ea;
  border-bottom: 1px solid #dbe0ea;
}

.process-list article {
  position: relative;
  min-height: 285px;
  padding: 25px 25px 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-left: 1px solid #dbe0ea;
}

.process-list article:first-child {
  border-left: 0;
}

.process-list article > span {
  color: var(--blue);
  font-family: Consolas, monospace;
  font-size: 10px;
}

.process-list small {
  color: #8992a5;
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.process-list h3 {
  margin: 8px 0 10px;
  font-size: 23px;
  letter-spacing: -0.04em;
}

.process-list p {
  margin: 0;
  color: var(--dark-muted);
  font-size: 12px;
  line-height: 1.65;
}

.about {
  padding: 36px 44px 110px;
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  align-items: center;
  gap: 100px;
}

.about-mark {
  position: relative;
  min-height: 520px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 28px;
  background:
    radial-gradient(circle, rgba(20, 93, 255, 0.2), transparent 54%),
    linear-gradient(145deg, #081027, #030714);
}

.about-mark::before,
.about-mark::after {
  content: "";
  position: absolute;
  width: 70%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(34, 230, 236, 0.38), transparent);
}

.about-mark::before { transform: rotate(42deg); }
.about-mark::after { transform: rotate(-42deg); }

.about-mark img {
  position: relative;
  z-index: 2;
  width: 58%;
  aspect-ratio: 1;
  border-radius: 50%;
  box-shadow: 0 0 80px rgba(20, 93, 255, 0.28);
}

.about-ring {
  position: absolute;
  width: 78%;
  aspect-ratio: 1;
  border: 1px solid rgba(34, 230, 236, 0.2);
  border-radius: 50%;
  box-shadow: 0 0 80px rgba(20, 93, 255, 0.08) inset;
}

.about-copy h2 {
  margin: 0 0 28px;
  font-size: clamp(2.8rem, 4.5vw, 4.3rem);
  line-height: 1;
  letter-spacing: -0.065em;
}

.about-copy h2 em {
  display: inline;
}

.about-copy > p:not(.eyebrow) {
  margin: 0 0 16px;
  color: #9aa6c1;
  font-size: 15px;
  line-height: 1.75;
}

.about-values {
  margin-top: 30px;
  padding-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  border-top: 1px solid var(--line);
}

.about-values span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #d7dff0;
  font-size: 11px;
  font-weight: 700;
}

.about-values i {
  color: var(--cyan);
  font-style: normal;
}

.faq {
  margin-top: 0;
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 90px;
}

.faq h2 {
  font-size: clamp(2.8rem, 4.8vw, 4.6rem);
}

.faq-intro {
  max-width: 330px;
  margin-top: 20px;
}

.faq-list {
  border-top: 1px solid #d9dee8;
}

.faq-list details {
  border-bottom: 1px solid #d9dee8;
}

.faq-list summary {
  padding: 24px 2px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  cursor: pointer;
  list-style: none;
  color: #151b2b;
  font-size: 15px;
  font-weight: 750;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary span {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid #cad1df;
  border-radius: 50%;
  color: var(--blue);
  font-size: 18px;
  font-weight: 400;
  transition: transform 180ms ease;
}

.faq-list details[open] summary span {
  transform: rotate(45deg);
}

.faq-list details p {
  max-width: 630px;
  margin: -7px 44px 24px 2px;
  color: var(--dark-muted);
  font-size: 13px;
  line-height: 1.7;
}

.final-cta {
  position: relative;
  margin-top: 100px;
  padding: 94px 56px 88px;
  overflow: hidden;
  text-align: center;
  border: 1px solid rgba(66, 137, 255, 0.65);
  border-radius: 28px;
  background:
    linear-gradient(145deg, rgba(6, 49, 215, 0.97), rgba(7, 91, 243, 0.95)),
    var(--blue);
  box-shadow: 0 38px 90px rgba(7, 57, 226, 0.28);
}

.cta-glow {
  position: absolute;
  width: 550px;
  height: 550px;
  left: 50%;
  top: -330px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: rgba(34, 230, 236, 0.17);
  filter: blur(45px);
}

.final-cta .eyebrow {
  position: relative;
  justify-content: center;
  color: var(--cyan-soft);
}

.final-cta h2 {
  position: relative;
  margin: 0;
  font-size: clamp(3.1rem, 6vw, 5.9rem);
  line-height: 0.94;
  letter-spacing: -0.07em;
}

.final-cta h2 em {
  color: #fff;
  -webkit-text-fill-color: #fff;
  background: none;
}

.final-cta > p:not(.eyebrow) {
  position: relative;
  max-width: 650px;
  margin: 28px auto 0;
  color: #dce7ff;
  font-size: 15px;
  line-height: 1.7;
}

.button-light {
  position: relative;
  margin-top: 32px;
  color: #0b3cd1;
  background: #fff;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}

.final-cta > small {
  position: relative;
  margin-top: 19px;
  display: block;
  color: #b9ccff;
  font-size: 9px;
}

.footer {
  padding: 84px 0 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 65px;
}

.footer-brand p {
  margin: 22px 0 0;
  color: #687590;
  font-size: 13px;
  line-height: 1.65;
}

.footer-links {
  justify-self: end;
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 56px;
}

.footer-links > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.footer-links small {
  margin-bottom: 5px;
  color: var(--cyan);
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 0.15em;
}

.footer-links a {
  color: #9ba7c1;
  font-size: 11px;
}

.footer-links a:hover {
  color: #fff;
}

.footer-bottom {
  grid-column: 1 / -1;
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  color: #505c75;
  font-size: 9px;
}

.footer-bottom b {
  margin-left: 5px;
  color: var(--cyan);
}

.portfolio {
  padding: 128px 0 120px;
}

.portfolio-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(310px, 0.75fr);
  align-items: end;
  gap: 80px;
  padding-bottom: 42px;
  border-bottom: 1px solid var(--line);
}

.portfolio-heading h2 {
  margin: 0;
  font-size: clamp(3rem, 5.6vw, 5.6rem);
  line-height: 0.94;
  letter-spacing: -0.07em;
}

.portfolio-heading h2 em {
  display: block;
  color: transparent;
  background: linear-gradient(96deg, #3d79ff 2%, #21e6ee 82%);
  -webkit-background-clip: text;
  background-clip: text;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}

.portfolio-heading > p {
  margin: 0 0 4px;
  color: #8d99b4;
  font-size: 14px;
  line-height: 1.72;
}

.portfolio-grid {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.portfolio-card {
  grid-column: 1 / -1;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(360px, 0.8fr);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  background: #07101e;
  box-shadow: 0 38px 90px rgba(0, 0, 0, 0.32);
}

.portfolio-card:not(:first-child) {
  grid-column: auto;
  grid-template-columns: 1fr;
}

.project-visual {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  display: block;
  isolation: isolate;
}

.project-backdrop,
.project-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.project-backdrop {
  z-index: -3;
  object-fit: cover;
  object-position: 68% center;
  transform: scale(1.02);
  transition: transform 500ms ease;
}

.project-visual:hover .project-backdrop {
  transform: scale(1.055);
}

.project-overlay {
  z-index: -2;
  background:
    linear-gradient(180deg, rgba(3, 11, 15, 0.68), rgba(3, 14, 12, 0.5) 36%, rgba(3, 11, 15, 0.84)),
    linear-gradient(90deg, rgba(3, 11, 15, 0.52), transparent 70%);
}

.project-brand-lockup {
  position: absolute;
  left: 34px;
  top: 30px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.project-brand-lockup > img {
  width: 46px;
  height: 46px;
  object-fit: contain;
  border-radius: 9px;
  background: #fff;
}

.project-brand-lockup > span {
  display: grid;
  gap: 2px;
}

.project-brand-lockup small {
  color: #cce863;
  font-size: 7px;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.project-brand-lockup strong {
  color: #fff;
  font-size: 17px;
  letter-spacing: -0.03em;
}

.project-browser {
  position: absolute;
  left: 9%;
  right: -9%;
  bottom: -4%;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 17px 17px 0 0;
  background: #f3f5ee;
  box-shadow: 0 35px 85px rgba(0, 0, 0, 0.48);
  transform: perspective(1200px) rotateY(-5deg) rotateX(1.5deg);
  transform-origin: bottom right;
}

.project-browser > div {
  height: 38px;
  padding: 0 15px;
  display: flex;
  align-items: center;
  gap: 6px;
  color: #84908e;
  background: #101b1b;
  font-family: Consolas, monospace;
  font-size: 8px;
}

.project-browser i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #40504d;
}

.project-browser span {
  margin-left: 7px;
}

.project-browser > img {
  width: 100%;
  aspect-ratio: 16 / 9;
  display: block;
  object-fit: cover;
}

.project-open {
  position: absolute;
  right: 26px;
  top: 28px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 9px;
  color: #fff;
  background: rgba(5, 14, 18, 0.62);
  font-size: 9px;
  font-weight: 800;
  backdrop-filter: blur(12px);
}

.project-story {
  padding: 52px 46px 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.project-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--cyan);
  font-size: 8px;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.project-meta small {
  color: #5f6f87;
  font-family: Consolas, monospace;
}

.project-story h3 {
  margin: 24px 0 18px;
  color: #f4f7ff;
  font-size: clamp(2.1rem, 3.2vw, 3.15rem);
  line-height: 1.03;
  letter-spacing: -0.06em;
}

.project-story > p {
  margin: 0;
  color: #91a0b9;
  font-size: 14px;
  line-height: 1.75;
}

.project-proof {
  margin-top: 28px;
  padding: 22px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.project-proof > div {
  display: grid;
  gap: 5px;
}

.project-proof strong {
  color: #fff;
  font-size: 12px;
}

.project-proof span {
  color: #65738b;
  font-size: 8px;
  line-height: 1.45;
}

.direct-email {
  position: relative;
  margin: 18px auto 0;
  display: block;
  width: max-content;
  max-width: 100%;
  color: #cfe0ff;
  font-size: 12px;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.legal-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 85% 0, rgba(20, 93, 255, 0.16), transparent 28rem),
    var(--ink);
  color: var(--text);
}

.legal-header,
.legal-footer,
.legal-document {
  width: min(1040px, calc(100% - 48px));
  margin-inline: auto;
}

.legal-header {
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid var(--line);
}

.legal-back {
  color: #9ba8c2;
  font-size: 11px;
  font-weight: 750;
}

.legal-document {
  padding: 96px 0 100px;
}

.legal-document > h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: 0.94;
  letter-spacing: -0.07em;
}

.legal-updated {
  margin: 26px 0 0;
  color: var(--cyan);
  font-family: Consolas, monospace;
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.legal-intro {
  max-width: 760px;
  margin: 28px 0 0;
  color: #aab5cd;
  font-size: 17px;
  line-height: 1.72;
}

.legal-notice {
  margin: 34px 0 60px;
  padding: 18px 20px;
  border: 1px solid rgba(34, 230, 236, 0.2);
  border-radius: 12px;
  color: #b7c5dc;
  background: rgba(34, 230, 236, 0.05);
  font-size: 11px;
  line-height: 1.65;
}

.legal-document > section {
  padding: 34px 0;
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 24px;
  border-top: 1px solid var(--line);
}

.legal-document > section > span {
  color: var(--cyan);
  font-family: Consolas, monospace;
  font-size: 9px;
}

.legal-document h2 {
  margin: 0 0 13px;
  font-size: 21px;
  letter-spacing: -0.035em;
}

.legal-document section p,
.legal-document section li {
  color: #96a3bc;
  font-size: 13px;
  line-height: 1.75;
}

.legal-document section p {
  margin: 0;
}

.legal-document section p + p {
  margin-top: 12px;
}

.legal-document section ul {
  margin: 15px 0 0;
  padding-left: 18px;
}

.legal-document section a {
  color: var(--cyan);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-footer {
  padding: 26px 0 34px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 22px;
  border-top: 1px solid var(--line);
  color: #65728b;
  font-size: 9px;
}

.legal-footer nav {
  display: flex;
  gap: 18px;
}

.legal-footer > a {
  justify-self: end;
}

.legal-footer a:hover {
  color: #fff;
}

.offer-section {
  padding: 96px 0 108px;
}

.offer-heading,
.aftercare-heading,
.quote-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(310px, 0.8fr);
  align-items: end;
  gap: 74px;
}

.offer-heading h2,
.aftercare-heading h2,
.quote-heading h2 {
  margin: 0;
  font-size: clamp(2.7rem, 4.8vw, 4.7rem);
  line-height: 0.98;
  letter-spacing: -0.065em;
}

.offer-heading > p,
.aftercare-heading > p,
.quote-heading > div:last-child > p {
  margin: 0 0 5px;
  color: #8e9ab4;
  font-size: 14px;
  line-height: 1.72;
}

.offer-grid {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.offer-grid article {
  position: relative;
  min-height: 390px;
  padding: 30px 28px;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 19px;
  background: rgba(255, 255, 255, 0.025);
}

.offer-grid article.recommended {
  border-color: rgba(34, 230, 236, 0.32);
  background: radial-gradient(circle at 90% 0, rgba(34, 230, 236, 0.09), transparent 15rem), rgba(20, 93, 255, 0.08);
  box-shadow: 0 22px 60px rgba(20, 93, 255, 0.12);
}

.offer-grid article > b {
  position: absolute;
  right: 18px;
  top: 18px;
  padding: 6px 8px;
  border-radius: 12px;
  color: #061021;
  background: var(--cyan);
  font-size: 6px;
  letter-spacing: 0.1em;
}

.offer-grid article > span {
  color: #5f6c86;
  font-family: Consolas, monospace;
  font-size: 9px;
}

.offer-grid article > small {
  margin-top: 45px;
  color: var(--cyan);
  font-size: 8px;
  font-weight: 850;
  letter-spacing: 0.14em;
}

.offer-grid h3 {
  margin: 9px 0 13px;
  font-size: 27px;
  line-height: 1.05;
  letter-spacing: -0.045em;
}

.offer-grid p {
  margin: 0;
  color: #8e9ab3;
  font-size: 12px;
  line-height: 1.65;
}

.offer-grid ul {
  margin: 22px 0 25px;
  padding: 18px 0 0;
  display: grid;
  gap: 9px;
  border-top: 1px solid var(--line);
  list-style: none;
}

.offer-grid li {
  color: #bdc6d9;
  font-size: 10px;
}

.offer-grid li::before {
  content: "✓";
  margin-right: 8px;
  color: var(--cyan);
}

.offer-grid article > a {
  margin-top: auto;
  color: #fff;
  font-size: 11px;
  font-weight: 800;
}

.trust-contract {
  margin-top: 14px;
  padding: 20px 22px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.025);
}

.trust-contract > div {
  display: grid;
  gap: 5px;
}

.trust-contract strong {
  color: #f1f5ff;
  font-size: 10px;
}

.trust-contract span {
  color: #65728c;
  font-size: 8px;
  line-height: 1.5;
}

.aftercare {
  margin-bottom: 100px;
  padding: 86px 72px 72px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 28px;
  background: radial-gradient(circle at 100% 0, rgba(20, 93, 255, 0.13), transparent 28rem), #071020;
}

.aftercare-grid {
  margin-top: 46px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.aftercare-grid article {
  min-height: 235px;
  padding: 27px 25px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.025);
}

.aftercare-grid small {
  color: var(--cyan);
  font-size: 7px;
  font-weight: 850;
  letter-spacing: 0.12em;
}

.aftercare-grid h3 {
  margin: 32px 0 12px;
  font-size: 25px;
  letter-spacing: -0.045em;
}

.aftercare-grid p {
  margin: 0;
  color: #8996af;
  font-size: 12px;
  line-height: 1.68;
}

.quote-section {
  margin-top: 32px;
  margin-bottom: 30px;
  padding: 86px 72px 70px;
  border-radius: 28px;
  color: var(--dark-text);
  background: var(--surface);
}

.quote-heading h2 {
  color: var(--dark-text);
}

.quote-heading h2 em {
  display: block;
  color: transparent;
  background: linear-gradient(96deg, var(--blue) 2%, #16a4c5 82%);
  -webkit-background-clip: text;
  background-clip: text;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}

.quote-heading .eyebrow {
  color: var(--blue);
}

.quote-heading > div:last-child > p {
  color: var(--dark-muted);
}

.quote-heading > div:last-child > a {
  margin-top: 12px;
  display: inline-block;
  color: var(--blue);
  font-size: 10px;
  font-weight: 800;
}

.quote-form {
  margin-top: 48px;
  padding: 30px;
  border: 1px solid #dce2ed;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 25px 55px rgba(20, 47, 100, 0.08);
}

.quote-field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.quote-form label {
  display: grid;
  gap: 8px;
  color: #20293a;
  font-size: 10px;
  font-weight: 800;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 11px 13px;
  border: 1px solid #d9dfeb;
  border-radius: 9px;
  outline: 0;
  color: #151b28;
  background: #f9fafc;
  font: inherit;
  font-size: 12px;
  font-weight: 500;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.quote-form textarea {
  resize: vertical;
  line-height: 1.55;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(20, 93, 255, 0.1);
}

.quote-details {
  margin-top: 18px;
}

.quote-consent {
  margin-top: 18px;
  display: flex !important;
  grid-template-columns: auto 1fr;
  align-items: flex-start;
  color: #657087 !important;
  font-weight: 500 !important;
  line-height: 1.5;
}

.quote-consent input {
  width: 16px;
  min-height: 16px;
  margin: 2px 0 0;
}

.quote-consent a {
  color: var(--blue);
  text-decoration: underline;
}

.quote-submit-row {
  margin-top: 24px;
  display: flex;
  align-items: center;
  gap: 18px;
}

.quote-submit-row button {
  min-height: 52px;
  padding: 0 20px;
  border: 0;
  border-radius: 10px;
  cursor: pointer;
  color: #fff;
  background: linear-gradient(135deg, #1766ff, #0b40e9);
  box-shadow: 0 14px 34px rgba(20, 93, 255, 0.25);
  font-size: 11px;
  font-weight: 850;
}

.quote-submit-row p {
  max-width: 430px;
  margin: 0;
  color: #7a8499;
  font-size: 9px;
  line-height: 1.55;
}

.service-page,
.case-page {
  min-height: 100vh;
  background: radial-gradient(circle at 85% 0, rgba(20, 93, 255, 0.15), transparent 28rem), var(--ink);
}

.service-page-header,
.service-page-hero,
.service-page-audience,
.service-page-outcomes,
.service-page-includes,
.service-page-process,
.service-page-case,
.service-page-cta,
.case-page-hero,
.case-page-visual,
.case-page-story,
.case-page-solution,
.case-page-delivery,
.case-page-next {
  width: min(1160px, calc(100% - 48px));
  margin-inline: auto;
}

.service-page-hero {
  padding: 116px 0 88px;
}

.service-page-hero h1 {
  max-width: 990px;
  margin: 0;
  font-size: clamp(3.6rem, 7.4vw, 7.3rem);
  line-height: 0.91;
  letter-spacing: -0.075em;
}

.service-page-hero h1 em {
  display: block;
  color: transparent;
  background: linear-gradient(96deg, #3d79ff 2%, #21e6ee 82%);
  -webkit-background-clip: text;
  background-clip: text;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}

.service-page-hero > p:not(.eyebrow) {
  max-width: 730px;
  margin: 30px 0 0;
  color: #9ca9c2;
  font-size: 17px;
  line-height: 1.75;
}

.service-page-hero > div {
  margin-top: 36px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.service-page-audience {
  padding: 25px 30px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 28px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255,255,255,.025);
}

.service-page-audience small {
  color: var(--cyan);
  font-size: 8px;
  font-weight: 850;
  letter-spacing: .14em;
}

.service-page-audience p {
  margin: 0;
  color: #b7c2d7;
  font-size: 13px;
  line-height: 1.6;
}

.service-page-outcomes {
  padding: 80px 0;
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 12px;
}

.service-page-outcomes article {
  min-height: 290px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: rgba(255,255,255,.025);
}

.service-page-outcomes article > span,
.service-page-process article > span,
.case-page-solution-grid article > span {
  color: var(--cyan);
  font-family: Consolas, monospace;
  font-size: 9px;
}

.service-page-outcomes h2 {
  margin: 82px 0 13px;
  font-size: 25px;
  letter-spacing: -.045em;
}

.service-page-outcomes p {
  margin: 0;
  color: #8794ad;
  font-size: 12px;
  line-height: 1.7;
}

.service-page-includes {
  margin-bottom: 90px;
  padding: 72px;
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 80px;
  border-radius: 25px;
  color: var(--dark-text);
  background: var(--surface);
}

.service-page-includes .eyebrow { color: var(--blue); }
.service-page-includes h2 { margin:0; font-size:clamp(2.8rem,4.5vw,4.4rem); letter-spacing:-.065em; }
.service-page-includes > div > p:last-child { color:var(--dark-muted); font-size:13px; line-height:1.65; }
.service-page-includes ul { margin:0; padding:0; display:grid; grid-template-columns:1fr 1fr; gap:10px; list-style:none; }
.service-page-includes li { padding:15px; border:1px solid #dfe4ed; border-radius:10px; color:var(--blue); background:#fff; font-size:11px; }
.service-page-includes li span { margin-left:7px; color:#364157; }

.service-page-process {
  padding: 30px 0 100px;
}

.service-page-process > h2 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(2.8rem,4.5vw,4.5rem);
  line-height:1;
  letter-spacing:-.065em;
}

.service-page-process > div {
  margin-top: 45px;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}

.service-page-process article { min-height:250px; padding:24px; border-left:1px solid var(--line); }
.service-page-process article:first-child { border-left:0; }
.service-page-process h3 { margin:100px 0 9px; font-size:22px; }
.service-page-process article p { margin:0; color:#7f8ca5; font-size:11px; line-height:1.65; }

.service-page-case {
  margin-bottom: 90px;
  overflow:hidden;
  display:grid;
  grid-template-columns:.8fr 1.2fr;
  border:1px solid var(--line);
  border-radius:24px;
  background:#07101e;
}

.service-page-case > div { padding:50px; }
.service-page-case h2 { margin:0 0 16px; font-size:45px; letter-spacing:-.06em; }
.service-page-case p:not(.eyebrow) { color:#8d9ab2; font-size:13px; line-height:1.7; }
.service-page-case a { margin-top:20px; display:inline-block; color:var(--cyan); font-size:11px; font-weight:800; }
.service-page-case > img { width:100%; height:100%; object-fit:cover; }

.service-page-cta,
.case-page-next {
  margin-bottom: 90px;
  padding: 80px 40px;
  text-align:center;
  border-radius:25px;
  background:linear-gradient(145deg,#0631d7,#075bf3);
}

.service-page-cta h2,
.case-page-next h2 { margin:0; font-size:clamp(3rem,5vw,5rem); line-height:.96; letter-spacing:-.07em; }
.service-page-cta p { max-width:600px; margin:24px auto 0; color:#d4e0ff; font-size:14px; line-height:1.7; }
.service-page-cta .button { margin-top:28px; }

.case-page-hero {
  padding: 110px 0 70px;
  display:grid;
  grid-template-columns:1fr .72fr;
  align-items:end;
  gap:80px;
}

.case-page-hero h1 { margin:0; font-size:clamp(5rem,10vw,10rem); line-height:.73; letter-spacing:-.08em; }
.case-page-hero h1 em { color:transparent; background:linear-gradient(96deg,#cce863,var(--cyan)); -webkit-background-clip:text; background-clip:text; font-family:Georgia,serif; font-weight:400; }
.case-page-hero > div:last-child > span { color:#cce863; font-size:8px; font-weight:850; letter-spacing:.13em; }
.case-page-hero > div:last-child > p { color:#9ca8be; font-size:15px; line-height:1.75; }
.case-page-hero > div:last-child > a { color:#fff; font-size:11px; font-weight:800; }

.case-page-visual { position:relative; min-height:0; display:grid; grid-template-columns:minmax(145px,190px) minmax(0,841px); justify-content:space-between; align-items:start; gap:clamp(24px,4vw,54px); padding:clamp(46px,5vw,72px); overflow:hidden; isolation:isolate; border:1px solid rgba(255,255,255,.14); border-radius:25px; background:radial-gradient(circle at 78% 42%,rgba(190,229,91,.13),transparent 32rem),linear-gradient(145deg,#0c1714,#07100e 58%,#111a20); }
.case-page-visual::before { content:""; position:absolute; z-index:-2; inset:0; opacity:.24; background-image:linear-gradient(rgba(255,255,255,.055) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.055) 1px,transparent 1px); background-size:48px 48px; }
.case-page-visual::after { content:""; width:720px; aspect-ratio:1; position:absolute; z-index:-1; right:-235px; top:-175px; border:1px solid rgba(190,229,91,.16); border-radius:50%; box-shadow:0 0 0 70px rgba(190,229,91,.025),0 0 0 140px rgba(54,221,240,.018); }
.case-page-visual-heading { position:relative; z-index:2; display:flex; flex-direction:column; gap:22px; padding-top:46px; }
.case-page-visual-heading span { color:#c5e75d; font:800 8px/1.3 Consolas,monospace; letter-spacing:.13em; }
.case-page-visual-heading strong { color:#f5f7f7; font-size:clamp(1.45rem,2.3vw,2.25rem); line-height:1.05; letter-spacing:-.05em; }
.case-page-browser { width:100%; max-width:841px; position:relative; z-index:2; margin:0; overflow:hidden; border:1px solid rgba(255,255,255,.28); border-radius:18px; background:#172521; box-shadow:0 48px 110px rgba(0,0,0,.55),0 0 80px rgba(190,229,91,.06); }
.case-page-browser > div { height:42px; padding:0 15px; display:flex; align-items:center; gap:6px; color:#97a59f; background:#101816; border-bottom:1px solid rgba(255,255,255,.1); font:8px Consolas,monospace; letter-spacing:.04em; }
.case-page-browser i { width:6px; height:6px; border-radius:50%; background:#40504d; }.case-page-browser i:first-child { background:#c5e75d; }
.case-page-browser > div span { margin-left:8px; }.case-page-browser > div small { margin-left:auto; color:#c5e75d; font:800 7px/1 Consolas,monospace; letter-spacing:.12em; }
.case-page-browser > img { width:100%; height:auto; display:block; }
.case-page-browser figcaption { min-height:50px; display:flex; align-items:center; justify-content:space-between; gap:12px; padding:0 16px; color:rgba(255,255,255,.55); background:#101816; border-top:1px solid rgba(255,255,255,.1); font:750 7px/1.25 Consolas,monospace; letter-spacing:.08em; }

.case-page-story,
.case-page-solution { padding:110px 0; display:grid; grid-template-columns:.85fr 1.15fr; gap:90px; }
.case-page-story h2,
.case-page-solution h2 { margin:0; font-size:clamp(3rem,5vw,5rem); line-height:.98; letter-spacing:-.07em; }
.case-page-story > p { margin:48px 0 0; color:#99a6bd; font-size:16px; line-height:1.8; }
.case-page-solution { border-top:1px solid var(--line); }
.case-page-solution-grid { display:grid; grid-template-columns:1fr 1fr; gap:12px; }
.case-page-solution-grid article { min-height:240px; padding:25px; border:1px solid var(--line); border-radius:15px; background:rgba(255,255,255,.025); }
.case-page-solution-grid h3 { margin:78px 0 10px; font-size:22px; }
.case-page-solution-grid p { margin:0; color:#8491a8; font-size:11px; line-height:1.65; }

.case-page-delivery { padding:45px 0 100px; }
.case-page-delivery > div { display:flex; flex-wrap:wrap; gap:9px; }
.case-page-delivery > div span { padding:11px 13px; border:1px solid var(--line); border-radius:20px; color:#a9b4c9; font-size:8px; font-weight:750; text-transform:uppercase; }
.case-page-next > p { margin:0 0 20px; color:#bcd0ff; font-size:11px; }
.case-page-next .button { margin-top:30px; }

@media (max-width: 1040px) {
  .offer-heading,
  .aftercare-heading,
  .quote-heading,
  .case-page-hero,
  .case-page-story,
  .case-page-solution,
  .service-page-includes {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .trust-contract {
    grid-template-columns: 1fr 1fr;
  }

  .case-page-story > p {
    margin-top: 0;
  }

  .service-page-process > div {
    grid-template-columns: 1fr 1fr;
  }

  .service-page-process article:nth-child(3) {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .service-page-process article:nth-child(4) {
    border-top: 1px solid var(--line);
  }
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .desktop-nav,
  .header-cta {
    display: none;
  }

  .mobile-nav {
    position: relative;
    display: block;
  }

  .mobile-nav summary {
    width: 42px;
    height: 42px;
    display: grid;
    place-content: center;
    gap: 6px;
    cursor: pointer;
    list-style: none;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 10px;
  }

  .mobile-nav summary::-webkit-details-marker { display: none; }

  .mobile-nav summary span {
    width: 18px;
    height: 1px;
    display: block;
    background: #fff;
  }

  .mobile-nav nav {
    position: absolute;
    right: 0;
    top: 52px;
    width: 220px;
    padding: 12px;
    display: grid;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 14px;
    background: rgba(5, 10, 25, 0.98);
    box-shadow: 0 25px 55px rgba(0, 0, 0, 0.4);
  }

  .mobile-nav nav a {
    padding: 12px;
    border-radius: 8px;
    color: #dce3f4;
    font-size: 13px;
  }

  .mobile-nav nav a:last-child {
    margin-top: 6px;
    color: #fff;
    background: var(--blue);
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 72px;
    padding-top: 90px;
  }

  .hero-copy {
    max-width: 760px;
  }

  .hero-visual {
    width: min(760px, 94%);
    justify-self: center;
  }

  .section-heading,
  .portfolio-heading,
  .faq {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .portfolio-card {
    grid-template-columns: 1fr;
  }

  .project-visual {
    min-height: 580px;
  }

  .case-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .case-copy {
    max-width: 700px;
  }

  .process-list {
    grid-template-columns: 1fr 1fr;
  }

  .process-list article:nth-child(3) {
    border-left: 0;
    border-top: 1px solid #dbe0ea;
  }

  .process-list article:nth-child(4) {
    border-top: 1px solid #dbe0ea;
  }

  .about {
    gap: 60px;
  }

  .about-mark {
    min-height: 440px;
  }
}

@media (max-width: 760px) {
  .section-shell,
  .site-header {
    width: min(100% - 28px, 1240px);
  }

  .offer-section {
    padding: 74px 0 80px;
  }

  .offer-grid,
  .aftercare-grid,
  .service-page-outcomes,
  .case-page-solution-grid {
    grid-template-columns: 1fr;
  }

  .offer-grid article {
    min-height: 360px;
  }

  .trust-contract {
    grid-template-columns: 1fr;
  }

  .aftercare,
  .quote-section {
    padding: 62px 22px 52px;
    border-radius: 22px;
  }

  .aftercare-grid article {
    min-height: 210px;
  }

  .quote-field-grid {
    grid-template-columns: 1fr;
  }

  .quote-form {
    padding: 20px;
  }

  .quote-submit-row {
    align-items: stretch;
    flex-direction: column;
  }

  .quote-submit-row button {
    width: 100%;
  }

  .service-page-header,
  .service-page-hero,
  .service-page-audience,
  .service-page-outcomes,
  .service-page-includes,
  .service-page-process,
  .service-page-case,
  .service-page-cta,
  .case-page-hero,
  .case-page-visual,
  .case-page-story,
  .case-page-solution,
  .case-page-delivery,
  .case-page-next {
    width: min(100% - 28px, 1160px);
  }

  .service-page-hero {
    padding: 86px 0 66px;
  }

  .service-page-hero h1 {
    font-size: clamp(3.5rem, 15vw, 5.2rem);
  }

  .service-page-audience {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .service-page-outcomes {
    padding: 50px 0;
  }

  .service-page-outcomes article {
    min-height: 240px;
  }

  .service-page-outcomes h2 {
    margin-top: 60px;
  }

  .service-page-includes {
    padding: 52px 22px;
    gap: 36px;
  }

  .service-page-includes ul,
  .service-page-process > div {
    grid-template-columns: 1fr;
  }

  .service-page-process article,
  .service-page-process article:nth-child(3),
  .service-page-process article:nth-child(4) {
    min-height: 220px;
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .service-page-process article:first-child {
    border-top: 0;
  }

  .service-page-process h3 {
    margin-top: 75px;
  }

  .service-page-case {
    grid-template-columns: 1fr;
  }

  .service-page-case > div {
    padding: 38px 24px;
  }

  .service-page-case > img {
    min-height: 300px;
  }

  .service-page-cta,
  .case-page-next {
    padding: 62px 22px;
  }

  .case-page-hero {
    padding: 86px 0 55px;
  }

  .case-page-hero h1 {
    font-size: clamp(5rem, 24vw, 8rem);
  }

  .case-page-visual { grid-template-columns:1fr; gap:22px; padding:28px 10px 12px; border-radius:18px; }
  .case-page-visual::after { width:440px; right:-280px; top:-190px; }
  .case-page-visual-heading { gap:12px; padding:10px 10px 0; }
  .case-page-visual-heading strong { max-width:340px; font-size:1.45rem; }
  .case-page-browser { width:100%; max-width:841px; border-radius:11px; }
  .case-page-browser > div { height:34px; padding:0 10px; font-size:7px; }
  .case-page-browser figcaption { min-height:40px; flex-wrap:wrap; justify-content:flex-start; gap:6px 12px; padding:8px 10px; font-size:6px; }

  .case-page-story,
  .case-page-solution {
    padding: 78px 0;
  }

  .site-header {
    top: 10px;
    margin-top: 10px;
  }

  .hero {
    min-height: auto;
    padding: 76px 0 70px;
  }

  .hero h1 {
    font-size: clamp(3.1rem, 14vw, 4.8rem);
  }

  .hero-lead {
    font-size: 16px;
  }

  .hero-visual {
    width: 100%;
  }

  .studio-window {
    min-height: 430px;
    transform: none;
  }

  .studio-body {
    min-height: 382px;
    grid-template-columns: 52px 1fr;
  }

  .studio-sidebar {
    padding-inline: 10px;
  }

  .studio-sidebar img {
    width: 30px;
    height: 30px;
  }

  .studio-content {
    padding: 50px 24px 22px;
  }

  .studio-grid {
    left: 24px;
    right: 14px;
    bottom: 20px;
  }

  .floating-chip {
    display: none;
  }

  .services,
  .process,
  .faq {
    margin-top: 64px;
    padding: 62px 22px 52px;
    border-radius: 22px;
  }

  .section-heading h2,
  .faq h2 {
    font-size: clamp(2.5rem, 11vw, 3.6rem);
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: auto;
    padding: 28px 24px;
  }

  .marketing-foundation {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .marketing-foundation > div {
    justify-content: flex-start;
  }

  .portfolio {
    padding: 92px 0 82px;
  }

  .portfolio-heading h2 {
    font-size: clamp(3rem, 13vw, 4.8rem);
  }

  .portfolio-grid {
    grid-template-columns: 1fr;
  }

  .project-visual {
    min-height: 480px;
  }

  .project-browser {
    left: 5%;
    right: -28%;
  }

  .project-story {
    padding: 42px 24px 38px;
  }

  .project-proof {
    grid-template-columns: 1fr;
  }

  .case-study {
    padding: 96px 0 80px;
  }

  .case-title-row {
    align-items: start;
    flex-direction: column;
  }

  .case-title-row h2 {
    font-size: clamp(3.4rem, 17vw, 5rem);
  }

  .control-site {
    min-height: 560px;
    padding: 22px 18px;
  }

  .control-nav > span {
    display: none;
  }

  .control-hero {
    grid-template-columns: 1fr;
    gap: 22px;
    padding-top: 38px;
  }

  .control-copy h3 {
    max-width: 360px;
    font-size: 2rem;
  }

  .process {
    margin-top: 0;
  }

  .process-list {
    grid-template-columns: 1fr;
  }

  .process-list article {
    min-height: 230px;
    border-left: 0;
    border-top: 1px solid #dbe0ea;
  }

  .process-list article:first-child {
    border-top: 0;
  }

  .about {
    padding: 18px 0 80px;
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-mark {
    min-height: 390px;
  }

  .about-copy h2 {
    font-size: clamp(2.75rem, 12vw, 4rem);
  }

  .faq {
    margin-top: 0;
  }

  .final-cta {
    margin-top: 64px;
    padding: 72px 22px 64px;
  }

  .final-cta h2 {
    font-size: clamp(3rem, 14vw, 4.5rem);
  }

  .footer {
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .footer-links {
    justify-self: start;
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .legal-header,
  .legal-footer,
  .legal-document {
    width: min(100% - 28px, 1040px);
  }

  .legal-document {
    padding: 72px 0 74px;
  }

  .legal-document > section {
    grid-template-columns: 34px 1fr;
    gap: 14px;
  }

  .legal-footer {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .legal-footer > a {
    justify-self: start;
  }
}

@media (max-width: 430px) {
  .brand {
    font-size: 17px;
  }

  .brand-mark {
    width: 36px;
    height: 36px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .studio-heading {
    font-size: 1.65rem;
  }

  .studio-grid div {
    padding: 9px;
  }

  .studio-grid b {
    font-size: 6px;
  }

  .proof-strip > div {
    transform: translateX(-9%);
  }

  .case-results {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: 0.01ms !important; }
}

/* Branflow dimensional experience */
.dimension-scene {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  --light-x: 50%;
  --light-y: 45%;
  position: relative;
  min-height: 640px;
  perspective: 1500px;
  perspective-origin: 50% 48%;
  isolation: isolate;
  contain: layout paint style;
  cursor: crosshair;
}

.dimension-scene::before {
  content: "";
  position: absolute;
  z-index: 10;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle 180px at var(--light-x) var(--light-y), rgba(93, 235, 255, 0.1), transparent 72%);
  mix-blend-mode: screen;
}

.dimension-ambient {
  position: absolute;
  inset: 10% 5% 4%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 48% 46%, rgba(34, 230, 236, 0.2), transparent 16%),
    radial-gradient(circle at 50% 50%, rgba(20, 93, 255, 0.2), transparent 44%);
  filter: blur(24px);
  animation: ambientBreathe 5s ease-in-out infinite;
}

.dimension-grid {
  position: absolute;
  left: -8%;
  right: -8%;
  bottom: -6%;
  height: 58%;
  opacity: 0.34;
  background-image:
    linear-gradient(rgba(34, 230, 236, 0.13) 1px, transparent 1px),
    linear-gradient(90deg, rgba(34, 230, 236, 0.13) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to top, #000 10%, transparent 92%);
  transform: rotateX(68deg) translateZ(-120px);
  transform-origin: bottom;
}

.dimension-world {
  position: absolute;
  inset: 3% 0 0;
  transform-style: preserve-3d;
  transform: rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
  transition: transform 220ms cubic-bezier(.2,.75,.2,1);
}

.dimension-halo {
  position: absolute;
  left: 50%;
  top: 48%;
  border-radius: 50%;
  transform-style: preserve-3d;
}

.halo-one {
  width: 500px;
  height: 500px;
  border: 1px solid rgba(32, 226, 255, 0.22);
  box-shadow: 0 0 55px rgba(20, 93, 255, 0.08) inset;
  transform: translate(-50%, -50%) rotateX(72deg) rotateZ(-22deg) translateZ(-90px);
  animation: haloSpinOne 18s linear infinite;
}

.halo-two {
  width: 410px;
  height: 410px;
  border: 1px dashed rgba(75, 118, 255, 0.28);
  transform: translate(-50%, -50%) rotateY(68deg) rotateZ(14deg) translateZ(-30px);
  animation: haloSpinTwo 22s linear infinite reverse;
}

.halo-three {
  width: 330px;
  height: 330px;
  border: 4px double rgba(25, 205, 242, 0.09);
  transform: translate(-50%, -50%) rotateX(42deg) rotateY(-24deg) translateZ(40px);
  animation: haloSpinThree 14s linear infinite;
}

.dimension-core {
  position: absolute;
  left: 50%;
  top: 48%;
  width: 238px;
  height: 292px;
  transform-style: preserve-3d;
  transform: translate(-50%, -50%) translateZ(70px) rotateY(-7deg) rotateX(3deg);
  animation: coreFloat 5.5s ease-in-out infinite;
}

.core-aura {
  position: absolute;
  inset: -58px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(29, 224, 246, 0.2), rgba(20, 93, 255, 0.05) 44%, transparent 70%);
  filter: blur(12px);
  transform: translateZ(-50px);
}

.core-shell,
.core-face {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-radius: 32px;
  clip-path: polygon(18% 0, 82% 0, 100% 15%, 100% 85%, 82% 100%, 18% 100%, 0 85%, 0 15%);
}

.core-shell {
  border: 1px solid rgba(92, 233, 255, 0.34);
  background: linear-gradient(145deg, rgba(43, 115, 255, 0.24), rgba(5, 10, 26, 0.08));
}

.shell-back {
  opacity: 0.42;
  transform: translateZ(-56px) translate(22px, -14px) rotateZ(5deg);
}

.shell-mid {
  opacity: 0.66;
  transform: translateZ(-27px) translate(10px, -7px) rotateZ(2.5deg);
}

.core-face {
  padding: 37px 26px 28px;
  display: flex;
  align-items: center;
  flex-direction: column;
  border: 1px solid rgba(128, 239, 255, 0.55);
  background:
    linear-gradient(155deg, rgba(255, 255, 255, 0.16), transparent 28%),
    linear-gradient(145deg, rgba(9, 25, 68, 0.94), rgba(3, 8, 23, 0.97));
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.44), 0 0 60px rgba(20, 93, 255, 0.2) inset;
  backdrop-filter: blur(18px);
  transform: translateZ(16px);
}

.core-face::before {
  content: "";
  position: absolute;
  inset: 11px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 23px;
  clip-path: inherit;
}

.core-face img {
  width: 130px;
  height: 130px;
  object-fit: cover;
  border: 1px solid rgba(34, 230, 236, 0.52);
  border-radius: 50%;
  box-shadow: 0 0 46px rgba(34, 230, 236, 0.2);
}

.core-face > span {
  margin-top: 20px;
  color: #fff;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: .2em;
}

.core-face > small {
  margin-top: 7px;
  color: var(--cyan);
  font-family: Consolas, monospace;
  font-size: 6px;
  letter-spacing: .24em;
}

.core-scan {
  position: absolute;
  z-index: 3;
  left: 16px;
  right: 16px;
  top: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
  box-shadow: 0 0 14px var(--cyan);
  animation: coreScan 3.6s ease-in-out infinite;
}

.signal-card {
  position: absolute;
  width: 230px;
  min-height: 82px;
  padding: 14px 15px;
  display: grid;
  grid-template-columns: 34px 1fr 8px;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(124, 160, 255, 0.27);
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(12, 24, 53, 0.88), rgba(5, 11, 27, 0.7));
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(14px);
  transform-style: preserve-3d;
}

.signal-index {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(34, 230, 236, 0.26);
  border-radius: 9px;
  color: var(--cyan);
  font-family: Consolas, monospace;
  font-size: 8px;
}

.signal-card > div { display: grid; gap: 5px; }
.signal-card small { color: #677693; font-size: 6px; font-weight: 900; letter-spacing: .16em; }
.signal-card strong { color: #eef4ff; font-size: 10px; line-height: 1.35; }
.signal-card > i { width: 5px; height: 5px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 12px var(--cyan); }

.signal-strategy {
  left: 0;
  top: 11%;
  transform: translateZ(120px) rotateY(9deg) rotateZ(-2deg);
  animation: signalFloatOne 5s ease-in-out infinite;
}

.signal-design {
  right: -2%;
  top: 20%;
  transform: translateZ(150px) rotateY(-11deg) rotateZ(2deg);
  animation: signalFloatTwo 6s ease-in-out infinite .6s;
}

.signal-code {
  right: 2%;
  bottom: 8%;
  transform: translateZ(110px) rotateY(-8deg) rotateZ(-1deg);
  animation: signalFloatThree 5.6s ease-in-out infinite .2s;
}

.conversion-node {
  position: absolute;
  padding: 9px 11px;
  display: flex;
  align-items: center;
  gap: 7px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 20px;
  color: #8a98b4;
  background: rgba(4, 9, 24, 0.72);
  font: 7px Consolas, monospace;
  letter-spacing: .12em;
}

.conversion-node i { width: 5px; height: 5px; border-radius: 50%; background: #52627f; }
.node-entry { left: 4%; bottom: 27%; transform: translateZ(35px); }
.node-exit { left: 34%; bottom: 2%; color: #bdfcff; transform: translateZ(90px); }
.node-exit i { background: var(--cyan); box-shadow: 0 0 10px var(--cyan); }

.conversion-line {
  position: absolute;
  height: 1px;
  overflow: hidden;
  background: rgba(34, 230, 236, 0.16);
  transform-origin: left;
}

.conversion-line span { position: absolute; width: 34%; height: 100%; background: linear-gradient(90deg, transparent, var(--cyan), transparent); animation: signalTravel 2.4s linear infinite; }
.line-one { width: 118px; left: 18%; bottom: 24%; transform: rotate(22deg) translateZ(45px); }
.line-two { width: 128px; left: 43%; bottom: 10%; transform: rotate(-29deg) translateZ(60px); }

.scene-coordinate {
  position: absolute;
  color: #4b5a77;
  font: 6px Consolas, monospace;
  letter-spacing: .16em;
}

.coordinate-top { right: 8%; top: 5%; }
.coordinate-bottom { left: 3%; bottom: 3%; }

.dimension-statement {
  position: relative;
  min-height: 680px;
  padding: 110px 70px;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(500px, 1.12fr);
  align-items: center;
  gap: 50px;
  border: 1px solid rgba(105, 143, 255, 0.18);
  border-radius: 30px;
  background:
    radial-gradient(circle at 76% 47%, rgba(20, 93, 255, .18), transparent 25rem),
    linear-gradient(145deg, #071128, #030714 72%);
  box-shadow: 0 50px 110px rgba(0, 0, 0, .3);
}

.dimension-statement::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .18;
  pointer-events: none;
  background-image: linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px), linear-gradient(90deg,rgba(255,255,255,.08) 1px,transparent 1px);
  background-size: 52px 52px;
  mask-image: radial-gradient(circle at 70% 50%, #000, transparent 58%);
}

.dimension-statement-copy { position: relative; z-index: 2; }
.dimension-statement h2 { margin: 0; max-width: 650px; font-size: clamp(3.4rem, 5.1vw, 5.8rem); line-height: .92; letter-spacing: -.075em; }
.dimension-statement h2 em { display: block; color: transparent; background: linear-gradient(96deg,#4c80ff,var(--cyan)); -webkit-background-clip:text; background-clip:text; font-family:Georgia,serif; font-weight:400; }
.dimension-statement-copy > p:last-child { max-width: 560px; margin: 30px 0 0; color: #929fba; font-size: 15px; line-height: 1.75; }

.growth-stack {
  position: relative;
  z-index: 1;
  min-height: 500px;
  perspective: 1200px;
  transform-style: preserve-3d;
}

.growth-layer {
  position: absolute;
  left: 8%;
  right: 3%;
  height: 170px;
  padding: 28px 35px;
  overflow: hidden;
  display: grid;
  grid-template-columns: auto 1fr;
  align-content: center;
  column-gap: 24px;
  border: 1px solid rgba(113, 173, 255, .34);
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(20, 93, 255, .22), rgba(4, 10, 27, .9) 68%);
  box-shadow: 0 30px 60px rgba(0,0,0,.38), 0 0 50px rgba(20,93,255,.08) inset;
  backdrop-filter: blur(15px);
  transform-style: preserve-3d;
}

.growth-layer::after { content:""; position:absolute; inset:0; background:linear-gradient(115deg,rgba(255,255,255,.08),transparent 30%); }
.growth-layer span { grid-row: 1 / 3; align-self:center; color:var(--cyan); font:10px Consolas,monospace; }
.growth-layer strong { align-self:end; color:#fff; font-size:22px; letter-spacing:.05em; }
.growth-layer small { align-self:start; margin-top:7px; color:#7e90b2; font-size:7px; font-weight:850; letter-spacing:.15em; }
.layer-attract { top: 45px; opacity: .52; transform: rotateX(64deg) rotateZ(-8deg) translateZ(-130px); animation: layerFloatBack 6s ease-in-out infinite; }
.layer-convince { top: 145px; opacity: .75; transform: rotateX(64deg) rotateZ(-8deg) translateZ(-25px); animation: layerFloatMid 6s ease-in-out infinite .25s; }
.layer-convert { top: 245px; transform: rotateX(64deg) rotateZ(-8deg) translateZ(90px); animation: layerFloatFront 6s ease-in-out infinite .5s; }
.stack-beam { position:absolute; z-index:4; width:2px; height:310px; left:49%; top:48px; background:linear-gradient(transparent,var(--cyan),transparent); box-shadow:0 0 18px var(--cyan); transform:rotateZ(-8deg); animation: beamPulse 2.8s ease-in-out infinite; }

.offer-grid article,
.service-card,
.aftercare-grid article {
  transform-style: preserve-3d;
}

.offer-grid article:hover,
.aftercare-grid article:hover {
  transform: translateY(-6px) perspective(900px) rotateX(1.2deg);
}

.offer-grid article > h3,
.service-card > h3,
.aftercare-grid article > h3 {
  transform: translateZ(18px);
}

.project-visual { perspective: 1400px; }
.project-browser { transition: transform 600ms cubic-bezier(.2,.75,.2,1), box-shadow 600ms ease; }
.project-visual:hover .project-browser { transform: rotateY(-8deg) rotateX(3deg) translateZ(38px) translateY(-10px); box-shadow: 0 50px 100px rgba(0,0,0,.58); }

.project-module {
  position: absolute;
  z-index: 3;
  padding: 9px 11px;
  border: 1px solid rgba(204,232,99,.28);
  border-radius: 9px;
  color: #eaff9e;
  background: rgba(5,18,18,.74);
  box-shadow: 0 14px 35px rgba(0,0,0,.25);
  backdrop-filter: blur(12px);
  font: 7px Consolas,monospace;
  letter-spacing: .12em;
  animation: projectTagFloat 4s ease-in-out infinite;
}

.project-module i { width:5px; height:5px; margin-right:6px; display:inline-block; border-radius:50%; background:#cce863; box-shadow:0 0 9px #cce863; }
.module-trips { left: 4%; top: 35%; }
.module-alerts { right: 3%; top: 46%; animation-delay:.7s; }
.module-reports { left: 8%; bottom: 13%; animation-delay:1.2s; }

@keyframes ambientBreathe { 50% { opacity:.72; transform:scale(1.08); } }
@keyframes haloSpinOne { to { transform:translate(-50%,-50%) rotateX(72deg) rotateZ(338deg) translateZ(-90px); } }
@keyframes haloSpinTwo { to { transform:translate(-50%,-50%) rotateY(68deg) rotateZ(374deg) translateZ(-30px); } }
@keyframes haloSpinThree { to { transform:translate(-50%,-50%) rotateX(42deg) rotateY(336deg) translateZ(40px); } }
@keyframes coreFloat { 50% { transform:translate(-50%,-53%) translateZ(82px) rotateY(-4deg) rotateX(1deg); } }
@keyframes coreScan { 0%,100% { top:10%; opacity:0; } 15%,85% { opacity:1; } 50% { top:88%; } }
@keyframes signalFloatOne { 50% { transform:translateZ(135px) translateY(-10px) rotateY(7deg) rotateZ(-1deg); } }
@keyframes signalFloatTwo { 50% { transform:translateZ(165px) translateY(9px) rotateY(-9deg) rotateZ(1deg); } }
@keyframes signalFloatThree { 50% { transform:translateZ(125px) translateY(-8px) rotateY(-6deg); } }
@keyframes signalTravel { from { left:-38%; } to { left:105%; } }
@keyframes layerFloatBack { 50% { transform:rotateX(64deg) rotateZ(-8deg) translateZ(-118px) translateY(-5px); } }
@keyframes layerFloatMid { 50% { transform:rotateX(64deg) rotateZ(-8deg) translateZ(-12px) translateY(-7px); } }
@keyframes layerFloatFront { 50% { transform:rotateX(64deg) rotateZ(-8deg) translateZ(106px) translateY(-10px); } }
@keyframes beamPulse { 50% { opacity:.38; transform:rotateZ(-8deg) scaleY(.86); } }
@keyframes projectTagFloat { 50% { transform:translateY(-7px); } }

@media (max-width: 1120px) {
  .dimension-scene { min-height: 600px; }
  .signal-card { width: 215px; }
  .dimension-statement { grid-template-columns: 1fr; padding: 90px 60px 40px; }
  .dimension-statement-copy { max-width: 820px; }
  .growth-stack { width:min(700px,100%); margin-inline:auto; }
}

@media (max-width: 760px) {
  .dimension-scene { min-height: 530px; margin-inline: -10px; }
  .dimension-world { inset: 1% 0 0; transform: scale(.88) rotateX(var(--tilt-x)) rotateY(var(--tilt-y)); }
  .dimension-core { width:205px; height:252px; }
  .core-face { padding:30px 22px 22px; }
  .core-face img { width:112px; height:112px; }
  .signal-card { width:185px; min-height:70px; padding:10px; grid-template-columns:29px 1fr 6px; }
  .signal-index { width:29px; height:29px; }
  .signal-card strong { font-size:8px; }
  .signal-strategy { left:-7%; top:8%; }
  .signal-design { right:-9%; top:19%; }
  .signal-code { right:-5%; bottom:8%; }
  .halo-one { width:440px; height:440px; }
  .halo-two { width:350px; height:350px; }
  .dimension-statement { width:min(100% - 28px,1240px); min-height:0; padding:70px 22px 20px; border-radius:22px; }
  .dimension-statement h2 { font-size:clamp(3rem,13vw,4.6rem); }
  .growth-stack { min-height:430px; transform:scale(.92); }
  .growth-layer { left:1%; right:1%; height:150px; padding:22px 24px; }
  .layer-attract { top:35px; }
  .layer-convince { top:122px; }
  .layer-convert { top:209px; }
  .stack-beam { top:38px; height:265px; }
  .project-module { display:none; }
}

@media (max-width: 430px) {
  .dimension-scene { min-height:470px; margin-inline:-30px; }
  .dimension-world { transform:scale(.72) rotateX(var(--tilt-x)) rotateY(var(--tilt-y)); }
  .growth-stack { min-height:350px; margin-inline:-38px; transform:scale(.74); transform-origin:top center; }
  .dimension-statement { padding-bottom:0; }
}

@media (prefers-reduced-motion: reduce) {
  .dimension-ambient,
  .dimension-halo,
  .dimension-core,
  .core-scan,
  .signal-card,
  .conversion-line span,
  .growth-layer,
  .stack-beam,
  .project-module { animation:none !important; }
  .dimension-world { transform:none; }
}

/* International editorial direction */
body {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", Inter, "Segoe UI", Arial, sans-serif;
}

h1, h2, h3 {
  text-wrap: balance;
}

.site-header {
  top: 12px;
  width: min(1120px, calc(100% - 48px));
  min-height: 62px;
  margin-top: 12px;
  padding: 8px 9px 8px 14px;
  border-color: rgba(255, 255, 255, .1);
  border-radius: 999px;
  background: rgba(4, 8, 20, .72);
  box-shadow: 0 14px 45px rgba(0,0,0,.22);
  backdrop-filter: saturate(150%) blur(22px);
}

.site-header .brand { font-size:17px; }
.site-header .brand-mark { width:36px; height:36px; }

.header-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 8px;
}

.header-cta {
  padding: 12px 18px;
  border-radius: 999px;
}

.language-switcher {
  position: relative;
}

.language-switcher summary {
  height: 40px;
  padding: 0 13px;
  display: flex;
  align-items: center;
  gap: 7px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px;
  color: #cbd5ea;
  background: rgba(255,255,255,.035);
  cursor: pointer;
  list-style: none;
  font-size: 11px;
  transition: border-color 180ms ease, background 180ms ease;
}

.language-switcher summary::-webkit-details-marker { display:none; }
.language-switcher summary:hover { border-color:rgba(34,230,236,.36); background:rgba(255,255,255,.06); }
.language-switcher summary > span { color:var(--cyan); font-size:16px; line-height:1; }
.language-switcher summary b { font-size:9px; letter-spacing:.08em; }
.language-switcher summary > i { width:5px; height:5px; border-right:1px solid #8794ac; border-bottom:1px solid #8794ac; transform:rotate(45deg) translateY(-2px); }

.language-menu {
  position: absolute;
  z-index: 70;
  right: 0;
  top: calc(100% + 10px);
  width: 178px;
  padding: 7px;
  display: grid;
  gap: 3px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 15px;
  background: rgba(5,10,24,.96);
  box-shadow: 0 24px 60px rgba(0,0,0,.46);
  backdrop-filter: blur(24px);
}

.language-menu a {
  min-height: 42px;
  padding: 0 10px;
  display: grid;
  grid-template-columns: 28px 1fr auto;
  align-items: center;
  gap: 8px;
  border-radius: 9px;
  color: #bac5da;
  font-size: 11px;
}

.language-menu a:hover,
.language-menu a[aria-current="page"] { color:#fff; background:rgba(255,255,255,.07); }
.language-menu a > span { color:var(--cyan); font:8px Consolas,monospace; }
.language-menu a > i { color:var(--cyan); font-style:normal; }

.mobile-language {
  margin: 6px 0;
  padding: 5px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 9px;
}

.mobile-nav nav .mobile-language a {
  padding: 8px;
  text-align: center;
  color:#8e9ab1;
  background:transparent;
  font-size:9px;
  font-weight:800;
}

.mobile-nav nav .mobile-language a[aria-current="page"] { color:#fff; background:rgba(255,255,255,.08); }

.hero {
  min-height: 1320px;
  padding: 145px 0 60px;
  grid-template-columns: 1fr;
  align-items: start;
  gap: 30px;
  text-align: center;
}

.hero-copy {
  width: min(1040px, 100%);
  margin-inline: auto;
}

.hero .eyebrow,
.hero-actions,
.hero-reassurance {
  justify-content: center;
}

.hero h1 {
  max-width: 1040px;
  margin-inline: auto;
  font-size: clamp(4.6rem, 8.2vw, 8.5rem);
  line-height: .9;
  letter-spacing: -.078em;
}

.hero h1 em {
  margin-top: .06em;
}

.hero-lead {
  max-width: 750px;
  margin: 34px auto 0;
  color:#aab5cb;
  font-size: clamp(1.1rem, 1.5vw, 1.35rem);
  line-height: 1.6;
}

.hero-actions { margin-top:34px; }

.button {
  min-height: 56px;
  padding-inline: 25px;
  border-radius: 999px;
}

.hero-credentials {
  width: max-content;
  max-width: 100%;
  margin: 32px auto 0;
  padding: 11px 16px 11px 11px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 999px;
  background:rgba(255,255,255,.025);
  text-align:left;
}

.hero-visual {
  width: min(960px, 100%);
  margin: -10px auto 0;
}

.hero .dimension-scene {
  min-height: 730px;
}

.offer-section,
.portfolio,
.aftercare,
.process,
.about,
.faq,
.quote-section {
  scroll-margin-top: 105px;
}

.offer-section {
  padding-top: 130px;
}

.offer-grid article,
.service-card,
.aftercare-grid article,
.portfolio-card,
.quote-form {
  border-radius: 28px;
}

.offer-grid article {
  min-height: 480px;
  padding: 34px;
}

.services,
.process,
.faq {
  border-radius: 36px;
}

.section-heading h2,
.offer-heading h2,
.aftercare-heading h2,
.quote-heading h2 {
  letter-spacing: -.065em;
}

.portfolio-heading,
.section-heading,
.offer-heading,
.aftercare-heading,
.quote-heading {
  gap: 70px;
}

.final-cta {
  border-radius: 36px;
}

@supports (animation-timeline: view()) {
  .offer-heading,
  .dimension-statement-copy,
  .section-heading,
  .portfolio-heading,
  .aftercare-heading,
  .about-copy,
  .faq > div:first-child,
  .quote-heading {
    animation: editorialReveal linear both;
    animation-timeline: view();
    animation-range: entry 5% cover 32%;
  }

  .growth-stack,
  .portfolio-card,
  .about-mark {
    animation: editorialScale linear both;
    animation-timeline: view();
    animation-range: entry 3% cover 34%;
  }
}

@keyframes editorialReveal {
  from { opacity:.2; transform:translateY(52px); filter:blur(8px); }
  to { opacity:1; transform:translateY(0); filter:blur(0); }
}

@keyframes editorialScale {
  from { opacity:.25; transform:scale(.94) translateY(40px); }
  to { opacity:1; transform:scale(1) translateY(0); }
}

@media (max-width: 1040px) {
  .header-actions { display:none; }
  .hero { min-height:auto; padding:118px 0 40px; gap:10px; }
  .hero h1 { font-size:clamp(4rem,11vw,7rem); }
  .hero .dimension-scene { min-height:650px; }
}

@media (max-width: 760px) {
  .site-header { width:min(100% - 28px,1120px); border-radius:18px; }
  .hero { padding:94px 0 30px; }
  .hero h1 { font-size:clamp(3.5rem,16vw,5.3rem); }
  .hero-lead { font-size:17px; }
  .hero-credentials { border-radius:18px; }
  .hero .dimension-scene { min-height:540px; }
  .offer-section { padding-top:90px; }
  .offer-grid article { min-height:390px; }
  .services,.process,.faq,.final-cta { border-radius:25px; }
}

@media (max-width: 430px) {
  .hero h1 { font-size:clamp(3.25rem,16vw,4.4rem); }
  .hero-credentials { width:100%; }
  .hero .dimension-scene { min-height:480px; }
}

@media (prefers-reduced-motion: reduce) {
  .offer-heading,
  .dimension-statement-copy,
  .section-heading,
  .portfolio-heading,
  .aftercare-heading,
  .about-copy,
  .faq > div:first-child,
  .quote-heading,
  .growth-stack,
  .portfolio-card,
  .about-mark { animation:none !important; filter:none !important; transform:none !important; opacity:1 !important; }
}

/* Purposeful scrollytelling and appearance controls */
.theme-toggle {
  width: 40px;
  height: 40px;
  padding: 0;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 50%;
  color: #d8e2f6;
  background: rgba(255,255,255,.035);
  cursor: pointer;
  font: inherit;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.theme-toggle:hover {
  color: var(--cyan);
  border-color: rgba(34,230,236,.36);
  background: rgba(255,255,255,.07);
  transform: rotate(12deg);
}

.theme-toggle span { font-size:16px; line-height:1; }

.mobile-preferences {
  margin: 6px 0;
  display: grid;
  grid-template-columns: 40px 1fr;
  align-items: center;
  gap: 7px;
}

.mobile-preferences .mobile-language { margin:0; }

.hero {
  min-height: 790px;
  padding-bottom: 110px;
  align-items: center;
}

.scroll-story {
  --story-progress: 0;
  position: relative;
  z-index: 2;
  height: 430vh;
  background: var(--ink);
}

.scroll-story-sticky {
  position: sticky;
  top: 0;
  width: 100%;
  height: 100vh;
  min-height: 650px;
  overflow: hidden;
  color: #f4f7ff;
  background: var(--ink);
}

.scroll-story-sticky::before {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(3,7,20,.82) 0%, rgba(3,7,20,.35) 31%, transparent 58%);
}

.scroll-story canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.scroll-story-intro {
  position: absolute;
  z-index: 4;
  left: max(4vw, calc((100vw - 1240px) / 2));
  top: 8%;
  max-width: 720px;
  transition: opacity 320ms ease, transform 320ms ease;
}

.scroll-story-intro > p {
  margin: 0 0 14px;
  color: var(--cyan);
  font-size: 8px;
  font-weight: 850;
  letter-spacing: .18em;
}

.scroll-story-intro h2 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(3rem, 5vw, 5.5rem);
  line-height: .94;
  letter-spacing: -.07em;
}

.story-chapters {
  position: absolute;
  z-index: 5;
  left: max(4vw, calc((100vw - 1240px) / 2));
  bottom: 11%;
  width: min(360px, 30vw);
  min-height: 220px;
}

.story-chapters article {
  position: absolute;
  inset: 0;
  padding-left: 48px;
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 420ms ease, transform 520ms cubic-bezier(.2,.75,.2,1);
  pointer-events: none;
}

.story-chapters article > span {
  position: absolute;
  left: 0;
  top: 2px;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(34,230,236,.26);
  border-radius: 50%;
  color: var(--cyan);
  font: 8px Consolas,monospace;
}

.story-chapters small {
  color: #71809d;
  font-size: 7px;
  font-weight: 850;
  letter-spacing: .17em;
}

.story-chapters h3 {
  margin: 10px 0 12px;
  font-size: clamp(1.8rem, 2.8vw, 3rem);
  line-height: .98;
  letter-spacing: -.055em;
}

.story-chapters p {
  margin: 0;
  color: #99a6bf;
  font-size: 12px;
  line-height: 1.7;
}

.scroll-story[data-chapter="0"] .story-chapters [data-index="0"],
.scroll-story[data-chapter="1"] .story-chapters [data-index="1"],
.scroll-story[data-chapter="2"] .story-chapters [data-index="2"],
.scroll-story[data-chapter="3"] .story-chapters [data-index="3"] {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.story-progress {
  position: absolute;
  z-index: 5;
  right: max(3vw, calc((100vw - 1240px) / 2));
  top: 50%;
  width: 1px;
  height: 190px;
  background: rgba(255,255,255,.12);
}

.story-progress i {
  position: absolute;
  left: 0;
  top: 0;
  width: 1px;
  height: calc(var(--story-progress) * 100%);
  background: linear-gradient(var(--blue),var(--cyan));
  box-shadow: 0 0 10px rgba(34,230,236,.55);
}

.story-progress span {
  position: absolute;
  right: 10px;
  bottom: -5px;
  color: #62708b;
  font: 7px Consolas,monospace;
}

.story-scroll-hint {
  position: absolute;
  z-index: 5;
  right: max(3vw, calc((100vw - 1240px) / 2));
  bottom: 4%;
  margin: 0;
  color: #5e6a83;
  font-size: 6px;
  font-weight: 850;
  letter-spacing: .14em;
}

.story-scroll-hint span {
  margin-left: 8px;
  color: var(--cyan);
}

.research-profile {
  position: relative;
  min-height: 610px;
  padding: 38px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(114,150,255,.25);
  border-radius: 30px;
  color: #f5f7ff;
  background:
    radial-gradient(circle at 100% 0, rgba(34,230,236,.13), transparent 17rem),
    linear-gradient(145deg,#09142d,#030714 72%);
  box-shadow: 0 35px 80px rgba(0,0,0,.28);
}

.research-profile::after {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  right: -120px;
  bottom: -140px;
  border: 1px solid rgba(34,230,236,.16);
  border-radius: 50%;
  box-shadow: 0 0 60px rgba(20,93,255,.15) inset;
}

.research-profile-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--cyan);
  font-size: 7px;
  font-weight: 850;
  letter-spacing: .17em;
}

.research-profile-top small { color:#61708f; font:8px Consolas,monospace; }

.research-institution {
  margin-top: 44px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.research-institution > span {
  width: 70px;
  height: 70px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 18px;
  color: #fff;
  background: rgba(255,255,255,.05);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .08em;
}

.research-institution > div,
.research-university p { display:grid; gap:5px; margin:0; }
.research-institution strong { font-size:18px; }
.research-institution small,
.research-university small { color:#74829f; font-size:9px; }

.research-role {
  margin: 32px 0 9px;
  color: var(--cyan);
  font-size: 8px;
  font-weight: 850;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.research-profile h3 {
  margin: 0;
  font-size: clamp(1.65rem,2.8vw,2.65rem);
  line-height: 1.03;
  letter-spacing: -.055em;
}

.research-tags {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.research-tags span {
  padding: 8px 10px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 20px;
  color: #9eabc1;
  background: rgba(255,255,255,.025);
  font-size: 7px;
  font-weight: 750;
}

.research-summary {
  margin: 24px 0 0;
  color:#909db5;
  font-size:11px;
  line-height:1.65;
}

.research-university {
  margin-top: auto;
  padding-top: 28px;
  display:flex;
  align-items:center;
  gap:12px;
  border-top:1px solid rgba(255,255,255,.09);
}

.research-university > span {
  width:36px;
  height:36px;
  display:grid;
  place-items:center;
  border-radius:50%;
  color:#07101e;
  background:var(--cyan);
  font-size:8px;
  font-weight:900;
}

.research-university strong { color:#e9efff; font-size:10px; }
.research-profile > a { position:relative; z-index:2; margin-top:22px; color:#fff; font-size:9px; font-weight:800; }
.research-profile > a span { margin-left:6px; color:var(--cyan); }
.footer-wordmark { font-size:28px; }

html[data-theme="light"] {
  --ink: #f5f5f7;
  --ink-soft: #ffffff;
  --surface: #ffffff;
  --paper: #ffffff;
  --text: #111318;
  --muted: #626b7a;
  --line: rgba(10,20,40,.12);
  --dark-text: #0b1020;
  --dark-muted: #5d667b;
}

html[data-theme="light"] body {
  color: #111318;
  background: radial-gradient(circle at 86% 4%, rgba(20,93,255,.10), transparent 27rem), #f5f5f7;
}

html[data-theme="light"] .site-header {
  border-color: rgba(15,28,55,.11);
  background: rgba(250,251,253,.78);
  box-shadow: 0 14px 40px rgba(29,45,75,.1);
}

html[data-theme="light"] .brand,
html[data-theme="light"] .desktop-nav a { color:#111827; }
html[data-theme="light"] .desktop-nav a:hover { color:var(--blue); }
html[data-theme="light"] .theme-toggle,
html[data-theme="light"] .language-switcher summary {
  color:#263248;
  border-color:rgba(15,28,55,.13);
  background:rgba(15,28,55,.035);
}

html[data-theme="light"] .language-menu,
html[data-theme="light"] .mobile-nav nav {
  border-color:rgba(15,28,55,.12);
  background:rgba(252,253,255,.98);
  box-shadow:0 24px 60px rgba(25,42,70,.16);
}

html[data-theme="light"] .language-menu a,
html[data-theme="light"] .mobile-nav nav a { color:#3c475c; }
html[data-theme="light"] .language-menu a:hover,
html[data-theme="light"] .language-menu a[aria-current="page"],
html[data-theme="light"] .mobile-nav nav .mobile-language a[aria-current="page"] { color:#101828; background:rgba(20,93,255,.08); }
html[data-theme="light"] .mobile-nav summary { border-color:rgba(15,28,55,.15); }
html[data-theme="light"] .mobile-nav summary span { background:#111827; }

html[data-theme="light"] .hero h1,
html[data-theme="light"] .offer-heading h2,
html[data-theme="light"] .portfolio-heading h2,
html[data-theme="light"] .about-copy h2 { color:#101318; }
html[data-theme="light"] .hero-lead,
html[data-theme="light"] .offer-heading > p,
html[data-theme="light"] .portfolio-heading > p,
html[data-theme="light"] .about-copy > p:not(.eyebrow) { color:#596376; }
html[data-theme="light"] .hero-reassurance { color:#6f7888; }
html[data-theme="light"] .hero-credentials { border-color:rgba(15,28,55,.12); background:rgba(255,255,255,.62); }
html[data-theme="light"] .hero-credentials strong { color:#151b28; }
html[data-theme="light"] .hero-credentials small { color:#687286; }

html[data-theme="light"] .offer-grid article,
html[data-theme="light"] .trust-contract {
  border-color:rgba(15,28,55,.12);
  background:rgba(255,255,255,.76);
  box-shadow:0 22px 55px rgba(25,46,88,.07);
}

html[data-theme="light"] .offer-grid article.recommended { border-color:rgba(20,93,255,.25); background:radial-gradient(circle at 90% 0,rgba(34,230,236,.12),transparent 15rem),#fff; }
html[data-theme="light"] .offer-grid p,
html[data-theme="light"] .offer-grid li,
html[data-theme="light"] .trust-contract span { color:#626d80; }
html[data-theme="light"] .offer-grid article > a,
html[data-theme="light"] .trust-contract strong { color:#111827; }
html[data-theme="light"] .proof-strip { border-color:rgba(15,28,55,.09); background:rgba(255,255,255,.58); }
html[data-theme="light"] .proof-strip > div { color:#606b7d; }
html[data-theme="light"] .portfolio-heading { border-color:rgba(15,28,55,.12); }
html[data-theme="light"] .about-values { border-color:rgba(15,28,55,.12); }
html[data-theme="light"] .about-values span { color:#313b4f; }
html[data-theme="light"] .footer-brand p,
html[data-theme="light"] .footer-links a { color:#5f697a; }
html[data-theme="light"] .footer-links a:hover { color:#111827; }
html[data-theme="light"] .footer-bottom { color:#747d8d; border-color:rgba(15,28,55,.12); }

html[data-theme="light"] .dimension-statement,
html[data-theme="light"] .aftercare,
html[data-theme="light"] .research-profile,
html[data-theme="light"] .portfolio-card,
html[data-theme="light"] .final-cta { color:#f7f9ff; }

html[data-theme="light"] .dimension-statement h2,
html[data-theme="light"] .aftercare h2,
html[data-theme="light"] .research-profile h3,
html[data-theme="light"] .portfolio-card h3,
html[data-theme="light"] .final-cta h2 { color:#f7f9ff; }

html[data-theme="light"] .scroll-story { background:#edf2fa; }
html[data-theme="light"] .scroll-story-sticky { color:#111827; background:#edf2fa; }
html[data-theme="light"] .scroll-story-sticky::before { background:linear-gradient(90deg,rgba(237,242,250,.94) 0%,rgba(237,242,250,.45) 32%,transparent 60%); }
html[data-theme="light"] .story-chapters p { color:#536077; }
html[data-theme="light"] .story-chapters small { color:#67748a; }
html[data-theme="light"] .story-progress { background:rgba(15,28,55,.13); }
html[data-theme="light"] .story-progress span,
html[data-theme="light"] .story-scroll-hint { color:#667187; }

html[data-theme="light"] .service-page,
html[data-theme="light"] .case-page { background:radial-gradient(circle at 85% 0,rgba(20,93,255,.10),transparent 28rem),var(--ink); }
html[data-theme="light"] .service-page-header,
html[data-theme="light"] .legal-header { border-color:rgba(15,28,55,.12); }
html[data-theme="light"] .service-page-hero h1,
html[data-theme="light"] .case-page-hero h1,
html[data-theme="light"] .legal-document h1 { color:#111827; }

@media (max-width: 1040px) {
  .hero { min-height:720px; padding-bottom:90px; }
  .scroll-story-intro { left:30px; }
  .story-chapters { left:30px; width:340px; }
  .about { grid-template-columns:1fr; gap:60px; }
  .research-profile { min-height:570px; }
}

@media (max-width: 760px) {
  .hero { min-height:auto; padding-bottom:78px; }
  .scroll-story { height:380vh; }
  .scroll-story-sticky { min-height:620px; }
  .scroll-story-sticky::before { background:linear-gradient(180deg,rgba(3,7,20,.74),transparent 38%,rgba(3,7,20,.84) 74%); }
  html[data-theme="light"] .scroll-story-sticky::before { background:linear-gradient(180deg,rgba(237,242,250,.88),transparent 40%,rgba(237,242,250,.92) 74%); }
  .scroll-story-intro { left:20px; right:20px; top:8%; }
  .scroll-story-intro h2 { max-width:520px; font-size:clamp(2.7rem,11vw,4.3rem); }
  .story-chapters { left:20px; right:52px; bottom:7%; width:auto; min-height:205px; }
  .story-chapters article { padding-left:42px; }
  .story-chapters h3 { font-size:clamp(1.8rem,8vw,2.5rem); }
  .story-progress { right:22px; height:150px; }
  .story-scroll-hint { display:none; }
  .research-profile { min-height:650px; padding:28px 24px; border-radius:24px; }
  .research-institution { margin-top:34px; }
  .research-profile h3 { font-size:clamp(1.7rem,8vw,2.5rem); }
}

@media (prefers-reduced-motion: reduce) {
  .scroll-story { height:auto; }
  .scroll-story-sticky { position:relative; height:auto; min-height:0; padding:80px 24px; }
  .scroll-story canvas,
  .story-progress,
  .story-scroll-hint { display:none; }
  .scroll-story-sticky::before { display:none; }
  .scroll-story-intro,
  .story-chapters { position:relative; inset:auto; width:min(100%,760px); max-width:none; margin-inline:auto; }
  .story-chapters { min-height:0; margin-top:60px; display:grid; gap:38px; }
  .story-chapters article { position:relative; inset:auto; opacity:1; transform:none; }
  .theme-toggle:hover { transform:none; }
}

/* Mobile story: a complete product narrative without scroll-synced canvas */
.mobile-story { display: none; }

/* Visual service selector */
.visual-services {
  padding-top: 132px;
  padding-bottom: 132px;
}

.visual-services-heading {
  max-width: 940px;
  margin-bottom: 56px;
}

.visual-services-heading .eyebrow { margin-bottom: 22px; }

.visual-services-heading h2 {
  max-width: 900px;
  margin: 0;
  color: var(--text);
  font-size: clamp(3rem, 6.1vw, 6.2rem);
  line-height: .93;
  letter-spacing: -.07em;
}

.visual-services-heading > p:last-child {
  max-width: 610px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.visual-services-shell {
  display: grid;
  grid-template-columns: 265px minmax(0, 1fr);
  overflow: hidden;
  border: 1px solid rgba(117, 145, 200, .2);
  border-radius: 32px;
  background: rgba(8, 15, 33, .66);
  box-shadow: 0 36px 100px rgba(0, 0, 0, .24);
}

.visual-service-tabs {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-right: 1px solid rgba(117, 145, 200, .16);
  background: rgba(2, 7, 20, .42);
}

.visual-service-tabs button {
  min-height: 82px;
  padding: 0 16px;
  display: grid;
  grid-template-columns: 26px 1fr 20px;
  align-items: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 17px;
  color: #7d8aa4;
  background: transparent;
  text-align: left;
  cursor: pointer;
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.visual-service-tabs button:hover { color: #e9efff; transform: translateX(2px); }
.visual-service-tabs button:focus-visible { outline: 2px solid var(--cyan); outline-offset: 2px; }

.visual-service-tabs button.active {
  color: #fff;
  border-color: rgba(34, 230, 236, .2);
  background: linear-gradient(120deg, rgba(20, 93, 255, .18), rgba(34, 230, 236, .055));
}

.visual-service-tabs button > span {
  color: #53627f;
  font: 700 8px Consolas, monospace;
}

.visual-service-tabs button.active > span { color: var(--cyan); }
.visual-service-tabs button strong { font-size: 11px; line-height: 1.25; }
.visual-service-tabs button i { color: #53627f; font-style: normal; text-align: right; }
.visual-service-tabs button.active i { color: var(--cyan); }

.visual-service-stage { min-width: 0; }

.visual-stage-bar {
  height: 58px;
  padding: 0 22px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  border-bottom: 1px solid rgba(117, 145, 200, .15);
  color: #60708e;
  background: rgba(4, 9, 23, .62);
}

.visual-stage-bar > span { display: flex; gap: 6px; }
.visual-stage-bar i { width: 6px; height: 6px; border-radius: 50%; background: #33415d; }
.visual-stage-bar i:first-child { background: var(--cyan); box-shadow: 0 0 10px rgba(34, 230, 236, .45); }
.visual-stage-bar small { font-size: 7px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.visual-stage-bar b { justify-self: end; color: #40506d; font: 700 8px Consolas, monospace; }

.visual-stage-canvas {
  min-height: 500px;
  padding: 42px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    linear-gradient(rgba(34, 230, 236, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(34, 230, 236, .035) 1px, transparent 1px),
    radial-gradient(circle at 70% 20%, rgba(20, 93, 255, .2), transparent 24rem),
    #050b1b;
  background-size: 38px 38px, 38px 38px, auto, auto;
  animation: service-demo-in 380ms cubic-bezier(.2, .75, .2, 1) both;
}

@keyframes service-demo-in {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.service-demo {
  width: min(100%, 820px);
  min-height: 385px;
  overflow: hidden;
  border: 1px solid rgba(132, 165, 225, .22);
  border-radius: 22px;
  color: #eef4ff;
  background: #0a1228;
  box-shadow: 0 30px 80px rgba(0, 0, 0, .42);
}

.demo-site-nav {
  height: 64px;
  padding: 0 25px;
  display: flex;
  align-items: center;
  gap: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  font-size: 8px;
}

.demo-site-nav strong { margin-right: auto; color: #fff; font-size: 13px; letter-spacing: .08em; }
.demo-site-nav > span { color: #71809d; }
.demo-site-nav b { padding: 9px 13px; border-radius: 18px; color: #03101e; background: var(--cyan); }

.demo-landing-body {
  min-height: 321px;
  padding: 45px;
  display: grid;
  grid-template-columns: 1.2fr .72fr;
  align-items: center;
  gap: 45px;
  background: radial-gradient(circle at 88% 45%, rgba(34, 230, 236, .13), transparent 15rem);
}

.demo-landing-body small { color: var(--cyan); font-size: 7px; font-weight: 800; letter-spacing: .14em; }
.demo-landing-body h3 { max-width: 430px; margin: 14px 0; font-size: clamp(2.2rem, 4.2vw, 4.3rem); line-height: .9; letter-spacing: -.07em; }
.demo-landing-body > div:first-child p { max-width: 360px; margin: 0 0 24px; color: #8390a9; font-size: 10px; line-height: 1.6; }
.demo-landing-body button,
.demo-shop-layout aside button,
.demo-dashboard header button {
  border: 0;
  border-radius: 20px;
  color: #061020;
  background: #fff;
  font-family: inherit;
  font-size: 8px;
  font-weight: 800;
}
.demo-landing-body button { padding: 12px 15px; }
.demo-landing-body button span { color: var(--blue); }

.demo-proof-card {
  min-height: 230px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(34, 230, 236, .18);
  border-radius: 20px;
  background: linear-gradient(145deg, rgba(20, 93, 255, .18), rgba(255, 255, 255, .035));
  transform: rotate(2deg);
}
.demo-proof-card > i { width: 9px; height: 9px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 18px var(--cyan); }
.demo-proof-card > span { margin-top: 42px; color: #63728f; font-size: 7px; letter-spacing: .15em; }
.demo-proof-card > strong { margin-top: 7px; font-size: 42px; letter-spacing: -.06em; }
.demo-proof-card > p { color: #91a0b9; font-size: 9px; line-height: 1.5; }
.demo-proof-card > div { margin-top: auto; display: flex; gap: 6px; }
.demo-proof-card > div i { width: 28%; height: 3px; border-radius: 3px; background: #28436d; }
.demo-proof-card > div i:first-child { width: 44%; background: var(--cyan); }

.service-demo-commerce { padding: 30px; background: #f2eee7; color: #171815; }
.demo-shop-heading { display: flex; justify-content: space-between; align-items: end; }
.demo-shop-heading small { color: #8e887e; font-size: 6px; letter-spacing: .14em; }
.demo-shop-heading h3 { max-width: 410px; margin: 7px 0 0; font: 500 clamp(1.7rem, 3.3vw, 3.2rem) Georgia, serif; line-height: .93; letter-spacing: -.05em; }
.demo-shop-heading > span { padding: 9px 12px; border: 1px solid #d7d0c4; border-radius: 20px; font-size: 7px; }
.demo-shop-layout { margin-top: 28px; display: grid; grid-template-columns: 1fr 195px; gap: 20px; }
.demo-products { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.demo-products article > div { position: relative; min-height: 190px; overflow: hidden; border-radius: 12px; background: #d8d1c7; }
.demo-products article:first-child > div { background: linear-gradient(145deg, #b4afa8, #e2d9ca); }
.demo-products article:last-child > div { background: linear-gradient(145deg, #c5aa90, #eadaca); }
.demo-products article > div::before { content: ""; position: absolute; left: 50%; top: 50%; width: 44%; height: 64%; border-radius: 48% 48% 38% 38%; background: rgba(255,255,255,.68); transform: translate(-50%,-43%); box-shadow: 0 18px 25px rgba(75,60,45,.12); }
.demo-products article:last-child > div::before { width: 55%; height: 45%; border-radius: 50% 50% 30% 30%; background: rgba(108,75,50,.64); }
.demo-products article > div span { position: absolute; z-index: 2; left: 12px; top: 10px; color: rgba(20,20,20,.45); font: 7px Consolas, monospace; }
.demo-products article p { margin: 10px 2px 0; display: flex; justify-content: space-between; font-size: 8px; }
.demo-products article p small { color: #777168; }
.demo-shop-layout aside { padding: 20px; border: 1px solid #d8d1c7; border-radius: 14px; background: rgba(255,255,255,.56); }
.demo-shop-layout aside > small { color: #8a8379; font-size: 6px; letter-spacing: .13em; }
.demo-shop-layout aside p { margin: 18px 0 0; display: flex; justify-content: space-between; font-size: 8px; }
.demo-shop-layout aside hr { margin: 18px 0 0; border: 0; border-top: 1px solid #d9d1c5; }
.demo-shop-layout aside button { width: 100%; margin-top: 20px; padding: 12px; color: #fff; background: #1d1f1a; }
.demo-shop-layout aside em { display: block; margin-top: 12px; color: #918a80; font-size: 6px; font-style: normal; text-align: center; letter-spacing: .1em; }

.service-demo-saas { display: grid; grid-template-columns: 58px 1fr; background: #091127; }
.service-demo-saas > aside { padding: 20px 0; display: flex; flex-direction: column; align-items: center; gap: 20px; border-right: 1px solid rgba(255,255,255,.08); }
.service-demo-saas > aside strong { margin-bottom: 18px; color: #fff; font-size: 8px; }
.service-demo-saas > aside strong span { color: var(--cyan); }
.service-demo-saas > aside i { width: 18px; height: 18px; border: 1px solid #2d3a58; border-radius: 5px; }
.service-demo-saas > aside i.active { border-color: rgba(34,230,236,.45); background: rgba(34,230,236,.16); box-shadow: inset 0 0 0 5px #091127; }
.service-demo-saas > aside b { width: 24px; height: 24px; margin-top: auto; display: grid; place-items: center; border-radius: 50%; color: #061020; background: var(--cyan); font-size: 6px; }
.demo-dashboard { padding: 27px; }
.demo-dashboard header { display: flex; align-items: center; justify-content: space-between; }
.demo-dashboard header small { color: #64738f; font-size: 6px; letter-spacing: .14em; }
.demo-dashboard header h3 { margin: 5px 0 0; font-size: clamp(1.2rem, 2.1vw, 1.9rem); letter-spacing: -.04em; }
.demo-dashboard header button { padding: 10px 13px; background: var(--cyan); }
.demo-metrics { margin-top: 26px; display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; }
.demo-metrics article { padding: 16px; border: 1px solid rgba(255,255,255,.08); border-radius: 12px; background: rgba(255,255,255,.025); }
.demo-metrics small { display: block; color: #65728d; font-size: 6px; letter-spacing: .1em; }
.demo-metrics strong { display: block; margin: 10px 0 5px; font-size: 22px; }
.demo-metrics span { color: var(--cyan); font-size: 6px; }
.demo-chart { margin-top: 14px; padding: 16px; border: 1px solid rgba(255,255,255,.08); border-radius: 12px; background: rgba(255,255,255,.025); }
.demo-chart > div { display: flex; justify-content: space-between; color: #65728d; font-size: 6px; }
.demo-chart ol { height: 115px; margin: 14px 0 0; padding: 0; display: flex; align-items: end; gap: 7px; list-style: none; border-bottom: 1px solid rgba(255,255,255,.08); }
.demo-chart li { flex: 1; max-height: 100%; border-radius: 3px 3px 0 0; background: linear-gradient(var(--cyan), rgba(20,93,255,.2)); opacity: .72; }

.service-demo-custom { padding: 28px; background: radial-gradient(circle at 50% 45%, rgba(20,93,255,.16), transparent 18rem), #070d20; }
.workflow-head { display: flex; justify-content: space-between; color: #73819b; font-size: 7px; }
.workflow-head > span { color: #9da9bd; letter-spacing: .1em; }
.workflow-head i { display: inline-block; width: 6px; height: 6px; margin-right: 5px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 10px var(--cyan); }
.workflow-map { position: relative; min-height: 305px; margin-top: 20px; }
.workflow-node { position: absolute; z-index: 2; width: 185px; padding: 17px; border: 1px solid rgba(116,149,211,.22); border-radius: 13px; background: rgba(10,21,47,.96); box-shadow: 0 14px 30px rgba(0,0,0,.25); }
.workflow-node small { color: var(--cyan); font-size: 6px; letter-spacing: .1em; }
.workflow-node strong { display: block; margin-top: 11px; font-size: 10px; }
.workflow-node > span { display: block; margin-top: 6px; color: #71809b; font-size: 7px; }
.node-entry { left: 2%; top: 4%; }
.node-logic { left: 36%; top: 28%; }
.node-action { right: 2%; top: 4%; }
.node-data { right: 15%; bottom: 0; }
.workflow-line { position: absolute; z-index: 1; height: 1px; background: linear-gradient(90deg, var(--blue), var(--cyan)); transform-origin: left; opacity: .58; }
.line-one { left: 25%; top: 26%; width: 22%; transform: rotate(16deg); }
.line-two { left: 59%; top: 46%; width: 22%; transform: rotate(-17deg); }
.line-three { right: 17%; top: 38%; width: 24%; transform: rotate(69deg); }

.visual-stage-caption {
  min-height: 160px;
  padding: 30px 34px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 30px;
  border-top: 1px solid rgba(117, 145, 200, .15);
  background: rgba(4, 9, 23, .76);
}
.visual-stage-caption small { color: var(--cyan); font-size: 7px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.visual-stage-caption h3 { margin: 9px 0 6px; color: #f3f6ff; font-size: clamp(1.5rem, 2.5vw, 2.4rem); line-height: 1; letter-spacing: -.05em; }
.visual-stage-caption p { max-width: 610px; margin: 0; color: #8492aa; font-size: 10px; line-height: 1.6; }
.visual-stage-tags { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 6px; }
.visual-stage-tags span { padding: 7px 9px; border: 1px solid rgba(255,255,255,.1); border-radius: 20px; color: #8190a9; font-size: 7px; }

html[data-theme="light"] .visual-services-heading h2 { color: #111318; }
html[data-theme="light"] .visual-services-heading > p:last-child { color: #5d687b; }
html[data-theme="light"] .visual-services-shell { border-color: rgba(15,28,55,.13); background: #fff; box-shadow: 0 36px 100px rgba(26,45,82,.11); }
html[data-theme="light"] .visual-service-tabs { border-color: rgba(15,28,55,.1); background: #f5f7fb; }
html[data-theme="light"] .visual-service-tabs button { color: #687386; }
html[data-theme="light"] .visual-service-tabs button:hover { color: #141b29; }
html[data-theme="light"] .visual-service-tabs button.active { color: #101827; border-color: rgba(20,93,255,.18); background: linear-gradient(120deg,rgba(20,93,255,.1),rgba(34,230,236,.08)); }

@media (max-width: 900px) {
  .visual-services-shell { grid-template-columns: 1fr; }
  .visual-service-tabs { flex-direction: row; overflow-x: auto; border-right: 0; border-bottom: 1px solid rgba(117,145,200,.16); scrollbar-width: none; }
  .visual-service-tabs::-webkit-scrollbar { display: none; }
  .visual-service-tabs button { min-width: 195px; }
  .visual-stage-canvas { padding: 30px; }
}

@media (max-width: 760px) {
  .scroll-story { height: auto; background: var(--ink); }
  .scroll-story-sticky { display: none; }
  .mobile-story { padding: 78px 20px 82px; display: block; color: #f5f7ff; }
  .mobile-story-heading { margin: 0 auto 36px; }
  .mobile-story-heading p { margin: 0 0 14px; color: var(--cyan); font-size: 8px; font-weight: 850; letter-spacing: .15em; }
  .mobile-story-heading h2 { max-width: 620px; margin: 0; font-size: clamp(2.7rem, 12vw, 4.6rem); line-height: .91; letter-spacing: -.07em; }
  .mobile-story-card { margin-top: 16px; padding: 16px; border: 1px solid rgba(112,150,220,.2); border-radius: 25px; background: rgba(8,16,36,.72); box-shadow: 0 24px 60px rgba(0,0,0,.18); }
  .mobile-story-card > div:last-child { padding: 25px 8px 10px; }
  .mobile-story-card small { color: var(--cyan); font-size: 7px; font-weight: 800; letter-spacing: .13em; }
  .mobile-story-card h3 { margin: 11px 0 10px; font-size: clamp(1.6rem, 7vw, 2.2rem); line-height: 1; letter-spacing: -.05em; }
  .mobile-story-card p { margin: 0; color: #8f9bb2; font-size: 11px; line-height: 1.65; }
  .mobile-story-visual { min-height: 218px; overflow: hidden; border: 1px solid rgba(255,255,255,.08); border-radius: 17px; background: radial-gradient(circle at 60% 45%,rgba(20,93,255,.24),transparent 12rem),#050b1b; }
  .mobile-story-sources .mobile-story-visual { position: relative; }
  .mobile-story-sources .mobile-story-visual span { position: absolute; padding: 10px 12px; border: 1px solid rgba(34,230,236,.17); border-radius: 18px; color: #b0bdd2; background: rgba(8,20,44,.9); font-size: 8px; }
  .mobile-story-sources .mobile-story-visual span:nth-child(1) { left: 7%; top: 18%; transform: rotate(-4deg); }
  .mobile-story-sources .mobile-story-visual span:nth-child(2) { right: 7%; top: 11%; transform: rotate(3deg); }
  .mobile-story-sources .mobile-story-visual span:nth-child(3) { left: 15%; bottom: 15%; transform: rotate(3deg); }
  .mobile-story-sources .mobile-story-visual span:nth-child(4) { right: 12%; bottom: 19%; transform: rotate(-5deg); }
  .mobile-story-sources .mobile-story-visual i { position: absolute; left: 50%; top: 50%; width: 46px; height: 46px; border: 1px solid rgba(34,230,236,.4); border-radius: 50%; background: radial-gradient(circle,var(--cyan) 0 4px,rgba(34,230,236,.08) 5px 100%); transform: translate(-50%,-50%); box-shadow: 0 0 35px rgba(34,230,236,.18); }
  .mobile-story-system .mobile-story-visual { padding: 25px 15px; display: grid; grid-template-columns: 1fr 18px 1fr 18px 1fr; align-items: center; gap: 4px; }
  .mobile-story-system .mobile-story-visual div { min-width: 0; padding: 18px 8px; border: 1px solid rgba(112,150,220,.22); border-radius: 13px; background: rgba(255,255,255,.035); text-align: center; }
  .mobile-story-system .mobile-story-visual div span { display: block; color: var(--cyan); font: 700 7px Consolas,monospace; }
  .mobile-story-system .mobile-story-visual div strong { display: block; margin-top: 7px; color: #e9efff; font-size: 8px; }
  .mobile-story-system .mobile-story-visual > i { color: #49648b; font-size: 12px; font-style: normal; text-align: center; }
  .mobile-story-dashboard { overflow: hidden; border: 1px solid rgba(112,150,220,.22); border-radius: 17px; background: #071023; }
  .mobile-story-dashboard > div { height: 32px; padding: 0 12px; display: flex; align-items: center; gap: 5px; color: #61708d; font: 6px Consolas,monospace; }
  .mobile-story-dashboard i { width: 5px; height: 5px; border-radius: 50%; background: #33425e; }
  .mobile-story-dashboard i:first-child { background: var(--cyan); }
  .mobile-story-dashboard span { margin-left: 5px; }
  .mobile-story-dashboard img { width: 100%; height: auto; display: block; }
  html[data-theme="light"] .scroll-story { background: #edf2fa; }
  html[data-theme="light"] .mobile-story { color: #111827; }
  html[data-theme="light"] .mobile-story-card { border-color: rgba(15,28,55,.12); background: rgba(255,255,255,.72); box-shadow: 0 24px 60px rgba(25,42,70,.09); }
  html[data-theme="light"] .mobile-story-card p { color: #5b677b; }

  .visual-services { padding-top: 90px; padding-bottom: 90px; }
  .visual-services-heading { margin-bottom: 36px; }
  .visual-services-heading h2 { font-size: clamp(2.65rem, 11.7vw, 4.2rem); }
  .visual-services-heading > p:last-child { margin-top: 20px; font-size: 12px; }
  .visual-services-shell { margin-inline: -2px; border-radius: 24px; }
  .visual-service-tabs { padding: 10px; }
  .visual-service-tabs button { min-width: 175px; min-height: 68px; padding-inline: 12px; grid-template-columns: 22px 1fr 14px; }
  .visual-stage-bar { height: 48px; padding-inline: 15px; }
  .visual-stage-bar { grid-template-columns: auto 1fr auto; gap: 10px; }
  .visual-stage-bar small { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; text-align: center; }
  .visual-stage-canvas { min-height: 345px; padding: 16px; place-items: stretch; }
  .service-demo { min-height: 310px; border-radius: 16px; }
  .demo-site-nav { height: 46px; padding-inline: 13px; gap: 10px; }
  .demo-site-nav > span { display: none; }
  .demo-landing-body { min-height: 264px; padding: 24px 20px; grid-template-columns: 1fr .58fr; gap: 13px; }
  .demo-landing-body h3 { font-size: clamp(1.85rem, 9vw, 2.7rem); }
  .demo-landing-body > div:first-child p { font-size: 8px; }
  .demo-proof-card { min-height: 190px; padding: 15px; }
  .demo-proof-card > span { margin-top: 28px; }
  .demo-proof-card > strong { font-size: 30px; }
  .demo-proof-card > p { font-size: 7px; }
  .service-demo-commerce { padding: 18px; }
  .demo-shop-heading h3 { font-size: 1.6rem; }
  .demo-shop-layout { margin-top: 18px; grid-template-columns: 1fr 125px; gap: 10px; }
  .demo-products article > div { min-height: 145px; }
  .demo-shop-layout aside { padding: 12px; }
  .demo-shop-layout aside p { font-size: 6px; }
  .service-demo-saas { grid-template-columns: 42px 1fr; }
  .service-demo-saas > aside { padding-block: 14px; gap: 14px; }
  .demo-dashboard { padding: 16px 12px; }
  .demo-dashboard header h3 { font-size: 1rem; }
  .demo-dashboard header button { padding: 8px; font-size: 6px; }
  .demo-metrics { gap: 5px; margin-top: 18px; }
  .demo-metrics article { padding: 10px 7px; }
  .demo-metrics strong { font-size: 17px; }
  .demo-chart { padding: 10px; }
  .demo-chart ol { height: 93px; gap: 3px; }
  .service-demo-custom { padding: 18px 12px; }
  .workflow-head small { display: none; }
  .workflow-map { min-height: 260px; }
  .workflow-node { width: 132px; padding: 12px; }
  .workflow-node strong { font-size: 8px; }
  .workflow-node > span { font-size: 6px; }
  .node-entry { left: 0; }
  .node-logic { left: 34%; top: 29%; }
  .node-action { right: 0; }
  .node-data { right: 8%; }
  .visual-stage-caption { min-height: 0; padding: 24px 20px; grid-template-columns: 1fr; align-items: start; gap: 16px; }
  .visual-stage-caption h3 { font-size: 1.75rem; }
  .visual-stage-caption p { font-size: 9px; }
  .visual-stage-tags { justify-content: flex-start; }
}

@media (max-width: 430px) {
  .demo-landing-body { grid-template-columns: 1fr; }
  .demo-proof-card { display: none; }
  .demo-shop-layout { grid-template-columns: 1fr; }
  .demo-shop-layout aside { display: none; }
  .demo-products article > div { min-height: 185px; }
  .workflow-node { width: 120px; }
  .node-logic { left: 30%; }
}

@media (prefers-reduced-motion: reduce) {
  .visual-stage-canvas { animation: none; }
  .visual-service-tabs button { transition: none; }
}

/* Control Ruta: real SaaS product showcase */
.saas-showcase {
  position: relative;
  padding: 112px 70px 72px;
  overflow: hidden;
  isolation: isolate;
  border: 1px solid rgba(112, 160, 255, .2);
  border-radius: 36px;
  color: #f7f9ff;
  background:
    radial-gradient(circle at 77% 20%, rgba(0, 224, 232, .13), transparent 27rem),
    radial-gradient(circle at 18% 48%, rgba(20, 93, 255, .2), transparent 31rem),
    linear-gradient(145deg, #071128 0%, #030714 63%, #050a19 100%);
  box-shadow: 0 60px 130px rgba(0, 0, 0, .32);
}

.saas-showcase::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: .13;
  background-image:
    linear-gradient(rgba(255, 255, 255, .08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .08) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(to bottom, #000, transparent 66%);
  pointer-events: none;
}

.saas-showcase-heading {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(290px, .55fr);
  align-items: end;
  gap: 70px;
}

.saas-showcase-heading h2 {
  max-width: 880px;
  margin: 0;
  color: #f7f9ff;
  font-size: clamp(3.5rem, 6.1vw, 7rem);
  line-height: .89;
  letter-spacing: -.078em;
}

.saas-showcase-heading h2 em {
  display: block;
  color: transparent;
  background: linear-gradient(98deg, #5689ff 2%, #30dff3 78%);
  -webkit-background-clip: text;
  background-clip: text;
  font-family: Georgia, serif;
  font-weight: 400;
}

.saas-showcase-heading > p {
  max-width: 460px;
  margin: 0 0 8px;
  color: #a8b4cc;
  font-size: 16px;
  line-height: 1.75;
}

.saas-product-stage {
  position: relative;
  min-height: 710px;
  margin-top: 48px;
  padding-top: 42px;
  perspective: 1600px;
}

.saas-stage-glow {
  position: absolute;
  inset: 13% 9% 12%;
  border-radius: 50%;
  background: rgba(15, 105, 255, .17);
  filter: blur(100px);
  pointer-events: none;
}

.saas-browser {
  position: relative;
  z-index: 2;
  width: 86%;
  margin: 56px auto 0;
  overflow: hidden;
  border: 1px solid rgba(118, 175, 255, .38);
  border-radius: 24px;
  background: #071024;
  box-shadow:
    0 65px 110px rgba(0, 0, 0, .54),
    0 0 0 10px rgba(76, 128, 255, .035),
    0 0 100px rgba(20, 93, 255, .2);
  transform: rotateX(3.8deg) rotateY(-2.5deg) rotateZ(.2deg);
  transform-origin: center bottom;
}

.saas-browser-bar {
  min-height: 56px;
  padding: 0 19px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  color: #8796b4;
  background: rgba(5, 12, 29, .96);
  font: 8px Consolas, monospace;
  letter-spacing: .08em;
}

.saas-browser-dots { display: flex; gap: 6px; }
.saas-browser-dots i { width: 7px; height: 7px; border-radius: 50%; background: #23304c; }
.saas-browser-dots i:first-child { background: #ff6a76; }
.saas-browser-dots i:nth-child(2) { background: #ffc45b; }
.saas-browser-dots i:nth-child(3) { background: #41d99b; }
.saas-browser-bar strong { display:flex; align-items:center; gap:7px; color:#91a4c6; font-size:7px; letter-spacing:.12em; }
.saas-browser-bar strong i { width:6px; height:6px; border-radius:50%; background:#3ee3aa; box-shadow:0 0 12px #3ee3aa; }
.saas-browser img { display: block; width: 100%; height: auto; aspect-ratio: 16 / 9; object-fit: cover; object-position: top center; }

.saas-float-card {
  position: absolute;
  z-index: 4;
  width: min(330px, 29%);
  padding: 20px;
  display: grid;
  grid-template-columns: 48px 1fr;
  align-items: center;
  gap: 15px;
  border: 1px solid rgba(126, 180, 255, .33);
  border-radius: 18px;
  background: rgba(5, 14, 34, .86);
  box-shadow: 0 24px 65px rgba(0, 0, 0, .46), inset 0 1px rgba(255, 255, 255, .06);
  backdrop-filter: blur(22px);
}

.saas-login-card { top: 4%; left: 0; animation: saasCardFloat 5s ease-in-out infinite; }
.saas-payment-card { right: 0; bottom: 4%; animation: saasCardFloat 5s ease-in-out infinite .8s; }
.saas-card-icon { position:relative; width:48px; height:48px; display:grid; place-items:center; border:1px solid rgba(80,137,255,.48); border-radius:14px; background:linear-gradient(145deg,rgba(20,93,255,.3),rgba(0,224,232,.1)); }
.saas-card-icon i:first-child { position:absolute; top:10px; width:12px; height:12px; border:2px solid #60dff0; border-radius:50%; }
.saas-card-icon i:last-child { position:absolute; bottom:9px; width:22px; height:11px; border:2px solid #60dff0; border-bottom:0; border-radius:14px 14px 0 0; }
.saas-payment-icon b { color:#071128; width:21px; height:21px; display:grid; place-items:center; border-radius:50%; background:#52e2b3; box-shadow:0 0 20px rgba(82,226,179,.32); font-size:12px; }
.saas-float-card > div:last-child { min-width:0; display:grid; }
.saas-float-card small { color:var(--cyan); font-size:7px; font-weight:850; letter-spacing:.14em; }
.saas-float-card strong { margin-top:5px; color:#fff; font-size:13px; letter-spacing:-.02em; }
.saas-float-card span { margin-top:4px; color:#8493b0; font-size:9px; line-height:1.45; }

.saas-journey {
  position: relative;
  z-index: 3;
  margin-top: 4px;
  padding: 25px 27px 28px;
  border: 1px solid rgba(118, 175, 255, .19);
  border-radius: 22px;
  background: rgba(2, 8, 20, .58);
  backdrop-filter: blur(14px);
}

.saas-journey > p,
.saas-proof-intro > p {
  margin: 0 0 21px;
  color: #7290bd;
  font-size: 8px;
  font-weight: 850;
  letter-spacing: .16em;
}

.saas-journey > div { display: grid; grid-template-columns: repeat(5, 1fr); }
.saas-journey article { position:relative; min-height:88px; padding:8px 22px 8px 0; display:flex; flex-direction:column; justify-content:center; border-right:1px solid rgba(255,255,255,.09); }
.saas-journey article:not(:first-child) { padding-left:22px; }
.saas-journey article:last-child { border-right:0; }
.saas-journey article:not(:last-child)::after { content:"→"; position:absolute; right:-7px; top:50%; z-index:2; width:14px; height:18px; margin-top:-9px; display:grid; place-items:center; color:var(--cyan); background:#061027; font-size:11px; }
.saas-journey small { color:#4e80ff; font:8px Consolas,monospace; }
.saas-journey strong { margin-top:9px; color:#f7f9ff; font-size:15px; }
.saas-journey span { margin-top:4px; color:#7f8ca6; font-size:9px; }

.saas-proof {
  margin-top: 82px;
  display: grid;
  grid-template-columns: minmax(280px, .73fr) minmax(0, 1.27fr);
  gap: 85px;
}

.saas-proof-intro > strong { display:block; max-width:470px; color:#f7f9ff; font-size:clamp(1.8rem,2.8vw,3rem); line-height:1.03; letter-spacing:-.055em; }
.saas-proof-actions { margin-top:35px; display:flex; align-items:center; flex-wrap:wrap; gap:20px; }
.saas-proof-actions .button { min-height:49px; padding:0 22px; }
.saas-live-link { color:#a9b7d1; font-size:11px; font-weight:750; text-decoration:none; }
.saas-live-link span { color:var(--cyan); }
.saas-live-link:hover { color:#fff; }
.saas-proof-list { border-top:1px solid rgba(255,255,255,.12); }
.saas-proof-list article { padding:22px 0; display:grid; grid-template-columns:42px 135px 1fr; align-items:start; gap:18px; border-bottom:1px solid rgba(255,255,255,.1); }
.saas-proof-list small { color:#4f80ff; font:8px Consolas,monospace; }
.saas-proof-list strong { color:#f5f8ff; font-size:13px; }
.saas-proof-list p { margin:0; color:#8f9bb2; font-size:11px; line-height:1.6; }

@keyframes saasCardFloat {
  50% { transform: translateY(-8px); }
}

@supports (animation-timeline: view()) {
  .saas-showcase-heading {
    animation: editorialReveal linear both;
    animation-timeline: view();
    animation-range: entry 5% cover 32%;
  }
  .saas-browser {
    animation: saasBrowserReveal linear both;
    animation-timeline: view();
    animation-range: entry 0% cover 38%;
  }
}

@keyframes saasBrowserReveal {
  from { opacity:.18; transform:rotateX(8deg) rotateY(-5deg) scale(.9) translateY(70px); filter:blur(7px); }
  to { opacity:1; transform:rotateX(3.8deg) rotateY(-2.5deg) rotateZ(.2deg) scale(1) translateY(0); filter:blur(0); }
}

html[data-theme="light"] .saas-showcase {
  color:#f7f9ff;
  background:
    radial-gradient(circle at 77% 20%,rgba(0,224,232,.13),transparent 27rem),
    radial-gradient(circle at 18% 48%,rgba(20,93,255,.2),transparent 31rem),
    linear-gradient(145deg,#071128 0%,#030714 63%,#050a19 100%);
}

@media (max-width: 1080px) {
  .saas-showcase { padding:90px 48px 65px; }
  .saas-showcase-heading { grid-template-columns:1fr; gap:30px; }
  .saas-showcase-heading > p { max-width:700px; }
  .saas-product-stage { min-height:620px; }
  .saas-proof { gap:55px; }
}

@media (max-width: 760px) {
  .saas-showcase { width:min(100% - 28px,1240px); padding:72px 20px 42px; border-radius:25px; }
  .saas-showcase-heading h2 { font-size:clamp(3rem,13vw,4.7rem); }
  .saas-showcase-heading > p { font-size:14px; }
  .saas-product-stage { min-height:0; margin-top:35px; padding:25px 0 0; display:grid; grid-template-columns:1fr 1fr; gap:12px; }
  .saas-stage-glow { inset:4% 0 20%; }
  .saas-browser { grid-column:1 / -1; width:100%; margin:0; border-radius:16px; transform:none; }
  .saas-browser-bar { min-height:43px; padding:0 12px; grid-template-columns:auto 1fr; gap:10px; }
  .saas-browser-bar > span:nth-child(2) { overflow:hidden; text-overflow:ellipsis; white-space:nowrap; }
  .saas-browser-bar strong { display:none; }
  .saas-float-card { position:relative; inset:auto; width:auto; min-width:0; padding:14px 12px; grid-template-columns:38px 1fr; gap:10px; animation:none; }
  .saas-card-icon { width:38px; height:38px; border-radius:11px; }
  .saas-card-icon i:first-child { top:7px; width:10px; height:10px; }
  .saas-card-icon i:last-child { bottom:6px; width:18px; height:9px; }
  .saas-float-card strong { font-size:11px; }
  .saas-float-card span { font-size:8px; }
  .saas-journey { margin-top:25px; padding:22px 18px; }
  .saas-journey > div { grid-template-columns:1fr; }
  .saas-journey article { min-height:72px; padding:12px 6px 12px 48px !important; border-right:0; border-bottom:1px solid rgba(255,255,255,.09); }
  .saas-journey article:last-child { border-bottom:0; }
  .saas-journey article:not(:last-child)::after { content:"↓"; right:auto; left:15px; top:auto; bottom:-10px; margin:0; }
  .saas-journey small { position:absolute; left:8px; top:27px; }
  .saas-journey strong { margin-top:0; }
  .saas-proof { margin-top:58px; grid-template-columns:1fr; gap:45px; }
  .saas-proof-intro > strong { font-size:clamp(2rem,9vw,3rem); }
  .saas-proof-list article { grid-template-columns:34px 92px 1fr; gap:10px; }
  .saas-proof-list p { font-size:10px; }
}

@media (max-width: 430px) {
  .saas-product-stage { grid-template-columns:1fr; }
  .saas-browser { grid-column:auto; }
  .saas-proof-list article { grid-template-columns:30px 1fr; }
  .saas-proof-list p { grid-column:2; }
  .saas-proof-actions { align-items:flex-start; flex-direction:column; }
}

@media (prefers-reduced-motion: reduce) {
  .saas-login-card,
  .saas-payment-card,
  .saas-showcase-heading,
  .saas-proof-intro,
  .saas-browser { animation:none !important; transform:none !important; filter:none !important; opacity:1 !important; }
}
