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

:root {

  --bg: #040816;
  --bg-soft: #08172f;

  --gold: #dca85b;
  --gold-bright: #f3be69;

  --text: #f7f3ec;
  --muted: rgba(255,255,255,0.72);

  --line: rgba(255,255,255,0.08);
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  overflow-x: hidden;
  color: var(--text);
  font-family: 'Inter', sans-serif;
}

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.03;
  background-image:
    radial-gradient(circle, rgba(255,255,255,0.8) 1px, transparent 1px);
  background-size: 5px 5px;
  z-index: 999;
}

.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1002;
  backdrop-filter: blur(14px);
  background: rgba(4,8,22,0.22);
  border-bottom: 1px solid rgba(255,255,255,0.03);
}

.navbar-inner {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 26px 42px;
}

.navbar-logo {
  display: flex;
  align-items: center;
  gap: 14px;
}

.navbar-logo a {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: inherit;
}

.navbar-logo img {
  width: 42px;
}

.navbar-logo span {
  font-family: 'Cormorant Garamond', serif;
  font-size: 34px;
  letter-spacing: 4px;
}

.navbar-links {
  display: flex;
  gap: 42px;
}

.navbar-links a {
  color: rgba(255,255,255,0.82);
  text-decoration: none;
  transition: 0.3s ease;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 1px;
}

.navbar-links a:hover {
  color: var(--gold);
}

.navbar-dropdown {
  position: relative;
}

.navbar-dropdown > a {
  cursor: pointer;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: rgba(4, 8, 22, 0.95);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 12px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 1000;
}

.navbar-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  display: block;
  padding: 10px 24px;
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  transition: 0.2s ease;
  font-size: 15px;
}

.dropdown-menu a:hover {
  color: var(--gold);
  background: rgba(220, 168, 91, 0.1);
}

.navbar-button {
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  color: #1a1205;
  text-decoration: none;
  padding: 14px 26px;
  border-radius: 14px;
  font-weight: 600;
  transition: 0.35s ease;
}

.navbar-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(220,168,91,0.35);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  cursor: pointer;
  padding: 12px;
  z-index: 1002;
  position: relative;
  transition: 0.3s ease;
}

.mobile-menu-toggle:hover {
  background: rgba(220, 168, 91, 0.1);
  border-color: rgba(220, 168, 91, 0.3);
}

.mobile-menu-toggle span {
  width: 22px;
  height: 2px;
  background: var(--gold);
  transition: 0.3s ease;
  border-radius: 2px;
  display: block;
}

.mobile-menu-toggle.active {
  background: rgba(220, 168, 91, 0.15);
  border-color: rgba(220, 168, 91, 0.4);
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 75% 20%,
      rgba(147, 51, 234, 0.15),
      transparent 40%),
    radial-gradient(circle at 20% 80%,
      rgba(220, 168, 91, 0.08),
      transparent 45%),
    linear-gradient(180deg,
      #040816 0%,
      #08172f 100%);
  z-index: 1001;
  padding: 110px 28px 40px;
  flex-direction: column;
  gap: 0;
  opacity: 0;
  visibility: hidden;
  transition: 0.35s ease;
  overflow-y: auto;
}

.mobile-menu::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(255, 255, 255, 0.6) 1px, transparent 1px);
  background-size: 5px 5px;
  opacity: 0.04;
  pointer-events: none;
}

.mobile-menu.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu > * {
  position: relative;
  z-index: 1;
}

.mobile-menu > a {
  color: #f7f3ec;
  text-decoration: none;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.5px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: 0.2s ease;
  display: block;
}

.mobile-menu > a:hover {
  color: var(--gold);
  padding-left: 8px;
}

.mobile-dropdown {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  z-index: 1;
}

.mobile-dropdown-toggle {
  width: 100%;
  background: none;
  border: none;
  color: #f7f3ec;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.5px;
  padding: 18px 0;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: 0.2s ease;
  font-family: 'Inter', sans-serif;
}

.mobile-dropdown-toggle:hover {
  color: var(--gold);
}

.mobile-dropdown-toggle::after {
  content: '+';
  font-size: 24px;
  font-weight: 300;
  color: var(--gold);
  transition: 0.3s ease;
}

.mobile-dropdown-toggle.active::after {
  content: '−';
}

.mobile-dropdown-menu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  display: flex;
  flex-direction: column;
}

.mobile-dropdown-menu.active {
  max-height: 300px;
  padding-bottom: 12px;
}

.mobile-dropdown-menu a {
  font-size: 16px;
  padding: 10px 0 10px 20px;
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  border-left: 2px solid rgba(220, 168, 91, 0.3);
  margin-left: 4px;
  margin-bottom: 4px;
  transition: 0.2s ease;
}

.mobile-dropdown-menu a:hover {
  color: var(--gold);
  border-left-color: var(--gold);
  padding-left: 24px;
}

.mobile-cta {
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  color: #1a1205 !important;
  text-align: center;
  padding: 18px 26px !important;
  border-radius: 14px;
  font-weight: 600;
  margin-top: 32px;
  border: none !important;
  text-decoration: none;
  font-size: 17px !important;
}

.mobile-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(220,168,91,0.35);
  padding-left: 26px !important;
}

.hero-section {
  position: relative;
  min-height: 80vh;
  overflow: hidden;
  background:
    radial-gradient(circle at 75% 50%,
      rgba(147,51,234,0.08),
      transparent 40%),
    radial-gradient(circle at 70% 30%,
      rgba(139,92,246,0.05),
      transparent 35%),
    radial-gradient(circle at 30% 70%,
      rgba(168,85,247,0.04),
      transparent 40%),
    linear-gradient(
      180deg,
      #0a0a12 0%,
      #05050a 50%,
      #020205 100%
    );
}

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

.hero-noise {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  pointer-events: none;
  background-image:
    radial-gradient(circle,
      rgba(255,255,255,0.7) 1px,
      transparent 1px);
  background-size: 5px 5px;
}

.hero-portal-layer {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.hero-portal {
  position: absolute;
  left: 45%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: min(120vw, 1800px);
  opacity: 0.98;
  animation: portalFloat 10s ease-in-out infinite;
  transition: all 2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Portal entrance animation */
body.portal-entrance .hero-portal {
  transform-origin: center center;
  transform: translate(-50%, -50%) scale(100);
  opacity: 1;
  filter: brightness(2.2);
}

body.portal-entrance .hero-section {
  transform-origin: 45% 48%;
  transform: scale(5) translate(-20%, 0%);
  transition: transform 2.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

body.portal-entrance .hero-content-wrapper {
  opacity: 0;
  transform: translateY(-50px) scale(0.95);
  transition: opacity 1s ease, transform 1s ease;
}

body.portal-entrance .navbar {
  opacity: 0;
  transition: opacity 1s ease;
}

body.portal-entrance .quote-section,
body.portal-entrance .feature-strip {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

@keyframes portalFloat {

  0% {
    transform:
      translate(-50%, -50%)
      translateX(0px);
  }

  50% {
    transform:
      translate(calc(-50% - 6px), calc(-50% - 8px));
  }

  100% {
    transform:
      translate(-50%, -50%)
      translateX(0px);
  }
}

.hero-content-wrapper {
  position: relative;
  z-index: 10;
  min-height: 80vh;
  display: flex;
  align-items: center;
  padding: 150px 5vw 0;
  max-width: 1200px;
  margin: 0 auto;
}

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

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 6vw, 6rem);
  line-height: 0.92;
  letter-spacing: -0.04em;
  font-weight: 500;
}

.hero-title span {
  display: block;
  margin-top: 20px;
  color: #dca85b;
}

.hero-title span.inline-accent {
  display: inline;
  margin-top: 0;
  color: #dca85b;
}

.hero-description {
  margin-top: 30px;
  max-width: 480px;
  line-height: 1.9;
  font-size: 18px;
  color: var(--muted);
}

.hero-actions {
  margin-top: 36px;
}

.primary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  padding: 20px 42px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  color: #1a1205;
  font-size: 18px;
  font-weight: 600;
  transition: 0.35s ease;
}

.primary-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 40px rgba(220,168,91,0.35);
}

.hero-meta {
  margin-top: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,0.55);
}

.hero-meta-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 18px var(--gold);
}

.quote-section {
  max-width: 1200px;
  margin: auto;
  padding: 0px 40px 40px 40px;
}

.quote-line {
  width: 100%;
  height: 1px;
  background: var(--line);
}

.quote-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
}

.quote-content p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 42px;
  color: #d8b07a;
  text-align: center;
}

.quote-mark {
  font-size: 50px;
  color: rgba(216,176,122,0.5);
}

.quote-author {
  text-align: center;
  color: rgba(255,255,255,0.45);
  margin-top: 18px;
  margin-bottom: 40px;
}

.feature-strip {
  max-width: 1200px;
  margin: auto;
  padding: 20px 40px 60px;
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 30px;
}

.feature-card {
  display: flex;
  gap: 18px;
}

.feature-icon {
  min-width: 54px;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 1px solid rgba(220,168,91,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 22px;
}

.feature-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 30px;
  font-weight: 500;
}

.feature-card p {
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  margin-top: 6px;
}

@media (max-width: 1200px) {

  .feature-strip {
    grid-template-columns: 1fr 1fr;
  }

  .hero-portal {
    width: 90vw;
    right: -10%;
  }
}

@media (max-width: 768px) {

  .navbar-links {
    display: none;
  }

  .navbar-button {
    display: none;
  }

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

  .mobile-menu {
    display: flex;
  }

  .navbar-inner {
    padding: 22px 24px;
  }

  .navbar-logo span {
    font-size: 26px;
  }

  .hero-portal {
    width: 280vw;
    left: -15%;
    right: auto;
    top: 50%;
    bottom: auto;
    transform: translate(-50%, -50%);
    opacity: 0.4;
  }

  .hero-content-wrapper {
    padding:
      100px 24px 0px;
  }

  .hero-title {
    font-size: 3.8rem;
  }

  .hero-description {
    display: none;
  }

  .feature-strip {
    grid-template-columns: 1fr;
    padding: 20px 24px 20px;
  }

  .quote-section {
    padding: 50px 24px;
  }

  .quote-content {
    gap: 12px;
  }

  .quote-mark {
    display: none;
  }
}
/* ========================================= */
/* SHARED SECTION STYLES */
/* ========================================= */

section {
  position: relative;
}

.section-eyebrow {
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 12px;
  margin-bottom: 24px;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 5vw, 5rem);
  line-height: 0.95;
  font-weight: 500;
  letter-spacing: -0.03em;
}

.section-title.centered {
  text-align: center;
}

.section-description {
  margin-top: 30px;
  color: rgba(255,255,255,0.7);
  line-height: 1.9;
  font-size: 18px;
  max-width: 540px;
}

/* ========================================= */
/* DIMENSIONS SECTION */
/* ========================================= */

.dimensions-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 40px;
  background:
    radial-gradient(circle at 75% 50%,
      rgba(147,51,234,0.08),
      transparent 40%),
    radial-gradient(circle at 70% 30%,
      rgba(139,92,246,0.05),
      transparent 35%),
    radial-gradient(circle at 30% 70%,
      rgba(168,85,247,0.04),
      transparent 40%),
    linear-gradient(
      180deg,
      #0a0a12 0%,
      #05050a 50%,
      #020205 100%
    );
}

.dimensions-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 80px;
}

.dimensions-list {
  margin-top: 50px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 22px;
}

.dimension-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,0.75);
}

.dimension-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #dca85b;
  box-shadow: 0 0 16px #dca85b;
}

.dimensions-image {
  width: 100%;
  opacity: 0.95;
  mix-blend-mode: screen;
  filter: drop-shadow(0 0 30px rgba(102, 126, 234, 0.3));
}

/* ========================================= */
/* DISCOVER SECTION */
/* ========================================= */

.discover-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 40px;
  background:
    radial-gradient(circle at 75% 50%,
      rgba(147,51,234,0.08),
      transparent 40%),
    radial-gradient(circle at 70% 30%,
      rgba(139,92,246,0.05),
      transparent 35%),
    radial-gradient(circle at 30% 70%,
      rgba(168,85,247,0.04),
      transparent 40%),
    linear-gradient(
      180deg,
      #0a0a12 0%,
      #05050a 50%,
      #020205 100%
    );
}

.discover-header {
  max-width: 900px;
  padding-bottom: 40px;
  padding-top: 40px;
  margin: auto;
}

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

.discover-card {
  padding: 40px;
  border: 1px solid rgba(255,255,255,0.06);
  background: rgba(255,255,255,0.02);
  border-radius: 30px;
  backdrop-filter: blur(12px);
  transition: 0.35s ease;
}

.discover-card:hover {
  transform: translateY(-6px);
  border-color: rgba(220,168,91,0.25);
}

.discover-icon {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  border: 1px solid rgba(220,168,91,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #dca85b;
  font-size: 24px;
}

.discover-card h3 {
  margin-top: 28px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  font-weight: 500;
}

.discover-card p {
  margin-top: 18px;
  color: rgba(255,255,255,0.62);
  line-height: 1.8;
}

/* ========================================= */
/* REPORT SECTION */
/* ========================================= */

/* ========================================= */
/* REPORT SECTION V2 */
/* ========================================= */

.report-section-v2 {

  position: relative;

  overflow: hidden;

  padding: 100px 40px;

  background:
    radial-gradient(circle at 75% 50%,
      rgba(147,51,234,0.08),
      transparent 40%),
    radial-gradient(circle at 70% 30%,
      rgba(139,92,246,0.05),
      transparent 35%),
    radial-gradient(circle at 30% 70%,
      rgba(168,85,247,0.04),
      transparent 40%),
    linear-gradient(
      180deg,
      #0a0a12 0%,
      #05050a 50%,
      #020205 100%
    );
}

/* ========================================= */
/* CONTAINER */
/* ========================================= */

.report-container {

  position: relative;

  max-width: 1300px;

  margin: auto;

  text-align: center;
}

/* ========================================= */
/* HEADER */
/* ========================================= */

.report-header {

  margin-bottom: 70px;
}

.report-title {

  font-family: 'Cormorant Garamond', serif;

  font-size: clamp(3.5rem, 5vw, 5.5rem);

  line-height: 1;

  font-weight: 500;

  letter-spacing: -0.03em;

  color: #f5efe5;
}

.report-subtitle {

  margin-top: 16px;

  font-family: 'Cormorant Garamond', serif;

  font-size: 2rem;

  color: rgba(255,255,255,0.68);
}

/* ========================================= */
/* IMAGE */
/* ========================================= */

.report-image-wrapper {

  position: relative;

  display: flex;

  justify-content: center;

  align-items: center;
}

.report-image-wrapper::before {

  content: "";

  position: absolute;

  width: 900px;
  height: 900px;

  border-radius: 50%;

  background:
    radial-gradient(
      circle,
      rgba(220,168,91,0.10),
      rgba(117,68,255,0.05),
      transparent 70%
    );

  filter: blur(80px);

  z-index: 1;

  display: none;
}

.report-image-v2 {

  position: relative;

  z-index: 2;

  width: min(100%, 850px);

  opacity: 0.98;
}

/* ========================================= */
/* STATS */
/* ========================================= */

.report-stats-v2 {

  margin-top: 70px;

  display: flex;

  justify-content: center;

  align-items: center;

  gap: 34px;
}

.report-stat-v2 {

  min-width: 180px;
}

.report-stat-v2 span {

  display: block;

  font-family: 'Cormorant Garamond', serif;

  font-size: 2.8rem;

  color: #dca85b;

  margin-bottom: 10px;
}

.report-stat-v2 p {

  color: rgba(255,255,255,0.68);

  font-size: 16px;

  line-height: 1.5;
}

.report-divider {

  width: 1px;

  height: 70px;

  background: rgba(255,255,255,0.08);
}

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

.report-cta {

  margin-top: 70px;
}

.report-button {

  display: inline-flex;

  align-items: center;

  justify-content: center;

  padding: 20px 42px;

  border-radius: 18px;

  text-decoration: none;

  background:
    linear-gradient(
      135deg,
      #f0bf71,
      #dca85b
    );

  color: #1a1205;

  font-weight: 600;

  font-size: 18px;

  transition: 0.35s ease;
}

.report-button:hover {

  transform: translateY(-3px);

  box-shadow:
    0 0 40px rgba(220,168,91,0.35);
}

/* ========================================= */
/* RESPONSIVE */
/* ========================================= */

@media (max-width: 900px) {

  .report-stats-v2 {

    flex-wrap: wrap;

    gap: 24px;
  }

  .report-divider {

    display: none;
  }

  .report-stat-v2 {

    min-width: 40%;
  }
}

@media (max-width: 768px) {

  .report-section-v2 {

    padding: 40px 24px;
  }

  .report-title {

    font-size: 4rem;
  }

  .report-subtitle {

    font-size: 1.6rem;
  }

  .report-image-v2 {

    width: 125%;
  }

  .report-stats-v2 {

    margin-top: 50px;
  }

  .report-stat-v2 span {

    font-size: 2.2rem;
  }
}

/* ========================================= */
/* FINAL CTA */
/* ========================================= */

.final-cta-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 40px;
  overflow: hidden;
  background:
    radial-gradient(circle at 75% 50%,
      rgba(147,51,234,0.08),
      transparent 40%),
    radial-gradient(circle at 70% 30%,
      rgba(139,92,246,0.05),
      transparent 35%),
    radial-gradient(circle at 30% 70%,
      rgba(168,85,247,0.04),
      transparent 40%),
    linear-gradient(
      180deg,
      #0a0a12 0%,
      #05050a 50%,
      #020205 100%
    );
}

.final-cta-background {
  position: absolute;
  inset: 0;

  background:
    radial-gradient(circle at center,
      rgba(220,168,91,0.10),
      rgba(117,68,255,0.05),
      transparent 70%);
}

.final-cta-content {
  position: relative;
  z-index: 5;
  max-width: 900px;
}

.final-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(4rem, 7vw, 7rem);
  line-height: 0.92;
  letter-spacing: -0.04em;
  font-weight: 500;
}

.final-description {
  margin-top: 32px;
  margin-bottom:32px;
  max-width: 620px;
  line-height: 1.9;
  font-size: 20px;
  color: rgba(255,255,255,0.68);
}

/* ========================================= */
/* RESPONSIVE */
/* ========================================= */

@media (max-width: 1100px) {

  .dimensions-grid,
  .report-grid {
    grid-template-columns: 1fr;
  }

  .discover-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {

  .report-section,
  .final-cta-section {
    padding: 80px 24px;
  }

  .discover-section {
    padding: 40px 24px;
  }

  .dimensions-section {
    padding: 80px 24px 30px;
  }
  .discover-grid {
    grid-template-columns: 1fr;
  }

  .dimensions-list {
    grid-template-columns: 1fr 1fr;
  }

  .report-stats {
    flex-direction: column;
    gap: 24px;
  }

  .discover-card {
    padding: 32px;
  }

  .final-title {
    font-size: 4rem;
  }
}

/* ========================================= */
/* REPORT PAGE STYLES */
/* ========================================= */

.report-main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 40px;
  background:
    radial-gradient(circle at 75% 50%,
      rgba(147,51,234,0.08),
      transparent 40%),
    radial-gradient(circle at 70% 30%,
      rgba(139,92,246,0.05),
      transparent 35%),
    radial-gradient(circle at 30% 70%,
      rgba(168,85,247,0.04),
      transparent 40%),
    linear-gradient(
      180deg,
      #0a0a12 0%,
      #05050a 50%,
      #020205 100%
    );
}

.report-intro {
  margin-bottom: 60px;
}

.report-intro-content {
  text-align: center;
  margin-bottom: 30px;
}

.report-badge {
  display: inline-flex;
  align-items: center;
  padding: 12px 20px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
  letter-spacing: 0.1em;
}

.report-section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  line-height: 1.1;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: #f5efe5;
  margin-bottom: 12px;
}

.report-section-subtitle {
  color: rgba(255,255,255,0.6);
  font-size: 18px;
  line-height: 1.6;
}

.report-section-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 24px;
  padding: 40px;
  margin-bottom: 40px;
  position: relative;
  overflow: hidden;
}

.report-section-header {
  display: flex;
  align-items: center;
  margin-bottom: 32px;
}

.report-section-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  margin-right: 20px;
}

.report-section-title-2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3vw, 2.5rem);
  line-height: 1.2;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: #f5efe5;
}

.report-content-text {
  color: rgba(255,255,255,0.75);
  font-size: 18px;
  line-height: 1.9;
  margin-bottom: 24px;
}

.report-content-text strong {
  background: linear-gradient(135deg, #667eea, #764ba2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 600;
}

.report-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 32px 0;
}

.report-grid-2-col {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin: 32px 0;
}

.report-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 32px;
  transition: all 0.3s ease;
}

.report-card:hover {
  transform: translateY(-4px);
  border-color: rgba(220,168,91,0.3);
  box-shadow: 0 12px 40px rgba(220,168,91,0.15);
}

.report-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  margin-bottom: 20px;
}

.report-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 500;
  color: #f5efe5;
  margin-bottom: 12px;
}

.report-card p {
  color: rgba(255,255,255,0.65);
  font-size: 16px;
  line-height: 1.7;
}

.report-table {
  width: 100%;
  border-collapse: collapse;
  background: rgba(255,255,255,0.02);
  border-radius: 12px;
  overflow: hidden;
}

.report-table-head {
  background: rgba(220,168,91,0.1);
}

.report-table-head th {
  padding: 16px;
  text-align: left;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.report-table td {
  padding: 16px;
  color: rgba(255,255,255,0.75);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.report-table tbody tr:hover {
  background: rgba(255,255,255,0.05);
}

.report-table-highlight {
  font-weight: 600;
  color: #dca85b;
  margin-bottom: 4px;
}

.report-highlight {
  color: #dca85b;
  font-weight: 600;
}

@media (max-width: 768px) {
  .report-main {
    padding: 40px 24px;
  }

  .report-grid {
    grid-template-columns: 1fr;
  }

  .report-section-card {
    padding: 24px;
  }
}
/* ========================================= */
/* RADAR CHART */
/* ========================================= */

.radar-chart-wrapper {

  width: 100%;

  max-width: 760px;

  margin: auto;

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

.radar-chart {

  width: 100%;
  height: auto;
}

/* ========================================= */
/* GRID */
/* ========================================= */

.radar-grid polygon {

  fill: none;

  stroke: rgba(220,168,91,0.28);

  stroke-width: 1.5;
}

.radar-grid line {

  stroke: rgba(220,168,91,0.18);

  stroke-width: 1.2;
}

/* ========================================= */
/* DATA AREA */
/* ========================================= */

.radar-area {

  fill: rgba(117,68,255,0.20);

  stroke: #dca85b;

  stroke-width: 3;

  filter: url(#glow);
}

/* ========================================= */
/* DATA POINTS */
/* ========================================= */

.radar-points circle {

  fill: #dca85b;

  stroke: rgba(255,255,255,0.2);

  stroke-width: 2;

  filter: url(#glow);
}

/* ========================================= */
/* LABELS */
/* ========================================= */

.radar-labels text {

  fill: rgba(255,255,255,0.82);

  font-size: 20px;

  font-family: 'Inter', sans-serif;

  text-anchor: middle;
}

/* ========================================= */
/* RESPONSIVE */
/* ========================================= */

@media (max-width: 768px) {

  .radar-labels text {

    font-size: 15px;
  }

  .radar-chart-wrapper {

    max-width: 100%;
  }
}
.radar-container {

  width: 100%;

  max-width: 860px;

  margin: auto;
}

.radar-svg {

  width: 100%;

  height: auto;

  overflow: visible;
}


/* ====================================== */
/* GRID */
/* ====================================== */

.radar-grid polygon {

  fill: none;

  stroke: rgba(220,168,91,0.22);

  stroke-width: 1.2;
}


/* ====================================== */
/* AXIS */
/* ====================================== */

.radar-axis line {

  stroke: rgba(220,168,91,0.16);

  stroke-width: 1;
}


/* ====================================== */
/* PURPLE AREA */
/* ====================================== */

.radar-area {

  fill: rgba(102,65,255,0.16);

  filter: url(#softGlow);
}


/* ====================================== */
/* GOLD OUTLINE */
/* ====================================== */

.radar-outline {

  fill: none;

  stroke: #dca85b;

  stroke-width: 2;
}


/* ====================================== */
/* DATA POINTS */
/* ====================================== */

.radar-points circle {

  fill: #dca85b;

  stroke: rgba(255,255,255,0.12);

  stroke-width: 1.5;
}


/* ====================================== */
/* LABELS */
/* ====================================== */

.radar-labels text {

  fill: rgba(255,255,255,0.88);

  font-size: 24px;

  font-family: 'Inter', sans-serif;

  font-weight: 400;

  text-anchor: middle;
}


/* ====================================== */
/* SCALE INDICATORS */
/* ====================================== */

.radar-scale text {

  fill: rgba(220,168,91,0.6);

  font-size: 14px;

  font-family: 'Inter', sans-serif;

  font-weight: 400;

  text-anchor: middle;
}


/* ====================================== */
/* TOOLTIP */
/* ====================================== */

.radar-tooltip {
  position: absolute;
  background: rgba(0, 0, 0, 0.9);
  color: #fff;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s ease;
  z-index: 1000;
  border: 1px solid rgba(220,168,91,0.5);
  backdrop-filter: blur(8px);
}

.radar-tooltip.visible {
  opacity: 1;
}

.radar-points circle {
  cursor: pointer;
  transition: r 0.2s ease, fill 0.2s ease;
}

.radar-points circle:hover {
  r: 10;
  fill: #fff;
}


.assessment-section-inner {
  padding: 2rem 0;
}

.assessment-section {
  padding: 1rem;
  background: transparent;
  min-height: auto;
}

.assessment-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem;
}

/* Step Progress Indicator */
.step-progress {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3rem;
  position: relative;
}

.step-progress::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-50%);
  z-index: 0;
}

.step-progress-line {
  position: absolute;
  top: 50%;
  left: 0;
  height: 4px;
  background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
  transform: translateY(-50%);
  z-index: 0;
  transition: width 0.5s ease;
  width: 0%;
}

.step-indicator {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 3px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.6);
  z-index: 1;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
}

.step-indicator.active {
  border-color: #667eea;
  background: #667eea;
  color: white;
  transform: scale(1.1);
  box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.2);
}

.step-indicator.completed {
  border-color: #764ba2;
  background: #764ba2;
  color: white;
}

.step-label {
  position: absolute;
  top: 60px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  white-space: nowrap;
  font-weight: 500;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.step-indicator:hover .step-label,
.step-indicator.active .step-label {
  opacity: 1;
}

.progress-text {
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 1rem;
  font-weight: 600;
  font-size: 1.125rem;
}

.progress-bar {
  height: 10px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 3rem;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
  transition: width 0.5s ease;
  border-radius: 10px;
  width: 0%;
}

.error-message {
  color: #ef4444;
  font-weight: 600;
  margin-bottom: 1rem;
  display: none;
  background: rgba(239, 68, 68, 0.1);
  padding: 1rem;
  border-radius: 0.75rem;
  border-left: 4px solid #ef4444;
}

.error-message.show {
  display: block;
  animation: shake 0.5s ease;
}

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-10px); }
  75% { transform: translateX(10px); }
}

/* Calming Message */
.calming-message {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.15) 0%, rgba(5, 150, 105, 0.15) 100%);
  border: 1px solid rgba(16, 185, 129, 0.4);
  border-radius: 1.25rem;
  padding: 1.5rem 2rem;
  margin-bottom: 2rem;
  text-align: center;
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
  animation: gentlePulse 4s ease-in-out infinite;
}

@keyframes gentlePulse {
  0%, 100% {
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.1);
    border-color: rgba(16, 185, 129, 0.4);
  }
  50% {
    box-shadow: 0 0 30px rgba(16, 185, 129, 0.2);
    border-color: rgba(16, 185, 129, 0.6);
  }
}

.calming-message::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.1) 0%, transparent 70%);
  animation: rotate 20s linear infinite;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.calming-emoji {
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-10px) rotate(5deg);
  }
}

.calming-text {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.8;
  font-size: 1.05rem;
  font-style: italic;
  position: relative;
  z-index: 1;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Engagement Warning */
.engagement-warning {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.1) 0%, rgba(217, 119, 6, 0.1) 100%);
  border: 1px solid rgba(245, 158, 11, 0.3);
  border-radius: 1rem;
  padding: 1.5rem;
  margin-bottom: 2rem;
  backdrop-filter: blur(10px);
}

.engagement-warning-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: rgba(245, 158, 11, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fbbf24;
}

.engagement-warning-content {
  flex: 1;
}

.engagement-warning-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: #fbbf24;
  margin-bottom: 0.5rem;
}

.engagement-warning-text {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  font-size: 0.95rem;
}

/* Modal */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.modal-overlay.show {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  background: linear-gradient(135deg, rgba(30, 41, 59, 0.95) 0%, rgba(15, 23, 42, 0.95) 100%);
  border: 1px solid rgba(245, 158, 11, 0.3);
  border-radius: 1.5rem;
  padding: 2.5rem;
  max-width: 500px;
  width: 90%;
  text-align: center;
  transform: scale(0.9) translateY(20px);
  transition: all 0.3s ease;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.modal-overlay.show .modal-content {
  transform: scale(1) translateY(0);
}

.modal-icon {
  width: 64px;
  height: 64px;
  background: rgba(245, 158, 11, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: #fbbf24;
}

.modal-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: #fbbf24;
  margin-bottom: 1rem;
}

.modal-text {
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  font-size: 1rem;
  margin-bottom: 2rem;
}

.modal-button {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  color: white;
  padding: 1rem 2.5rem;
  border-radius: 0.75rem;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  box-shadow: 0 4px 15px rgba(245, 158, 11, 0.4);
}

.modal-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(245, 158, 11, 0.5);
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
}

/* Part Section */
.part-section {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 1.5rem;
  padding: 3rem;
  margin-bottom: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s ease;
  display: none;
}

.part-section.active {
  opacity: 1;
  transform: translateY(0);
  display: block;
}

.part-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.25rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  margin-top: 0rem;
  text-align: center;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.part-title-subtitle {
  font-size: 0.9rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.5);
}

.part-subtitle {
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 2rem;
  font-size: 1.125rem;
}

.part-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
}

.instructions-panel {
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
  padding: 2.5rem;
  border-radius: 1.25rem;
  border: 1px solid rgba(102, 126, 234, 0.3);
  height: fit-content;
  position: sticky;
  top: 2rem;
  backdrop-filter: blur(10px);
}

.instructions-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #a78bfa;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid rgba(102, 126, 234, 0.3);
}

.instructions-text {
  color: rgba(255, 255, 255, 0.8);
  line-height: 2;
  font-size: 1rem;
}

.instructions-text p {
  margin-bottom: 1rem;
}

.instructions-text p:last-child {
  margin-bottom: 0;
}

.instructions-text strong {
  color: #c4b5fd;
  font-weight: 700;
  background: rgba(102, 126, 234, 0.2);
  padding: 0.125rem 0.375rem;
  border-radius: 0.25rem;
}

.final-section-note {
  background: rgba(245, 158, 11, 0.1);
  border-left: 3px solid #fbbf24;
  padding: 1rem;
  border-radius: 0.5rem;
  margin-bottom: 1.5rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
}

.final-section-note strong {
  color: #fbbf24;
  background: none;
  padding: 0;
}

.ranking-panel {
  display: flex;
  flex-direction: column;
}

.drag-drop-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.pool-column, .ranked-column {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 1rem;
  padding: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  min-height: 600px;
}

.column-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid rgba(255, 255, 255, 0.1);
  min-height: 3rem;
  display: flex;
  align-items: center;
}

.pool-items, .ranked-slots {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.draggable-item {
  background: rgba(255, 255, 255, 0.05);
  padding: 1rem 1.25rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  cursor: grab;
  transition: all 0.3s ease;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.5;
  user-select: none;
}

.draggable-item:hover {
  border-color: #667eea;
  background: rgba(102, 126, 234, 0.1);
  transform: translateY(-2px);
}

.draggable-item.dragging {
  opacity: 0.5;
  cursor: grabbing;
  transform: scale(1.05);
  background: rgba(102, 126, 234, 0.2);
}

.ranked-slot {
  background: rgba(255, 255, 255, 0.05);
  border: 2px dashed rgba(255, 255, 255, 0.2);
  border-radius: 0.75rem;
  padding: 0.75rem;
  min-height: 60px;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
  position: relative;
}

.ranked-slot::before {
  content: attr(data-slot-number);
  position: absolute;
  left: -40px;
  top: 50%;
  transform: translateY(-50%);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #667eea;
  width: 30px;
  text-align: center;
}

.ranked-slot.drag-over {
  border-color: #667eea;
  background: rgba(102, 126, 234, 0.1);
  border-style: solid;
}

.ranked-slot.filled {
  border-color: #667eea;
  border-style: solid;
  background: rgba(102, 126, 234, 0.1);
}

.ranked-slot .draggable-item {
  border: none;
  background: transparent;
  padding: 0;
  margin: 0;
  width: 100%;
}

.ranked-slot .draggable-item:hover {
  transform: none;
}

.pool-items.drag-over {
  background: rgba(102, 126, 234, 0.1);
  border-radius: 0.5rem;
}

.step-navigation {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 2px solid rgba(255, 255, 255, 0.1);
}

.nav-btn {
  padding: 1rem 2rem;
  border-radius: 0.75rem;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

.nav-btn-prev {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.6);
}

.nav-btn-prev:hover {
  background: rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.8);
}

.nav-btn-next {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
}

.nav-btn-next:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.nav-btn-submit {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  color: white;
  box-shadow: 0 4px 15px rgba(245, 158, 11, 0.4);
}

.nav-btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(245, 158, 11, 0.5);
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
}

.nav-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

.profile-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.profile-field-full-width {
  grid-column: 1 / -1;
}

.profile-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0.4rem;
}

.profile-input {
  width: 100%;
  padding: 0.6rem 0.85rem;
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  border-radius: 0.5rem;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.05);
  transition: border-color 0.2s;
  box-sizing: border-box;
}

.profile-input:focus {
  outline: none;
  border-color: #667eea;
  background: rgba(255, 255, 255, 0.1);
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .assessment-container {
    padding: 1rem;
  }

  .step-progress {
    margin-bottom: 2rem;
  }

  .step-indicator {
    width: 36px;
    height: 36px;
    font-size: 0.875rem;
  }

  .step-label {
    font-size: 0.75rem;
    top: 45px;
  }

  .part-section {
    padding: 1.5rem;
    margin-bottom: 1rem;
  }

  .part-content {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .instructions-panel {
    padding: 1.5rem;
    position: relative;
    top: 0;
  }

  .instructions-title {
    font-size: 1.25rem;
    margin-bottom: 1rem;
  }

  .instructions-text {
    font-size: 0.875rem;
    line-height: 1.6;
  }

  .part-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }

  .part-subtitle {
    font-size: 1rem;
    margin-bottom: 1rem;
  }

  .drag-drop-container {
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
  }

  .pool-column, .ranked-column {
    min-height: auto;
    padding: 0.75rem;
  }

  .column-title {
    font-size: 0.75rem;
    min-height: 3rem;
    padding-bottom: 0.5rem;
  }

  .draggable-item {
    font-size: 0.75rem;
    padding: 0.5rem 0.6rem;
    line-height: 1.3;
  }

  .ranked-slot {
    padding: 0rem;
    min-height: 45px;
    margin-left: 20px;
  }

  .ranked-slot::before {
    left: -25px;
    font-size: 1rem;
    width: 22px;
  }

  .ranked-slot .draggable-item {
    padding: 0.3rem 0.4rem;
  }

  .step-navigation {
    flex-direction: column;
    gap: 0.5rem;
  }

  .nav-btn {
    width: 100%;
  }

  .profile-fields {
    grid-template-columns: 1fr !important;
  }
}

/* ====================================== */
/* ASSESSMENT COMPLETE STYLES */
/* ====================================== */

.assessment-complete-section {
  padding: 2rem 0;
}

.email-gate-container {
  max-width: 600px;
  margin: 4rem auto;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 2rem;
  padding: 3rem 2rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  box-shadow: 0 25px 50px -12px rgba(102, 126, 234, 0.2);
}

.email-gate.hidden {
  display: none;
}

.gate-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.gate-icon svg {
  width: 40px;
  height: 40px;
  color: white;
}

.gate-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1rem;
  text-align: center;
}

.gate-subtitle {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 2rem;
  line-height: 1.6;
  text-align: center;
}

.email-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.email-input {
  padding: 1rem 1.5rem;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 1rem;
  font-size: 1rem;
  font-family: 'Inter', sans-serif;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.9);
}

.email-input:focus {
  outline: none;
  border-color: #667eea;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.email-input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.email-submit {
  padding: 1rem 2rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border: none;
  border-radius: 1rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.email-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 40px rgba(102, 126, 234, 0.4);
}

.email-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.privacy-note {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 1rem;
  text-align: center;
}

/* Analysis Loading Screen */
.analysis-loading {
  max-width: 600px;
  margin: 4rem auto;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 2rem;
  padding: 3rem 2rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  box-shadow: 0 25px 50px -12px rgba(102, 126, 234, 0.2);
  text-align: center;
  display: none;
}

.analysis-loading.active {
  display: block;
}

.analysis-spinner {
  width: 80px;
  height: 80px;
  border: 3px solid rgba(255, 255, 255, 0.1);
  border-top: 3px solid #667eea;
  border-radius: 50%;
  margin: 0 auto 2rem;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.analysis-text {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  animation: fadeInOut 3s ease-in-out;
}

@keyframes fadeInOut {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

.progress-bar {
  width: 100%;
  height: 8px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #667eea, #764ba2);
  width: 0%;
  transition: width 0.3s ease;
}

/* Verification Message */
.verification-message {
  max-width: 600px;
  margin: 4rem auto;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 2rem;
  padding: 3rem 2rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  box-shadow: 0 25px 50px -12px rgba(102, 126, 234, 0.2);
  text-align: center;
  display: none;
}

.verification-message.active {
  display: block;
}

.verification-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
}

.verification-icon svg {
  width: 40px;
  height: 40px;
  color: white;
}

.verification-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1rem;
}

.verification-text {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.email-display {
  font-family: 'Inter', sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: #667eea;
  margin: 1rem 0;
  padding: 0.75rem 1.5rem;
  background: rgba(102, 126, 234, 0.1);
  border-radius: 0.75rem;
  display: inline-block;
  border: 1px solid rgba(102, 126, 234, 0.3);
}

.resend-link {
  color: #667eea;
  text-decoration: none;
  font-weight: 600;
  cursor: pointer;
}

.resend-link:hover {
  text-decoration: underline;
}

/* ====================================== */
/* DASHBOARD STYLES */
/* ====================================== */

.dashboard-section {
  padding: 2rem 0;
}

/* Entrance animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.welcome-section {
  animation: fadeInUp 0.8s ease-out;
}

.stat-card {
  animation: scaleIn 0.6s ease-out;
  animation-fill-mode: both;
}

.stat-card:nth-child(1) { animation-delay: 0.1s; }
.stat-card:nth-child(2) { animation-delay: 0.2s; }
.stat-card:nth-child(3) { animation-delay: 0.3s; }

.assessments-section {
  animation: fadeInUp 0.8s ease-out 0.4s;
  animation-fill-mode: both;
}

.assessment-card {
  animation: fadeIn 0.5s ease-out;
  animation-fill-mode: both;
}

.dashboard-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0rem 2rem 2rem 2rem;
}

.welcome-section {
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.2) 0%, rgba(118, 75, 162, 0.2) 50%, rgba(240, 147, 251, 0.2) 100%),
              url('../images/portal-hero-cutout-4.png') no-repeat right center;
  background-size: contain;
  border-radius: 2rem;
  padding: 3.5rem;
  margin-top: 3.5rem;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 2.5rem;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  box-shadow: 0 25px 50px -12px rgba(102, 126, 234, 0.2);
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.welcome-content {
  flex: 1;
  z-index: 2;
}

.welcome-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.3) 0%, rgba(118, 75, 162, 0.3) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: #667eea;
  animation: pulse 2s ease-in-out infinite;
}

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

.welcome-decoration {
  position: absolute;
  right: -5%;
  top: -10%;
  width: 50%;
  height: 120%;
  pointer-events: none;
  z-index: 1;
}

.decoration-circle {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(102, 126, 234, 0.1) 0%, transparent 70%);
}

.circle-1 {
  width: 300px;
  height: 300px;
  top: 10%;
  right: 10%;
  animation: float 8s ease-in-out infinite;
}

.circle-2 {
  width: 200px;
  height: 200px;
  top: 40%;
  right: 30%;
  animation: float 10s ease-in-out infinite reverse;
}

.circle-3 {
  width: 150px;
  height: 150px;
  top: 60%;
  right: 15%;
  animation: float 12s ease-in-out infinite;
}

.welcome-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.welcome-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: 1rem;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  cursor: pointer;
}

.welcome-btn.primary {
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  color: #1a1205;
  box-shadow: 0 4px 15px rgba(220, 168, 91, 0.3);
}

.welcome-btn.primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(220, 168, 91, 0.4);
}

.welcome-btn.secondary {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
}

.welcome-btn.secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
}

.welcome-btn.admin {
  background: linear-gradient(135deg, #8b5cf6 0%, #6366f1 100%);
  color: white;
  box-shadow: 0 4px 20px rgba(139, 92, 246, 0.5);
  border: 2px solid rgba(255, 255, 255, 0.3);
  position: relative;
  overflow: hidden;
  animation: adminBtnPulse 2s ease-in-out infinite;
}

.welcome-btn.admin::before {
  content: '✨';
  position: absolute;
  top: -5px;
  right: -5px;
  font-size: 12px;
  animation: sparkle 1.5s ease-in-out infinite;
}

@keyframes adminBtnPulse {
  0%, 100% {
    box-shadow: 0 4px 20px rgba(139, 92, 246, 0.5);
  }
  50% {
    box-shadow: 0 4px 30px rgba(139, 92, 246, 0.8), 0 0 20px rgba(139, 92, 246, 0.4);
  }
}

@keyframes sparkle {
  0%, 100% { transform: scale(1) rotate(0deg); opacity: 1; }
  50% { transform: scale(1.2) rotate(180deg); opacity: 0.8; }
}

.welcome-btn.admin:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 35px rgba(139, 92, 246, 0.6), 0 0 30px rgba(139, 92, 246, 0.3);
  animation: none;
}

.welcome-btn.admin svg {
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

.welcome-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
  animation: float 8s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-20px, 20px); }
}

.welcome-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  position: relative;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.welcome-subtitle {
  font-size: 1.25rem;
  opacity: 0.85;
  margin-bottom: 2rem;
  max-width: 600px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.stat-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 1.5rem;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #667eea, #764ba2);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.3);
  border-color: rgba(255, 255, 255, 0.2);
}

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

.stat-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  position: relative;
  transition: all 0.3s ease;
}

.stat-card:hover .stat-icon {
  transform: scale(1.1) rotate(5deg);
}

.stat-icon::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 18px;
  background: inherit;
  filter: blur(10px);
  opacity: 0.5;
  z-index: -1;
}

.stat-title {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.stat-value {
  font-size: 2.5rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
}

.assessments-section {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 1.5rem;
  padding: 2.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.2);
}

.section-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.assessment-card {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 1.25rem;
  padding: 1.75rem;
  margin-bottom: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.assessment-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, #667eea, #764ba2);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.assessment-card:hover {
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.2);
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateX(5px);
}

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

.assessment-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.assessment-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
}

.assessment-date {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
}

.assessment-actions {
  display: flex;
  gap: 0.75rem;
}

.btn-view {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 0.6rem 1.25rem;
  border-radius: 0.75rem;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  display: inline-block;
  position: relative;
  overflow: hidden;
}

.btn-view::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.btn-view:hover::before {
  left: 100%;
}

.btn-view:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 15px -3px rgba(102, 126, 234, 0.4);
}

.btn-delete {
  background: rgba(220, 38, 38, 0.1);
  color: #dc2626;
  padding: 0.6rem 1.25rem;
  border-radius: 0.75rem;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  border: 1px solid rgba(220, 38, 38, 0.3);
  cursor: pointer;
  display: inline-block;
  position: relative;
  overflow: hidden;
}

.btn-delete::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(220, 38, 38, 0.2), transparent);
  transition: left 0.5s ease;
}

.btn-delete:hover::before {
  left: 100%;
}

.btn-delete:hover {
  background: rgba(220, 38, 38, 0.2);
  border-color: rgba(220, 38, 38, 0.5);
  transform: translateY(-2px);
  box-shadow: 0 4px 10px -3px rgba(220, 38, 38, 0.3);
}

.btn-unlock {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  color: white;
  padding: 0.6rem 1.25rem;
  border-radius: 0.75rem;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  display: inline-block;
  position: relative;
  overflow: hidden;
}

.btn-unlock::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.btn-unlock:hover::before {
  left: 100%;
}

.btn-unlock:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 15px -3px rgba(245, 158, 11, 0.4);
}

.report-badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  margin-top: 0.5rem;
}

.status-full {
  background: rgba(16, 185, 129, 0.15);
  color: #10b981;
  border: 1px solid rgba(16, 185, 129, 0.3);
}

.status-preview {
  background: rgba(245, 158, 11, 0.15);
  color: #f59e0b;
  border: 1px solid rgba(245, 158, 11, 0.3);
}

.score-summary {
  display: flex;
  gap: 2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.score-item {
  display: flex;
  flex-direction: column;
}

.score-label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 0.25rem;
}

.score-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
}

.loading-state, .empty-state {
  text-align: center;
  padding: 3rem;
  color: rgba(255, 255, 255, 0.5);
}

.empty-state svg {
  width: 64px;
  height: 64px;
  margin: 0 auto 1rem;
  color: rgba(255, 255, 255, 0.2);
}

@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

.stat-skeleton {
  display: inline-block;
  width: 64px;
  height: 2.25rem;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.1) 25%, rgba(255, 255, 255, 0.05) 50%, rgba(255, 255, 255, 0.1) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.4s infinite;
  border-radius: 0.5rem;
  vertical-align: middle;
}

.loading-spinner {
  width: 40px;
  height: 40px;
  border: 3px solid rgba(255, 255, 255, 0.1);
  border-top-color: #667eea;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin: 0 auto 1rem;
}

@keyframes spin { to { transform: rotate(360deg); } }

/* ====================================== */
/* METRICS EVOLUTION SECTION */
/* ====================================== */

.metrics-evolution-section {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 1.5rem;
  padding: 2.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.2);
  margin-bottom: 2.5rem;
  animation: fadeInUp 0.8s ease-out 0.5s;
  animation-fill-mode: both;
}

.metrics-graph-container {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 1.25rem;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.graph-header {
  margin-bottom: 2rem;
}

.graph-legend {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
}

.legend-color {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.graph-placeholder {
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 1rem;
  border: 2px dashed rgba(255, 255, 255, 0.1);
}

.graph-placeholder-content {
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
}

.graph-placeholder-content svg {
  width: 64px;
  height: 64px;
  margin: 0 auto 1rem;
  color: rgba(255, 255, 255, 0.3);
}

.graph-placeholder-content p {
  font-size: 1rem;
  margin-bottom: 1rem;
}

/* ====================================== */
/* COMPANION SECTION */
/* ====================================== */

.companion-section {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 1.5rem;
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.2);
  margin-bottom: 2.5rem;
  animation: fadeInUp 0.8s ease-out 0.6s;
  animation-fill-mode: both;
}

.companion-card {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  flex-wrap: wrap;
}

.companion-info {
  flex: 1;
  min-width: 280px;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.companion-avatar {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.3) 0%, rgba(118, 75, 162, 0.3) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #667eea;
  flex-shrink: 0;
  border: 2px solid rgba(255, 255, 255, 0.1);
}

.companion-details {
  flex: 1;
}

.companion-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 0.25rem;
}

.companion-role {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.companion-bio {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.4;
}

.companion-contact {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  min-width: 280px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.75rem;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.contact-item:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
  color: rgba(255, 255, 255, 0.95);
}

.contact-item svg {
  flex-shrink: 0;
  color: #667eea;
}

/* ====================================== */
/* COMPANION CTA SECTION */
/* ====================================== */

.companion-cta-section {
  margin-bottom: 2.5rem;
  animation: fadeInUp 0.8s ease-out 0.7s;
  animation-fill-mode: both;
}

.companion-cta-card {
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 50%, rgba(240, 147, 251, 0.1) 100%);
  border-radius: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.2);
  overflow: hidden;
}

.companion-cta-header {
  padding: 2.5rem 2.5rem 1.5rem;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.companion-cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  color: #1a1205;
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.companion-cta-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 0.75rem;
}

.companion-cta-subtitle {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.companion-cta-features {
  padding: 2rem 2.5rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.feature-item {
  display: flex;
  gap: 1rem;
  padding: 1.25rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 1rem;
  transition: all 0.3s ease;
}

.feature-item:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.feature-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.2) 0%, rgba(118, 75, 162, 0.2) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #667eea;
  flex-shrink: 0;
}

.feature-text h4 {
  font-size: 1rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0.25rem;
}

.feature-text p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.4;
}

.companion-cta-footer {
  padding: 1.5rem 2.5rem 2.5rem;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.companion-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  color: #1a1205;
  padding: 1rem 2.5rem;
  border-radius: 1rem;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(220, 168, 91, 0.3);
  white-space: nowrap;
}

.companion-cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(220, 168, 91, 0.4);
}

.companion-cta-note {
  margin-top: 1rem;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
}

/* ====================================== */
/* REPORT PREVIEW TAILWIND FALLBACKS */
/* ====================================== */

/* Text colors */
.text-white { color: rgba(255, 255, 255, 0.95); }
.text-gray-800 { color: rgba(255, 255, 255, 0.9); }
.text-gray-600 { color: rgba(255, 255, 255, 0.7); }
.text-gray-700 { color: rgba(255, 255, 255, 0.8); }
.text-cyan-800 { color: #667eea; }
.text-cyan-700 { color: #667eea; }
.text-green-900 { color: #10b981; }
.text-green-800 { color: #10b981; }
.text-purple-900 { color: #ec4899; }
.text-purple-800 { color: #ec4899; }
.text-white\/90 { color: rgba(255, 255, 255, 0.9); }
.text-white\/80 { color: rgba(255, 255, 255, 0.8); }
.text-white\/60 { color: rgba(255, 255, 255, 0.6); }

/* Backgrounds */
.bg-white\/20 { background: rgba(255, 255, 255, 0.2); }
.bg-white\/10 { background: rgba(255, 255, 255, 0.1); }
.bg-gradient-to-r { background: linear-gradient(to right, var(--gold-bright), var(--gold)); }
.from-blue-500 { --tw-gradient-from: #3b82f6; }
.to-indigo-500 { --tw-gradient-to: #6366f1; }
.bg-blue-50 { background: rgba(59, 130, 246, 0.1); }
.bg-green-50 { background: rgba(16, 185, 129, 0.1); }
.bg-purple-50 { background: rgba(236, 72, 153, 0.1); }
.bg-indigo-50 { background: rgba(99, 102, 241, 0.1); }

/* Spacing */
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-8 { padding-left: 2rem; padding-right: 2rem; }
.py-8 { padding-top: 2rem; padding-bottom: 2rem; }
.py-12 { padding-top: 3rem; padding-bottom: 3rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-6 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 0.75rem; }
.mr-2 { margin-right: 0.5rem; }
.ml-4 { margin-left: 1rem; }

/* Flexbox */
.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.gap-6 { gap: 1.5rem; }
.space-x-4 > * + * { margin-left: 1rem; }
.space-x-6 > * + * { margin-left: 1.5rem; }

/* Sizing */
.w-14 { width: 3.5rem; }
.w-20 { width: 5rem; }
.h-14 { height: 3.5rem; }
.h-20 { height: 5rem; }
.w-7 { width: 1.75rem; }
.h-7 { height: 1.75rem; }
.w-4 { width: 1rem; }
.h-4 { height: 1rem; }
.w-8 { width: 2rem; }
.h-8 { height: 2rem; }
.w-10 { width: 2.5rem; }
.h-10 { height: 2.5rem; }
.w-12 { width: 3rem; }
.h-12 { height: 3rem; }
.w-20 { width: 5rem; }
.h-20 { height: 5rem; }

/* Border radius */
.rounded-2xl { border-radius: 1rem; }
.rounded-full { border-radius: 9999px; }
.rounded-xl { border-radius: 0.75rem; }

/* Typography */
.text-2xl { font-size: 1.5rem; }
.text-3xl { font-size: 1.875rem; }
.text-4xl { font-size: 2.25rem; }
.text-xl { font-size: 1.25rem; }
.text-lg { font-size: 1.125rem; }
.text-sm { font-size: 0.875rem; }
.text-xs { font-size: 0.75rem; }
.font-bold { font-weight: 700; }
.font-semibold { font-weight: 600; }
.font-medium { font-weight: 500; }

/* Position */
.relative { position: relative; }
.absolute { position: absolute; }
.z-10 { z-index: 10; }
.top-4 { top: 1rem; }
.right-4 { right: 1rem; }

/* Display */
.inline-flex { display: inline-flex; }
.block { display: block; }
.hidden { display: none; }

/* Other */
.shrink-0 { flex-shrink: 0; }
.backdrop-blur-sm { backdrop-filter: blur(4px); }
.border { border: 1px solid rgba(255, 255, 255, 0.1); }
.border-white\/30 { border-color: rgba(255, 255, 255, 0.3); }
.border-blue-100 { border-color: rgba(59, 130, 246, 0.2); }
.border-green-100 { border-color: rgba(16, 185, 129, 0.2); }
.border-purple-100 { border-color: rgba(236, 72, 153, 0.2); }
.border-indigo-200 { border-color: rgba(99, 102, 241, 0.3); }
.shadow-lg { box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.2); }
.drop-shadow-lg { filter: drop-shadow(0 10px 8px rgba(0, 0, 0, 0.2)); }
.opacity-80 { opacity: 0.8; }
.transition-all { transition: all 0.3s ease; }
.duration-300 { transition-duration: 300ms; }
.hover\:shadow-xl:hover { box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.3); }
.hover\:translate-y-1:hover { transform: translateY(0.25rem); }
.hover\:translate-y-2:hover { transform: translateY(0.5rem); }
.hover\:translate-y-3:hover { transform: translateY(0.75rem); }

/* Responsive */
@media (min-width: 640px) {
  .sm\:px-8 { padding-left: 2rem; padding-right: 2rem; }
  .sm\:py-12 { padding-top: 3rem; padding-bottom: 3rem; }
  .sm\:flex-row { flex-direction: row; }
  .sm\:items-center { align-items: center; }
  .sm\:justify-between { justify-content: space-between; }
  .sm\:text-right { text-align: right; }
  .sm\:w-auto { width: auto; }
  .sm\:space-x-6 > * + * { margin-left: 1.5rem; }
  .sm\:w-20 { width: 5rem; }
  .sm\:h-20 { height: 5rem; }
  .sm\:text-4xl { font-size: 2.25rem; }
  .sm\:text-xl { font-size: 1.25rem; }
  .sm\:mt-3 { margin-top: 0.75rem; }
  .sm\:block { display: block; }
}

@media (min-width: 1024px) {
  .lg\:block { display: block; }
}

/* Additional Tailwind fallbacks */
.prose { max-width: 65ch; }
.max-w-none { max-width: none; }
.text-lg { font-size: 1.125rem; }
.text-xl { font-size: 1.25rem; }
.text-2xl { font-size: 1.5rem; }
.text-3xl { font-size: 1.875rem; }
.text-4xl { font-size: 2.25rem; }
.text-purple-600 { color: #9333ea; }
.text-indigo-600 { color: #4f46e5; }
.text-indigo-800 { color: #3730a3; }
.text-gray-900 { color: rgba(255, 255, 255, 0.95); }
.grid { display: grid; }
.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.md\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.gap-6 { gap: 1.5rem; }
.from-blue-50 { --tw-gradient-from: rgba(59, 130, 246, 0.1); }
.to-indigo-50 { --tw-gradient-to: rgba(99, 102, 241, 0.1); }
.from-green-50 { --tw-gradient-from: rgba(16, 185, 129, 0.1); }
.to-emerald-50 { --tw-gradient-to: rgba(16, 185, 129, 0.1); }
.from-purple-50 { --tw-gradient-from: rgba(168, 85, 247, 0.1); }
.to-pink-50 { --tw-gradient-to: rgba(236, 72, 153, 0.1); }
.from-indigo-50 { --tw-gradient-from: rgba(99, 102, 241, 0.1); }
.to-purple-50 { --tw-gradient-to: rgba(168, 85, 247, 0.1); }
.from-teal-500 { --tw-gradient-from: #14b8a6; }
.to-cyan-600 { --tw-gradient-to: #0891b2; }
.from-blue-400 { --tw-gradient-from: #60a5fa; }
.to-blue-600 { --tw-gradient-to: #2563eb; }
.from-green-400 { --tw-gradient-from: #4ade80; }
.to-emerald-600 { --tw-gradient-to: #059669; }
.from-purple-400 { --tw-gradient-from: #c084fc; }
.to-pink-600 { --tw-gradient-to: #db2777; }
.bg-gradient-to-br { background: linear-gradient(to bottom right, var(--tw-gradient-from), var(--tw-gradient-to)); }
.text-teal-500 { color: #14b8a6; }
.text-cyan-600 { color: #0891b2; }
.justify-center { justify-content: center; }
.ml-3 { margin-left: 0.75rem; }
.ml-4 { margin-left: 1rem; }
.mr-3 { margin-right: 0.75rem; }
.w-6 { width: 1.5rem; }
.h-6 { height: 1.5rem; }
.rounded-xl { border-radius: 0.75rem; }
.hover\:shadow-lg:hover { box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.2); }

@media (min-width: 768px) {
  .md\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

/* ====================================== */
/* REPORT PREVIEW BLUR EFFECTS */
/* ====================================== */

.blurred-content {
  filter: blur(8px);
  user-select: none;
  pointer-events: none;
  position: relative;
}

.blurred-content::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

.blur-overlay {
  position: relative;
}

.blur-overlay::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(10px);
  z-index: 10;
  border-radius: inherit;
}

/* ====================================== */
/* REPORT PREVIEW STYLES */
/* ====================================== */

.report-preview-section {
  padding: 2rem 0;
}

.preview-banner {
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.3) 0%, rgba(118, 75, 162, 0.3) 100%);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 1.5rem;
  padding: 2rem;
  margin-bottom: 2rem;
  backdrop-filter: blur(10px);
}

.preview-banner-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.preview-banner-text {
  font-size: 1.25rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 0.5rem;
}

.preview-banner-subtext {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1rem;
}

.preview-unlock-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  color: #1a1205;
  padding: 1rem 2rem;
  border-radius: 1rem;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(220, 168, 91, 0.3);
  white-space: nowrap;
}

.preview-unlock-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(220, 168, 91, 0.4);
}

#access-overlay {
  background: rgba(0, 0, 0, 0.95);
}

.hero-section {
background:
    radial-gradient(circle at 70% 30%,
      rgba(220,168,91,0.08),
      transparent 25%),

    radial-gradient(circle at 55% 45%,
      rgba(117,68,255,0.06),
      transparent 35%),

    linear-gradient(
      180deg,
      #071120 0%,
      #040816 100%
    );
  border-radius: 1.5rem;
  padding: 2rem;
  margin-bottom: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.section-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.2);
}

.gradient-text {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.icon-feature {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.metric-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 0.75rem;
  font-size: 0.85rem;
  font-weight: 600;
}

/* Assessment Loading Screen */
.assessment-loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s ease;
}

.assessment-loading-overlay.show {
  opacity: 1;
  visibility: visible;
}

.assessment-loading-content {
  text-align: center;
  max-width: 500px;
  padding: 2rem;
}

.loading-spinner {
  width: 100px;
  height: 100px;
  border: 4px solid rgba(255, 255, 255, 0.1);
  border-top: 4px solid #667eea;
  border-radius: 50%;
  margin: 0 auto 2rem;
  animation: spin 1s linear infinite;
  box-shadow: 0 0 30px rgba(102, 126, 234, 0.3);
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.loading-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.loading-text {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 2rem;
  animation: pulseText 2s ease-in-out infinite;
}

@keyframes pulseText {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}

.loading-progress {
  width: 100%;
  height: 6px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
  overflow: hidden;
}

.loading-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #667eea, #764ba2);
  width: 0%;
  transition: width 0.3s ease;
  border-radius: 3px;
}

/* ========================================= */
/* FOOTER */
/* ========================================= */

.footer-section {

    position: relative;

    overflow: hidden;

    border-top:
        1px solid rgba(255,255,255,0.05);

    background:
        radial-gradient(
            circle at center,
            rgba(117,68,255,0.05),
            transparent 45%
        ),

        linear-gradient(
            180deg,
            #050816 0%,
            #02040d 100%
        );
}

.footer-container {

    max-width: 1200px;

    margin: 0 auto;

    padding:
        40px 40px 100px 40px;
}

/* ========================================= */
/* TOP */
/* ========================================= */

.footer-top {

    display: flex;

    justify-content: space-between;

    gap: 120px;
}

/* ========================================= */
/* BRAND */
/* ========================================= */

.footer-brand {

    max-width: 460px;
}

.footer-logo {

    display: flex;

    align-items: center;

    gap: 16px;
}

.footer-logo img {

    width: 42px;
}

.footer-logo span {

    font-family: 'Cormorant Garamond', serif;

    font-size: 38px;

    letter-spacing: 4px;

    color: #f5efe5;
}

.footer-description {

    margin-top: 30px;

    line-height: 1.9;

    color: rgba(255,255,255,0.62);

    font-size: 17px;
}

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

.footer-links-wrapper {

    display: flex;

    gap: 90px;
}

.footer-column {

    display: flex;

    flex-direction: column;

    gap: 18px;
}

.footer-column h4 {

    margin-bottom: 10px;

    font-family: 'Cormorant Garamond', serif;

    font-size: 28px;

    font-weight: 500;

    color: #dca85b;
}

.footer-column a {

    text-decoration: none;

    color: rgba(255,255,255,0.62);

    transition: 0.3s ease;
}

.footer-column a:hover {

    color: #dca85b;
}

/* ========================================= */
/* DIVIDER */
/* ========================================= */

.footer-divider {

    width: 100%;

    height: 1px;

    margin:
        90px 0;

    background:
        rgba(255,255,255,0.06);
}

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

.footer-cta {

    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 60px;
}

.footer-eyebrow {

    color: rgba(255,255,255,0.42);

    text-transform: uppercase;

    letter-spacing: 0.22em;

    font-size: 12px;

    margin-bottom: 18px;
}

.footer-title {

    font-family: 'Cormorant Garamond', serif;

    font-size: clamp(3rem, 5vw, 5rem);

    line-height: 0.95;

    font-weight: 500;

    max-width: 720px;
}

.footer-button {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    text-decoration: none;

    padding:
        20px 42px;

    border-radius: 18px;

    background:
        linear-gradient(
            135deg,
            #f0bf71,
            #dca85b
        );

    color: #1a1205;

    font-weight: 600;

    font-size: 18px;

    transition: 0.35s ease;

    white-space: nowrap;
}

.footer-button:hover {

    transform: translateY(-3px);

    box-shadow:
        0 0 40px rgba(220,168,91,0.32);
}

/* ========================================= */
/* BOTTOM */
/* ========================================= */

.footer-bottom {

    margin-top: 120px;

    padding-top: 40px;

    border-top:
        1px solid rgba(255,255,255,0.05);

    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 40px;
}

.footer-bottom p {

    color: rgba(255,255,255,0.42);
}

.footer-bottom-links {

    display: flex;

    gap: 30px;
}

.footer-bottom-links a {

    text-decoration: none;

    color: rgba(255,255,255,0.42);

    transition: 0.3s ease;
}

.footer-bottom-links a:hover {

    color: #dca85b;
}

/* ========================================= */
/* RESPONSIVE */
/* ========================================= */

@media (max-width: 1100px) {

    .footer-top,
    .footer-cta {

        flex-direction: column;

        align-items: center;
    }

    .footer-links-wrapper {

        gap: 50px;

        flex-wrap: wrap;

        justify-content: center;
    }
}

@media (max-width: 768px) {

    .footer-section {

        padding:
            0px 24px
            40px;
    }

    .footer-top {
        align-items: center;
        text-align: center;
    }

    .footer-brand {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-logo {
        justify-content: center;
    }

    .footer-logo span {

        font-size: 30px;
    }

    .footer-links-wrapper {

        flex-direction: column;

        gap: 40px;

        align-items: center;
        text-align: center;
    }

    .footer-column {
        align-items: center;
        text-align: center;
    }

    .footer-cta {
        align-items: center;
        text-align: center;
    }

    .footer-bottom {

        flex-direction: column;

        align-items: center;
        text-align: center;

        margin-top: 60px;
    }

    .footer-bottom-links {
        flex-wrap: wrap;
        justify-content: center;
    }

    .footer-title {

        font-size: 4rem;
    }
}

/* Dimension Info with Descriptions */
.dimension-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
}

.dimension-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.dimension-info strong {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
}

.dimension-desc {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
}

/* FAQ Section */
.faq-section {
    padding: 100px 5%;
    background: #0a0e1f;
}

.faq-container {
    max-width: 1000px;
    margin: 0 auto;
}

.faq-header {
    text-align: center;
    margin-bottom: 60px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 28px;
    transition: border-color 0.3s ease, background 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(220, 168, 91, 0.3);
    background: rgba(255, 255, 255, 0.05);
}

.faq-item h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: #dca85b;
    margin-bottom: 12px;
    line-height: 1.4;
}

.faq-item p {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
}

.faq-item a {
    color: #dca85b;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.faq-item a:hover {
    color: #f3be69;
}

@media (max-width: 768px) {
    .faq-grid {
        grid-template-columns: 1fr;
    }

    .faq-item {
        padding: 24px;
    }
}