/* ===== JHG Retail - Shared Styles ===== */

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&family=Outfit:wght@200;300;400;500;600;700;800&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
  width: 100%;
  overflow-x: hidden;
}

body {
  font-family: 'Space Grotesk', sans-serif;
  background: #ffffff;
  color: #1a1a1a;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
  cursor: default;
}

/* ===== LED Cursor Glow Effect ===== */
.led-glow {
  position: fixed;
  top: 0;
  left: 0;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  transform: translate(-50%, -50%);
  filter: blur(80px);
  opacity: 0.55;
  transition: background 1.2s ease;
  will-change: transform, background;
  mix-blend-mode: multiply;
}

.led-glow-secondary {
  position: fixed;
  top: 0;
  left: 0;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  transform: translate(-50%, -50%);
  filter: blur(60px);
  opacity: 0.4;
  transition: background 1.5s ease;
  will-change: transform, background;
  mix-blend-mode: multiply;
}

/* ===== Header ===== */
header {
  position: relative;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 64px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.logo {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.02em;
  color: #0a0a0a;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #0a0a0a;
  animation: pulse 2.5s ease-in-out infinite;
}

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

nav {
  display: flex;
  gap: 40px;
}

nav a {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 400;
  font-size: 15px;
  color: #4a4a4a;
  text-decoration: none;
  letter-spacing: 0.01em;
  position: relative;
  transition: color 0.3s ease;
}

nav a:hover {
  color: #0a0a0a;
}

nav a::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 1px;
  background: #0a0a0a;
  transition: width 0.3s ease;
}

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

nav a.active {
  color: #0a0a0a;
  font-weight: 500;
}

/* ===== Main Content ===== */
main {
  flex: 1;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
}

/* ===== Home Page ===== */
.hero {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 32px;
  text-align: center;
  min-height: calc(100vh - 200px);
}

.hero-content {
  max-width: 1100px;
}

.hero-tag {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #6a6a6a;
  margin-bottom: 32px;
  display: inline-block;
  padding: 8px 18px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(8px);
}

.hero h1 {
  font-family: 'Outfit', sans-serif;
  font-weight: 300;
  font-size: clamp(42px, 7vw, 96px);
  line-height: 1.05;
  letter-spacing: -0.035em;
  color: #0a0a0a;
  margin-bottom: 24px;
}

.hero h1 .accent {
  font-weight: 600;
  font-style: italic;
}

.hero-sub {
  font-size: 17px;
  font-weight: 400;
  color: #5a5a5a;
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ===== About Page ===== */
.about-section {
  flex: 1;
  padding: 100px 32px 80px;
  display: flex;
  justify-content: center;
}

.about-container {
  max-width: 760px;
  width: 100%;
}

.about-label {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #6a6a6a;
  margin-bottom: 24px;
}

.about-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 300;
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: #0a0a0a;
  margin-bottom: 56px;
}

.about-title .accent {
  font-weight: 600;
  font-style: italic;
}

.about-content p {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.75;
  color: #2a2a2a;
  margin-bottom: 24px;
}

.about-content p:last-of-type {
  margin-bottom: 0;
}

.about-signature {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  font-family: 'Outfit', sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: #0a0a0a;
  letter-spacing: 0.02em;
}

.about-signature .em {
  font-weight: 300;
  font-style: italic;
  color: #5a5a5a;
}

/* ===== Footer ===== */
footer {
  position: relative;
  z-index: 10;
  padding: 28px 64px;
  text-align: center;
  font-size: 13px;
  font-weight: 400;
  color: #6a6a6a;
  letter-spacing: 0.02em;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  header {
    padding: 20px 24px;
  }

  nav {
    gap: 24px;
  }

  nav a {
    font-size: 14px;
  }

  .logo {
    font-size: 18px;
  }

  footer {
    padding: 24px;
    font-size: 12px;
  }

  .hero {
    padding: 60px 24px;
  }

  .about-section {
    padding: 60px 24px;
  }

  .led-glow {
    width: 400px;
    height: 400px;
  }

  .led-glow-secondary {
    width: 250px;
    height: 250px;
  }
}
