@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700&family=Space+Grotesk:wght@400;500;600;700&display=swap");

:root {
  --saturn-purple: #6f4b8b;
  --orbit-lavender: #8e71aa;
  --atmos-violet: #5b3f73;
  --planet-green: #dce7af;
  --ring-cream: #f3f1dd;
  --midnight: #16131d;
  --space-deep: #0f0b16;
  --space-mid: #1a1324;
  --text-main: #f7f6ff;
  --text-soft: #ccc7dc;
  --text-muted: #9c96b3;
  --line: rgba(222, 215, 255, 0.18);
  --line-strong: rgba(220, 231, 175, 0.38);
  --panel: rgba(20, 15, 30, 0.72);
  --panel-solid: #1b1627;
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --shadow: 0 22px 52px rgba(5, 4, 10, 0.5);
  --font-heading: "Space Grotesk", "Segoe UI", sans-serif;
  --font-body: "Manrope", "Segoe UI", sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background:
    radial-gradient(circle at 8% 10%, rgba(111, 75, 139, 0.26), transparent 26%),
    radial-gradient(circle at 88% 16%, rgba(142, 113, 170, 0.2), transparent 33%),
    linear-gradient(160deg, #09070f 0%, var(--space-mid) 52%, #0e0a15 100%);
  color: var(--text-main);
  line-height: 1.65;
  min-height: 100vh;
  overflow-x: hidden;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -2;
}

body::before {
  background:
    radial-gradient(circle at 18% 24%, rgba(220, 231, 175, 0.08), transparent 20%),
    radial-gradient(circle at 80% 70%, rgba(142, 113, 170, 0.14), transparent 24%);
}

body::after {
  background-image: linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
  background-size: 42px 42px;
  opacity: 0.35;
}

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

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

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

.container {
  width: min(1180px, 92vw);
  margin: 0 auto;
}

.section {
  position: relative;
  padding: 5.4rem 0;
}

.section--tight {
  padding: 4rem 0;
}

.section--alt {
  background: linear-gradient(180deg, rgba(46, 34, 63, 0.22) 0%, rgba(20, 16, 30, 0) 100%);
  border-top: 1px solid rgba(222, 215, 255, 0.1);
  border-bottom: 1px solid rgba(222, 215, 255, 0.1);
}

.section-header {
  max-width: 800px;
  margin-bottom: 2.2rem;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.74rem;
  font-weight: 700;
  color: var(--planet-green);
  margin-bottom: 0.9rem;
}

.section-tag::before {
  content: "";
  width: 30px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--planet-green));
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-heading);
  letter-spacing: -0.01em;
  line-height: 1.15;
}

h1 {
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  margin-bottom: 1.2rem;
}

h2 {
  font-size: clamp(1.75rem, 3.2vw, 3rem);
  margin-bottom: 1rem;
}

h3 {
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  margin-bottom: 0.75rem;
}

p {
  color: var(--text-soft);
}

.lead {
  font-size: clamp(1.02rem, 1.5vw, 1.24rem);
  max-width: 760px;
  color: #e5e0f2;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 999px;
  padding: 0.84rem 1.6rem;
  border: 1px solid transparent;
  font-size: 0.94rem;
  font-weight: 700;
  transition: transform 0.28s ease, box-shadow 0.28s ease, background 0.28s ease,
    border-color 0.28s ease;
  cursor: pointer;
  white-space: nowrap;
}

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

.btn-primary {
  color: #151120;
  background: linear-gradient(130deg, var(--planet-green), var(--ring-cream));
  box-shadow: 0 0 0 1px rgba(243, 241, 221, 0.22), 0 10px 28px rgba(219, 232, 172, 0.28);
}

.btn-primary:hover {
  box-shadow: 0 0 0 1px rgba(243, 241, 221, 0.35), 0 14px 36px rgba(219, 232, 172, 0.34);
}

.btn-outline {
  color: var(--text-main);
  border-color: rgba(243, 241, 221, 0.35);
  background: rgba(243, 241, 221, 0.03);
}

.btn-outline:hover {
  border-color: rgba(243, 241, 221, 0.6);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.22);
}

.btn-small {
  padding: 0.66rem 1.3rem;
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.9rem;
  color: var(--planet-green);
  font-weight: 600;
}

.link-arrow::after {
  content: "→";
  transition: transform 0.25s ease;
}

.link-arrow:hover::after {
  transform: translateX(4px);
}

.orbit-divider {
  width: min(420px, 65vw);
  height: 1px;
  margin: 2.6rem auto 0;
  background: linear-gradient(90deg, transparent, rgba(222, 215, 255, 0.4), transparent);
  position: relative;
}

.orbit-divider::before {
  content: "";
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 1px solid rgba(220, 231, 175, 0.55);
  background: rgba(220, 231, 175, 0.14);
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 1rem 0;
  backdrop-filter: blur(15px);
  background: rgba(9, 7, 14, 0.42);
  border-bottom: 1px solid transparent;
  transition: padding 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}

.site-header.is-scrolled {
  padding: 0.56rem 0;
  background: rgba(9, 7, 14, 0.86);
  border-color: rgba(222, 215, 255, 0.14);
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.4rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.brand img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  object-position: center;
  border-radius: 50%;
  box-shadow: 0 0 0 1px rgba(220, 231, 175, 0.25);
}

.brand-text {
  display: grid;
  gap: 0.03rem;
}

.brand-text strong {
  font-family: var(--font-heading);
  letter-spacing: 0.02em;
  font-size: 1.03rem;
}

.brand-text span {
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 1.2rem;
  flex-wrap: wrap;
}

.nav-link {
  position: relative;
  padding: 0.35rem 0;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: color 0.26s ease;
}

.nav-link::after {
  content: "";
  width: 100%;
  height: 1px;
  position: absolute;
  left: 0;
  bottom: -0.2rem;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.28s ease;
  background: linear-gradient(90deg, transparent, var(--planet-green), transparent);
}

.nav-link:hover,
.nav-link.is-active {
  color: var(--text-main);
}

.nav-link:hover::after,
.nav-link.is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-actions {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid rgba(243, 241, 221, 0.26);
  background: rgba(243, 241, 221, 0.04);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--ring-cream);
  margin: 0 auto;
  transition: transform 0.25s ease;
}

.menu-toggle span + span {
  margin-top: 5px;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: min(360px, 86vw);
  height: 100vh;
  background: linear-gradient(180deg, rgba(16, 11, 24, 0.98), rgba(13, 9, 20, 0.99));
  border-left: 1px solid rgba(222, 215, 255, 0.14);
  transform: translateX(102%);
  transition: transform 0.34s ease;
  z-index: 1200;
  padding: 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

body.menu-open .mobile-menu {
  transform: translateX(0);
}

body.menu-open {
  overflow: hidden;
}

.menu-close {
  border: 0;
  background: transparent;
  color: var(--text-soft);
  align-self: flex-end;
  font-size: 0.95rem;
  cursor: pointer;
}

.mobile-nav {
  display: grid;
  gap: 0.3rem;
  margin-top: 0.8rem;
}

.mobile-nav a {
  padding: 0.84rem 1rem;
  border-radius: 12px;
  color: var(--text-soft);
  border: 1px solid rgba(222, 215, 255, 0.11);
  background: rgba(255, 255, 255, 0.02);
  font-weight: 600;
}

.mobile-nav a:hover,
.mobile-nav a.is-active {
  color: var(--text-main);
  border-color: rgba(220, 231, 175, 0.45);
}

.mobile-cta {
  margin-top: 0.45rem;
}

.page-hero {
  padding: 6.8rem 0 4.8rem;
  position: relative;
  overflow: clip;
}

.page-hero::before {
  content: "";
  position: absolute;
  width: min(58vw, 680px);
  height: min(58vw, 680px);
  right: -8%;
  top: -28%;
  background: radial-gradient(circle, rgba(142, 113, 170, 0.26), transparent 63%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: 2.2rem;
  align-items: center;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--planet-green);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 700;
  margin-bottom: 1.05rem;
}

.hero-kicker::before {
  content: "";
  width: 36px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--planet-green));
}

.hero-copy p {
  max-width: 690px;
}

.hero-actions {
  display: flex;
  gap: 0.85rem;
  margin-top: 1.7rem;
  flex-wrap: wrap;
}

.hero-badges {
  margin-top: 1.6rem;
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.hero-badge {
  background: rgba(243, 241, 221, 0.05);
  border: 1px solid rgba(243, 241, 221, 0.18);
  padding: 0.5rem 0.88rem;
  border-radius: 999px;
  color: var(--text-soft);
  font-size: 0.8rem;
}

.hero-visual {
  position: relative;
  aspect-ratio: 1;
  width: min(510px, 100%);
  margin-inline: auto;
  display: grid;
  place-items: center;
}

.planet-core {
  width: 35%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #b6a2d5 0%, #7d5b9f 35%, #2b1f3d 100%);
  box-shadow: inset 0 0 45px rgba(255, 255, 255, 0.2), 0 0 58px rgba(111, 75, 139, 0.6),
    0 0 110px rgba(17, 11, 25, 0.8);
  position: relative;
}

.planet-core::after {
  content: "";
  position: absolute;
  inset: 12%;
  border-radius: inherit;
  border: 1px solid rgba(243, 241, 221, 0.34);
}

.orbit {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(238, 231, 255, 0.24);
  transform-origin: center;
}

.orbit-a {
  width: 54%;
  aspect-ratio: 1;
  animation: spin 16s linear infinite;
}

.orbit-b {
  width: 72%;
  aspect-ratio: 1;
  border-color: rgba(220, 231, 175, 0.28);
  animation: spin-reverse 24s linear infinite;
}

.orbit-c {
  width: 94%;
  aspect-ratio: 1;
  border-color: rgba(142, 113, 170, 0.26);
  animation: spin 30s linear infinite;
}

.node {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(220, 231, 175, 0.08), 0 0 18px rgba(220, 231, 175, 0.36);
  background: linear-gradient(160deg, var(--ring-cream), var(--planet-green));
}

.node::before {
  content: "";
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 1px solid rgba(243, 241, 221, 0.2);
}

.node-1 {
  left: 21%;
  top: 18%;
}

.node-2 {
  right: 15%;
  top: 36%;
}

.node-3 {
  left: 27%;
  bottom: 15%;
}

.node-4 {
  right: 30%;
  bottom: 12%;
}

.data-node {
  position: absolute;
  min-width: 155px;
  padding: 0.72rem 0.88rem;
  border-radius: 12px;
  border: 1px solid rgba(243, 241, 221, 0.2);
  background: rgba(20, 15, 30, 0.76);
  box-shadow: var(--shadow);
  font-size: 0.76rem;
  color: var(--text-soft);
}

.data-node strong {
  display: block;
  color: var(--ring-cream);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.82rem;
  margin-bottom: 0.25rem;
}

.data-node-a {
  left: -2%;
  top: 24%;
}

.data-node-b {
  right: -4%;
  top: 60%;
}

.particle-cloud {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.particle-cloud span {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(220, 231, 175, 0.6);
  animation: float-up 10s linear infinite;
}

.particle-cloud span:nth-child(1) {
  left: 18%;
  bottom: 14%;
  animation-delay: -3s;
}

.particle-cloud span:nth-child(2) {
  left: 72%;
  bottom: 20%;
  animation-delay: -5.5s;
}

.particle-cloud span:nth-child(3) {
  left: 58%;
  bottom: 2%;
  animation-delay: -2.1s;
}

.particle-cloud span:nth-child(4) {
  left: 28%;
  bottom: 8%;
  animation-delay: -7.4s;
}

.particle-cloud span:nth-child(5) {
  left: 84%;
  bottom: 28%;
  animation-delay: -1.4s;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}

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

.feature-card,
.panel-card,
.info-card,
.insight-card,
.solution-card,
.product-card,
.doc-card,
.contact-card,
.timeline-card,
.split-card {
  border: 1px solid var(--line);
  background: linear-gradient(160deg, rgba(26, 19, 38, 0.82), rgba(18, 13, 27, 0.88));
  border-radius: var(--radius-md);
  padding: 1.45rem;
  box-shadow: var(--shadow);
  transition: transform 0.32s ease, border-color 0.32s ease, box-shadow 0.32s ease;
}

.feature-card:hover,
.panel-card:hover,
.info-card:hover,
.insight-card:hover,
.solution-card:hover,
.product-card:hover,
.doc-card:hover,
.contact-card:hover,
.timeline-card:hover,
.split-card:hover {
  transform: translateY(-5px);
  border-color: rgba(220, 231, 175, 0.42);
  box-shadow: 0 26px 56px rgba(2, 2, 8, 0.55);
}

.icon-planet {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin-bottom: 0.95rem;
  border: 1px solid rgba(220, 231, 175, 0.4);
  background: radial-gradient(circle at 32% 32%, rgba(220, 231, 175, 0.28), rgba(111, 75, 139, 0.32));
}

.icon-planet svg {
  width: 20px;
  height: 20px;
  stroke: var(--ring-cream);
  fill: none;
  stroke-width: 1.8;
}

.deliver-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.deliver-item {
  position: relative;
  padding: 1.25rem 1.2rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(222, 215, 255, 0.16);
  background: linear-gradient(160deg, rgba(23, 17, 35, 0.85), rgba(17, 13, 25, 0.8));
}

.deliver-item h3 {
  font-size: 1.08rem;
}

.deliver-item p {
  font-size: 0.95rem;
  margin-top: 0.55rem;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.95rem;
}

.panel-card {
  min-height: 220px;
}

.panel-card h3 {
  margin-bottom: 0.6rem;
}

.flow-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.95fr);
  gap: 1.6rem;
  align-items: center;
}

.flow-canvas {
  position: relative;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(222, 215, 255, 0.2);
  background: radial-gradient(circle at 30% 30%, rgba(142, 113, 170, 0.2), rgba(18, 13, 27, 0.94));
  padding: 1rem;
  overflow: hidden;
}

.flow-canvas svg {
  width: 100%;
  height: auto;
  display: block;
}

.flow-path {
  stroke-dasharray: 12 9;
  animation: dash 9s linear infinite;
}

.flow-node {
  fill: rgba(220, 231, 175, 0.85);
  filter: drop-shadow(0 0 8px rgba(220, 231, 175, 0.55));
}

.metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
  margin-top: 1rem;
}

.metric {
  padding: 1rem;
  border-radius: 14px;
  border: 1px solid rgba(243, 241, 221, 0.15);
  background: rgba(243, 241, 221, 0.03);
}

.metric strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--ring-cream);
}

.metric span {
  color: var(--text-muted);
  font-size: 0.85rem;
}

.issue-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 1rem;
}

.issue-list,
.answer-list {
  list-style: none;
  padding-left: 0;
  padding: 1.4rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(222, 215, 255, 0.16);
  background: rgba(20, 15, 30, 0.74);
}

.issue-list li,
.answer-list li {
  padding: 0.72rem 0;
  border-bottom: 1px solid rgba(222, 215, 255, 0.12);
  color: var(--text-soft);
}

.issue-list li:last-child,
.answer-list li:last-child {
  border-bottom: 0;
}

.issue-list li::before {
  content: "•";
  color: #dba7b3;
  margin-right: 0.55rem;
}

.answer-list li::before {
  content: "•";
  color: var(--planet-green);
  margin-right: 0.55rem;
}

.arch-preview {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.85rem;
}

.arch-node {
  padding: 1rem;
  border-radius: 14px;
  border: 1px solid rgba(222, 215, 255, 0.18);
  background: rgba(20, 14, 30, 0.72);
}

.arch-node h3 {
  font-size: 0.95rem;
  margin-bottom: 0.45rem;
}

.arch-node p {
  font-size: 0.85rem;
}

.cta-band {
  border: 1px solid rgba(220, 231, 175, 0.35);
  border-radius: var(--radius-lg);
  padding: 2rem;
  background:
    radial-gradient(circle at 12% 18%, rgba(220, 231, 175, 0.12), transparent 38%),
    radial-gradient(circle at 84% 75%, rgba(142, 113, 170, 0.22), transparent 42%),
    linear-gradient(130deg, rgba(28, 20, 40, 0.95), rgba(16, 12, 25, 0.95));
  box-shadow: var(--shadow);
  animation: gradient-shift 16s ease infinite;
  background-size: 140% 140%;
}

.cta-band p {
  margin-top: 0.75rem;
}

.cta-actions {
  margin-top: 1.3rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.inner-hero {
  padding: 5.6rem 0 3.6rem;
}

.inner-hero h1 {
  max-width: 900px;
}

.hero-copy-wide {
  max-width: 860px;
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 1.2rem;
}

.split-card h3 {
  margin-bottom: 0.55rem;
}

.split-card ul {
  margin-top: 0.75rem;
}

.split-card li {
  color: var(--text-soft);
  font-size: 0.94rem;
  padding: 0.42rem 0;
  border-bottom: 1px dashed rgba(222, 215, 255, 0.14);
}

.split-card li:last-child {
  border-bottom: 0;
}

.arch-diagram-wrap {
  border: 1px solid rgba(222, 215, 255, 0.2);
  border-radius: var(--radius-lg);
  background: radial-gradient(circle at 30% 20%, rgba(111, 75, 139, 0.26), rgba(14, 10, 20, 0.96));
  padding: 1.2rem;
  overflow: hidden;
}

.arch-diagram {
  position: relative;
  min-height: 420px;
}

.arch-diagram svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.diagram-node {
  position: absolute;
  padding: 0.75rem 0.88rem;
  border-radius: 12px;
  border: 1px solid rgba(222, 215, 255, 0.28);
  background: rgba(20, 15, 30, 0.84);
  min-width: 145px;
  text-align: center;
  font-weight: 600;
  font-size: 0.83rem;
  color: var(--ring-cream);
}

.diagram-core {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-color: rgba(220, 231, 175, 0.65);
  box-shadow: 0 0 20px rgba(220, 231, 175, 0.34);
}

.diagram-a {
  left: 8%;
  top: 16%;
}

.diagram-b {
  right: 8%;
  top: 16%;
}

.diagram-c {
  left: 12%;
  bottom: 14%;
}

.diagram-d {
  right: 12%;
  bottom: 14%;
}

.diagram-e {
  left: 50%;
  top: 7%;
  transform: translateX(-50%);
}

.product-suite {
  display: grid;
  gap: 1rem;
}

.product-card {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: 1.2rem;
  align-items: center;
  padding: 1.55rem;
}

.product-card:nth-child(even) .product-meta {
  order: 2;
}

.product-card:nth-child(even) .product-content {
  order: 1;
}

.product-meta {
  border: 1px solid rgba(243, 241, 221, 0.16);
  border-radius: 16px;
  padding: 1rem;
  background: rgba(243, 241, 221, 0.03);
}

.product-index {
  display: inline-flex;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.7rem;
  border: 1px solid rgba(220, 231, 175, 0.48);
  color: var(--ring-cream);
  font-family: var(--font-heading);
  background: radial-gradient(circle at 24% 24%, rgba(220, 231, 175, 0.2), rgba(111, 75, 139, 0.36));
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 0.75rem;
}

.pill-list li {
  padding: 0.38rem 0.68rem;
  border-radius: 999px;
  border: 1px solid rgba(243, 241, 221, 0.22);
  background: rgba(243, 241, 221, 0.03);
  font-size: 0.82rem;
  color: var(--text-soft);
}

.solution-stack {
  display: grid;
  gap: 1rem;
}

.solution-card {
  padding: 1.5rem;
}

.solution-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: 1rem;
}

.solution-meta div {
  padding: 0.82rem;
  border-radius: 12px;
  background: rgba(243, 241, 221, 0.03);
  border: 1px solid rgba(243, 241, 221, 0.12);
}

.solution-meta h4 {
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--planet-green);
  margin-bottom: 0.25rem;
}

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

.code-block {
  border: 1px solid rgba(222, 215, 255, 0.2);
  border-radius: 16px;
  overflow: hidden;
  background: #110d1a;
}

.code-top {
  padding: 0.62rem 0.9rem;
  border-bottom: 1px solid rgba(222, 215, 255, 0.12);
  background: rgba(243, 241, 221, 0.03);
  font-size: 0.8rem;
  color: var(--text-muted);
}

.code-block pre {
  margin: 0;
  padding: 1rem;
  overflow-x: auto;
  font-size: 0.85rem;
  line-height: 1.6;
  color: #f0ecff;
}

.doc-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.8rem;
}

.doc-card {
  padding: 1.2rem;
}

.doc-card p {
  font-size: 0.9rem;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.timeline {
  position: relative;
  padding-left: 1.2rem;
  display: grid;
  gap: 0.9rem;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5rem;
  bottom: 0.5rem;
  width: 1px;
  background: linear-gradient(180deg, rgba(220, 231, 175, 0.7), rgba(142, 113, 170, 0.4));
}

.timeline-card {
  position: relative;
  margin-left: 0.8rem;
}

.timeline-card::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1px solid rgba(220, 231, 175, 0.7);
  background: rgba(220, 231, 175, 0.2);
  position: absolute;
  left: -1.39rem;
  top: 1rem;
}

.timeline-year {
  color: var(--planet-green);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.73rem;
  font-weight: 700;
  margin-bottom: 0.38rem;
}

.featured-insight {
  border: 1px solid rgba(220, 231, 175, 0.28);
  border-radius: var(--radius-lg);
  padding: 2rem;
  background:
    radial-gradient(circle at 14% 18%, rgba(220, 231, 175, 0.12), transparent 42%),
    radial-gradient(circle at 78% 65%, rgba(142, 113, 170, 0.25), transparent 46%),
    linear-gradient(145deg, rgba(29, 21, 42, 0.95), rgba(15, 11, 23, 0.95));
}

.insight-grid {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.insight-card {
  display: grid;
  gap: 0.7rem;
}

.insight-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-muted);
  font-size: 0.78rem;
}

.insight-category {
  color: var(--planet-green);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 1.1rem;
}

.contact-form {
  border: 1px solid rgba(222, 215, 255, 0.22);
  border-radius: var(--radius-md);
  padding: 1.4rem;
  background: linear-gradient(160deg, rgba(26, 19, 38, 0.88), rgba(16, 11, 24, 0.92));
}

.form-grid {
  display: grid;
  gap: 0.82rem;
}

.form-grid label {
  display: grid;
  gap: 0.35rem;
  font-size: 0.88rem;
  color: var(--text-soft);
}

.form-grid input,
.form-grid select,
.form-grid textarea {
  width: 100%;
  border: 1px solid rgba(243, 241, 221, 0.23);
  background: rgba(9, 7, 14, 0.58);
  color: var(--text-main);
  border-radius: 12px;
  padding: 0.72rem 0.85rem;
  transition: border-color 0.24s ease, box-shadow 0.24s ease;
}

.form-grid input:focus,
.form-grid select:focus,
.form-grid textarea:focus {
  outline: none;
  border-color: rgba(220, 231, 175, 0.65);
  box-shadow: 0 0 0 3px rgba(220, 231, 175, 0.14);
}

.form-grid textarea {
  min-height: 150px;
  resize: vertical;
}

.form-note {
  margin-top: 0.75rem;
  color: var(--planet-green);
  font-size: 0.84rem;
  min-height: 1.25rem;
}

.contact-stack {
  display: grid;
  gap: 0.82rem;
}

.contact-card h3 {
  margin-bottom: 0.45rem;
}

.site-footer {
  margin-top: 5.5rem;
  border-top: 1px solid rgba(222, 215, 255, 0.16);
  background: linear-gradient(180deg, rgba(13, 10, 19, 0.98), rgba(9, 7, 14, 1));
  padding: 2.9rem 0 1.1rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.footer-brand p {
  margin-top: 0.75rem;
  font-size: 0.92rem;
}

.footer-column h4 {
  font-size: 0.83rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--planet-green);
  margin-bottom: 0.65rem;
}

.footer-column a {
  display: block;
  color: var(--text-soft);
  margin: 0.33rem 0;
  font-size: 0.9rem;
}

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

.footer-column .btn {
  width: 100%;
  max-width: 100%;
  white-space: normal;
  text-align: center;
  line-height: 1.35;
  justify-content: center;
}

.social-links {
  margin-top: 0.7rem;
  display: flex;
  gap: 0.6rem;
}

.social-links a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 1px solid rgba(243, 241, 221, 0.2);
  background: rgba(243, 241, 221, 0.03);
}

.social-links svg {
  width: 17px;
  height: 17px;
  fill: var(--ring-cream);
}

.footer-bottom {
  border-top: 1px solid rgba(222, 215, 255, 0.13);
  margin-top: 1.5rem;
  padding-top: 0.9rem;
  color: var(--text-muted);
  font-size: 0.83rem;
}

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

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

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes spin-reverse {
  from {
    transform: rotate(360deg);
  }
  to {
    transform: rotate(0deg);
  }
}

@keyframes float-up {
  0% {
    transform: translateY(0) scale(0.8);
    opacity: 0;
  }
  20% {
    opacity: 0.8;
  }
  80% {
    opacity: 0.5;
  }
  100% {
    transform: translateY(-130px) scale(1);
    opacity: 0;
  }
}

@keyframes dash {
  to {
    stroke-dashoffset: -210;
  }
}

@keyframes gradient-shift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@media (max-width: 1120px) {
  .site-nav {
    gap: 0.85rem;
  }

  .audience-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .arch-preview {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

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

@media (max-width: 980px) {
  .site-nav,
  .header-actions .btn {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .hero-grid,
  .flow-layout,
  .contact-layout,
  .product-card,
  .split-layout,
  .dev-grid,
  .grid-3,
  .deliver-grid,
  .value-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    margin-top: 0.8rem;
    width: min(470px, 90vw);
  }

  .audience-grid,
  .metrics,
  .solution-meta {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .section {
    padding: 4.6rem 0;
  }
}

@media (max-width: 700px) {
  .header-inner {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .brand img {
    width: 38px;
    height: 38px;
  }

  .brand-text span {
    display: none;
  }

  h1 {
    font-size: clamp(2rem, 11vw, 2.8rem);
  }

  h2 {
    font-size: clamp(1.45rem, 8vw, 2rem);
  }

  .page-hero {
    padding-top: 5.3rem;
  }

  .hero-actions,
  .cta-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  .data-node {
    position: static;
    margin-top: 0.6rem;
    width: 100%;
  }

  .audience-grid,
  .metrics,
  .solution-meta,
  .insight-grid,
  .doc-grid,
  .arch-preview {
    grid-template-columns: 1fr;
  }

  .issue-grid,
  .grid-2 {
    grid-template-columns: 1fr;
  }

  .arch-diagram {
    min-height: 520px;
  }

  .diagram-e,
  .diagram-core {
    left: 50%;
    transform: translateX(-50%);
  }

  .diagram-core {
    top: 48%;
  }

  .diagram-a,
  .diagram-b,
  .diagram-c,
  .diagram-d {
    left: 50%;
    right: auto;
    transform: translateX(-50%);
  }

  .diagram-a {
    top: 14%;
  }

  .diagram-b {
    top: 28%;
  }

  .diagram-c {
    top: 64%;
    bottom: auto;
  }

  .diagram-d {
    top: 78%;
    bottom: auto;
  }
}

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

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