:root {
  --bg: #071020;
  --bg-deep: #050b17;
  --bg-soft: #0c1830;
  --surface: #101d37;
  --surface-2: #142341;
  --surface-3: #172a4d;
  --text: #f7f9ff;
  --text-dark: #10192b;
  --muted: #a8b5cf;
  --muted-dark: #5e6b81;
  --line: rgba(255, 255, 255, 0.11);
  --line-strong: rgba(255, 255, 255, 0.18);
  --primary: #7a65ff;
  --primary-2: #9d7cff;
  --teal: #18c8b0;
  --cyan: #48c7f4;
  --coral: #ff9a72;
  --yellow: #ffd166;
  --light: #f4f7ff;
  --light-violet: #eeeaff;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.34);
  --shadow-soft: 0 18px 45px rgba(10, 23, 48, 0.13);
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 32px;
  --shell: 1320px;
  --header-height: 76px;
  --font-display: ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  --font-body: ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  max-width: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
  overflow-x: clip;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  max-width: 100%;
  overflow-x: hidden;
  overflow-x: clip;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

button,
input,
select,
textarea {
  font: inherit;
}

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

a {
  color: inherit;
}

::selection {
  background: rgba(122, 101, 255, 0.38);
  color: #fff;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  transform: translateY(-160%);
  padding: 11px 16px;
  border-radius: 12px;
  background: #fff;
  color: var(--text-dark);
  font-weight: 800;
  text-decoration: none;
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

:focus-visible {
  outline: 3px solid rgba(72, 199, 244, 0.9);
  outline-offset: 4px;
}

.shell {
  width: min(var(--shell), calc(100% - 64px));
  margin-inline: auto;
}

.section {
  position: relative;
  padding-block: clamp(84px, 9vw, 144px);
}

.page-noise {
  position: fixed;
  inset: 0;
  z-index: 50;
  pointer-events: none;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitchTiles'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");
}

.page-glow {
  position: absolute;
  z-index: -1;
  max-width: 100vw;
  border-radius: 999px;
  filter: blur(100px);
  pointer-events: none;
}

.page-glow-one {
  top: 120px;
  left: -120px;
  width: 460px;
  height: 460px;
  background: rgba(56, 152, 255, 0.15);
}

.page-glow-two {
  top: 310px;
  right: 0;
  width: 520px;
  height: 520px;
  background: rgba(122, 101, 255, 0.2);
}

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

h1,
h2,
h3 {
  font-family: var(--font-display);
  line-height: 1.08;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

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

h3 {
  font-size: clamp(1.35rem, 2vw, 1.9rem);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #b6c2da;
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.15em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow-violet { color: #b9adff; }
.eyebrow-teal { color: #63e7d3; }
.eyebrow-coral { color: #ffb294; }
.eyebrow-dark { color: #5d567c; }
.eyebrow-light { color: rgba(255, 255, 255, 0.75); }

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 7px rgba(24, 200, 176, 0.12), 0 0 24px rgba(24, 200, 176, 0.8);
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 14px;
  background: linear-gradient(135deg, #8268ff 0%, #6657f5 58%, #3a8ef5 100%);
  box-shadow: 0 16px 36px rgba(96, 78, 235, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.25);
  color: #fff;
  cursor: pointer;
  font-weight: 800;
  line-height: 1.15;
  text-align: center;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 42px rgba(96, 78, 235, 0.36), inset 0 1px 0 rgba(255, 255, 255, 0.3);
  filter: saturate(1.08);
}

.button svg,
.linkedin-link svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.button-small {
  min-height: 44px;
  padding: 10px 15px;
  border-radius: 12px;
  font-size: 0.86rem;
}

.button-secondary {
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.035);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  color: #eaf0fb;
}

.button-secondary:hover {
  background: rgba(255, 255, 255, 0.075);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.button-dark {
  background: var(--text-dark);
  box-shadow: 0 16px 35px rgba(15, 25, 43, 0.2);
}

.button-light {
  background: #fff;
  color: #2b2b5c;
  box-shadow: 0 16px 38px rgba(20, 27, 80, 0.2);
}

.full-width { width: 100%; }

.site-header {
  position: fixed;
  z-index: 40;
  top: 0;
  left: 0;
  width: 100%;
  padding: 18px 0;
  transition: padding 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.site-header.is-scrolled {
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(6, 13, 28, 0.78);
  backdrop-filter: blur(20px) saturate(1.2);
  -webkit-backdrop-filter: blur(20px) saturate(1.2);
}

.header-inner {
  display: grid;
  width: min(1400px, calc(100% - 40px));
  min-height: var(--header-height);
  margin-inline: auto;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 10px 12px 10px 18px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(8, 17, 36, 0.62);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(20px) saturate(1.25);
  -webkit-backdrop-filter: blur(20px) saturate(1.25);
}

.site-header.is-scrolled .header-inner {
  border-color: transparent;
  background: transparent;
  box-shadow: none;
}

.brand {
  display: inline-flex;
  width: max-content;
  align-items: center;
  gap: 11px;
  color: var(--text);
  text-decoration: none;
}

.brand-mark {
  position: relative;
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.23);
  border-radius: 13px;
  background: linear-gradient(145deg, #7f68ff, #4d94ee 55%, #1bd0b5);
  box-shadow: 0 10px 26px rgba(90, 91, 241, 0.32), inset 0 1px 0 rgba(255, 255, 255, 0.35);
  font-weight: 900;
}

.brand-mark::after {
  position: absolute;
  inset: 1px;
  border-radius: 11px;
  background: linear-gradient(145deg, rgba(255,255,255,.15), transparent 50%);
  content: "";
}

.brand-mark span { position: relative; z-index: 1; }

.brand-copy {
  display: grid;
  line-height: 1;
}

.brand-copy strong {
  font-size: 0.96rem;
  letter-spacing: -0.02em;
}

.brand-copy small {
  margin-top: 3px;
  color: #8fa0bd;
  font-size: 0.66rem;
  font-weight: 750;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2vw, 32px);
}

.main-nav a {
  position: relative;
  padding: 9px 0;
  color: #c0cbde;
  font-size: 0.87rem;
  font-weight: 700;
  text-decoration: none;
  transition: color 0.2s ease;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 2px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--primary), var(--teal));
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.2s ease;
}

.main-nav a:hover { color: #fff; }
.main-nav a:hover::after { transform: scaleX(1); transform-origin: left; }

.header-cta { justify-self: end; }
.menu-button { display: none; }

.hero {
  position: relative;
  min-height: 900px;
  padding: 164px 0 90px;
  overflow: hidden;
}

.hero::before {
  position: absolute;
  z-index: -2;
  inset: 0;
  background:
    radial-gradient(circle at 79% 34%, rgba(78, 99, 245, 0.22), transparent 27%),
    radial-gradient(circle at 88% 53%, rgba(26, 204, 174, 0.13), transparent 24%),
    linear-gradient(180deg, rgba(9, 20, 43, 0.25), transparent 78%);
  content: "";
}

.hero::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-position: center;
  background-size: 64px 64px;
  content: "";
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.65), transparent 86%);
}

.hero-grid {
  display: grid;
  min-width: 0;
  grid-template-columns: minmax(0, 1.02fr) minmax(520px, 0.98fr);
  align-items: center;
  gap: clamp(52px, 6vw, 96px);
}

.hero-copy { min-width: 0; }

.hero h1 {
  max-width: 760px;
  margin: 24px 0 28px;
  font-size: clamp(3.25rem, 5.7vw, 6.2rem);
  font-weight: 850;
  letter-spacing: -0.062em;
}

.hero h1 span {
  background: linear-gradient(100deg, #a798ff 0%, #64c5f1 44%, #4ee2c8 78%, #ffb28f 115%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.hero-lead {
  max-width: 690px;
  margin-bottom: 0;
  color: #b3bfd3;
  font-size: clamp(1.05rem, 1.35vw, 1.25rem);
  line-height: 1.72;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 34px 0 38px;
}

.hero-proof {
  display: grid;
  max-width: 760px;
  margin: 0;
  padding: 24px 0 0;
  border-top: 1px solid var(--line);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  list-style: none;
}

.hero-proof li {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 11px;
}

.proof-icon {
  display: grid;
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  color: #8ddfe9;
}

.proof-icon svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.hero-proof strong,
.hero-proof small {
  display: block;
}

.hero-proof strong {
  font-size: 0.86rem;
  line-height: 1.25;
}

.hero-proof small {
  margin-top: 2px;
  color: #7f8da8;
  font-size: 0.72rem;
}

.hero-stage {
  position: relative;
  min-width: 0;
  min-height: 620px;
  display: grid;
  place-items: center;
  isolation: isolate;
}

.stage-orbit {
  position: absolute;
  z-index: -2;
  border: 1px solid rgba(141, 128, 255, 0.18);
  border-radius: 50%;
}

.orbit-one {
  width: 510px;
  height: 510px;
  animation: orbit-spin 22s linear infinite;
}

.orbit-two {
  width: 390px;
  height: 390px;
  border-style: dashed;
  border-color: rgba(71, 210, 195, 0.15);
  animation: orbit-spin 16s linear infinite reverse;
}

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

.product-window {
  position: relative;
  width: min(100%, 650px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 27px;
  background: linear-gradient(155deg, rgba(23, 40, 73, 0.98), rgba(8, 17, 35, 0.98));
  box-shadow: 0 56px 120px rgba(0, 0, 0, 0.48), 0 0 0 1px rgba(122, 101, 255, 0.05) inset;
  transform: perspective(1200px) rotateY(-6deg) rotateX(2deg);
  animation: stage-float 7s ease-in-out infinite;
}

@keyframes stage-float {
  0%, 100% { transform: perspective(1200px) rotateY(-6deg) rotateX(2deg) translateY(0); }
  50% { transform: perspective(1200px) rotateY(-4deg) rotateX(1deg) translateY(-12px); }
}

.window-bar {
  display: flex;
  height: 50px;
  align-items: center;
  gap: 12px;
  padding: 0 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(255, 255, 255, 0.025);
}

.window-dots { display: flex; gap: 6px; }
.window-dots i { width: 8px; height: 8px; border-radius: 50%; background: #40506d; }
.window-dots i:first-child { background: #ff9076; }
.window-dots i:nth-child(2) { background: #ffd166; }
.window-dots i:nth-child(3) { background: #3ad2b6; }

.window-url {
  flex: 1;
  height: 28px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  background: rgba(4, 11, 24, 0.36);
  color: #63718c;
  font-size: 0.58rem;
  line-height: 28px;
  text-align: center;
}

.window-live {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #8f9bb1;
  font-size: 0.62rem;
  font-weight: 800;
}

.window-live span { width: 6px; height: 6px; border-radius: 50%; background: var(--teal); box-shadow: 0 0 9px var(--teal); }

.window-body {
  display: grid;
  min-height: 420px;
  grid-template-columns: 66px 1fr;
}

.window-sidebar {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 20px;
  padding: 19px 0;
  border-right: 1px solid rgba(255,255,255,.07);
  background: rgba(4, 11, 24, 0.32);
}

.sidebar-logo {
  display: grid;
  width: 34px;
  height: 34px;
  margin-bottom: 14px;
  place-items: center;
  border-radius: 10px;
  background: linear-gradient(145deg, var(--primary), var(--teal));
  font-size: 0.78rem;
  font-weight: 900;
}

.window-sidebar i {
  width: 24px;
  height: 7px;
  border-radius: 99px;
  background: #273650;
}

.window-sidebar i.active { width: 30px; background: linear-gradient(90deg, var(--primary), var(--teal)); }

.window-content { min-width: 0; padding: 25px; }

.window-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 23px;
}

.window-topline small,
.window-topline strong { display: block; }
.window-topline small { color: #73819c; font-size: 0.57rem; text-transform: uppercase; letter-spacing: .12em; }
.window-topline strong { margin-top: 3px; font-size: 1rem; }

.demo-avatar {
  display: grid;
  width: 35px;
  height: 35px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 11px;
  background: rgba(122, 101, 255, 0.2);
  color: #d4ceff;
  font-size: 0.64rem;
  font-weight: 900;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: 1.16fr 0.84fr;
  gap: 12px;
}

.dash-card {
  min-width: 0;
  min-height: 124px;
  padding: 17px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.035);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.035);
}

.dash-card strong,
.dash-card small { display: block; }
.dash-card strong { margin: 8px 0 5px; font-size: 0.86rem; }
.dash-card small { color: #75849e; font-size: 0.58rem; }

.dash-label {
  display: inline-flex;
  padding: 4px 7px;
  border-radius: 99px;
  background: rgba(24, 200, 176, 0.12);
  color: #70dfce;
  font-size: 0.52rem;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.dash-label.coral { background: rgba(255, 154, 114, .13); color: #ffb293; }

.dash-main {
  min-height: 178px;
  background:
    radial-gradient(circle at 88% 10%, rgba(94, 114, 255, 0.18), transparent 36%),
    rgba(255, 255, 255, 0.035);
}

.chart-bars {
  display: flex;
  height: 58px;
  align-items: end;
  gap: 7px;
  margin: 14px 0 8px;
}

.chart-bars i {
  width: 100%;
  border-radius: 5px 5px 2px 2px;
  background: linear-gradient(180deg, #8b73ff, #3c7de6);
}

.chart-bars i:nth-child(1) { height: 28%; }
.chart-bars i:nth-child(2) { height: 45%; }
.chart-bars i:nth-child(3) { height: 38%; }
.chart-bars i:nth-child(4) { height: 64%; }
.chart-bars i:nth-child(5) { height: 78%; }
.chart-bars i:nth-child(6) { height: 92%; background: linear-gradient(180deg, #3ee0c6, #2b9dd2); }

.dash-ai {
  min-height: 178px;
  background:
    radial-gradient(circle at 50% 22%, rgba(122, 101, 255, 0.25), transparent 42%),
    rgba(255,255,255,.035);
}

.dash-icon {
  display: grid;
  width: 31px;
  height: 31px;
  place-items: center;
  border-radius: 10px;
  background: linear-gradient(145deg, rgba(122,101,255,.38), rgba(72,199,244,.2));
  color: #c7bdff;
}

.chat-lines { display: grid; gap: 6px; margin-top: 17px; }
.chat-lines i { height: 7px; border-radius: 99px; background: rgba(255,255,255,.1); }
.chat-lines i:nth-child(1) { width: 84%; }
.chat-lines i:nth-child(2) { width: 66%; margin-left: auto; background: rgba(24,200,176,.22); }
.chat-lines i:nth-child(3) { width: 74%; }

.dash-flow { background: linear-gradient(145deg, rgba(255,154,114,.07), rgba(255,255,255,.03)); }
.flow-line { display: flex; align-items: center; justify-content: space-between; margin-top: 19px; }
.flow-line i { position: relative; width: 31px; height: 31px; border-radius: 10px; background: rgba(255,255,255,.08); }
.flow-line i::after { position: absolute; top: 14px; left: 31px; width: 22px; height: 2px; background: rgba(255,255,255,.1); content: ""; }
.flow-line i:last-child::after { display: none; }
.flow-line i:nth-child(2) { background: rgba(255,154,114,.2); }
.flow-line i:nth-child(3) { background: rgba(24,200,176,.18); }

.dash-status { display: flex; align-items: center; gap: 12px; }
.status-ring { display: grid; width: 50px; height: 50px; flex: 0 0 auto; place-items: center; border: 1px solid rgba(24,200,176,.28); border-radius: 50%; background: rgba(24,200,176,.08); color: #5ee2ce; }
.status-ring span { display: grid; width: 28px; height: 28px; place-items: center; border-radius: 50%; background: rgba(24,200,176,.14); }

.floating-card {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 11px;
  max-width: 210px;
  padding: 12px 15px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 15px;
  background: rgba(10, 21, 43, 0.79);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.floating-card strong,
.floating-card small { display: block; }
.floating-card strong { font-size: 0.74rem; line-height: 1.2; }
.floating-card small { margin-top: 3px; color: #8290aa; font-size: 0.58rem; }

.floating-icon {
  display: grid;
  width: 35px;
  height: 35px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 11px;
  font-size: 0.66rem;
  font-weight: 900;
}

.floating-icon.teal { background: rgba(24,200,176,.15); color: #5de0cb; }
.floating-icon.violet { background: rgba(122,101,255,.18); color: #c5bbff; }
.floating-icon.coral { background: rgba(255,154,114,.14); color: #ffb398; }
.floating-card-one { left: -30px; bottom: 96px; }
.floating-card-two { right: -21px; bottom: 28px; }
.floating-card-three { right: -22px; top: 91px; }

.audience-strip {
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.018);
}

.audience-inner {
  display: flex;
  min-height: 74px;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 3vw, 38px);
  color: #7f8da8;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  white-space: nowrap;
}

.audience-inner span:first-child { color: #b8c3d7; }
.audience-inner i { width: 4px; height: 4px; border-radius: 50%; background: linear-gradient(135deg, var(--primary), var(--teal)); }

.services-section {
  background: linear-gradient(180deg, transparent, rgba(12, 24, 48, 0.55) 50%, transparent);
}

.section-intro {
  max-width: 860px;
  margin-bottom: clamp(44px, 6vw, 76px);
}

.section-intro h2 {
  margin: 18px 0 20px;
}

.section-intro p {
  max-width: 760px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.4vw, 1.18rem);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.service-card {
  position: relative;
  min-width: 0;
  min-height: 510px;
  overflow: hidden;
  padding: clamp(28px, 3vw, 42px);
  border: 1px solid var(--line);
  border-radius: 28px;
  background: linear-gradient(155deg, rgba(21, 38, 70, 0.9), rgba(10, 20, 40, 0.9));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.035);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.service-card::before {
  position: absolute;
  top: -140px;
  right: -100px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  content: "";
  filter: blur(20px);
  opacity: .28;
}

.service-web::before { background: var(--primary); }
.service-ai::before { background: var(--cyan); }
.service-auto::before { background: var(--coral); }
.service-custom::before { background: var(--teal); }

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255,255,255,.22);
  box-shadow: 0 24px 58px rgba(0,0,0,.22), inset 0 1px 0 rgba(255,255,255,.06);
}

.service-top {
  position: relative;
  display: flex;
  min-height: 30px;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.service-number {
  color: #62718b;
  font-size: .72rem;
  font-weight: 850;
  letter-spacing: .12em;
}

.service-badge {
  padding: 6px 10px;
  border: 1px solid rgba(24,200,176,.22);
  border-radius: 99px;
  background: rgba(24,200,176,.09);
  color: #67e1ce;
  font-size: .59rem;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.service-icon {
  position: relative;
  display: grid;
  width: 57px;
  height: 57px;
  margin: 32px 0 26px;
  place-items: center;
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 17px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
  font-size: 1.35rem;
}

.service-icon svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.service-icon-web { background: rgba(122,101,255,.15); color: #b7acff; }
.service-icon-ai { background: rgba(72,199,244,.13); color: #87dff7; }
.service-icon-auto { background: rgba(255,154,114,.13); color: #ffb195; }
.service-icon-custom { background: rgba(24,200,176,.12); color: #66e2ce; }

.service-card h3 {
  position: relative;
  max-width: 520px;
  margin-bottom: 16px;
  font-size: clamp(1.7rem, 2.7vw, 2.4rem);
}

.service-card > p {
  position: relative;
  max-width: 600px;
  color: #a8b5ca;
}

.check-list,
.price-list,
.mini-list {
  position: relative;
  margin: 25px 0 28px;
  padding: 0;
  list-style: none;
}

.check-list li {
  padding: 10px 0 10px 23px;
  border-bottom: 1px solid rgba(255,255,255,.065);
  color: #c7d0df;
  font-size: .91rem;
}

.check-list li::before {
  position: absolute;
  left: 0;
  color: var(--teal);
  content: "✓";
  font-weight: 900;
}

.text-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #f3f6ff;
  font-weight: 800;
  text-decoration: none;
}

.text-link span { color: var(--teal); transition: transform .2s ease; }
.text-link:hover span { transform: translate(3px, -3px); }

.value-section { padding-top: 40px; }

.value-panel {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(48px, 7vw, 100px);
  padding: clamp(38px, 6vw, 82px);
  border-radius: 36px;
  background:
    radial-gradient(circle at 8% 10%, rgba(156, 124, 255, .23), transparent 35%),
    radial-gradient(circle at 92% 88%, rgba(24, 200, 176, .17), transparent 32%),
    var(--light);
  box-shadow: var(--shadow-soft);
  color: var(--text-dark);
}

.value-copy h2 {
  margin: 18px 0 22px;
  font-size: clamp(2.35rem, 4.2vw, 4.3rem);
}

.value-copy p {
  margin-bottom: 30px;
  color: var(--muted-dark);
  font-size: 1.07rem;
}

.value-list article {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 18px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(16, 25, 43, .12);
}

.value-list article:first-child { padding-top: 4px; }
.value-list article:last-child { border-bottom: 0; padding-bottom: 4px; }
.value-index { color: #7159ef; font-weight: 900; }
.value-list h3 { margin-bottom: 7px; font-size: 1.25rem; letter-spacing: -.025em; }
.value-list p { margin-bottom: 0; color: var(--muted-dark); font-size: .92rem; }

.experience-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 15% 50%, rgba(24,200,176,.08), transparent 30%),
    radial-gradient(circle at 90% 30%, rgba(122,101,255,.11), transparent 32%);
}

.experience-grid {
  display: grid;
  min-width: 0;
  grid-template-columns: minmax(420px, .82fr) minmax(0, 1.18fr);
  align-items: center;
  gap: clamp(60px, 8vw, 120px);
}

.profile-visual {
  position: relative;
  min-width: 0;
  min-height: 610px;
  overflow: hidden;
  padding: 34px;
  border: 1px solid var(--line-strong);
  border-radius: 36px;
  background: linear-gradient(150deg, rgba(24,42,78,.96), rgba(8,17,35,.98));
  box-shadow: var(--shadow);
  isolation: isolate;
}

.profile-gradient {
  position: absolute;
  z-index: -1;
  top: -160px;
  left: -120px;
  width: 430px;
  height: 430px;
  border-radius: 50%;
  background: linear-gradient(145deg, rgba(122,101,255,.75), rgba(72,199,244,.25), rgba(24,200,176,.35));
  filter: blur(55px);
  opacity: .54;
}

.profile-card-main {
  display: grid;
  align-items: end;
  grid-template-columns: 132px 1fr;
  gap: 24px;
  padding-top: 32px;
}

.profile-monogram {
  display: grid;
  width: 132px;
  height: 164px;
  place-items: center;
  border: 1px solid rgba(255,255,255,.19);
  border-radius: 31px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.14), rgba(255,255,255,.035)),
    radial-gradient(circle at 32% 22%, rgba(255,255,255,.23), transparent 24%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.18), 0 24px 50px rgba(0,0,0,.24);
  color: #fff;
  font-size: 3.4rem;
  font-weight: 900;
  letter-spacing: -.09em;
}

.profile-kicker {
  display: block;
  margin-bottom: 8px;
  color: #7fe1d2;
  font-size: .65rem;
  font-weight: 850;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.profile-card-main h3 { margin-bottom: 10px; font-size: clamp(1.8rem, 3vw, 2.8rem); }
.profile-card-main p { margin-bottom: 0; color: #a6b4ca; font-size: .9rem; }

.profile-route {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 70px;
  color: #9aa8c0;
  font-size: .64rem;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.profile-route i {
  position: relative;
  height: 1px;
  flex: 1;
  background: linear-gradient(90deg, rgba(122,101,255,.2), rgba(24,200,176,.7));
}

.profile-route i::after {
  position: absolute;
  top: -3px;
  right: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 10px var(--teal);
  content: "";
}

.profile-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 32px;
}

.profile-stats div {
  min-width: 0;
  padding: 18px 14px;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 16px;
  background: rgba(255,255,255,.035);
}

.profile-stats strong,
.profile-stats span { display: block; }
.profile-stats strong { margin-bottom: 5px; font-size: 1.25rem; }
.profile-stats span { color: #8492aa; font-size: .58rem; }

.profile-chip {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 13px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 13px;
  background: rgba(7,15,31,.76);
  box-shadow: 0 20px 42px rgba(0,0,0,.24);
  color: #dce5f6;
  font-size: .67rem;
  font-weight: 800;
  backdrop-filter: blur(12px);
}

.profile-chip span { color: #9f91ff; }
.profile-chip-one { top: 22px; right: 22px; }
.profile-chip-two { right: 24px; bottom: 24px; }

.experience-copy { min-width: 0; }

.experience-copy h2 {
  margin: 18px 0 26px;
  font-size: clamp(2.4rem, 4.35vw, 4.6rem);
}

.experience-copy > p {
  color: #aeb9cd;
  font-size: clamp(.98rem, 1.2vw, 1.08rem);
}

.experience-copy strong { color: #fff; }

.experience-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 28px 0;
}

.experience-cards article {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: rgba(255,255,255,.035);
}

.experience-cards span,
.experience-cards strong,
.experience-cards small { display: block; }
.experience-cards span { margin-bottom: 8px; color: #7ee0d1; font-size: .62rem; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.experience-cards strong { font-size: .9rem; line-height: 1.45; }
.experience-cards small { margin-top: 6px; color: #7f8da6; font-size: .69rem; }

.linkedin-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #d9e3f5;
  font-weight: 800;
  text-decoration: none;
}

.linkedin-link:hover { color: #fff; }

.process-section {
  border-block: 1px solid var(--line);
  background: rgba(255,255,255,.018);
}

.split-intro {
  display: grid;
  max-width: none;
  grid-template-columns: 1.05fr .95fr;
  align-items: end;
  gap: clamp(40px, 7vw, 100px);
}

.split-intro h2 { margin-bottom: 0; }
.split-intro > p { padding-bottom: 7px; }

.process-list {
  display: grid;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  grid-template-columns: repeat(4, minmax(0, 1fr));
  list-style: none;
}

.process-item {
  position: relative;
  min-width: 0;
  padding: 32px 28px 10px 0;
  border-right: 1px solid var(--line);
}

.process-item:not(:first-child) { padding-left: 28px; }
.process-item:last-child { padding-right: 0; border-right: 0; }
.process-number { color: #64718a; font-size: .66rem; font-weight: 850; letter-spacing: .12em; }
.process-icon { display: grid; width: 45px; height: 45px; margin: 28px 0 23px; place-items: center; border: 1px solid var(--line); border-radius: 14px; background: rgba(255,255,255,.035); color: #af9fff; font-weight: 900; }
.process-item:nth-child(2) .process-icon { color: #7bdded; }
.process-item:nth-child(3) .process-icon { color: #ffb091; }
.process-item:nth-child(4) .process-icon { color: #5fe0cc; }
.process-item h3 { margin-bottom: 12px; font-size: 1.35rem; letter-spacing: -.03em; }
.process-item p { margin-bottom: 0; color: #91a0b9; font-size: .88rem; }

.pricing-section {
  background:
    radial-gradient(circle at 75% 40%, rgba(122,101,255,.12), transparent 33%),
    radial-gradient(circle at 23% 62%, rgba(24,200,176,.07), transparent 27%);
}

.pricing-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(330px, .75fr);
  gap: 20px;
}

.price-card {
  min-width: 0;
  padding: clamp(28px, 3.4vw, 46px);
  border: 1px solid var(--line);
  border-radius: 29px;
  background: linear-gradient(155deg, rgba(20,36,67,.96), rgba(9,19,38,.96));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.035);
}

.price-primary {
  background:
    radial-gradient(circle at 90% 8%, rgba(122,101,255,.31), transparent 30%),
    linear-gradient(155deg, rgba(22,40,75,.98), rgba(8,18,37,.98));
}

.price-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.price-label {
  color: #aeb9d0;
  font-size: .67rem;
  font-weight: 850;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.price-note {
  padding: 7px 10px;
  border: 1px solid rgba(24,200,176,.2);
  border-radius: 99px;
  background: rgba(24,200,176,.09);
  color: #72e2d0;
  font-size: .58rem;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.price-value { margin: 42px 0 20px; }
.price-value small,
.price-value strong { display: block; }
.price-value small { color: #8795ae; font-size: .73rem; font-weight: 700; }
.price-value strong { margin-top: 4px; font-size: clamp(4rem, 7vw, 6.5rem); line-height: .95; letter-spacing: -.07em; }
.price-description { max-width: 650px; color: #aab6cb; }

.price-list li {
  display: flex;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,.065);
  color: #c7d0df;
}
.price-list li span { color: var(--teal); font-weight: 900; }

.pricing-side { display: grid; gap: 20px; }
.price-hosting { background: linear-gradient(145deg, rgba(22,44,72,.97), rgba(10,25,43,.98)); }
.price-custom { background: linear-gradient(145deg, #f0ecff, #e5f6f4); color: var(--text-dark); }
.price-card h3 { margin: 27px 0 17px; font-size: 2rem; }
.price-card > p { color: #9faec5; }
.price-custom > p { color: #5e6980; }

.hosting-value { display: flex; align-items: flex-end; gap: 7px; margin-bottom: 18px; }
.hosting-value strong { font-size: 2.7rem; line-height: 1; letter-spacing: -.05em; }
.hosting-value span { margin-bottom: 4px; color: #8390a8; font-size: .8rem; }

.mini-list { margin-bottom: 0; }
.mini-list li { padding: 9px 0 9px 20px; border-bottom: 1px solid rgba(255,255,255,.06); color: #bbc6d7; font-size: .82rem; }
.mini-list li::before { position: absolute; left: 0; color: #65dccb; content: "•"; }
.dark-link { color: #191d33; }
.dark-link span { color: #6651dc; }

.pricing-footnote {
  display: flex;
  max-width: 900px;
  align-items: flex-start;
  gap: 12px;
  margin: 22px auto 0;
  color: #8492aa;
  font-size: .75rem;
  text-align: left;
}

.pricing-footnote > span {
  display: grid;
  width: 23px;
  height: 23px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: #9faaff;
  font-size: .7rem;
  font-weight: 900;
}

.pricing-footnote p { margin-bottom: 0; }

.faq-section { background: rgba(255,255,255,.012); }

.faq-grid {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  align-items: start;
  gap: clamp(55px, 8vw, 120px);
}

.faq-intro { position: sticky; top: 130px; }
.faq-intro h2 { margin: 18px 0 20px; }
.faq-intro p { color: var(--muted); }
.faq-intro .text-link { margin-top: 10px; }

.faq-list { border-top: 1px solid var(--line); }

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item summary {
  position: relative;
  display: flex;
  min-height: 84px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 4px;
  cursor: pointer;
  font-size: 1.06rem;
  font-weight: 800;
  line-height: 1.4;
  list-style: none;
}

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

.faq-item summary span {
  position: relative;
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.faq-item summary span::before,
.faq-item summary span::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 1.5px;
  border-radius: 99px;
  background: #a8b4ca;
  content: "";
  transform: translate(-50%, -50%);
  transition: transform .2s ease;
}

.faq-item summary span::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq-item[open] summary span::after { transform: translate(-50%, -50%) rotate(0deg); }
.faq-item p { max-width: 780px; margin: -4px 50px 24px 4px; color: #98a6bd; font-size: .94rem; }

.contact-section { padding-bottom: clamp(90px, 10vw, 160px); }

.contact-panel {
  position: relative;
  display: grid;
  overflow: hidden;
  grid-template-columns: .95fr 1.05fr;
  gap: clamp(50px, 7vw, 100px);
  padding: clamp(38px, 6vw, 78px);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 38px;
  background:
    radial-gradient(circle at 8% 10%, rgba(77, 216, 207, .24), transparent 34%),
    radial-gradient(circle at 92% 80%, rgba(255, 154, 114, .18), transparent 30%),
    linear-gradient(135deg, #6652df 0%, #3f63d3 52%, #167f96 100%);
  box-shadow: 0 35px 85px rgba(32, 40, 124, .32);
}

.contact-panel::after {
  position: absolute;
  right: -150px;
  bottom: -240px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 50%;
  box-shadow: 0 0 0 55px rgba(255,255,255,.035), 0 0 0 110px rgba(255,255,255,.025);
  content: "";
  pointer-events: none;
}

.contact-copy,
.contact-form { position: relative; z-index: 1; }
.contact-copy h2 { margin: 18px 0 24px; font-size: clamp(2.55rem, 4.8vw, 5rem); }
.contact-copy > p { color: rgba(255,255,255,.78); font-size: 1.04rem; }

.contact-options { display: grid; gap: 11px; margin-top: 34px; }
.contact-options a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 15px;
  background: rgba(5,12,27,.14);
  color: #fff;
  text-decoration: none;
  transition: background .2s ease, transform .2s ease;
}
.contact-options a:hover { transform: translateX(3px); background: rgba(5,12,27,.22); }
.contact-option-icon { display: grid; width: 38px; height: 38px; flex: 0 0 auto; place-items: center; border-radius: 12px; background: rgba(255,255,255,.14); font-size: .75rem; font-weight: 900; }
.contact-options small,
.contact-options strong { display: block; }
.contact-options small { color: rgba(255,255,255,.6); font-size: .62rem; text-transform: uppercase; letter-spacing: .1em; }
.contact-options strong { margin-top: 3px; font-size: .84rem; overflow-wrap: anywhere; }
.contact-location { margin-top: 25px; color: rgba(255,255,255,.68) !important; font-size: .76rem !important; }
.contact-location span { margin-right: 7px; color: #77f0d8; }

.contact-form {
  display: grid;
  gap: 14px;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 25px;
  background: rgba(6, 13, 30, .34);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.form-row { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
.contact-form label:not(.consent-label) { display: grid; gap: 7px; }
.contact-form label > span { color: rgba(255,255,255,.78); font-size: .69rem; font-weight: 800; }
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 12px;
  outline: none;
  background: rgba(5,12,28,.35);
  color: #fff;
  transition: border-color .2s ease, background .2s ease, box-shadow .2s ease;
}
.contact-form input,
.contact-form select { min-height: 48px; padding: 0 13px; }
.contact-form textarea { min-height: 126px; resize: vertical; padding: 12px 13px; }
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: rgba(255,255,255,.38); }
.contact-form select option { color: #111827; }
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus { border-color: rgba(116, 234, 221, .78); background: rgba(5,12,28,.48); box-shadow: 0 0 0 3px rgba(90, 225, 207, .12); }

.consent-label {
  display: grid;
  align-items: start;
  grid-template-columns: 19px 1fr;
  gap: 9px;
  color: rgba(255,255,255,.63);
  font-size: .65rem;
  line-height: 1.55;
}
.consent-label input { width: 17px; height: 17px; margin: 2px 0 0; accent-color: var(--teal); }
.consent-label a { color: #fff; }
.form-note { margin: -2px 0 0; color: rgba(255,255,255,.58); font-size: .62rem; text-align: center; }

.site-footer {
  padding: 70px 0 30px;
  border-top: 1px solid var(--line);
  background: var(--bg-deep);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(280px, 1.6fr) repeat(3, minmax(130px, .55fr));
  gap: clamp(34px, 6vw, 80px);
  padding-bottom: 48px;
}

.footer-brand p { max-width: 420px; margin: 22px 0 0; color: #7f8da6; font-size: .85rem; }
.footer-column { display: grid; align-content: start; gap: 9px; }
.footer-column strong { margin-bottom: 8px; color: #d9e1ef; font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; }
.footer-column a { width: max-content; color: #8090a9; font-size: .8rem; text-decoration: none; }
.footer-column a:hover { color: #fff; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding-top: 24px; border-top: 1px solid var(--line); color: #63718a; font-size: .72rem; }

.legal-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 10% 10%, rgba(122,101,255,.12), transparent 30%),
    var(--bg);
}

.legal-header { padding: 26px 0; border-bottom: 1px solid var(--line); }
.legal-back { color: #aab6cb; font-size: .85rem; text-decoration: none; }
.legal-back:hover { color: #fff; }
.legal-main { width: min(880px, calc(100% - 48px)); margin-inline: auto; padding: 80px 0 120px; }
.legal-main h1 { margin: 20px 0 40px; font-size: clamp(3rem, 7vw, 5.7rem); }
.legal-main h2 { margin: 45px 0 13px; font-size: 1.5rem; letter-spacing: -.03em; }
.legal-main p,
.legal-main li { color: #a8b5ca; }
.legal-main a { color: #8fded7; }
.legal-warning { margin-bottom: 38px; padding: 18px 20px; border: 1px solid rgba(255, 209, 102, .28); border-radius: 16px; background: rgba(255, 209, 102, .08); color: #f8dda0; }
.legal-card { padding: 28px; border: 1px solid var(--line); border-radius: 22px; background: rgba(255,255,255,.03); }

.reveal {
  opacity: 1;
  transform: none;
}

.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .72s ease, transform .72s cubic-bezier(.2,.65,.25,1);
}

.js .reveal.is-visible { opacity: 1; transform: none; }
.delay-1 { transition-delay: .1s; }
.delay-2 { transition-delay: .2s; }
.delay-3 { transition-delay: .3s; }

@media (max-width: 1180px) {
  .hero-grid { grid-template-columns: minmax(0, 1fr) minmax(440px, .85fr); gap: 46px; }
  .hero h1 { font-size: clamp(3.2rem, 6.2vw, 5.4rem); }
  .hero-stage { min-height: 560px; }
  .product-window { transform: none; }
  @keyframes stage-float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
  .floating-card-one { left: -8px; }
  .floating-card-three { right: -5px; }
  .floating-card-two { right: 5px; }
  .experience-grid { grid-template-columns: minmax(370px, .86fr) 1.14fr; gap: 64px; }
}

@media (max-width: 1020px) {
  :root { --header-height: 64px; }
  .site-header { padding: 11px 0; }
  .header-inner { grid-template-columns: 1fr auto; min-height: 64px; padding: 8px 10px 8px 14px; border-radius: 17px; }
  .header-cta { display: none; }
  .menu-button {
    position: relative;
    z-index: 3;
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: rgba(255,255,255,.04);
    color: #fff;
    cursor: pointer;
  }
  .menu-button span { position: absolute; width: 18px; height: 1.5px; border-radius: 99px; background: currentColor; transition: transform .22s ease, top .22s ease; }
  .menu-button span:first-child { top: 17px; }
  .menu-button span:last-child { top: 25px; }
  .menu-button[aria-expanded="true"] span:first-child { top: 21px; transform: rotate(45deg); }
  .menu-button[aria-expanded="true"] span:last-child { top: 21px; transform: rotate(-45deg); }
  .main-nav {
    position: fixed;
    z-index: 2;
    inset: 0;
    display: flex;
    visibility: hidden;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 8px;
    padding: 110px 30px 50px;
    background: rgba(5,11,23,.96);
    opacity: 0;
    transform: translateY(-12px);
    transition: opacity .22s ease, transform .22s ease, visibility .22s;
  }
  .main-nav.is-open { visibility: visible; opacity: 1; transform: none; }
  .main-nav a { font-size: clamp(1.45rem, 4vw, 2rem); }
  .hero { min-height: auto; padding-top: 145px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { max-width: 820px; }
  .hero h1 { max-width: 820px; font-size: clamp(3.4rem, 8.5vw, 6rem); }
  .hero-stage { width: min(760px, 100%); min-height: 600px; margin: 5px auto 0; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card { min-height: auto; }
  .value-panel { grid-template-columns: 1fr; }
  .experience-grid { grid-template-columns: 1fr; }
  .profile-visual { width: min(640px, 100%); margin-inline: auto; }
  .split-intro { grid-template-columns: 1fr; }
  .process-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .process-item:nth-child(2) { padding-right: 0; border-right: 0; }
  .process-item:nth-child(3) { padding-left: 0; }
  .process-item:nth-child(n+3) { border-top: 1px solid var(--line); }
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-side { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .faq-grid { grid-template-columns: 1fr; gap: 45px; }
  .faq-intro { position: static; max-width: 760px; }
  .contact-panel { grid-template-columns: 1fr; }
  .contact-copy { max-width: 760px; }
}

@media (max-width: 760px) {
  .shell { width: min(100% - 36px, var(--shell)); }
  .section { padding-block: 82px; }
  .header-inner { width: min(100% - 22px, 1400px); }
  .hero { padding: 128px 0 68px; }
  .hero h1 { font-size: clamp(3rem, 13vw, 4.9rem); letter-spacing: -.055em; }
  .hero-lead { font-size: 1rem; }
  .hero-proof { grid-template-columns: 1fr; gap: 11px; }
  .hero-stage { min-height: 520px; }
  .product-window { border-radius: 22px; }
  .window-body { grid-template-columns: 48px 1fr; }
  .window-sidebar { gap: 17px; }
  .sidebar-logo { width: 30px; height: 30px; }
  .window-sidebar i { width: 18px; }
  .window-content { padding: 18px; }
  .dashboard-grid { gap: 8px; }
  .dash-card { padding: 13px; border-radius: 14px; }
  .floating-card-three { top: 46px; right: -7px; }
  .floating-card-one { bottom: 58px; left: -5px; }
  .floating-card-two { display: none; }
  .audience-inner { justify-content: flex-start; overflow: hidden; }
  .value-panel { width: min(100% - 24px, var(--shell)); border-radius: 27px; }
  .profile-visual { min-height: 570px; padding: 25px; border-radius: 28px; }
  .profile-card-main { grid-template-columns: 105px 1fr; gap: 18px; }
  .profile-monogram { width: 105px; height: 138px; border-radius: 25px; font-size: 2.8rem; }
  .profile-route { margin-top: 58px; font-size: .56rem; }
  .profile-chip-one { top: 15px; right: 15px; }
  .profile-chip-two { right: 16px; bottom: 18px; }
  .experience-cards { grid-template-columns: 1fr; }
  .process-list { grid-template-columns: 1fr; }
  .process-item,
  .process-item:not(:first-child),
  .process-item:nth-child(3) { padding: 28px 0; border-top: 1px solid var(--line); border-right: 0; }
  .process-item:first-child { border-top: 0; }
  .pricing-side { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 520px) {
  .shell { width: min(100% - 28px, var(--shell)); }
  .section { padding-block: 72px; }
  .brand-mark { width: 37px; height: 37px; }
  .brand-copy strong { font-size: .9rem; }
  .hero { padding-top: 116px; }
  .hero h1 { font-size: clamp(2.75rem, 14vw, 4.15rem); }
  .hero-actions { flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .hero-stage { min-height: 430px; overflow: clip; }
  .product-window { width: 100%; margin-left: 0; }
  .window-bar { height: 43px; padding: 0 11px; }
  .window-live { display: none; }
  .window-body { min-height: 350px; }
  .window-content { padding: 13px; }
  .window-topline { margin-bottom: 13px; }
  .window-topline strong { font-size: .82rem; }
  .dashboard-grid { grid-template-columns: 1fr 1fr; }
  .dash-main,
  .dash-ai { min-height: 145px; }
  .dash-flow,
  .dash-status { min-height: 96px; }
  .dash-card strong { font-size: .72rem; }
  .chart-bars { height: 44px; }
  .floating-card { padding: 9px 11px; }
  .floating-card strong { font-size: .64rem; }
  .floating-card small { font-size: .52rem; }
  .floating-icon { width: 31px; height: 31px; }
  .floating-card-one { left: -4px; bottom: 22px; }
  .floating-card-three { right: -2px; top: 23px; }
  .audience-strip { display: none; }
  .service-card { padding: 26px; border-radius: 23px; }
  .service-badge { display: none; }
  .value-panel { padding: 27px; border-radius: 24px; }
  .value-list article { grid-template-columns: 38px 1fr; gap: 11px; }
  .profile-visual { min-height: 520px; }
  .profile-card-main { grid-template-columns: 1fr; align-items: start; }
  .profile-monogram { width: 98px; height: 118px; }
  .profile-card-main p { max-width: 260px; }
  .profile-route { margin-top: 34px; gap: 6px; }
  .profile-route span { font-size: .52rem; }
  .profile-stats { gap: 7px; }
  .profile-stats div { padding: 13px 8px; }
  .profile-stats span { font-size: .5rem; }
  .profile-chip-one { max-width: 170px; }
  .profile-chip-two { display: none; }
  .price-card { padding: 26px; border-radius: 23px; }
  .price-note { display: none; }
  .price-value strong { font-size: 4.2rem; }
  .faq-item summary { font-size: .96rem; }
  .contact-panel { width: min(100% - 20px, var(--shell)); padding: 28px 20px; border-radius: 26px; }
  .contact-form { padding: 20px 16px; border-radius: 20px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
  .legal-main { width: min(100% - 32px, 880px); padding-top: 55px; }
}

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

/* ========================================================================== 
   Readability, usability and accessibility refinement
   Larger type scale, consistent spacing, generous targets and robust reflow.
   ========================================================================== */

:root {
  --header-height: 80px;
  --muted: #b9c5d8;
  --muted-dark: #4f5f75;
}

body {
  font-size: 18px;
  line-height: 1.68;
}

main section[id] {
  scroll-margin-top: 118px;
}

p {
  line-height: 1.68;
}

h2 {
  font-size: clamp(2.75rem, 4.8vw, 5rem);
  line-height: 1.04;
}

h3 {
  line-height: 1.15;
}

.eyebrow {
  gap: 10px;
  font-size: 0.86rem;
  letter-spacing: 0.12em;
  line-height: 1.35;
}

.status-dot {
  width: 10px;
  height: 10px;
}

.button {
  min-height: 56px;
  padding: 15px 22px;
  font-size: 1rem;
}

.button-small {
  min-height: 48px;
  padding: 12px 18px;
  font-size: 0.94rem;
}

.text-link,
.linkedin-link {
  min-height: 44px;
  align-items: center;
  font-size: 1rem;
  line-height: 1.4;
}

.header-inner {
  min-height: 80px;
  padding: 11px 14px 11px 20px;
}

.brand {
  min-height: 48px;
}

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

.brand-copy strong {
  font-size: 1.06rem;
}

.brand-copy small {
  margin-top: 4px;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
}

.main-nav a {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  padding: 11px 0;
  font-size: 1rem;
}

.hero-lead {
  font-size: clamp(1.12rem, 1.35vw, 1.3rem);
  line-height: 1.72;
}

.hero-proof {
  gap: 18px;
  padding-top: 28px;
}

.hero-proof li {
  gap: 13px;
}

.proof-icon {
  width: 44px;
  height: 44px;
}

.proof-icon svg {
  width: 21px;
  height: 21px;
}

.hero-proof strong {
  font-size: 1rem;
  line-height: 1.35;
}

.hero-proof small {
  margin-top: 3px;
  color: #9aa9c0;
  font-size: 0.84rem;
  line-height: 1.4;
}

.window-url {
  font-size: 0.7rem;
}

.window-live {
  font-size: 0.72rem;
}

.window-topline small {
  font-size: 0.68rem;
}

.window-topline strong {
  font-size: 1.15rem;
}

.demo-avatar {
  font-size: 0.74rem;
}

.dash-card strong {
  font-size: 0.96rem;
}

.dash-card small {
  font-size: 0.68rem;
}

.dash-label {
  font-size: 0.64rem;
}

.floating-card strong {
  font-size: 0.82rem;
}

.floating-card small {
  font-size: 0.68rem;
}

.floating-icon {
  font-size: 0.76rem;
}

.audience-inner {
  min-height: 80px;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
}

.section-intro {
  max-width: 980px;
  margin-bottom: clamp(54px, 6vw, 84px);
}

.section-intro p,
.split-intro > p,
.faq-intro p {
  font-size: clamp(1.08rem, 1.35vw, 1.24rem);
  line-height: 1.7;
}

.services-grid {
  gap: 26px;
}

.service-card {
  min-height: 550px;
  padding: clamp(34px, 3.3vw, 48px);
}

.service-top {
  min-height: 38px;
}

.service-number {
  color: #90a0bb;
  font-size: 0.88rem;
  letter-spacing: 0.11em;
}

.service-badge {
  padding: 8px 12px;
  font-size: 0.75rem;
  letter-spacing: 0.07em;
  line-height: 1.3;
}

.service-icon {
  width: 62px;
  height: 62px;
  margin: 34px 0 28px;
}

.service-card h3 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 2.8vw, 2.65rem);
}

.service-card > p {
  color: #bac5d7;
  font-size: 1.05rem;
  line-height: 1.68;
}

.check-list {
  margin: 28px 0 32px;
}

.check-list li {
  padding: 12px 0 12px 25px;
  font-size: 1rem;
  line-height: 1.55;
}

.value-panel {
  gap: clamp(56px, 7vw, 108px);
  padding: clamp(46px, 6vw, 88px);
}

.value-copy p {
  font-size: 1.14rem;
}

.value-list article {
  grid-template-columns: 58px 1fr;
  gap: 20px;
  padding: 29px 0;
}

.value-index {
  padding-top: 2px;
  font-size: 1rem;
  letter-spacing: 0.05em;
}

.value-list h3 {
  margin-bottom: 9px;
  font-size: 1.5rem;
}

.value-list p {
  font-size: 1rem;
  line-height: 1.65;
}

.profile-kicker {
  font-size: 0.78rem;
}

.profile-card-main p {
  font-size: 1rem;
  line-height: 1.65;
}

.profile-route {
  font-size: 0.76rem;
  letter-spacing: 0.07em;
}

.profile-stats span {
  font-size: 0.72rem;
  line-height: 1.4;
}

.profile-chip {
  font-size: 0.78rem;
}

.experience-copy > p {
  font-size: clamp(1.06rem, 1.22vw, 1.18rem);
  line-height: 1.72;
}

.experience-cards {
  gap: 16px;
  margin: 34px 0;
}

.experience-cards article {
  padding: 22px;
}

.experience-cards span {
  font-size: 0.76rem;
}

.experience-cards strong {
  font-size: 1.05rem;
}

.experience-cards small {
  margin-top: 8px;
  font-size: 0.86rem;
  line-height: 1.55;
}

.process-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.process-item,
.process-item:not(:first-child),
.process-item:last-child {
  min-height: 310px;
  padding: 40px 36px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.process-item:nth-child(2n) {
  border-right: 0;
}

.process-item:nth-child(n + 3) {
  border-bottom: 0;
}

.process-number {
  color: #91a0b8;
  font-size: 0.88rem;
}

.process-icon {
  width: 52px;
  height: 52px;
  margin: 30px 0 25px;
  font-size: 1.08rem;
}

.process-item h3 {
  margin-bottom: 14px;
  font-size: 1.65rem;
}

.process-item p {
  color: #afbbcf;
  font-size: 1rem;
  line-height: 1.68;
}

.pricing-grid {
  gap: 24px;
}

.price-card {
  padding: clamp(34px, 3.6vw, 52px);
}

.price-label {
  font-size: 0.8rem;
}

.price-note {
  padding: 8px 12px;
  font-size: 0.74rem;
}

.price-value small {
  font-size: 0.86rem;
}

.price-description,
.price-card > p {
  font-size: 1rem;
  line-height: 1.68;
}

.price-list li {
  padding: 14px 0;
  font-size: 1rem;
  line-height: 1.5;
}

.price-card h3 {
  font-size: 2.15rem;
}

.hosting-value span {
  font-size: 0.94rem;
}

.mini-list li {
  padding: 11px 0 11px 22px;
  font-size: 0.95rem;
  line-height: 1.5;
}

.pricing-footnote {
  max-width: 980px;
  margin-top: 28px;
  font-size: 0.88rem;
  line-height: 1.6;
}

.pricing-footnote > span {
  width: 28px;
  height: 28px;
  font-size: 0.82rem;
}

.faq-item summary {
  min-height: 92px;
  padding: 25px 4px;
  font-size: 1.2rem;
}

.faq-item summary span {
  width: 34px;
  height: 34px;
}

.faq-item p {
  margin: -2px 56px 30px 4px;
  color: #b3bfd1;
  font-size: 1.02rem;
  line-height: 1.72;
}

.contact-copy > p {
  font-size: 1.12rem;
  line-height: 1.72;
}

.contact-options {
  gap: 13px;
}

.contact-options a {
  min-height: 68px;
  padding: 14px;
}

.contact-option-icon {
  width: 44px;
  height: 44px;
  font-size: 0.86rem;
}

.contact-options small {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.76rem;
}

.contact-options strong {
  font-size: 1rem;
}

.contact-location {
  font-size: 0.9rem !important;
}

.contact-form {
  gap: 17px;
}

.contact-form label:not(.consent-label) {
  gap: 9px;
}

.contact-form label:not(.consent-label) > span {
  font-size: 0.88rem;
}

.contact-form label:not(.consent-label) > span small {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.82rem;
  font-weight: 650;
}

.contact-form input,
.contact-form select {
  min-height: 54px;
  padding-inline: 15px;
  font-size: 1rem;
}

.contact-form textarea {
  min-height: 150px;
  padding: 14px 15px;
  font-size: 1rem;
  line-height: 1.55;
}

.contact-form [aria-invalid="true"] {
  border-color: #ffc0cb;
  box-shadow: 0 0 0 3px rgba(255, 154, 174, 0.18);
}

.consent-label {
  grid-template-columns: 24px 1fr;
  gap: 11px;
  font-size: 0.86rem;
  line-height: 1.58;
}

.consent-label > span {
  color: rgba(255, 255, 255, 0.76);
  font-size: inherit;
  font-weight: 500;
}

.consent-label input {
  width: 21px;
  height: 21px;
}

.field-error {
  color: #ffd0d8;
  font-size: 0.82rem;
  font-weight: 750;
  line-height: 1.45;
}

.field-error[hidden] {
  display: none;
}

.field-error-consent {
  grid-column: 2;
  margin-top: -4px;
}

.form-note,
.form-status {
  font-size: 0.82rem;
  line-height: 1.5;
}

.form-status:not(:empty) {
  margin: 0;
  padding: 11px 13px;
  border: 1px solid rgba(122, 240, 216, 0.24);
  border-radius: 12px;
  background: rgba(8, 30, 44, 0.28);
  color: #ccfff4;
  text-align: left;
}

.footer-brand p {
  color: #9eabc0;
  font-size: 1rem;
  line-height: 1.65;
}

.footer-column {
  gap: 7px;
}

.footer-column strong {
  font-size: 0.86rem;
}

.footer-column a {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  color: #a0aec3;
  font-size: 0.95rem;
}

.footer-bottom {
  font-size: 0.84rem;
}

.legal-back {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  font-size: 1rem;
}

.legal-main p,
.legal-main li {
  font-size: 1rem;
  line-height: 1.7;
}

@media (max-width: 1020px) {
  :root {
    --header-height: 68px;
  }

  .header-inner {
    min-height: 68px;
  }

  .menu-button {
    width: 48px;
    height: 48px;
  }

  .main-nav a {
    min-width: min(340px, 88vw);
    min-height: 58px;
    justify-content: center;
    font-size: clamp(1.55rem, 4vw, 2.1rem);
  }
}

@media (max-width: 760px) {
  body {
    font-size: 17px;
  }

  .shell {
    width: min(100% - 32px, var(--shell));
  }

  .section {
    padding-block: 86px;
  }

  .hero-lead {
    font-size: 1.08rem;
  }

  .hero-proof {
    gap: 14px;
  }

  .hero-proof li {
    min-height: 50px;
  }

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

  .service-top {
    align-items: flex-start;
  }

  .value-panel {
    padding: 34px;
  }

  .value-list article {
    grid-template-columns: 48px 1fr;
    gap: 14px;
  }

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

  .process-item,
  .process-item:not(:first-child),
  .process-item:last-child {
    min-height: 0;
    padding: 34px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .process-item:last-child {
    border-bottom: 0;
  }

  .process-item h3 {
    font-size: 1.55rem;
  }

  .price-card {
    padding: 32px;
  }

  .faq-item summary {
    min-height: 82px;
    font-size: 1.12rem;
  }

  .faq-item p {
    margin-right: 42px;
    font-size: 1rem;
  }

  .contact-panel {
    padding: 34px 26px;
  }

  .contact-form {
    padding: 25px 22px;
  }

  .footer-column a {
    min-height: 44px;
  }
}

@media (max-width: 520px) {
  .section {
    padding-block: 80px;
  }

  .brand-copy strong {
    font-size: 1rem;
  }

  .brand-copy small {
    font-size: 0.72rem;
  }

  .window-topline strong {
    font-size: 0.9rem;
  }

  .dash-card strong {
    font-size: 0.8rem;
  }

  .dash-card small,
  .floating-card small {
    font-size: 0.62rem;
  }

  .floating-card strong {
    font-size: 0.72rem;
  }

  .service-card {
    padding: 30px 26px;
  }

  .service-badge {
    display: inline-flex;
    max-width: 180px;
    text-align: center;
  }

  .service-number {
    font-size: 0.86rem;
  }

  .profile-route,
  .profile-route span {
    font-size: 0.68rem;
    letter-spacing: 0.05em;
  }

  .profile-stats span {
    font-size: 0.68rem;
  }

  .price-note {
    display: inline-flex;
    text-align: center;
  }

  .faq-item summary {
    font-size: 1.08rem;
  }

  .contact-panel {
    width: min(100% - 18px, var(--shell));
    padding: 30px 20px;
  }

  .contact-form {
    padding: 22px 17px;
  }

  .footer-grid {
    gap: 34px;
  }
}

@media (hover: none) {
  .button:hover,
  .service-card:hover,
  .contact-options a:hover {
    transform: none;
  }
}

@media (forced-colors: active) {
  .button,
  .brand-mark,
  .service-icon,
  .process-icon,
  .contact-panel {
    border: 1px solid ButtonText;
  }

  :focus-visible {
    outline: 3px solid Highlight;
  }
}

/* ========================================================================== 
   Final readability pass: larger microcopy, labels and comfortable targets
   ========================================================================== */

.main-nav a {
  padding-inline: 4px;
  font-size: 1.05rem;
  font-weight: 750;
}

.brand-copy small {
  font-size: 0.82rem;
}

.eyebrow {
  font-size: 0.94rem;
  letter-spacing: 0.095em;
}

.audience-inner {
  min-height: 84px;
  font-size: 0.9rem;
  letter-spacing: 0.085em;
}

.hero-proof strong {
  font-size: 1.04rem;
}

.hero-proof small {
  font-size: 0.91rem;
  line-height: 1.45;
}

.service-number,
.process-number {
  font-size: 0.98rem;
  font-weight: 800;
}

.service-badge {
  padding: 9px 13px;
  font-size: 0.88rem;
  font-weight: 850;
  letter-spacing: 0.045em;
}

.profile-kicker,
.experience-cards span {
  font-size: 0.88rem;
}

.profile-route,
.profile-route span,
.profile-stats span {
  font-size: 0.8rem;
  line-height: 1.45;
}

.profile-chip {
  font-size: 0.84rem;
}

.price-label {
  font-size: 0.9rem;
}

.price-note {
  font-size: 0.86rem;
  font-weight: 850;
}

.price-value small,
.pricing-footnote,
.contact-location {
  font-size: 0.94rem;
}

.contact-options small {
  font-size: 0.86rem;
  line-height: 1.4;
}

.contact-form label:not(.consent-label) > span {
  font-size: 0.94rem;
}

.contact-form label:not(.consent-label) > span small {
  font-size: 0.88rem;
}

.contact-form .consent-label {
  grid-template-columns: 26px minmax(0, 1fr);
  gap: 12px;
  font-size: 0.9rem;
}

.contact-form .consent-label > span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
  font-weight: 520;
  line-height: 1.62;
}

.contact-form .consent-label input {
  width: 24px;
  min-width: 24px;
  height: 24px;
  min-height: 24px;
  margin-top: 2px;
  padding: 0;
}

.contact-form .consent-label a {
  display: inline-flex;
  min-height: 24px;
  align-items: center;
  font-size: inherit;
  line-height: inherit;
  text-underline-offset: 3px;
  vertical-align: middle;
}

.field-error,
.form-note,
.form-status {
  font-size: 0.88rem;
}

.footer-column strong {
  font-size: 0.92rem;
  letter-spacing: 0.055em;
}

.footer-column a {
  min-height: 44px;
  padding-inline: 4px;
  font-size: 1rem;
}

.footer-bottom {
  font-size: 0.9rem;
  line-height: 1.55;
}

@media (max-width: 760px) {
  .eyebrow {
    font-size: 0.9rem;
  }

  .audience-inner {
    min-height: 78px;
    font-size: 0.84rem;
  }

  .service-number,
  .process-number {
    font-size: 0.94rem;
  }

  .service-badge {
    font-size: 0.84rem;
  }

  .faq-item summary {
    font-size: 1.16rem;
    line-height: 1.42;
  }
}

@media (max-width: 520px) {
  .brand-copy small {
    font-size: 0.78rem;
  }

  .profile-route,
  .profile-route span,
  .profile-stats span {
    font-size: 0.75rem;
  }

  .price-note {
    font-size: 0.82rem;
  }
}

/* ========================================================================== 
   Princeps Digital 5.0 – finaler Typografie- und Usability-Pass
   Ziel: klare Hierarchie, gut lesbare Mikrotypografie und konsistente Ziele.
   ========================================================================== */

:root {
  --text-label: clamp(0.9rem, 0.88rem + 0.1vw, 0.98rem);
  --text-small: clamp(0.9rem, 0.88rem + 0.08vw, 0.96rem);
  --text-body: clamp(1rem, 0.98rem + 0.12vw, 1.08rem);
}

body {
  font-size: 18px;
  line-height: 1.7;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

p,
li,
label,
summary {
  text-wrap: pretty;
}

/* Klare Tastaturführung und sichtbarer aktueller Abschnitt. */
.main-nav a[aria-current] {
  color: #fff;
}

.main-nav a[aria-current]::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* Header: bewusst nicht mikroskopisch, dennoch kompakt. */
.header-inner {
  gap: clamp(22px, 2.3vw, 38px);
}

.brand-copy strong {
  font-size: 1.08rem;
}

.brand-copy small {
  margin-top: 5px;
  font-size: 0.875rem;
  line-height: 1.15;
  letter-spacing: 0.13em;
}

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

.main-nav a {
  min-height: 48px;
  padding: 12px 2px;
  font-size: clamp(1.02rem, 0.98rem + 0.16vw, 1.1rem);
  font-weight: 760;
  line-height: 1.25;
}

/* Wiederkehrende Abschnittslabels: überall dieselbe lesbare Größe. */
.eyebrow {
  gap: 11px;
  font-size: var(--text-label);
  font-weight: 850;
  line-height: 1.4;
  letter-spacing: 0.095em;
}

.section-intro h2,
.split-intro h2,
.faq-intro h2,
.contact-copy h2 {
  text-wrap: balance;
}

.section-intro p,
.split-intro > p,
.faq-intro p,
.contact-copy > p {
  font-size: clamp(1.08rem, 1.02rem + 0.3vw, 1.24rem);
  line-height: 1.72;
}

/* Hero-Nachweise: gute Lesbarkeit auch auf kleineren Displays. */
.hero-proof {
  gap: 16px;
}

.hero-proof li {
  min-height: 76px;
  padding: 13px 15px;
}

.hero-proof strong {
  font-size: 1.06rem;
  line-height: 1.35;
}

.hero-proof small {
  margin-top: 4px;
  color: #a7b5ca;
  font-size: 0.92rem;
  line-height: 1.42;
}

.audience-inner {
  min-height: 84px;
  font-size: 0.9rem;
  line-height: 1.45;
  letter-spacing: 0.09em;
}

/* Leistungen: Nummern, Badge und Fließtext werden stärker gewichtet. */
.service-top {
  min-height: 40px;
  align-items: center;
}

.service-number,
.process-number {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.035);
  color: #b1bed2;
  font-size: 0.94rem;
  font-weight: 850;
  line-height: 1;
  letter-spacing: 0.09em;
}

.service-badge,
.price-note {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  padding: 8px 13px;
  font-size: 0.875rem;
  font-weight: 850;
  line-height: 1.3;
  letter-spacing: 0.055em;
}

.service-card > p {
  font-size: 1.08rem;
  line-height: 1.72;
}

.check-list li {
  min-height: 48px;
  font-size: 1.02rem;
  line-height: 1.58;
}

.service-card .text-link {
  font-size: 1.02rem;
}

/* Nutzen */
.value-index {
  width: 44px;
  height: 44px;
  padding: 0;
  place-items: center;
  border: 1px solid rgba(113, 89, 239, 0.2);
  border-radius: 14px;
  background: rgba(113, 89, 239, 0.08);
  font-size: 1rem;
  font-weight: 850;
}

.value-list h3 {
  font-size: clamp(1.48rem, 1.38rem + 0.35vw, 1.72rem);
}

.value-list p {
  font-size: 1.04rem;
  line-height: 1.68;
}

/* Erfahrung / Profil: keine Mini-Texte mehr. */
.profile-kicker,
.profile-route,
.profile-chip,
.profile-stats span,
.experience-cards span,
.experience-cards small {
  font-size: var(--text-small);
}

.profile-kicker,
.experience-cards span {
  line-height: 1.45;
  letter-spacing: 0.08em;
}

.profile-route {
  line-height: 1.55;
  letter-spacing: 0.055em;
}

.profile-stats span,
.experience-cards small {
  line-height: 1.55;
}

.profile-chip {
  min-height: 42px;
  padding: 11px 14px;
  line-height: 1.4;
}

.experience-cards strong {
  font-size: 1.08rem;
  line-height: 1.48;
}

/* Ablauf: Zahlen wirken nun wie echte Schritte und Texte bleiben großzügig. */
.process-item,
.process-item:not(:first-child),
.process-item:last-child {
  padding: 42px 38px;
}

.process-icon {
  width: 56px;
  height: 56px;
  margin: 28px 0 26px;
}

.process-item h3 {
  font-size: clamp(1.55rem, 1.45rem + 0.32vw, 1.78rem);
}

.process-item p {
  font-size: 1.04rem;
  line-height: 1.72;
}

/* Preise */
.price-label {
  font-size: 0.92rem;
  line-height: 1.4;
  letter-spacing: 0.075em;
}

.price-value small,
.hosting-value span {
  font-size: 0.96rem;
}

.price-description,
.price-card > p,
.price-list li {
  font-size: 1.04rem;
}

.price-description,
.price-card > p {
  line-height: 1.72;
}

.price-list li {
  min-height: 50px;
  line-height: 1.58;
}

.mini-list li {
  min-height: 46px;
  font-size: 1rem;
  line-height: 1.55;
}

.pricing-footnote {
  font-size: 0.94rem;
  line-height: 1.65;
}

/* FAQ */
.faq-item summary {
  font-size: clamp(1.16rem, 1.1rem + 0.22vw, 1.3rem);
  line-height: 1.45;
}

.faq-item p {
  font-size: 1.04rem;
  line-height: 1.74;
}

/* Kontaktformular: Beschriftungen, Hilfen und Fehlertexte gut erkennbar. */
.contact-options small {
  font-size: 0.9rem;
  line-height: 1.4;
  letter-spacing: 0.075em;
}

.contact-options strong {
  font-size: 1.04rem;
  line-height: 1.45;
}

.contact-form label:not(.consent-label) > span {
  font-size: 0.95rem;
  line-height: 1.45;
}

.contact-form label:not(.consent-label) > span small {
  font-size: 0.9rem;
}

.consent-label {
  min-height: 48px;
  grid-template-columns: 26px minmax(0, 1fr);
  align-items: start;
  gap: 12px;
  font-size: 0.92rem;
  line-height: 1.68;
}

.contact-form .consent-label > span {
  color: rgba(255, 255, 255, 0.8);
  font-size: inherit;
  font-weight: 500;
}

.consent-label input {
  width: 24px;
  height: 24px;
  margin-top: 2px;
}

.contact-form .consent-label a {
  display: inline-block;
  min-height: 28px;
  padding: 2px 2px;
  margin: -2px -2px;
  font-size: inherit;
  line-height: 1.65;
  text-underline-offset: 3px;
}

.field-error,
.form-note,
.form-status {
  font-size: 0.9rem;
  line-height: 1.55;
}

.form-note {
  color: rgba(255, 255, 255, 0.7);
}

/* Footer: mehr Luft, größere Zeilen und ausreichend große Linkflächen. */
.site-footer {
  padding: 82px 0 34px;
}

.footer-grid {
  gap: clamp(40px, 6vw, 84px);
  padding-bottom: 56px;
}

.footer-brand p {
  font-size: 1.02rem;
  line-height: 1.7;
}

.footer-column {
  gap: 5px;
}

.footer-column strong {
  margin-bottom: 10px;
  font-size: 0.94rem;
  line-height: 1.4;
  letter-spacing: 0.07em;
}

.footer-column a {
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  padding: 8px 6px;
  margin-inline: -6px;
  font-size: 1rem;
  line-height: 1.5;
}

.footer-bottom {
  gap: 18px;
  padding-top: 28px;
  font-size: 0.9rem;
  line-height: 1.55;
}

/* Rechtliche Seiten übernehmen denselben Marken- und Lesbarkeitsstandard. */
.legal-header .brand-mark img {
  width: 100%;
  height: 100%;
}

.legal-back {
  min-height: 46px;
  font-size: 1rem;
}

.legal-warning,
.legal-main p,
.legal-main li {
  font-size: 1rem;
  line-height: 1.72;
}

/* Responsive Feinabstimmung */
@media (max-width: 1020px) {
  .main-nav a {
    min-width: min(350px, 88vw);
    min-height: 60px;
    justify-content: center;
    padding: 8px 18px;
    font-size: clamp(1.55rem, 4vw, 2.1rem);
  }

  .main-nav a[aria-current] {
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.055);
  }
}

@media (max-width: 760px) {
  .section {
    padding-block: 88px;
  }

  .hero-proof li {
    min-height: 70px;
  }

  .service-card {
    padding: 34px 30px;
  }

  .process-item,
  .process-item:not(:first-child),
  .process-item:last-child {
    padding: 36px 0;
  }

  .contact-panel {
    padding: 36px 26px;
  }

  .contact-form {
    padding: 26px 22px;
  }

  .footer-grid {
    gap: 38px;
  }
}

@media (max-width: 520px) {
  .brand-copy strong {
    font-size: 1.02rem;
  }

  .brand-copy small {
    font-size: 0.82rem;
  }

  .eyebrow {
    font-size: 0.88rem;
    letter-spacing: 0.085em;
  }

  .hero-proof strong {
    font-size: 1rem;
  }

  .hero-proof small {
    font-size: 0.9rem;
  }

  .service-number,
  .process-number,
  .service-badge,
  .price-note {
    font-size: 0.88rem;
  }

  .service-card {
    padding: 30px 25px;
  }

  .value-panel {
    padding: 32px 25px;
  }

  .value-list article {
    grid-template-columns: 46px minmax(0, 1fr);
  }

  .profile-route,
  .profile-route span,
  .profile-stats span {
    font-size: 0.88rem;
  }

  .contact-panel {
    padding: 32px 20px;
  }

  .contact-form {
    padding: 24px 17px;
  }

  .footer-bottom {
    font-size: 0.88rem;
  }
}

@media (max-width: 360px) {
  .eyebrow {
    font-size: 0.84rem;
  }

  .hero-proof li {
    padding-inline: 12px;
  }

  .service-card,
  .price-card {
    padding-inline: 22px;
  }

  .contact-panel {
    padding-inline: 16px;
  }

  .contact-form {
    padding-inline: 14px;
  }
}

@media (prefers-contrast: more) {
  :root {
    --muted: #d2dbea;
  }

  .service-card,
  .price-card,
  .contact-form,
  .profile-visual {
    border-color: rgba(255, 255, 255, 0.3);
  }

  .hero-proof small,
  .service-card > p,
  .process-item p,
  .footer-column a,
  .footer-bottom {
    color: #d0d9e8;
  }
}

.form-status[data-state="error"]:not(:empty) {
  border-color: rgba(255, 166, 184, 0.34);
  background: rgba(79, 12, 29, 0.24);
  color: #ffe0e6;
}

.form-status[data-state="success"]:not(:empty) {
  border-color: rgba(122, 240, 216, 0.3);
  background: rgba(8, 46, 48, 0.28);
  color: #d8fff7;
}

/* Lesbarkeits-Untergrenze auch auf sehr schmalen Displays. */
@media (max-width: 520px) {
  .brand-copy small,
  .eyebrow {
    font-size: 0.875rem;
  }
}

@media (max-width: 360px) {
  .eyebrow {
    font-size: 0.875rem;
    letter-spacing: 0.075em;
  }
}

/* Abschlusskorrekturen aus dem Reflow- und Kontrasttest. */
.footer-bottom,
.footer-bottom small,
.footer-bottom span {
  color: #93a2ba;
  font-size: 0.9rem;
  line-height: 1.55;
}

.contact-copy,
.contact-form,
.contact-options,
.contact-options a,
.contact-options a > span {
  min-width: 0;
}

.contact-options strong,
.contact-copy h2,
.contact-copy p {
  overflow-wrap: anywhere;
  word-break: break-word;
}

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 520px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-brand {
    grid-column: auto;
  }
}

/* Stabiler Reflow bei vergrößerten Zeichen- und Wortabständen. */
.section-intro,
.split-intro,
.experience-grid,
.experience-copy,
.services-grid,
.service-card,
.pricing-grid,
.pricing-side,
.price-card,
.contact-copy,
.contact-form {
  min-width: 0;
}

@media (max-width: 760px) {
  h1,
  h2,
  h3,
  .service-card h3,
  .price-card h3,
  .contact-options strong {
    overflow-wrap: anywhere;
    hyphens: auto;
  }

  .profile-route {
    flex-wrap: wrap;
    white-space: normal;
  }

  .profile-route span {
    min-width: 0;
    overflow-wrap: anywhere;
  }
}

/* Letzte visuelle Feinabstimmung: Abschnittslabels und Hero-Nachweise. */
.eyebrow {
  font-size: clamp(0.94rem, 0.92rem + 0.1vw, 1.02rem);
}

@media (min-width: 761px) {
  .hero-proof {
    grid-template-columns: 1fr 1fr 1.22fr;
    gap: 12px;
  }

  .hero-proof li {
    padding-inline: 12px;
  }
}

@media (max-width: 520px) {
  .eyebrow {
    font-size: 0.92rem;
  }
}

/* Version 6: finales Princeps-Digital-Logo */
.brand-mark {
  width: 48px;
  height: 48px;
  padding: 3px;
  overflow: visible;
  border: 0;
  border-radius: 14px;
  background: rgba(255,255,255,.96);
  box-shadow: 0 10px 28px rgba(11, 165, 151, .18), 0 0 0 1px rgba(255,255,255,.12);
}
.brand-mark::after { display: none; }
.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 4px 8px rgba(1, 42, 79, .18));
}
.footer-brand .brand-mark { background: rgba(255,255,255,.98); }
@media (max-width: 760px) {
  .brand-mark { width: 44px; height: 44px; border-radius: 13px; }
}

/* Mobile navigation v7: compact dropdown instead of full-screen overlay */
@media (max-width: 1020px) {
  .header-inner {
    position: relative;
  }

  .main-nav {
    position: absolute;
    z-index: 20;
    top: calc(100% + 10px);
    right: 0;
    left: auto;
    inset: auto 0 auto auto;
    display: grid;
    width: min(360px, calc(100vw - 32px));
    max-height: min(70vh, 460px);
    align-items: stretch;
    justify-content: stretch;
    gap: 6px;
    padding: 12px;
    overflow-y: auto;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 18px;
    background: rgba(8, 17, 36, 0.98);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(22px) saturate(1.25);
    -webkit-backdrop-filter: blur(22px) saturate(1.25);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px) scale(0.98);
    transform-origin: top right;
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  }

  .main-nav.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0) scale(1);
  }

  .main-nav a,
  .main-nav a[aria-current] {
    display: flex;
    width: 100%;
    min-width: 0;
    min-height: 52px;
    align-items: center;
    justify-content: flex-start;
    padding: 12px 14px;
    border-radius: 12px;
    color: #e7edfa;
    font-size: 1.05rem;
    line-height: 1.25;
    text-align: left;
  }

  .main-nav a:hover,
  .main-nav a:focus-visible,
  .main-nav a[aria-current] {
    background: rgba(255, 255, 255, 0.07);
    color: #fff;
  }

  .main-nav a::after {
    display: none;
  }

  body.nav-open {
    overflow: auto;
  }
}

@media (max-width: 480px) {
  .main-nav {
    right: -2px;
    width: min(340px, calc(100vw - 24px));
    border-radius: 16px;
  }
}

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

.contact-form button[disabled] {
  cursor: wait;
  opacity: 0.72;
}
