:root {
  --bg: #05070c;
  --bg-soft: #0b101b;
  --white: #f7f8fb;
  --muted: #a9b0bf;
  --line: rgba(255, 255, 255, 0.1);
  --panel: rgba(255, 255, 255, 0.055);
  --blue: #2997ff;
  --cyan: #58e2ff;
  --purple: #8e6bff;
  --max: 1180px;
  font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "SF Pro Display",
    "Helvetica Neue", "Microsoft YaHei", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--white);
  background: var(--bg);
  letter-spacing: 0.015em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 3px;
}

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

.shell {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 10;
  background: rgba(5, 7, 12, 0.56);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  transition: border-color 180ms ease, background 180ms ease;
}

.site-header.scrolled {
  background: rgba(5, 7, 12, 0.86);
  border-color: var(--line);
}

.nav {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  font-weight: 560;
  letter-spacing: 0.02em;
}

.brand-mark {
  height: 40px;
  width: 40px;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 15px;
  font-weight: 720;
  letter-spacing: -0.04em;
  border-radius: 12px;
  background: linear-gradient(138deg, #80dcff -15%, #2997ff 44%, #193b94);
  box-shadow: 0 12px 30px rgba(41, 151, 255, 0.28);
}

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

.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
  color: #d1d5df;
  font-size: 14px;
}

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

.nav-contact {
  padding: 10px 18px;
  color: #fff;
  border-radius: 22px;
  background: #1676ed;
  transition: background 160ms ease, transform 160ms ease;
}

.nav-contact:hover {
  transform: translateY(-1px);
  background: #2997ff;
}

.nav-toggle {
  display: none;
  border: 0;
  padding: 12px 0 12px 16px;
  background: transparent;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  margin: 6px 0;
  background: #fff;
  transition: transform 180ms ease;
}

.hero {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 138px 0 78px;
  background:
    radial-gradient(circle at 76% 36%, rgba(31, 118, 255, 0.18), transparent 30%),
    radial-gradient(circle at 55% 95%, rgba(89, 226, 255, 0.07), transparent 31%),
    linear-gradient(170deg, #05070c, #070a13 62%, #090f19);
}

.hero::after {
  content: "";
  position: absolute;
  right: -10%;
  bottom: -32%;
  width: 68vw;
  height: 68vw;
  opacity: 0.25;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 72px 72px;
  transform: perspective(700px) rotateX(58deg) rotateZ(-20deg);
  mask-image: radial-gradient(circle, #000 12%, transparent 68%);
}

.hero-aura {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(24px);
}

.hero-aura-one {
  width: 390px;
  height: 390px;
  top: 18%;
  right: 19%;
  background: rgba(41, 151, 255, 0.14);
}

.hero-aura-two {
  width: 240px;
  height: 240px;
  bottom: 12%;
  right: 41%;
  background: rgba(88, 226, 255, 0.09);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.02fr 0.9fr;
  gap: 70px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 20px;
  color: #7aaefc;
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.18em;
}

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

.hero h1 {
  margin: 0;
  max-width: 650px;
  font-size: clamp(46px, 5.1vw, 66px);
  font-weight: 650;
  line-height: 1.3;
  letter-spacing: 0.055em;
  background: linear-gradient(180deg, #fff 20%, #e1e8f3 82%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-text {
  max-width: 515px;
  margin: 30px 0 42px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.85;
}

.hero-actions {
  display: flex;
  gap: 16px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 30px;
  font-size: 16px;
  border-radius: 30px;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

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

.button.primary {
  background: var(--blue);
  box-shadow: 0 15px 32px rgba(41, 151, 255, 0.27);
}

.button.secondary {
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #e7ebf3;
}

.button.secondary:hover {
  border-color: rgba(255, 255, 255, 0.42);
}

.hero-visual {
  min-height: 520px;
  position: relative;
  display: grid;
  place-items: center;
}

.processor-card {
  position: relative;
  width: min(430px, 100%);
  height: 430px;
  border: 1px solid rgba(110, 159, 255, 0.17);
  border-radius: 46px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 36%),
    rgba(9, 13, 23, 0.64);
  box-shadow:
    inset 0 1px 1px rgba(255, 255, 255, 0.12),
    0 40px 100px rgba(0, 0, 0, 0.38);
}

.processor-card::after {
  content: "";
  position: absolute;
  inset: 42px;
  border-radius: 35px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.chip-surface {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  width: 190px;
  height: 190px;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 36px;
  background:
    linear-gradient(145deg, rgba(130, 201, 255, 0.16), transparent 34%),
    linear-gradient(145deg, #fff, #edf3fb);
  border: 1px solid rgba(103, 190, 255, 0.27);
  box-shadow:
    0 22px 65px rgba(5, 130, 255, 0.22),
    inset 0 1px rgba(255, 255, 255, 0.16);
}

.chip-brand {
  font-size: 56px;
  font-weight: 720;
  letter-spacing: -0.11em;
  margin-right: 8px;
  color: #1555a6;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.48);
}

.chip-line {
  width: 50px;
  height: 1px;
  margin: 11px 0 8px;
  background: rgba(16, 54, 105, 0.23);
}

.chip-signature {
  margin-bottom: 5px;
  color: #174988;
  font-family: "Snell Roundhand", "Segoe Script", "Brush Script MT", cursive;
  font-size: 21px;
  font-style: italic;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.03em;
}

.chip-surface p {
  margin: 0;
  color: #465b7a;
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.pulse {
  position: absolute;
  left: 50%;
  top: 50%;
  border: 1px solid rgba(41, 151, 255, 0.22);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.pulse-one {
  width: 290px;
  height: 290px;
}

.pulse-two {
  width: 350px;
  height: 350px;
  border-color: rgba(88, 226, 255, 0.12);
}

.metric {
  position: absolute;
  z-index: 3;
  padding: 13px 17px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 17px;
  background: rgba(14, 20, 33, 0.82);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(12px);
}

.metric-one {
  top: 73px;
  right: -28px;
}

.metric-two {
  bottom: 73px;
  left: -23px;
}

.metric small {
  display: block;
  margin-bottom: 7px;
  color: #778499;
  font-size: 12px;
}

.metric strong {
  font-size: 15px;
  font-weight: 550;
}

.statement {
  padding: 116px 0;
  text-align: center;
  background: #fff;
  color: #101217;
}

.statement p {
  margin: 0 auto;
  font-size: clamp(33px, 4.2vw, 52px);
  font-weight: 650;
  line-height: 1.35;
  letter-spacing: 0.07em;
}

.section {
  padding: 112px 0;
}

.services {
  background: #f5f5f7;
  color: #12151b;
}

.section-heading {
  max-width: 680px;
  margin: 0 0 58px;
}

.section-heading .eyebrow,
.about .eyebrow {
  color: #176adb;
}

.section-heading h2,
.about h2 {
  margin: 0 0 18px;
  font-size: clamp(35px, 4vw, 48px);
  font-weight: 650;
  line-height: 1.22;
  letter-spacing: 0.055em;
}

.section-heading > p:last-child {
  margin: 0;
  color: #687180;
  font-size: 17px;
  line-height: 1.75;
}

.services-layout {
  display: grid;
  grid-template-columns: 330px 1fr;
  gap: 58px;
  align-items: start;
}

.services-intro {
  position: sticky;
  top: 112px;
}

.services-intro .eyebrow {
  color: #176adb;
}

.services-intro h2 {
  margin: 0 0 20px;
  font-size: clamp(34px, 3.1vw, 43px);
  font-weight: 650;
  line-height: 1.3;
  letter-spacing: 0.055em;
}

.services-intro > p:not(.eyebrow) {
  margin: 0;
  color: #687180;
  font-size: 16px;
  line-height: 1.85;
}

.delivery-badge {
  margin-top: 47px;
  padding: 28px 25px;
  color: #fff;
  border-radius: 25px;
  background:
    radial-gradient(circle at 100% 0%, rgba(88, 226, 255, 0.18), transparent 45%),
    #0a152c;
}

.delivery-badge span {
  display: block;
  margin-bottom: 16px;
  color: #80b4ff;
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.16em;
}

.delivery-badge strong {
  display: block;
  margin-bottom: 10px;
  font-size: 21px;
  font-weight: 580;
  letter-spacing: 0.02em;
}

.delivery-badge p {
  margin: 0;
  color: #a9bbd2;
  font-size: 13px;
  line-height: 1.7;
}

.capability-board {
  overflow: hidden;
  border: 1px solid #e2e6ed;
  border-radius: 30px;
  background: #fff;
  box-shadow: 0 20px 55px rgba(18, 29, 48, 0.045);
}

.capability-row {
  display: grid;
  grid-template-columns: 38px 58px 105px 1fr 148px;
  gap: 18px;
  align-items: center;
  padding: 32px 32px;
  border-bottom: 1px solid #e8ebf0;
  transition: background 160ms ease;
}

.capability-art {
  position: relative;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  overflow: hidden;
  border: 1px solid #dfe8f6;
  border-radius: 15px;
  background: #f4f8ff;
}

.capability-art::before,
.capability-art::after,
.capability-art i {
  content: "";
  position: absolute;
  display: block;
}

.art-infra::before {
  width: 23px;
  height: 23px;
  border: 2px solid #2381e8;
  border-radius: 6px;
}

.art-infra::after {
  width: 15px;
  height: 15px;
  background:
    linear-gradient(90deg, #70bcff 2px, transparent 2px, transparent 5px),
    linear-gradient(#70bcff 2px, transparent 2px, transparent 5px);
  background-size: 5px 5px;
}

.art-compute::before {
  width: 28px;
  height: 28px;
  border: 2px solid rgba(35, 129, 232, 0.3);
  border-radius: 50%;
}

.art-compute::after {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #2381e8;
  box-shadow: 0 0 0 5px rgba(35, 129, 232, 0.13);
}

.art-aigc::before {
  width: 3px;
  height: 29px;
  border-radius: 3px;
  background: #2381e8;
  transform: rotate(45deg);
}

.art-aigc::after {
  width: 3px;
  height: 29px;
  border-radius: 3px;
  background: #2381e8;
  transform: rotate(-45deg);
}

.art-video::before {
  width: 28px;
  height: 21px;
  border: 2px solid #2381e8;
  border-radius: 7px;
}

.art-video::after {
  left: 21px;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 9px solid #2381e8;
}

.art-academy::before {
  width: 28px;
  height: 21px;
  border-bottom: 2px solid #2381e8;
  border-left: 2px solid #2381e8;
  border-radius: 2px 2px 5px 5px;
  transform: skewY(-7deg);
}

.art-academy::after {
  top: 14px;
  left: 12px;
  width: 25px;
  height: 17px;
  border-top: 2px solid #2381e8;
  transform: skewY(20deg);
}

.capability-row:last-child {
  border-bottom: 0;
}

.capability-row:hover {
  background: #f7faff;
}

.capability-no {
  align-self: start;
  color: #176adb;
  font-size: 15px;
  font-weight: 630;
  letter-spacing: 0.08em;
}

.capability-domain {
  align-self: start;
  margin: 2px 0 0;
  color: #8691a3;
  font-size: 11px;
  font-weight: 650;
  line-height: 1.5;
  letter-spacing: 0.12em;
}

.capability-copy h3 {
  margin: 0 0 10px;
  font-size: 23px;
  font-weight: 620;
  letter-spacing: 0.06em;
}

.capability-copy p {
  margin: 0;
  color: #637084;
  font-size: 14px;
  line-height: 1.8;
}

.capability-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 7px;
}

.capability-tags span {
  padding: 7px 10px;
  color: #445167;
  font-size: 12px;
  white-space: nowrap;
  border: 1px solid #e3e8f0;
  border-radius: 16px;
  background: #f8fafc;
}

.solutions {
  color: #12151b;
  background:
    radial-gradient(circle at 18% 14%, rgba(41, 151, 255, 0.09), transparent 27%),
    #fff;
}

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

.solution-card {
  position: relative;
  min-height: 300px;
  padding: 30px 26px;
  overflow: hidden;
  border: 1px solid #e6ebf2;
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(246, 249, 254, 0.96)),
    #fff;
  box-shadow: 0 22px 58px rgba(29, 49, 84, 0.06);
}

.solution-card::before {
  content: "";
  position: absolute;
  right: -34px;
  bottom: -38px;
  width: 150px;
  height: 150px;
  border-radius: 42px;
  background:
    linear-gradient(90deg, rgba(41, 151, 255, 0.11) 1px, transparent 1px),
    linear-gradient(rgba(41, 151, 255, 0.11) 1px, transparent 1px);
  background-size: 18px 18px;
  transform: rotate(12deg);
}

.solution-card span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 68px;
  color: #176adb;
  font-size: 13px;
  font-weight: 700;
  border-radius: 14px;
  background: #edf5ff;
}

.solution-card h3 {
  position: relative;
  margin: 0 0 14px;
  font-size: 22px;
  font-weight: 630;
  letter-spacing: 0.05em;
}

.solution-card p {
  position: relative;
  margin: 0;
  color: #687180;
  font-size: 15px;
  line-height: 1.85;
}

.examples {
  color: #f4f7fb;
  background:
    radial-gradient(circle at 23% 26%, rgba(41, 151, 255, 0.16), transparent 27%),
    radial-gradient(circle at 86% 82%, rgba(142, 107, 255, 0.14), transparent 24%),
    #05070c;
}

.examples-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 72px;
  align-items: center;
}

.example-showcase {
  position: relative;
  min-height: 560px;
  padding: 34px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 42px;
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.035)),
    #0a1020;
  box-shadow: 0 35px 95px rgba(0, 0, 0, 0.36);
}

.example-showcase::before {
  content: "";
  position: absolute;
  inset: 82px -120px auto auto;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: rgba(41, 151, 255, 0.16);
  filter: blur(18px);
}

.showcase-top {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: #9fb8db;
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.14em;
}

.showcase-top strong {
  color: #58e2ff;
  font-weight: 680;
}

.showcase-screen {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  min-height: 350px;
  margin: 40px 0 32px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 34px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 34px 34px;
}

.screen-orbit {
  position: absolute;
  width: 250px;
  height: 250px;
  border: 1px solid rgba(88, 226, 255, 0.24);
  border-radius: 50%;
  box-shadow:
    0 0 0 48px rgba(41, 151, 255, 0.045),
    0 0 0 96px rgba(41, 151, 255, 0.025);
}

.screen-card {
  position: relative;
  display: grid;
  place-items: center;
  width: 270px;
  min-height: 170px;
  padding: 26px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 30px;
  background: rgba(5, 7, 12, 0.76);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.screen-card span {
  color: #fff;
  font-size: 46px;
  font-weight: 720;
  letter-spacing: -0.05em;
}

.screen-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
}

.screen-tags i {
  display: inline-flex;
  align-items: center;
  min-height: 25px;
  padding: 0 10px;
  color: #a8b6cc;
  font-size: 10px;
  font-style: normal;
  font-weight: 650;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.055);
}

.showcase-metrics {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.showcase-metrics div {
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.055);
}

.showcase-metrics strong {
  display: block;
  margin-bottom: 8px;
  font-size: 22px;
  font-weight: 620;
}

.showcase-metrics span {
  color: #aeb7c8;
  font-size: 13px;
  line-height: 1.65;
}

.examples-copy .eyebrow {
  color: #7aaefc;
}

.examples-copy h2 {
  margin: 0 0 38px;
  font-size: clamp(35px, 4vw, 52px);
  font-weight: 650;
  line-height: 1.26;
  letter-spacing: 0.065em;
}

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

.example-item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 20px;
  padding: 26px 28px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.055);
}

.example-item > span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: #58e2ff;
  font-size: 13px;
  font-weight: 700;
  border-radius: 14px;
  background: rgba(88, 226, 255, 0.1);
}

.example-item h3 {
  margin: 0 0 10px;
  font-size: 22px;
  font-weight: 620;
  letter-spacing: 0.05em;
}

.example-item p {
  margin: 0;
  color: #aeb7c8;
  font-size: 15px;
  line-height: 1.8;
}

.workflow {
  color: #f4f7fb;
  background:
    radial-gradient(circle at 80% 10%, rgba(88, 226, 255, 0.13), transparent 28%),
    linear-gradient(160deg, #05070c, #0a1121 74%, #07101b);
}

.workflow-panel {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 58px;
  align-items: center;
  padding: 54px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 38px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.035));
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.28);
}

.workflow-copy h2 {
  margin: 0 0 20px;
  font-size: clamp(34px, 3.6vw, 48px);
  font-weight: 650;
  line-height: 1.26;
  letter-spacing: 0.06em;
}

.workflow-copy p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.85;
}

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

.workflow-steps article {
  min-height: 190px;
  padding: 26px 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 26px;
  background: rgba(5, 7, 12, 0.38);
}

.workflow-steps span {
  display: block;
  margin-bottom: 34px;
  color: #58e2ff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.workflow-steps h3 {
  margin: 0 0 10px;
  font-size: 21px;
  font-weight: 620;
  letter-spacing: 0.05em;
}

.workflow-steps p {
  margin: 0;
  color: #aeb7c8;
  font-size: 14px;
  line-height: 1.78;
}

.faq {
  color: #12151b;
  background: #f5f5f7;
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 58px;
  align-items: start;
}

.faq-intro {
  position: sticky;
  top: 112px;
}

.faq-intro .eyebrow {
  color: #176adb;
}

.faq-intro h2 {
  margin: 0 0 18px;
  font-size: clamp(35px, 4vw, 48px);
  font-weight: 650;
  line-height: 1.22;
  letter-spacing: 0.055em;
}

.faq-intro p:last-child {
  margin: 0;
  color: #687180;
  font-size: 16px;
  line-height: 1.82;
}

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

.faq-item {
  padding: 28px 30px;
  border: 1px solid #e3e8f0;
  border-radius: 26px;
  background: #fff;
  box-shadow: 0 18px 48px rgba(18, 29, 48, 0.045);
}

.faq-item h3 {
  margin: 0 0 12px;
  font-size: 20px;
  font-weight: 620;
  letter-spacing: 0.04em;
}

.faq-item p {
  margin: 0;
  color: #687180;
  font-size: 15px;
  line-height: 1.82;
}

.about {
  color: #f3f5f8;
  background:
    radial-gradient(circle at 79% 45%, rgba(41, 151, 255, 0.13), transparent 30%),
    #05070c;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 0.86fr;
  gap: 94px;
  align-items: center;
}

.about-copy > p:last-child {
  margin: 25px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.85;
}

.facts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.fact {
  min-height: 160px;
  padding: 29px;
  border-radius: 25px;
  border: 1px solid var(--line);
  background: var(--panel);
}

.fact.wide {
  grid-column: 1 / -1;
  min-height: 130px;
}

.fact strong {
  display: block;
  margin-bottom: 17px;
  color: #fff;
  font-size: 42px;
  font-weight: 640;
  letter-spacing: -0.06em;
}

.fact span {
  color: #98a2b4;
  font-size: 15px;
}

.connect {
  color: #11151c;
  background: #fff;
}

.section-heading.centered {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.qr-grid {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.qr-card {
  min-height: 409px;
  display: flex;
  flex-direction: column;
  padding: 20px 18px 24px;
  text-align: center;
  border-radius: 32px;
  background: #f5f5f7;
}

.qr-image {
  height: 238px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  overflow: hidden;
  border-radius: 23px;
  background: #fff;
}

.qr-image img {
  width: 194px;
  height: 194px;
  object-fit: contain;
}

.qr-card h3 {
  margin: 0 0 10px;
  font-size: 21px;
  font-weight: 620;
  letter-spacing: -0.04em;
}

.qr-card p {
  min-height: 50px;
  margin: 0 0 12px;
  color: #687180;
  font-size: 15px;
  line-height: 1.65;
}

.qr-detail {
  display: inline-block;
  margin-top: auto;
  color: #176adb;
  font-size: 13px;
}

.qr-detail:hover {
  text-decoration: underline;
}

.contact {
  padding-top: 24px;
  color: #11151c;
  background: #fff;
}

.contact-panel {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 48px;
  align-items: center;
  padding: 67px 72px;
  border-radius: 38px;
  color: #fff;
  background:
    radial-gradient(circle at 100% 0, rgba(90, 201, 255, 0.32), transparent 35%),
    linear-gradient(135deg, #08142c, #061022 58%, #0b254c);
}

.contact-panel h2 {
  max-width: 580px;
  margin: 0;
  font-size: clamp(31px, 3.5vw, 43px);
  line-height: 1.38;
  letter-spacing: 0.075em;
}

.contact-details {
  padding-left: 48px;
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.contact-phone {
  display: inline-block;
  margin-bottom: 20px;
  color: #fff;
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 570;
  letter-spacing: -0.03em;
}

.contact-details p {
  margin: 0;
  color: #b9c5d6;
  font-size: 15px;
  line-height: 1.75;
}

.footer {
  padding: 44px 0;
  color: #737d8d;
  background: #fff;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-top: 25px;
  border-top: 1px solid #e6e8ec;
  font-size: 13px;
}

.footer-inner p {
  margin: 0;
}

.footer-inner a:hover {
  color: #11151c;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 22px;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 620ms ease, transform 620ms cubic-bezier(0.22, 0.61, 0.36, 1);
}

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

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

  .hero-grid {
    gap: 40px;
  }

  .hero-visual {
    min-height: 448px;
  }

  .services-layout {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .services-intro {
    position: static;
  }

  .delivery-badge {
    max-width: 390px;
  }

  .solution-grid,
  .examples-grid,
  .workflow-panel,
  .faq-grid {
    grid-template-columns: 1fr;
  }

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

  .workflow-panel {
    gap: 38px;
  }

  .example-showcase {
    min-height: 500px;
  }

  .faq-intro {
    position: static;
  }

  .about-grid {
    gap: 54px;
  }

  .contact-panel {
    padding: 55px 48px;
  }

  .contact-details {
    padding: 0;
    border: 0;
  }
}

@media (max-width: 720px) {
  body.nav-open {
    overflow: hidden;
  }

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

  .nav {
    min-height: 62px;
  }

  .nav-toggle {
    display: block;
    cursor: pointer;
  }

  .nav-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(3.75px) rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-3.75px) rotate(-45deg);
  }

  .nav-links {
    position: fixed;
    top: 62px;
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    min-height: calc(100vh - 62px);
    padding: 10px 18px 22px;
    background: var(--bg);
    border-bottom: 1px solid var(--line);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    padding: 15px 4px;
  }

  .nav-contact {
    width: 100%;
    margin-top: 8px;
    padding: 13px 18px !important;
    text-align: center;
  }

  .hero {
    min-height: initial;
    padding: 117px 0 70px;
  }

  .hero .eyebrow {
    overflow-wrap: anywhere;
    letter-spacing: 0.14em;
  }

  .hero h1 {
    font-size: clamp(34px, 10.1vw, 40px);
    line-height: 1.32;
    letter-spacing: 0.035em;
  }

  .hero-text {
    margin: 24px 0 35px;
    font-size: 16px;
  }

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

  .hero-visual {
    min-height: 358px;
  }

  .processor-card {
    width: 320px;
    height: 320px;
    border-radius: 34px;
  }

  .processor-card::after {
    inset: 33px;
  }

  .chip-surface {
    width: 145px;
    height: 145px;
    border-radius: 27px;
  }

  .chip-brand {
    font-size: 45px;
  }

  .chip-signature {
    font-size: 17px;
  }

  .pulse-one {
    width: 214px;
    height: 214px;
  }

  .pulse-two {
    width: 262px;
    height: 262px;
  }

  .metric {
    padding: 10px 13px;
  }

  .metric-one {
    top: 49px;
    right: -9px;
  }

  .metric-two {
    left: -8px;
    bottom: 50px;
  }

  .statement,
  .section {
    padding: 76px 0;
  }

  .section-heading {
    margin-bottom: 38px;
  }

  .qr-grid {
    display: block;
  }

  .qr-card {
    min-height: auto;
    margin-bottom: 15px;
  }

  .services-layout {
    gap: 33px;
  }

  .delivery-badge {
    margin-top: 34px;
  }

  .capability-board {
    border-radius: 24px;
  }

  .capability-row {
    display: block;
    padding: 25px 23px;
  }

  .capability-no {
    display: inline-block;
    vertical-align: middle;
    margin-right: 10px;
    margin-bottom: 19px;
  }

  .capability-art {
    display: inline-grid;
    vertical-align: middle;
    margin-right: 11px;
    margin-bottom: 19px;
  }

  .capability-domain {
    display: inline-block;
    vertical-align: middle;
    margin-bottom: 19px;
  }

  .capability-copy h3 {
    margin-bottom: 9px;
  }

  .capability-tags {
    justify-content: flex-start;
    margin-top: 17px;
  }

  .solution-grid,
  .workflow-steps {
    grid-template-columns: 1fr;
  }

  .examples-grid {
    gap: 36px;
  }

  .example-showcase {
    min-height: auto;
    padding: 24px;
    border-radius: 29px;
  }

  .showcase-top {
    display: block;
  }

  .showcase-top strong {
    display: block;
    margin-top: 8px;
  }

  .showcase-screen {
    min-height: 290px;
    margin: 30px 0 22px;
    border-radius: 25px;
  }

  .screen-orbit {
    width: 190px;
    height: 190px;
    box-shadow:
      0 0 0 36px rgba(41, 151, 255, 0.045),
      0 0 0 72px rgba(41, 151, 255, 0.025);
  }

  .screen-card {
    width: 218px;
    min-height: 146px;
    border-radius: 24px;
  }

  .screen-card span {
    font-size: 39px;
  }

  .screen-tags {
    gap: 6px;
    margin-top: 14px;
  }

  .screen-tags i {
    min-height: 23px;
    padding: 0 8px;
    font-size: 9px;
  }

  .showcase-metrics,
  .example-item {
    grid-template-columns: 1fr;
  }

  .example-item {
    padding: 24px 22px;
    gap: 17px;
  }

  .solution-card {
    min-height: auto;
    padding: 26px 23px;
    border-radius: 25px;
  }

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

  .workflow-panel {
    padding: 34px 24px;
    border-radius: 29px;
  }

  .workflow-steps article {
    min-height: auto;
    padding: 24px 22px;
  }

  .workflow-steps span {
    margin-bottom: 24px;
  }

  .faq-grid {
    gap: 34px;
  }

  .faq-item {
    padding: 24px 22px;
    border-radius: 22px;
  }

  .facts {
    display: block;
  }

  .fact {
    min-height: auto;
    margin-bottom: 13px;
  }

  .qr-card {
    padding: 22px 22px 28px;
  }

  .qr-image {
    height: 268px;
  }

  .contact {
    padding-top: 0;
  }

  .contact-panel {
    gap: 37px;
    padding: 43px 28px;
    border-radius: 29px;
  }

  .footer {
    padding: 36px 0;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
}

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