/* Start custom CSS for html, class: .elementor-element-cd4182b *//* =========================================================
   ABDULLAH SAEED RAJPUT
   LUXURY GLASSMORPHIC / DATA CENTER ENGINEERING

   Design tokens
   -------------
   Colour   #0a0b10 ink · #12141c graphite-glass · #d9b877 champagne
            #f0d9a8 champagne-bright · #93a8c2 steel-mist · #f6f4ef ivory
   Type     Fraunces (display, optical sizing) · Inter (body/UI)
            JetBrains Mono (data / eyebrow labels)
   Layout   Floating glass pill nav, generous 28px/20px rounded glass
            panels on soft ink gradient, ambient gold + steel orbs
   Signature  The hero "instrument panel" reads as a piece of jewelled
            glass equipment — a lit gold dial floating in frosted glass,
            rather than a flat stat block.
   ========================================================= */

:root {
  --ink: #08090d;
  --ink-soft: #0d0f16;
  --panel: #12141c;
  --panel-2: #171a24;

  --ivory: #f6f4ee;
  --ivory-soft: #c3c3ca;
  --ivory-muted: #82838f;

  --gold: #d9b877;
  --gold-bright: #f0d9a8;
  --gold-deep: #8a6a35;

  --steel: #93a8c2;

  --glass-bg: rgba(255, 255, 255, 0.048);
  --glass-bg-2: rgba(255, 255, 255, 0.03);
  --glass-border: rgba(240, 231, 210, 0.14);
  --glass-highlight: rgba(255, 255, 255, 0.5);
  --glass-shadow: rgba(0, 0, 0, 0.45);

  --container: 1180px;

  --r-lg: 30px;
  --r-md: 22px;
  --r-sm: 14px;
  --r-pill: 999px;

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --ease-smooth: cubic-bezier(0.16, 1, 0.3, 1);
}


/* =========================================================
   RESET
   ========================================================= */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--ink);
}

body {
  margin: 0;

  background:
    radial-gradient(ellipse 900px 620px at 82% 6%, rgba(217, 184, 119, 0.10), transparent 60%),
    radial-gradient(ellipse 800px 700px at -6% 40%, rgba(147, 168, 194, 0.07), transparent 60%),
    radial-gradient(ellipse 900px 800px at 100% 92%, rgba(217, 184, 119, 0.06), transparent 55%),
    var(--ink);

  color: var(--ivory);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;

  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

::selection {
  background: var(--gold);
  color: #1b1305;
}

img {
  max-width: 100%;
  display: block;
}

button,
input,
textarea,
select {
  font: inherit;
}

a {
  color: inherit;
}


/* =========================================================
   GLOBAL CONTAINER / SECTIONS
   ========================================================= */

.container {
  width: min(var(--container), calc(100% - 64px));
  margin-inline: auto;
}

.section {
  padding: 150px 0;
}

.section-sm {
  padding: 70px 0;
}


/* =========================================================
   GLASS PANEL SYSTEM
   ========================================================= */

.glass-panel,
.glass-pill {
  position: relative;

  border-radius: var(--r-lg);
  border: 1px solid var(--glass-border);

  background:
    linear-gradient(155deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.012) 45%),
    var(--glass-bg);

  backdrop-filter: blur(22px) saturate(140%);
  -webkit-backdrop-filter: blur(22px) saturate(140%);

  box-shadow:
    inset 0 1px 0 var(--glass-highlight-inset, rgba(255, 255, 255, 0.08)),
    0 30px 60px -20px var(--glass-shadow);
}

.glass-pill {
  border-radius: var(--r-pill);
}

.glass-panel::before {
  content: "";

  position: absolute;
  inset: 0;

  border-radius: inherit;

  padding: 1px;

  background: linear-gradient(
    135deg,
    rgba(240, 217, 168, 0.35),
    rgba(255, 255, 255, 0.02) 30%,
    rgba(255, 255, 255, 0.02) 70%,
    rgba(147, 168, 194, 0.18)
  );

  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;

  pointer-events: none;
  opacity: 0.6;
}


/* =========================================================
   AMBIENT BACKGROUND
   ========================================================= */

.site-noise {
  position: fixed;
  inset: 0;
  z-index: 100;
  pointer-events: none;

  opacity: 0.02;

  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='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.45'/%3E%3C/svg%3E");
}

.ambient-orb {
  position: fixed;
  z-index: 0;
  pointer-events: none;

  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.5;
}

.ambient-orb--a {
  width: 520px;
  height: 520px;

  top: -140px;
  right: -140px;

  background: radial-gradient(circle, rgba(217, 184, 119, 0.16), transparent 70%);
}

.ambient-orb--b {
  width: 460px;
  height: 460px;

  bottom: 8%;
  left: -160px;

  background: radial-gradient(circle, rgba(147, 168, 194, 0.13), transparent 70%);
}

.cursor-glow {
  position: fixed;
  width: 460px;
  height: 460px;

  border-radius: 50%;

  background: radial-gradient(circle, rgba(240, 217, 168, 0.05), transparent 68%);

  transform: translate(-50%, -50%);

  pointer-events: none;
  z-index: 2;

  opacity: 0.8;
  transition: opacity 0.4s ease;
}


/* =========================================================
   NAVIGATION
   ========================================================= */

.nav-wrap {
  position: fixed;
  inset: 18px 0 auto;
  z-index: 80;

  pointer-events: none;
}

.nav {
  pointer-events: auto;

  height: 68px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 0 12px 0 22px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;

  color: #fff;
  text-decoration: none;

  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
}

.brand-mark {
  width: 32px;
  height: 32px;

  display: grid;
  place-items: center;

  border-radius: var(--r-sm);
  border: 1px solid rgba(217, 184, 119, 0.5);

  color: var(--gold);

  font: 500 10px "JetBrains Mono", monospace;

  background: rgba(217, 184, 119, 0.06);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links a {
  position: relative;

  color: #9a9ba3;

  text-decoration: none;

  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.3px;

  transition: color 0.3s ease;
}

.nav-links a:not(.nav-cta)::after {
  content: "";

  position: absolute;
  left: 0;
  bottom: -7px;

  width: 0;
  height: 1px;

  background: var(--gold);

  transition: width 0.35s var(--ease);
}

.nav-links a:hover {
  color: #fff;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  display: inline-flex;
  align-items: center;

  padding: 11px 18px;

  border-radius: var(--r-pill);

  color: #1b1305 !important;

  background: linear-gradient(135deg, var(--gold-bright), var(--gold));

  font-weight: 700 !important;

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 28px -8px rgba(217, 184, 119, 0.45);
}

.nav-cta span,
.btn span {
  margin-left: 12px;
}


/* =========================================================
   MOBILE NAV
   ========================================================= */

.nav-toggle {
  display: none;

  padding: 8px;

  border: 0;
  background: transparent;

  cursor: pointer;
}

.nav-toggle span {
  display: block;

  width: 22px;
  height: 1px;

  margin: 6px 0;
  border-radius: 2px;

  background: #dfe5e1;
}


/* =========================================================
   HERO
   ========================================================= */

.hero {
  min-height: 100vh;

  padding-top: 160px;
  padding-bottom: 90px;

  position: relative;
  z-index: 1;

  display: flex;
  align-items: center;

  overflow: hidden;
}

.hero-grid {
  position: absolute;
  inset: 0;

  opacity: 0.1;

  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);

  background-size: 76px 76px;

  mask-image: radial-gradient(ellipse 70% 60% at 50% 20%, black, transparent 78%);
}

.hero-inner {
  position: relative;
  z-index: 5;

  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 85px;
  align-items: center;
}


/* =========================================================
   TYPOGRAPHY
   ========================================================= */

.eyebrow,
.section-index,
.credential-strip,
.case-tag,
.contact-meta {
  font-family: "JetBrains Mono", monospace;

  font-size: 9px;
  font-weight: 500;

  letter-spacing: 2.2px;

  color: var(--gold);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 11px;

  margin-bottom: 22px;
}

.pulse-dot {
  width: 6px;
  height: 6px;

  flex: 0 0 auto;

  border-radius: 50%;

  background: var(--gold);

  box-shadow:
    0 0 0 4px rgba(217, 184, 119, 0.1),
    0 0 18px rgba(217, 184, 119, 0.55);

  animation: pulse 2.8s ease-in-out infinite;
}

.credential-strip {
  color: #6d6f78;

  margin-bottom: 30px;
}

.credential-strip i {
  color: #454750;
  font-style: normal;
  margin: 0 7px;
}

.hero h1,
.section-head h2,
.credentials-section h2,
.contact-section h2,
.detail-year,
.timeline-detail h3,
.case-item h3,
.service-card h3 {
  font-family: "Fraunces", Georgia, serif;
  font-optical-sizing: auto;
}

.hero h1 {
  max-width: 850px;

  margin: 0 0 30px;

  font-size: clamp(50px, 6vw, 80px);

  line-height: 1.02;

  letter-spacing: -2.5px;

  font-weight: 600;

  color: #f3f4f2;
}

.hero h1 em,
.section-head h2 em,
.credentials-section h2 em,
.contact-section h2 em {
  font-style: italic;
  font-weight: 500;
  color: var(--gold);
}

.hero-lead {
  max-width: 650px;

  margin: 0 0 20px;

  color: #a7a9b0;

  font-size: 15px;
  line-height: 1.85;

  letter-spacing: -0.1px;
}

.hero-sublead {
  max-width: 650px;

  margin: 0 0 37px;

  color: #7d808c;

  font-size: 13px;
  line-height: 1.85;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;

  margin-top: 42px;

  padding-top: 26px;

  border-top: 1px solid var(--glass-border);

  color: #6d6f78;

  font: 500 9px "JetBrains Mono", monospace;

  letter-spacing: 1px;
}


/* =========================================================
   BUTTONS
   ========================================================= */

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  min-height: 52px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 0 24px;

  border-radius: var(--r-pill);
  border: 1px solid transparent;

  text-decoration: none;

  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.8px;

  cursor: pointer;

  transition:
    transform 0.35s var(--ease),
    box-shadow 0.35s ease,
    border-color 0.35s ease,
    background 0.35s ease;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  color: #1b1305;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px -12px rgba(217, 184, 119, 0.5);
}

.btn-ghost {
  color: #e8ece9;

  border-color: var(--glass-border);

  background: var(--glass-bg-2);
  backdrop-filter: blur(14px);
}

.btn-ghost:hover {
  border-color: rgba(217, 184, 119, 0.45);
  background: rgba(217, 184, 119, 0.05);
  transform: translateY(-3px);
}


/* =========================================================
   HERO TECHNICAL VISUAL (glass instrument panel)
   ========================================================= */

.technical-frame {
  position: relative;

  height: 540px;
  border-radius: var(--r-lg);

  overflow: hidden;
}

.frame-top {
  position: absolute;
  inset: 0 0 auto;

  padding: 20px 26px;

  display: flex;
  justify-content: space-between;

  border-bottom: 1px solid var(--glass-border);

  color: #767a86;

  font: 500 8px "JetBrains Mono", monospace;
  letter-spacing: 1.7px;
}

.orbital {
  position: absolute;
  inset: 82px 25px 118px;

  display: grid;
  place-items: center;
}

.orbit {
  position: absolute;

  border: 1px solid rgba(217, 184, 119, 0.15);
  border-radius: 50%;
}

.orbit-a {
  width: 285px;
  height: 285px;
  animation: spin 30s linear infinite;
}

.orbit-b {
  width: 410px;
  height: 185px;
  transform: rotate(-25deg);
  border-color: rgba(147, 168, 194, 0.16);
  animation: spinReverse 36s linear infinite;
}

.core {
  width: 150px;
  height: 150px;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  border: 1px solid rgba(217, 184, 119, 0.45);

  background: radial-gradient(circle, rgba(217, 184, 119, 0.14), rgba(10, 11, 15, 0.96) 68%);

  box-shadow:
    0 0 90px rgba(217, 184, 119, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.core span,
.core small {
  color: #7a7d87;
  font: 500 8px "JetBrains Mono", monospace;
  letter-spacing: 2px;
}

.core strong {
  margin: 3px 0;

  font-family: "Fraunces", serif;
  color: var(--gold-bright);
  font-size: 42px;
  line-height: 1;
  letter-spacing: -1px;
}

.node {
  position: absolute;

  width: 5px;
  height: 5px;
  border-radius: 50%;

  background: var(--gold);
  box-shadow: 0 0 13px rgba(217, 184, 119, 0.6);
}

.n1 { top: 18%; left: 23%; }
.n2 { top: 32%; right: 14%; }
.n3 { bottom: 16%; left: 28%; }
.n4 { right: 26%; bottom: 11%; }

.system-readout {
  position: absolute;

  left: 26px;
  right: 26px;
  bottom: 26px;

  padding-top: 18px;

  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;

  border-top: 1px solid var(--glass-border);
}

.system-readout div {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.system-readout span {
  color: #66686f;
  font: 500 8px "JetBrains Mono", monospace;
  letter-spacing: 1px;
}

.system-readout b {
  color: #e6e2d8;
  font-size: 9px;
  font-weight: 600;
}

.scan-line {
  position: absolute;

  left: 8%;
  right: 8%;
  height: 1px;

  background: linear-gradient(90deg, transparent, rgba(217, 184, 119, 0.6), transparent);

  opacity: 0.4;
  animation: scan 7s ease-in-out infinite;
}


/* =========================================================
   SCROLL CUE
   ========================================================= */

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 29px;

  transform: translateX(-50%);

  display: flex;
  align-items: center;
  gap: 10px;

  color: #63656e;
  font: 500 8px "JetBrains Mono", monospace;
  letter-spacing: 2px;
}

.scroll-cue span {
  width: 28px;
  height: 1px;
  background: #63656e;
}


/* =========================================================
   METRICS
   ========================================================= */

.metrics {
  position: relative;
  z-index: 1;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);

  padding: 8px;
}

.metric {
  padding: 30px 26px;

  border-right: 1px solid var(--glass-border);
}

.metric:last-child {
  border-right: 0;
}

.metric strong {
  display: block;
  margin-bottom: 9px;

  font-family: "Fraunces", serif;
  color: var(--gold-bright);
  font-size: 40px;
  line-height: 1;
  letter-spacing: -1px;
}

.metric span {
  color: #797c86;

  font: 500 8px/1.7 "JetBrains Mono", monospace;
  text-transform: uppercase;
  letter-spacing: 1px;
}


/* =========================================================
   SECTION HEAD
   ========================================================= */

.section-dark {
  position: relative;
}

.section-dark::before {
  content: "";

  position: absolute;
  inset: 0;

  background: linear-gradient(180deg, rgba(255, 255, 255, 0.014), transparent 40%);
  pointer-events: none;
}

.section-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;

  margin-bottom: 64px;
  position: relative;
  z-index: 1;
}

.section-head h2,
.credentials-section h2,
.contact-section h2 {
  margin: 16px 0 0;

  font-size: clamp(42px, 4.6vw, 62px);
  line-height: 1.05;
  letter-spacing: -1.5px;
  font-weight: 500;
}

.section-head > p,
.about-copy,
.contact-section > p {
  max-width: 520px;
  margin: 0;

  color: #8f929c;
  font-size: 13px;
  line-height: 1.9;
}


/* =========================================================
   ABOUT
   ========================================================= */

.about-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr;
  gap: 60px;
}

.about-main .large-copy {
  font-size: 19px;
  line-height: 1.6;
  letter-spacing: -0.2px;

  color: #e4e5e2;
}

.about-main p {
  color: #8f929c;
  font-size: 13.5px;
  line-height: 1.9;
}

.about-main strong {
  color: var(--gold-bright);
  font-weight: 600;
}

.about-highlights {
  display: grid;
  gap: 14px;
}

.highlight-box {
  padding: 26px 28px;
}

.highlight-box span {
  font: 500 9px "JetBrains Mono", monospace;
  color: var(--gold);
  letter-spacing: 1.5px;
}

.highlight-box strong {
  display: block;
  margin: 12px 0 8px;
  font-size: 13px;
  letter-spacing: 1px;
}

.highlight-box p {
  margin: 0;
  color: #8f929c;
  font-size: 12px;
  line-height: 1.7;
}


/* =========================================================
   SERVICES
   ========================================================= */

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.service-card {
  position: relative;

  min-height: 440px;
  padding: 40px;

  transition:
    transform 0.5s var(--ease),
    background 0.5s ease,
    border-color 0.5s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(217, 184, 119, 0.3);
}

.service-num {
  color: #666973;
  font: 500 9px "JetBrains Mono", monospace;
}

.service-icon {
  margin: 55px 0 24px;

  width: 52px;
  height: 52px;

  display: grid;
  place-items: center;

  border-radius: var(--r-sm);
  border: 1px solid rgba(217, 184, 119, 0.28);
  background: rgba(217, 184, 119, 0.06);

  color: var(--gold);
  font-size: 22px;
}

.service-card h3 {
  margin: 0 0 17px;

  font-size: 23px;
  line-height: 1.2;
  letter-spacing: -0.3px;
  font-weight: 500;
}

.service-card p {
  margin: 0;
  color: #8b8e97;
  font-size: 12px;
  line-height: 1.75;
}

.service-card ul {
  list-style: none;
  padding: 0;
  margin: 27px 0 0;

  border-top: 1px solid var(--glass-border);
}

.service-card li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.045);

  color: #797c85;
  font: 500 8px "JetBrains Mono", monospace;
}


/* =========================================================
   EXPERTISE
   ========================================================= */

.expertise-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;

  margin-bottom: 46px;
}

.expertise-item {
  padding: 30px 32px;
}

.expertise-item span {
  font: 500 9px "JetBrains Mono", monospace;
  color: var(--gold);
}

.expertise-item h3 {
  margin: 14px 0 10px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.2px;
}

.expertise-item p {
  margin: 0;
  color: #8b8e97;
  font-size: 12px;
  line-height: 1.75;
}

.technical-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.technical-tags span {
  padding: 9px 16px;

  border-radius: var(--r-pill);
  border: 1px solid var(--glass-border);
  background: var(--glass-bg-2);

  color: #9a9da5;
  font: 500 9px "JetBrains Mono", monospace;
  letter-spacing: 1px;
}


/* =========================================================
   STANDARDS
   ========================================================= */

.standards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.standard-card {
  padding: 30px;
}

.standard-card span {
  color: #666973;
  font: 500 9px "JetBrains Mono", monospace;
}

.standard-card h3 {
  margin: 16px 0 12px;
  font-size: 19px;
  font-weight: 500;
}

.standard-card p {
  margin: 0 0 20px;
  color: #8b8e97;
  font-size: 12px;
  line-height: 1.7;
}

.standard-card strong {
  color: var(--gold);
  font: 500 8px "JetBrains Mono", monospace;
  letter-spacing: 1px;
}


/* =========================================================
   CASE STUDIES
   ========================================================= */

.case-list {
  padding: 8px 32px;
}

.case-item {
  display: grid;
  grid-template-columns: 65px 1fr 50px;
  gap: 25px;
  align-items: center;

  padding: 31px 0;
  border-bottom: 1px solid var(--glass-border);

  transition:
    padding 0.45s var(--ease),
    background 0.4s ease;
}

.case-item:last-child {
  border-bottom: 0;
}

.case-item:hover {
  padding-left: 12px;
  background: linear-gradient(90deg, rgba(217, 184, 119, 0.05), transparent 65%);
}

.case-no {
  color: #5c5f68;
  font: 500 9px "JetBrains Mono", monospace;
}

.case-item h3 {
  margin: 8px 0 9px;
  font-size: 24px;
  font-weight: 500;
  letter-spacing: -0.3px;
}

.case-item p {
  max-width: 800px;
  margin: 0;
  color: #8b8e97;
  font-size: 12px;
  line-height: 1.75;
}

.case-details {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  margin-top: 14px;
}

.case-details span {
  color: #797c85;
  font: 500 9px "JetBrains Mono", monospace;
  letter-spacing: 0.4px;
}

.case-details b {
  color: var(--gold);
  font-weight: 600;
  margin-right: 6px;
}

.case-arrow {
  color: var(--gold);
  font-size: 19px;
}


/* =========================================================
   INDUSTRIES
   ========================================================= */

.industry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.industry-card {
  padding: 30px 32px;
}

.industry-card span {
  font: 500 9px "JetBrains Mono", monospace;
  color: var(--gold);
}

.industry-card h3 {
  margin: 14px 0 10px;
  font-size: 16px;
  font-weight: 600;
}

.industry-card p {
  margin: 0;
  color: #8b8e97;
  font-size: 12px;
  line-height: 1.75;
}


/* =========================================================
   TIMELINE
   ========================================================= */

.timeline-layout {
  display: grid;
  grid-template-columns: 1.65fr 0.75fr;
  gap: 20px;
}

.timeline-detail {
  position: relative;
  min-height: 560px;
  padding: 50px;
  overflow: hidden;
}

.timeline-detail::after {
  content: "";

  position: absolute;
  width: 460px;
  height: 460px;
  right: -220px;
  bottom: -220px;

  border: 1px solid rgba(217, 184, 119, 0.1);
  border-radius: 50%;
  pointer-events: none;
}

.detail-status {
  display: flex;
  align-items: center;
  gap: 9px;

  color: var(--gold);
  font: 500 8px "JetBrains Mono", monospace;
  letter-spacing: 2px;
}

.detail-year {
  position: relative;
  z-index: 2;

  margin: 36px 0 6px;

  color: #f4f6f3;
  font-size: clamp(70px, 8.5vw, 104px);
  line-height: 0.9;
  font-weight: 500;
  letter-spacing: -3px;
}

.detail-role {
  position: relative;
  z-index: 2;

  margin-bottom: 14px;
  color: var(--gold);
  font-size: 14px;
  font-weight: 600;
}

.timeline-detail h3 {
  position: relative;
  z-index: 2;

  margin: 0 0 18px;
  font-size: 32px;
  font-weight: 500;
  letter-spacing: -0.4px;
}

.timeline-detail > p {
  position: relative;
  z-index: 2;

  max-width: 760px;
  margin: 0;

  color: #9a9da6;
  font-size: 13px;
  line-height: 1.85;
}

.outcome {
  position: relative;
  z-index: 3;

  display: grid;
  gap: 9px;

  margin-top: 34px;
  padding: 22px 24px;

  border-radius: var(--r-md);
  border: 1px solid var(--glass-border);
  background: rgba(255, 255, 255, 0.03);
}

.outcome span {
  color: var(--gold);
  font: 500 8px "JetBrains Mono", monospace;
  letter-spacing: 1.5px;
}

.outcome strong {
  font-size: 14px;
  font-weight: 600;
}

.outcome small {
  color: #797c85;
  font-size: 10px;
}

.outcome b {
  color: var(--gold);
  font-weight: 500;
}

.year-panel {
  padding: 26px;
}

.panel-label {
  margin-bottom: 20px;
  text-align: center;

  color: #767a86;
  font: 500 8px "JetBrains Mono", monospace;
  letter-spacing: 2px;
}

.year-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;

  max-height: 450px;
  overflow-y: auto;
  padding-right: 4px;
}

.year-list::-webkit-scrollbar {
  width: 3px;
}

.year-list::-webkit-scrollbar-thumb {
  background: rgba(217, 184, 119, 0.3);
  border-radius: var(--r-pill);
}

.year-btn {
  appearance: none;

  padding: 12px 10px;

  border-radius: var(--r-sm);
  border: 1px solid var(--glass-border);
  background: rgba(255, 255, 255, 0.02);

  color: #888b94;
  font: 700 13px Inter, sans-serif;

  cursor: pointer;

  transition:
    color 0.25s ease,
    border-color 0.25s ease,
    background 0.25s ease,
    transform 0.25s ease;
}

.year-btn:hover {
  color: #fff;
  border-color: rgba(217, 184, 119, 0.35);
  transform: translateY(-1px);
}

.year-btn.active {
  color: #1b1305;
  border-color: var(--gold);
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  box-shadow: 0 10px 24px -8px rgba(217, 184, 119, 0.4);
}

.panel-note {
  margin-top: 22px;
  padding-top: 18px;

  border-top: 1px solid var(--glass-border);

  color: #666973;
  text-align: center;
  font: 500 8px "JetBrains Mono", monospace;
}

.journey-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 20px;
  padding: 8px;
}

.journey-stats div {
  padding: 24px;
  text-align: center;
  border-right: 1px solid var(--glass-border);
}

.journey-stats div:last-child {
  border-right: 0;
}

.journey-stats strong {
  display: block;

  font-family: "Fraunces", serif;
  color: var(--gold-bright);
  font-size: 30px;
  letter-spacing: -1px;
}

.journey-stats span {
  color: #797c86;
  font: 500 8px "JetBrains Mono", monospace;
  letter-spacing: 2px;
}


/* =========================================================
   METHODOLOGY
   ========================================================= */

.methodology-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.method-step {
  padding: 30px 32px;
}

.method-step span {
  font: 500 9px "JetBrains Mono", monospace;
  color: var(--gold);
}

.method-step h3 {
  margin: 14px 0 10px;
  font-size: 17px;
  font-weight: 600;
}

.method-step p {
  margin: 0;
  color: #8b8e97;
  font-size: 12px;
  line-height: 1.75;
}


/* =========================================================
   CREDENTIALS
   ========================================================= */

.credentials-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 100px;
  align-items: start;
}

.about-copy {
  margin-top: 26px;
}

.credential-list {
  padding: 8px 30px;
}

.credential-list > div {
  display: grid;
  grid-template-columns: 40px 1fr auto;
  gap: 15px;
  align-items: center;

  padding: 20px 0;
  border-bottom: 1px solid var(--glass-border);

  transition:
    padding 0.3s ease,
    background 0.3s ease;
}

.credential-list > div:last-child {
  border-bottom: 0;
}

.credential-list > div:hover {
  padding-left: 10px;
  background: rgba(217, 184, 119, 0.03);
}

.credential-list span,
.credential-list small {
  color: #666973;
  font: 500 8px "JetBrains Mono", monospace;
}

.credential-list strong {
  font-size: 13px;
  font-weight: 600;
}

.credential-list small {
  color: var(--gold);
}


/* =========================================================
   ECOSYSTEM
   ========================================================= */

.ecosystem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 8px;
}

.ecosystem-grid > div {
  padding: 26px 28px;
  border-right: 1px solid var(--glass-border);
}

.ecosystem-grid > div:nth-child(3n) {
  border-right: 0;
}

.ecosystem-grid > div:nth-child(n+4) {
  border-top: 1px solid var(--glass-border);
}

.ecosystem-grid span {
  color: #797c86;
  font: 500 8px "JetBrains Mono", monospace;
  letter-spacing: 1.5px;
}

.ecosystem-grid strong {
  display: block;
  margin-top: 10px;

  color: #d9dbe0;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2px;
}


/* =========================================================
   WHY
   ========================================================= */

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.why-item {
  padding: 30px 26px;
}

.why-item strong {
  display: block;
  margin-bottom: 14px;

  font-family: "Fraunces", serif;
  color: var(--gold-bright);
  font-size: 26px;
  letter-spacing: -0.5px;
}

.why-item h3 {
  margin: 0 0 10px;
  font-size: 14px;
  font-weight: 600;
}

.why-item p {
  margin: 0;
  color: #8b8e97;
  font-size: 11.5px;
  line-height: 1.7;
}


/* =========================================================
   FAQ
   ========================================================= */

.faq-list {
  padding: 8px 32px;
}

.faq-list details {
  padding: 22px 0;
  border-bottom: 1px solid var(--glass-border);
}

.faq-list details:last-of-type {
  border-bottom: 0;
}

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;

  cursor: pointer;
  list-style: none;

  color: #dcdde1;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.1px;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary span {
  flex: 0 0 auto;

  width: 26px;
  height: 26px;

  display: grid;
  place-items: center;

  border-radius: 50%;
  border: 1px solid var(--glass-border);

  color: var(--gold);
  font-size: 13px;

  transition: transform 0.3s ease;
}

.faq-list details[open] summary span {
  transform: rotate(45deg);
}

.faq-list p {
  max-width: 720px;
  margin: 16px 0 0;

  color: #8b8e97;
  font-size: 12.5px;
  line-height: 1.8;
}


/* =========================================================
   CONTACT
   ========================================================= */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: start;
}

.contact-section h2 {
  margin-bottom: 25px;
}

.contact-section > div > p {
  max-width: 520px;
  color: #9497a1;
  font-size: 13px;
  line-height: 1.85;
}

.contact-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  margin-top: 35px;
}

.contact-form {
  display: grid;
  gap: 16px;

  padding: 34px;
}

.contact-form label {
  color: #83868f;
  font: 500 8px "JetBrains Mono", monospace;
  letter-spacing: 1px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  display: block;
  width: 100%;

  margin-top: 8px;
  padding: 14px 16px;

  border-radius: var(--r-sm);
  border: 1px solid var(--glass-border);
  background: rgba(255, 255, 255, 0.025);

  outline: none;
  color: #fff;
  font: 13px Inter, sans-serif;

  transition:
    border-color 0.3s ease,
    background 0.3s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #5c5f68;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(217, 184, 119, 0.5);
  background: rgba(217, 184, 119, 0.03);
}

.contact-form select {
  appearance: none;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form .btn-primary {
  margin-top: 4px;
}

.form-status {
  min-height: 16px;
  margin: 0;

  color: var(--gold);
  font-size: 10px;
}


/* =========================================================
   FOOTER
   ========================================================= */

.footer {
  padding: 30px 0 46px;
  position: relative;
  z-index: 1;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;

  padding: 22px 30px;

  color: #6a6d76;
  font: 500 8px "JetBrains Mono", monospace;
  letter-spacing: 0.8px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-brand strong {
  color: #f0f0ee;
  font-size: 10px;
  letter-spacing: 1.2px;
}

.footer-links {
  display: flex;
  gap: 18px;
}

.footer a {
  color: var(--gold);
  text-decoration: none;
  transition: opacity 0.25s ease;
}

.footer a:hover {
  opacity: 0.7;
}


/* =========================================================
   REVEAL ANIMATION
   ========================================================= */

.reveal {
  opacity: 0;
  transform: translateY(25px);

  transition:
    opacity 0.9s var(--ease-smooth),
    transform 0.9s var(--ease-smooth);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.reveal-delay {
  transition-delay: 0.12s;
}

.reveal-delay-2 {
  transition-delay: 0.22s;
}


/* =========================================================
   KEYFRAMES
   ========================================================= */

@keyframes spin {
  to { transform: rotate(360deg); }
}

@keyframes spinReverse {
  to { transform: rotate(-360deg); }
}

@keyframes scan {
  0%   { top: 13%; opacity: 0; }
  15%  { opacity: 0.35; }
  50%  { top: 84%; opacity: 0.2; }
  85%  { opacity: 0; }
  100% { top: 13%; opacity: 0; }
}

@keyframes pulse {
  0%, 100% {
    box-shadow:
      0 0 0 4px rgba(217, 184, 119, 0.08),
      0 0 15px rgba(217, 184, 119, 0.4);
  }
  50% {
    box-shadow:
      0 0 0 7px rgba(217, 184, 119, 0.03),
      0 0 22px rgba(217, 184, 119, 0.6);
  }
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1000px) {

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .hero-copy {
    max-width: 800px;
  }

  .hero-visual {
    max-width: 760px;
  }

  .section-head {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .expertise-grid,
  .standards-grid,
  .industry-grid,
  .methodology-grid {
    grid-template-columns: 1fr 1fr;
  }

  .why-grid {
    grid-template-columns: 1fr 1fr;
  }

  .service-card {
    min-height: auto;
  }

  .timeline-layout {
    grid-template-columns: 1fr;
  }

  .credentials-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .metric-grid {
    grid-template-columns: 1fr 1fr;
  }

  .metric:nth-child(2) {
    border-right: 0;
  }

  .ecosystem-grid {
    grid-template-columns: 1fr 1fr;
  }

  .ecosystem-grid > div:nth-child(2n) {
    border-right: 0;
  }

  .ecosystem-grid > div:nth-child(n+3) {
    border-top: 1px solid var(--glass-border);
  }
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 680px) {

  .container {
    width: min(100% - 24px, var(--container));
  }

  .section {
    padding: 90px 0;
  }

  .section-sm {
    padding: 35px 0;
  }

  .nav-wrap {
    inset: 12px 0 auto;
  }

  .nav {
    height: 64px;
    padding: 0 8px 0 18px;
  }

  .brand {
    font-size: 9px;
    letter-spacing: 1.5px;
  }

  .brand-mark {
    width: 28px;
    height: 28px;
  }

  .nav-toggle {
    display: block;
  }

  .nav-links {
    display: none;

    position: absolute;
    top: 76px;
    left: 12px;
    right: 12px;

    padding: 14px;

    flex-direction: column;
    align-items: stretch;
    gap: 4px;

    border-radius: var(--r-md);
    border: 1px solid var(--glass-border);
    background: rgba(15, 17, 24, 0.92);
    backdrop-filter: blur(24px);

    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    padding: 12px 10px;
  }

  .nav-cta {
    justify-content: center;
    margin-top: 5px;
  }

  .hero {
    padding-top: 130px;
    min-height: auto;
  }

  .hero h1 {
    font-size: 46px;
    line-height: 1.04;
    letter-spacing: -1.5px;
  }

  .hero-lead,
  .hero-sublead {
    font-size: 13px;
  }

  .technical-frame {
    height: 380px;
  }

  .orbital {
    inset: 68px 10px 104px;
  }

  .orbit-a {
    width: 205px;
    height: 205px;
  }

  .orbit-b {
    width: 285px;
    height: 135px;
  }

  .core {
    width: 118px;
    height: 118px;
  }

  .core strong {
    font-size: 32px;
  }

  .system-readout {
    grid-template-columns: 1fr;
  }

  .system-readout div:nth-child(n+2) {
    display: none;
  }

  .metric-grid {
    grid-template-columns: 1fr;
  }

  .metric {
    padding: 22px 4px;
    border-right: 0;
    border-bottom: 1px solid var(--glass-border);
  }

  .metric:last-child {
    border-bottom: 0;
  }

  .service-grid,
  .expertise-grid,
  .standards-grid,
  .industry-grid,
  .methodology-grid,
  .why-grid,
  .ecosystem-grid {
    grid-template-columns: 1fr;
  }

  .ecosystem-grid > div {
    border-right: 0 !important;
    border-top: 1px solid var(--glass-border) !important;
  }

  .ecosystem-grid > div:first-child {
    border-top: 0 !important;
  }

  .section-head h2,
  .credentials-section h2,
  .contact-section h2 {
    font-size: 38px;
    letter-spacing: -1px;
  }

  .case-list,
  .credential-list,
  .faq-list {
    padding: 4px 18px;
  }

  .case-item {
    grid-template-columns: 30px 1fr;
  }

  .case-arrow {
    display: none;
  }

  .case-item h3 {
    font-size: 20px;
  }

  .timeline-detail {
    min-height: auto;
    padding: 30px;
  }

  .detail-year {
    font-size: 66px;
    letter-spacing: -2px;
  }

  .timeline-detail h3 {
    font-size: 25px;
  }

  .year-list {
    grid-template-columns: repeat(4, 1fr);
    max-height: none;
  }

  .journey-stats {
    grid-template-columns: 1fr 1fr;
  }

  .journey-stats div {
    border-bottom: 1px solid var(--glass-border);
  }

  .journey-stats div:nth-child(2) {
    border-right: 0;
  }

  .journey-stats div:nth-child(n+3) {
    border-bottom: 0;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.6;
  }

  .contact-form {
    padding: 22px;
  }

  .cursor-glow,
  .ambient-orb {
    display: none;
  }
}


/* =========================================================
   ACCESSIBILITY / REDUCED MOTION
   ========================================================= */

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: var(--r-sm);
}

@media (prefers-reduced-motion: reduce) {

  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}/* End custom CSS */