@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700;800;900&display=swap');

:root {
  --bg: #050505;
  --text: #ffffff;
  --muted: rgba(255,255,255,.68);
  --line: rgba(255,255,255,.12);
  --gold: #ffb13b;
  --orange: #ff6b1a;
  --green: #36d17c;
  --blue: #4d7cff;
}

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

html {
  scroll-behavior: smooth;
}

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

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

.section {
  min-height: 100vh;
  position: relative;
}

.cursor-glow {
  position: fixed;
  width: 280px;
  height: 280px;
  border-radius: 999px;
  pointer-events: none;
  background: radial-gradient(circle, rgba(255,177,59,.20), transparent 65%);
  transform: translate(-50%, -50%);
  z-index: 999;
  mix-blend-mode: screen;
}

.grain {
  position: absolute;
  inset: 0;
  opacity: .08;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 38px 38px;
  mask-image: radial-gradient(circle at center, black, transparent 80%);
}

.hero {
  padding: 24px;
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 20%, rgba(77,124,255,.28), transparent 34%),
    radial-gradient(circle at 20% 80%, rgba(255,177,59,.25), transparent 34%),
    linear-gradient(135deg, #050505, #111 54%, #070707);
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: .18;
  filter: saturate(1.1) contrast(1.1);
}

.hero::before {
  background-image: url("https://images.unsplash.com/photo-1534430480872-3498386e7856?auto=format&fit=crop&w=1800&q=80");
  clip-path: polygon(0 0, 64% 0, 42% 100%, 0 100%);
}

.hero::after {
  background-image: url("https://images.unsplash.com/photo-1625246333195-78d9c38ad449?auto=format&fit=crop&w=1800&q=80");
  clip-path: polygon(62% 0, 100% 0, 100% 100%, 38% 100%);
}

.hero-orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(18px);
  opacity: .7;
}

.orb-one {
  width: 260px;
  height: 260px;
  background: rgba(255,177,59,.25);
  right: 14%;
  top: 20%;
}

.orb-two {
  width: 210px;
  height: 210px;
  background: rgba(54,209,124,.18);
  left: 8%;
  bottom: 12%;
}

.nav {
  position: relative;
  z-index: 3;
  width: min(1180px, 100%);
  margin: 0 auto;
  padding: 18px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -1px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--gold), var(--orange));
  color: #111;
}

.nav-cta {
  padding: 12px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(12px);
  font-weight: 700;
}

.hero-grid {
  position: relative;
  z-index: 3;
  width: min(1180px, 100%);
  margin: 80px auto 0;
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  align-items: center;
  gap: 42px;
}

.kicker,
.section-label {
  color: var(--gold);
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-size: 12px;
  margin-bottom: 18px;
}

.headline {
  font-size: clamp(52px, 8vw, 116px);
  line-height: .88;
  letter-spacing: -6px;
  max-width: 860px;
}

.intro {
  color: var(--muted);
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.55;
  max-width: 680px;
  margin-top: 26px;
}

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

.btn {
  border: 1px solid var(--line);
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(14px);
  padding: 16px 22px;
  border-radius: 999px;
  font-weight: 900;
  transition: transform .25s ease, background .25s ease;
}

.btn:hover,
.social-card:hover {
  transform: translateY(-4px);
}

.btn.primary {
  background: linear-gradient(135deg, var(--gold), var(--orange));
  border-color: transparent;
  color: #111;
}

.visual-card {
  border: 1px solid var(--line);
  border-radius: 34px;
  padding: 18px;
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(18px);
  box-shadow: 0 40px 120px rgba(0,0,0,.45);
}

.visual-top,
.visual-bottom {
  display: flex;
  justify-content: space-between;
  color: rgba(255,255,255,.72);
  font-weight: 800;
  padding: 10px;
}

.portrait-frame {
  height: 470px;
  position: relative;
  overflow: hidden;
  border-radius: 26px;
  background: #111;
}

.photo-collage {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.photo-one {
  background-image: url("https://images.unsplash.com/photo-1522083165195-3424ed129620?auto=format&fit=crop&w=1200&q=80");
  clip-path: polygon(0 0, 66% 0, 42% 100%, 0 100%);
}

.photo-two {
  background-image: url("https://images.unsplash.com/photo-1600871519088-0395a0ce8105?auto=format&fit=crop&w=1200&q=80");
  clip-path: polygon(63% 0, 100% 0, 100% 100%, 37% 100%);
}

.scroll-hint {
  position: absolute;
  z-index: 3;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,.58);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .18em;
  display: flex;
  align-items: center;
  gap: 10px;
}

.scroll-hint span {
  width: 8px;
  height: 8px;
  border-radius: 99px;
  background: var(--gold);
}

.marquee-section {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #0b0b0b;
}

.marquee-track {
  display: flex;
  width: max-content;
  gap: 26px;
  padding: 26px 0;
  white-space: nowrap;
}

.marquee-track span {
  font-size: clamp(34px, 6vw, 82px);
  line-height: 1;
  font-weight: 900;
  letter-spacing: -3px;
  color: rgba(255,255,255,.12);
}

.story {
  display: grid;
  align-items: center;
  padding: 100px 24px;
  background:
    radial-gradient(circle at 15% 25%, rgba(54,209,124,.14), transparent 28%),
    radial-gradient(circle at 85% 70%, rgba(255,177,59,.14), transparent 28%),
    #080808;
}

.story-content,
.social-inner {
  width: min(1080px, 92%);
  margin: 0 auto;
}

.large-title {
  font-size: clamp(44px, 7vw, 92px);
  line-height: .95;
  letter-spacing: -5px;
}

.story-text {
  color: var(--muted);
  font-size: clamp(18px, 2.4vw, 28px);
  line-height: 1.5;
  max-width: 820px;
  margin-top: 28px;
}

.operations {
  display: grid;
  place-items: center;
  padding: 80px 24px;
  background:
    linear-gradient(rgba(0,0,0,.65), rgba(0,0,0,.85)),
    url("https://images.unsplash.com/photo-1494526585095-c41746248156?auto=format&fit=crop&w=1800&q=80");
  background-size: cover;
  background-position: center;
}

.pin-card {
  width: min(1180px, 100%);
  border: 1px solid var(--line);
  border-radius: 34px;
  padding: clamp(26px, 5vw, 58px);
  background: rgba(0,0,0,.54);
  backdrop-filter: blur(18px);
}

.pin-card h2 {
  font-size: clamp(38px, 6vw, 76px);
  line-height: .98;
  letter-spacing: -4px;
  max-width: 880px;
}

.city-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 38px;
}

.city-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255,255,255,.07);
}

.city-card span {
  color: var(--gold);
  font-weight: 900;
}

.city-card h3 {
  font-size: 28px;
  margin: 18px 0 8px;
}

.city-card p {
  color: var(--muted);
  line-height: 1.5;
}

.social {
  display: grid;
  align-items: center;
  padding: 110px 24px;
  background:
    radial-gradient(circle at 50% 0%, rgba(77,124,255,.18), transparent 36%),
    #050505;
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 38px;
}

.social-card {
  min-height: 160px;
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 26px;
  background: rgba(255,255,255,.06);
  transition: transform .25s ease, background .25s ease;
}

.social-card span {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 12px;
  font-weight: 900;
}

.social-card strong {
  display: block;
  margin-top: 36px;
  font-size: clamp(22px, 3vw, 36px);
  letter-spacing: -1px;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 28px;
  color: rgba(255,255,255,.55);
  border-top: 1px solid var(--line);
}

@media (max-width: 860px) {
  .cursor-glow {
    display: none;
  }

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

  .hero-grid,
  .city-list,
  .social-grid {
    grid-template-columns: 1fr;
  }

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

  .headline,
  .large-title {
    letter-spacing: -2px;
  }

  .portrait-frame {
    height: 360px;
  }

  .footer {
    flex-direction: column;
  }
}
