:root {
  --brand: #0052D9;
  --brand-hover: #266FE8;
  --brand-active: #003CAB;
  --cyan: #00A3C4;
  --green: #10B981;
  --orange: #F59E0B;
  --coral: #FF6B6B;
  --mint: #2DD4BF;
  --amber: #FBBF24;
  --purple: #8B5CF6;
  --ink: #172033;
  --muted: #5F6C7B;
  --line: #DDE5F2;
  --page: #F6F8FB;
  --soft-blue: #F2F6FF;
  --card: #FFFFFF;
  --panel: #071B3A;
  --panel-soft: #0D2A56;
  --container-max: 1520px;
  --container-pad: clamp(20px, 4.8vw, 72px);
  --shadow: 0 24px 70px rgba(20, 45, 85, 0.14);
  --shadow-soft: 0 12px 34px rgba(20, 45, 85, 0.1);
  --radius: 10px;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 18% 8%, rgba(0, 82, 217, 0.14), transparent 30vw),
    radial-gradient(circle at 88% 0%, rgba(0, 163, 196, 0.16), transparent 34vw),
    linear-gradient(180deg, #FFFFFF 0, var(--page) 540px, #FFFFFF 100%);
  letter-spacing: 0;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

img {
  display: block;
  max-width: 100%;
}

.section-shell,
.site-header,
.site-footer {
  width: min(var(--container-max), calc(100% - (var(--container-pad) * 2)));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 24px;
  width: 100%;
  max-width: none;
  height: 74px;
  margin-top: 0;
  padding: 0 var(--container-pad);
  border: 0;
  border-bottom: 1px solid rgba(221, 229, 242, 0.38);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.54);
  -webkit-backdrop-filter: blur(14px) saturate(1.08);
  backdrop-filter: blur(14px) saturate(1.08);
  transition: box-shadow 0.22s ease, border-color 0.22s ease, background 0.22s ease, backdrop-filter 0.22s ease;
}

.site-header.is-scrolled {
  border-color: rgba(0, 82, 217, 0.16);
  background: rgba(255, 255, 255, 0.72);
  -webkit-backdrop-filter: blur(24px) saturate(1.28);
  backdrop-filter: blur(24px) saturate(1.28);
  box-shadow: 0 14px 36px rgba(20, 45, 85, 0.1);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 150px;
}

.brand-mark {
  position: relative;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 9px;
  color: #FFFFFF;
  font-weight: 800;
  background: #FFFFFF;
  box-shadow: 0 10px 26px rgba(0, 82, 217, 0.26);
}

.brand-mark img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.brand-mark::after {
  content: "";
  position: absolute;
  inset: -5px;
  border: 1px solid rgba(0, 82, 217, 0.22);
  border-radius: 12px;
  animation: markPulse 2.8s ease-in-out infinite;
}

.brand-text {
  display: grid;
  gap: 1px;
}

.brand-text strong {
  font-size: 18px;
}

.brand-text small {
  color: var(--muted);
  font-size: 11px;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2.4vw, 34px);
  flex: 1;
  max-width: 720px;
  margin-inline: auto;
  padding: 0;
  border: 0;
  background: transparent;
}

.site-nav a {
  position: relative;
  padding: 25px 0 22px;
  color: var(--muted);
  font-size: 16px;
  font-weight: 800;
  transition: color 0.18s ease;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--brand);
  opacity: 0;
  transform: scaleX(0.35);
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--brand);
}

.site-nav a:hover::after,
.site-nav a.active::after {
  opacity: 1;
  transform: scaleX(1);
}

.header-cta,
.btn {
  display: inline-flex;
  position: relative;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border: 0;
  border-radius: 7px;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
  overflow: hidden;
  white-space: nowrap;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.header-cta,
.btn-primary {
  color: #FFFFFF;
  background: var(--brand);
  box-shadow: 0 14px 32px rgba(0, 82, 217, 0.24);
}

.header-cta::after,
.btn-primary::after {
  content: "";
  position: absolute;
  top: -80%;
  left: -40%;
  width: 36px;
  height: 240%;
  background: rgba(255, 255, 255, 0.34);
  transform: rotate(18deg) translateX(-70px);
  animation: buttonSheen 4.1s ease-in-out infinite;
}

.header-cta:hover,
.btn:hover {
  transform: translateY(-1px);
}

.header-login {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 17px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 9px;
  color: #FFFFFF;
  font-size: 15px;
  font-weight: 800;
  white-space: nowrap;
  background: linear-gradient(135deg, #172033 0%, #0D2A56 100%);
  box-shadow: 0 14px 30px rgba(7, 27, 58, 0.2);
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.header-login span {
  font-size: 16px;
  line-height: 1;
  transition: transform 0.18s ease;
}

.header-login:hover {
  color: #FFFFFF;
  background: linear-gradient(135deg, #0D2A56 0%, #0052D9 100%);
  box-shadow: 0 16px 34px rgba(7, 27, 58, 0.28);
  transform: translateY(-1px);
}

.header-login:hover span {
  transform: translate(2px, -2px);
}

.btn-ghost {
  border: 1px solid rgba(0, 82, 217, 0.18);
  color: var(--brand);
  background: rgba(255, 255, 255, 0.82);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #FFFFFF;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 2px;
  background: var(--ink);
  transition: transform 0.18s ease, opacity 0.18s ease;
}

h1,
h2,
h3,
p {
  margin: 0;
}

h1 {
  margin-top: 18px;
  font-size: clamp(42px, 4.4vw, 76px);
  line-height: 1.08;
  letter-spacing: 0;
}

h2 {
  font-size: clamp(28px, 2.4vw, 44px);
  line-height: 1.2;
}

h3 {
  font-size: 20px;
  line-height: 1.35;
}

.hero-lead,
.page-hero p,
.feature-copy p,
.tech-flow p,
.contact-copy p,
.pricing-notes p,
.section-heading p,
.process-card p,
.feature-card p,
.faq-item p,
.price-card p,
.site-footer p {
  color: var(--muted);
  line-height: 1.8;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--brand);
  font-size: clamp(15px, 1vw, 16px);
  font-weight: 800;
  line-height: 1.35;
}

.eyebrow::before,
.section-kicker::before {
  content: "";
  width: 26px;
  height: 2px;
  background: linear-gradient(90deg, var(--brand), var(--cyan));
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(420px, 0.88fr) minmax(560px, 1.12fr);
  gap: clamp(34px, 5vw, 82px);
  align-items: center;
  min-height: clamp(660px, 76vh, 820px);
  padding: clamp(72px, 8vw, 120px) 0 72px;
}

.hero-grid {
  position: absolute;
  inset: 24px calc(var(--container-pad) * -0.62) 0;
  z-index: -2;
  border-radius: 18px;
  overflow: hidden;
}

.hero-grid::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(0, 82, 217, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 82, 217, 0.08) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: linear-gradient(180deg, black 0%, transparent 92%);
  animation: gridDrift 22s linear infinite;
}

.hero-grid::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, transparent 14%, rgba(0, 82, 217, 0.13) 31%, transparent 48%),
    linear-gradient(80deg, transparent 55%, rgba(0, 163, 196, 0.12) 72%, transparent 88%);
  animation: beamShift 7s ease-in-out infinite alternate;
}

.hero-aurora {
  position: absolute;
  inset: 12% 24% auto auto;
  z-index: -1;
  width: 34vw;
  height: 34vw;
  border-radius: 999px;
  background:
    radial-gradient(circle, rgba(0, 82, 217, 0.18), transparent 58%),
    radial-gradient(circle at 70% 28%, rgba(0, 163, 196, 0.18), transparent 38%);
  filter: blur(18px);
  animation: auroraFloat 8s ease-in-out infinite alternate;
}

.hero-copy {
  align-self: center;
}

.hero-lead {
  max-width: 690px;
  margin-top: 24px;
  font-size: clamp(16px, 1.18vw, 20px);
}

.section-heading p,
.feature-copy p,
.page-hero p,
.tech-flow p,
.contact-copy p {
  font-size: clamp(16px, 1.05vw, 18px);
}

.feature-card p,
.faq-item p,
.price-card p,
.pricing-notes p,
.about-grid article > span:not(.mini-icon),
.story-points p,
.site-footer p {
  font-size: 15.5px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.hero-points span {
  position: relative;
  padding: 9px 13px;
  border: 1px solid rgba(0, 82, 217, 0.16);
  border-radius: 7px;
  color: #2A3A52;
  font-size: 15px;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 10px 24px rgba(0, 82, 217, 0.07);
}

.hero-points span::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 7px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 0 5px rgba(0, 163, 196, 0.12);
}

.hero-points,
.proof-strip,
.process-grid {
  scrollbar-width: none;
}

.hero-points::-webkit-scrollbar,
.proof-strip::-webkit-scrollbar,
.process-grid::-webkit-scrollbar {
  display: none;
}

.hero-showcase {
  position: relative;
  padding: 14px;
  border: 1px solid rgba(0, 82, 217, 0.2);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.8), rgba(242, 246, 255, 0.58)),
    linear-gradient(135deg, rgba(0, 82, 217, 0.12), transparent);
  box-shadow: 0 32px 90px rgba(0, 82, 217, 0.2);
  transform-style: preserve-3d;
  overflow: hidden;
}

.showcase-radar {
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: 26px;
  background:
    conic-gradient(from 90deg, transparent, rgba(0, 82, 217, 0.12), transparent 42%),
    radial-gradient(circle, rgba(0, 163, 196, 0.12), transparent 68%);
  animation: radarSpin 12s linear infinite;
}

.hero-swiper {
  position: relative;
  z-index: 1;
  min-height: clamp(360px, 34vw, 560px);
  border-radius: 14px;
  overflow: hidden;
  background: #FFFFFF;
}

.swiper-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.035);
  transition: opacity 0.7s ease, transform 1.2s ease;
}

.swiper-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.swiper-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.88) 0%, rgba(255, 255, 255, 0.42) 28%, rgba(255, 255, 255, 0) 58%),
    linear-gradient(180deg, rgba(7, 27, 58, 0) 55%, rgba(7, 27, 58, 0.32) 100%);
}

.slide-caption {
  position: absolute;
  left: 28px;
  bottom: 28px;
  z-index: 2;
  display: grid;
  gap: 8px;
  max-width: 360px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.76);
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 42px rgba(0, 82, 217, 0.14);
}

.slide-caption span {
  color: var(--brand);
  font-weight: 800;
}

.slide-caption strong {
  font-size: clamp(18px, 1.5vw, 24px);
}

.swiper-progress {
  position: absolute;
  left: 28px;
  right: 120px;
  bottom: 16px;
  z-index: 4;
  height: 3px;
  border-radius: 999px;
  background: rgba(0, 82, 217, 0.15);
  overflow: hidden;
}

.swiper-progress span {
  display: block;
  width: 0%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--brand), var(--cyan));
}

.swiper-dots {
  position: absolute;
  right: 24px;
  bottom: 10px;
  z-index: 4;
  display: flex;
  gap: 8px;
}

.swiper-dots button {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  background: rgba(0, 82, 217, 0.24);
  transition: width 0.22s ease, background 0.22s ease;
}

.swiper-dots button.is-active {
  width: 26px;
  background: var(--brand);
}

.floating-metrics {
  position: absolute;
  right: -20px;
  top: 10%;
  display: grid;
  gap: 12px;
  z-index: 4;
}

.floating-metrics div {
  width: 150px;
  padding: 14px;
  border: 1px solid rgba(0, 82, 217, 0.16);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow-soft);
  animation: floatCard 5s ease-in-out infinite;
}

.floating-metrics div:nth-child(2) {
  animation-delay: -1.2s;
}

.floating-metrics div:nth-child(3) {
  animation-delay: -2.4s;
}

.floating-metrics small {
  color: var(--muted);
}

.floating-metrics strong {
  display: block;
  margin-top: 6px;
  color: var(--brand);
  font-size: 24px;
}

.floating-metrics div:nth-child(2) strong::before {
  content: "¥";
  margin-right: 2px;
  color: var(--cyan);
  font-size: 16px;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 12px;
}

.proof-strip div {
  position: relative;
  display: grid;
  align-content: start;
  gap: 9px;
  min-height: 142px;
  padding: 22px;
  border: 1px solid rgba(0, 82, 217, 0.14);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(242, 246, 255, 0.86));
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.proof-strip div::after {
  content: "";
  position: absolute;
  inset: auto -20% -60% auto;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(0, 82, 217, 0.09);
}

.proof-strip .mini-icon {
  margin-bottom: 3px;
}

.proof-strip div > span:not(.mini-icon) {
  color: var(--brand);
  font-size: 15px;
  font-weight: 800;
}

.proof-strip strong {
  color: #0A234B;
  font-size: 20px;
  line-height: 1.35;
}

.section-panel {
  margin-top: 96px;
}

.section-heading {
  max-width: 900px;
  margin-bottom: 30px;
}

.section-heading h2 {
  margin-top: 12px;
}

.section-heading p {
  margin-top: 14px;
  max-width: 760px;
}

.process-grid,
.feature-matrix,
.faq-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.process-card,
.feature-card,
.faq-item,
.pricing-notes article,
.contact-form,
.fit-list > div {
  position: relative;
  border: 1px solid rgba(221, 229, 242, 0.95);
  border-radius: var(--radius);
  background: var(--card);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.process-card::before,
.feature-card::before,
.faq-item::before,
.pricing-notes article::before,
.fit-list > div::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 2px;
  background: linear-gradient(90deg, var(--brand), var(--cyan), var(--green));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}

.process-card:hover::before,
.feature-card:hover::before,
.faq-item:hover::before,
.pricing-notes article:hover::before,
.fit-list > div:hover::before {
  transform: scaleX(1);
}

.process-card {
  min-height: 210px;
  padding: 26px;
}

.process-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.process-step {
  color: var(--brand);
  font-size: 15px;
  font-weight: 900;
}

.process-card h3,
.feature-card h2,
.faq-item h2 {
  margin: 12px 0 10px;
}

.process-card h3 {
  font-size: 22px;
}

.process-card p {
  font-size: 15.5px;
}

.split-section {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: clamp(34px, 5vw, 72px);
  align-items: center;
  padding: 118px 0;
}

.immersive-section {
  position: relative;
}

.feature-copy h2 {
  margin: 12px 0 16px;
}

.text-link {
  display: inline-flex;
  margin-top: 22px;
  color: var(--brand);
  font-weight: 800;
}

.mobile-preview {
  position: relative;
  min-height: 520px;
  border-radius: 22px;
  background:
    radial-gradient(circle at 50% 50%, rgba(0, 82, 217, 0.18), transparent 36%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.88), rgba(242, 246, 255, 0.72));
  overflow: hidden;
}

.mobile-preview::before {
  content: "";
  position: absolute;
  inset: 22px;
  border-radius: 18px;
  border: 1px solid rgba(0, 82, 217, 0.12);
  background:
    linear-gradient(rgba(0, 82, 217, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 82, 217, 0.06) 1px, transparent 1px);
  background-size: 28px 28px;
  animation: gridDrift 18s linear infinite;
}

.phone-frame {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(280px, 50vw);
  min-height: 430px;
  padding: 14px;
  border: 8px solid #10264D;
  border-radius: 34px;
  background: #FFFFFF;
  box-shadow: 0 28px 70px rgba(0, 82, 217, 0.22);
  transform: translate(-50%, -50%);
}

.phone-top {
  width: 78px;
  height: 6px;
  margin: 2px auto 18px;
  border-radius: 999px;
  background: #D9E3F5;
}

.phone-screen {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
  padding: 16px;
  border-radius: 22px;
  background: linear-gradient(180deg, var(--soft-blue), #FFFFFF);
}

.phone-screen strong {
  font-size: 20px;
}

.phone-stat,
.phone-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 52px;
  padding: 12px;
  border-radius: 12px;
  background: #FFFFFF;
  box-shadow: 0 8px 20px rgba(0, 82, 217, 0.08);
}

.phone-stat span {
  color: var(--muted);
}

.phone-stat b {
  color: var(--brand);
  font-size: 24px;
}

.phone-card.active {
  color: #FFFFFF;
  background: var(--brand);
}

.orbit-card {
  position: absolute;
  z-index: 2;
  padding: 12px 14px;
  border: 1px solid rgba(0, 82, 217, 0.14);
  border-radius: 12px;
  color: var(--brand);
  font-weight: 800;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow-soft);
  animation: orbitFloat 5.5s ease-in-out infinite;
}

.orbit-card.one {
  left: 12%;
  top: 26%;
}

.orbit-card.two {
  right: 10%;
  top: 34%;
  animation-delay: -1.4s;
}

.orbit-card.three {
  left: 18%;
  bottom: 18%;
  animation-delay: -2.8s;
}

.page-hero {
  position: relative;
  padding: clamp(46px, 5.8vw, 86px) 0 0;
}

.page-hero h1 {
  max-width: 980px;
  color: #0A234B;
}

.page-hero p {
  max-width: 760px;
  margin-top: 18px;
  font-size: 17px;
}

.page-hero-rich {
  position: relative;
  display: grid;
  grid-template-columns: minmax(420px, 0.9fr) minmax(480px, 1.1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  min-height: clamp(480px, 40vw, 610px);
  margin-top: clamp(38px, 4.2vw, 64px);
  padding: clamp(52px, 5.6vw, 86px) 0 clamp(48px, 4.8vw, 76px);
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  isolation: isolate;
  overflow: visible;
}

.page-hero-rich::before {
  content: "";
  position: absolute;
  inset: -38px calc(var(--container-pad) * -0.72) -62px;
  z-index: -2;
  border-radius: 0;
  background:
    linear-gradient(rgba(0, 82, 217, 0.065) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 82, 217, 0.065) 1px, transparent 1px),
    radial-gradient(circle at 76% 20%, rgba(0, 82, 217, 0.15), transparent 36%),
    radial-gradient(circle at 12% 92%, rgba(0, 163, 196, 0.13), transparent 36%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.28), rgba(242, 247, 255, 0.58) 52%, rgba(255, 255, 255, 0));
  background-size: 34px 34px, 34px 34px, auto, auto, auto;
  mask-image: linear-gradient(180deg, transparent 0%, black 10%, black 72%, transparent 100%);
  pointer-events: none;
}

.page-hero-rich::after {
  content: "";
  position: absolute;
  inset: -20px calc(var(--container-pad) * -0.45) -38px;
  z-index: -1;
  border-radius: 0;
  background:
    linear-gradient(115deg, transparent 0 36%, rgba(0, 82, 217, 0.08) 42%, transparent 48% 100%),
    linear-gradient(78deg, transparent 54%, rgba(0, 163, 196, 0.08) 68%, transparent 82%);
  animation: beamShift 8s ease-in-out infinite alternate;
  pointer-events: none;
}

.page-hero-rich > * {
  position: relative;
  z-index: 1;
}

.page-hero-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: clamp(320px, 28vw, 460px);
  border: 0;
  border-radius: 0;
  overflow: visible;
  background: transparent;
  box-shadow: none;
  isolation: isolate;
}

.page-hero-visual::before {
  content: "";
  position: absolute;
  inset: 8% -4% 2% 10%;
  z-index: -1;
  border-radius: 999px;
  background:
    radial-gradient(circle at 58% 40%, rgba(0, 82, 217, 0.18), transparent 54%),
    radial-gradient(circle at 78% 62%, rgba(0, 163, 196, 0.14), transparent 44%);
  filter: blur(12px);
  opacity: 0.95;
  pointer-events: none;
}

.page-hero-visual::after {
  content: "";
  position: absolute;
  inset: 10px;
  z-index: 2;
  border-radius: 22px;
  background: linear-gradient(108deg, transparent 38%, rgba(255, 255, 255, 0.34) 48%, transparent 58%);
  transform: translateX(-22%);
  animation: scanSheen 4.8s ease-in-out infinite;
  pointer-events: none;
}

.page-hero-visual img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  position: relative;
  z-index: 1;
  border-radius: 24px;
  object-fit: cover;
  filter: saturate(1.12) contrast(1.06);
  box-shadow: 0 34px 86px rgba(0, 82, 217, 0.18), 0 10px 28px rgba(20, 45, 85, 0.08);
}

.page-visual-card {
  position: absolute;
  z-index: 2;
  max-width: 260px;
  padding: 14px 16px;
  border: 1px solid rgba(0, 82, 217, 0.16);
  border-radius: 12px;
  color: var(--brand);
  font-weight: 900;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 46px rgba(0, 82, 217, 0.18);
  animation: floatCard 5.2s ease-in-out infinite;
}

.page-visual-card.top {
  top: 24px;
  left: 24px;
}

.page-visual-card.bottom {
  right: 24px;
  bottom: 24px;
  color: #12315F;
  animation-delay: -2s;
}

.feature-matrix {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: clamp(88px, 7vw, 118px);
}

main > .page-hero-rich + .section-shell {
  margin-top: clamp(88px, 7vw, 118px);
}

.feature-card {
  min-height: 284px;
  padding: 30px;
  background:
    radial-gradient(circle at 92% 12%, rgba(0, 82, 217, 0.1), transparent 28%),
    linear-gradient(135deg, #FFFFFF, rgba(242, 246, 255, 0.74));
}

.feature-icon {
  position: relative;
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border-radius: 14px;
  --icon-color: var(--brand);
  --icon-soft: rgba(0, 82, 217, 0.1);
  --icon-border: rgba(0, 82, 217, 0.18);
  border: 1px solid var(--icon-border);
  color: var(--icon-color);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), var(--icon-soft));
  box-shadow: 0 16px 34px rgba(20, 45, 85, 0.1);
  overflow: hidden;
}

.feature-card:nth-child(2) .feature-icon {
  --icon-color: #0F766E;
  --icon-soft: rgba(16, 185, 129, 0.12);
  --icon-border: rgba(16, 185, 129, 0.22);
}

.feature-card:nth-child(3) .feature-icon {
  --icon-color: #B45309;
  --icon-soft: rgba(245, 158, 11, 0.14);
  --icon-border: rgba(245, 158, 11, 0.24);
}

.feature-card:nth-child(4) .feature-icon {
  --icon-color: #7C3AED;
  --icon-soft: rgba(139, 92, 246, 0.13);
  --icon-border: rgba(139, 92, 246, 0.24);
}

.feature-icon::before,
.mini-icon::before {
  content: "";
  position: absolute;
  right: -12px;
  bottom: -16px;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: var(--icon-soft);
}

.feature-icon svg {
  position: relative;
  z-index: 1;
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.feature-icon svg :is(path, circle, rect, line, polyline) {
  stroke: currentColor;
}

.feature-icon svg :is(path, circle, rect, line, polyline):nth-child(n+2) {
  opacity: 0.68;
}

.mini-icon {
  position: relative;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 13px;
  --icon-color: var(--brand);
  --icon-soft: rgba(0, 82, 217, 0.1);
  --icon-border: rgba(0, 82, 217, 0.18);
  border: 1px solid var(--icon-border);
  color: var(--icon-color);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), var(--icon-soft));
  box-shadow: 0 12px 26px rgba(20, 45, 85, 0.09);
  overflow: hidden;
}

.mini-icon svg {
  position: relative;
  z-index: 1;
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.85;
}

.mini-icon svg :is(path, circle, rect, line, polyline) {
  stroke: currentColor;
}

.mini-icon svg :is(path, circle, rect, line, polyline):nth-child(n+2) {
  opacity: 0.68;
}

.icon-blue {
  --icon-color: var(--brand);
  --icon-soft: rgba(0, 82, 217, 0.1);
  --icon-border: rgba(0, 82, 217, 0.18);
}

.icon-coral {
  --icon-color: #E11D48;
  --icon-soft: rgba(255, 107, 107, 0.12);
  --icon-border: rgba(255, 107, 107, 0.24);
}

.icon-mint {
  --icon-color: #0F766E;
  --icon-soft: rgba(45, 212, 191, 0.12);
  --icon-border: rgba(45, 212, 191, 0.24);
}

.icon-amber {
  --icon-color: #B45309;
  --icon-soft: rgba(251, 191, 36, 0.15);
  --icon-border: rgba(251, 191, 36, 0.28);
}

.icon-purple {
  --icon-color: #7C3AED;
  --icon-soft: rgba(139, 92, 246, 0.13);
  --icon-border: rgba(139, 92, 246, 0.24);
}

.feature-card ul,
.price-card ul {
  display: grid;
  gap: 10px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.feature-card li,
.price-card li {
  position: relative;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.6;
}

.feature-card li::before,
.price-card li::before {
  content: "";
  position: absolute;
  top: 9px;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
}

.icon-list {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.icon-list li {
  display: grid;
  place-items: center;
  min-height: 42px;
  padding: 8px 10px;
  border: 1px solid rgba(0, 82, 217, 0.12);
  border-radius: 999px;
  color: #2A3A52;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.72);
}

.icon-list li::before {
  display: none;
}

.feature-showcase,
.pricing-glow {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  gap: 28px;
  align-items: center;
  margin-top: clamp(88px, 7vw, 118px);
  padding: 34px;
  border: 1px solid rgba(0, 82, 217, 0.14);
  border-radius: 18px;
  overflow: visible;
  background:
    radial-gradient(circle at 88% 12%, rgba(0, 163, 196, 0.16), transparent 34%),
    linear-gradient(135deg, #FFFFFF, var(--soft-blue));
  box-shadow: var(--shadow-soft);
}

.feature-showcase::before,
.pricing-glow::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(0, 82, 217, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 82, 217, 0.06) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: linear-gradient(90deg, transparent 0%, black 28%, black 100%);
  animation: gridDrift 20s linear infinite;
}

.showcase-copy,
.role-grid,
.pricing-glow > div {
  position: relative;
  z-index: 1;
}

.showcase-copy h2,
.pricing-glow h2 {
  margin-top: 12px;
}

.showcase-copy p,
.pricing-glow p {
  margin-top: 14px;
  color: var(--muted);
  line-height: 1.8;
}

.role-grid,
.glow-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.role-grid div,
.glow-metrics > span {
  display: grid;
  gap: 8px;
  min-height: 112px;
  padding: 18px;
  border: 1px solid rgba(0, 82, 217, 0.14);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.76);
  backdrop-filter: blur(12px);
  box-shadow: 0 14px 34px rgba(0, 82, 217, 0.1);
}

.role-grid strong,
.glow-metrics > span strong {
  color: var(--brand);
  font-weight: 900;
}

.role-grid div > span:not(.mini-icon) {
  color: var(--muted);
}

.glow-metrics > span {
  align-content: start;
  color: inherit;
}

.glow-metrics em {
  color: var(--muted);
  font-style: normal;
}

.tech-flow {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  align-items: center;
  margin-top: clamp(88px, 7vw, 118px);
  padding: 34px;
  border-radius: 16px;
  color: #FFFFFF;
  background:
    linear-gradient(135deg, var(--panel), var(--panel-soft)),
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  overflow: visible;
  box-shadow: 0 24px 70px rgba(7, 27, 58, 0.28);
}

.tech-flow .section-kicker,
.tech-flow p {
  color: rgba(255, 255, 255, 0.78);
}

.tech-flow h2 {
  margin: 12px 0 16px;
}

.flow-board {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.flow-board span {
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.08);
}

.flow-board i {
  width: 28px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--cyan), transparent);
  animation: flowPulse 1.8s ease-in-out infinite;
}

.module-table {
  padding-bottom: 86px;
}

.module-cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.module-cards article {
  position: relative;
  display: grid;
  gap: 12px;
  min-height: 166px;
  padding: 24px;
  border: 1px solid rgba(0, 82, 217, 0.12);
  border-radius: 16px;
  background:
    radial-gradient(circle at 88% 12%, rgba(0, 82, 217, 0.09), transparent 30%),
    #FFFFFF;
  box-shadow: var(--shadow-soft);
}

.module-cards strong {
  color: #0A234B;
  font-size: 20px;
}

.module-cards span {
  color: var(--muted);
  line-height: 1.6;
}

.pricing-layout {
  display: grid;
  grid-template-columns: minmax(340px, 0.82fr) 1.18fr;
  gap: 24px;
  align-items: stretch;
  padding-bottom: 44px;
}

.price-card {
  position: relative;
  padding: 34px;
  border: 1px solid rgba(0, 82, 217, 0.26);
  border-radius: 16px;
  background:
    linear-gradient(#FFFFFF, #FFFFFF) padding-box,
    linear-gradient(135deg, rgba(0, 82, 217, 0.8), rgba(0, 163, 196, 0.7)) border-box;
  box-shadow: 0 24px 70px rgba(0, 82, 217, 0.16);
  overflow: hidden;
}

.price-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 16px;
  pointer-events: none;
  background: linear-gradient(120deg, transparent, rgba(0, 82, 217, 0.08), transparent);
  animation: priceSweep 4.5s ease-in-out infinite;
}

.price-tag {
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 7px;
  color: var(--brand);
  font-size: 13px;
  font-weight: 800;
  background: var(--soft-blue);
}

.price-card h2 {
  margin-top: 18px;
}

.price-card p {
  margin-top: 12px;
}

.price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin: 28px 0;
}

.price strong {
  color: var(--brand);
  font-size: 62px;
  line-height: 1;
}

.price span:last-child {
  color: var(--muted);
  font-weight: 800;
}

.pricing-notes {
  display: grid;
  gap: 16px;
}

.pricing-notes article {
  padding: 26px;
  background:
    radial-gradient(circle at 92% 10%, rgba(0, 163, 196, 0.1), transparent 32%),
    #FFFFFF;
}

.pricing-notes h3 {
  margin: 6px 0 10px;
}

.compare-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: clamp(94px, 8vw, 128px);
  padding-bottom: 92px;
}

.compare-strip div {
  position: relative;
  display: grid;
  gap: 8px;
  padding: 24px;
  border-radius: var(--radius);
  border: 1px solid rgba(221, 229, 242, 0.9);
  background: #FFFFFF;
  box-shadow: var(--shadow-soft);
}

.compare-strip div:nth-child(2) {
  background: #FFFFFF;
}

.compare-strip div > span:not(.mini-icon) {
  color: var(--muted);
}

.faq-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 18px;
}

.faq-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px 16px;
  padding: 26px;
  background:
    radial-gradient(circle at 94% 12%, rgba(0, 82, 217, 0.08), transparent 26%),
    #FFFFFF;
}

.faq-item .mini-icon {
  grid-row: span 2;
}

.about-hero {
  grid-template-columns: minmax(460px, 0.92fr) minmax(420px, 1.08fr);
}

.about-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: clamp(320px, 28vw, 460px);
  padding: 34px;
  border: 0;
  border-radius: 0;
  background:
    radial-gradient(circle at 50% 45%, rgba(0, 82, 217, 0.16), transparent 42%),
    radial-gradient(circle at 70% 70%, rgba(0, 163, 196, 0.12), transparent 34%);
  box-shadow: none;
  isolation: isolate;
  overflow: visible;
}

.about-visual::before {
  content: "";
  position: absolute;
  inset: 7% 0 0 8%;
  z-index: -1;
  border-radius: 999px;
  background: rgba(0, 82, 217, 0.12);
  filter: blur(20px);
}

.about-visual > img {
  width: min(430px, 86%);
  padding: 26px;
  border: 1px solid rgba(0, 82, 217, 0.1);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 30px 76px rgba(0, 82, 217, 0.14), 0 10px 28px rgba(20, 45, 85, 0.08);
  backdrop-filter: blur(16px);
}

.about-signal {
  position: absolute;
  right: 28px;
  bottom: 28px;
  display: grid;
  gap: 6px;
  min-width: 190px;
  padding: 16px;
  border: 1px solid rgba(0, 82, 217, 0.14);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 42px rgba(0, 82, 217, 0.16);
  backdrop-filter: blur(14px);
}

.about-signal span {
  color: var(--brand);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.about-signal em {
  color: var(--muted);
  font-style: normal;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 18px;
}

.about-grid article {
  position: relative;
  display: grid;
  gap: 12px;
  min-height: 178px;
  padding: 24px;
  border: 1px solid rgba(0, 82, 217, 0.12);
  border-radius: 16px;
  background:
    radial-gradient(circle at 90% 12%, rgba(0, 163, 196, 0.12), transparent 32%),
    #FFFFFF;
  box-shadow: var(--shadow-soft);
}

.about-grid strong,
.story-points strong {
  color: #0A234B;
  font-size: 20px;
}

.about-grid article > span:not(.mini-icon),
.story-points p {
  color: var(--muted);
  line-height: 1.7;
}

.company-story {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 30px;
  align-items: start;
  padding: 96px 0;
}

.company-story h2 {
  margin-top: 12px;
}

.story-points {
  display: grid;
  gap: 16px;
}

.story-points article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 8px 16px;
  padding: 22px;
  border: 1px solid rgba(0, 82, 217, 0.12);
  border-radius: 16px;
  background: #FFFFFF;
  box-shadow: var(--shadow-soft);
}

.story-points article .mini-icon {
  grid-row: span 2;
}

.contact-section {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 34px;
  align-items: start;
  margin-top: clamp(88px, 7vw, 118px);
  padding: 0 0 96px;
}

.contact-copy h2 {
  margin: 12px 0 16px;
}

.contact-signal {
  display: grid;
  gap: 8px;
  margin-top: 26px;
  padding: 18px;
  border: 1px solid rgba(0, 82, 217, 0.14);
  border-radius: var(--radius);
  background: var(--soft-blue);
}

.contact-signal span {
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--brand), var(--cyan), transparent);
  animation: signalMove 2.8s ease-in-out infinite;
}

.contact-signal em {
  color: var(--muted);
  font-style: normal;
}

.error-main {
  display: grid;
  min-height: calc(100vh - 76px);
  place-items: center;
}

.error-section {
  width: 100%;
  padding-top: clamp(88px, 10vw, 148px);
  padding-bottom: clamp(92px, 11vw, 158px);
  text-align: center;
}

.error-code {
  margin-top: 10px;
  color: rgba(0, 82, 217, 0.11);
  font-size: clamp(112px, 22vw, 260px);
  font-weight: 900;
  letter-spacing: -0.08em;
  line-height: 0.86;
  text-shadow: 0 24px 60px rgba(0, 82, 217, 0.12);
}

.error-section h1 {
  margin: -12px 0 14px;
}

.error-section p {
  max-width: 560px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
}

.error-section .hero-actions {
  justify-content: center;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 30px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: #2A3A52;
  font-weight: 800;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 7px;
  padding: 12px 14px;
  color: var(--ink);
  background: #FFFFFF;
  outline: none;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(0, 82, 217, 0.12);
}

.contact-form label.form-consent {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.7;
}

.contact-form .form-consent input {
  width: 18px;
  height: 18px;
  margin: 3px 0 0;
  padding: 0;
  accent-color: var(--brand);
}

.form-consent a {
  color: var(--brand);
  font-weight: 800;
}

.form-consent a:hover {
  color: var(--brand-active);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.form-tip {
  color: var(--muted);
  font-size: 13px;
}

.form-tip.is-success {
  color: var(--green);
  font-weight: 800;
}

.form-tip.is-error {
  color: var(--coral);
  font-weight: 800;
}

.cta-band {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  margin-bottom: 96px;
  padding: 36px;
  border: 1px solid rgba(0, 82, 217, 0.14);
  border-radius: 16px;
  background:
    radial-gradient(circle at 90% 10%, rgba(0, 163, 196, 0.16), transparent 34%),
    linear-gradient(135deg, #FFFFFF, var(--soft-blue));
  box-shadow: var(--shadow-soft);
}

.cta-band h2 {
  margin-top: 12px;
}

.cta-actions {
  display: flex;
  gap: 12px;
}

.site-footer {
  margin-bottom: 24px;
  border-top: 1px solid var(--line);
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(260px, 1.2fr) minmax(320px, auto);
  gap: 28px;
  align-items: start;
  padding: 34px 0 24px;
}

.footer-main.has-contact {
  grid-template-columns: minmax(260px, 1fr) minmax(250px, auto) minmax(210px, auto);
  column-gap: clamp(32px, 4vw, 64px);
  row-gap: 0;
}

.footer-main.has-contact > :first-child {
  grid-column: 1;
  grid-row: 1;
}

.footer-main.has-contact .footer-nav-panel {
  grid-column: 2;
  grid-row: 1;
}

.footer-main.has-contact .footer-contact {
  grid-column: 3;
  grid-row: 1;
}

.footer-brand {
  min-width: auto;
}

.footer-main p {
  max-width: 420px;
  margin-top: 14px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, max-content);
  gap: 12px 24px;
  color: var(--muted);
}

.footer-nav-panel {
  display: grid;
  gap: 22px;
  align-content: start;
}

.footer-links a:hover,
.footer-bottom a:hover {
  color: var(--brand);
}

.footer-actions {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.footer-contact {
  display: grid;
  gap: 14px;
  min-width: 190px;
  width: fit-content;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: linear-gradient(145deg, #FFFFFF 0%, #F4F8FF 100%);
}

.footer-contact[hidden],
.footer-contact-qr[hidden] {
  display: none;
}

.footer-contact-title {
  color: var(--ink);
  font-size: 16px;
}

.footer-contact-qr {
  display: grid;
  gap: 8px;
  justify-items: start;
  color: var(--muted);
  font-size: 13px;
}

.footer-contact-qr img {
  width: 112px;
  height: 112px;
  padding: 6px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #FFFFFF;
  object-fit: cover;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 20px;
  padding: 18px 0 26px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
}

.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-left: auto;
}

.footer-legal-links a {
  color: var(--muted);
}

.footer-legal-links a:hover,
.footer-legal-links a[aria-current="page"] {
  color: var(--brand);
}


.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.66s ease, transform 0.66s ease;
}

.page-hero.reveal {
  opacity: 1;
  transform: none;
}

.page-hero-rich + .section-shell.reveal,
.page-hero-rich + .section-shell .reveal {
  opacity: 1;
  transform: none;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes markPulse {
  0%,
  100% {
    opacity: 0.35;
    transform: scale(0.92);
  }
  50% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes gridDrift {
  from {
    background-position: 0 0, 0 0;
  }
  to {
    background-position: 72px 72px, 72px 72px;
  }
}

@keyframes beamShift {
  from {
    transform: translateX(-3%);
  }
  to {
    transform: translateX(3%);
  }
}

@keyframes scanSheen {
  0%,
  18% {
    transform: translateX(-42%);
  }
  58%,
  100% {
    transform: translateX(42%);
  }
}

@keyframes auroraFloat {
  from {
    transform: translate3d(-18px, -8px, 0) scale(0.95);
  }
  to {
    transform: translate3d(18px, 12px, 0) scale(1.08);
  }
}

@keyframes radarSpin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes floatCard {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes orbitFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(12px, -12px, 0);
  }
}

@keyframes buttonSheen {
  0%,
  58% {
    transform: rotate(18deg) translateX(-80px);
  }
  78%,
  100% {
    transform: rotate(18deg) translateX(190px);
  }
}

@keyframes flowPulse {
  0%,
  100% {
    opacity: 0.35;
  }
  50% {
    opacity: 1;
  }
}

@keyframes priceSweep {
  0%,
  52% {
    transform: translateX(-80%);
  }
  100% {
    transform: translateX(80%);
  }
}

@keyframes signalMove {
  0%,
  100% {
    transform: scaleX(0.45);
    transform-origin: left;
  }
  50% {
    transform: scaleX(1);
  }
}

@media (max-width: 1180px) {
  :root {
    --container-pad: clamp(18px, 3.6vw, 42px);
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 70px;
  }

  .hero-copy {
    max-width: 820px;
  }

  .hero-showcase {
    width: min(100%, 900px);
    margin-inline: auto;
  }

  .proof-strip,
  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .floating-metrics {
    right: 12px;
  }
}

@media (max-width: 860px) {
  :root {
    --container-pad: 20px;
  }

  body {
    background:
      radial-gradient(circle at 30% 0%, rgba(0, 82, 217, 0.13), transparent 78vw),
      linear-gradient(180deg, #FFFFFF 0, var(--page) 520px, #FFFFFF 100%);
  }

  .site-header {
    top: 0;
    gap: 10px;
    height: 64px;
    margin-top: 0;
    padding: 0 var(--container-pad);
  }

  .brand {
    min-width: auto;
  }

  .brand-text small {
    display: none;
  }

  .nav-toggle {
    display: block;
    margin-left: auto;
  }

  .nav-toggle.is-open span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .nav-toggle.is-open span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.is-open span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .site-nav {
    position: fixed;
    top: 72px;
    right: var(--container-pad);
    left: var(--container-pad);
    display: none;
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #FFFFFF;
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: grid;
  }

  .site-nav a {
    padding: 13px 14px;
  }

  .site-nav a::after {
    display: none;
  }

  .header-cta {
    display: none;
  }

  .header-login {
    display: none;
  }

  .hero {
    gap: 26px;
    padding: 44px 0 42px;
  }

  h1 {
    font-size: clamp(34px, 9.2vw, 44px);
  }

  h2 {
    font-size: clamp(25px, 7vw, 34px);
  }

  .hero-lead,
  .page-hero p {
    font-size: 16px;
  }

  .hero-points {
    display: flex;
    flex-wrap: nowrap;
    gap: 8px;
    margin-top: 22px;
    overflow-x: auto;
    padding-bottom: 4px;
    scroll-snap-type: x mandatory;
  }

  .hero-points span {
    flex: 0 0 auto;
    scroll-snap-align: start;
  }

  .hero-showcase {
    padding: 8px;
    border-radius: 16px;
  }

  .hero-swiper {
    min-height: auto;
    aspect-ratio: 4 / 3;
    border-radius: 12px;
  }

  .swiper-slide::after {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.28) 0%, rgba(255, 255, 255, 0) 42%, rgba(7, 27, 58, 0.38) 100%);
  }

  .slide-caption {
    left: 14px;
    right: 14px;
    bottom: 34px;
    max-width: none;
    padding: 14px;
  }

  .swiper-progress {
    left: 14px;
    right: 96px;
    bottom: 16px;
  }

  .swiper-dots {
    right: 14px;
    bottom: 10px;
  }

  .floating-metrics {
    position: static;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 10px;
  }

  .floating-metrics div {
    width: auto;
    padding: 12px;
  }

  .floating-metrics strong {
    font-size: 20px;
  }

  .proof-strip {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(220px, 72%);
    grid-template-columns: none;
    overflow-x: auto;
    padding-bottom: 6px;
    scroll-snap-type: x mandatory;
  }

  .proof-strip div {
    scroll-snap-align: start;
  }

  .process-grid,
  .feature-matrix,
  .faq-grid,
  .pricing-layout,
  .page-hero-rich,
  .feature-showcase,
  .pricing-glow,
  .module-cards,
  .about-grid,
  .company-story,
  .compare-strip,
  .contact-section,
  .split-section,
  .tech-flow,
  .cta-band,
  .footer-main {
    grid-template-columns: 1fr;
  }

  .footer-main.has-contact {
    grid-template-columns: 1fr;
    row-gap: 28px;
  }

  .footer-main.has-contact > :first-child,
  .footer-main.has-contact .footer-nav-panel,
  .footer-main.has-contact .footer-contact {
    grid-column: auto;
    grid-row: auto;
  }

  .footer-contact {
    width: 100%;
    padding: 18px;
  }

  .footer-actions .btn-primary::after {
    display: none;
  }

  .process-grid {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(248px, 78%);
    grid-template-columns: none;
    overflow-x: auto;
    padding-bottom: 8px;
    scroll-snap-type: x mandatory;
  }

  .process-card {
    min-height: 190px;
    scroll-snap-align: start;
  }

  .section-panel {
    margin-top: 72px;
  }

  .page-hero-rich {
    gap: 28px;
    margin-top: 30px;
    min-height: auto;
    padding: 42px 0 46px;
    border-radius: 0;
  }

  .page-hero-rich::before {
    inset: -30px calc(var(--container-pad) * -1) -54px;
  }

  .page-hero-rich::after {
    inset: -12px calc(var(--container-pad) * -1) -34px;
  }

  .page-hero-visual {
    min-height: 300px;
  }

  .feature-showcase,
  .pricing-glow {
    margin-top: 80px;
    padding: 24px;
  }

  main > .page-hero-rich + .section-shell,
  .feature-matrix,
  .tech-flow,
  .compare-strip,
  .contact-section {
    margin-top: 80px;
  }

  .module-cards,
  .about-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .company-story {
    padding: 72px 0;
  }

  .about-visual {
    min-height: 300px;
  }

  .role-grid,
  .glow-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .split-section {
    padding: 76px 0;
  }

  .mobile-preview {
    min-height: 500px;
    border-radius: 18px;
  }

  .phone-frame {
    width: min(260px, 68vw);
  }

  .orbit-card.one {
    left: 7%;
    top: 15%;
  }

  .orbit-card.two {
    right: 6%;
    top: 22%;
  }

  .orbit-card.three {
    left: 9%;
    bottom: 12%;
  }

  .tech-flow {
    padding: 24px;
  }

  .flow-board {
    justify-content: flex-start;
  }

  .cta-band {
    justify-items: start;
  }

  .cta-actions,
  .footer-actions {
    flex-wrap: wrap;
  }

  .footer-links {
    grid-template-columns: repeat(4, max-content);
  }
}

@media (max-width: 560px) {
  .brand-mark {
    width: 34px;
    height: 34px;
  }

  .brand-text strong {
    font-size: 16px;
  }

  .hero-actions,
  .cta-actions {
    display: grid;
    width: 100%;
  }

  .btn {
    width: 100%;
  }

  .hero-lead {
    margin-top: 18px;
    line-height: 1.7;
  }

  .hero-actions {
    margin-top: 24px;
  }

  .hero-swiper {
    aspect-ratio: 3 / 2.7;
  }

  .swiper-slide img {
    object-position: center;
  }

  .floating-metrics {
    grid-template-columns: 1fr;
  }

  .proof-strip {
    grid-auto-columns: minmax(220px, 86%);
  }

  .process-grid {
    grid-auto-columns: minmax(240px, 86%);
  }

  .feature-card,
  .faq-item,
  .price-card,
  .pricing-notes article,
  .module-cards article,
  .about-grid article,
  .story-points article,
  .feature-showcase,
  .pricing-glow,
  .contact-form,
  .cta-band {
    padding: 22px;
  }

  .page-hero:not(.page-hero-rich) {
    padding-top: 28px;
  }

  .page-hero.page-hero-rich {
    margin-top: 24px;
    padding-top: 38px;
    padding-bottom: 42px;
  }

  .page-hero-rich::before {
    inset: -24px calc(var(--container-pad) * -1) -48px;
  }

  .page-hero-rich::after {
    inset: -10px calc(var(--container-pad) * -1) -32px;
  }

  main > .page-hero-rich + .section-shell,
  .feature-matrix,
  .feature-showcase,
  .pricing-glow,
  .tech-flow,
  .compare-strip,
  .contact-section {
    margin-top: 72px;
  }

  .price strong {
    font-size: 54px;
  }

  .mobile-preview {
    min-height: 460px;
  }

  .page-hero-visual {
    min-height: 220px;
  }

  .about-visual {
    place-items: stretch;
    align-content: center;
    gap: 16px;
    min-height: 250px;
    padding: 22px;
  }

  .about-visual > img {
    width: 100%;
    padding: 18px;
  }

  .about-signal {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    margin-top: 16px;
  }

  .page-visual-card {
    max-width: 220px;
    padding: 11px 13px;
    font-size: 13px;
  }

  .page-visual-card.top {
    top: 14px;
    left: 14px;
  }

  .page-visual-card.bottom {
    right: 14px;
    bottom: 14px;
  }

  .role-grid,
  .glow-metrics,
  .module-cards,
  .about-grid {
    grid-template-columns: 1fr;
  }

  .orbit-card {
    font-size: 13px;
  }

  .orbit-card.two {
    top: 14%;
  }

  .footer-links {
    grid-template-columns: repeat(2, max-content);
  }

  .footer-bottom {
    display: grid;
  }
}

@media (max-width: 980px) {
  .footer-legal-links {
    width: 100%;
    margin-left: 0;
    padding-top: 2px;
  }
}

@media (max-width: 560px) {
  .footer-legal-links {
    display: grid;
    gap: 10px;
    padding-top: 8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
