:root {
  color-scheme: dark;
  --bg: #05050a;
  --bg-raised: #0a0a13;
  --surface: rgba(255, 255, 255, 0.045);
  --surface-strong: rgba(255, 255, 255, 0.075);
  --border: rgba(255, 255, 255, 0.11);
  --border-bright: rgba(154, 127, 255, 0.42);
  --text: #f7f5ff;
  --muted: #aaa8ba;
  --violet: #8b5cf6;
  --blue: #35a7ff;
  --pink: #f04eae;
  --orange: #ff8a3d;
  --gradient: linear-gradient(118deg, var(--blue), var(--violet) 48%, var(--pink));
  --warm-gradient: linear-gradient(118deg, var(--orange), var(--pink) 45%, var(--violet));
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
  --radius-lg: 28px;
  --radius-md: 18px;
  --container: 1180px;
}

*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 92px; }

body {
  min-width: 320px;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -3;
  pointer-events: none;
  background:
    radial-gradient(circle at 8% 8%, rgba(53, 167, 255, 0.14), transparent 28rem),
    radial-gradient(circle at 92% 24%, rgba(139, 92, 246, 0.16), transparent 30rem),
    radial-gradient(circle at 52% 88%, rgba(240, 78, 174, 0.09), transparent 34rem),
    var(--bg);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  opacity: 0.36;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, #000, transparent 80%);
}

a { color: inherit; }
img { display: block; max-width: 100%; }
button, a { -webkit-tap-highlight-color: transparent; }
::selection { background: rgba(139, 92, 246, .42); color: #fff; }

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: 10px;
  background: #fff;
  color: #08080e;
  font-weight: 700;
  transform: translateY(-160%);
  transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }

.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.section { padding: 104px 0; }
.section-compact { padding: 28px 0 64px; }
.section-dark { position: relative; }

.section-dark::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-block: 1px solid rgba(255,255,255,.05);
  background: linear-gradient(180deg, rgba(255,255,255,.018), rgba(255,255,255,.035), rgba(255,255,255,.018));
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 16px;
  color: #c8bdff;
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .17em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 22px;
  height: 1px;
  background: var(--gradient);
  box-shadow: 0 0 10px rgba(53, 167, 255, .7);
}

.section-heading { max-width: 710px; margin-bottom: 52px; }
.section-heading.center { margin-inline: auto; text-align: center; }
.section-heading.center .eyebrow::before { display: none; }
.section-heading h2,
.split-copy h2,
.cta-card h2 {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.08;
  letter-spacing: -.045em;
}
.section-heading p { max-width: 620px; margin-top: 18px; color: var(--muted); font-size: 1.04rem; }
.section-heading.center p { margin-inline: auto; }

.text-gradient {
  color: transparent;
  background: var(--gradient);
  background-clip: text;
  -webkit-background-clip: text;
}

.header {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid rgba(255,255,255,.075);
  background: rgba(5, 5, 10, .74);
  backdrop-filter: blur(18px) saturate(145%);
  -webkit-backdrop-filter: blur(18px) saturate(145%);
}

.nav { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 11px; text-decoration: none; flex: 0 0 auto; }
.brand img { width: 42px; height: 42px; border-radius: 50%; object-fit: cover; box-shadow: 0 0 28px rgba(112, 84, 255, .32); }
.brand-name { font-family: "Space Grotesk", sans-serif; font-size: 1.2rem; font-weight: 700; letter-spacing: -.035em; }
.brand-name span { color: #b49dff; }

.nav-links { display: flex; align-items: center; gap: 28px; margin-left: auto; }
.nav-links a { position: relative; color: var(--muted); font-size: .9rem; font-weight: 500; text-decoration: none; transition: color .2s ease; }
.nav-links a:hover, .nav-links a:focus-visible { color: var(--text); }

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid transparent;
  border-radius: 12px;
  font-weight: 700;
  font-family: inherit;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease, background-color .22s ease;
}

.nav-cta { min-height: 42px; padding: 0 17px; color: #09090e; background: #fff; font-size: .85rem; }
.button { min-height: 52px; padding: 0 22px; font-size: .93rem; }
.button-primary { color: #07070c; background: linear-gradient(110deg, #fff 0%, #dfd6ff 45%, #91ddff 100%); box-shadow: 0 12px 36px rgba(92, 88, 255, .25); }
.button-secondary { color: var(--text); border-color: var(--border); background: rgba(255,255,255,.04); }
.nav-cta:hover, .button:hover { transform: translateY(-2px); }
.button-primary:hover { box-shadow: 0 16px 46px rgba(92, 88, 255, .36); }
.button-secondary:hover { border-color: rgba(255,255,255,.25); background: rgba(255,255,255,.07); }
.button svg, .nav-cta svg { width: 17px; height: 17px; }

.hero { position: relative; padding: 96px 0 82px; }
.hero::before {
  content: "";
  position: absolute;
  top: -16rem;
  left: 45%;
  z-index: -1;
  width: 48rem;
  height: 48rem;
  border-radius: 50%;
  background: rgba(93, 61, 236, .14);
  filter: blur(110px);
  pointer-events: none;
}

.hero-grid { display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(360px, .92fr); align-items: center; gap: clamp(42px, 7vw, 96px); }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 24px;
  padding: 8px 13px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255,255,255,.035);
  color: #d6d2e3;
  font-size: .8rem;
  font-weight: 600;
}

.hero-badge i { width: 7px; height: 7px; border-radius: 50%; background: #6de0ff; box-shadow: 0 0 14px #35a7ff; }
.hero h1 { max-width: 740px; font-family: "Space Grotesk", sans-serif; font-size: clamp(3rem, 6.4vw, 5.4rem); font-weight: 700; line-height: .98; letter-spacing: -.065em; }
.hero-lead { max-width: 660px; margin-top: 27px; color: var(--muted); font-size: clamp(1.02rem, 1.4vw, 1.18rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 34px; }
.hero-note { display: flex; flex-wrap: wrap; gap: 10px 20px; margin-top: 25px; color: #838091; font-size: .77rem; }
.hero-note span { display: inline-flex; align-items: center; gap: 7px; }
.hero-note svg { width: 14px; height: 14px; color: #8fcfff; }

.hero-visual { position: relative; isolation: isolate; }
.hero-visual::before, .hero-visual::after { content: ""; position: absolute; border-radius: 50%; filter: blur(28px); z-index: -1; }
.hero-visual::before { inset: 12% 8% 6% 4%; background: rgba(91, 65, 255, .28); }
.hero-visual::after { width: 34%; height: 34%; right: 5%; bottom: 10%; background: rgba(255, 84, 164, .25); }

.logo-orbit {
  position: relative;
  aspect-ratio: 1;
  max-width: 510px;
  margin-inline: auto;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 50%;
  background: rgba(255,255,255,.025);
  box-shadow: inset 0 0 70px rgba(126, 90, 255, .08), var(--shadow);
}
.logo-orbit::before, .logo-orbit::after { content: ""; position: absolute; border: 1px solid rgba(255,255,255,.08); border-radius: 50%; }
.logo-orbit::before { inset: 7%; }
.logo-orbit::after { inset: 17%; }
.hero-logo { position: absolute; inset: 11%; width: 78%; height: 78%; border-radius: 50%; object-fit: cover; filter: saturate(1.08) contrast(1.05); }
.orbit-label {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 999px;
  background: rgba(8, 8, 15, .76);
  box-shadow: 0 12px 30px rgba(0,0,0,.35);
  backdrop-filter: blur(12px);
  color: #d7d4e4;
  font-size: .72rem;
  font-weight: 600;
  white-space: nowrap;
}
.orbit-label i { width: 7px; height: 7px; border-radius: 50%; }
.orbit-label.one { top: 13%; right: -2%; }
.orbit-label.one i { background: var(--blue); box-shadow: 0 0 10px var(--blue); }
.orbit-label.two { bottom: 13%; left: -2%; }
.orbit-label.two i { background: var(--orange); box-shadow: 0 0 10px var(--orange); }

.ai-system {
  display: grid;
  grid-template-columns: 1.18fr repeat(3, 1fr);
  border-block: 1px solid var(--border);
}
.system-core,
.axis-card {
  min-height: 112px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 22px 26px;
}
.system-core { padding-left: 0; }
.system-kicker { display: block; margin-bottom: 7px; color: #8f8a9f; font-size: .65rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.system-core strong { display: block; max-width: 250px; font-family: "Space Grotesk", sans-serif; font-size: .98rem; line-height: 1.38; }
.system-core strong em { font-style: normal; }

.axis-card {
  border-left: 1px solid var(--border);
}
.axis-number { margin-bottom: 8px; color: #625f6c; font-family: "Space Grotesk", sans-serif; font-size: .64rem; font-weight: 700; letter-spacing: .12em; }
.axis-card h3 { font-family: "Space Grotesk", sans-serif; font-size: 1rem; letter-spacing: -.02em; }
.axis-card p { margin-top: 3px; color: var(--muted); font-size: .77rem; }

.transformation-section { padding: 54px 0 108px; }
.transformation-head {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  align-items: end;
  gap: 56px;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--border);
}
.transformation-head h2 {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.08;
  letter-spacing: -.045em;
}
.transformation-intro { max-width: 660px; color: var(--muted); font-size: 1rem; }
.transformation-intro strong { color: #d9d5e2; font-weight: 600; }
.transformation-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 18px; }
.transformation-card {
  padding: clamp(28px, 4vw, 42px);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: linear-gradient(145deg, rgba(255,255,255,.045), rgba(255,255,255,.015));
}
.transformation-card.roi-card { border-top-color: rgba(53,167,255,.48); }
.transformation-card.native-card { border-top-color: rgba(139,92,246,.5); }
.card-label { display: block; margin-bottom: 18px; color: #8e8a9b; font-size: .68rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.transformation-card h3 { max-width: 540px; font-family: "Space Grotesk", sans-serif; font-size: clamp(1.45rem, 2.5vw, 2rem); line-height: 1.16; letter-spacing: -.035em; }
.transformation-card > p { margin-top: 16px; color: var(--muted); font-size: .92rem; }
.value-equation {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 15px;
  margin: 28px 0;
  padding: 17px 18px;
  border-block: 1px solid var(--border);
}
.equation-mark { color: #75c9ff; font-family: "Space Grotesk", sans-serif; font-size: 1.5rem; font-weight: 700; }
.value-equation strong { display: block; font-family: "Space Grotesk", sans-serif; font-size: .9rem; }
.value-equation div span { display: block; margin-top: 2px; color: #777482; font-size: .72rem; }
.framework-list { list-style: none; padding: 0; }
.framework-list li { display: grid; grid-template-columns: 30px 1fr; gap: 12px; padding: 12px 0; border-top: 1px solid rgba(255,255,255,.065); }
.framework-list li:first-child { border-top: 0; }
.framework-list b { color: #777382; font-family: "Space Grotesk", sans-serif; font-size: .68rem; font-weight: 600; }
.framework-list strong { display: block; font-size: .84rem; font-weight: 600; }
.framework-list span { display: block; margin-top: 2px; color: var(--muted); font-size: .76rem; }
.maturity-path { margin-top: 28px; border-left: 1px solid var(--border); }
.maturity-step { position: relative; padding: 0 0 23px 25px; }
.maturity-step:last-child { padding-bottom: 0; }
.maturity-step::before { content: ""; position: absolute; top: 5px; left: -4px; width: 7px; height: 7px; border-radius: 50%; border: 2px solid var(--bg-raised); background: #716d7d; }
.maturity-step:last-child::before { background: #a68aff; box-shadow: 0 0 12px rgba(139,92,246,.55); }
.maturity-step small { color: #777382; font-size: .63rem; font-weight: 700; letter-spacing: .12em; }
.maturity-step h4 { margin-top: 3px; font-family: "Space Grotesk", sans-serif; font-size: .98rem; }
.maturity-step p { margin-top: 3px; color: var(--muted); font-size: .77rem; }
.transformation-note { margin-top: 28px; padding-top: 20px; border-top: 1px solid var(--border); color: #c6c2cf; font-size: .82rem; }
.transformation-note strong { color: #fff; }

.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.service-card {
  position: relative;
  min-height: 286px;
  overflow: hidden;
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: linear-gradient(145deg, rgba(255,255,255,.055), rgba(255,255,255,.018));
  transition: transform .25s ease, border-color .25s ease, background-color .25s ease;
}
.service-card::after { content: ""; position: absolute; right: -70px; bottom: -90px; width: 180px; height: 180px; border-radius: 50%; background: var(--card-glow, rgba(99, 78, 255, .2)); filter: blur(55px); opacity: 0; transition: opacity .3s ease; }
.service-card:hover { transform: translateY(-5px); border-color: var(--border-bright); }
.service-card:hover::after { opacity: 1; }
.service-strategy { --icon-color: #72caff; --card-glow: rgba(53,167,255,.25); }
.service-generative { --icon-color: #b79cff; --card-glow: rgba(139,92,246,.28); }
.service-infrastructure { --icon-color: #f189cc; --card-glow: rgba(240,78,174,.24); }
.service-automation { --icon-color: #ff9f61; --card-glow: rgba(255,138,61,.24); }
.service-optimization { --icon-color: #7be3d5; --card-glow: rgba(62,211,191,.22); }
.service-adaptation { --icon-color: #f6d379; --card-glow: rgba(246,211,121,.2); }
.service-number { color: #747180; font-family: "Space Grotesk", sans-serif; font-size: .72rem; font-weight: 700; letter-spacing: .14em; }
.service-icon { width: 46px; height: 46px; display: grid; place-items: center; margin: 22px 0 20px; border: 1px solid rgba(255,255,255,.12); border-radius: 13px; color: var(--icon-color, #8ecfff); background: rgba(255,255,255,.045); }
.service-icon svg { width: 21px; height: 21px; }
.service-card h3 { position: relative; z-index: 1; font-family: "Space Grotesk", sans-serif; font-size: 1.13rem; line-height: 1.28; letter-spacing: -.02em; }
.service-card p { position: relative; z-index: 1; margin-top: 11px; color: var(--muted); font-size: .9rem; }

.split { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(48px, 8vw, 110px); align-items: start; }
.split-copy { position: sticky; top: 120px; }
.split-copy p { max-width: 480px; margin-top: 20px; color: var(--muted); }
.pill-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 26px; }
.pill { padding: 7px 11px; border: 1px solid var(--border); border-radius: 999px; color: #c0bdca; background: rgba(255,255,255,.03); font-size: .75rem; }

.process { counter-reset: step; }
.process-item { position: relative; display: grid; grid-template-columns: 66px 1fr; gap: 22px; padding: 0 0 42px; }
.process-item:last-child { padding-bottom: 0; }
.process-item::before { content: ""; position: absolute; left: 32px; top: 66px; bottom: 8px; width: 1px; background: linear-gradient(var(--violet), rgba(139,92,246,.08)); }
.process-item:last-child::before { display: none; }
.step-number { position: relative; z-index: 1; width: 66px; height: 66px; display: grid; place-items: center; border: 1px solid var(--border-bright); border-radius: 19px; background: #0d0b18; color: #cabdff; font-family: "Space Grotesk", sans-serif; font-weight: 700; }
.process-item h3 { padding-top: 5px; font-family: "Space Grotesk", sans-serif; font-size: 1.25rem; letter-spacing: -.025em; }
.process-item p { margin-top: 8px; color: var(--muted); font-size: .91rem; }

.principles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.principle { padding: 30px; border: 1px solid var(--border); border-radius: var(--radius-md); background: var(--surface); }
.principle-top { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.principle-icon { width: 40px; height: 40px; display: grid; place-items: center; border-radius: 50%; background: rgba(139,92,246,.13); color: #b8a2ff; }
.principle-icon svg { width: 19px; height: 19px; }
.principle-index { color: #666371; font-family: "Space Grotesk", sans-serif; font-size: .73rem; }
.principle h3 { margin-top: 30px; font-family: "Space Grotesk", sans-serif; font-size: 1.18rem; }
.principle p { margin-top: 9px; color: var(--muted); font-size: .9rem; }

.faq { max-width: 860px; margin-inline: auto; }
details { border-top: 1px solid var(--border); }
details:last-child { border-bottom: 1px solid var(--border); }
summary { position: relative; padding: 24px 48px 24px 0; cursor: pointer; list-style: none; font-family: "Space Grotesk", sans-serif; font-size: 1.04rem; font-weight: 600; }
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; position: absolute; top: 21px; right: 4px; color: #a991ff; font-size: 1.45rem; font-weight: 400; transition: transform .2s ease; }
details[open] summary::after { transform: rotate(45deg); }
details p { max-width: 760px; padding: 0 48px 25px 0; color: var(--muted); font-size: .93rem; }

.cta-card {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 40px;
  padding: clamp(38px, 6vw, 72px);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 10% 20%, rgba(53,167,255,.16), transparent 30%),
    radial-gradient(circle at 90% 90%, rgba(240,78,174,.16), transparent 36%),
    linear-gradient(135deg, rgba(255,255,255,.07), rgba(255,255,255,.025));
  box-shadow: var(--shadow);
}
.cta-card::before { content: ""; position: absolute; top: -80px; right: 24%; width: 190px; height: 190px; border-radius: 50%; border: 1px solid rgba(255,255,255,.08); box-shadow: 0 0 0 36px rgba(255,255,255,.018), 0 0 0 76px rgba(255,255,255,.012); }
.cta-card > * { position: relative; z-index: 1; }
.cta-card p { max-width: 640px; margin-top: 16px; color: var(--muted); }

.contact-dialog {
  width: min(720px, calc(100% - 32px));
  max-height: min(900px, calc(100dvh - 32px));
  margin: auto;
  padding: 0;
  overflow: auto;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 24px;
  background: #0a0a12;
  color: var(--text);
  box-shadow: 0 32px 120px rgba(0,0,0,.72);
}
.contact-dialog::backdrop { background: rgba(2,2,6,.78); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); }
.contact-dialog[open] { animation: dialog-in .24s ease both; }
.contact-dialog-inner { position: relative; padding: clamp(28px, 5vw, 48px); }
.contact-dialog-inner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 8%;
  right: 8%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--blue), var(--violet), var(--pink), transparent);
}
.dialog-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: rgba(255,255,255,.035);
  color: var(--muted);
  cursor: pointer;
  transition: color .2s ease, border-color .2s ease, background-color .2s ease;
}
.dialog-close:hover { border-color: rgba(255,255,255,.24); background: rgba(255,255,255,.07); color: #fff; }
.dialog-close svg { width: 18px; height: 18px; }
.contact-heading { padding-right: 52px; }
.contact-heading h2 { font-family: "Space Grotesk", sans-serif; font-size: clamp(1.9rem, 5vw, 2.65rem); line-height: 1.08; letter-spacing: -.045em; }
.contact-heading p { max-width: 560px; margin-top: 12px; color: var(--muted); font-size: .9rem; }
.contact-form { margin-top: 32px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-field { display: flex; flex-direction: column; gap: 7px; }
.form-field-wide { grid-column: 1 / -1; }
.form-field label { color: #cbc7d4; font-size: .76rem; font-weight: 600; }
.form-field label > span[aria-hidden="true"] { color: #8dbfff; }
.form-field .optional { margin-left: 5px; color: #6f6c79; font-size: .66rem; font-weight: 500; }
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 11px;
  outline: none;
  background: rgba(255,255,255,.035);
  color: var(--text);
  font: inherit;
  font-size: .86rem;
  transition: border-color .2s ease, background-color .2s ease, box-shadow .2s ease;
}
.form-field input,
.form-field select { min-height: 46px; padding: 0 13px; }
.form-field textarea { min-height: 126px; padding: 12px 13px; resize: vertical; }
.form-field select { color-scheme: dark; }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus { border-color: rgba(129,177,255,.72); background: rgba(255,255,255,.055); box-shadow: 0 0 0 3px rgba(53,167,255,.09); }
.form-field input:user-invalid,
.form-field select:user-invalid,
.form-field textarea:user-invalid { border-color: rgba(255,111,129,.68); }
.form-field textarea::placeholder { color: #696673; }
.consent-field { display: grid; grid-template-columns: 17px 1fr; gap: 10px; align-items: start; margin-top: 20px; color: #8f8c99; font-size: .72rem; cursor: pointer; }
.consent-field input { width: 16px; height: 16px; margin-top: 2px; accent-color: var(--violet); }
.form-footer { min-height: 56px; display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-top: 24px; }
.form-status { flex: 1; color: var(--muted); font-size: .77rem; }
.form-status.is-success { color: #80ddc4; }
.form-status.is-error { color: #ff98a6; }
.form-submit { flex: 0 0 auto; }
.form-submit:disabled { cursor: wait; opacity: .58; transform: none; }
body:has(.contact-dialog[open]) { overflow: hidden; }

@keyframes dialog-in {
  from { opacity: 0; transform: translateY(14px) scale(.985); }
  to { opacity: 1; transform: none; }
}

footer { padding: 40px 0; border-top: 1px solid var(--border); }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.footer-meta { color: #7d7a88; font-size: .8rem; text-align: right; }
.footer-meta a { color: #b7b3c2; text-decoration: none; }
.footer-meta a:hover { color: #fff; }

.js .reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.js .reveal.is-visible { opacity: 1; transform: none; }

:focus-visible { outline: 2px solid #9adfff; outline-offset: 4px; }

@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-copy { display: flex; flex-direction: column; align-items: center; }
  .hero-visual { width: min(78vw, 510px); margin-inline: auto; }
  .hero-note { justify-content: center; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1fr; }
  .split-copy { position: static; }
  .principles { grid-template-columns: 1fr; }
  .transformation-head { grid-template-columns: 1fr; gap: 20px; }
  .transformation-grid { grid-template-columns: 1fr; }
  .ai-system { grid-template-columns: repeat(3, 1fr); }
  .system-core { grid-column: 1 / -1; min-height: 124px; }
  .axis-card:first-of-type { border-left: 0; }
}

@media (max-width: 760px) {
  .container { width: min(calc(100% - 32px), var(--container)); }
  .section { padding: 78px 0; }
  .nav { min-height: 68px; }
  .brand img { width: 38px; height: 38px; }
  .nav-links { display: none; }
  .hero { padding: 68px 0 62px; }
  .transformation-section { padding: 42px 0 82px; }
  .hero h1 { font-size: clamp(2.75rem, 13vw, 4rem); }
  .hero-visual { width: min(88vw, 440px); }
  .orbit-label.one { right: -1%; }
  .orbit-label.two { left: -1%; }
  .ai-system { grid-template-columns: 1fr; }
  .system-core { grid-column: auto; }
  .system-core { padding-left: 0; }
  .axis-card,
  .axis-card:first-of-type { min-height: 92px; padding-inline: 0; border-top: 1px solid var(--border); border-left: 0; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 0; }
  .cta-card { grid-template-columns: 1fr; }
  .cta-card .button { justify-self: start; }
  .footer-inner { align-items: flex-start; flex-direction: column; }
  .footer-meta { text-align: left; }
}

@media (max-width: 520px) {
  .nav-cta { display: none; }
  .hero-actions { width: 100%; }
  .hero-actions .button { width: 100%; }
  .hero-note { flex-direction: column; align-items: center; }
  .orbit-label { display: none; }
  .process-item { grid-template-columns: 52px 1fr; gap: 17px; }
  .step-number { width: 52px; height: 52px; border-radius: 15px; }
  .process-item::before { left: 25px; top: 52px; }
  .contact-dialog { width: calc(100% - 20px); max-height: calc(100dvh - 20px); border-radius: 18px; }
  .contact-dialog-inner { padding: 28px 20px 22px; }
  .contact-heading { padding-right: 38px; }
  .dialog-close { top: 14px; right: 14px; }
  .form-grid { grid-template-columns: 1fr; gap: 14px; }
  .form-field-wide { grid-column: auto; }
  .form-footer { align-items: stretch; flex-direction: column; }
  .form-submit { width: 100%; }
}

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