:root {
  color-scheme: dark;
  --bg: #05091a;
  --panel: #09122a;
  --surface: rgba(255, 255, 255, 0.05);
  --text: #f4f7ff;
  --muted: #a3b6ff;
  --accent: #ff385c;
  --accent-light: #ff608e;
  --blue: #4a7dff;
  --white: #ffffff;
  --border: rgba(255, 255, 255, 0.12);
  --shadow: 0 32px 80px rgba(2, 8, 22, 0.35);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(circle at top, rgba(68, 109, 255, 0.14), transparent 20%),
    linear-gradient(180deg, #08122a 0%, #04070f 100%);
  color: var(--text);
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.page-shell {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px 64px;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 26px 0 14px;
}

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

.brand-mark {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: linear-gradient(180deg, #ff3b5c 0%, #3155ff 100%);
  font-weight: 800;
  color: white;
}

.brand-name {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
}

.brand-tag {
  display: block;
  margin-top: 4px;
  font-size: 0.82rem;
  color: var(--muted);
}

.topbar-links {
  display: flex;
  align-items: center;
  gap: 26px;
  flex-wrap: wrap;
}

.topbar-links a {
  color: var(--muted);
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

.topbar-links a:hover {
  color: var(--white);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.9fr);
  align-items: center;
  gap: 36px;
  min-height: 76vh;
  padding: 48px 0 32px;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(255, 122, 154, 0.18), transparent 18%),
    radial-gradient(circle at 15% 15%, rgba(86, 141, 255, 0.16), transparent 20%);
  pointer-events: none;
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  padding: 12px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: #9bb5ff;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.hero h1 {
  margin: 0;
  font-size: clamp(3rem, 5vw, 4.6rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.hero-copy p {
  max-width: 640px;
  margin-top: 26px;
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 32px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 170px;
  padding: 16px 24px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--blue));
  color: white;
  box-shadow: 0 22px 48px rgba(255, 56, 108, 0.28);
}

.btn-ghost {
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--white);
  background: rgba(255, 255, 255, 0.04);
}

.btn:hover {
  transform: translateY(-2px);
}

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

.hero-metrics div {
  padding: 22px 20px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-metrics strong {
  display: block;
  font-size: 1.8rem;
  color: white;
}

.hero-metrics span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.95rem;
}

.hero-visual {
  position: relative;
  min-height: 520px;
}

.hero-overlay-shape {
  position: absolute;
  inset: 0;
  border-radius: 32px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 60%);
  pointer-events: none;
}

.hero-image-stack {
  position: relative;
  height: 100%;
  display: grid;
  grid-template-rows: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.hero-image-stack img {
  border-radius: 28px;
  min-height: 150px;
  object-position: center;
}

.section-header {
  padding: 0 0 24px;
  max-width: 1020px;
}

.section-label {
  display: inline-flex;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(74, 125, 255, 0.16);
  color: #9bb5ff;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.section-header h2 {
  margin: 16px 0 0;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  line-height: 1.08;
}

.section-header p {
  margin-top: 18px;
  color: var(--muted);
  max-width: 760px;
  line-height: 1.8;
}

.gallery-section {
  padding-top: 18px;
}

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

.image-card {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  min-height: 300px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.image-card img {
  height: 100%;
}

.features-section {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin: 72px 0 40px;
}

.feature-card {
  padding: 32px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
}

.feature-card span {
  display: inline-flex;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(74, 125, 255, 0.14);
  color: #b4c8ff;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.13em;
}

.feature-card h3 {
  margin-top: 20px;
  font-size: 1.5rem;
}

.feature-card p {
  margin-top: 16px;
  color: var(--muted);
  line-height: 1.8;
}

.contact-section {
  padding: 48px 0 0;
}

.contact-panel {
  max-width: 860px;
  padding: 42px;
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
}

.contact-panel span {
  display: inline-flex;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 56, 108, 0.12);
  color: #ffb1c5;
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-panel h2 {
  margin: 20px 0 0;
  font-size: clamp(2rem, 3vw, 2.8rem);
  line-height: 1.05;
}

.contact-panel p {
  margin-top: 20px;
  color: var(--muted);
  line-height: 1.85;
}

@media (max-width: 1080px) {
  .hero {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 860px) {
  .page-shell {
    padding: 0 18px 48px;
  }

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

  .hero-actions {
    width: 100%;
  }

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

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

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

@media (max-width: 640px) {
  .page-shell {
    padding: 0 14px 40px;
  }

  .hero {
    padding-top: 32px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

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

  .hero-image-stack {
    grid-template-rows: repeat(3, minmax(180px, 1fr));
  }
}
