/* ── TOKENS ── */
:root {
  --void: #030810;
  --deep: #060f1c;
  --ocean: #091829;
  --surface: rgba(255, 255, 255, 0.03);
  --edge: rgba(255, 255, 255, 0.06);
  --cyan: #00e5cc;
  --cyan-dim: rgba(0, 229, 204, 0.6);
  --cyan-ghost: rgba(0, 229, 204, 0.08);
  --green: #4dffb4;
  --amber: #ffaa44;
  --red-heat: #ff4d6a;
  --white: #eef4ff;
  --white60: rgba(238, 244, 255, 0.6);
  --white30: rgba(238, 244, 255, 0.3);
  --white12: rgba(238, 244, 255, 0.12);
  --white06: rgba(238, 244, 255, 0.06);
}
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  background: var(--void);
  color: var(--white);
  font-family: "Syne", sans-serif;
  font-weight: 400;
  overflow-x: hidden;
}

/* ── GRAIN ── */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23g)' opacity='0.025'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9998;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 500;
  padding: 22px 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.4s ease;
}
nav.scrolled {
  background: rgba(3, 8, 16, 0.92);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--edge);
  padding: 16px 56px;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.nav-logo img {
  max-height: 50px;
}
.footerImg img {
  max-height: 50px;
}
.nav-z {
  width: 36px;
  height: 36px;
  background: var(--cyan);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Playfair Display", serif;
  font-size: 20px;
  font-weight: 900;
  color: var(--void);
}
.nav-name {
  font-family: "Playfair Display", serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
}
.nav-name span {
  color: var(--cyan);
}
.nav-links {
  display: flex;
  gap: 38px;
  list-style: none;
}
.nav-links a {
  color: var(--white60);
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.nav-links a:hover {
  color: var(--cyan);
}
.nav-contact {
  background: transparent;
  border: 1px solid var(--cyan);
  color: var(--cyan);
  padding: 9px 22px;
  border-radius: 6px;
  font-family: "Syne", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.25s;
}
.nav-contact:hover {
  background: var(--cyan);
  color: var(--void);
}

/* ── HERO ── */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 0 56px;
}
.hero-canvas {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
/* Large rotating ring */
.hero-ring-outer {
  position: absolute;
  right: -15vw;
  top: 50%;
  transform: translateY(-50%);
  width: 90vmin;
  height: 90vmin;
  border-radius: 50%;
  border: 1px solid rgba(0, 229, 204, 0.08);
  animation: spin 80s linear infinite;
}
.hero-ring-mid {
  position: absolute;
  right: -10vw;
  top: 50%;
  transform: translateY(-50%);
  width: 70vmin;
  height: 70vmin;
  border-radius: 50%;
  border: 1px solid rgba(0, 229, 204, 0.12);
  animation: spinR 55s linear infinite;
}
.hero-ring-inner {
  position: absolute;
  right: -5vw;
  top: 50%;
  transform: translateY(-50%);
  width: 50vmin;
  height: 50vmin;
  border-radius: 50%;
  border: 1px solid rgba(0, 229, 204, 0.18);
  animation: spin 35s linear infinite;
}
.hero-glow {
  position: absolute;
  right: 5vw;
  top: 50%;
  transform: translateY(-50%);
  width: 38vmin;
  height: 38vmin;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(0, 229, 204, 0.12) 0%,
    rgba(0, 229, 204, 0.04) 40%,
    transparent 70%
  );
  animation: breathe 4s ease-in-out infinite;
}
/* Scattered data nodes */
.node {
  position: absolute;
  border-radius: 50%;
  background: var(--cyan);
  animation: nodeFloat var(--dur) ease-in-out infinite;
  animation-delay: var(--delay);
}
@keyframes spin {
  from {
    transform: translateY(-50%) rotate(0deg);
  }
  to {
    transform: translateY(-50%) rotate(360deg);
  }
}
@keyframes spinR {
  from {
    transform: translateY(-50%) rotate(0deg);
  }
  to {
    transform: translateY(-50%) rotate(-360deg);
  }
}
@keyframes breathe {
  0%,
  100% {
    opacity: 0.6;
    transform: translateY(-50%) scale(1);
  }
  50% {
    opacity: 1;
    transform: translateY(-50%) scale(1.05);
  }
}
@keyframes nodeFloat {
  0%,
  100% {
    opacity: 0.3;
    transform: translate(0, 0);
  }
  50% {
    opacity: 0.9;
    transform: translate(var(--tx), var(--ty));
  }
}
@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.8;
  }
  50% {
    transform: scale(1.5);
    opacity: 0.3;
  }
}

/* Malaysia SVG map glow */
.hero-map {
  position: absolute;
  right: 8vw;
  top: 50%;
  transform: translateY(-50%);
  width: 480px;
  height: 380px;
  opacity: 0.9;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 620px;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 30px;
  opacity: 0;
  animation: fadeUp 0.9s ease 0.1s forwards;
}
.hero-eyebrow-line {
  width: 28px;
  height: 1px;
  background: var(--cyan);
}
.hero-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(44px, 6vw, 82px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 26px;
  opacity: 0;
  animation: fadeUp 0.9s ease 0.25s forwards;
}
.hero-title .accent {
  color: var(--cyan);
}
.hero-title .italic {
  font-style: italic;
  font-weight: 400;
}
.hero-etymology {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeUp 0.9s ease 0.4s forwards;
  flex-wrap: wrap;
  gap: 6px 0;
}
.etym-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  background: var(--white06);
  border: 1px solid var(--white12);
  border-radius: 4px;
  font-size: 12px;
  margin-right: 2px;
}
.etym-lang {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white30);
}
.etym-word {
  font-family: "Playfair Display", serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--cyan);
  font-style: italic;
}
.etym-meaning {
  font-size: 11px;
  color: var(--white60);
  font-weight: 500;
}
.hero-desc {
  font-size: 16px;
  line-height: 1.85;
  color: var(--white60);
  margin-bottom: 48px;
  opacity: 0;
  animation: fadeUp 0.9s ease 0.55s forwards;
  max-width: 540px;
}
.hero-desc strong {
  color: var(--white);
  font-weight: 600;
}
.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.9s ease 0.7s forwards;
}
.btn-glow {
  background: var(--cyan);
  color: var(--void);
  border: none;
  padding: 14px 34px;
  border-radius: 7px;
  font-family: "Syne", sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.25s;
  box-shadow: 0 0 30px rgba(0, 229, 204, 0.25);
  display: inline-block;
}
.btn-glow:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 60px rgba(0, 229, 204, 0.45);
}
.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid var(--white12);
  padding: 14px 34px;
  border-radius: 7px;
  font-family: "Syne", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.25s;
  display: inline-block;
}
.btn-ghost:hover {
  border-color: var(--white30);
  transform: translateY(-3px);
}

/* scroll cue */
.scroll-cue {
  position: absolute;
  bottom: 40px;
  left: 56px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white30);
  opacity: 0;
  animation: fadeUp 1s ease 1.2s forwards;
}
.scroll-line {
  width: 40px;
  height: 1px;
  background: linear-gradient(90deg, var(--cyan), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%,
  100% {
    width: 40px;
  }
  50% {
    width: 70px;
  }
}

/* ── SECTION COMMON ── */
section {
  position: relative;
  padding: 110px 56px;
}
.container {
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
}
.eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cyan);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.eyebrow::before {
  content: "";
  width: 20px;
  height: 1px;
  background: var(--cyan);
}
.section-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(30px, 4vw, 54px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.section-title em {
  font-style: italic;
  color: var(--cyan);
}
.section-lead {
  font-size: 16px;
  line-height: 1.85;
  color: var(--white60);
  max-width: 620px;
  margin-bottom: 70px;
}

/* ── ZOYA MEANS LIFE ── */
#life {
  background: linear-gradient(
    180deg,
    var(--void) 0%,
    var(--deep) 50%,
    var(--void) 100%
  );
}
.life-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.life-right {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.life-stat {
  padding: 26px 30px;
  background: var(--surface);
  border: 1px solid var(--edge);
  border-radius: 14px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  transition: border-color 0.3s, transform 0.3s;
}
.life-stat:hover {
  border-color: rgba(0, 229, 204, 0.25);
  transform: translateX(4px);
}
.life-stat-num {
  font-family: "Playfair Display", serif;
  font-size: 42px;
  font-weight: 900;
  color: var(--cyan);
  line-height: 1;
  flex-shrink: 0;
}
.life-stat-body {
  padding-top: 4px;
}
.life-stat-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 5px;
}
.life-stat-desc {
  font-size: 12px;
  color: var(--white60);
  line-height: 1.6;
}

/* ── 4-STAGE EVOLUTION ── */
#evolution {
  background: var(--deep);
}
.evo-header {
  text-align: center;
  margin-bottom: 80px;
}
.evo-header .eyebrow {
  justify-content: center;
}
.evo-header .eyebrow::before {
  display: none;
}
.evo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--edge);
  border-radius: 24px;
  overflow: hidden;
  position: relative;
}
/* Connecting line across top */
.evo-grid::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--cyan) 20%,
    rgba(77, 255, 180, 0.8) 40%,
    rgba(255, 170, 68, 0.8) 70%,
    var(--red-heat) 100%
  );
  opacity: 0.6;
}
.evo-card {
  padding: 44px 32px;
  border-right: 1px solid var(--edge);
  position: relative;
  overflow: hidden;
  transition: background 0.4s;
  cursor: default;
}
.evo-card:last-child {
  border-right: none;
}
.evo-card:hover {
  background: rgba(0, 229, 204, 0.03);
}
/* Stage number watermark */
.evo-num {
  position: absolute;
  bottom: -10px;
  right: 16px;
  font-family: "Playfair Display", serif;
  font-size: 110px;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.02);
  line-height: 1;
  user-select: none;
}
/* Animated SVG orbit for each card */
.evo-visual {
  width: 120px;
  height: 120px;
  margin: 0 auto 30px;
  position: relative;
}
.evo-visual svg {
  width: 100%;
  height: 100%;
}

.evo-stage-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.evo-stage-tag::before {
  content: "";
  width: 14px;
  height: 2px;
}
.evo-card:nth-child(1) .evo-stage-tag {
  color: var(--cyan);
}
.evo-card:nth-child(1) .evo-stage-tag::before {
  background: var(--cyan);
}
.evo-card:nth-child(2) .evo-stage-tag {
  color: var(--green);
}
.evo-card:nth-child(2) .evo-stage-tag::before {
  background: var(--green);
}
.evo-card:nth-child(3) .evo-stage-tag {
  color: var(--amber);
}
.evo-card:nth-child(3) .evo-stage-tag::before {
  background: var(--amber);
}
.evo-card:nth-child(4) .evo-stage-tag {
  color: var(--red-heat);
}
.evo-card:nth-child(4) .evo-stage-tag::before {
  background: var(--red-heat);
}

.evo-name {
  font-family: "Playfair Display", serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 14px;
}
.evo-desc {
  font-size: 12px;
  line-height: 1.75;
  color: var(--white60);
}
.evo-desc strong {
  color: var(--white);
  font-weight: 600;
}
/* Arrow between cards */
.evo-arrow {
  position: absolute;
  right: -1px;
  top: 50%;
  transform: translateY(-50%);
  width: 22px;
  height: 22px;
  background: var(--deep);
  border: 1px solid var(--edge);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
.evo-arrow::after {
  content: "→";
  font-size: 10px;
  color: var(--white30);
}

/* ── DATA SOVEREIGNTY ── */
#sovereignty {
  background: var(--void);
  overflow: hidden;
}
.sov-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}
.sov-visual {
  position: relative;
  height: 440px;
}
/* Sovereign lock visualization */
.sov-rings-wrap {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sov-ring {
  position: absolute;
  border-radius: 50%;
  border-style: solid;
}
.sov-ring-1 {
  width: 380px;
  height: 380px;
  border-width: 1px;
  border-color: rgba(0, 229, 204, 0.08);
  animation: spin 60s linear infinite;
}
.sov-ring-2 {
  width: 300px;
  height: 300px;
  border-width: 1px;
  border-color: rgba(0, 229, 204, 0.13);
  animation: spinR 40s linear infinite;
}
.sov-ring-3 {
  width: 220px;
  height: 220px;
  border-width: 1px;
  border-color: rgba(0, 229, 204, 0.2);
  animation: spin 25s linear infinite;
}
.sov-core {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(0, 229, 204, 0.18) 0%,
    rgba(0, 229, 204, 0.04) 60%,
    transparent 80%
  );
  border: 1px solid rgba(0, 229, 204, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  animation: breathe 3s ease-in-out infinite;
  position: relative;
  z-index: 2;
}
/* Orbit dots */
.sov-dot {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 12px var(--cyan);
}
.sov-principles {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.sov-principle {
  padding: 20px 24px;
  background: var(--surface);
  border: 1px solid var(--edge);
  border-radius: 12px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: border-color 0.3s, transform 0.3s;
}
.sov-principle:hover {
  border-color: rgba(0, 229, 204, 0.25);
  transform: translateX(5px);
}
.sov-icon {
  font-size: 20px;
  flex-shrink: 0;
  margin-top: 2px;
}
.sov-text {
}
.sov-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}
.sov-body {
  font-size: 12px;
  color: var(--white60);
  line-height: 1.65;
}

/* ── PRODUCTS ── */
#solutions {
  background: var(--deep);
}
.solutions-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.solution-card {
  border-radius: 20px;
  border: 1px solid var(--edge);
  padding: 50px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s, border-color 0.3s;
}
.solution-card:hover {
  transform: translateY(-6px);
}
.solution-card.primary {
  border-color: rgba(0, 229, 204, 0.2);
  background: linear-gradient(
    135deg,
    rgba(0, 229, 204, 0.05) 0%,
    rgba(0, 229, 204, 0.01) 100%
  );
}
.solution-card.secondary {
  border-color: rgba(77, 255, 180, 0.2);
  background: linear-gradient(
    135deg,
    rgba(77, 255, 180, 0.04) 0%,
    rgba(77, 255, 180, 0.01) 100%
  );
}
.solution-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
}
.solution-card.primary::before {
  background: linear-gradient(90deg, var(--cyan), transparent);
}
.solution-card.secondary::before {
  background: linear-gradient(90deg, var(--green), transparent);
}
.sol-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 18px;
  padding: 4px 10px;
  border-radius: 4px;
  display: inline-block;
}
.sol-label.cyan {
  color: var(--cyan);
  background: rgba(0, 229, 204, 0.1);
  border: 1px solid rgba(0, 229, 204, 0.2);
}
.sol-label.green {
  color: var(--green);
  background: rgba(77, 255, 180, 0.1);
  border: 1px solid rgba(77, 255, 180, 0.2);
}
.sol-name {
  font-family: "Playfair Display", serif;
  font-size: 44px;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 6px;
}
.sol-name.cyan {
  color: var(--cyan);
}
.sol-name.green {
  color: var(--green);
}
.sol-tagline {
  font-size: 14px;
  color: var(--white60);
  font-style: italic;
  margin-bottom: 28px;
  font-family: "Playfair Display", serif;
}
.sol-desc {
  font-size: 14px;
  line-height: 1.8;
  color: var(--white60);
  margin-bottom: 32px;
}
.sol-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.sol-features li {
  font-size: 13px;
  color: var(--white60);
  padding-left: 16px;
  position: relative;
  line-height: 1.5;
}
.sol-features li::before {
  content: "·";
  position: absolute;
  left: 0;
  font-size: 18px;
  line-height: 1;
  margin-top: -1px;
}
.sol-features.cyan li::before {
  color: var(--cyan);
}
.sol-features.green li::before {
  color: var(--green);
}
.sol-bg-text {
  position: absolute;
  bottom: -20px;
  right: -10px;
  font-family: "Playfair Display", serif;
  font-size: 120px;
  font-weight: 900;
  opacity: 0.03;
  line-height: 1;
  user-select: none;
}

/* ── VISION ── */
#vision {
  background: var(--void);
  text-align: center;
  padding: 130px 56px;
}
.vision-content {
  max-width: 780px;
  margin: 0 auto;
}
.vision-quote {
  font-family: "Playfair Display", serif;
  font-size: clamp(24px, 3.5vw, 42px);
  font-weight: 400;
  line-height: 1.45;
  letter-spacing: -0.01em;
  color: var(--white);
  margin-bottom: 44px;
  font-style: italic;
}
.vision-quote em {
  font-style: normal;
  color: var(--cyan);
}
.vision-quote strong {
  font-style: normal;
  font-weight: 900;
}
.vision-countries {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}
.country-chip {
  padding: 7px 16px;
  background: var(--surface);
  border: 1px solid var(--edge);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  color: var(--white60);
  transition: all 0.25s;
}
.country-chip:hover {
  border-color: rgba(0, 229, 204, 0.4);
  color: var(--cyan);
}
.country-chip.active {
  background: rgba(0, 229, 204, 0.1);
  border-color: rgba(0, 229, 204, 0.4);
  color: var(--cyan);
}
/* Timeline strip */
.timeline-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--edge);
  border: 1px solid var(--edge);
  border-radius: 14px;
  overflow: hidden;
  text-align: left;
  margin-top: 0;
}
.tl-item {
  background: var(--surface);
  padding: 24px;
}
.tl-year {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 8px;
}
.tl-title {
  font-family: "Playfair Display", serif;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.3;
}
.tl-items {
  font-size: 11px;
  color: var(--white30);
  line-height: 1.7;
}

/* ── CONTACT ── */
#contact {
  background: var(--deep);
  border-top: 1px solid var(--edge);
}
.convoform {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
}
.w-half {
  width: calc(50% - 5px);
}
.w-full {
  width: 100%;
}
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: start;
}
.contact-giant-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(36px, 5vw, 68px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 28px;
}
.contact-giant-title em {
  font-style: italic;
  color: var(--cyan);
}
.contact-body {
  font-size: 15px;
  line-height: 1.85;
  color: var(--white60);
  margin-bottom: 50px;
}
.contact-lines {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.cl {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.cl-icon {
  width: 36px;
  height: 36px;
  background: var(--cyan-ghost);
  border: 1px solid rgba(0, 229, 204, 0.2);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  flex-shrink: 0;
}
.cl-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white30);
  margin-bottom: 4px;
}
.cl-val {
  font-size: 14px;
  color: var(--white);
  line-height: 1.5;
}
.cl-val a {
  color: var(--cyan);
  text-decoration: none;
  transition: opacity 0.2s;
}
.cl-val a:hover {
  opacity: 0.7;
}
/* Contact form */
.contact-form {
  background: var(--surface);
  border: 1px solid var(--edge);
  border-radius: 20px;
  padding: 20px;
}
.cf-title {
  font-family: "Playfair Display", serif;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 28px;
}
.cf-group {
  margin-bottom: 16px;
}
.cf-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white30);
  display: block;
  margin-bottom: 6px;
}
.cf-input,
.cf-select,
.cf-ta {
  width: 100%;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid var(--edge);
  border-radius: 8px;
  padding: 11px 14px;
  color: var(--white);
  font-family: "Syne", sans-serif;
  font-size: 13px;
  outline: none;
  transition: border-color 0.2s;
  resize: vertical;
}
.cf-input:focus,
.cf-select:focus,
.cf-ta:focus {
  border-color: rgba(0, 229, 204, 0.4);
}
.cf-ta {
  min-height: 80px;
}
.cf-select option {
  background: #060f1c;
}
.cf-submit {
  width: 100%;
  background: var(--cyan);
  color: var(--void);
  border: none;
  border-radius: 8px;
  padding: 14px;
  margin-top: 6px;
  font-family: "Syne", sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.25s;
}
.cf-submit:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 229, 204, 0.3);
}
.cf-note {
  font-size: 11px;
  color: var(--white30);
  margin-top: 12px;
  text-align: center;
  line-height: 1.6;
}

/* ── FOOTER ── */
footer {
  background: var(--void);
  border-top: 1px solid var(--edge);
  padding: 36px 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.fz {
  width: 28px;
  height: 28px;
  background: var(--cyan);
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Playfair Display", serif;
  font-size: 16px;
  font-weight: 900;
  color: var(--void);
}
.fn {
  font-family: "Playfair Display", serif;
  font-size: 15px;
  font-weight: 700;
}
.fn span {
  color: var(--cyan);
}
.footer-center {
  font-size: 11px;
  color: var(--white30);
  text-align: center;
  line-height: 1.8;
}
.footer-right {
  font-size: 11px;
  color: var(--white30);
  text-align: right;
}
.footer-domains {
  display: flex;
  gap: 14px;
  margin-top: 5px;
  justify-content: flex-end;
}
.footer-domains a {
  text-decoration: none;
}
.fd {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  color: var(--cyan);
  opacity: 0.5;
  transition: opacity 0.2s;
  cursor: default;
}
.fd:hover {
  opacity: 1;
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.reveal.in {
  opacity: 1;
  transform: none;
}

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  nav {
    padding: 16px 24px;
  }
  nav.scrolled {
    padding: 14px 24px;
  }
  .nav-links,
  .nav-contact {
    display: none;
  }
  section {
    padding: 80px 24px;
  }
  #hero {
    padding: 0 24px;
  }
  .hero-map {
    display: none;
  }
  .hero-ring-outer,
  .hero-ring-mid,
  .hero-ring-inner,
  .hero-glow {
    display: none;
  }
  .life-layout,
  .sov-layout,
  .solutions-grid,
  .contact-layout {
    grid-template-columns: 1fr;
  }
  .sov-visual {
    height: 280px;
  }
  .evo-grid {
    grid-template-columns: 1fr 1fr;
  }
  .timeline-strip {
    grid-template-columns: 1fr 1fr;
  }
  footer {
    flex-direction: column;
    text-align: center;
  }
  .footer-domains,
  .footer-right {
    justify-content: center;
    text-align: center;
  }
  .contact-form {
    padding: 20px;
  }
}
@media (max-width: 600px) {
  .evo-grid {
    grid-template-columns: 1fr;
  }
  .timeline-strip {
    grid-template-columns: 1fr;
  }
  .hero-etymology {
    flex-direction: column;
  }
  .hero-ctas {
    flex-direction: column;
  }
}
