:root {
  --bg: #050816;
  --bg-alt: #070b1f;
  --accent: #4f46e5;
  --accent-soft: rgba(79, 70, 229, 0.12);
  --accent-strong: rgba(129, 140, 248, 0.18);
  --text: #e5e7eb;
  --muted: #9ca3af;
  --border-subtle: rgba(148, 163, 184, 0.25);
  --surface: rgba(15, 23, 42, 0.85);
  --radius-lg: 18px;
  --radius-xl: 26px;
  --shadow-soft: 0 18px 45px rgba(15, 23, 42, 0.7);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background:
    radial-gradient(circle at top left, rgba(79, 70, 229, 0.28), transparent 55%),
    radial-gradient(circle at bottom right, rgba(236, 72, 153, 0.22), transparent 55%),
    radial-gradient(circle at top right, rgba(14, 165, 233, 0.16), transparent 50%),
    var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
}

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

img {
  max-width: 100%;
  display: block;
}

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: linear-gradient(to bottom, rgba(5, 8, 22, 0.96), rgba(5, 8, 22, 0.75));
  border-bottom: 1px solid rgba(148, 163, 184, 0.22);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 0;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

.logo-image {
  height: 32px;
  width: auto;
  display: block;
}

.logo-mark {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: conic-gradient(from 180deg, #4f46e5, #06b6d4, #ec4899, #4f46e5);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
  box-shadow: 0 0 0 1px rgba(15, 23, 42, 0.9), 0 14px 30px rgba(15, 23, 42, 0.9);
}

.logo-text {
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 0.83rem;
  color: var(--muted);
}

.nav {
  display: flex;
  gap: 1.4rem;
  align-items: center;
  font-size: 0.9rem;
}

.nav a {
  color: var(--muted);
  padding: 0.4rem 0;
  position: relative;
  transition: color 0.18s ease;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(to right, #4f46e5, #06b6d4);
  transition: width 0.18s ease;
}

.nav a:hover {
  color: #f3f4f6;
}

.nav a:hover::after {
  width: 100%;
}

.nav-cta {
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(129, 140, 248, 0.7);
  background: radial-gradient(circle at top left, rgba(79, 70, 229, 0.25), rgba(15, 23, 42, 0.9));
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.85);
}

.hero {
  padding: 3.5rem 0 3rem;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 3rem;
  align-items: center;
}

.eyebrow {
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #a5b4fc;
  margin-bottom: 0.9rem;
}

h1 {
  font-size: clamp(2.2rem, 4vw, 3.1rem);
  line-height: 1.1;
  margin: 0 0 1.1rem;
}

.hero-text {
  margin: 0 0 1.6rem;
  color: var(--muted);
  max-width: 34rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 1.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.75rem 1.4rem;
  font-size: 0.92rem;
  font-weight: 500;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.12s ease, box-shadow 0.12s ease, background 0.12s ease, border-color 0.12s ease;
}

.btn-primary {
  background: linear-gradient(135deg, #4f46e5, #06b6d4);
  color: #f9fafb;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.9);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 22px 50px rgba(15, 23, 42, 1);
}

.btn-ghost {
  background: rgba(15, 23, 42, 0.85);
  border-color: rgba(148, 163, 184, 0.5);
  color: var(--muted);
}

.btn-ghost:hover {
  background: rgba(15, 23, 42, 1);
  color: #e5e7eb;
}

.btn-full {
  width: 100%;
  justify-content: center;
}

.hero-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  max-width: 24rem;
}

.meta-label {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #6b7280;
  margin-bottom: 0.15rem;
}

.meta-value {
  font-size: 0.9rem;
  color: #e5e7eb;
}

.hero-card {
  border-radius: 26px;
  padding: 1.5rem 1.6rem;
  background:
    radial-gradient(circle at top left, rgba(79, 70, 229, 0.35), transparent 60%),
    radial-gradient(circle at bottom right, rgba(14, 165, 233, 0.3), transparent 60%),
    rgba(12, 10, 54, 0.9);
  border: 1px solid rgba(129, 140, 248, 0.7);
  box-shadow: var(--shadow-soft);
}

.hero-card-image {
  border-radius: 18px;
  overflow: hidden;
  margin: -0.2rem -0.1rem 1rem;
  border: 1px solid rgba(148, 163, 184, 0.5);
}

.hero-card-image img {
  width: 100%;
  height: auto;
  display: block;
}

.hero-card-title {
  font-weight: 600;
  margin: 0 0 0.9rem;
}

.hero-card-list {
  list-style: none;
  margin: 0 0 0.9rem;
  padding: 0;
  font-size: 0.9rem;
  color: var(--muted);
}

.hero-card-list li {
  position: relative;
  padding-left: 1rem;
  margin-bottom: 0.25rem;
}

.hero-card-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(135deg, #4f46e5, #06b6d4);
}

.hero-card-note {
  font-size: 0.82rem;
  color: var(--muted);
}

.section {
  padding: 3.2rem 0;
}

.section-alt {
  background: radial-gradient(circle at top, rgba(15, 23, 42, 0.9), rgba(5, 8, 22, 0.98));
}

.section-accent {
  background:
    radial-gradient(circle at top left, rgba(79, 70, 229, 0.35), transparent 55%),
    radial-gradient(circle at bottom right, rgba(14, 165, 233, 0.28), transparent 60%),
    rgba(8, 11, 32, 0.98);
}

.section h2 {
  font-size: 1.7rem;
  margin-top: 0;
  margin-bottom: 0.5rem;
}

.section-intro {
  margin: 0 0 1.9rem;
  color: var(--muted);
  max-width: 34rem;
}

.grid {
  display: grid;
  gap: 1.4rem;
}

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

.card {
  background: rgba(10, 16, 40, 0.98);
  border-radius: var(--radius-lg);
  padding: 1.4rem 1.5rem;
  border: 1px solid var(--border-subtle);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.9);
}

.card h3 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-size: 1.02rem;
}

.card p {
  margin-top: 0;
  margin-bottom: 0.7rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.card-list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.9rem;
  color: #d1d5db;
}

.card-list li {
  position: relative;
  padding-left: 0.95rem;
  margin-bottom: 0.3rem;
}

.card-list li::before {
  content: "–";
  position: absolute;
  left: 0;
  color: #6b7280;
}

.timeline {
  border-radius: var(--radius-xl);
  padding: 1.7rem 1.6rem;
  background: rgba(8, 12, 34, 0.95);
  border: 1px solid rgba(79, 70, 229, 0.45);
  display: grid;
  gap: 1rem;
}

.timeline-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.9rem 1.3rem;
  align-items: flex-start;
}

.timeline-step {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 600;
  background: var(--accent-soft);
  border: 1px solid rgba(129, 140, 248, 0.85);
  color: #c7d2fe;
  margin-top: 0.12rem;
}

.timeline h3 {
  margin: 0 0 0.25rem;
  font-size: 1rem;
}

.timeline p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1.1fr);
  gap: 2rem;
  align-items: stretch;
}

.about-grid p {
  color: var(--muted);
}

.about-highlight {
  border-radius: var(--radius-xl);
  padding: 1.5rem 1.6rem;
  background:
    linear-gradient(145deg, rgba(15, 23, 42, 0.95), rgba(15, 23, 42, 0.98)),
    var(--accent-strong);
  border: 1px solid rgba(148, 163, 184, 0.5);
  box-shadow: var(--shadow-soft);
}

.about-title {
  font-weight: 600;
  margin-top: 0;
  margin-bottom: 0.6rem;
}

.about-highlight ul {
  margin: 0;
  padding-left: 1.1rem;
  font-size: 0.92rem;
  color: #d1d5db;
}

.about-highlight li {
  margin-bottom: 0.3rem;
}

.contact-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 2.4rem;
  align-items: flex-start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.contact-details {
  list-style: none;
  padding: 0;
  margin: 1.1rem 0 0;
  font-size: 0.9rem;
  color: #e5e7eb;
}

.contact-details li {
  margin-bottom: 0.4rem;
}

.contact-details span {
  color: var(--muted);
  margin-right: 0.5rem;
}

.contact-details a {
  text-decoration: underline;
  text-decoration-color: rgba(148, 163, 184, 0.7);
  text-underline-offset: 2px;
}

.contact-form {
  background: rgba(7, 11, 34, 0.98);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.55rem 1.4rem;
  border: 1px solid rgba(129, 140, 248, 0.6);
  box-shadow: var(--shadow-soft);
  display: grid;
  gap: 0.9rem;
}

.contact-form label {
  font-size: 0.82rem;
  color: var(--muted);
  display: grid;
  gap: 0.25rem;
}

.contact-form input,
.contact-form textarea {
  border-radius: 12px;
  border: 1px solid rgba(31, 41, 55, 0.9);
  padding: 0.55rem 0.8rem;
  background: rgba(15, 23, 42, 0.98);
  color: var(--text);
  font-family: inherit;
  font-size: 0.88rem;
  outline: none;
  transition: border-color 0.12s ease, box-shadow 0.12s ease, background 0.12s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(129, 140, 248, 0.9);
  box-shadow: 0 0 0 1px rgba(79, 70, 229, 0.5);
  background: rgba(15, 23, 42, 1);
}

.contact-note {
  margin: 0;
  font-size: 0.8rem;
  color: var(--muted);
}

.contact-person {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.9rem 1rem;
  border-radius: 14px;
  background: rgba(15, 23, 42, 0.85);
  border: 1px solid rgba(148, 163, 184, 0.35);
}

.contact-person-photo {
  width: 72px;
  height: 72px;
  border-radius: 999px;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.6);
}

.contact-person-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-person-text {
  font-size: 0.9rem;
}

.contact-person-name {
  margin: 0;
  font-weight: 600;
}

.contact-person-role {
  margin: 0.1rem 0 0.25rem;
  color: var(--muted);
}

.contact-person-phone {
  margin: 0;
}

.contact-person-phone a {
  text-decoration: underline;
  text-decoration-color: rgba(148, 163, 184, 0.8);
  text-underline-offset: 2px;
}

.site-footer {
  border-top: 1px solid rgba(31, 41, 55, 0.8);
  background: radial-gradient(circle at top, rgba(15, 23, 42, 0.98), rgba(5, 8, 22, 1));
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 0;
  font-size: 0.82rem;
  color: #6b7280;
}

.footer-secondary {
  color: #4b5563;
}

@media (max-width: 960px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-card {
    order: -1;
  }

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

  .about-grid,
  .contact-inner {
    grid-template-columns: minmax(0, 1fr);
  }
}

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

  .nav {
    width: 100%;
    justify-content: space-between;
  }

  .hero {
    padding-top: 2.4rem;
  }

  .section {
    padding: 2.5rem 0;
  }

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

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.2rem;
  }
}
