:root {
  --bg: #0f1226;
  --bg-soft: #151a35;
  --accent: #f25c78;
  --accent-2: #5bd1d7;
  --text: #f7f7fb;
  --muted: #b7c0d8;
  --card: rgba(255, 255, 255, 0.08);
  --glass: rgba(255, 255, 255, 0.12);
  --shadow: 0 18px 40px rgba(15, 18, 38, 0.35);
}

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

body {
  font-family: "Source Sans 3", sans-serif;
  background: radial-gradient(circle at top right, #1d2450, #0f1226 55%, #0b0e20 100%);
  color: var(--text);
  line-height: 1.6;
}

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

.container {
  width: min(1100px, 92vw);
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(15, 18, 38, 0.8);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 600;
}

.logo-mark {
  font-family: "Playfair Display", serif;
  font-size: 1.3rem;
  background: linear-gradient(120deg, var(--accent), var(--accent-2));
  color: #111;
  padding: 0.4rem 0.6rem;
  border-radius: 0.6rem;
}

.logo-text {
  letter-spacing: 0.08rem;
  font-size: 0.9rem;
  text-transform: uppercase;
  color: var(--muted);
}

.nav {
  display: flex;
  gap: 1.5rem;
  font-size: 0.95rem;
}

.nav a {
  color: var(--muted);
  transition: color 0.2s ease;
}

.nav a:hover,
.nav a.active {
  color: var(--text);
}

.nav .cta {
  color: var(--text);
  padding: 0.5rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.menu-button {
  display: none;
  background: var(--glass);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--text);
  padding: 0.5rem 1rem;
  border-radius: 999px;
  font-size: 0.9rem;
}

.hero {
  position: relative;
  padding: 6rem 0 4rem;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
  align-items: center;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2rem;
  color: var(--accent-2);
  font-size: 0.8rem;
  margin-bottom: 1rem;
}

.hero h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.5rem, 4vw, 3.6rem);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.lead {
  color: var(--muted);
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.button {
  padding: 0.8rem 1.8rem;
  border-radius: 999px;
  border: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

.button.primary {
  background: linear-gradient(120deg, var(--accent), #ff9b8f);
  color: #111;
  box-shadow: var(--shadow);
}

.button.ghost {
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--text);
  background: transparent;
}

.hero-highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
}

.hero-highlights strong {
  display: block;
  font-size: 1.2rem;
}

.hero-highlights span {
  color: var(--muted);
  font-size: 0.9rem;
}

.hero-card {
  display: flex;
  justify-content: center;
}

.glass-card {
  background: var(--card);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
}

.glass-card h2 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.glass-card ul {
  list-style: none;
  display: grid;
  gap: 0.75rem;
  color: var(--muted);
  margin-bottom: 1.5rem;
}

.card-footer {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--accent-2);
}

.hero-shapes .shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(0px);
  opacity: 0.6;
}

.shape-one {
  width: 220px;
  height: 220px;
  background: linear-gradient(140deg, var(--accent), transparent);
  top: 30px;
  right: 10%;
}

.shape-two {
  width: 140px;
  height: 140px;
  background: linear-gradient(140deg, var(--accent-2), transparent);
  bottom: 30px;
  left: 15%;
}

.shape-three {
  width: 90px;
  height: 90px;
  background: linear-gradient(140deg, #ffd07b, transparent);
  top: 55%;
  right: 30%;
}

.section {
  padding: 5rem 0;
}

.section.dark {
  background: var(--bg-soft);
}

.section-title {
  margin-bottom: 2.5rem;
}

.section-title p {
  color: var(--accent-2);
  text-transform: uppercase;
  letter-spacing: 0.2rem;
  font-size: 0.8rem;
  margin-bottom: 0.5rem;
}

.section-title h2 {
  font-size: clamp(2rem, 3vw, 2.6rem);
  font-family: "Playfair Display", serif;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.5rem;
}

.feature-card {
  background: var(--card);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 1rem;
  padding: 1.8rem;
  box-shadow: var(--shadow);
}

.feature-card h3 {
  margin-bottom: 0.6rem;
}

.feature-card p {
  color: var(--muted);
}

.timeline {
  display: grid;
  gap: 1.5rem;
}

.timeline-item {
  padding: 1.5rem;
  border-radius: 1rem;
  background: rgba(15, 18, 38, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.timeline-item h3 {
  margin-bottom: 0.5rem;
}

.timeline-item p {
  color: var(--muted);
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 1.5rem;
}

.step {
  background: var(--card);
  border-radius: 1rem;
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.step span {
  display: inline-block;
  font-size: 1.4rem;
  color: var(--accent-2);
  margin-bottom: 0.6rem;
}

.about {
  background: linear-gradient(120deg, rgba(91, 209, 215, 0.08), rgba(242, 92, 120, 0.08));
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.about-grid p {
  color: var(--muted);
  margin-bottom: 1rem;
}

.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1rem;
}

.stat {
  background: var(--card);
  border-radius: 1rem;
  padding: 1.2rem;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.stat strong {
  font-size: 1.6rem;
  display: block;
  margin-bottom: 0.4rem;
}

.stat span {
  color: var(--muted);
  font-size: 0.9rem;
}

.contact {
  background: var(--bg-soft);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.contact-card {
  background: var(--card);
  border-radius: 1rem;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.contact-card ul {
  list-style: none;
  display: grid;
  gap: 0.8rem;
  color: var(--muted);
  margin-top: 1rem;
}

.contact-form {
  display: grid;
  gap: 1rem;
}

label {
  display: grid;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--muted);
}

input,
textarea {
  border-radius: 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(15, 18, 38, 0.6);
  padding: 0.8rem 1rem;
  color: var(--text);
  font-family: inherit;
}

.form-note {
  color: var(--muted);
  margin-top: 1rem;
}

.footer {
  padding: 2.5rem 0 3rem;
  text-align: center;
  color: var(--muted);
  font-size: 0.9rem;
}

@media (max-width: 900px) {
  .nav {
    display: none;
    position: absolute;
    top: 70px;
    right: 4vw;
    flex-direction: column;
    background: rgba(15, 18, 38, 0.95);
    padding: 1.2rem;
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
  }

  .nav.open {
    display: flex;
  }

  .menu-button {
    display: inline-flex;
  }
}

@media (max-width: 600px) {
  .hero {
    padding-top: 4rem;
  }

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

  .card-footer {
    flex-direction: column;
    gap: 0.5rem;
  }
}
