:root {
  --bg: #07111f;
  --bg-alt: #0f1d34;
  --surface: rgba(11, 22, 42, 0.6);
  --surface-strong: rgba(13, 27, 51, 0.85);
  --line: rgba(169, 205, 255, 0.15);
  --text: #f6f8ff;
  --muted: #afbdd7;
  --primary: #47d7ac;
  --secondary: #7cb7ff;
  --accent: #ffd166;
  --shadow: 0 30px 80px rgba(2, 10, 26, 0.48);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: min(1180px, calc(100% - 2rem));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Outfit", sans-serif;
  background:
    radial-gradient(circle at 20% 20%, rgba(71, 215, 172, 0.18), transparent 28%),
    radial-gradient(circle at 80% 15%, rgba(124, 183, 255, 0.18), transparent 24%),
    linear-gradient(135deg, #06101d 0%, #0b1730 48%, #050b16 100%);
  color: var(--text);
  overflow-x: hidden;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.page-shell {
  position: relative;
  isolation: isolate;
  min-height: 100vh;
}

.ambient,
.ambient-grid {
  position: fixed;
  inset: 0;
  pointer-events: none;
  will-change: transform, opacity;
}

.ambient-a {
  background: radial-gradient(circle, rgba(71, 215, 172, 0.16) 0%, transparent 52%);
  filter: blur(40px);
  transform: translate3d(-20%, -10%, 0);
}

.ambient-b {
  background: radial-gradient(circle, rgba(124, 183, 255, 0.16) 0%, transparent 52%);
  filter: blur(46px);
  transform: translate3d(35%, 5%, 0);
}

.ambient-grid {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(circle at center, black 35%, transparent 85%);
  opacity: 0.55;
}

.topbar,
.hero,
.section,
.marquee-band {
  width: var(--container);
  margin-inline: auto;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 0;
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
}

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

.brand-mark {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(145deg, var(--primary), var(--secondary));
  color: #04101d;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  box-shadow: 0 10px 30px rgba(71, 215, 172, 0.3);
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.brand-text strong,
.brand-text em {
  font-style: normal;
}

.brand-text strong {
  font-size: 0.98rem;
  letter-spacing: 0.03em;
}

.brand-text em {
  color: var(--muted);
  font-size: 0.78rem;
}

.nav {
  display: flex;
  gap: 1.4rem;
  padding: 0.9rem 1.2rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(7, 17, 31, 0.45);
}

.nav a {
  color: var(--muted);
  transition: color 180ms ease;
}

.nav a:hover {
  color: var(--text);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 50px;
  padding: 0.85rem 1.35rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

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

.button-primary {
  color: #08101f;
  background: linear-gradient(120deg, var(--primary), #86f7d4);
  box-shadow: 0 12px 40px rgba(71, 215, 172, 0.25);
}

.button-secondary,
.button-ghost {
  color: var(--text);
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.04);
}

.button-mini {
  min-height: 40px;
  padding: 0.6rem 1rem;
  font-size: 0.88rem;
}

.hero {
  min-height: min(calc(100vh - 92px), 820px);
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 2rem;
  padding: 2rem 0 1.5rem;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--accent);
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.hero-copy h1,
.section-heading h2,
.about-panel h2,
.contact-card h2 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  line-height: 0.98;
}

.hero-copy h1 {
  font-size: clamp(2.8rem, 6.2vw, 5.2rem);
  max-width: 11ch;
}

.hero-copy h1 span {
  display: inline-block;
  color: var(--secondary);
  text-shadow: 0 0 24px rgba(124, 183, 255, 0.2);
}

.hero-text {
  max-width: 62ch;
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
}

.partner-inline-badge {
  margin-top: 1.25rem;
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 0.85rem 1rem;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    rgba(9, 18, 35, 0.78);
  box-shadow: 0 18px 42px rgba(2, 10, 26, 0.3);
}

.partner-inline-copy span,
.partner-inline-copy strong {
  display: block;
}

.partner-inline-copy span {
  color: var(--accent);
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.partner-inline-copy strong {
  margin-top: 0.35rem;
  font-size: 1rem;
}

.partner-inline-badge img {
  width: 120px;
  max-width: 32vw;
  height: auto;
  display: block;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.18));
}

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

.stat-card,
.solution-card,
.floating-panel,
.about-panel,
.contact-card,
.industry-center {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  backdrop-filter: blur(24px);
  will-change: transform, opacity;
  transform: translate3d(0, 0, 0);
}

.stat-card {
  padding: 1rem;
  border-radius: var(--radius-md);
}

.stat-card strong {
  display: block;
  font-size: 1.2rem;
  margin-bottom: 0.25rem;
}

.stat-card span {
  color: var(--muted);
  font-size: 0.88rem;
}

.hero-visual {
  perspective: 1600px;
}

.core-scene {
  position: relative;
  min-height: 520px;
  display: grid;
  place-items: center;
  transform-style: preserve-3d;
  transform: scale(0.88);
  transform-origin: center;
}

.core-ring,
.core-orb {
  position: absolute;
  border-radius: 50%;
}

.core-ring {
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 0 50px rgba(124, 183, 255, 0.08);
}

.ring-outer {
  width: 500px;
  height: 500px;
  animation: spin 18s linear infinite;
}

.ring-mid {
  width: 360px;
  height: 360px;
  animation: spin-reverse 13s linear infinite;
}

.ring-inner {
  width: 250px;
  height: 250px;
  animation: pulse 5.5s ease-in-out infinite;
}

.core-orb {
  width: 180px;
  height: 180px;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.9), transparent 22%),
    linear-gradient(135deg, var(--secondary), var(--primary));
  box-shadow:
    0 0 80px rgba(124, 183, 255, 0.35),
    inset 0 -16px 30px rgba(5, 15, 28, 0.3);
  transform: translateZ(80px);
}

.core-orb span {
  color: #07111f;
  font-family: "Space Grotesk", sans-serif;
  font-size: 4.8rem;
  font-weight: 700;
}

.floating-panel {
  position: absolute;
  width: 220px;
  padding: 1rem 1rem 1.1rem;
  border-radius: 22px;
}

.floating-panel span {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--accent);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.floating-panel strong {
  font-size: 0.95rem;
  line-height: 1.45;
}

.panel-top {
  top: 70px;
  left: 30px;
  transform: translateZ(70px);
  animation: float 6s ease-in-out infinite;
}

.panel-right {
  top: 220px;
  right: 0;
  transform: translateZ(110px);
  animation: float 7s ease-in-out infinite 0.8s;
}

.panel-bottom {
  bottom: 60px;
  left: 90px;
  transform: translateZ(90px);
  animation: float 8s ease-in-out infinite 0.4s;
}

.marquee-band {
  overflow: hidden;
  border-block: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
}

.marquee-track {
  display: flex;
  gap: 1rem;
  width: max-content;
  padding: 1rem 0;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  animation: marquee 22s linear infinite;
}

.marquee-track span {
  padding: 0.65rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.gst-focus-layout {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 2rem;
  align-items: center;
}

.gst-copy h2 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2.2rem, 4.4vw, 4.2rem);
  line-height: 0.98;
  max-width: 12ch;
}

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

.gst-point {
  padding: 1.2rem;
  border-radius: 22px;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    rgba(9, 18, 35, 0.72);
  box-shadow: var(--shadow);
}

.gst-point strong,
.gst-point span {
  display: block;
}

.gst-point strong {
  margin-bottom: 0.45rem;
  font-size: 1rem;
}

.gst-point span {
  color: var(--muted);
  line-height: 1.55;
  font-size: 0.92rem;
}

.gst-visual {
  perspective: 1800px;
}

.partner-spotlight {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.2rem;
  align-items: center;
  padding: 1.3rem;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    radial-gradient(circle at right center, rgba(255, 209, 102, 0.14), transparent 30%),
    radial-gradient(circle at left center, rgba(124, 183, 255, 0.12), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  box-shadow: var(--shadow);
}

.partner-spotlight-copy h3 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  line-height: 1.02;
}

.partner-spotlight-copy p:last-child {
  margin: 0.9rem 0 0;
  color: var(--muted);
  line-height: 1.65;
  max-width: 56ch;
}

.partner-spotlight-logo {
  display: grid;
  place-items: center;
  padding: 1rem;
  min-height: 160px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.02)),
    rgb(255, 255, 255);
}

.partner-spotlight-logo img {
  max-width: min(100%, 260px);
  height: auto;
  display: block;
  filter: drop-shadow(0 10px 22px rgba(0, 0, 0, 0.16));
}

.gst-engine {
  position: relative;
  min-height: 580px;
  display: grid;
  place-items: center;
  transform-style: preserve-3d;
}

.gst-plate,
.ledger-card,
.gst-screen {
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.gst-plate {
  position: absolute;
  width: 360px;
  height: 360px;
  border-radius: 36px;
  background: linear-gradient(145deg, rgba(124, 183, 255, 0.12), rgba(255, 255, 255, 0.03));
}

.gst-plate-back {
  transform: rotate(-18deg) translateZ(20px);
  box-shadow: 0 20px 60px rgba(124, 183, 255, 0.12);
  animation: gstFloatA 8s ease-in-out infinite;
}

.gst-plate-mid {
  transform: rotate(12deg) translateZ(70px);
  background: linear-gradient(145deg, rgba(71, 215, 172, 0.12), rgba(255, 255, 255, 0.03));
  animation: gstFloatB 7s ease-in-out infinite;
}

.gst-plate-front {
  display: grid;
  place-items: center;
  transform: rotate(-8deg) translateZ(140px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.02)),
    rgba(10, 20, 38, 0.82);
  animation: gstFloatC 6s ease-in-out infinite;
}

.gst-screen {
  width: 250px;
  min-height: 210px;
  padding: 1.2rem;
  border-radius: 28px;
  background:
    radial-gradient(circle at top left, rgba(71, 215, 172, 0.22), transparent 42%),
    radial-gradient(circle at bottom right, rgba(255, 209, 102, 0.18), transparent 40%),
    rgba(8, 16, 31, 0.8);
  transform: translateZ(60px);
}

.gst-screen span,
.gst-screen strong,
.gst-screen em {
  display: block;
  font-style: normal;
}

.gst-screen span {
  color: var(--accent);
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.gst-screen strong {
  margin: 0.75rem 0 0.55rem;
  font-family: "Space Grotesk", sans-serif;
  font-size: 2rem;
  line-height: 1.05;
}

.gst-screen em {
  color: var(--muted);
  line-height: 1.6;
}

.gst-ledger-stack {
  position: absolute;
  width: 100%;
  height: 100%;
  inset: 0;
  transform-style: preserve-3d;
}

.ledger-card {
  position: absolute;
  width: 130px;
  min-height: 130px;
  padding: 1rem;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.03)),
    rgba(7, 17, 31, 0.78);
}

.ledger-card span,
.ledger-card strong {
  display: block;
}

.ledger-card span {
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
}

.ledger-card strong {
  margin-top: 0.9rem;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.5rem;
}

.ledger-card-a {
  top: 80px;
  right: 30px;
  transform: rotate(10deg) translateZ(220px);
  border-color: rgba(124, 183, 255, 0.28);
  animation: ledgerDriftA 7s ease-in-out infinite;
}

.ledger-card-b {
  bottom: 90px;
  left: 26px;
  transform: rotate(-12deg) translateZ(180px);
  border-color: rgba(71, 215, 172, 0.28);
  animation: ledgerDriftB 6.5s ease-in-out infinite;
}

.ledger-card-c {
  bottom: 50px;
  right: 70px;
  transform: rotate(16deg) translateZ(240px);
  border-color: rgba(255, 209, 102, 0.26);
  animation: ledgerDriftC 8s ease-in-out infinite;
}

.gst-beam,
.gst-orbit-dot {
  position: absolute;
  border-radius: 999px;
}

.gst-beam {
  width: 14px;
  height: 220px;
  filter: blur(1px);
  opacity: 0.8;
}

.gst-beam-a {
  left: 70px;
  top: 120px;
  background: linear-gradient(180deg, rgba(124, 183, 255, 0), rgba(124, 183, 255, 0.9), rgba(124, 183, 255, 0));
  transform: rotate(-24deg) translateZ(50px);
}

.gst-beam-b {
  right: 55px;
  bottom: 90px;
  background: linear-gradient(180deg, rgba(71, 215, 172, 0), rgba(71, 215, 172, 0.9), rgba(255, 209, 102, 0));
  transform: rotate(26deg) translateZ(80px);
}

.gst-orbit-dot {
  width: 22px;
  height: 22px;
  box-shadow: 0 0 30px currentColor;
}

.gst-dot-a {
  top: 100px;
  left: 120px;
  color: #7cb7ff;
  background: currentColor;
}

.gst-dot-b {
  top: 170px;
  right: 105px;
  color: #ffd166;
  background: currentColor;
}

.gst-dot-c {
  bottom: 115px;
  left: 150px;
  color: #47d7ac;
  background: currentColor;
}

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

.section::before {
  content: "";
  position: absolute;
  inset: 2rem 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.16), transparent);
  pointer-events: none;
}

.section-heading {
  display: grid;
  gap: 1rem;
  margin-bottom: 2.2rem;
}

.section-heading h2,
.about-panel h2,
.contact-card h2 {
  font-size: clamp(2rem, 4vw, 3.6rem);
  max-width: 14ch;
}

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

.client-showcase {
  position: relative;
  padding: 2rem;
  border-radius: 36px;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at top center, rgba(124, 183, 255, 0.12), transparent 28%),
    radial-gradient(circle at bottom right, rgba(71, 215, 172, 0.12), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  overflow: hidden;
}

.client-showcase::before {
  content: "";
  position: absolute;
  inset: 8% 20% auto 20%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.24), transparent);
}

.client-orbit-core {
  width: min(100%, 460px);
  margin: 0 auto 2rem;
  padding: 1.35rem 1.5rem;
  text-align: center;
  border-radius: 999px;
  border: 1px solid rgba(169, 205, 255, 0.18);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    rgba(8, 16, 31, 0.72);
  box-shadow: 0 22px 60px rgba(2, 10, 26, 0.34);
}

.client-orbit-core span,
.client-orbit-core strong,
.client-orbit-core em {
  display: block;
  font-style: normal;
}

.client-orbit-core span {
  color: var(--accent);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.client-orbit-core strong {
  margin: 0.6rem 0 0.35rem;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.5rem, 3vw, 2.3rem);
}

.client-orbit-core em {
  color: var(--muted);
}

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

.client-card {
  min-height: 150px;
  padding: 1rem;
  display: grid;
  place-items: center;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    rgba(9, 18, 35, 0.78);
  box-shadow: 0 24px 60px rgba(2, 10, 26, 0.28);
  position: relative;
  overflow: hidden;
}

.client-card::before {
  content: "";
  position: absolute;
  inset: auto -16% -34% auto;
  width: 120px;
  height: 120px;
  border-radius: 28px;
  transform: rotate(24deg);
  background: linear-gradient(145deg, rgba(124, 183, 255, 0.18), transparent);
  pointer-events: none;
}

.client-card:nth-child(3n)::before {
  background: linear-gradient(145deg, rgba(71, 215, 172, 0.18), transparent);
}

.client-card:nth-child(4n)::before {
  background: linear-gradient(145deg, rgba(255, 209, 102, 0.18), transparent);
}

.client-card img {
  max-width: 100%;
  max-height: 96px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.18));
}

.solution-card {
  position: relative;
  padding: 1.4rem;
  min-height: 220px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.solution-card::before {
  content: "";
  position: absolute;
  inset: auto -18% -42% auto;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(71, 215, 172, 0.22), transparent 65%);
}

.solution-no {
  display: inline-flex;
  margin-bottom: 1rem;
  padding: 0.45rem 0.65rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--accent);
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.78rem;
}

.solution-card h3 {
  margin: 0 0 0.7rem;
  font-size: 1.35rem;
}

.solution-card p,
.feature-list p,
.contact-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.industry-orbit {
  position: relative;
  min-height: 780px;
  margin-bottom: 2rem;
  border-radius: 40px;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at center, rgba(124, 183, 255, 0.18), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
  overflow: hidden;
}

.industry-orbit::before {
  content: "";
  position: absolute;
  inset: auto 10% 6% 10%;
  height: 160px;
  background: radial-gradient(circle at center, rgba(71, 215, 172, 0.22), transparent 68%);
  filter: blur(34px);
  opacity: 0.7;
}

.orbit-stage {
  position: relative;
  min-height: 780px;
  padding: 4rem 2rem;
  overflow: visible;
  transform-style: preserve-3d;
}

.orbit-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(20px);
  opacity: 0.7;
}

.orbit-glow-a {
  width: 280px;
  height: 280px;
  top: 10%;
  left: 8%;
  background: radial-gradient(circle, rgba(124, 183, 255, 0.22), transparent 64%);
}

.orbit-glow-b {
  width: 320px;
  height: 320px;
  right: 6%;
  bottom: 10%;
  background: radial-gradient(circle, rgba(71, 215, 172, 0.18), transparent 66%);
}

.orbit-rings,
.industry-cloud {
  position: absolute;
  inset: 0;
  transform-style: preserve-3d;
}

.orbit-ring {
  position: absolute;
  inset: 50% auto auto 50%;
  translate: -50% -50%;
  border-radius: 50%;
  border: 1px dashed rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 0 40px rgba(124, 183, 255, 0.04);
}

.orbit-ring-outer {
  width: min(78vw, 680px);
  height: min(78vw, 680px);
  border-style: solid;
  border-color: rgba(124, 183, 255, 0.12);
  box-shadow:
    inset 0 0 40px rgba(124, 183, 255, 0.06),
    0 0 80px rgba(124, 183, 255, 0.05);
}

.orbit-ring-mid {
  width: min(62vw, 540px);
  height: min(62vw, 540px);
  border-style: dashed;
  border-color: rgba(71, 215, 172, 0.16);
}

.orbit-ring-inner {
  width: min(46vw, 400px);
  height: min(46vw, 400px);
  border-style: dotted;
  border-color: rgba(255, 209, 102, 0.2);
}

.industry-center {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 1.1rem;
  z-index: 3;
  transform: translate(-50%, -50%);
  background: linear-gradient(185deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(24px);
  box-shadow: 0 24px 80px rgba(2, 10, 26, 0.62);
}

.industry-center span,
.industry-center em {
  color: var(--muted);
  font-style: normal;
}

.industry-center span {
  font-size: 0.74rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.industry-center em {
  font-size: 0.65rem;
  letter-spacing: 0.05em;
}

.industry-center strong {
  margin: 0.35rem 0 0.35rem;
  font-size: 1.35rem;
  font-family: "Space Grotesk", sans-serif;
  line-height: 1.15;
}

.industry-cloud span {
  position: absolute;
  top: 50%;
  left: 50%;
  padding: 0.85rem 1.1rem;
  border-radius: 999px;
  border: 1px solid rgba(169, 205, 255, 0.22);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.03)),
    rgba(8, 16, 31, 0.82);
  box-shadow: 0 18px 48px rgba(2, 10, 26, 0.46);
  color: var(--text);
  white-space: nowrap;
  transform: translate(-50%, -50%);
  z-index: 2;
  will-change: transform, opacity;
  transition:
    box-shadow 220ms ease,
    border-color 220ms ease,
    background 220ms ease,
    transform 220ms ease;
}

.industry-cloud span::before {
  content: "";
  position: absolute;
  inset: auto 14% -12px 14%;
  height: 12px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(4, 10, 21, 0.55), transparent 72%);
  filter: blur(5px);
  pointer-events: none;
}

.industry-cloud span::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.08), transparent 38%);
  opacity: 0.75;
  pointer-events: none;
}

.industry-cloud span[data-orbit="outer"] {
  border-color: rgba(124, 183, 255, 0.2);
}

.industry-cloud span[data-orbit="mid"] {
  border-color: rgba(71, 215, 172, 0.22);
}

.industry-cloud span[data-orbit="inner"] {
  border-color: rgba(255, 209, 102, 0.22);
}

.industry-cloud span[data-orbit="satellite"] {
  border-color: rgba(255, 255, 255, 0.26);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.03)),
    rgba(36, 18, 72, 0.78);
}

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

.preview-card {
  min-height: 180px;
  padding: 1.5rem;
  border-radius: 28px;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    rgba(9, 18, 35, 0.68);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.preview-card::before {
  content: "";
  position: absolute;
  inset: auto -10% -30% auto;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  opacity: 0.8;
}

.preview-finance::before {
  background: radial-gradient(circle, rgba(124, 183, 255, 0.32), transparent 65%);
}

.preview-retail::before {
  background: radial-gradient(circle, rgba(255, 209, 102, 0.34), transparent 65%);
}

.preview-mandi::before {
  background: radial-gradient(circle, rgba(71, 215, 172, 0.32), transparent 65%);
}

.preview-card .preview-icon {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--accent);
  margin-bottom: 1.1rem;
  transition: transform 0.35s cubic-bezier(0.25, 0.8, 0.25, 1), background-color 0.25s ease;
}

.preview-finance .preview-icon {
  color: var(--accent);
  border-color: rgba(124, 183, 255, 0.2);
}

.preview-retail .preview-icon {
  color: #ffd166;
  border-color: rgba(255, 209, 102, 0.2);
}

.preview-mandi .preview-icon {
  color: var(--primary);
  border-color: rgba(71, 215, 172, 0.2);
}

.preview-card:hover .preview-icon {
  transform: scale(1.1) rotate(6deg);
}

.preview-finance:hover .preview-icon {
  background: rgba(124, 183, 255, 0.12);
  color: #ffffff;
}

.preview-retail:hover .preview-icon {
  background: rgba(255, 209, 102, 0.12);
  color: #ffffff;
}

.preview-mandi:hover .preview-icon {
  background: rgba(71, 215, 172, 0.12);
  color: #ffffff;
}

.preview-card span {
  display: inline-flex;
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--muted);
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 500;
  transition: color 0.25s ease, background-color 0.25s ease;
}

.preview-finance:hover span {
  background: rgba(124, 183, 255, 0.12);
  color: #c9e2ff;
}

.preview-retail:hover span {
  background: rgba(255, 209, 102, 0.12);
  color: #ffe6aa;
}

.preview-mandi:hover span {
  background: rgba(71, 215, 172, 0.12);
  color: #bbfce0;
}

.preview-card strong {
  display: block;
  margin-top: 0.75rem;
  font-size: 1.25rem;
  line-height: 1.35;
  color: var(--text);
}

.preview-bullets {
  list-style: none;
  padding: 0;
  margin: 1.2rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  border-top: 1px solid var(--line);
  padding-top: 1.1rem;
}

.preview-bullets li {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.88rem;
  color: var(--muted);
  transition: color 0.22s ease;
}

.preview-bullets li i {
  font-size: 0.95rem;
  color: var(--muted);
  transition: color 0.22s ease;
}

.preview-finance:hover .preview-bullets li {
  color: #daebff;
}

.preview-finance:hover .preview-bullets li i {
  color: var(--accent);
}

.preview-retail:hover .preview-bullets li {
  color: #fff1d4;
}

.preview-retail:hover .preview-bullets li i {
  color: #ffd166;
}

.preview-mandi:hover .preview-bullets li {
  color: #e3fdf1;
}

.preview-mandi:hover .preview-bullets li i {
  color: var(--primary);
}

/* Home Orbit Cloud Hover Styles */
.industry-cloud span {
  cursor: pointer;
}

.industry-cloud span:hover {
  border-color: var(--primary) !important;
  color: var(--primary) !important;
  box-shadow: 0 8px 30px rgba(71, 215, 172, 0.35);
  background: rgba(8, 16, 31, 0.95);
  transform: translate(-50%, -50%) scale(1.08) !important;
  z-index: 99;
}

.about-panel,
.contact-card {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 2rem;
  padding: 2rem;
  border-radius: 32px;
}

.feature-list {
  display: grid;
  gap: 1.15rem;
}

.feature-list article {
  padding: 1rem 0 1rem 1.1rem;
  border-left: 2px solid rgba(71, 215, 172, 0.35);
}

.feature-list strong {
  display: block;
  margin-bottom: 0.4rem;
  font-size: 1.08rem;
}

.section-contact {
  padding-bottom: 7rem;
}

.contact-card {
  grid-template-columns: 1fr;
  max-width: 900px;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1rem;
}

.trade-page .page-shell::after,
.page-shell::after {
  content: "";
  position: fixed;
  inset: auto 6% 4% auto;
  width: 170px;
  height: 170px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(145deg, rgba(124, 183, 255, 0.08), rgba(71, 215, 172, 0.03));
  transform: rotate(32deg);
  box-shadow: 0 24px 70px rgba(3, 12, 28, 0.35);
  pointer-events: none;
  opacity: 0.7;
}

.contact-page .page-shell::after {
  width: 220px;
  height: 220px;
  border-radius: 36px;
  background:
    linear-gradient(145deg, rgba(255, 209, 102, 0.1), rgba(124, 183, 255, 0.05)),
    rgba(255, 255, 255, 0.02);
  transform: rotate(24deg);
}

.trade-hero {
  width: var(--container);
  margin: 0 auto;
  min-height: calc(72vh - 92px);
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 2rem;
  align-items: center;
  padding: 3rem 0 2rem;
}

.contact-hero {
  width: var(--container);
  margin: 0 auto;
  min-height: min(calc(78vh - 92px), 700px);
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 1.2rem;
  align-items: center;
  padding: 1.25rem 0 1.25rem;
}

.contact-hero-copy h1 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2.5rem, 5vw, 4.3rem);
  line-height: 0.98;
  max-width: 9ch;
}

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

.contact-chip {
  padding: 0.9rem;
  border-radius: 18px;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    rgba(9, 18, 35, 0.74);
  box-shadow: var(--shadow);
}

.contact-chip span,
.contact-chip strong {
  display: block;
}

.contact-chip span {
  color: var(--accent);
  font-size: 0.76rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-chip strong {
  margin-top: 0.7rem;
  font-size: 0.95rem;
  line-height: 1.45;
}

.contact-sculpture {
  perspective: 1800px;
}

.contact-stage {
  position: relative;
  min-height: 460px;
  display: grid;
  place-items: center;
  transform-style: preserve-3d;
  transform: scale(0.82);
  transform-origin: center;
}

.contact-ring,
.contact-cube,
.contact-core,
.contact-float {
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.contact-ring {
  position: absolute;
  border-radius: 50%;
}

.ring-one {
  width: 420px;
  height: 420px;
  border-style: dashed;
  border-color: rgba(124, 183, 255, 0.16);
  animation: spin 24s linear infinite;
}

.ring-two {
  width: 300px;
  height: 300px;
  border-style: solid;
  border-color: rgba(71, 215, 172, 0.16);
  animation: spin-reverse 18s linear infinite;
}

.ring-three {
  width: 180px;
  height: 180px;
  border-style: solid;
  border-color: rgba(255, 209, 102, 0.18);
  animation: pulse 5.2s ease-in-out infinite;
}

.contact-cube {
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 28px;
}

.cube-back {
  background: linear-gradient(145deg, rgba(124, 183, 255, 0.12), rgba(255, 255, 255, 0.03));
  transform: rotate(18deg) translateZ(30px);
  animation: contactLiftA 8s ease-in-out infinite;
}

.cube-mid {
  background: linear-gradient(145deg, rgba(255, 209, 102, 0.12), rgba(255, 255, 255, 0.03));
  transform: rotate(-18deg) translateZ(90px);
  animation: contactLiftB 7s ease-in-out infinite;
}

.cube-front {
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at top left, rgba(71, 215, 172, 0.22), transparent 36%),
    radial-gradient(circle at bottom right, rgba(255, 209, 102, 0.18), transparent 42%),
    rgba(8, 16, 31, 0.82);
  transform: rotate(10deg) translateZ(170px);
  animation: contactLiftC 6s ease-in-out infinite;
}

.contact-core {
  width: 190px;
  min-height: 165px;
  padding: 0.95rem;
  border-radius: 22px;
  background: rgba(7, 17, 31, 0.74);
  transform: translateZ(60px);
}

.contact-core span,
.contact-core strong,
.contact-core em {
  display: block;
  font-style: normal;
}

.contact-core span {
  color: var(--accent);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.contact-core strong {
  margin: 0.85rem 0 0.55rem;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.55rem;
  line-height: 1.05;
}

.contact-core em {
  color: var(--muted);
}

.contact-float {
  position: absolute;
  width: 126px;
  min-height: 92px;
  padding: 0.75rem;
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.03)),
    rgba(9, 18, 35, 0.8);
}

.contact-float span,
.contact-float strong {
  display: block;
}

.contact-float span {
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-float strong {
  margin-top: 0.8rem;
  font-size: 0.96rem;
  line-height: 1.4;
}

.float-a {
  top: 78px;
  left: 24px;
  transform: rotate(-10deg) translateZ(200px);
  animation: ledgerDriftA 7s ease-in-out infinite;
}

.float-b {
  top: 125px;
  right: 18px;
  transform: rotate(12deg) translateZ(230px);
  animation: ledgerDriftB 6.5s ease-in-out infinite;
}

.float-c {
  bottom: 70px;
  left: 80px;
  transform: rotate(14deg) translateZ(250px);
  animation: ledgerDriftC 8s ease-in-out infinite;
}

.section-contact-showcase {
  padding-top: 0.5rem;
  padding-bottom: 3.5rem;
}

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

.reach-card {
  min-height: 230px;
  padding: 1.3rem;
  border-radius: 24px;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    rgba(9, 18, 35, 0.76);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.reach-card::before {
  content: "";
  position: absolute;
  inset: auto -10% -26% auto;
  width: 190px;
  height: 190px;
  border-radius: 40px;
  transform: rotate(24deg);
}

.reach-card-call::before {
  background: linear-gradient(145deg, rgba(124, 183, 255, 0.34), transparent);
}

.reach-card-whatsapp::before {
  background: linear-gradient(145deg, rgba(71, 215, 172, 0.36), transparent);
}

.reach-card span {
  display: inline-flex;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--accent);
  font-size: 0.76rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.reach-card h2 {
  margin: 1rem 0 0.75rem;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.45rem, 2.4vw, 2rem);
  line-height: 1.02;
  max-width: 12ch;
}

.reach-card p {
  margin: 0 0 1rem;
  color: var(--muted);
  line-height: 1.6;
  max-width: 40ch;
}

.contact-service-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.contact-service-strip span {
  padding: 0.65rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
  font-size: 0.9rem;
}

.trade-hero-copy h1 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(3rem, 7vw, 5.8rem);
  line-height: 0.98;
  max-width: 10ch;
}

.trade-prism {
  position: relative;
  min-height: 460px;
  display: grid;
  place-items: center;
  transform-style: preserve-3d;
  perspective: 1400px;
}

.prism-layer,
.prism-core {
  position: absolute;
  border-radius: 34px;
}

.prism-layer {
  width: 280px;
  height: 280px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(145deg, rgba(124, 183, 255, 0.12), rgba(71, 215, 172, 0.06));
  backdrop-filter: blur(18px);
}

.prism-layer-a {
  transform: rotate(18deg) translateZ(30px);
}

.prism-layer-b {
  transform: rotate(-18deg) translateZ(90px);
}

.prism-layer-c {
  transform: rotate(45deg) translateZ(150px);
}

.prism-core {
  width: 160px;
  height: 160px;
  display: grid;
  place-items: center;
  transform: translateZ(200px);
  background: linear-gradient(145deg, var(--primary), var(--secondary));
  color: #08101f;
  font-family: "Space Grotesk", sans-serif;
  font-size: 3.2rem;
  font-weight: 700;
  box-shadow: 0 24px 60px rgba(71, 215, 172, 0.28);
}

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

.trade-card {
  position: relative;
  min-height: 250px;
  padding: 1.4rem;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02)),
    rgba(8, 16, 31, 0.76);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.trade-card::before,
.trade-card::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.trade-card::before {
  inset: auto -18% -28% auto;
  width: 180px;
  height: 180px;
  border-radius: 32px;
  transform: rotate(22deg);
  opacity: 0.82;
}

.trade-card::after {
  inset: 1rem 1rem auto auto;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  transform: rotate(12deg);
}

.trade-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.trade-card-top span,
.trade-card-top em {
  font-style: normal;
}

.trade-card-top span {
  padding: 0.4rem 0.72rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.trade-card-top em {
  color: var(--muted);
}

.trade-card h3 {
  margin: 1rem 0 0.7rem;
  font-size: 1.35rem;
}

.trade-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.trade-finance::before { background: linear-gradient(145deg, rgba(124, 183, 255, 0.46), transparent); }
.trade-industries::before { background: linear-gradient(145deg, rgba(160, 174, 255, 0.42), transparent); }
.trade-grain::before { background: linear-gradient(145deg, rgba(255, 209, 102, 0.48), transparent); }
.trade-pesticides::before { background: linear-gradient(145deg, rgba(107, 230, 163, 0.46), transparent); }
.trade-mobile::before { background: linear-gradient(145deg, rgba(99, 203, 255, 0.48), transparent); }
.trade-electronics::before { background: linear-gradient(145deg, rgba(169, 205, 255, 0.42), transparent); }
.trade-school::before { background: linear-gradient(145deg, rgba(255, 168, 120, 0.44), transparent); }
.trade-jewellery::before { background: linear-gradient(145deg, rgba(255, 214, 102, 0.52), transparent); }
.trade-rice::before { background: linear-gradient(145deg, rgba(238, 240, 192, 0.48), transparent); }
.trade-petrol::before { background: linear-gradient(145deg, rgba(255, 96, 96, 0.46), transparent); }
.trade-kiryana::before { background: linear-gradient(145deg, rgba(71, 215, 172, 0.48), transparent); }
.trade-cloth::before { background: linear-gradient(145deg, rgba(255, 126, 185, 0.46), transparent); }
.trade-kachi::before { background: linear-gradient(145deg, rgba(255, 171, 87, 0.48), transparent); }
.trade-pakki::before { background: linear-gradient(145deg, rgba(255, 221, 87, 0.44), transparent); }
.trade-cotton::before { background: linear-gradient(145deg, rgba(232, 242, 255, 0.48), transparent); }
.trade-custom::before { background: linear-gradient(145deg, rgba(147, 118, 255, 0.46), transparent); }

[data-tilt] {
  transform-style: preserve-3d;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

[data-tilt].is-active {
  box-shadow: 0 36px 90px rgba(2, 10, 26, 0.58);
}

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

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

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.8; }
  50% { transform: scale(1.06); opacity: 1; }
}

@keyframes float {
  0%, 100% { transform: translate3d(0, 0, 80px); }
  50% { transform: translate3d(0, -14px, 120px); }
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes gstFloatA {
  0%, 100% { transform: rotate(-18deg) translateZ(20px) translateY(0); }
  50% { transform: rotate(-12deg) translateZ(42px) translateY(-10px); }
}

@keyframes gstFloatB {
  0%, 100% { transform: rotate(12deg) translateZ(70px) translateY(0); }
  50% { transform: rotate(18deg) translateZ(98px) translateY(-12px); }
}

@keyframes gstFloatC {
  0%, 100% { transform: rotate(-8deg) translateZ(140px) translateY(0); }
  50% { transform: rotate(-3deg) translateZ(175px) translateY(-16px); }
}

@keyframes ledgerDriftA {
  0%, 100% { transform: rotate(10deg) translateZ(220px) translateY(0); }
  50% { transform: rotate(16deg) translateZ(250px) translateY(-12px); }
}

@keyframes ledgerDriftB {
  0%, 100% { transform: rotate(-12deg) translateZ(180px) translateY(0); }
  50% { transform: rotate(-18deg) translateZ(220px) translateY(-14px); }
}

@keyframes ledgerDriftC {
  0%, 100% { transform: rotate(16deg) translateZ(240px) translateY(0); }
  50% { transform: rotate(9deg) translateZ(280px) translateY(-10px); }
}

@keyframes contactLiftA {
  0%, 100% { transform: rotate(18deg) translateZ(30px) translateY(0); }
  50% { transform: rotate(12deg) translateZ(55px) translateY(-12px); }
}

@keyframes contactLiftB {
  0%, 100% { transform: rotate(-18deg) translateZ(90px) translateY(0); }
  50% { transform: rotate(-12deg) translateZ(125px) translateY(-16px); }
}

@keyframes contactLiftC {
  0%, 100% { transform: rotate(10deg) translateZ(170px) translateY(0); }
  50% { transform: rotate(4deg) translateZ(210px) translateY(-16px); }
}

@media (max-width: 1080px) {
  .hero,
  .about-panel,
  .trade-hero,
  .gst-focus-layout,
  .contact-hero {
    grid-template-columns: 1fr;
  }

  .partner-spotlight {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    gap: 1rem;
    padding-top: 1.5rem;
  }

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

  .client-grid,
  .gst-highlights,
  .contact-quick-grid,
  .trade-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-copy h1 {
    max-width: 12ch;
  }

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

  .hero-visual {
    display: grid;
    justify-items: center;
  }

  .contact-sculpture {
    display: grid;
    justify-items: center;
  }
}

@media (max-width: 820px) {
  .topbar {
    flex-wrap: wrap;
    justify-content: center;
  }

  .nav {
    order: 3;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    border-radius: 22px;
  }

  .stats-row,
  .client-grid,
  .gst-highlights,
  .contact-quick-grid,
  .solution-grid,
  .trade-preview-grid,
  .trade-grid,
  .contact-showcase-grid {
    grid-template-columns: 1fr;
  }

  .core-scene {
    min-height: 440px;
    transform: scale(0.74);
  }

  .gst-engine {
    min-height: 500px;
    transform: scale(0.92);
  }

  .contact-stage {
    min-height: 380px;
    transform: scale(0.68);
  }

  .industry-orbit {
    min-height: 920px;
  }

  .orbit-stage {
    min-height: 920px;
    padding-inline: 1rem;
  }

  .industry-center {
    width: 220px;
    height: 220px;
  }
}

@media (max-width: 560px) {
  .hero {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .hero-copy h1 {
    font-size: clamp(2.4rem, 14vw, 3.8rem);
  }

  .core-scene {
    min-height: 330px;
    transform: scale(0.56);
    transform-origin: center top;
  }

  .gst-engine {
    min-height: 390px;
    transform: scale(0.72);
    transform-origin: center top;
  }

  .contact-hero {
    padding-top: 1rem;
    min-height: auto;
  }

  .contact-hero-copy h1 {
    font-size: clamp(2.2rem, 12vw, 3.4rem);
  }

  .contact-stage {
    min-height: 280px;
    transform: scale(0.48);
    transform-origin: center top;
  }

  .section {
    padding: 4.5rem 0;
  }

  .client-showcase {
    padding: 1.2rem;
  }

  .about-panel,
  .contact-card {
    padding: 1.4rem;
  }

  .industry-orbit {
    min-height: 980px;
  }

  .orbit-stage {
    min-height: 980px;
    padding-top: 2.4rem;
  }

  .orbit-ring-outer {
    width: 320px;
    height: 320px;
  }

  .orbit-ring-mid {
    width: 255px;
    height: 255px;
  }

  .orbit-ring-inner {
    width: 180px;
    height: 180px;
  }

  .trade-hero-copy h1 {
    font-size: clamp(2.6rem, 14vw, 4.2rem);
  }

  .trade-prism {
    min-height: 320px;
    transform: scale(0.82);
  }
}


/* ==========================================================================
   Footer Styles
   ========================================================================== */
.site-footer {
  width: var(--container);
  margin-inline: auto;
  padding: 5rem 0 3rem;
  border-top: 1px solid var(--line);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-brand p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.6;
  max-width: 48ch;
  margin: 0;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.link-col {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.link-col strong {
  font-family: "Space Grotesk", sans-serif;
  color: var(--text);
  font-size: 1.1rem;
  letter-spacing: 0.05em;
}

.link-col a {
  color: var(--muted);
  font-size: 0.95rem;
  transition: color 0.2s ease, transform 0.2s ease;
  display: inline-block;
  width: fit-content;
}

.link-col a:hover {
  color: var(--primary);
  transform: translateX(4px);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom p {
  color: var(--muted);
  font-size: 0.9rem;
  margin: 0;
}

.footer-legal {
  display: flex;
  gap: 2rem;
}

.footer-legal a {
  color: var(--muted);
  font-size: 0.9rem;
  transition: color 0.2s ease;
}

.footer-legal a:hover {
  color: var(--primary);
}

@media (max-width: 768px) {
  .footer-top {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
}

/* ==========================================================================
   Micro-interactions & Tactile Hover States
   ========================================================================== */
.solution-card,
.stat-card,
.client-card,
.trade-card,
.reach-card,
.gst-point,
.preview-card {
  transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1),
              box-shadow 0.3s cubic-bezier(0.25, 0.8, 0.25, 1),
              border-color 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.solution-card:hover,
.trade-card:hover,
.reach-card:hover {
  transform: translateY(-5px);
  border-color: rgba(71, 215, 172, 0.4);
  box-shadow: 0 20px 40px rgba(71, 215, 172, 0.1), var(--shadow);
}

.stat-card:hover,
.gst-point:hover,
.preview-card:hover {
  transform: translateY(-3px);
  border-color: rgba(124, 183, 255, 0.4);
  box-shadow: 0 15px 30px rgba(124, 183, 255, 0.08), var(--shadow);
}

.client-card:hover {
  transform: scale(1.04);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 10px 25px rgba(255, 255, 255, 0.05), var(--shadow);
}

/* ==========================================================================
   Accessibility & Contrast Tweaks
   ========================================================================== */
.stat-card span,
.solution-card p,
.floating-panel strong,
.gst-point span,
.partner-spotlight-copy p,
.trade-card p,
.reach-card p {
  color: #c9d5ec; /* Boost from --muted (#afbdd7) for better contrast on dark backgrounds */
}


/* ==========================================================================
   Trades Search & Interactive Filtering
   ========================================================================== */
.trades-controls {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 3rem;
  background: rgba(8, 16, 31, 0.4);
  padding: 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.search-wrapper {
  position: relative;
  width: 100%;
}

.search-wrapper .search-icon {
  position: absolute;
  left: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.35rem;
  color: var(--muted);
  pointer-events: none;
}

.search-wrapper input {
  width: 100%;
  padding: 1.1rem 1.5rem 1.1rem 3.5rem;
  background: rgba(5, 11, 22, 0.72);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--text);
  font-family: inherit;
  font-size: 1.05rem;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
  outline: none;
}

.search-wrapper input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 24px rgba(71, 215, 172, 0.16);
}

.clear-btn {
  position: absolute;
  right: 1.2rem;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--muted);
  cursor: pointer;
  font-size: 1.2rem;
  padding: 0.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s ease;
}

.clear-btn:hover {
  color: var(--primary);
}

.filter-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.filter-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.75rem 1.4rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  color: var(--muted);
  font-family: inherit;
  font-weight: 500;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.filter-btn i {
  font-size: 1.15rem;
}

.filter-btn:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.25);
}

.filter-btn.active {
  color: #08101f;
  background: linear-gradient(120deg, var(--primary), #86f7d4);
  border-color: transparent;
  box-shadow: 0 8px 24px rgba(71, 215, 172, 0.25);
}

/* ==========================================================================
   Trade Card Visual Modifications
   ========================================================================== */
.trade-card {
  cursor: pointer;
  transition: transform 0.35s cubic-bezier(0.25, 0.8, 0.25, 1),
              border-color 0.35s cubic-bezier(0.25, 0.8, 0.25, 1),
              box-shadow 0.35s cubic-bezier(0.25, 0.8, 0.25, 1),
              opacity 0.3s ease;
}

.trade-card.hidden {
  opacity: 0;
  pointer-events: none;
  display: none !important;
}

/* Hide old pseudo empty icon box */
.trade-card::after {
  display: none !important;
}

/* Real Modern Icon box */
.trade-icon-container {
  position: absolute;
  top: 1.4rem;
  right: 1.4rem;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  transform: rotate(12deg);
  display: grid;
  place-items: center;
  font-size: 1.4rem;
  color: var(--text);
  transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1),
              border-color 0.3s ease,
              background-color 0.3s ease,
              color 0.3s ease;
  z-index: 2;
}

.trade-card:hover .trade-icon-container {
  transform: rotate(0deg) scale(1.1);
  border-color: var(--primary);
  background: rgba(71, 215, 172, 0.12);
  color: var(--primary);
}

/* ==========================================================================
   Trade Immersive Details Modal
   ========================================================================== */
.trade-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(4, 10, 20, 0.82);
  backdrop-filter: blur(16px);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.trade-modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.trade-modal-container {
  position: relative;
  width: 100%;
  max-width: 820px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.02)), rgba(9, 18, 35, 0.95);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.6);
  padding: 3rem;
  overflow: hidden;
  transform: translateY(24px) scale(0.96);
  transition: transform 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.trade-modal-overlay.active .trade-modal-container {
  transform: translateY(0) scale(1);
}

/* Modal Core Details */
.modal-close-btn {
  position: absolute;
  top: 1.8rem;
  right: 1.8rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
  cursor: pointer;
  display: grid;
  place-items: center;
  font-size: 1.25rem;
  transition: all 0.2s ease;
}

.modal-close-btn:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.25);
  transform: scale(1.05);
}

.modal-header {
  margin-bottom: 2.2rem;
}

.modal-badge-wrapper {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-bottom: 1.1rem;
}

.modal-badge {
  padding: 0.45rem 1rem;
  border-radius: 999px;
  background: rgba(71, 215, 172, 0.14);
  color: var(--primary);
  border: 1px solid rgba(71, 215, 172, 0.24);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
}

.modal-icon-box {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  font-size: 1.35rem;
  color: var(--secondary);
}

.modal-header h2 {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2rem, 4.2vw, 2.8rem);
  margin: 0;
  line-height: 1.1;
}

.modal-content-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3.5rem;
}

.modal-full-desc {
  color: #c9d5ec;
  font-size: 1.05rem;
  line-height: 1.7;
  margin: 0 0 2rem;
}

.modal-action-box {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.modal-action-box .button {
  width: 100%;
}

.modal-features-col {
  padding-left: 2rem;
  border-left: 1px solid var(--line);
}

.modal-features-col h3 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.15rem;
  margin: 0 0 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--accent);
}

.modal-features-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1.05rem;
}

.modal-features-list li {
  position: relative;
  padding-left: 1.6rem;
  color: #c9d5ec;
  font-size: 0.95rem;
  line-height: 1.5;
}

.modal-features-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0.1rem;
  color: var(--primary);
  font-weight: bold;
  font-size: 1.05rem;
}

/* Responsive Modal adaptations */
@media (max-width: 768px) {
  .trades-controls {
    padding: 1.4rem;
  }
  
  .modal-content-grid {
    grid-template-columns: 1fr;
    gap: 2.2rem;
  }
  
  .modal-features-col {
    padding-left: 0;
    border-left: none;
    border-top: 1px solid var(--line);
    padding-top: 2rem;
  }
  
  .trade-modal-container {
    padding: 2.2rem 1.6rem;
    max-height: calc(100vh - 3rem);
    overflow-y: auto;
  }
}


/* ==========================================================================
   Premium Glassmorphic Contact Form
   ========================================================================== */
.contact-form-container {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)), rgba(9, 18, 35, 0.74);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 2.2rem;
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
  position: relative;
  overflow: hidden;
  z-index: 5;
}

.contact-form-container::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(71, 215, 172, 0.04) 0%, transparent 70%);
  pointer-events: none;
  z-index: -1;
}

.form-title {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.8rem;
  margin: 0 0 0.4rem;
  color: var(--text);
}

.form-subtitle {
  font-size: 0.92rem;
  color: var(--muted);
  margin: 0 0 1.8rem;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.2rem;
}

.form-group-row .form-group {
  margin-bottom: 0;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.form-group label .required {
  color: var(--primary);
  font-weight: bold;
}

.form-group label .optional {
  color: var(--muted);
  font-size: 0.75rem;
}

.input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.input-wrapper i {
  position: absolute;
  left: 1.1rem;
  font-size: 1.15rem;
  color: var(--muted);
  pointer-events: none;
  transition: color 0.25s ease;
}

.input-wrapper .textarea-icon {
  top: 1.1rem;
  transform: none;
}

.input-wrapper input,
.input-wrapper textarea {
  width: 100%;
  padding: 0.95rem 1rem 0.95rem 2.8rem;
  background: rgba(5, 11, 22, 0.54);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  color: var(--text);
  font-family: inherit;
  font-size: 0.95rem;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
  outline: none;
}

.input-wrapper textarea {
  resize: none;
  min-height: 90px;
}

.input-wrapper input:focus,
.input-wrapper textarea:focus {
  border-color: var(--primary);
  background: rgba(5, 11, 22, 0.82);
  box-shadow: 0 0 16px rgba(71, 215, 172, 0.1);
}

.input-wrapper input:focus + i,
.input-wrapper textarea:focus + i {
  color: var(--primary);
}

.form-submit-btn {
  width: 100%;
  margin-top: 0.6rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-size: 1.05rem;
  padding: 1rem 2rem;
  cursor: pointer;
  border: none;
}

.form-submit-btn .btn-icon {
  font-size: 1.15rem;
  transition: transform 0.25s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.form-submit-btn:hover .btn-icon {
  transform: translateX(3px) rotate(-15deg);
}

/* Feedback Styling */
.form-feedback {
  margin-top: 1.2rem;
  padding: 0.85rem 1.1rem;
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  display: none;
  align-items: center;
  gap: 0.6rem;
  line-height: 1.45;
  animation: slideDown 0.25s ease forwards;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.form-feedback.success {
  display: flex;
  background: rgba(71, 215, 172, 0.12);
  border: 1px solid rgba(71, 215, 172, 0.24);
  color: #a3fcd6;
}

.form-feedback.error {
  display: flex;
  background: rgba(255, 99, 132, 0.12);
  border: 1px solid rgba(255, 99, 132, 0.24);
  color: #ff9cb3;
}

/* Form adaptive adjustments */
@media (max-width: 580px) {
  .contact-form-container {
    padding: 1.5rem 1.2rem;
  }
  
  .form-group-row {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

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


