@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Oxanium:wght@500;600;700;800&display=swap");

* {
  box-sizing: border-box;
}

:root {
  --bg: #05080f;
  --bg-deep: #09111b;
  --bg-alt: #111c28;
  --surface: rgba(8, 14, 24, 0.84);
  --surface-strong: rgba(12, 22, 35, 0.94);
  --surface-soft: rgba(16, 28, 43, 0.72);
  --text: #f2f6f2;
  --text-soft: #bed0d1;
  --muted: #8ea5ad;
  --line: rgba(124, 207, 169, 0.18);
  --line-strong: rgba(255, 203, 113, 0.28);
  --emerald: #69f4b5;
  --emerald-deep: #1ec17a;
  --gold: #ffd17a;
  --gold-deep: #f5a44d;
  --sky: #6bddff;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.42);
  --shadow-soft: 0 18px 50px rgba(0, 0, 0, 0.28);
  --radius-xl: 34px;
  --radius-lg: 26px;
  --radius-md: 20px;
  --radius-sm: 16px;
  --width: min(1240px, calc(100% - 32px));
  --transition: 180ms ease;
}

html {
  scroll-behavior: smooth;
}

html.has-js {
  scroll-padding-top: 112px;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Manrope", "Segoe UI", Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(107, 221, 255, 0.16), transparent 24%),
    radial-gradient(circle at top right, rgba(255, 209, 122, 0.14), transparent 22%),
    radial-gradient(circle at 50% 120%, rgba(31, 193, 122, 0.18), transparent 26%),
    linear-gradient(180deg, #04070d 0%, #09111b 36%, #0c1724 100%);
  overflow-x: hidden;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
}

body::before {
  z-index: -2;
  background:
    linear-gradient(180deg, rgba(5, 8, 15, 0.18), rgba(5, 8, 15, 0.74)),
    radial-gradient(circle at 15% 18%, rgba(105, 244, 181, 0.1), transparent 14%),
    radial-gradient(circle at 82% 20%, rgba(255, 209, 122, 0.08), transparent 16%),
    radial-gradient(circle at 68% 74%, rgba(107, 221, 255, 0.08), transparent 18%);
}

body::after {
  z-index: -1;
  opacity: 0.55;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0.25));
}

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

a {
  color: inherit;
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

::selection {
  background: rgba(105, 244, 181, 0.26);
  color: #08120f;
}

.page-wrap {
  width: var(--width);
  margin-inline: auto;
}

.surface {
  background: linear-gradient(180deg, rgba(13, 20, 32, 0.88), rgba(10, 18, 30, 0.82));
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.topbar {
  position: sticky;
  top: 14px;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 18px;
  padding: 16px 20px;
  background: linear-gradient(180deg, rgba(12, 18, 28, 0.92), rgba(10, 16, 26, 0.86));
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.topbar.is-scrolled {
  border-color: var(--line-strong);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.34);
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  min-width: 0;
}

.brand-mark {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  overflow: hidden;
  flex: 0 0 auto;
  padding: 4px;
  background: linear-gradient(180deg, #fff1c9, #f0b64c);
  border: 1px solid rgba(255, 228, 161, 0.36);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.5),
    0 12px 24px rgba(0, 0, 0, 0.22);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 14px;
  background: #fffef8;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.brand-copy strong {
  font-family: "Oxanium", "Segoe UI", sans-serif;
  font-size: 1rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.brand-copy span {
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

.nav-shell {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.nav a {
  text-decoration: none;
  padding: 10px 14px;
  border-radius: 14px;
  color: var(--muted);
  transition: background var(--transition), color var(--transition), transform var(--transition);
}

.nav a:hover,
.nav a.active {
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-1px);
}

.nav-cta {
  text-decoration: none;
  padding: 12px 16px;
  border-radius: 16px;
  border: 1px solid var(--line-strong);
  background: linear-gradient(135deg, rgba(255, 209, 122, 0.18), rgba(105, 244, 181, 0.12));
  color: var(--gold);
  font-weight: 700;
  white-space: nowrap;
  transition: transform var(--transition), border-color var(--transition), background var(--transition);
}

.nav-cta:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 209, 122, 0.52);
}

.menu-toggle {
  display: none;
  width: 52px;
  height: 52px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform var(--transition), opacity var(--transition);
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

main {
  padding: 38px 0 26px;
}

.hero-grid,
.page-hero,
.split-layout,
.grid-2,
.grid-3,
.grid-4,
.gallery-grid,
.rule-grid {
  display: grid;
  gap: 18px;
}

.hero-grid {
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.9fr);
  align-items: start;
}

.page-hero {
  grid-template-columns: minmax(0, 1.12fr) minmax(300px, 0.88fr);
}

.split-layout {
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
}

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

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

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

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

.hero-copy-block,
.meta-panel,
.panel,
.spotlight,
.mini-card,
.timeline-step,
.rule-card,
.showcase-card,
.gallery-card,
.cta-band,
.faq-item {
  padding: 28px;
}

.hero-copy-block,
.meta-panel,
.spotlight,
.panel,
.mini-card,
.timeline-step,
.rule-card,
.showcase-card,
.gallery-card,
.cta-band,
.faq-item {
  animation: rise-up 720ms cubic-bezier(0.2, 0.9, 0.2, 1) both;
}

.hero-copy-block {
  padding: 34px;
}

.hero-side {
  display: grid;
  gap: 16px;
}

.logo-panel {
  display: flex;
  gap: 18px;
  align-items: center;
  padding: 22px;
}

.logo-panel__art {
  width: 108px;
  height: 108px;
  border-radius: 28px;
  overflow: hidden;
  padding: 8px;
  border: 1px solid rgba(255, 228, 161, 0.36);
  flex: 0 0 auto;
  background: linear-gradient(180deg, #fff2cf, #e5b45a);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.5),
    0 14px 28px rgba(0, 0, 0, 0.22);
}

.logo-panel__art img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 20px;
  background: #fffef8;
}

.logo-panel__copy h2 {
  margin: 8px 0 10px;
  font-family: "Oxanium", "Segoe UI", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 1.25rem;
}

.logo-panel__copy p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.7;
}

.banner-frame {
  padding: 12px;
}

.banner-frame img {
  width: 100%;
  min-height: 300px;
  object-fit: cover;
  object-position: center top;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 260ms ease;
}

.banner-frame:hover img,
.showcase-media:hover img,
.gallery-card:hover img,
.image-frame:hover img {
  transform: scale(1.02);
}

.banner-frame small,
.note,
.inline-note {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  line-height: 1.6;
}

.badge-row,
.channel-list,
.pill-row,
.copy-chip__meta,
.staff-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.badge,
.pill {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-soft);
  font-size: 0.9rem;
}

.eyebrow,
.kicker,
.section-tag {
  display: inline-block;
  margin: 0 0 10px;
  font-size: 0.78rem;
  line-height: 1.2;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}

.hero-copy-block h1,
.page-title {
  margin: 0 0 18px;
  font-family: "Oxanium", "Segoe UI", sans-serif;
  line-height: 0.94;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.hero-copy-block h1 {
  font-size: clamp(2.8rem, 6vw, 4.9rem);
}

.page-title {
  font-size: clamp(2.3rem, 5.2vw, 3.7rem);
}

.lead,
.meta-panel p,
.panel p,
.spotlight p,
.mini-card p,
.timeline-step p,
.rule-card p,
.showcase-card p,
.gallery-card p,
.cta-band p,
.faq-item p,
.footer p,
.meta-list li,
.staff-card p {
  color: var(--text-soft);
}

.lead {
  margin: 0;
  max-width: 70ch;
  line-height: 1.8;
  font-size: 1.04rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 18px;
  border-radius: 16px;
  border: 1px solid var(--line);
  text-decoration: none;
  font-weight: 700;
  transition: transform var(--transition), border-color var(--transition), background var(--transition), color var(--transition);
}

.button:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.18);
}

.button.primary {
  background: linear-gradient(135deg, #ffe2a7, var(--gold-deep));
  color: #10140e;
  border-color: rgba(255, 209, 122, 0.52);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
}

.button.ghost {
  background: rgba(105, 244, 181, 0.08);
  color: var(--emerald);
}

.button.small {
  min-height: 44px;
  padding: 0 15px;
  font-size: 0.92rem;
  border-radius: 14px;
}

.button.copied {
  background: linear-gradient(135deg, rgba(105, 244, 181, 0.95), rgba(255, 209, 122, 0.92));
  color: #09130c;
}

.copy-grid {
  display: grid;
  gap: 14px;
  margin-top: 32px;
}

.copy-chip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 18px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
}

.copy-chip__main {
  min-width: 0;
}

.copy-chip__main strong {
  display: block;
  margin: 4px 0 0;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
}

.copy-chip__actions {
  display: grid;
  gap: 10px;
  justify-items: stretch;
}

.copy-chip__actions .button {
  min-width: 154px;
}

.hero-trust {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 20px;
}

.trust-card {
  padding: 18px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: var(--shadow-soft);
}

.trust-card strong,
.panel h3,
.mini-card h3,
.rule-card h3,
.showcase-card h3,
.gallery-card h3,
.timeline-step h3,
.spotlight h2,
.section-head h2,
.meta-panel h3,
.faq-item summary,
.cta-band h2 {
  font-family: "Oxanium", "Segoe UI", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.trust-card strong {
  display: block;
  margin: 6px 0 8px;
  font-size: 1.08rem;
}

.section {
  margin-top: 72px;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
}

.section-head h2,
.spotlight h2,
.cta-band h2 {
  margin: 0;
  font-size: clamp(1.7rem, 3.8vw, 3rem);
  line-height: 1;
}

.section-head p {
  margin: 0;
  max-width: 60ch;
  color: var(--text-soft);
  line-height: 1.7;
}

.card-number {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  border: 1px solid var(--line-strong);
  background: linear-gradient(135deg, rgba(255, 209, 122, 0.2), rgba(105, 244, 181, 0.08));
  color: var(--gold);
  font-family: "Oxanium", "Segoe UI", sans-serif;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.panel h3,
.mini-card h3,
.rule-card h3,
.showcase-card h3,
.gallery-card h3,
.timeline-step h3 {
  margin: 18px 0 10px;
  font-size: 1.2rem;
}

.panel p,
.mini-card p,
.rule-card p,
.showcase-card p,
.gallery-card p,
.timeline-step p,
.spotlight p,
.staff-card p {
  margin: 0;
  line-height: 1.75;
}

.list-clean {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  display: grid;
  gap: 12px;
}

.list-clean li {
  position: relative;
  padding-left: 18px;
  color: var(--text-soft);
  line-height: 1.7;
}

.list-clean li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: linear-gradient(135deg, var(--gold), var(--emerald));
}

.meta-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.meta-panel h3 {
  margin: 10px 0 0;
  font-size: 1.22rem;
}

.meta-list {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  display: grid;
  gap: 12px;
}

.meta-list li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.meta-list li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.meta-list strong {
  color: var(--text);
  text-align: right;
}

.showcase-card,
.gallery-card {
  overflow: hidden;
}

.showcase-media,
.image-frame {
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: var(--surface-soft);
}

.showcase-media img,
.gallery-card img,
.image-frame img {
  width: 100%;
  object-fit: cover;
  transition: transform 260ms ease;
}

.showcase-media img,
.image-frame img {
  min-height: 230px;
}

.meta-panel .image-frame {
  margin-top: 22px;
}

.meta-panel .hero-actions {
  margin-top: 20px;
}

.compact-banner img {
  min-height: 190px;
  object-position: center top;
}

.showcase-media--logo img,
.gallery-card--logo img,
.image-frame--logo img {
  object-fit: contain;
  padding: 18px;
  background: linear-gradient(180deg, #fff4d7, #ffe0a1 55%, #f0bc56 100%);
}

.showcase-media--logo img,
.gallery-card--logo img {
  min-height: 260px;
}

.scene-crop-left {
  object-position: left center;
}

.scene-crop-center {
  object-position: center center;
}

.scene-crop-right {
  object-position: right center;
}

.scene-crop-top {
  object-position: center top;
}

.showcase-copy {
  padding-top: 18px;
}

.timeline {
  display: grid;
  gap: 16px;
}

.timeline-step {
  display: grid;
  grid-template-columns: 84px 1fr;
  align-items: start;
  gap: 18px;
}

.step-number {
  width: 84px;
  height: 84px;
  display: grid;
  place-items: center;
  border-radius: 24px;
  border: 1px solid var(--line-strong);
  background: linear-gradient(135deg, rgba(255, 209, 122, 0.18), rgba(105, 244, 181, 0.08));
  color: var(--gold);
  font-family: "Oxanium", "Segoe UI", sans-serif;
  font-size: 1.55rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.staff-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.staff-card {
  padding: 24px;
}

.staff-card .role {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--gold);
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.staff-card h3 {
  margin: 0 0 12px;
  font-family: "Oxanium", "Segoe UI", sans-serif;
  font-size: 1.16rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.gallery-card img {
  min-height: 260px;
}

.gallery-card .caption {
  padding: 18px 4px 0;
}

.rule-card {
  position: relative;
  overflow: hidden;
}

.rule-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(180deg, var(--gold), var(--emerald));
}

.faq-list {
  display: grid;
  gap: 16px;
}

.faq-item {
  padding: 0;
  overflow: hidden;
}

.faq-item summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  cursor: pointer;
  font-size: 1rem;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  font-size: 1.45rem;
  color: var(--gold);
  transition: transform var(--transition);
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item p {
  margin: 0;
  padding: 0 24px 24px;
  line-height: 1.8;
}

.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 72px;
}

.cta-band p {
  margin: 10px 0 0;
  line-height: 1.75;
}

.footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  margin: 74px auto 34px;
  padding: 30px;
}

.footer-brand .brand {
  margin-bottom: 16px;
}

.footer-brand p {
  margin: 0 0 12px;
  line-height: 1.75;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(160px, 1fr));
  gap: 20px 30px;
}

.footer-links p {
  margin: 0 0 14px;
}

.footer-links a {
  display: block;
  margin-bottom: 12px;
  text-decoration: none;
  color: var(--muted);
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--text);
}

code {
  padding: 0.16em 0.44em;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.06);
  font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
  font-size: 0.93em;
}

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

@media (max-width: 1120px) {
  .hero-grid,
  .page-hero,
  .split-layout,
  .grid-4,
  .staff-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-trust {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 900px) {
  .hero-grid,
  .page-hero,
  .split-layout,
  .grid-3,
  .grid-2,
  .grid-4,
  .gallery-grid,
  .rule-grid,
  .staff-grid {
    grid-template-columns: 1fr;
  }

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

  .topbar {
    align-items: center;
    flex-wrap: wrap;
  }

  .has-js .menu-toggle {
    display: inline-flex;
  }

  .has-js .nav-shell {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    padding-top: 8px;
  }

  .has-js .nav-shell.is-open {
    display: flex;
  }

  .has-js .nav {
    flex-direction: column;
  }

  .has-js .nav a,
  .has-js .nav-cta {
    width: 100%;
    justify-content: center;
  }

  .timeline-step {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 640px) {
  :root {
    --width: min(1240px, calc(100% - 22px));
  }

  .topbar,
  .hero-copy-block,
  .meta-panel,
  .panel,
  .spotlight,
  .mini-card,
  .timeline-step,
  .rule-card,
  .showcase-card,
  .gallery-card,
  .cta-band,
  .footer {
    padding-left: 20px;
    padding-right: 20px;
  }

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

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

  .copy-chip .button,
  .copy-chip__actions,
  .copy-chip__actions .button {
    width: 100%;
  }

  .hero-copy-block h1 {
    font-size: clamp(2.6rem, 15vw, 4rem);
  }

  .page-title {
    font-size: clamp(2rem, 12vw, 3.1rem);
  }

  .brand-copy span {
    letter-spacing: 0.14em;
  }

  .footer-links {
    grid-template-columns: 1fr;
  }
}
