/* ========================================= */
/* ROOT */
/* ========================================= */

:root {

  --bg-primary: #07111f;
  --bg-secondary: #0c1c30;

  --gold: #d4af37;
  --gold-light: #f2d98a;

  --white: #ffffff;
  --off-white: #dce5f0;

  --glass: rgba(255,255,255,0.06);

  --border: rgba(255,255,255,0.08);

  --shadow:
    0 25px 60px rgba(0,0,0,0.45);

}

/* ========================================= */
/* GLOBAL */
/* ========================================= */

* {

  margin: 0;
  padding: 0;

  box-sizing: border-box;

}

html {

  scroll-behavior: smooth;

}

body {

  font-family: 'Montserrat', sans-serif;

  background:
    linear-gradient(
      180deg,
      var(--bg-primary),
      var(--bg-secondary)
    );

  color: var(--white);

  overflow-x: hidden;

  position: relative;

}

img {

  width: 100%;
  display: block;

}

a {

  text-decoration: none;
  color: inherit;

}

.container {

  width: 94%;
  max-width: 1450px;

  margin: auto;

}

.section {

  padding: 100px 0;

  position: relative;

}

h1,
h2,
h3,
h4 {

  line-height: 1.1;

}

p {

  color: var(--off-white);

  line-height: 1.8;

}

/* ========================================= */
/* BACKGROUND */
/* ========================================= */

.blur {

  position: fixed;

  border-radius: 50%;

  filter: blur(120px);

  z-index: -2;

  opacity: 0.45;

}

.blur1 {

  width: 360px;
  height: 360px;

  background: #0f4cff;

  top: -120px;
  left: -120px;

}

.blur2 {

  width: 340px;
  height: 340px;

  background: #d4af37;

  top: 200px;
  right: -120px;

}

.blur3 {

  width: 300px;
  height: 300px;

  background: #00c8ff;

  bottom: -120px;
  left: 40%;

}

.grid-overlay {

  position: fixed;

  inset: 0;

  background-image:

    linear-gradient(
      rgba(255,255,255,0.03) 1px,
      transparent 1px
    ),

    linear-gradient(
      90deg,
      rgba(255,255,255,0.03) 1px,
      transparent 1px
    );

  background-size: 60px 60px;

  z-index: -3;

}

/* ========================================= */
/* NAVBAR */
/* ========================================= */

.navbar {

  position: fixed;

  top: 0;
  left: 0;

  width: 100%;

  z-index: 999;

  background:
    rgba(5,12,22,0.72);

  backdrop-filter: blur(20px);

  border-bottom:
    1px solid rgba(255,255,255,0.06);

}

.nav-container {

  height: 90px;

  display: flex;
  justify-content: space-between;
  align-items: center;

}

/* ========================================= */
/* LOGO */
/* ========================================= */

.logo {

  display: flex;
  align-items: center;

}

.logo img {

  width: 190px;

  object-fit: contain;

  filter:
    drop-shadow(
      0 0 18px rgba(212,175,55,0.25)
    );

  transition: 0.4s;

}

.logo img:hover {

  transform: scale(1.04);

}

/* ========================================= */
/* NAV LINKS */
/* ========================================= */

.nav-links {

  display: flex;

  gap: 35px;

}

.nav-links a {

  font-size: 15px;
  font-weight: 600;

  position: relative;

  transition: 0.4s;

}

.nav-links a::after {

  content: "";

  position: absolute;

  left: 0;
  bottom: -8px;

  width: 0%;
  height: 2px;

  background: var(--gold);

  transition: 0.4s;

}

.nav-links a:hover {

  color: var(--gold);

}

.nav-links a:hover::after {

  width: 100%;

}

/* ========================================= */
/* BUTTON */
/* ========================================= */

.gold-btn {

  display: inline-flex;

  align-items: center;
  justify-content: center;

  border: none;

  background:
    linear-gradient(
      135deg,
      var(--gold),
      var(--gold-light)
    );

  color: #111;

  padding: 18px 36px;

  border-radius: 60px;

  font-size: 15px;
  font-weight: 800;

  cursor: pointer;

  transition: 0.4s;

  box-shadow:
    0 18px 40px rgba(212,175,55,0.35);

}

.gold-btn:hover {

  transform:
    translateY(-6px)
    scale(1.03);

  box-shadow:
    0 22px 55px rgba(212,175,55,0.5);

}

.pulse-btn {

  animation:
    pulse 2s infinite;

}

@keyframes pulse {

  0% {

    box-shadow:
      0 0 0 0 rgba(212,175,55,0.55);

  }

  70% {

    box-shadow:
      0 0 0 28px rgba(212,175,55,0);

  }

  100% {

    box-shadow:
      0 0 0 0 rgba(212,175,55,0);

  }

}

/* ========================================= */
/* HAMBURGER */
/* ========================================= */

.hamburger {

  display: none;

  flex-direction: column;

  gap: 5px;

  cursor: pointer;

}

.hamburger span {

  width: 28px;
  height: 3px;

  border-radius: 20px;

  background: white;

}

/* ========================================= */
/* MOBILE MENU */
/* ========================================= */

.mobile-menu {

  position: fixed;

  top: 90px;
  right: -100%;

  width: 320px;
  height: calc(100vh - 90px);

  background:
    rgba(8,18,32,0.97);

  backdrop-filter: blur(20px);

  padding: 40px;

  display: flex;
  flex-direction: column;

  gap: 24px;

  transition: 0.5s;

  z-index: 999;

}

.mobile-menu.active {

  right: 0;

}

/* ========================================= */
/* HERO */
/* ========================================= */

.hero {

  min-height: 100vh;

  display: flex;
  align-items: center;

  padding-top: 120px;

  position: relative;

}

.hero::before {

  content: "";

  position: absolute;

  top: 0;
  right: 0;

  width: 45%;
  height: 100%;

  background:
    linear-gradient(
      270deg,
      rgba(212,175,55,0.08),
      transparent
    );

}

.hero-grid {

  display: grid;

  grid-template-columns:
    1.2fr 0.8fr;

  gap: 45px;

  align-items: center;

}

.eyebrow {

  display: inline-block;

  padding: 12px 22px;

  border-radius: 50px;

  background:
    rgba(212,175,55,0.08);

  border:
    1px solid rgba(212,175,55,0.2);

  color: var(--gold-light);

  font-size: 13px;
  font-weight: 700;

  letter-spacing: 1px;

  margin-bottom: 24px;

}

.hero-content h1 {

  font-size: 76px;
  font-weight: 900;

  max-width: 900px;

  margin-bottom: 24px;

}

.hero-content h1 span {

  color: var(--gold);

}

.hero-text {

  font-size: 20px;

  max-width: 760px;

  margin-bottom: 34px;

}

.image-box {

  border-radius: 35px;

  overflow: hidden;

  border:
    1px solid rgba(255,255,255,0.08);

  box-shadow: var(--shadow);

}

.image-box img {

  height: 760px;

  object-fit: cover;

  transition: 0.8s;

}

.image-box:hover img {

  transform: scale(1.08);

}

/* ========================================= */
/* GLASS CARD */
/* ========================================= */

.glass-card {

  background: var(--glass);

  backdrop-filter: blur(20px);

  border:
    1px solid var(--border);

  border-radius: 30px;

  transition: 0.45s;

  box-shadow: var(--shadow);

}

.glass-card:hover {

  transform:
    translateY(-12px);

  border-color:
    rgba(212,175,55,0.3);

}

/* ========================================= */
/* SECTION HEADINGS */
/* ========================================= */

.section-heading {

  text-align: center;

  max-width: 1100px;

  margin:
    0 auto 70px;

}

.section-label {

  color: var(--gold);

  font-size: 14px;
  font-weight: 700;

  letter-spacing: 2px;

}

.section-heading h2 {

  font-size: 62px;

  margin:
    18px 0;

}

.section-heading p {

  font-size: 18px;

}

/* ========================================= */
/* PAIN CARDS */
/* ========================================= */

.cards-grid {

  display: grid;

  grid-template-columns:
    repeat(4, 1fr);

  gap: 24px;

}

.cards-grid .glass-card {

  padding: 34px;

  min-height: 280px;

}

.card-icon {

  font-size: 42px;

  margin-bottom: 22px;

}

.cards-grid h3 {

  font-size: 26px;

  margin-bottom: 15px;

}

/* ========================================= */
/* SPLIT GRID */
/* ========================================= */

.split-grid {

  display: grid;

  grid-template-columns:
    0.9fr 1.1fr;

  gap: 55px;

  align-items: center;

}

.image-side img {

  height: 720px;

  object-fit: cover;

  border-radius: 35px;

  box-shadow: var(--shadow);

}

.content-side h2 {

  font-size: 58px;

  margin:
    20px 0 24px;

}

.content-side p {

  font-size: 17px;

  margin-bottom: 18px;

}

.quote-box {

  margin-top: 30px;

  padding: 32px;

  border-radius: 24px;

  background:
    rgba(212,175,55,0.08);

  border:
    1px solid rgba(212,175,55,0.18);

  color: var(--gold-light);

  font-size: 22px;
  font-weight: 700;

}

/* ========================================= */
/* AGENDA */
/* ========================================= */

.agenda-grid {

  display: grid;

  grid-template-columns:
    repeat(2, 1fr);

  gap: 24px;

}

.agenda-card {

  padding: 40px;

  min-height: 300px;

}

.agenda-number {

  font-size: 72px;
  font-weight: 900;

  color:
    rgba(212,175,55,0.12);

  margin-bottom: 20px;

}

.agenda-card h3 {

  font-size: 28px;

  margin-bottom: 16px;

}

/* ========================================= */
/* EXPERT */
/* ========================================= */

.expert-points {

  display: flex;
  flex-wrap: wrap;

  gap: 18px;

  margin-top: 30px;

}

.small-card {

  padding: 18px 24px;

  font-weight: 600;

}

/* ========================================= */
/* CTA */
/* ========================================= */

.final-cta {

  text-align: center;

}

.cta-box {

  padding: 80px;

  max-width: 1250px;

  margin: auto;

}

.cta-box h2 {

  font-size: 64px;

  margin:
    18px 0 22px;

}

.cta-box p {

  max-width: 900px;

  margin:
    0 auto 38px;

  font-size: 19px;

}

/* ========================================= */
/* FOOTER */
/* ========================================= */

.footer {

  padding: 45px 0;

  border-top:
    1px solid rgba(255,255,255,0.08);

}

.footer-content {

  display: flex;
  justify-content: space-between;
  align-items: center;

  gap: 20px;

  flex-wrap: wrap;

}

.footer-logo {

  font-size: 28px;
  font-weight: 900;

}

.footer-links {

  display: flex;
  gap: 25px;

  flex-wrap: wrap;

}

.footer-links a {

  color: var(--off-white);

  transition: 0.3s;

}

.footer-links a:hover {

  color: var(--gold);

}

/* ========================================= */
/* REVEAL */
/* ========================================= */

.reveal {

  opacity: 0;

  transform:
    translateY(60px);

  transition:
    1s ease;

}

.reveal.active {

  opacity: 1;

  transform:
    translateY(0);

}

/* ========================================= */
/* DARK SECTION */
/* ========================================= */

.dark-section {

  background:
    rgba(255,255,255,0.02);

}

/* ========================================= */
/* RESPONSIVE */
/* ========================================= */

@media(max-width: 1150px){

  .hero-grid,
  .split-grid,
  .cards-grid,
  .agenda-grid {

    grid-template-columns: 1fr;

  }

  .nav-links,
  .nav-container .gold-btn {

    display: none;

  }

  .hamburger {

    display: flex;

  }

}

@media(max-width: 768px){

  .hero-content h1 {

    font-size: 42px;

  }

  .section-heading h2,
  .content-side h2,
  .cta-box h2 {

    font-size: 34px;

  }

  .image-box img,
  .image-side img {

    height: 450px;

  }

  .cta-box {

    padding: 55px 28px;

  }

}

@media(max-width: 500px){

  .hero-content h1 {

    font-size: 34px;

  }

  .section-heading h2,
  .content-side h2,
  .cta-box h2 {

    font-size: 28px;

  }

}