:root {
  --navy-950: #020713;
  --navy-900: #06142a;
  --navy-850: #081b37;
  --navy-800: #0b2549;
  --blue-600: #075cff;
  --blue-500: #0b84ff;
  --blue-400: #19c8ff;
  --blue-200: #cceaff;
  --violet: #6d5cff;
  --white: #ffffff;
  --paper: #f6f9ff;
  --paper-2: #eef5ff;
  --ink: #08111f;
  --ink-soft: #536071;
  --muted: #718096;
  --line: rgba(8, 17, 31, .10);
  --line-light: rgba(255,255,255,.16);
  --shadow-soft: 0 28px 80px rgba(8, 17, 31, .12);
  --shadow-blue: 0 30px 110px rgba(11, 132, 255, .24);
  --container: 1180px;
  --radius-xxl: 42px;
  --radius-xl: 30px;
  --radius-lg: 22px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

img,
svg {
  display: block;
  max-width: 100%;
}

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

p {
  margin: 0;
  line-height: 1.68;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Sora", "Inter", sans-serif;
  letter-spacing: -0.055em;
}

.container {
  width: min(var(--container), calc(100% - 42px));
  margin: 0 auto;
}

/* HEADER */

.site-header {
  position: fixed;
  top: 18px;
  left: 0;
  right: 0;
  z-index: 100;
  transition: top .25s ease, transform .25s ease;
}

.nav-shell {
  min-height: 66px;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 10px 12px 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(4, 13, 30, .66);
  backdrop-filter: blur(24px) saturate(140%);
  -webkit-backdrop-filter: blur(24px) saturate(140%);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.10),
    0 22px 70px rgba(0,0,0,.20);
}

.site-header.scrolled .nav-shell {
  background: rgba(4, 13, 30, .86);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
}

.brand-symbol {
  position: relative;
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  background:
    radial-gradient(circle at 28% 20%, rgba(255,255,255,.72), transparent 24%),
    linear-gradient(135deg, var(--blue-400), var(--blue-600) 58%, var(--violet));
  box-shadow:
    0 16px 36px rgba(11,132,255,.35),
    inset 0 1px 0 rgba(255,255,255,.42);
}

.brand-symbol span,
.brand-symbol::before,
.brand-symbol::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  background: rgba(255,255,255,.92);
}

.brand-symbol span {
  width: 16px;
  height: 3px;
}

.brand-symbol::before {
  width: 3px;
  height: 16px;
}

.brand-symbol::after {
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255,255,255,.50);
  background: transparent;
}

.brand-name {
  color: var(--white);
  font-weight: 900;
  letter-spacing: -0.035em;
  font-size: 15px;
}

.brand-logo {
  height: 34px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  margin: 0 auto;
}

.main-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 999px;
  color: rgba(255,255,255,.72);
  font-size: 13px;
  font-weight: 750;
  transition: color .2s ease, background .2s ease;
}

.main-nav a:hover,
.main-nav a.is-active {
  color: var(--white);
  background: rgba(255,255,255,.08);
}

.nav-cta {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 18px 0 20px;
  border-radius: 999px;
  color: var(--navy-900);
  background: linear-gradient(135deg, #ffffff, #dff5ff);
  font-size: 13px;
  font-weight: 900;
  box-shadow: 0 16px 40px rgba(255,255,255,.10);
  transition: transform .22s ease, box-shadow .22s ease;
}

.nav-cta span {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: var(--white);
  background: var(--navy-900);
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 46px rgba(25,200,255,.16);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  margin-left: auto;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  background: rgba(255,255,255,.08);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  border-radius: 999px;
  background: var(--white);
  transition: transform .2s ease;
}

/* HERO */

.hero {
  position: relative;
  padding: 0px;
  background: var(--navy-950);
}

.hero-frame {
  position: relative;
  min-height: 990px;
  overflow: hidden;
  border-radius: 0;
  color: var(--white);
  background:
    radial-gradient(circle at 50% 48%, rgba(25,200,255,.42) 0%, rgba(7,92,255,.28) 28%, rgba(109,92,255,.16) 44%, transparent 62%),
    radial-gradient(circle at 5% 62%, rgba(25,200,255,.34), transparent 33%),
    radial-gradient(circle at 92% 14%, rgba(7,92,255,.28), transparent 30%),
    linear-gradient(180deg, #020713 0%, #06142a 52%, #0b3c89 76%, #ffffff 100%);
}

.hero-visual-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-visual-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(circle at 50% 48%, rgba(0,0,0,.52), transparent 62%);
}

.hero-orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(6px);
}

.hero-orb-a {
  width: 620px;
  height: 620px;
  left: 50%;
  top: 44%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(25,200,255,.28), rgba(7,92,255,.15) 45%, transparent 70%);
}

.hero-orb-b {
  width: 380px;
  height: 380px;
  left: -90px;
  top: 280px;
  background: radial-gradient(circle, rgba(109,92,255,.30), transparent 68%);
}

.hero-orb-c {
  width: 430px;
  height: 430px;
  right: -160px;
  top: 90px;
  background: radial-gradient(circle, rgba(25,200,255,.22), transparent 68%);
}

.hero-columns {
  position: absolute;
  right: -10px;
  bottom: 260px;
  width: 330px;
  height: 420px;
  opacity: .55;
  background:
    linear-gradient(90deg, rgba(255,255,255,.08) 0 1px, transparent 1px 48px),
    linear-gradient(180deg, rgba(255,255,255,.12), rgba(255,255,255,0));
  background-size: 48px 100%, 100% 100%;
  mask-image: linear-gradient(to left, rgba(0,0,0,.8), transparent);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 168px;
}

.hero-copy {
  max-width: 1040px;
  margin: 0 auto;
  text-align: center;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 40px;
  padding: 0 15px;
  margin-bottom: 24px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 999px;
  color: rgba(255,255,255,.80);
  background: rgba(255,255,255,.07);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  font-size: 13px;
  font-weight: 800;
}

.hero-kicker span {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--blue-400);
  box-shadow: 0 0 20px rgba(25,200,255,.9);
}

.hero h1 {
  max-width: 1040px;
  margin: 0 auto;
  font-size: clamp(48px, 7.9vw, 104px);
  line-height: .92;
  font-weight: 700;
  letter-spacing: -0.085em;
}

.hero h1 em {
  display: block;
  margin-top: .06em;
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 700;
  letter-spacing: -0.055em;
  color: #e9f7ff;
  text-shadow: 0 0 40px rgba(25,200,255,.20);
}

.hero-copy p {
  max-width: 780px;
  margin: 26px auto 0;
  color: rgba(242, 249, 255, .78);
  font-size: clamp(16px, 1.45vw, 19px);
}

.hero-copy p strong {
  color: var(--white);
}

.hero-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.btn {
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 23px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 900;
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease, color .22s ease, border .22s ease;
}

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

.btn-primary {
  color: var(--navy-900);
  background: linear-gradient(135deg, #ffffff, #dff6ff);
  box-shadow: 0 22px 55px rgba(25,200,255,.20);
}

.btn-primary span {
  width: 29px;
  height: 29px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: var(--white);
  background: var(--navy-900);
}

.btn-secondary {
  color: var(--white);
  background: rgba(255,255,255,.07);
  border-color: rgba(255,255,255,.16);
}

.btn-secondary:hover {
  background: rgba(255,255,255,.12);
}

.btn-dark-outline {
  margin-top: 32px;
  color: var(--white);
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.16);
}

.hero-showcase {
  position: relative;
  width: min(940px, 100%);
  margin: 58px auto 0;
}

.hero-dashboard {
  position: relative;
  z-index: 2;
  width: 100%;
  filter:
    drop-shadow(0 10px 12px rgba(2, 7, 19, .26))
    drop-shadow(0 5px 12px rgba(2, 7, 19, .18));
}

.floating-chip {
  position: absolute;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 46px;
  padding: 0 15px;
  border-radius: 999px;
  color: var(--navy-900);
  background: rgba(255,255,255,.88);
  border: 1px solid rgba(255,255,255,.62);
  box-shadow: 0 18px 46px rgba(7, 24, 51, .16);
  font-size: 13px;
  font-weight: 900;
}

.chip-icon {
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-500), var(--violet));
}

.chip-left {
  left: -34px;
  top: 38%;
  transform: rotate(-5deg);
}

.chip-right {
  right: -40px;
  top: 20%;
  transform: rotate(5deg);
}

/* Único glass premium */
.glass-spotlight {
  position: absolute;
  z-index: 5;
  right: 38px;
  bottom: 34px;
  width: 258px;
  padding: 18px;
  border: 1px solid rgba(255,255,255,.34);
  border-radius: 26px;
  color: var(--white);
  background:
    linear-gradient(145deg, rgba(255,255,255,.23), rgba(255,255,255,.08)),
    rgba(7, 42, 84, .18);
  backdrop-filter: blur(24px) saturate(150%);
  -webkit-backdrop-filter: blur(24px) saturate(150%);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.35),
    0 8px 14px rgba(2,7,19,.12);
}

.glass-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 26px;
  color: rgba(0,0,0,.76);
  font-size: 12px;
  font-weight: 800;
}

.glass-head i {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--blue-400);
  box-shadow: 0 0 18px rgba(25,200,255,.85);
}

.glass-spotlight strong {
  display: block;
  margin-bottom: 8px;
  font-family: "Sora", sans-serif;
  font-size: 36px;
  letter-spacing: -0.06em;
  color: rgba(0,0,0,.72);
}

.glass-spotlight p {
  color: rgba(0,0,0,.72);
  font-size: 13px;
  line-height: 1.55;
}

.hero-fade {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 260px;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 0%, #ffffff 88%);
}

/* SHARED SECTIONS */

.section-white {
  background: var(--white);
}

.section-soft {
  background: var(--paper);
}

.section-label {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 9px;
  min-height: 35px;
  padding: 0 13px;
  margin-bottom: 18px;
  border-radius: 999px;
  color: #075fba;
  background: rgba(11, 132, 255, .09);
  border: 1px solid rgba(11, 132, 255, .15);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .02em;
}

.section-label::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--blue-500);
  box-shadow: 0 0 14px rgba(11,132,255,.7);
}

.section-label-dark {
  color: #dcf6ff;
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.14);
}

.section-label-dark::before {
  background: var(--blue-400);
}

/* CAPABILITIES STRIP */

.capabilities-strip {
  padding: 36px 0 76px;
}

.strip-inner {
  display: grid;
  grid-template-columns: .65fr 1fr;
  gap: 38px;
  align-items: center;
  padding: 18px 0 0;
}

.strip-inner p {
  color: var(--ink-soft);
  font-weight: 750;
}

.strip-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.strip-items span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #0c3769;
  background: #f4f9ff;
  font-size: 13px;
  font-weight: 850;
}

/* SYSTEM */

.system-section {
  padding: 54px 0 112px;
}

.system-grid {
  display: grid;
  grid-template-columns: .86fr 1fr;
  gap: 70px;
  align-items: center;
}

.system-copy h2,
.section-center h2,
.process-header h2,
.showcase-copy h2,
.about-copy h2,
.final-panel h2 {
  font-size: clamp(36px, 5.2vw, 70px);
  line-height: .98;
  color: var(--ink);
}

.system-copy p {
  margin-top: 20px;
  color: var(--ink-soft);
  font-size: 17px;
}

.system-copy strong {
  color: var(--ink);
}

.system-visual {
  position: relative;
}

.system-visual img {
  width: 100%;
  filter: drop-shadow(0 28px 70px rgba(8,17,31,.12));
}

/* SERVICES */

.services-section {
  padding: 108px 0;
}

.section-center {
  max-width: 820px;
  margin: 0 auto 54px;
  text-align: center;
}

.section-center .section-label {
  margin-left: auto;
  margin-right: auto;
}

.section-center p {
  max-width: 720px;
  margin: 18px auto 0;
  color: var(--ink-soft);
  font-size: 17px;
}

.services-grid {
  display: grid;
  grid-template-columns: 1.12fr .88fr .88fr;
  grid-auto-rows: 1fr;
  gap: 18px;
}

.service-card {
  position: relative;
  min-height: 315px;
  padding: 28px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: rgba(255,255,255,.80);
  box-shadow: 0 18px 55px rgba(8,17,31,.08);
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}

.service-card::after {
  content: "";
  position: absolute;
  right: -50px;
  bottom: -50px;
  width: 150px;
  height: 150px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(11,132,255,.16), transparent 68%);
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(11,132,255,.24);
  box-shadow: 0 28px 76px rgba(8,17,31,.12);
}

.service-card-featured {
  grid-row: span 2;
  color: var(--white);
  background:
    radial-gradient(circle at 85% 15%, rgba(25,200,255,.28), transparent 36%),
    linear-gradient(145deg, var(--navy-900), #030a18);
  border-color: rgba(255,255,255,.12);
  box-shadow: 0 32px 92px rgba(8,17,31,.18);
}

.service-number {
  position: relative;
  z-index: 2;
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  margin-bottom: 76px;
  border-radius: 20px;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-500), var(--violet));
  font-family: "Sora", sans-serif;
  font-weight: 800;
}

.service-card-featured .service-number {
  color: var(--navy-900);
  background: var(--white);
}

.service-card h3,
.service-card p,
.service-card a,
.service-card ul {
  position: relative;
  z-index: 2;
}

.service-card h3 {
  margin-bottom: 14px;
  font-size: 28px;
  line-height: 1.05;
}

.service-card p {
  color: var(--ink-soft);
  font-size: 15px;
}

.service-card-featured p {
  color: rgba(255,255,255,.72);
  font-size: 16px;
}

.service-card ul {
  display: grid;
  gap: 10px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.service-card li {
  color: rgba(255,255,255,.78);
  font-size: 14px;
  font-weight: 750;
}

.service-card li::before {
  content: "•";
  color: var(--blue-400);
  margin-right: 8px;
}

.service-card a {
  display: inline-flex;
  margin-top: 24px;
  color: #075fba;
  font-size: 14px;
  font-weight: 900;
}

.service-card-featured a {
  color: var(--white);
}

/* SHOWCASE */

.showcase-section {
  padding: 28px 0 108px;
  background: var(--paper);
}

.showcase-panel {
  display: grid;
  grid-template-columns: .83fr 1fr;
  gap: 48px;
  align-items: center;
  overflow: hidden;
  padding: 58px;
  border-radius: 46px;
  color: var(--white);
  background:
    radial-gradient(circle at 95% 14%, rgba(25,200,255,.28), transparent 36%),
    radial-gradient(circle at 15% 80%, rgba(109,92,255,.22), transparent 34%),
    linear-gradient(135deg, #020713, #06142a 58%, #08295c);
  box-shadow: var(--shadow-blue);
}

.showcase-copy h2 {
  color: var(--white);
}

.showcase-copy p {
  margin-top: 20px;
  color: rgba(242,249,255,.74);
  font-size: 17px;
}

.showcase-points {
  display: grid;
  gap: 12px;
  margin-top: 30px;
}

.showcase-points div {
  display: grid;
  grid-template-columns: 48px 1fr;
  align-items: center;
  gap: 14px;
  padding: 14px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 20px;
  background: rgba(255,255,255,.055);
}

.showcase-points strong {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  color: var(--navy-900);
  background: var(--white);
  font-family: "Sora", sans-serif;
  font-size: 13px;
}

.showcase-points span {
  color: rgba(255,255,255,.76);
  font-size: 14px;
  font-weight: 750;
}

.showcase-art img {
  width: 100%;
  filter: drop-shadow(0 30px 70px rgba(0,0,0,.28));
}

/* PROCESS */

.process-section {
  padding: 112px 0;
}

.process-header {
  max-width: 780px;
  margin-bottom: 54px;
}

.process-header p {
  max-width: 650px;
  margin-top: 18px;
  color: var(--ink-soft);
  font-size: 17px;
}

.process-track {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.process-card {
  position: relative;
  min-height: 292px;
  padding: 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: linear-gradient(180deg, #ffffff, #f6faff);
}

.process-card::before {
  content: "";
  position: absolute;
  left: 24px;
  right: 24px;
  top: 74px;
  height: 1px;
  background: var(--line);
}

.process-card::after {
  content: "";
  position: absolute;
  right: -44px;
  bottom: -44px;
  width: 124px;
  height: 124px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(11,132,255,.13), transparent 66%);
}

.process-card span {
  position: relative;
  z-index: 2;
  display: inline-flex;
  color: var(--blue-600);
  font-family: "Sora", sans-serif;
  font-size: 18px;
  font-weight: 800;
}

.process-card h3 {
  position: relative;
  z-index: 2;
  margin-top: 86px;
  margin-bottom: 12px;
  font-size: 23px;
}

.process-card p {
  position: relative;
  z-index: 2;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.6;
}

/* ABOUT */

.about-section {
  padding: 0 0 112px;
}

.about-card {
  position: relative;
  display: grid;
  grid-template-columns: 120px 1fr .7fr;
  gap: 40px;
  align-items: center;
  padding: 46px;
  border: 1px solid var(--line);
  border-radius: 42px;
  background:
    radial-gradient(circle at 10% 0%, rgba(11,132,255,.12), transparent 30%),
    #ffffff;
  box-shadow: var(--shadow-soft);
}

.about-badge {
  width: 112px;
  height: 112px;
  padding: 14px;
  border-radius: 34px;
  background: linear-gradient(135deg, #eff8ff, #ffffff);
  border: 1px solid var(--line);
}

.about-copy p {
  margin-top: 16px;
  color: var(--ink-soft);
  font-size: 16.5px;
}

.about-copy strong {
  color: var(--ink);
}

.text-link {
  display: inline-flex;
  margin-top: 22px;
  color: #075fba;
  font-weight: 900;
}

.about-data {
  display: grid;
  gap: 12px;
}

.about-data div {
  padding: 17px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #f7fbff;
}

.about-data span {
  display: block;
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.about-data strong {
  display: block;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.45;
}

/* FINAL CTA */

.final-cta {
  padding: 0 0 112px;
  background: var(--paper);
}

.final-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 40px;
  padding: 58px;
  overflow: hidden;
  border-radius: 46px;
  color: var(--white);
  background:
    radial-gradient(circle at 84% 0%, rgba(25,200,255,.30), transparent 34%),
    linear-gradient(135deg, var(--navy-900), #020713);
  box-shadow: var(--shadow-blue);
}

.final-panel h2 {
  max-width: 760px;
  color: var(--white);
}

.final-panel p {
  max-width: 690px;
  margin-top: 18px;
  color: rgba(242,249,255,.74);
  font-size: 17px;
}

/* FOOTER */

.site-footer {
  padding: 76px 0 30px;
  color: rgba(255,255,255,.72);
  background: #020713;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.2fr .58fr .75fr 1fr;
  gap: 46px;
}

.footer-intro p {
  max-width: 390px;
  margin-top: 20px;
  color: rgba(255,255,255,.58);
  font-size: 14.5px;
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 12px;
}

.footer-column h3 {
  margin-bottom: 8px;
  color: var(--white);
  font-size: 16px;
  letter-spacing: -0.025em;
}

.footer-column a,
.footer-column p {
  color: rgba(255,255,255,.58);
  font-size: 14px;
  line-height: 1.55;
}

.footer-column a:hover {
  color: var(--white);
}

.footer-data strong {
  color: rgba(255,255,255,.86);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 26px;
  margin-top: 58px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.10);
}

.footer-bottom p {
  color: rgba(255,255,255,.44);
  font-size: 13px;
}

/* ANIMATION */

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .72s ease, transform .72s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* RESPONSIVE */

@media (max-width: 1080px) {
  .hero-frame {
    min-height: 930px;
  }

  .system-grid,
  .showcase-panel,
  .about-card {
    grid-template-columns: 1fr;
  }

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

  .service-card-featured {
    grid-row: auto;
  }

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

  .footer-main {
    grid-template-columns: 1fr 1fr;
  }

  .final-panel {
    grid-template-columns: 1fr;
    align-items: start;
  }
}

@media (max-width: 840px) {
  .container {
    width: min(var(--container), calc(100% - 28px));
  }

  .site-header {
    top: 12px;
  }

  .nav-shell {
    min-height: 62px;
  }

  .nav-toggle {
    display: block;
  }

  .main-nav {
    position: fixed;
    top: 84px;
    left: 14px;
    right: 14px;
    display: grid;
    justify-content: stretch;
    gap: 6px;
    padding: 14px;
    border-radius: 28px;
    border: 1px solid rgba(255,255,255,.14);
    background: rgba(4, 13, 30, .94);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    box-shadow: 0 24px 70px rgba(0,0,0,.26);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity .22s ease, visibility .22s ease, transform .22s ease;
  }

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

  .main-nav a {
    justify-content: center;
    min-height: 48px;
  }

  .nav-cta {
    display: none;
  }

  .nav-toggle.is-open span:first-child {
    transform: translateY(3.5px) rotate(45deg);
  }

  .nav-toggle.is-open span:last-child {
    transform: translateY(-3.5px) rotate(-45deg);
  }

  .hero {
    padding: 0;
  }

  .hero-frame {
    min-height: auto;
    border-radius: 0 0 32px 32px;
  }

  .hero-content {
    padding-top: 126px;
    padding-bottom: 92px;
  }

  .hero h1 {
    font-size: clamp(44px, 13vw, 68px);
  }

  .hero-copy p {
    font-size: 15.5px;
  }

  .hero-showcase {
    margin-top: 42px;
  }

  .chip-left,
  .chip-right {
    display: none;
  }

  .glass-spotlight {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    margin-top: 14px;
  }

  .capabilities-strip {
    padding: 30px 0 60px;
  }

  .strip-inner {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .strip-items {
    justify-content: flex-start;
  }

  .system-section,
  .services-section,
  .process-section {
    padding: 78px 0;
  }

  .showcase-section {
    padding: 0 0 78px;
  }

  .showcase-panel,
  .about-card,
  .final-panel {
    padding: 30px;
    border-radius: 32px;
  }

  .system-copy h2,
  .section-center h2,
  .process-header h2,
  .showcase-copy h2,
  .about-copy h2,
  .final-panel h2 {
    font-size: clamp(34px, 10vw, 50px);
  }

  .system-grid {
    gap: 38px;
  }

  .services-grid,
  .process-track {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: auto;
  }

  .service-number {
    margin-bottom: 48px;
  }

  .about-section,
  .final-cta {
    padding-bottom: 78px;
  }

  .about-badge {
    width: 92px;
    height: 92px;
  }

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

  .footer-bottom {
    display: grid;
    gap: 8px;
  }
}

@media (max-width: 520px) {
  .brand-symbol {
    width: 36px;
    height: 36px;
    flex-basis: 36px;
  }

  .brand-name {
    font-size: 14px;
  }

  .hero-actions,
  .btn {
    width: 100%;
  }

  .hero-kicker {
    font-size: 12px;
  }

  .showcase-points div {
    grid-template-columns: 1fr;
  }
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 172px 0 104px;
  color: var(--white);
  background:
    radial-gradient(circle at 50% 22%, rgba(25,200,255,.26), transparent 34%),
    radial-gradient(circle at 12% 72%, rgba(109,92,255,.18), transparent 32%),
    linear-gradient(135deg, var(--navy-950), var(--navy-900) 56%, #08295c);
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.page-hero-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(circle at 50% 30%, rgba(0,0,0,.55), transparent 62%);
}

.page-hero-bg span:first-child {
  position: absolute;
  width: 520px;
  height: 520px;
  left: -160px;
  top: 110px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(25,200,255,.24), transparent 68%);
}

.page-hero-bg span:last-child {
  position: absolute;
  width: 440px;
  height: 440px;
  right: -120px;
  top: 80px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(7,92,255,.28), transparent 68%);
}

.page-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 870px;
  text-align: center;
}

.page-hero-inner .section-label {
  margin-left: auto;
  margin-right: auto;
}

.page-hero h1 {
  color: var(--white);
  font-size: clamp(44px, 7vw, 82px);
  line-height: .96;
}

.page-hero p {
  max-width: 740px;
  margin: 24px auto 0;
  color: rgba(242,249,255,.76);
  font-size: 18px;
}

.contact-section {
  padding: 108px 0;
}

.contact-layout {
  display: grid;
  grid-template-columns: .72fr 1fr;
  gap: 42px;
  align-items: start;
}

.contact-info {
  position: sticky;
  top: 112px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 34px;
  background:
    radial-gradient(circle at 100% 0%, rgba(11,132,255,.13), transparent 30%),
    #ffffff;
  box-shadow: var(--shadow-soft);
}

.contact-info h2 {
  margin-bottom: 16px;
  font-size: clamp(30px, 3vw, 42px);
}

.contact-info > p {
  color: var(--ink-soft);
  font-size: 16px;
}

.contact-data-list {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.contact-data-list div {
  padding: 17px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #f7fbff;
}

.contact-data-list span {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.contact-data-list strong,
.contact-data-list a {
  display: block;
  color: var(--ink);
  font-size: 14.5px;
  line-height: 1.45;
  font-weight: 800;
}

.contact-note {
  margin-top: 18px;
  padding: 20px;
  border-radius: 24px;
  color: var(--white);
  background:
    radial-gradient(circle at 92% 8%, rgba(25,200,255,.24), transparent 34%),
    linear-gradient(135deg, var(--navy-900), var(--navy-950));
}

.contact-note strong {
  display: block;
  margin-bottom: 8px;
  font-family: "Sora", sans-serif;
  letter-spacing: -0.03em;
}

.contact-note p {
  color: rgba(242,249,255,.70);
  font-size: 13.5px;
  line-height: 1.62;
}

.contact-note a {
  display: inline-flex;
  margin-top: 14px;
  color: var(--white);
  font-size: 13px;
  font-weight: 900;
}

.contact-form-card {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 36px;
  background: #ffffff;
  box-shadow: var(--shadow-soft);
}

.form-card-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
}

.form-card-head span {
  display: inline-flex;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.form-card-head h2 {
  font-size: clamp(30px, 3.2vw, 46px);
}

.form-status {
  min-height: 35px;
  align-items: center;
  padding: 0 12px;
  border-radius: 999px;
  color: #075fba !important;
  background: rgba(11,132,255,.09);
  border: 1px solid rgba(11,132,255,.15);
  white-space: nowrap;
}

.form-alert {
  margin-bottom: 20px;
  padding: 16px 18px;
  border-radius: 20px;
  font-size: 14px;
  line-height: 1.55;
}

.form-alert-success {
  color: #064d31;
  background: #e9fff5;
  border: 1px solid rgba(6, 77, 49, .12);
}

.form-alert-error {
  color: #7f1d1d;
  background: #fff0f0;
  border: 1px solid rgba(127, 29, 29, .12);
}

.form-alert ul {
  margin: 8px 0 0;
  padding-left: 18px;
}

.contact-form {
  display: grid;
  gap: 18px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contact-form label {
  display: grid;
  gap: 9px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(8,17,31,.12);
  border-radius: 18px;
  outline: none;
  color: var(--ink);
  background: #f7fbff;
  font-size: 15px;
  font-weight: 650;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.contact-form input,
.contact-form select {
  min-height: 54px;
  padding: 0 16px;
}

.contact-form textarea {
  resize: vertical;
  min-height: 148px;
  padding: 15px 16px;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(11,132,255,.48);
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(11,132,255,.10);
}

.privacy-check {
  grid-template-columns: 20px 1fr;
  align-items: start;
  gap: 11px !important;
  color: var(--ink-soft) !important;
  font-size: 13px !important;
  font-weight: 650 !important;
  line-height: 1.55;
}

.privacy-check input {
  width: 18px;
  min-height: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--blue-600);
}

.privacy-check a {
  color: #075fba;
  font-weight: 900;
}

.form-submit {
  width: fit-content;
  margin-top: 4px;
}

.hp-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

.map-section {
  padding: 0 0 112px;
}

.map-grid {
  display: grid;
  grid-template-columns: .62fr 1fr;
  gap: 36px;
  align-items: center;
}

.map-copy h2 {
  font-size: clamp(34px, 4.4vw, 58px);
  line-height: .98;
}

.map-copy p {
  max-width: 520px;
  margin-top: 18px;
  color: var(--ink-soft);
  font-size: 16.5px;
}

.map-card {
  overflow: hidden;
  min-height: 420px;
  border: 1px solid var(--line);
  border-radius: 36px;
  background: #ffffff;
  box-shadow: var(--shadow-soft);
}

.map-card iframe {
  width: 100%;
  height: 420px;
  display: block;
  border: 0;
}

@media (max-width: 980px) {
  .contact-layout,
  .map-grid {
    grid-template-columns: 1fr;
  }

  .contact-info {
    position: relative;
    top: auto;
  }
}

@media (max-width: 720px) {
  .page-hero {
    padding: 132px 0 76px;
  }

  .page-hero h1 {
    font-size: clamp(38px, 12vw, 58px);
  }

  .page-hero p {
    font-size: 16px;
  }

  .contact-section {
    padding: 76px 0;
  }

  .contact-info,
  .contact-form-card {
    padding: 24px;
    border-radius: 28px;
  }

  .form-card-head {
    display: grid;
  }

  .form-status {
    width: fit-content;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .form-submit {
    width: 100%;
  }

  .map-section {
    padding-bottom: 76px;
  }

  .map-card,
  .map-card iframe {
    min-height: 360px;
    height: 360px;
  }
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 172px 0 104px;
  color: var(--white);
  background:
    radial-gradient(circle at 50% 22%, rgba(25,200,255,.26), transparent 34%),
    radial-gradient(circle at 12% 72%, rgba(109,92,255,.18), transparent 32%),
    linear-gradient(135deg, var(--navy-950), var(--navy-900) 56%, #08295c);
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.page-hero-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(circle at 50% 30%, rgba(0,0,0,.55), transparent 62%);
}

.page-hero-bg span:first-child {
  position: absolute;
  width: 520px;
  height: 520px;
  left: -160px;
  top: 110px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(25,200,255,.24), transparent 68%);
}

.page-hero-bg span:last-child {
  position: absolute;
  width: 440px;
  height: 440px;
  right: -120px;
  top: 80px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(7,92,255,.28), transparent 68%);
}

.page-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 920px;
  text-align: center;
}

.page-hero-inner .section-label {
  margin-left: auto;
  margin-right: auto;
}

.page-hero h1 {
  color: var(--white);
  font-size: clamp(42px, 6.4vw, 78px);
  line-height: .96;
}

.page-hero p {
  max-width: 720px;
  margin: 24px auto 0;
  color: rgba(242,249,255,.76);
  font-size: 18px;
}

/* About intro */

.about-intro-section {
  padding: 108px 0;
}

.about-intro-grid {
  display: grid;
  grid-template-columns: .82fr 1fr;
  gap: 74px;
  align-items: start;
}

.about-intro-copy h2,
.about-system-copy h2,
.principles-section .section-center h2,
.work-method-copy h2,
.values-copy h2,
.company-data-card h2 {
  font-size: clamp(36px, 5.2vw, 68px);
  line-height: .98;
}

.about-intro-text {
  display: grid;
  gap: 18px;
}

.about-intro-text p {
  color: var(--ink-soft);
  font-size: 17px;
}

.about-intro-text strong {
  color: var(--ink);
}

/* System panel */

.about-system-section {
  padding: 0 0 108px;
}

.about-system-panel {
  position: relative;
  display: grid;
  grid-template-columns: .9fr 1fr;
  gap: 44px;
  align-items: center;
  overflow: hidden;
  padding: 58px;
  border-radius: 46px;
  color: var(--white);
  background:
    radial-gradient(circle at 84% 14%, rgba(25,200,255,.30), transparent 34%),
    radial-gradient(circle at 10% 90%, rgba(109,92,255,.20), transparent 34%),
    linear-gradient(135deg, var(--navy-950), var(--navy-900) 58%, #08295c);
  box-shadow: var(--shadow-blue);
}

.about-system-copy h2 {
  color: var(--white);
}

.about-system-copy p {
  max-width: 610px;
  margin-top: 20px;
  color: rgba(242,249,255,.74);
  font-size: 17px;
}

.about-system-visual {
  position: relative;
  min-height: 380px;
}

.about-system-visual::before {
  content: "";
  position: absolute;
  inset: 48px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px;
}

.about-system-visual::after {
  content: "";
  position: absolute;
  inset: 96px;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 999px;
}

.orbit-card {
  position: absolute;
  z-index: 2;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.18);
}

.orbit-card-main {
  left: 50%;
  top: 50%;
  width: min(330px, 84%);
  padding: 26px;
  border-radius: 30px;
  transform: translate(-50%, -50%);
}

.orbit-card-main span {
  display: block;
  margin-bottom: 14px;
  color: rgba(255,255,255,.58);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.orbit-card-main strong {
  display: block;
  color: var(--white);
  font-family: "Sora", sans-serif;
  font-size: 30px;
  line-height: 1.05;
  letter-spacing: -0.055em;
}

.orbit-card-small {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 0 16px;
  border-radius: 999px;
  color: var(--white);
  font-size: 13px;
  font-weight: 900;
}

.orbit-one {
  left: 5%;
  top: 22%;
}

.orbit-two {
  right: 2%;
  top: 34%;
}

.orbit-three {
  left: 22%;
  bottom: 12%;
}

/* Principles */

.principles-section {
  padding: 108px 0;
}

.principles-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.principle-card {
  position: relative;
  min-height: 315px;
  padding: 26px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: #ffffff;
  box-shadow: 0 18px 55px rgba(8,17,31,.08);
}

.principle-card::after {
  content: "";
  position: absolute;
  right: -48px;
  bottom: -48px;
  width: 140px;
  height: 140px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(11,132,255,.13), transparent 68%);
}

.principle-card span {
  position: relative;
  z-index: 2;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin-bottom: 72px;
  border-radius: 19px;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-500), var(--violet));
  font-family: "Sora", sans-serif;
  font-weight: 800;
}

.principle-card h3,
.principle-card p {
  position: relative;
  z-index: 2;
}

.principle-card h3 {
  margin-bottom: 14px;
  font-size: 24px;
  line-height: 1.08;
}

.principle-card p {
  color: var(--ink-soft);
  font-size: 14.5px;
  line-height: 1.62;
}

/* Work method */

.work-method-section {
  padding: 112px 0;
  color: var(--white);
  background:
    radial-gradient(circle at 15% 20%, rgba(25,200,255,.22), transparent 32%),
    radial-gradient(circle at 92% 78%, rgba(109,92,255,.20), transparent 32%),
    linear-gradient(135deg, var(--navy-950), var(--navy-900));
}

.work-method-grid {
  display: grid;
  grid-template-columns: .82fr 1fr;
  gap: 70px;
  align-items: center;
}

.work-method-copy h2 {
  color: var(--white);
}

.work-method-copy p {
  max-width: 560px;
  margin-top: 20px;
  color: rgba(242,249,255,.74);
  font-size: 17px;
}

.work-method-list {
  display: grid;
  gap: 14px;
}

.work-method-list div {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 18px;
  align-items: center;
  padding: 20px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 24px;
  background: rgba(255,255,255,.055);
}

.work-method-list strong {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 17px;
  color: var(--navy-900);
  background: var(--white);
  font-family: "Sora", sans-serif;
  font-size: 13px;
}

.work-method-list span {
  color: rgba(255,255,255,.74);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.55;
}

/* Values */

.values-section {
  padding: 108px 0;
}

.values-grid {
  display: grid;
  grid-template-columns: .78fr 1fr;
  gap: 70px;
  align-items: start;
}

.values-content {
  display: grid;
  gap: 16px;
}

.mission-card {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: #ffffff;
  box-shadow: 0 18px 55px rgba(8,17,31,.07);
}

.mission-card span {
  display: block;
  margin-bottom: 12px;
  color: #075fba;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.mission-card p {
  color: var(--ink-soft);
  font-size: 16px;
}

.value-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 6px;
}

.value-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #0c3769;
  background: #f4f9ff;
  font-size: 13px;
  font-weight: 850;
}

/* Company data */

.company-data-section {
  padding: 0 0 112px;
}

.company-data-card {
  display: grid;
  grid-template-columns: .68fr 1fr;
  gap: 42px;
  align-items: start;
  padding: 46px;
  border: 1px solid var(--line);
  border-radius: 42px;
  background:
    radial-gradient(circle at 100% 0%, rgba(11,132,255,.13), transparent 30%),
    #ffffff;
  box-shadow: var(--shadow-soft);
}

.company-data-card p {
  max-width: 440px;
  margin-top: 16px;
  color: var(--ink-soft);
  font-size: 16.5px;
}

.company-data-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.company-data-list div {
  padding: 17px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #f7fbff;
}

.company-data-list span {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.company-data-list strong,
.company-data-list a {
  display: block;
  color: var(--ink);
  font-size: 14.5px;
  line-height: 1.45;
  font-weight: 800;
}

@media (max-width: 1080px) {
  .about-intro-grid,
  .about-system-panel,
  .work-method-grid,
  .values-grid,
  .company-data-card {
    grid-template-columns: 1fr;
  }

  .principles-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-system-visual {
    min-height: 330px;
  }
}

@media (max-width: 720px) {
  .page-hero {
    padding: 132px 0 76px;
  }

  .page-hero h1 {
    font-size: clamp(38px, 12vw, 58px);
  }

  .page-hero p {
    font-size: 16px;
  }

  .about-intro-section,
  .principles-section,
  .work-method-section,
  .values-section {
    padding: 76px 0;
  }

  .about-system-section,
  .company-data-section {
    padding-bottom: 76px;
  }

  .about-system-panel,
  .company-data-card {
    padding: 30px;
    border-radius: 32px;
  }

  .principles-grid,
  .company-data-list {
    grid-template-columns: 1fr;
  }

  .principle-card {
    min-height: auto;
  }

  .principle-card span {
    margin-bottom: 48px;
  }

  .work-method-list div {
    grid-template-columns: 1fr;
  }

  .orbit-one,
  .orbit-two,
  .orbit-three {
    display: none;
  }
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 172px 0 104px;
  color: var(--white);
  background:
    radial-gradient(circle at 50% 22%, rgba(25,200,255,.26), transparent 34%),
    radial-gradient(circle at 12% 72%, rgba(109,92,255,.18), transparent 32%),
    linear-gradient(135deg, var(--navy-950), var(--navy-900) 56%, #08295c);
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.page-hero-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(circle at 50% 30%, rgba(0,0,0,.55), transparent 62%);
}

.page-hero-bg span:first-child {
  position: absolute;
  width: 520px;
  height: 520px;
  left: -160px;
  top: 110px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(25,200,255,.24), transparent 68%);
}

.page-hero-bg span:last-child {
  position: absolute;
  width: 440px;
  height: 440px;
  right: -120px;
  top: 80px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(7,92,255,.28), transparent 68%);
}

.page-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 920px;
  text-align: center;
}

.page-hero-inner .section-label {
  margin-left: auto;
  margin-right: auto;
}

.page-hero h1 {
  color: var(--white);
  font-size: clamp(42px, 6.4vw, 78px);
  line-height: .96;
}

.page-hero p {
  max-width: 760px;
  margin: 24px auto 0;
  color: rgba(242,249,255,.76);
  font-size: 18px;
}

/* Overview */

.services-overview {
  padding: 108px 0 64px;
}

.services-overview-grid {
  display: grid;
  grid-template-columns: .88fr 1fr;
  gap: 74px;
  align-items: start;
}

.services-overview-copy h2,
.service-detail-heading h2,
.methodology-copy h2,
.services-note-card h2 {
  font-size: clamp(36px, 5.2vw, 68px);
  line-height: .98;
}

.services-overview-text {
  display: grid;
  gap: 18px;
}

.services-overview-text p {
  color: var(--ink-soft);
  font-size: 17px;
}

/* Service detail cards */

.service-detail-section {
  padding: 44px 0;
}

.service-detail-section + .service-detail-section {
  padding-top: 28px;
}

.service-detail-card {
  position: relative;
  overflow: hidden;
  padding: 46px;
  border: 1px solid var(--line);
  border-radius: 42px;
  color: var(--white);
  background:
    radial-gradient(circle at 92% 12%, rgba(25,200,255,.26), transparent 34%),
    radial-gradient(circle at 12% 88%, rgba(109,92,255,.20), transparent 34%),
    linear-gradient(135deg, var(--navy-950), var(--navy-900) 58%, #08295c);
  box-shadow: var(--shadow-blue);
}

.service-detail-card-light {
  color: var(--ink);
  background:
    radial-gradient(circle at 100% 0%, rgba(11,132,255,.12), transparent 30%),
    #ffffff;
  box-shadow: var(--shadow-soft);
}

.service-detail-heading {
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 24px;
  align-items: start;
  margin-bottom: 42px;
}

.service-index {
  width: 70px;
  height: 70px;
  display: grid;
  place-items: center;
  border-radius: 24px;
  color: var(--navy-900);
  background: var(--white);
  font-family: "Sora", sans-serif;
  font-size: 18px;
  font-weight: 800;
}

.service-detail-card-light .service-index {
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-500), var(--violet));
}

.service-detail-card .section-label:not(.section-label-dark) {
  color: #dcf6ff;
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.14);
}

.service-detail-card .section-label:not(.section-label-dark)::before {
  background: var(--blue-400);
}

.service-detail-card-light .section-label {
  color: #075fba;
  background: rgba(11,132,255,.09);
  border-color: rgba(11,132,255,.15);
}

.service-detail-card-light .section-label::before {
  background: var(--blue-500);
}

.service-detail-heading h2 {
  max-width: 870px;
  color: var(--white);
}

.service-detail-card-light .service-detail-heading h2 {
  color: var(--ink);
}

.service-detail-content {
  display: grid;
  grid-template-columns: .82fr 1fr;
  gap: 34px;
  align-items: start;
}

.service-description {
  display: grid;
  gap: 18px;
}

.service-description p {
  color: rgba(242,249,255,.74);
  font-size: 16.5px;
}

.service-detail-card-light .service-description p {
  color: var(--ink-soft);
}

.ideal-box {
  margin-top: 10px;
  padding: 20px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 24px;
  background: rgba(255,255,255,.055);
}

.service-detail-card-light .ideal-box {
  border-color: var(--line);
  background: #f7fbff;
}

.ideal-box strong {
  display: block;
  margin-bottom: 8px;
  color: var(--white);
  font-family: "Sora", sans-serif;
  letter-spacing: -0.03em;
}

.service-detail-card-light .ideal-box strong {
  color: var(--ink);
}

.ideal-box p {
  font-size: 14.5px;
  line-height: 1.62;
}

.service-includes {
  padding: 28px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 30px;
  background: rgba(255,255,255,.07);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.service-detail-card-light .service-includes {
  border-color: var(--line);
  background: #f7fbff;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.service-includes h3 {
  margin-bottom: 18px;
  color: var(--white);
  font-size: 24px;
}

.service-detail-card-light .service-includes h3 {
  color: var(--ink);
}

.service-includes ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-includes li {
  position: relative;
  padding-left: 18px;
  color: rgba(242,249,255,.74);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.45;
}

.service-detail-card-light .service-includes li {
  color: var(--ink-soft);
}

.service-includes li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .58em;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--blue-400);
}

.service-detail-card-light .service-includes li::before {
  background: var(--blue-500);
}

/* Methodology */

.methodology-section {
  padding: 112px 0;
  color: var(--white);
  background:
    radial-gradient(circle at 15% 20%, rgba(25,200,255,.22), transparent 32%),
    radial-gradient(circle at 92% 78%, rgba(109,92,255,.20), transparent 32%),
    linear-gradient(135deg, var(--navy-950), var(--navy-900));
}

.methodology-panel {
  display: grid;
  grid-template-columns: .78fr 1fr;
  gap: 58px;
  align-items: center;
}

.methodology-copy h2 {
  color: var(--white);
}

.methodology-copy p {
  max-width: 560px;
  margin-top: 20px;
  color: rgba(242,249,255,.74);
  font-size: 17px;
}

.methodology-steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.methodology-steps div {
  display: grid;
  grid-template-columns: 52px 1fr;
  align-items: center;
  gap: 16px;
  padding: 18px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 24px;
  background: rgba(255,255,255,.055);
}

.methodology-steps span {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: var(--navy-900);
  background: var(--white);
  font-family: "Sora", sans-serif;
  font-size: 13px;
  font-weight: 800;
}

.methodology-steps strong {
  color: rgba(255,255,255,.78);
  font-size: 14px;
  line-height: 1.4;
}

/* Note */

.services-note-section {
  padding: 108px 0;
}

.services-note-card {
  max-width: 980px;
  padding: 46px;
  border: 1px solid var(--line);
  border-radius: 42px;
  background:
    radial-gradient(circle at 100% 0%, rgba(11,132,255,.12), transparent 30%),
    #ffffff;
  box-shadow: var(--shadow-soft);
}

.services-note-card p {
  max-width: 760px;
  margin-top: 18px;
  color: var(--ink-soft);
  font-size: 17px;
}

@media (max-width: 1080px) {
  .services-overview-grid,
  .service-detail-content,
  .methodology-panel {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 720px) {
  .page-hero {
    padding: 132px 0 76px;
  }

  .page-hero h1 {
    font-size: clamp(38px, 12vw, 58px);
  }

  .page-hero p {
    font-size: 16px;
  }

  .services-overview,
  .methodology-section,
  .services-note-section {
    padding: 76px 0;
  }

  .service-detail-section {
    padding: 24px 0;
  }

  .service-detail-card,
  .services-note-card {
    padding: 30px;
    border-radius: 32px;
  }

  .service-detail-heading {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .service-index {
    width: 62px;
    height: 62px;
    border-radius: 21px;
  }

  .methodology-steps {
    grid-template-columns: 1fr;
  }

  .methodology-steps div {
    grid-template-columns: 1fr;
  }
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 172px 0 104px;
  color: var(--white);
  background:
    radial-gradient(circle at 50% 22%, rgba(25,200,255,.26), transparent 34%),
    radial-gradient(circle at 12% 72%, rgba(109,92,255,.18), transparent 32%),
    linear-gradient(135deg, var(--navy-950), var(--navy-900) 56%, #08295c);
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.page-hero-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(circle at 50% 30%, rgba(0,0,0,.55), transparent 62%);
}

.page-hero-bg span:first-child {
  position: absolute;
  width: 520px;
  height: 520px;
  left: -160px;
  top: 110px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(25,200,255,.24), transparent 68%);
}

.page-hero-bg span:last-child {
  position: absolute;
  width: 440px;
  height: 440px;
  right: -120px;
  top: 80px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(7,92,255,.28), transparent 68%);
}

.page-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 920px;
  text-align: center;
}

.page-hero-inner .section-label {
  margin-left: auto;
  margin-right: auto;
}

.page-hero h1 {
  color: var(--white);
  font-size: clamp(42px, 6.4vw, 78px);
  line-height: .96;
}

.page-hero p {
  max-width: 760px;
  margin: 24px auto 0;
  color: rgba(242,249,255,.76);
  font-size: 18px;
}

.legal-content-section {
  padding: 108px 0;
}

.legal-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 44px;
  align-items: start;
}

.legal-sidebar {
  position: sticky;
  top: 112px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: #ffffff;
  box-shadow: var(--shadow-soft);
}

.legal-sidebar > span {
  display: block;
  margin-bottom: 16px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.legal-sidebar nav {
  display: grid;
  gap: 8px;
}

.legal-sidebar a {
  display: block;
  padding: 10px 12px;
  border-radius: 14px;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 800;
  transition: background .2s ease, color .2s ease;
}

.legal-sidebar a:hover {
  color: #075fba;
  background: rgba(11,132,255,.08);
}

.legal-article {
  padding: 46px;
  border: 1px solid var(--line);
  border-radius: 42px;
  background: #ffffff;
  box-shadow: var(--shadow-soft);
}

.legal-updated {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  padding: 0 14px;
  margin-bottom: 26px;
  border: 1px solid rgba(11,132,255,.15);
  border-radius: 999px;
  color: #075fba;
  background: rgba(11,132,255,.08);
  font-size: 13px;
  font-weight: 900;
}

.legal-lead {
  color: var(--ink) !important;
  font-size: 20px !important;
  font-weight: 750;
  line-height: 1.55 !important;
}

.legal-article p {
  color: var(--ink-soft);
  font-size: 16px;
}

.legal-article p + p {
  margin-top: 16px;
}

.legal-article section {
  scroll-margin-top: 120px;
  margin-top: 42px;
  padding-top: 42px;
  border-top: 1px solid var(--line);
}

.legal-article h2 {
  margin-bottom: 18px;
  color: var(--ink);
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.08;
}

.legal-article ul {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.legal-article li {
  position: relative;
  padding-left: 22px;
  color: var(--ink-soft);
  font-size: 15.5px;
  line-height: 1.6;
}

.legal-article li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .62em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--blue-500);
}

.legal-article a {
  color: #075fba;
  font-weight: 850;
}

.legal-data-box {
  display: grid;
  gap: 10px;
  margin-top: 20px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background:
    radial-gradient(circle at 100% 0%, rgba(11,132,255,.10), transparent 30%),
    #f7fbff;
}

.legal-data-box p {
  margin: 0 !important;
  font-size: 15px;
}

@media (max-width: 980px) {
  .legal-layout {
    grid-template-columns: 1fr;
  }

  .legal-sidebar {
    position: relative;
    top: auto;
  }

  .legal-sidebar nav {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 720px) {
  .page-hero {
    padding: 132px 0 76px;
  }

  .page-hero h1 {
    font-size: clamp(38px, 12vw, 58px);
  }

  .page-hero p {
    font-size: 16px;
  }

  .legal-content-section {
    padding: 76px 0;
  }

  .legal-article {
    padding: 28px;
    border-radius: 30px;
  }

  .legal-sidebar nav {
    grid-template-columns: 1fr;
  }

  .legal-lead {
    font-size: 17px !important;
  }
}

.legal-page .reveal {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
}

.brand-logo {
  display: block;
  height: 34px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
}

.site-footer .brand-logo {
  height: 38px;
  max-width: 240px;
}

@media (max-width: 640px) {
  .brand-logo {
    height: 30px;
    max-width: 180px;
  }

  .site-footer .brand-logo {
    height: 34px;
    max-width: 200px;
  }
}