@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

:root {
  --bg: #050816;
  --bg-soft: #0b1220;
  --card: rgba(255, 255, 255, 0.05);
  --card-strong: rgba(255, 255, 255, 0.08);
  --border: rgba(255, 255, 255, 0.1);
  --text: #eef2ff;
  --muted: rgba(238, 242, 255, 0.72);
  --accent: #22d3ee;
  --accent-2: #8b5cf6;
  --accent-3: #60a5fa;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  --radius: 24px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(34, 211, 238, 0.12), transparent 28%),
    radial-gradient(circle at top right, rgba(139, 92, 246, 0.16), transparent 26%),
    radial-gradient(circle at 50% 80%, rgba(96, 165, 250, 0.08), transparent 26%),
    linear-gradient(180deg, var(--bg), var(--bg-soft));
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.page {
  padding-bottom: 28px;
}

.container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.top-left-btn {
  position: fixed;
  top: 18px;
  left: 18px;
  z-index: 999;
  padding: 10px 16px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, var(--accent-2), #4f46e5);
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.top-left-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 28px 65px rgba(0, 0, 0, 0.42);
}

.hero {
  padding: 96px 0 42px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 20px;
  align-items: stretch;
}

.hero-content,
.hero-panel,
.feature-card,
.location-card,
.final-panel {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.hero-content {
  padding: 32px;
}

.badge,
.location-badge,
.location-label,
.new-badge,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.05);
  color: var(--muted);
}

.badge {
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
}

h1 {
  margin: 18px 0 14px;
  font-size: clamp(2.25rem, 5vw, 4.35rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.lead {
  max-width: 760px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 18px;
  border-radius: 14px;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff;
  box-shadow: 0 14px 35px rgba(139, 92, 246, 0.25);
}

.btn-secondary {
  border: 1px solid var(--border);
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
}

.hero-panel {
  padding: 22px;
  overflow: hidden;
  position: relative;
}

.hero-panel::before {
  content: "";
  position: absolute;
  inset: auto -40px -50px auto;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(34, 211, 238, 0.18), transparent 65%);
  pointer-events: none;
}

.hero-panel-inner {
  position: relative;
  z-index: 1;
  height: 100%;
  padding: 10px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hero-panel h2,
.section-heading h2,
.feature-card h3,
.location-content h3,
.final-panel h2 {
  letter-spacing: -0.03em;
}

.hero-panel h2 {
  font-size: 1.35rem;
  margin-bottom: 10px;
}

.hero-panel p,
.section-heading p,
.feature-card p,
.location-content p,
.final-panel p {
  color: var(--muted);
  line-height: 1.7;
}

.mini-grid {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.mini-card {
  padding: 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
}

.mini-card strong {
  display: block;
  font-size: 1.1rem;
  margin-bottom: 6px;
}

.mini-card span {
  color: var(--muted);
  font-size: 0.92rem;
}

.section {
  padding: 20px 0 0;
}

.section-heading {
  margin-bottom: 16px;
}

.section-kicker {
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 13px;
  margin-bottom: 12px;
}

.section-heading h2 {
  font-size: clamp(1.55rem, 2.2vw, 2.1rem);
  margin-bottom: 8px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.feature-card {
  padding: 24px;
  transition: transform 0.22s ease, border-color 0.22s ease;
}

.feature-card:hover,
.location-card:hover,
.final-panel:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.16);
}

.feature-card h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}

.location-card {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 18px;
  padding: 18px;
  margin-top: 18px;
  align-items: center;
}

.location-card-reverse {
  grid-template-columns: 1.05fr 1fr;
}

.location-card-reverse .location-content {
  order: 1;
}

.location-card-reverse .location-image-wrap {
  order: 2;
}

.location-content {
  padding: 8px 8px 8px 10px;
}

.location-topline {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-bottom: 14px;
}

.location-label,
.location-badge,
.new-badge {
  padding: 7px 11px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
}

.new-badge {
  color: #fff;
  background: linear-gradient(135deg, #f59e0b, #ef4444);
  border: none;
}

.location-badge {
  color: #dbeafe;
}

.location-content h3 {
  font-size: 1.45rem;
  margin-bottom: 10px;
}

.location-intro {
  font-size: 1.02rem;
  color: var(--text);
}

.location-image-wrap {
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
}

.location-image {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.location-card:hover .location-image {
  transform: scale(1.03);
}

.checklist {
  list-style: none;
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.checklist li {
  position: relative;
  padding-left: 24px;
  color: var(--muted);
  line-height: 1.6;
}

.checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent);
  font-weight: 900;
}

.checklist strong {
  color: var(--text);
}

.final-panel {
  padding: 28px;
  margin-top: 18px;
}

.final-panel h2 {
  font-size: 1.5rem;
  margin: 12px 0 10px;
}

@media (max-width: 1024px) {
  .hero-grid,
  .feature-grid,
  .location-card,
  .location-card-reverse {
    grid-template-columns: 1fr;
  }

  .location-card-reverse .location-content,
  .location-card-reverse .location-image-wrap {
    order: initial;
  }

  .location-image {
    min-height: 260px;
  }
}

@media (max-width: 640px) {
  .container {
    width: calc(100% - 20px);
  }

  .hero {
    padding-top: 76px;
  }

  .hero-content,
  .hero-panel,
  .feature-card,
  .location-card,
  .final-panel {
    border-radius: 20px;
  }

  .hero-content {
    padding: 22px;
  }

  .mini-grid {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: 2rem;
  }

  .top-left-btn {
    top: 12px;
    left: 12px;
    font-size: 13px;
    padding: 9px 13px;
  }
}