
@font-face {
    font-family: "Kings";
    src: url("../assets/fonts/Kings-Regular.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* ADVANCED SYSTEM VARIABLE ARCHITECTURE */
:root {
  --navy-deep: #060D1A;
  --navy-mid: #0D192C;
  --navy-light: #16263D;
  /* Svastih Brand */
  --svastih-blue: #1FA4E5;
  --svastih-cyan: #38C4FF;
  --svastih-dark-blue: #0B5F9A;
  --ivory-white: #FDFDFB;
  --ivory-shadow: #F4F2EE;
  --text-dark: #111827;
  --text-light: #F3F4F6;
  --text-muted: #8A9BB4;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Inter', system-ui, sans-serif;
  --transition-lux: cubic-bezier(0.16, 1, 0.3, 1);
  /* Ultra-premium smooth deceleration curve */
  --transition-slow: cubic-bezier(0.25, 1, 0.5, 1);
}

/* SYSTEM BASE RESET & OPTIMIZATION */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  cursor: none !important;
  /* Managed by premium Custom Cursor system */
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--navy-deep);
}

body {
  font-family: var(--font-sans);
  background-color: var(--navy-deep);
  color: var(--text-light);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
.serif-text {
  font-family: var(--font-serif);
  font-weight: 400;
}

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

ul {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
  filter: contrast(1.02) grayscale(10%);
}

/* CUSTOM LUXURY MICROMOTION CURSOR */
#customCursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 8px;
  height: 8px;
  background-color: var(--svastih-blue);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  will-change: transform;
  transition: background-color .2s;
  cursor: auto !important;
  /* Fixes universal visibility conflict */
}

#customCursorRing {
  position: fixed;
  top: 0;
  left: 0;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  will-change: transform;
  transition:
    width .3s,
    height .3s,
    border-color .3s;
  cursor: auto !important;
  /* Fixes universal visibility conflict */
}

/* CURSOR INTERACTION COUPLINGS */
.interactive-hovering #customCursor {
  background-color: transparent;
}

.interactive-hovering #customCursorRing {
  width: 64px;
  height: 64px;
  border-color: var(--svastih-blue);
  background-color: rgba(212, 175, 55, 0.04);
}

/* THE CINEMATIC CURTAIN PRELOADER */
#luxPreloader {
  position: fixed;
  inset: 0;
  background-color: var(--navy-deep);
  z-index: 10000;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: transform 1.2s cubic-bezier(0.85, 0, 0.15, 1);
}

.preloader-logo {
  width: 170px;
  height: auto;
  opacity: 0;
  transform: translateY(20px) scale(.95);
  animation: revealLogo .8s ease forwards .2s;
}

@keyframes revealLogo {

  from {
    opacity: 0;
    transform: translateY(20px) scale(.95);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }

}

.preloader-brand {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  letter-spacing: 6px;
  color: #FFF;
  opacity: 0;
  transform: translateY(20px);
  animation: revealText 1s var(--transition-lux) forwards 0.3s;
}

.preloader-line {
  width: 0px;
  height: 1px;
  background: var(--svastih-blue);
  margin-top: 20px;
  animation: scaleLine 1.2s var(--transition-lux) forwards 0.6s;
}

.preloader-subtitle {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--text-muted);
  margin-top: 15px;
  opacity: 0;
  animation: revealText 1s var(--transition-lux) forwards 0.9s;
}

@keyframes revealText {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scaleLine {
  to {
    width: 120px;
  }
}

/* LAYOUT ARCHITECTURE */
.section-spacing {
  padding: 120px 8%;
  position: relative;
}

@media (max-width: 1024px) {
  .section-spacing {
    padding: 90px 6%;
  }
}

/* ===========================================
   LUXURY NAVIGATION
=========================================== */

.lux-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;

  display: flex;
  justify-content: space-between;
  align-items: center;

  padding: 28px 8%;
  z-index: 1000;

  background: rgba(10, 18, 35, 0.72);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);

  border-bottom: 1px solid rgba(255, 255, 255, 0.04);

  transition:
    background .35s ease,
    padding .35s ease,
    border-color .35s ease,
    backdrop-filter .35s ease;
}

/* Navbar after scrolling */
.lux-nav.scrolled {
  padding: 20px 8%;

  background: rgba(8, 14, 28, 0.94);

  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);

  border-bottom: 1px solid rgba(255, 255, 255, .08);

  box-shadow: 0 10px 35px rgba(0, 0, 0, .22);
}

/* ===========================================
   LOGO
=========================================== */

.nav-logo {
  display: flex;
  align-items: center;
  transition: transform .35s ease;
}

.nav-logo:hover {
  transform: translateY(-1px);
}

.nav-logo img {
  display: block;
  width: 150px;
  height: auto;
}

/* ===========================================
   NAV LINKS
=========================================== */

.nav-links {
  display: flex;
  align-items: center;
  gap: 42px;
}

.nav-links a {
  position: relative;

  font-size: .78rem;
  font-weight: 500;

  letter-spacing: 2.6px;
  text-transform: uppercase;

  color: rgba(255, 255, 255, .82);

  transition:
    color .3s ease,
    transform .3s ease;
}

.nav-links a:hover {
  color: #fff;
  transform: translateY(-1px);
}

.nav-links a::after {
  content: "";
  position: absolute;

  left: 50%;
  bottom: -9px;

  width: 0;
  height: 2px;

  transform: translateX(-50%);

  background: var(--svastih-blue);

  border-radius: 20px;

  transition: width .35s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a.active {
  color: #fff;
}

/* ===========================================
   CTA BUTTON
=========================================== */

.btn-nav-action {

  padding: 13px 28px;

  border: 1px solid rgba(0, 184, 255, .45);

  background: transparent;

  color: #fff;

  font-size: .75rem;
  font-weight: 500;

  letter-spacing: 2px;
  text-transform: uppercase;

  transition:
    background .35s ease,
    border-color .35s ease,
    color .35s ease,
    transform .35s ease,
    box-shadow .35s ease;
}

.btn-nav-action:hover {

  background: var(--svastih-blue);

  border-color: var(--svastih-blue);

  color: var(--navy-deep);

  transform: translateY(-2px);

  box-shadow:
    0 12px 28px rgba(0, 184, 255, .22);
}

/* CINEMATIC PARALLAX HERO MATRIX */
.hero-container {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  padding: 150px 8% 80px;
  overflow: hidden;
  background: radial-gradient(circle at 80% 20%, var(--navy-mid) 0%, var(--navy-deep) 70%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 40% 60%;
  align-items: center;
  gap: 5rem;
}

.hero-tagline {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 6px;
  color: var(--svastih-blue);
  margin-bottom: 25px;
  display: block;
  font-weight: 500;
}

.hero-title {
  font-size: clamp(2.8rem, 5vw, 5.8rem);
  line-height: 1.15;
  margin-bottom: 35px;
  color: #FFF;
  font-weight: 400;
  letter-spacing: -1px;
}

.hero-title em {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--svastih-blue);
}

.hero-description {
  font-size: 1.15rem;
  color: var(--text-muted);
  line-height: 1.9;
  max-width: 560px;
  margin-bottom: 45px;
  font-weight: 300;
}

/* Advanced Depth Composition Layering */
.hero-matrix-visual {
  position: relative;
  height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.matrix-layer {
  position: absolute;
  background: var(--navy-mid);
  border: 1px solid rgba(212, 175, 55, 0.15);
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.6);
  transition: transform 0.2s ease-out;
  overflow: hidden;
}

.layer-back {
  width: 75%;
  height: 380px;
  left: 0;
  top: 10%;
  z-index: 1;
  transform: translateZ(0);
  filter: brightness(0.6) blur(1px);
}

.layer-front {
  width: 65%;
  height: 340px;
  right: -5%;
  bottom: 8%;
  z-index: 3;
  border: 1px solid var(--svastih-blue);
}

.matrix-layer img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.5s var(--transition-lux);
}

.matrix-layer:hover img {
  transform: scale(1.05);
}

/* BUTTON GENERATION FLUID DYNAMICS */
.btn-lux-primary {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  padding: 22px 48px;
  background: transparent;
  border: 1px solid var(--svastih-blue);
  color: #FFF;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: color 0.4s var(--transition-lux);
}

.btn-lux-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--svastih-blue);
  transition: all 0.5s var(--transition-lux);
  z-index: -1;
}

.btn-lux-primary:hover {
  color: var(--navy-deep);
}

.btn-lux-primary:hover::before {
  left: 0;
}

.btn-lux-primary svg {
  transition: transform 0.4s var(--transition-lux);
}

.btn-lux-primary:hover svg {
  transform: translateX(8px);
}

/* KINETIC BACKGROUND TEXT RAIL */
.kinetic-text-rail {
  position: absolute;
  width: 100vw;
  left: 0;
  overflow: hidden;
  white-space: nowrap;
  pointer-events: none;
  z-index: 1;
  opacity: 0.03;
  font-family: var(--font-serif);
  font-size: 10rem;
  color: #FFF;
  text-transform: uppercase;
}

/* PREMIUM LIGHT SECTION (DEPTH REVERSAL) */
.section-light {
  background-color: var(--ivory-white);
  color: var(--text-dark);
  overflow: hidden;
}

.section-light .hero-title {
  color: var(--text-dark);
}

.section-light .hero-title em {
  color: var(--svastih-blue);
}

.split-composition-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
  z-index: 5;
  position: relative;
}

.statement-box {
  font-family: var(--font-serif);
  font-size: 2rem;
  line-height: 1.45;
  color: var(--navy-deep);
  margin-bottom: 40px;
  position: relative;
  padding-left: 30px;
  border-left: 2px solid var(--svastih-blue);
}

.narrative-body {
  font-size: 1.1rem;
  color: #4B5563;
  line-height: 1.9;
  font-weight: 300;
}

/* INTERACTIVE SHOWCASE CONTINUUM */
.showcase-container {
  background-color: #040912;
  padding-right: 0;
  padding-left: 0;
  overflow: hidden;
}

.showcase-header {
  padding: 0 8% 60px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.slider-nav-engine {
  display: flex;
  gap: 15px;
}

.nav-engine-btn {
  width: 60px;
  height: 60px;
  border: 1px solid var(--svastih-blue);
  ;
  background: transparent;
  color: var(--svastih-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: all 0.4s var(--transition-lux);
}

.nav-engine-btn:hover {
  background: var(--svastih-blue);
  color: var(--navy-deep);
  border-color: var(--svastih-blue);
}


/* CINEMATIC METHODOLOGY SYSTEM */
.method-section {
  background-color: var(--navy-deep);
  border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.method-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-top: 80px;
}

.method-card {
  position: relative;
  padding: 45px 34px;
  background: rgba(13, 25, 44, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.02);
  transition: all 0.5s var(--transition-lux);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 260px;
}

.method-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 1px;
  height: 0;
  background: var(--svastih-blue);
  transition: height 0.5s var(--transition-lux);
}

.method-card:hover {
  background: rgba(13, 25, 44, 0.7);
  border-color: rgba(212, 175, 55, 0.15);
  transform: translateY(-5px);
}

.method-card:hover::before {
  height: 100%;
}

.method-index {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--svastih-blue);
  display: block;
  margin-bottom: 30px;
}

.method-title {
  font-size: 1.4rem;
  color: #FFF;
  margin-bottom: 15px;
  font-weight: 400;
}

.method-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
  font-weight: 300;
}

/* HIGH-END CONCIERGE RESPONSE SYSTEM */
.concierge-surface {
  background-color: var(--navy-mid);
  position: relative;
  overflow: hidden;
}

.concierge-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 80px;
  z-index: 5;
  position: relative;
}

.channels-container {
  margin: 50px 0;
  display: flex;
  flex-direction: column;
  gap: 35px;
}

.channel-row {
  display: flex;
  align-items: center;
  gap: 25px;
}

.channel-seal {
  width: 56px;
  height: 56px;
  border: 1px solid var(--svastih-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--svastih-blue);
  font-size: 1.1rem;
}

.channel-meta-lbl {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-muted);
}

.channel-main-val {
  font-size: 1.15rem;
  color: #FFF;
  margin-top: 5px;
  font-weight: 400;
}

.btn-lux-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: transparent;
  border: 1px solid #128C7E;
  color: #128C7E;
  padding: 16px 32px;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 500;
  transition: all 0.4s ease;
  width: fit-content;
  margin-top: 15px;
}

.btn-lux-whatsapp:hover {
  background: #128C7E;
  color: #FFF;
  box-shadow: 0 15px 30px rgba(18, 140, 126, 0.2);
}

/* Premium Fluid Inputs */
.concierge-form {
  display: flex;
  flex-direction: column;
  gap: 45px;
}

.form-twin-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.field-wrapper {
  position: relative;
}

.fluid-input {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  padding: 14px 0;
  color: #FFF;
  font-family: var(--font-sans);
  font-size: 1.05rem;
  transition: border-color 0.4s ease;
}

.fluid-input:focus {
  outline: none;
  border-color: var(--svastih-blue);
}

.fluid-label {
  position: absolute;
  top: 14px;
  left: 0;
  color: var(--text-muted);
  pointer-events: none;
  transition: all 0.4s var(--transition-lux);
  font-size: 1rem;
  font-weight: 300;
}

.fluid-input:focus~.fluid-label,
.fluid-input:not(:placeholder-shown)~.fluid-label {
  top: -18px;
  font-size: 0.75rem;
  color: var(--svastih-blue);
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* GLOBAL ANIMATION SCROLL ENGINE REVEAL */
.lux-reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 1.2s var(--transition-lux), transform 1.2s var(--transition-lux);
}

.lux-reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* FOOTER INTEGRATION */
.lux-footer {
  background: #03070E;
  padding: 80px 8% 50px;
  border-top: 1px solid rgba(255, 255, 255, 0.03);
  font-size: 0.9rem;
  color: var(--text-muted);
}

.footer-core-grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 60px;
  margin-bottom: 60px;
}

.footer-identity h3 {
  color: #FFF;
  font-size: 1.8rem;
  margin-bottom: 25px;
  letter-spacing: 2px;
}

.footer-identity p {
  max-width: 340px;
  line-height: 1.8;
  font-weight: 300;
}

.footer-column h4 {
  color: #FFF;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 30px;
}

.footer-column ul {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-column a {
  transition: color 0.3s ease;
}

.footer-column a:hover {
  color: var(--svastih-blue);
}

.footer-base {
  border-top: 1px solid rgba(255, 255, 255, 0.03);
  padding-top: 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  letter-spacing: 1px;
}

/* INTERACTIVE RESPONSIBILITIES */
@media (max-width: 1024px) {

  .split-composition-grid,
  .concierge-grid,
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

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

  .footer-core-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {


  .method-grid,
  .form-twin-row,
  .footer-core-grid {
    grid-template-columns: 1fr;
  }

  .nav-links {
    display: none;
  }

  .footer-base {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
}

#main-logo {
  width: 145px;
  height: auto;
  display: block;
}

@media (max-width: 768px) {
  #main-logo {
    width: 120px;
  }
}

@media (max-width: 768px) {

  .nav-logo {
    position: static;
  }

  #main-logo {
    width: 95px;
    height: auto;
  }
}

/* ===========================================
   Scroll To Top
=========================================== */

.scroll-top-btn {
  position: fixed;
  right: 30px;
  bottom: 30px;

  width: 56px;
  height: 56px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: var(--svastih-dark-blue);
  color: var(--white);

  border: 1px solid var(--svastih-blue);

  cursor: pointer;

  opacity: 0;
  visibility: hidden;

  transform: translateY(15px);

  transition:
    opacity .35s ease,
    transform .35s ease,
    background .35s ease,
    color .35s ease,
    border-color .35s ease;

  z-index: 999;

  pointer-events: none;
}

.scroll-top-btn.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.scroll-top-btn:hover {
  background: var(--svastih-blue);
  color: var(--svastih-dark-blue);
}

.scroll-top-btn svg {
  width: 18px;
  height: 18px;
}


/* Tablet */

@media(max-width:991px) {

  .scroll-top-btn {

    right: 24px;
    bottom: 24px;

    width: 52px;
    height: 52px;

  }

}


/* Mobile */

@media(max-width:767px) {

  .scroll-top-btn {

    right: 18px;
    bottom: 18px;

    width: 48px;
    height: 48px;

  }

  .scroll-top-btn svg {

    width: 16px;
    height: 16px;

  }

}

.hero {
  display: grid;
  grid-template-columns: 45% 55%;
  align-items: center;
  gap: 80px;
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  border-radius: 24px;
}

.hero-image {
  width: 100%;
  max-width: none;
  height: 760px;
  object-fit: cover;
  border-radius: 12px;
  aspect-ratio: 4 / 5;
  border: 1px solid rgba(255, 255, 255, .08);
  /* box-shadow: 0 25px 60px rgba(0, 0, 0, .28); */
  box-shadow:
    0 30px 80px rgba(0, 0, 0, .35),
    0 8px 20px rgba(0, 0, 0, .18);
  object-position: center right;
  transition:
    transform 1.2s cubic-bezier(.22, 1, .36, 1),
    filter .8s ease;


  will-change: transform;
}

.hero-text-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media(max-width:992px) {

  .hero-grid {

    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .hero-image {

    width: 100%;
    height: 430px;
    object-position: center;
    border-radius: 16px;
    margin-top: 35px;
  }

  .hero-title {
    font-size: 3rem;
    line-height: 1.05;
  }

  .hero-visual {
    justify-content: center;
  }

}

.hero-image {
  transition:
    transform 1.2s cubic-bezier(.22, 1, .36, 1),
    box-shadow .8s ease;
}

.hero-visual {
  overflow: hidden;
  border-radius: 20px;
}

.hero-image:hover {
  transform: scale(1.02);
}

.hero-visual::before {
  content: "";
  position: absolute;
  width: 90%;
  height: 90%;
  background: #00B7FF12;
  filter: blur(80px);
  opacity: .7;
  border-radius: 50%;
  z-index: -1;
}

.ecosystem-card {

  background: #fff;

  border-radius: 20px;

  overflow: hidden;

  transition: .45s;

  box-shadow: 0 10px 30px rgba(0, 0, 0, .06);

}

.ecosystem-card:hover {

  transform: translateY(-8px);

  box-shadow: 0 25px 60px rgba(0, 0, 0, .14);

}

.ecosystem-card img {

  width: 100%;

  aspect-ratio: 4/3;

  object-fit: cover;

  transition: 1s;

}

.ecosystem-card:hover img {

  transform: scale(1.05);

}





.ecosystem-content {

  padding: 26px;

}

@media(max-width:1200px) {

  .ecosystem-grid {

    grid-template-columns: repeat(2, 1fr);

  }

}

@media(max-width:768px) {

  .ecosystem-grid {

    grid-template-columns: 1fr;

    gap: 24px;

  }

  .ecosystem-card img {

    height: 240px;

  }

}

/* ===========================================================
   PRODUCT ECOSYSTEM
=========================================================== */

#portfolio {
  background: #050b16;
}

.section-heading {
  max-width: 820px;
  margin: 0 auto 70px;
  text-align: center;
}

.section-kicker {
  display: inline-block;
  font-size: .75rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--svastih-blue);
  margin-bottom: 18px;
}

.section-heading h2 {

  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 4.2rem);
  line-height: 1.15;
  color: #fff;
  margin-bottom: 22px;

}

.section-heading p {

  max-width: 760px;
  margin: auto;

  color: var(--text-muted);

  font-size: 1.05rem;

  line-height: 1.9;

}

/* GRID */

.ecosystem-grid {

  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));

  gap: 32px;

  width: 100%;

  margin-top: 60px;

}

/* CARD */

.ecosystem-card {
  background: linear-gradient(180deg, #0f1b31 0%, #0b1426 100%);
  border: 1px solid rgba(255, 255, 255, .06);
  border-radius: 18px;
  overflow: hidden;
  transition: .45s cubic-bezier(.22, 1, .36, 1);
  width: 100%;
  min-width: 0;
}

.ecosystem-card:hover {

  transform: translateY(-8px);

  border-color: rgba(31, 164, 229, .45);

  box-shadow:
    0 20px 50px rgba(0, 0, 0, .35);

}

/* IMAGE */

.ecosystem-card img {
  width: 100%;
  object-fit: cover;
  transition: 1.1s;
  height: 220px;
  display: block;
}

.ecosystem-card:hover img {

  transform: scale(1.05);

}

/* CONTENT */

.ecosystem-content {

  padding: 26px;

}

.eco-tag {

  display: inline-block;

  font-size: .72rem;

  letter-spacing: 2px;

  text-transform: uppercase;

  color: var(--svastih-blue);

  margin-bottom: 12px;

}

.ecosystem-content h3 {

  font-family: var(--font-serif);

  color: #fff;

  font-size: 1.65rem;

  margin-bottom: 14px;

}

.ecosystem-content p {

  color: var(--text-muted);

  line-height: 1.8;

  font-size: .96rem;

  margin-bottom: 22px;

}

.ecosystem-content a {

  display: inline-flex;

  align-items: center;

  gap: 8px;

  color: var(--svastih-blue);

  font-size: .82rem;

  letter-spacing: 1px;

  text-transform: uppercase;

  transition: .3s;

}

.ecosystem-content a:hover {

  transform: translateX(6px);

}

/* ==========================================
   PREMIUM PORTFOLIO HOVER
========================================== */

.ecosystem-card {
  position: relative;
  overflow: hidden;
  transition:
    transform .45s cubic-bezier(.22, .61, .36, 1),
    box-shadow .45s cubic-bezier(.22, .61, .36, 1),
    border-color .45s ease;
}

.ecosystem-card img {
  transition:
    transform .8s cubic-bezier(.22, .61, .36, 1),
    filter .8s ease;
}

.ecosystem-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
      rgba(5, 12, 24, .00) 0%,
      rgba(5, 12, 24, .12) 45%,
      rgba(5, 12, 24, .55) 100%);
  opacity: 0;
  transition: opacity .5s ease;
  pointer-events: none;
  z-index: 1;
}

.ecosystem-content {
  position: relative;
  z-index: 2;
}

.ecosystem-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, .35);
  border-color: rgba(46, 163, 255, .35);
}

.ecosystem-card:hover::before {
  opacity: 1;
}

.ecosystem-card:hover img {
  transform: scale(1.08);
}

.ecosystem-card a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all .35s ease;
}

.ecosystem-card:hover a {
  transform: translateX(8px);
  color: #fff;
}

.ecosystem-card h3 {
  transition: color .35s ease;
}

.ecosystem-card:hover h3 {
  color: var(--svastih-blue);
}

/* ==========================================
   PREMIUM CARD GLOW
========================================== */

.ecosystem-card::after {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg,
      rgba(46, 163, 255, .35),
      rgba(255, 255, 255, 0),
      rgba(46, 163, 255, .15));
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity .45s ease;
  pointer-events: none;
}

.ecosystem-card:hover::after {
  opacity: 1;
}

.ecosystem-card .eco-tag {
  transition: .35s ease;
}

.ecosystem-card:hover .eco-tag {
  letter-spacing: 3px;
  color: #5ebcff;
}

.event-card {
  transition:
    transform .45s cubic-bezier(.22, .61, .36, 1),
    box-shadow .45s cubic-bezier(.22, .61, .36, 1);
}

.event-card img {
  transition: transform .8s cubic-bezier(.22, .61, .36, 1);
}

.event-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, .35);
}

.event-card:hover img {
  transform: scale(1.06);
}

.event-card h3 {
  transition: .35s ease;
}

.event-card:hover h3 {
  color: var(--svastih-blue);
}


/* ===========================================
   MOBILE NAVIGATION
=========================================== */

.mobile-nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
}

.mobile-nav-toggle span {
  width: 26px;
  height: 2px;
  background: #fff;
  transition: .35s ease;
}

@media(max-width:768px) {

  .mobile-nav-toggle {
    display: flex;
  }

  .nav-links {

    position: absolute;

    top: 100%;
    left: 0;
    right: 0;

    display: flex;
    flex-direction: column;
    gap: 28px;

    padding: 35px;

    background: rgba(8, 14, 28, .98);

    backdrop-filter: blur(20px);

    transform: translateY(-20px);

    opacity: 0;
    visibility: hidden;

    transition: .35s ease;

  }

  .nav-links.open {

    opacity: 1;
    visibility: visible;

    transform: translateY(0);

  }

}

@media(max-width:768px) {

  .hero-container {

    padding: 130px 6% 70px;

    min-height: auto;

  }

  .hero-grid {

    gap: 45px;

  }

  .hero-title {

    font-size: clamp(2.4rem, 10vw, 3.4rem);

  }

  .hero-description {

    font-size: 1rem;

  }

  .hero-image {

    height: 360px;

  }

  .btn-lux-primary {

    width: 100%;

    justify-content: center;

  }

}

/* ==========================================
   BLUEPRINT BENEFITS
========================================== */

.blueprint-benefits {
  display: grid;
  gap: 22px;
  margin: 40px 0 48px;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.benefit-icon {
  width: 30px;
  height: 30px;

  display: flex;
  align-items: center;
  justify-content: center;

  flex-shrink: 0;

  border: 1px solid rgba(32, 168, 255, .35);
  border-radius: 50%;

  color: var(--accent);
  font-size: 15px;
  font-weight: 700;

  background: rgba(32, 168, 255, .05);
}

.benefit-item h4 {
  margin: 0 0 6px;
  font-size: 17px;
  font-weight: 600;
  color: #ffffff;
  line-height: 1.35;
}

.benefit-item p {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, .62);
}

@media (max-width:768px) {

  .blueprint-benefits {
    gap: 18px;
    margin: 30px 0 36px;
  }

  .benefit-item {
    gap: 14px;
  }

  .benefit-item h4 {
    font-size: 16px;
  }

  .benefit-item p {
    font-size: 13px;
  }

}

.form-note {
  margin-top: 18px;
  text-align: center;
  font-size: 13px;
  line-height: 1.7;
  color: rgba(255, 255, 255, .55);
}

.field-wrapper-textarea {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.textarea-title {
  font-size: 0.74rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--svastih-blue);
}

.textarea-input {
  min-height: 130px;
  resize: vertical;
  padding-top: 0;
}


@media (hover:none),
(pointer:coarse) {

  * {
    cursor: auto !important;
  }

  #customCursor,
  #customCursorRing {

    display: none !important;

  }

}

.menu-cap{
    font-family: var(--font-display);
    /* color:rgba(255,255,255,.82); */
    color:#f4f4f4;
    font-size: 1.15em;
    font-weight: 500;
    letter-spacing: 0;
    display:inline-block;
    transform: translateY(1px);
}

.nav-link {
    font-family: var(--font-body);
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255,255,255,.88);
}

.nav-link .cap {
    font-family: "Kings";
    color: var(--svastih-blue);
    font-size: 2em;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0;
    margin-right: 1px;
    vertical-align: -2px;
    
}