:root {
  --black: #050505;
  --white: #ffffff;
  --ink: #151515;
  --muted: #667085;
  --soft: #f6f7f9;
  --border: #e7e7ea;
  --card: #ffffff;
  --radius: 30px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
}

body {
  font-family: Inter, system-ui, -apple-system, Segoe UI, sans-serif;
  color: var(--ink);
  background: #ffffff;
  overflow-x: hidden;
}

a {
  transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 10px;
  background: #ffffff;
  color: #000000;
  padding: 12px 18px;
  border-radius: 12px;
  z-index: 9999;
}

.skip-link:focus {
  left: 16px;
}

.fw-black {
  font-weight: 900;
}

.brand-logo {
  display: block; 
  height: clamp(42px, 4.6vw, 58px);
  width: auto;
  max-width: min(240px, 42vw);
  object-fit: contain;
}

.glass-nav {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
}

.navbar {
  /* min-height: 76px; */
  /* padding-top: 14px;*/
  /*padding-bottom: 14px; */
  min-height: 0px;
  padding-top: 5px;
  padding-bottom: 5px;
}

.navbar .container {
  align-items: center;
}

.navbar-brand {
  display: flex;
  align-items: center;
  padding: 0;
  margin-right: 1rem;
}

.nav-link {
  font-weight: 700;
  color: #111111 !important;
  font-size: 0.93rem;
}

.nav-link:hover {
  color: #6b7280 !important;
}

.nav-link:focus,
.btn:focus,
.form-control:focus,
.form-select:focus {
  outline: 3px solid rgba(0, 0, 0, 0.22);
  outline-offset: 3px;
  box-shadow: none;
}

.btn {
  font-weight: 700; 
}


.btn-group-lg>.btn, .btn-lg {
    --bs-btn-padding-y: 0.5rem !important;
    --bs-btn-padding-x: 1rem !important;
    /* --bs-btn-font-size: 1.25rem; */
    --bs-btn-font-size: 0 rem !important;
    --bs-btn-border-radius: var(--bs-border-radius-lg);
}

.section-padding {
  /* padding: 120px 0; */
  padding: 80px 0;
}

.bg-soft {
  background: var(--soft);
}

/* .hero-section {
  min-height: 100vh;
  background: #050505;
  color: #ffffff;
  position: relative;
  overflow: hidden;
} */

/*Carosel start*/
.hero-section {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  background: #000;
}

.hero-background {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}

.hero-slide.active {
  opacity: 1;
  /* opacity: 0;
  transition: opacity 2s ease-in-out; */
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;

  background:
    linear-gradient(
      rgba(0,0,0,.72),
      rgba(0,0,0,.82)
    );
}

.hero-grid {
  z-index: 2;
}

.hero-section .container {
  position: relative;
  z-index: 3;
}

/* carosel ends */

.hero-section::before {
  content: "";
  position: absolute;
  inset: -30%;
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.18), transparent 22%),
    radial-gradient(circle at 70% 60%, rgba(255, 255, 255, 0.10), transparent 24%);
  animation: drift 16s ease-in-out infinite alternate;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(circle at 60% 40%, #000, transparent 72%);
  opacity: 0.72;
}

.eyebrow,
.section-label {
  display: inline-flex;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-size: 0.74rem;
  font-weight: 900;
  color: #777777;
  margin-bottom: 16px;
}

.eyebrow {
  color: #cfcfcf;
}

.section-label.light {
  color: #d6d6d6;
}

.hero-heading {
  max-width: 860px;
}

.hero-heading-line {
  margin: 0;
  font-weight: 700;
  line-height: 0.96;
  letter-spacing: -0.055em;
}

.hero-heading-primary {
  color: #ffffff;
  font-size: clamp(3.8rem, 7.5vw, 6.7rem);
}

.hero-heading-secondary {
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(2.9rem, 5.6vw, 5rem);
}

.hero-heading-accent {
  color: rgba(255, 255, 255, 0.54);
  font-size: clamp(2.15rem, 4.3vw, 3.85rem);
}

.hero-copy {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 1.25rem;
  line-height: 1.7;
}

.section-intro {
  max-width: 840px;
}

.section-intro h2,
.section-padding h2 {
  font-weight: 900;
  letter-spacing: -0.055em;
  font-size: clamp(2.2rem, 5vw, 4.8rem);
  line-height: 0.96;
}

.section-intro p,
.large-muted {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.75;
}

.split-copy {
  padding: 25px;
}

.vision-section {
  /* padding: 145px 0; */
  padding: 50px 0;
  background: #050505;
  color: #ffffff;
}

.vision-section h2 {
  font-size: clamp(2.3rem, 6vw, 5.7rem);
  font-weight: 900;
  letter-spacing: -0.065em;
  line-height: 0.92;
  max-width: 1060px;
  margin: 0 auto 24px;
}

.vision-section p,
.cta-section p {
  font-size: 1.18rem;
  color: #777777;
  max-width: 760px;
  margin: 0 auto 30px;
}

.form-control,
.form-select {
  border-radius: 16px;
  padding: 13px 15px;
  border-color: #dedee3;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

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

@keyframes float {
  50% {
    transform: translateY(-13px);
  }
}

@keyframes drift {
  to {
    transform: translate3d(4%, 2%, 0) scale(1.05);
  }
}


.hero-heading {
  max-width: 1400px;
}

.type-line {
  display: block;
}

.type-line-one {
  font-size: clamp(4rem, 8vw, 8rem);
  line-height: .9;
}

.type-line-two {
  font-size: clamp(3rem, 6vw, 6rem);
  line-height: .95;
}

.type-line-three {
  font-size: clamp(4.2rem, 3vw, 4rem);
  line-height: 1;
}

.type-line.active::after {
  content: "|";
  animation: blinkCursor .8s infinite;
}

@keyframes blinkCursor {
  50% {
    opacity: 0;
  }
}

.pt-5 {
    padding-top: 0rem !important;
}

.lyraks-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: transparent;
  z-index: 100000;
  pointer-events: none;

}

.lyraks-progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #0f172a, #2563eb, #7c3aed);
  border-radius: 0 999px 999px 0;
  box-shadow: 0 0 10px rgba(37, 99, 235, 0.35);
  transition: width 0.08s linear;
}
.navbar {
  top: 4px;
}
/* =========================================================
   Lyraks responsive stability patch
   Fixes hero typewriter layout shift and improves full-site
   web/mobile compatibility without changing the brand design.
   ========================================================= */

html,
body {
  width: 100%;
  max-width: 100%;
}

img,
svg,
video {
  max-width: 100%;
}

.navbar.fixed-top,
.glass-nav {
  position: fixed;
  /* top: 4px;  */
  top:0px;
  z-index: 9999;
}

.navbar .container {
  gap: 12px;
}

.navbar .btn-lg,
.btn-lg {
  --bs-btn-font-size: 0.92rem !important;
  line-height: 1.2;
}

.hero-section {
  min-height: 100svh;
  color: #ffffff;
}

.hero-section .row.min-vh-100 {
  min-height: 100svh !important;
  padding-top: clamp(92px, 10vh, 132px) !important;
  padding-bottom: clamp(56px, 8vh, 96px) !important;
}

.hero-heading {
  width: 100%;
  max-width: 1400px;
  min-height: clamp(260px, 24vw, 390px);
  display: flex;
  align-items: flex-start;
  margin-bottom: clamp(1rem, 2vw, 1.5rem) !important;
}

.hero-heading-line {
  width: 100%;
}

.type-line {

  display: block;
  min-height: 1.04em;
  overflow-wrap: normal;
  word-break: normal;
  text-wrap: balance;

  /* letter-spacing: 0.01em; */
}

.type-line-one {

  font-size: clamp(3.8rem, 7.5vw, 8rem);
  line-height: 0.95;

  letter-spacing: -0.04em;
}

.type-line-two {

  font-size: clamp(2.7rem, 5.7vw, 6rem);
  line-height: 1;

  letter-spacing: -0.02em;
}

.type-line-three {

  font-size: clamp(2.25rem, 4vw, 4rem);
  line-height: 1.08;

  letter-spacing: 0.02em;
}

.type-line.active::after {
  display: inline-block;
  width: 0.45ch;
  margin-left: 0.06em;
}

.hero-copy,
.section-intro p,
.large-muted,
.platform-card p,
.trust-card p,
.value-card p,
.footer p {
  overflow-wrap: anywhere;
}

.platform-card,
.trust-card,
.value-card,
.contact-card,
.split-panel,
.world-panel,
.dashboard-mock {
  max-width: 100%;
}

.platform-actions .btn {
  white-space: normal;
}

.module-list span,
.status {
  line-height: 1.25;
}



