@font-face {
  font-family: "Vazirmatn";
  src: url("assets/vazirmatn-400.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Vazirmatn";
  src: url("assets/vazirmatn-500.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Vazirmatn";
  src: url("assets/vazirmatn-700.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  color-scheme: dark;
  --bg: #06101c;
  --bg-deep: #030913;
  --surface: rgba(13, 31, 49, 0.68);
  --surface-bright: rgba(20, 46, 70, 0.76);
  --line: rgba(159, 205, 225, 0.15);
  --line-bright: rgba(142, 219, 245, 0.32);
  --text: #f4fbff;
  --muted: #9bb1bd;
  --cyan: #21c8f6;
  --blue: #1689ee;
  --teal: #19e2b3;
  --violet: #a884ff;
  --pink: #e36dff;
  --gold: #f5bd58;
  --shadow: 0 26px 90px rgba(0, 0, 0, 0.34);
  --header-height: 92px;
  --page-padding: clamp(20px, 5vw, 76px);
  --pointer-x: 50vw;
  --pointer-y: 50vh;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scrollbar-color: #1c7593 var(--bg-deep);
  overflow-x: clip;
}

body {
  margin: 0;
  min-width: 320px;
  max-width: 100%;
  overflow-x: clip;
  color: var(--text);
  background:
    radial-gradient(circle at 50% -20%, rgba(23, 107, 151, 0.26), transparent 42%),
    linear-gradient(180deg, var(--bg-deep), var(--bg) 28%, #071421 72%, #030914);
  font-family: "Vazirmatn", Tahoma, sans-serif;
  line-height: 1.8;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -5;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, #000, transparent 85%);
}

a,
button {
  font: inherit;
}

a {
  color: inherit;
}

svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

::selection {
  color: #00151f;
  background: #7ce5ff;
}

.loader {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 18px;
  background: #030914;
  transition: opacity 0.7s ease, visibility 0.7s ease;
}

.loader.hidden {
  opacity: 0;
  visibility: hidden;
}

.app-ready .loader {
  opacity: 0;
  visibility: hidden;
}

.loader p {
  margin: 0;
  color: #9bdff5;
  font: 700 11px/1 sans-serif;
  letter-spacing: 0.42em;
}

.loader-mark {
  display: flex;
  gap: 7px;
  align-items: end;
  height: 38px;
}

.loader-mark span {
  width: 6px;
  border-radius: 999px;
  background: linear-gradient(to top, var(--blue), var(--teal));
  animation: loader-bars 0.9s ease-in-out infinite alternate;
}

.loader-mark span:nth-child(1) {
  height: 18px;
}

.loader-mark span:nth-child(2) {
  height: 35px;
  animation-delay: -0.25s;
}

.loader-mark span:nth-child(3) {
  height: 26px;
  animation-delay: -0.5s;
}

#network-canvas,
.noise,
.aurora,
.pointer-glow {
  position: fixed;
  inset: 0;
  pointer-events: none;
}

#network-canvas {
  z-index: -4;
  width: 100%;
  height: 100%;
  opacity: 0.65;
}

.noise {
  z-index: 20;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.7'/%3E%3C/svg%3E");
}

.aurora {
  z-index: -3;
  filter: blur(110px);
  opacity: 0.14;
  border-radius: 50%;
  animation: aurora-drift 14s ease-in-out infinite alternate;
}

.aurora-one {
  inset: 10% auto auto -12%;
  width: 46vw;
  height: 46vw;
  background: #038ac6;
}

.aurora-two {
  inset: 35% -12% auto auto;
  width: 42vw;
  height: 42vw;
  background: #5825a3;
  animation-delay: -7s;
}

.pointer-glow {
  z-index: -2;
  background: radial-gradient(
    520px circle at var(--pointer-x) var(--pointer-y),
    rgba(49, 197, 244, 0.07),
    transparent 60%
  );
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  width: 100%;
  min-width: 0;
  height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 var(--page-padding);
  border-bottom: 1px solid transparent;
  transition: height 0.3s ease, background 0.3s ease, border-color 0.3s ease, backdrop-filter 0.3s ease;
}

.site-header.scrolled {
  height: 72px;
  border-color: var(--line);
  background: rgba(4, 13, 24, 0.78);
  backdrop-filter: blur(20px) saturate(145%);
}

.brand {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-logo {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  padding: 9px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 16px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.03));
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.12);
}

.brand-logo img {
  width: 100%;
}

.brand > span:last-child {
  display: grid;
  line-height: 1.15;
}

.brand strong {
  font-size: 13px;
  letter-spacing: 0.15em;
}

.brand small {
  margin-top: 5px;
  color: #7895a4;
  font-size: 8px;
  letter-spacing: 0.12em;
}

.site-header nav {
  display: flex;
  gap: 32px;
}

.site-header nav a {
  position: relative;
  color: #a9bdc6;
  font-size: 13px;
  text-decoration: none;
  transition: color 0.25s ease;
}

.site-header nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -8px;
  width: 0;
  height: 1px;
  background: var(--cyan);
  transition: width 0.25s ease;
}

.site-header nav a:hover {
  color: #fff;
}

.site-header nav a:hover::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.live-status {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #a6bdc7;
  font-size: 11px;
}

.live-status i,
.status-pill i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 5px rgba(25, 226, 179, 0.09), 0 0 18px var(--teal);
  animation: status-pulse 2s ease infinite;
}

.mini-launch {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 14px;
  border: 1px solid var(--line-bright);
  border-radius: 12px;
  color: #dff8ff;
  background: rgba(23, 84, 107, 0.2);
  font-size: 11px;
  text-decoration: none;
}

.mini-launch svg {
  width: 16px;
}

main {
  overflow: hidden;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(480px, 1.05fr);
  align-items: center;
  gap: clamp(34px, 6vw, 100px);
  padding: calc(var(--header-height) + 58px) var(--page-padding) 100px;
}

.hero-copy {
  position: relative;
  z-index: 2;
  min-width: 0;
}

.eyebrow,
.section-index {
  color: #82cce3;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.eyebrow {
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 11px;
  border: 1px solid rgba(89, 203, 236, 0.2);
  border-radius: 999px;
  background: rgba(25, 91, 118, 0.12);
}

.eyebrow-pulse {
  width: 18px;
  height: 2px;
  background: var(--cyan);
  box-shadow: 0 0 12px var(--cyan);
}

.hero h1 {
  max-width: 780px;
  margin: 24px 0 22px;
  font-size: clamp(48px, 7.1vw, 104px);
  line-height: 1.05;
  letter-spacing: -0.045em;
}

.gradient-word {
  display: block;
  padding-bottom: 0.09em;
  color: transparent;
  background: linear-gradient(95deg, #fff 0%, #86e7ff 35%, #19ddb4 67%, #8ebfff 100%);
  background-size: 200% 100%;
  background-clip: text;
  -webkit-background-clip: text;
  animation: gradient-flow 7s linear infinite;
}

.hero-lead {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(15px, 1.45vw, 20px);
  line-height: 2;
}

.hero-actions,
.connect-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.primary-cta,
.ghost-cta {
  min-height: 53px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 12px 22px;
  border-radius: 15px;
  text-decoration: none;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.primary-cta {
  color: #01151c;
  background: linear-gradient(120deg, #68eaff, #20dfb5);
  box-shadow: 0 14px 45px rgba(27, 205, 213, 0.2);
  font-weight: 700;
}

.primary-cta svg {
  width: 20px;
}

.ghost-cta {
  border: 1px solid var(--line-bright);
  color: #d9edf5;
  background: rgba(255, 255, 255, 0.035);
  backdrop-filter: blur(10px);
}

.primary-cta:hover,
.ghost-cta:hover {
  transform: translateY(-3px);
}

.primary-cta:hover {
  box-shadow: 0 18px 55px rgba(27, 205, 213, 0.3);
}

.ghost-cta:hover {
  border-color: rgba(111, 223, 252, 0.55);
}

.hero-metrics {
  display: flex;
  gap: clamp(20px, 4vw, 58px);
  margin-top: 50px;
}

.hero-metrics > div {
  display: grid;
  gap: 2px;
}

.hero-metrics strong {
  font-size: 23px;
  line-height: 1.1;
}

.hero-metrics span {
  color: #77909c;
  font-size: 10px;
}

.hero-visual {
  position: relative;
  min-width: 0;
  min-height: 650px;
  display: grid;
  place-items: center;
  perspective: 1100px;
}

.orbit-stage {
  position: relative;
  width: min(42vw, 610px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 50%;
  transform-style: preserve-3d;
  transition: transform 0.18s ease-out;
}

.orbit-stage::before {
  content: "";
  position: absolute;
  inset: 9%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(31, 182, 224, 0.1), transparent 65%);
  filter: blur(18px);
}

.orbit-grid {
  position: absolute;
  inset: 9%;
  border: 1px solid rgba(122, 208, 237, 0.1);
  border-radius: 50%;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 24px 24px;
  mask-image: radial-gradient(circle, #000 20%, transparent 72%);
  transform: rotateX(64deg) rotateZ(-8deg);
}

.orbit-ring {
  position: absolute;
  border: 1px solid rgba(91, 204, 237, 0.22);
  border-radius: 50%;
}

.ring-one {
  inset: 19%;
  border-style: dashed;
  animation: orbit-spin 22s linear infinite;
}

.ring-two {
  inset: 8%;
  border-color: rgba(117, 132, 255, 0.14);
  animation: orbit-spin-reverse 31s linear infinite;
}

.ring-three {
  inset: 31%;
  border-color: rgba(46, 235, 183, 0.2);
  box-shadow: 0 0 35px rgba(42, 220, 190, 0.05);
}

.orbit-beam {
  position: absolute;
  inset: 2%;
  border-radius: 50%;
  background: conic-gradient(from 20deg, transparent 0 78%, rgba(86, 218, 255, 0.18), transparent 86%);
  mask-image: radial-gradient(circle, transparent 55%, #000 56% 57%, transparent 58%);
  animation: orbit-spin 8s linear infinite;
}

.core {
  position: relative;
  z-index: 5;
  width: 190px;
  aspect-ratio: 1;
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 9px;
  padding: 34px;
  border: 1px solid rgba(127, 225, 251, 0.25);
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 28%, rgba(255, 255, 255, 0.16), transparent 24%),
    linear-gradient(145deg, rgba(18, 73, 98, 0.9), rgba(7, 25, 42, 0.92));
  box-shadow:
    inset 0 0 45px rgba(83, 207, 239, 0.06),
    0 0 0 12px rgba(43, 183, 219, 0.025),
    0 30px 90px rgba(0, 0, 0, 0.38);
}

.core-halo {
  position: absolute;
  inset: -24px;
  border: 1px solid rgba(66, 223, 255, 0.11);
  border-radius: 50%;
  animation: core-pulse 3.5s ease-in-out infinite;
}

.core img {
  width: 92px;
}

.core strong {
  font-size: 11px;
  letter-spacing: 0.22em;
}

.core small {
  color: var(--teal);
  font: 700 8px/1 sans-serif;
  letter-spacing: 0.28em;
}

.orbit-node {
  position: absolute;
  z-index: 6;
  min-width: 142px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border: 1px solid rgba(137, 218, 243, 0.2);
  border-radius: 16px;
  color: #eafaff;
  background: rgba(8, 28, 44, 0.72);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(14px);
  text-decoration: none;
  transition: border-color 0.25s ease, transform 0.25s ease, background 0.25s ease;
}

.orbit-node:hover {
  border-color: rgba(120, 227, 255, 0.6);
  background: rgba(14, 46, 67, 0.9);
  transform: translateY(-4px) scale(1.02);
}

.node-food {
  top: 17%;
  right: 0;
}

.node-ar {
  bottom: 13%;
  left: 0;
  border-color: rgba(188, 142, 255, 0.23);
}

.node-soon {
  top: 9%;
  left: 9%;
  opacity: 0.5;
}

.node-icon {
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: var(--cyan);
  background: rgba(41, 177, 217, 0.12);
}

.node-ar .node-icon {
  color: #c4a5ff;
  background: rgba(154, 101, 250, 0.12);
}

.node-icon svg {
  width: 20px;
}

.orbit-node > span:last-child {
  display: grid;
  line-height: 1.15;
}

.orbit-node b {
  font-size: 12px;
}

.orbit-node small {
  margin-top: 4px;
  color: #718b98;
  font: 500 9px/1 sans-serif;
  letter-spacing: 0.08em;
}

.signal {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 20px var(--cyan);
}

.signal-one {
  animation: signal-one 5s linear infinite;
}

.signal-two {
  background: var(--violet);
  box-shadow: 0 0 20px var(--violet);
  animation: signal-two 7s linear infinite;
}

.signal-three {
  background: var(--teal);
  box-shadow: 0 0 20px var(--teal);
  animation: signal-three 9s linear infinite;
}

.glass {
  border: 1px solid var(--line);
  background: rgba(8, 27, 43, 0.65);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px) saturate(130%);
}

.floating-panel {
  position: absolute;
  z-index: 10;
  border-radius: 15px;
}

.panel-clock {
  right: 3%;
  bottom: 3%;
  min-width: 180px;
  display: grid;
  padding: 13px 15px;
}

.panel-clock span,
.panel-clock small {
  color: #78939f;
  font-size: 9px;
}

.panel-clock strong {
  direction: ltr;
  font-size: 25px;
  letter-spacing: 0.08em;
}

.panel-signal {
  top: 18%;
  left: 1%;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
}

.signal-bars {
  height: 28px;
  display: flex;
  align-items: end;
  gap: 3px;
}

.signal-bars i {
  width: 3px;
  border-radius: 2px;
  background: var(--teal);
  animation: bars 1.2s ease-in-out infinite alternate;
}

.signal-bars i:nth-child(1) {
  height: 8px;
}

.signal-bars i:nth-child(2) {
  height: 14px;
  animation-delay: -0.3s;
}

.signal-bars i:nth-child(3) {
  height: 21px;
  animation-delay: -0.6s;
}

.signal-bars i:nth-child(4) {
  height: 27px;
  animation-delay: -0.9s;
}

.panel-signal > div {
  display: grid;
  line-height: 1.2;
}

.panel-signal strong {
  font: 700 10px/1 sans-serif;
}

.panel-signal small {
  margin-top: 5px;
  color: #718a96;
  font: 400 8px/1 sans-serif;
}

.scroll-cue {
  position: absolute;
  right: var(--page-padding);
  bottom: 28px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #5f7b89;
  font: 700 8px/1 sans-serif;
  letter-spacing: 0.18em;
  text-decoration: none;
}

.scroll-cue span {
  position: relative;
  width: 46px;
  height: 1px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.15);
}

.scroll-cue span::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--cyan);
  animation: scroll-line 2s ease infinite;
}

.experience-section,
.vision-section,
.connect-section {
  position: relative;
  padding: 130px var(--page-padding);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.55fr);
  align-items: end;
  gap: 40px;
  margin-bottom: 50px;
}

.section-heading h2,
.vision-copy h2,
.connect-card h2 {
  margin: 10px 0 0;
  font-size: clamp(35px, 4.6vw, 68px);
  line-height: 1.2;
  letter-spacing: -0.035em;
}

.section-heading p,
.vision-copy p,
.connect-card p {
  margin: 0;
  color: var(--muted);
}

.experience-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  perspective: 1100px;
}

.experience-card {
  position: relative;
  min-height: 610px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: clamp(24px, 3vw, 42px);
  border: 1px solid var(--line);
  border-radius: 30px;
  background: linear-gradient(155deg, rgba(17, 47, 68, 0.78), rgba(5, 17, 29, 0.92));
  box-shadow: var(--shadow);
  text-decoration: none;
  transform-style: preserve-3d;
  transition: border-color 0.35s ease, box-shadow 0.35s ease, transform 0.18s ease-out;
}

.experience-card:hover {
  border-color: rgba(101, 220, 249, 0.4);
  box-shadow: 0 32px 100px rgba(0, 0, 0, 0.42), inset 0 1px rgba(255, 255, 255, 0.05);
}

.ar-card:hover {
  border-color: rgba(183, 135, 255, 0.4);
}

.card-background {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.card-background span {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
}

.card-background span:nth-child(1) {
  top: -12%;
  right: -10%;
  width: 250px;
  height: 250px;
  background: rgba(30, 188, 231, 0.13);
}

.card-background span:nth-child(2) {
  left: -10%;
  bottom: 5%;
  width: 220px;
  height: 220px;
  background: rgba(21, 225, 174, 0.07);
}

.card-background span:nth-child(3) {
  inset: 28% auto auto 14%;
  width: 100px;
  height: 100px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  filter: none;
}

.ar-card .card-background span:nth-child(1) {
  background: rgba(149, 84, 255, 0.15);
}

.ar-card .card-background span:nth-child(2) {
  background: rgba(227, 109, 255, 0.08);
}

.card-topline,
.card-launch {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.card-number {
  color: #5c7581;
  font: 500 11px/1 sans-serif;
  letter-spacing: 0.18em;
}

.status-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border: 1px solid rgba(29, 224, 179, 0.18);
  border-radius: 999px;
  color: #8be8cc;
  background: rgba(29, 224, 179, 0.07);
  font-size: 9px;
}

.status-pill.violet {
  border-color: rgba(175, 131, 255, 0.2);
  color: #c9afff;
  background: rgba(154, 101, 250, 0.08);
}

.status-pill.violet i {
  background: var(--violet);
  box-shadow: 0 0 0 5px rgba(168, 132, 255, 0.08), 0 0 18px var(--violet);
}

.card-icon {
  position: relative;
  z-index: 2;
  width: 88px;
  height: 88px;
  display: grid;
  place-items: center;
  margin: 70px 0 32px auto;
  border: 1px solid rgba(87, 211, 243, 0.22);
  border-radius: 25px;
  color: #81e8ff;
  background: linear-gradient(145deg, rgba(44, 168, 201, 0.17), rgba(11, 43, 59, 0.22));
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.08), 0 16px 40px rgba(0, 0, 0, 0.2);
}

.ar-card .card-icon {
  border-color: rgba(181, 135, 255, 0.24);
  color: #d0b9ff;
  background: linear-gradient(145deg, rgba(139, 86, 230, 0.18), rgba(45, 26, 75, 0.24));
}

.card-icon svg {
  width: 40px;
}

.card-copy {
  position: relative;
  z-index: 2;
}

.card-copy > span {
  color: #66c8e3;
  font: 700 9px/1 sans-serif;
  letter-spacing: 0.2em;
}

.ar-card .card-copy > span {
  color: #bfa2f4;
}

.card-copy h3 {
  margin: 12px 0;
  font-size: clamp(26px, 3vw, 41px);
  line-height: 1.35;
}

.card-copy p {
  max-width: 580px;
  margin: 0;
  color: #99afba;
}

.card-copy ul {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  padding: 0;
  margin: 22px 0 0;
  list-style: none;
}

.card-copy li {
  padding: 6px 10px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 8px;
  color: #8ba2ad;
  background: rgba(255, 255, 255, 0.025);
  font-size: 9px;
}

.card-launch {
  margin-top: auto;
  padding-top: 30px;
  border-top: 1px solid var(--line);
  color: #dff8ff;
}

.card-launch b {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #04212a;
  background: #6de5fc;
  transition: transform 0.3s ease;
}

.ar-card .card-launch b {
  background: #ba9bff;
}

.experience-card:hover .card-launch b {
  transform: rotate(45deg) scale(1.08);
}

.vision-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(19, 85, 112, 0.08), transparent 35%, rgba(100, 48, 164, 0.07));
  border-block: 1px solid rgba(255, 255, 255, 0.04);
}

.vision-shell {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  align-items: center;
  gap: clamp(50px, 9vw, 150px);
}

.vision-copy p {
  max-width: 660px;
  margin-top: 24px;
  line-height: 2.1;
}

.vision-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 32px;
}

.vision-tags span {
  padding: 7px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #86a0ac;
  font: 500 9px/1 sans-serif;
  letter-spacing: 0.08em;
}

.vision-stack {
  display: grid;
  gap: 12px;
}

.vision-stack article {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  overflow: hidden;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: linear-gradient(120deg, rgba(20, 47, 66, 0.6), rgba(8, 24, 38, 0.45));
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.vision-stack article:hover {
  transform: translateX(-8px);
  border-color: rgba(91, 211, 242, 0.3);
}

.vision-stack article > span {
  color: #54727f;
  font: 500 10px/1 sans-serif;
}

.vision-stack article > div {
  display: grid;
}

.vision-stack strong {
  font-size: 18px;
}

.vision-stack small {
  margin-top: 4px;
  color: #7e97a2;
}

.vision-stack i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 22px var(--cyan);
}

.connect-section {
  padding-bottom: 150px;
}

.connect-card {
  position: relative;
  min-height: 480px;
  display: grid;
  place-content: center;
  justify-items: center;
  overflow: hidden;
  padding: 70px 24px;
  border: 1px solid var(--line-bright);
  border-radius: 34px;
  background:
    radial-gradient(circle at 50% 110%, rgba(27, 216, 181, 0.16), transparent 35%),
    radial-gradient(circle at 80% 0%, rgba(53, 165, 238, 0.14), transparent 35%),
    rgba(8, 27, 43, 0.68);
  box-shadow: var(--shadow);
  text-align: center;
  transform-style: preserve-3d;
  transition: transform 0.18s ease-out;
}

.connect-card::before,
.connect-card::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(124, 220, 246, 0.09);
  border-radius: 50%;
}

.connect-card::before {
  width: 580px;
  height: 580px;
}

.connect-card::after {
  width: 390px;
  height: 390px;
}

.connect-orb {
  position: absolute;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: rgba(40, 203, 231, 0.12);
  filter: blur(70px);
  animation: core-pulse 4s ease infinite;
}

.connect-card > *:not(.connect-orb) {
  position: relative;
  z-index: 2;
}

.connect-card p {
  max-width: 600px;
  margin-top: 18px;
}

.connect-actions {
  justify-content: center;
}

footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 34px var(--page-padding);
  border-top: 1px solid var(--line);
  color: #718894;
  font-size: 10px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-brand img {
  width: 46px;
}

.footer-brand span {
  display: grid;
  line-height: 1.2;
}

.footer-brand strong {
  color: #d7ebf2;
  font-size: 10px;
  letter-spacing: 0.14em;
}

.footer-brand small {
  margin-top: 4px;
  font-size: 7px;
  letter-spacing: 0.08em;
}

footer p {
  margin: 0;
}

footer > span:last-child {
  justify-self: end;
  direction: ltr;
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

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

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

@keyframes loader-bars {
  to {
    height: 10px;
    opacity: 0.45;
  }
}

@keyframes aurora-drift {
  to {
    transform: translate3d(8vw, 7vh, 0) scale(1.15);
  }
}

@keyframes status-pulse {
  50% {
    opacity: 0.45;
    transform: scale(0.8);
  }
}

@keyframes gradient-flow {
  to {
    background-position: -200% 0;
  }
}

@keyframes orbit-spin {
  to {
    transform: rotate(360deg);
  }
}

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

@keyframes core-pulse {
  50% {
    transform: scale(1.05);
    opacity: 0.55;
  }
}

@keyframes signal-one {
  0% {
    transform: rotate(0deg) translateX(155px) rotate(0deg);
  }
  100% {
    transform: rotate(360deg) translateX(155px) rotate(-360deg);
  }
}

@keyframes signal-two {
  0% {
    transform: rotate(120deg) translateX(230px) rotate(-120deg);
  }
  100% {
    transform: rotate(480deg) translateX(230px) rotate(-480deg);
  }
}

@keyframes signal-three {
  0% {
    transform: rotate(240deg) translateX(112px) rotate(-240deg);
  }
  100% {
    transform: rotate(600deg) translateX(112px) rotate(-600deg);
  }
}

@keyframes bars {
  to {
    height: 7px;
    opacity: 0.4;
  }
}

@keyframes scroll-line {
  0% {
    transform: translateX(110%);
  }
  100% {
    transform: translateX(-110%);
  }
}

@media (max-width: 1100px) {
  .site-header nav,
  .live-status {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 150px;
  }

  .hero-copy {
    max-width: 800px;
  }

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

  .orbit-stage {
    width: min(78vw, 610px);
  }

  .section-heading,
  .vision-shell {
    grid-template-columns: 1fr;
  }

  .section-heading p {
    max-width: 720px;
  }

  .vision-stack {
    max-width: 780px;
  }
}

@media (max-width: 760px) {
  :root {
    --header-height: 72px;
    --page-padding: 16px;
  }

  .site-header {
    gap: 12px;
    padding-inline: 16px;
  }

  .brand {
    max-width: calc(100vw - 32px);
  }

  .brand-logo {
    flex: 0 0 auto;
    width: 42px;
    height: 42px;
    border-radius: 13px;
  }

  .brand small,
  .mini-launch {
    display: none;
  }

  .hero {
    width: 100%;
    min-width: 0;
    min-height: auto;
    gap: 22px;
    padding-top: 128px;
    padding-bottom: 80px;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(39px, 13.5vw, 62px);
    overflow-wrap: anywhere;
  }

  .hero-lead {
    font-size: 14px;
  }

  .hero-actions {
    display: grid;
  }

  .primary-cta,
  .ghost-cta {
    width: 100%;
  }

  .hero-metrics {
    justify-content: space-between;
    gap: 12px;
  }

  .hero-metrics strong {
    font-size: 18px;
  }

  .hero-metrics span {
    font-size: 8px;
  }

  .hero-visual {
    width: 100%;
    min-height: min(500px, 122vw);
    margin-inline: 0;
  }

  .orbit-stage {
    width: min(100%, 460px);
  }

  .core {
    width: 155px;
  }

  .node-food {
    right: 2%;
  }

  .node-ar {
    left: 2%;
  }

  .node-soon,
  .panel-signal {
    display: none;
  }

  .panel-clock {
    right: max(4px, 4%);
    bottom: 2%;
  }

  .scroll-cue {
    display: none;
  }

  .experience-section,
  .vision-section,
  .connect-section {
    padding-block: 85px;
  }

  .section-heading {
    gap: 18px;
    margin-bottom: 30px;
  }

  .section-heading h2,
  .vision-copy h2,
  .connect-card h2 {
    font-size: 34px;
  }

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

  .experience-card {
    min-height: 560px;
    border-radius: 24px;
  }

  .card-icon {
    margin-top: 48px;
  }

  .vision-shell {
    gap: 50px;
  }

  .vision-stack article {
    padding: 17px;
  }

  .connect-card {
    min-height: 450px;
    border-radius: 25px;
  }

  footer {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  footer > span:last-child {
    justify-self: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  #network-canvas,
  .pointer-glow {
    display: none;
  }

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