:root {
  --bg: #0c1220;
  --panel: rgba(15, 22, 38, 0.84);
  --panel-strong: rgba(11, 17, 30, 0.94);
  --line: rgba(255, 255, 255, 0.08);
  --text: #fbf8f4;
  --muted: #bac6d9;
  --orange: #ff8b5c;
  --gold: #ffd76b;
  --blue: #65b7ff;
  --mint: #6ef0c1;
  --pink: #ff8bc7;
  --shadow: 0 32px 80px rgba(0, 0, 0, 0.34);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(255, 139, 92, 0.18), transparent 25%),
    radial-gradient(circle at top right, rgba(101, 183, 255, 0.16), transparent 20%),
    linear-gradient(180deg, #0c1220 0%, #10182a 52%, #0d1523 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.6), transparent 92%);
}

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

.ambient {
  position: fixed;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.22;
  pointer-events: none;
}

.ambient-orange { top: -40px; left: -80px; background: var(--orange); }
.ambient-blue { top: 180px; right: -80px; background: var(--blue); }

.page-shell {
  width: min(1220px, calc(100% - 32px));
  margin: 0 auto;
  padding-bottom: 56px;
  position: relative;
  z-index: 1;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 0;
  backdrop-filter: blur(16px);
}

.brand { display: inline-flex; align-items: center; gap: 14px; }
.brand img { width: 48px; height: 48px; }

.brand strong,
.hero h1,
.hero-poster h2,
.section h2,
.contact-card h2 { font-family: "Syne", sans-serif; }

.brand strong { display: block; font-size: 1rem; }
.brand span { display: block; font-size: 0.82rem; color: var(--muted); }

.site-nav { display: inline-flex; gap: 24px; color: var(--muted); }
.site-nav a:hover,
.site-nav a:focus-visible,
.contact-meta a:hover,
.contact-meta a:focus-visible { color: var(--text); }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.button:hover,
.button:focus-visible { transform: translateY(-1px); }

.button.primary { color: #0c1220; background: linear-gradient(135deg, var(--gold), #fff0ad); }
.button.secondary,
.button.ghost { border-color: var(--line); background: rgba(255, 255, 255, 0.03); }

.hero {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 32px;
  align-items: center;
  padding: 48px 0 26px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  font-size: clamp(3rem, 6vw, 6rem);
  line-height: 0.92;
  max-width: 10.5ch;
}

.hero-text,
.section-heading p,
.partner-card p,
.world-card p,
.hero-poster p,
.contact-card p,
.op-row p,
.feature-list li,
.hero-proof span,
.rhythm-grid span { color: var(--muted); }

.hero-text {
  max-width: 58ch;
  margin: 18px 0 0;
  line-height: 1.75;
  font-size: 1.04rem;
}

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

.hero-strip span {
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
}

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

.hero-proof div,
.rhythm-panel,
.hero-poster,
.mini-poster,
.world-card,
.approach-panel,
.partner-card,
.contact-card {
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.hero-proof div {
  padding: 16px 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.03);
}

.hero-proof strong,
.rhythm-grid strong { display: block; margin-bottom: 8px; font-size: 1rem; }

.hero-stage { display: grid; grid-template-columns: 1fr 0.48fr; gap: 18px; }

.hero-poster {
  min-height: 560px;
  border-radius: 34px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  position: relative;
  background: linear-gradient(180deg, rgba(12, 18, 32, 0.08), rgba(12, 18, 32, 0.84));
}

.poster-art {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.poster-copy { position: relative; z-index: 1; }

.poster-tag,
.world-tag {
  display: inline-flex;
  width: fit-content;
  padding: 8px 12px;
  border-radius: 999px;
  color: #0c1220;
  background: rgba(255, 255, 255, 0.84);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero-poster h2 {
  margin: 12px 0 10px;
  max-width: 12ch;
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  line-height: 0.95;
}

.hero-poster p { max-width: 34ch; margin: 0; }

.poster-stack { display: grid; gap: 18px; }

.mini-poster {
  min-height: 270px;
  border-radius: 28px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
}

.mini-poster img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mini-poster::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12, 18, 32, 0.08), rgba(12, 18, 32, 0.88));
}

.mini-poster span,
.mini-poster strong { position: relative; z-index: 1; }

.mini-poster span {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.84rem;
  font-weight: 700;
}

.mini-poster strong {
  margin-top: 8px;
  font-size: 1.26rem;
  line-height: 1.25;
}

.marquee {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
  padding: 18px;
  margin-top: 14px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.03);
}

.marquee span { text-align: center; color: var(--muted); font-size: 0.94rem; }

.section { padding: 92px 0 0; }
.section-heading { max-width: 70ch; margin-bottom: 28px; }

.section h2,
.contact-card h2 { margin: 0; font-size: clamp(2rem, 4vw, 3.3rem); }

.world-grid,
.approach-layout,
.partner-grid,
.rhythm-grid { display: grid; gap: 18px; }

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

.world-card {
  border-radius: 28px;
  background: var(--panel);
  overflow: hidden;
}

.world-art {
  display: block;
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.world-copy { padding: 18px; }
.world-copy h3 { margin: 12px 0 8px; font-size: 1.36rem; }
.world-copy p { margin: 0; line-height: 1.7; }

.section-approach .approach-layout { grid-template-columns: 1fr 1fr; }

.approach-panel {
  border-radius: 30px;
  padding: 28px;
  background: var(--panel);
}

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

.feature-list li {
  position: relative;
  padding-left: 18px;
  line-height: 1.7;
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--mint), var(--orange));
}

.operations { display: grid; gap: 14px; }

.op-row {
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.04);
}

.op-row strong { display: block; margin-bottom: 8px; font-size: 1.08rem; }
.op-row p { margin: 0; line-height: 1.7; }

.rhythm-panel {
  border-radius: 30px;
  padding: 28px;
  background:
    radial-gradient(circle at top right, rgba(255, 139, 92, 0.12), transparent 26%),
    linear-gradient(180deg, rgba(15, 22, 38, 0.96), rgba(15, 22, 38, 0.9));
}

.rhythm-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); margin-top: 10px; }

.rhythm-grid div {
  padding: 16px 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
}

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

.partner-card {
  border-radius: 26px;
  padding: 24px;
  background: var(--panel);
}

.partner-index {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  margin-bottom: 14px;
  color: #0c1220;
  font-weight: 800;
  background: linear-gradient(135deg, var(--gold), #fff0ad);
}

.partner-card h3 { margin: 0 0 10px; font-size: 1.24rem; }
.partner-card p { margin: 0; line-height: 1.7; }

.contact-section { padding-bottom: 28px; }

.contact-card {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 18px;
  border-radius: 30px;
  padding: 30px;
  background:
    radial-gradient(circle at top right, rgba(255, 215, 107, 0.14), transparent 24%),
    linear-gradient(180deg, rgba(13, 21, 35, 0.94), rgba(15, 22, 38, 0.88));
}

.contact-meta { display: grid; gap: 14px; }

.contact-meta p {
  margin: 0;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
}

.contact-meta strong { display: block; margin-bottom: 6px; }

[data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 520ms ease, transform 520ms ease;
}

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

@media (max-width: 1120px) {
  .hero,
  .section-approach .approach-layout,
  .contact-card { grid-template-columns: 1fr; }

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

  .hero-poster { min-height: 420px; }
}

@media (max-width: 780px) {
  .page-shell { width: min(100% - 20px, 1220px); }

  .site-header {
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .site-nav {
    order: 3;
    width: 100%;
    gap: 18px;
    overflow-x: auto;
    padding-bottom: 6px;
  }

  .hero-stage,
  .world-grid,
  .partner-grid,
  .marquee,
  .hero-proof,
  .rhythm-grid { grid-template-columns: 1fr; }

  .hero h1 { max-width: 9.5ch; }
  .hero-poster,
  .mini-poster { min-height: 240px; }
}
