:root {
  color-scheme: light;
  --bg: #F8FAFC;
  --bg-2: #f8f5f8;
  --surface: #ffffff;
  --surface-strong: #f8f5f8;
  --text: #1a1c1e;
  --muted: #475569;
  --primary: #e38ffd;
  --primary-strong: #d774fb;
  --border: #E2E8F0;
  --shadow: 0 20px 45px rgba(15, 23, 42, 0.08);
}

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

body {
  font-family: "Manrope", system-ui, -apple-system, sans-serif;
  background: radial-gradient(900px 500px at 15% -10%, rgba(227, 143, 253, 0.12), transparent 60%),
    radial-gradient(800px 420px at 85% -20%, rgba(227, 143, 253, 0.08), transparent 60%),
    var(--bg);
  color: var(--text);
  min-height: 100vh;
}

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

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid var(--border);
  background: rgba(248, 250, 252, 0.85);
  backdrop-filter: blur(16px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  gap: 20px;
}

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

.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: var(--surface);
  display: grid;
  place-items: center;
  color: var(--primary);
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand-text span:first-child {
  font-weight: 700;
  letter-spacing: 0.02em;
}

.brand-text span:last-child {
  font-size: 12px;
  color: var(--muted);
}

.nav {
  display: flex;
  gap: 32px;
  font-size: 14px;
  color: var(--muted);
}

.nav a {
  transition: color 0.2s ease;
}

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

.header-actions {
  display: flex;
  gap: 12px;
  align-items: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border 0.2s ease;
}

.button.primary {
  background: var(--primary);
  color: #03121d;
  box-shadow: 0 14px 40px rgba(227, 143, 253, 0.35);
}

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

.button.ghost {
  border-color: var(--border);
  color: var(--text);
}

.hero {
  padding: 80px 0 40px;
}

.hero-grid {
  display: grid;
  gap: 48px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 8px 18px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--muted);
  background: rgba(227, 143, 253, 0.12);
}

.hero-title {
  font-size: clamp(36px, 4vw, 60px);
  font-weight: 700;
  line-height: 1.1;
  margin-top: 20px;
}

.hero-text {
  margin-top: 22px;
  font-size: 17px;
  color: var(--muted);
  max-width: 560px;
}

.hero-actions {
  margin-top: 28px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.hero-card {
  background: var(--surface);
  border-radius: 24px;
  border: 1px solid var(--border);
  padding: 28px;
  box-shadow: var(--shadow);
}

.hero-card h4 {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: var(--muted);
}

.hero-metric {
  margin-top: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
  color: var(--muted);
}

.hero-metric strong {
  color: var(--text);
  font-size: 20px;
}

.search {
  margin-top: 24px;
  position: relative;
}

.search-input {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 14px 16px;
  box-shadow: var(--shadow);
}

.search-input input {
  flex: 1;
  background: transparent;
  border: none;
  color: var(--text);
  font-size: 16px;
  outline: none;
}

.search-panel {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 10px);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 10px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.search-panel[hidden] {
  display: none;
}

.search-status {
  padding: 10px 14px;
  color: var(--muted);
  font-size: 14px;
}

.search-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
  max-height: 260px;
  overflow-y: auto;
}

.search-item {
  width: 100%;
  text-align: left;
  padding: 12px 14px;
  border-radius: 14px;
  background: transparent;
  border: 1px solid transparent;
  color: var(--text);
  transition: background 0.2s ease, border 0.2s ease;
  cursor: pointer;
}

.search-item span {
  display: block;
  font-size: 12px;
  color: var(--muted);
  margin-top: 4px;
}

.search-item.active {
  background: rgba(227, 143, 253, 0.12);
  border-color: rgba(227, 143, 253, 0.4);
}

.section {
  padding: 70px 0;
}

.section-title {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 12px;
}

.section-subtitle {
  color: var(--muted);
  max-width: 620px;
  font-size: 16px;
}

.card-grid {
  margin-top: 32px;
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}

.value-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 24px;
  box-shadow: var(--shadow);
}

.value-card h3 {
  margin-top: 16px;
  font-size: 18px;
}

.value-card p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 14px;
}

.icon-pill {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  border: 1px solid var(--border);
  display: grid;
  place-items: center;
  color: var(--primary);
}

.industry {
  background: var(--surface-strong);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.industry-tags {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.industry-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  font-size: 14px;
}

.cta {
  position: relative;
  overflow: hidden;
  border-radius: 32px;
  border: 1px solid rgba(227, 143, 253, 0.35);
  background: linear-gradient(135deg, rgba(227, 143, 253, 0.22), rgba(248, 250, 252, 0.95));
  padding: 48px;
}

.cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.35) 1px, transparent 1px);
  background-size: 24px 24px;
  opacity: 0.15;
}

.cta-content {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
}

.cta h3 {
  font-size: 32px;
  font-weight: 700;
  max-width: 520px;
}

.cta p {
  margin-top: 12px;
  color: var(--text);
  opacity: 0.8;
  max-width: 520px;
}

.footer {
  border-top: 1px solid var(--border);
  padding: 30px 0 50px;
  color: var(--muted);
  font-size: 14px;
}

@media (min-width: 960px) {
  .hero-grid {
    grid-template-columns: 1.1fr 0.9fr;
  }
}

@media (max-width: 720px) {
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav {
    flex-wrap: wrap;
  }

  .cta {
    padding: 32px 24px;
  }

  .cta h3 {
    font-size: 26px;
  }
}
