:root {
  --bg: #020617;
  --panel: rgba(15, 23, 42, 0.72);
  --panel-strong: rgba(15, 23, 42, 0.92);
  --border: rgba(255, 255, 255, 0.1);
  --text: #e5eefc;
  --muted: #94a3b8;
  --accent: #22d3ee;
  --accent-2: #818cf8;
  --success: #34d399;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  --radius: 24px;
  --container: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top center, rgba(34, 211, 238, 0.12), transparent 28%),
    radial-gradient(circle at right 30%, rgba(129, 140, 248, 0.12), transparent 24%),
    radial-gradient(circle at left bottom, rgba(52, 211, 153, 0.12), transparent 22%),
    var(--bg);
  min-height: 100vh;
}

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

.container {
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
}

.section {
  margin-top: 28px;
}

.card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.hero {
  padding: 28px;
  margin-top: 24px;
}

.hero-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

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

.logo {
  width: 52px;
  height: 52px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: rgba(34, 211, 238, 0.12);
  border: 1px solid rgba(34, 211, 238, 0.24);
  color: var(--accent);
  font-weight: 800;
  letter-spacing: 0.08em;
}

.eyebrow {
  margin: 0 0 4px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: var(--muted);
}

.brand h1,
.hero h2,
.section h3,
.profile h3 {
  margin: 0;
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(52, 211, 153, 0.12);
  border: 1px solid rgba(52, 211, 153, 0.24);
  color: #bbf7d0;
  font-size: 14px;
}

.status::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--success);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.85fr;
  gap: 28px;
  align-items: stretch;
}

.label {
  margin: 0 0 14px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: var(--accent);
}

.hero h2 {
  font-size: clamp(36px, 6vw, 68px);
  line-height: 1.04;
  max-width: 820px;
}

.hero-copy {
  margin: 18px 0 0;
  max-width: 760px;
  color: #cbd5e1;
  font-size: 18px;
  line-height: 1.8;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 18px;
  border-radius: 18px;
  font-weight: 700;
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

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

.button-primary {
  background: var(--accent);
  color: #082f49;
}

.button-secondary {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  color: var(--text);
}

.highlights {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.highlight {
  padding: 18px;
  border-radius: 20px;
  border: 1px solid var(--border);
  background: rgba(15, 23, 42, 0.72);
}

.highlight strong {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  margin-bottom: 8px;
}

.highlight strong::before {
  content: "✓";
  color: var(--success);
}

.highlight p {
  margin: 0;
  color: #cbd5e1;
  line-height: 1.6;
  font-size: 14px;
}

.profile {
  padding: 26px;
  background: var(--panel-strong);
}

.profile h3,
.section h3 {
  font-size: 32px;
}

.profile-copy,
.section-copy {
  color: #cbd5e1;
  line-height: 1.75;
}

.profile-copy {
  margin-top: 10px;
  font-size: 15px;
}

.contact-box {
  margin-top: 22px;
  padding: 18px;
  border-radius: 20px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
}

.contact-line {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #dbeafe;
  margin: 10px 0;
  word-break: break-word;
}

.meta-grid,
.stats-grid,
.services,
.about-grid {
  display: grid;
  gap: 16px;
}

.meta-grid {
  grid-template-columns: repeat(2, 1fr);
  margin-top: 18px;
}

.meta-item,
.service,
.about-box {
  border: 1px solid var(--border);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
}

.meta-item {
  padding: 16px;
}

.meta-label {
  color: var(--muted);
  font-size: 14px;
}

.meta-value {
  margin-top: 6px;
  font-weight: 700;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 16px;
}

.section-head p,
.section-copy,
.muted {
  color: var(--muted);
}

.section-head p {
  margin: 10px 0 0;
}

.services {
  grid-template-columns: repeat(3, 1fr);
}

.service {
  padding: 24px;
}

.service-icon {
  width: 52px;
  height: 52px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: rgba(34, 211, 238, 0.12);
  border: 1px solid rgba(34, 211, 238, 0.2);
  color: var(--accent);
  font-size: 22px;
  margin-bottom: 16px;
}

.service h4 {
  margin: 0 0 10px;
  font-size: 22px;
}

.service p {
  margin: 0;
  color: #cbd5e1;
  line-height: 1.75;
}

.about-grid {
  grid-template-columns: 1fr 1.1fr;
}

.panel {
  padding: 26px;
}

.tags {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag {
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
  color: #dbeafe;
  font-size: 14px;
}

.about-box {
  padding: 18px;
}

.about-box strong {
  display: block;
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 6px;
}

.cta {
  padding: 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.cta p {
  margin: 14px 0 0;
  max-width: 760px;
  color: #cbd5e1;
  line-height: 1.75;
}

footer {
  padding: 28px 0 40px;
  color: var(--muted);
  font-size: 14px;
}

@media (max-width: 980px) {
  .hero-grid,
  .about-grid,
  .services {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 640px) {
  .hero,
  .panel,
  .profile,
  .service,
  .cta {
    padding: 20px;
  }

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

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

  .hero-copy {
    font-size: 16px;
  }

  .profile h3,
  .section h3 {
    font-size: 28px;
  }
}
