:root {
  --lidora-primary-dark: #0B203E;
  --lidora-primary-light: #E2B266;
  --lidora-highlight: #F8C878;
  --lidora-shadow: #B88848;
  --lidora-deep-blue: #051A3C;
  --lidora-background: #F5F0E6;
  --lidora-accent-green: #2D6A4F;
  --lidora-accent-blue: #4A90A4;

  --text: #F5F0E6;
  --text-muted: rgba(245, 240, 230, 0.72);
  --glass: rgba(11, 32, 62, 0.55);
  --glass-border: rgba(226, 178, 102, 0.28);
  --radius: 24px;
  --shadow: 0 30px 80px rgba(5, 26, 60, 0.55);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  font-family: "Outfit", system-ui, sans-serif;
  background:
    radial-gradient(1200px 700px at 80% 10%, rgba(226, 178, 102, 0.14), transparent 55%),
    radial-gradient(900px 600px at 10% 80%, rgba(74, 144, 164, 0.12), transparent 50%),
    linear-gradient(160deg, var(--lidora-deep-blue) 0%, var(--lidora-primary-dark) 45%, #0a2748 100%);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

.ambient {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.45;
  animation: drift 16s ease-in-out infinite alternate;
}

.orb-a {
  width: 340px;
  height: 340px;
  top: -80px;
  right: 8%;
  background: rgba(226, 178, 102, 0.35);
}

.orb-b {
  width: 420px;
  height: 420px;
  bottom: -120px;
  left: -60px;
  background: rgba(74, 144, 164, 0.28);
  animation-delay: -6s;
}

.grid-glow {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(226, 178, 102, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(226, 178, 102, 0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse at center, black 20%, transparent 75%);
}

.topbar,
.hero,
.footer {
  position: relative;
  z-index: 1;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.4rem clamp(1.25rem, 4vw, 3.5rem);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.brand-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  box-shadow: 0 0 0 2px rgba(226, 178, 102, 0.45), 0 8px 24px rgba(0, 0, 0, 0.35);
}

.brand-name {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.65rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--glass-border);
  background: rgba(5, 26, 60, 0.55);
  backdrop-filter: blur(12px);
  color: var(--lidora-primary-light);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--lidora-highlight);
  box-shadow: 0 0 0 0 rgba(248, 200, 120, 0.6);
  animation: pulse 2.2s ease-out infinite;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
  padding: 0.5rem clamp(1.25rem, 4vw, 3.5rem) 2.5rem;
  max-width: 1280px;
  margin: 0 auto;
}

.copy {
  animation: rise 0.9s ease both;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--lidora-primary-light);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

h1 {
  margin: 0 0 1.25rem;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.gold {
  background: linear-gradient(120deg, var(--lidora-highlight), var(--lidora-primary-light) 45%, var(--lidora-shadow));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lead {
  margin: 0 0 1rem;
  max-width: 38rem;
  color: var(--text-muted);
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.65;
}

.lead strong {
  color: var(--text);
  font-weight: 500;
}

.lead.secondary {
  margin-bottom: 2rem;
  color: rgba(245, 240, 230, 0.58);
}

.features {
  list-style: none;
  margin: 0 0 2rem;
  padding: 0;
  display: grid;
  gap: 0.85rem;
}

.features li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.9rem;
  align-items: start;
  padding: 1rem 1.1rem;
  border-radius: 18px;
  border: 1px solid var(--glass-border);
  background: linear-gradient(135deg, rgba(11, 32, 62, 0.72), rgba(5, 26, 60, 0.45));
  backdrop-filter: blur(14px);
  transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.features li:hover {
  border-color: rgba(248, 200, 120, 0.55);
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(5, 26, 60, 0.35);
}

.feature-icon {
  display: grid;
  place-items: center;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 10px;
  background: rgba(226, 178, 102, 0.12);
  color: var(--lidora-primary-light);
}

.feature-icon svg {
  width: 1.15rem;
  height: 1.15rem;
}

.features h2 {
  margin: 0 0 0.25rem;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text);
}

.features p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.45;
}

.cta-block {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.5rem;
}

.cta-note {
  margin: 0;
  padding: 0.85rem 1.2rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--lidora-primary-light), var(--lidora-highlight));
  color: var(--lidora-deep-blue);
  font-weight: 600;
  font-size: 0.95rem;
  box-shadow: 0 12px 30px rgba(226, 178, 102, 0.28);
}

.sports {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.sports span {
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(74, 144, 164, 0.45);
  color: rgba(245, 240, 230, 0.8);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  background: rgba(74, 144, 164, 0.12);
}

.visual {
  margin: 0;
  animation: rise 1.1s ease 0.12s both;
}

.visual-frame {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(226, 178, 102, 0.35);
  box-shadow:
    var(--shadow),
    inset 0 0 0 1px rgba(248, 200, 120, 0.08);
  background: var(--lidora-deep-blue);
}

.hero-image {
  width: 100%;
  height: auto;
  display: block;
}

.visual-shine {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 18%, rgba(248, 200, 120, 0.12), transparent 55%);
  pointer-events: none;
}

.visual figcaption {
  margin-top: 0.9rem;
  text-align: center;
  color: rgba(245, 240, 230, 0.55);
  font-size: 0.85rem;
  letter-spacing: 0.02em;
}

.footer {
  padding: 1rem clamp(1.25rem, 4vw, 3.5rem) 2rem;
  text-align: center;
  color: rgba(245, 240, 230, 0.42);
  font-size: 0.85rem;
}

.footer p {
  margin: 0;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(248, 200, 120, 0.55);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(248, 200, 120, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(248, 200, 120, 0);
  }
}

@keyframes drift {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(24px, 18px, 0);
  }
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 960px) {
  .hero {
    grid-template-columns: 1fr;
    padding-top: 0.5rem;
  }

  .visual {
    order: -1;
  }

  .visual-frame {
    width: 100%;
    max-width: none;
    margin: 0;
  }

  .hero-image {
    width: 100%;
    max-width: none;
    height: auto;
  }

  h1 {
    font-size: clamp(2.1rem, 8vw, 3rem);
  }
}

@media (max-width: 560px) {
  .topbar {
    padding-top: 1rem;
  }

  .features li {
    padding: 0.9rem;
  }

  .cta-note {
    width: 100%;
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
