:root {
  --bg: #000000;
  --bg-soft: #090909;
  --panel: rgba(255, 255, 255, 0.04);
  --panel-strong: rgba(255, 255, 255, 0.07);
  --border: rgba(255, 215, 0, 0.18);
  --accent: #ffd700;
  --accent-soft: rgba(255, 215, 0, 0.14);
  --accent-glow: rgba(255, 215, 0, 0.3);
  --text: #f7f2d5;
  --muted: rgba(247, 242, 213, 0.72);
  --black: #050505;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --max-width: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Plus Jakarta Sans", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(255, 215, 0, 0.16), transparent 28%),
    radial-gradient(circle at 85% 10%, rgba(255, 215, 0, 0.08), transparent 20%),
    linear-gradient(180deg, #050505 0%, #000000 45%, #040404 100%);
  color: var(--text);
}

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

a {
  color: inherit;
  text-decoration: none;
}

.page-shell {
  overflow: hidden;
}

.section {
  width: min(calc(100% - 32px), var(--max-width));
  margin: 0 auto;
  padding: 108px 0;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(calc(100% - 32px), var(--max-width));
  margin: 0 auto;
  padding: 20px 0;
  backdrop-filter: blur(18px);
}

.topbar::before {
  content: "";
  position: absolute;
  inset: 8px -14px;
  background: linear-gradient(180deg, rgba(8, 8, 8, 0.82), rgba(0, 0, 0, 0.6));
  border: 1px solid rgba(255, 215, 0, 0.14);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.28);
  border-radius: 999px;
  z-index: -1;
}

.brand {
  flex-shrink: 0;
}

.brand img,
.footer-brand img {
  width: 142px;
  height: auto;
}

.nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--muted);
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.nav a {
  position: relative;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}

.nav a:hover::after {
  transform: scaleX(1);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 56px;
  min-height: calc(100vh - 92px);
  padding-top: 84px;
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-orbit {
  position: absolute;
  border-radius: 999px;
  border: 1px solid rgba(255, 215, 0, 0.11);
}

.hero-orbit--one {
  width: 480px;
  height: 480px;
  left: -140px;
  top: 20px;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.12), transparent 60%);
}

.hero-orbit--two {
  width: 620px;
  height: 620px;
  right: -240px;
  top: -40px;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.08), transparent 64%);
}

.hero-gridlines {
  position: absolute;
  inset: 14% 0 auto auto;
  width: 44%;
  height: 60%;
  background-image:
    linear-gradient(rgba(255, 215, 0, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 215, 0, 0.06) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0), #000 18%, #000 75%, rgba(0, 0, 0, 0));
  opacity: 0.45;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 16px;
  margin-bottom: 18px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 215, 0, 0.08);
  color: var(--accent);
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-lead-in {
  margin: 0 0 10px;
  color: rgba(247, 242, 213, 0.58);
  font-size: 0.92rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.benefits-panel h2,
.about-content h2,
.final-cta h2 {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.03em;
}

.hero h1 {
  font-size: clamp(3.4rem, 7vw, 6.6rem);
  max-width: 11ch;
  text-wrap: balance;
}

.hero-text,
.section-heading p,
.benefit-item p,
.about-content p,
.about-highlight p,
.final-cta p {
  color: var(--muted);
  line-height: 1.8;
  font-size: 1.04rem;
}

.hero-text {
  max-width: 60ch;
  margin: 26px 0 0;
}

.hero-signature {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 28px;
  color: rgba(247, 242, 213, 0.64);
  font-size: 0.84rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-signature div {
  width: 72px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 32px;
}

.metric-card,
.feature-card,
.benefit-item,
.about-highlight,
.final-cta-card,
.gallery-item,
.about-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.025));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
}

.metric-card {
  padding: 22px;
  border-radius: var(--radius-md);
  backdrop-filter: blur(16px);
}

.metric-card strong,
.benefit-item h3,
.feature-card h3,
.about-content h2,
.final-cta h2 {
  color: var(--text);
}

.metric-card small {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--accent);
  letter-spacing: 0.18em;
  font-size: 0.72rem;
}

.metric-card span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  line-height: 1.6;
}

.hero-actions,
.center-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 36px;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 28px;
  border-radius: 999px;
  border: 1px solid rgba(255, 215, 0, 0.28);
  font-weight: 800;
  letter-spacing: 0.01em;
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    background 0.28s ease,
    color 0.28s ease;
}

.cta-button--primary,
.cta-button--small {
  background: linear-gradient(135deg, #ffe55b 0%, #ffd700 50%, #f4c700 100%);
  color: #000000;
  box-shadow: 0 14px 30px rgba(255, 215, 0, 0.28);
}

.cta-button--secondary {
  background: rgba(255, 215, 0, 0.08);
  color: var(--accent);
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 24px rgba(255, 215, 0, 0.25), 0 18px 34px rgba(255, 215, 0, 0.18);
}

.hero-visual {
  position: relative;
}

.hero-frame-detail {
  position: absolute;
  width: 170px;
  height: 170px;
  z-index: 2;
  pointer-events: none;
}

.hero-frame-detail--top {
  top: -20px;
  right: 34px;
  border-top: 1px solid rgba(255, 215, 0, 0.55);
  border-right: 1px solid rgba(255, 215, 0, 0.55);
}

.hero-frame-detail--bottom {
  left: -20px;
  bottom: 84px;
  border-left: 1px solid rgba(255, 215, 0, 0.35);
  border-bottom: 1px solid rgba(255, 215, 0, 0.35);
}

.hero-image-frame {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  border-radius: 40px;
  border: 1px solid rgba(255, 215, 0, 0.12);
  box-shadow:
    0 50px 120px rgba(0, 0, 0, 0.62),
    0 0 0 1px rgba(255, 255, 255, 0.02);
}

.hero-image-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.45)),
    linear-gradient(120deg, rgba(255, 215, 0, 0.16), transparent 45%);
}

.hero-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.floating-badge {
  position: absolute;
  left: -38px;
  bottom: 36px;
  padding: 20px 22px;
  border-radius: 22px;
  background: rgba(0, 0, 0, 0.78);
  border: 1px solid var(--border);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  max-width: 280px;
}

.hero-side-note {
  position: absolute;
  right: -8px;
  top: 120px;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  color: rgba(247, 242, 213, 0.42);
  font-size: 0.8rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.floating-badge span {
  display: block;
  color: var(--accent);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.floating-badge strong {
  display: block;
  margin-top: 10px;
  font-size: 1.2rem;
  line-height: 1.35;
}

.section-heading {
  max-width: 800px;
  margin-bottom: 42px;
  text-align: center;
}

.section-heading--left {
  text-align: left;
}

.section-heading h2,
.benefits-panel h2,
.about-content h2,
.final-cta h2 {
  font-size: clamp(2.7rem, 5vw, 4.4rem);
}

.section-heading p {
  margin: 18px auto 0;
  max-width: 60ch;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.feature-card {
  position: relative;
  padding: 28px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  backdrop-filter: blur(12px);
}

.feature-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(140deg, rgba(255, 215, 0, 0.12), transparent 40%);
  pointer-events: none;
}

.feature-icon {
  width: 66px;
  height: 66px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 22px;
  background:
    radial-gradient(circle at 50% 40%, rgba(255, 215, 0, 0.16), rgba(255, 215, 0, 0.05) 62%),
    rgba(255, 215, 0, 0.04);
  border: 1px solid rgba(255, 215, 0, 0.18);
  box-shadow:
    inset 0 0 26px rgba(255, 215, 0, 0.06),
    0 14px 28px rgba(0, 0, 0, 0.22);
}

.feature-icon span {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: radial-gradient(circle at 35% 35%, #fff3a0 0%, #ffd700 55%, #e0b800 100%);
  box-shadow:
    0 0 18px rgba(255, 215, 0, 0.26),
    inset 0 0 0 5px rgba(0, 0, 0, 0.14);
  position: relative;
}

.feature-icon span::after {
  content: "";
  position: absolute;
  inset: 7px;
  border-radius: 999px;
  border: 1px solid rgba(255, 248, 204, 0.72);
  opacity: 0.9;
}

.feature-card h3 {
  margin: 0;
  font-size: 1.28rem;
  font-family: "Sora", sans-serif;
  font-weight: 600;
}

.feature-card p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.75;
}

.gallery-section {
  position: relative;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  min-height: 300px;
  border-radius: 26px;
  grid-column: span 4;
  backdrop-filter: blur(10px);
  cursor: pointer;
}

.gallery-item--large {
  grid-column: span 8;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease, filter 0.55s ease;
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.42) 100%),
    linear-gradient(125deg, rgba(255, 215, 0, 0.14), transparent 50%);
  opacity: 0.85;
  transition: opacity 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
  filter: saturate(1.08) brightness(1.08);
}

.gallery-item:hover::after {
  opacity: 1;
}

.gallery-caption {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  z-index: 1;
}

.gallery-caption strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1.05rem;
  font-family: "Sora", sans-serif;
}

.gallery-caption span {
  color: rgba(247, 242, 213, 0.8);
  font-size: 0.94rem;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s ease;
}

.lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.82);
  backdrop-filter: blur(12px);
}

.lightbox-dialog {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.55fr);
  gap: 0;
  width: min(1180px, 100%);
  max-height: min(90vh, 920px);
  overflow: hidden;
  border-radius: 32px;
  border: 1px solid rgba(255, 215, 0, 0.14);
  background: linear-gradient(180deg, rgba(15, 15, 15, 0.98), rgba(6, 6, 6, 0.98));
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.6);
}

.lightbox-media {
  min-height: 620px;
  background: #050505;
}

.lightbox-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lightbox-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
  padding: 42px;
  background:
    radial-gradient(circle at top right, rgba(255, 215, 0, 0.14), transparent 28%),
    rgba(255, 255, 255, 0.02);
}

.lightbox-content .section-kicker {
  margin-bottom: 0;
}

.lightbox-content h3 {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.08;
}

.lightbox-content p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.lightbox-close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 215, 0, 0.18);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.66);
  color: var(--accent);
  font-size: 1.5rem;
  cursor: pointer;
}

.benefits-panel {
  padding: 42px;
  border-radius: 34px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at top right, rgba(255, 215, 0, 0.15), transparent 26%),
    rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(16px);
}

.benefits-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin: 34px 0;
}

.benefit-item {
  padding: 28px;
  border-radius: 26px;
}

.benefit-item h3 {
  margin: 0 0 10px;
  font-size: 1.2rem;
  font-family: "Sora", sans-serif;
  font-weight: 600;
}

.benefit-item p,
.about-content p,
.about-highlight p,
.final-cta p {
  margin: 0;
}

.about-card {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 24px;
  padding: 32px;
  border-radius: 32px;
  backdrop-filter: blur(14px);
}

.about-content {
  padding: 12px;
}

.about-highlight {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
  padding: 28px;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 215, 0, 0.12), rgba(255, 215, 0, 0.04)),
    rgba(255, 255, 255, 0.03);
}

.highlight-line {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

.final-cta {
  padding-top: 12px;
}

.final-cta-card {
  padding: 46px;
  border-radius: 34px;
  text-align: center;
  background:
    radial-gradient(circle at top center, rgba(255, 215, 0, 0.18), transparent 30%),
    rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(16px);
}

.final-cta-card .section-kicker {
  margin-bottom: 20px;
}

.final-cta-card p {
  max-width: 58ch;
  margin: 18px auto 0;
}

.final-cta-card .cta-button {
  margin-top: 28px;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(calc(100% - 32px), var(--max-width));
  margin: 0 auto;
  padding: 26px 0 48px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 18px;
}

.footer-brand strong {
  display: block;
  font-size: 1.05rem;
  font-family: "Sora", sans-serif;
}

.footer-brand span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1100px) {
  .hero,
  .about-card {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 36px;
  }

  .hero-image-frame {
    min-height: 560px;
  }

  .floating-badge {
    left: 20px;
  }

  .hero-side-note {
    display: none;
  }

  .features-grid,
  .benefits-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-item,
  .gallery-item--large {
    grid-column: span 6;
  }
}

@media (max-width: 840px) {
  .topbar {
    flex-wrap: wrap;
    justify-content: center;
  }

  .topbar::before {
    inset: 6px 0;
    border-radius: 28px;
  }

  .nav {
    order: 3;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    gap: 18px;
  }

  .section {
    padding: 86px 0;
  }

  .hero h1 {
    max-width: 100%;
  }

  .hero-metrics,
  .features-grid,
  .benefits-list,
  .footer {
    grid-template-columns: 1fr;
  }

  .footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .lightbox-dialog {
    grid-template-columns: 1fr;
    max-height: 92vh;
    overflow-y: auto;
  }

  .lightbox-media {
    min-height: 360px;
  }
}

@media (max-width: 680px) {
  .section {
    width: min(calc(100% - 22px), var(--max-width));
    padding: 72px 0;
  }

  .hero-metrics,
  .hero-actions,
  .features-grid,
  .benefits-list {
    display: grid;
  }

  .hero-actions,
  .center-cta {
    grid-template-columns: 1fr;
  }

  .cta-button {
    width: 100%;
  }

  .hero-image-frame {
    min-height: 380px;
  }

  .hero-signature {
    flex-wrap: wrap;
  }

  .gallery-item,
  .gallery-item--large {
    min-height: 250px;
    grid-column: span 12;
  }

  .benefits-panel,
  .about-card,
  .final-cta-card {
    padding: 26px;
  }

  .floating-badge {
    position: static;
    margin-top: 18px;
    max-width: none;
  }

  .hero-frame-detail {
    display: none;
  }

  .footer-brand {
    flex-direction: column;
    align-items: flex-start;
  }

  .lightbox {
    padding: 12px;
  }

  .lightbox-content {
    padding: 26px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
