:root {
  --bg: #050509;
  --bg-elevated: #0c0c16;
  --bg-alt: #0b1020;
  --border-subtle: rgba(148, 163, 184, 0.3);
  --border-soft: rgba(148, 163, 184, 0.18);
  --text: #f9fafb;
  --text-muted: #9ca3af;
  --accent-1: #6366f1;
  --accent-2: #ec4899;
  --accent-3: #22c55e;
  --radius-lg: 20px;
  --radius-md: 14px;
  --radius-pill: 999px;
  --shadow-soft: 0 22px 55px rgba(15, 23, 42, 0.85);
}

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

html,
body {
  height: 100%;
}

body {
  font-family: "Space Grotesk", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(circle at top, #020617 0, #020617 35%, #020617 40%, #020617 100%),
    radial-gradient(circle at 10% -10%, rgba(99, 102, 241, 0.5), transparent 55%),
    radial-gradient(circle at 90% -10%, rgba(236, 72, 153, 0.4), transparent 55%),
    #020617;
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
}

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

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

button,
input,
textarea {
  font-family: inherit;
}

.page {
  max-width: 1120px;
  margin: 0 auto;
  padding: 1.5rem 1.5rem 3.5rem;
  position: relative;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 1.25rem;
  margin: 0 -1.5rem 1.5rem;
  background: linear-gradient(to bottom, rgba(15, 23, 42, 0.96), rgba(15, 23, 42, 0.8), transparent);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(148, 163, 184, 0.3);
}

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

.logo-mark {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at 10% 0, rgba(236, 72, 153, 0.9), transparent 60%),
    radial-gradient(circle at 90% 100%, rgba(99, 102, 241, 0.9), transparent 60%);
  box-shadow: 0 0 28px rgba(236, 72, 153, 0.5);
  color: #e5e7eb;
  font-size: 0.8rem;
}

.logo-text {
  font-weight: 600;
  letter-spacing: 0.06em;
  font-size: 0.95rem;
  text-transform: uppercase;
}

.logo-text span:last-child {
  margin-left: 0.25rem;
  padding: 0.1rem 0.45rem;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(99, 102, 241, 0.2), rgba(236, 72, 153, 0.25));
  border: 1px solid rgba(129, 140, 248, 0.4);
  font-size: 0.75rem;
}

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

.site-nav a {
  position: relative;
  color: var(--text-muted);
  transition: color 0.18s ease;
}

.site-nav a::after {
  content: "";
  position: absolute;
  inset-inline: 0;
  bottom: -0.35rem;
  height: 1px;
  transform: scaleX(0);
  transform-origin: center;
  background: linear-gradient(90deg, var(--accent-1), var(--accent-2));
  transition: transform 0.18s ease;
}

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

.site-nav a:hover::after {
  transform: scaleX(1);
}

.nav-cta {
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(129, 140, 248, 0.7);
  background: radial-gradient(circle at 0 0, rgba(236, 72, 153, 0.55), transparent 70%),
    radial-gradient(circle at 100% 100%, rgba(56, 189, 248, 0.4), transparent 70%),
    rgba(15, 23, 42, 0.8);
  color: #f9fafb;
  font-size: 0.8rem;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 2.4rem;
  padding: 1.4rem 1.25rem 2.5rem;
  margin: 0 -1.25rem 1.5rem;
}

.hero-bg-orbit {
  position: absolute;
  border-radius: 999px;
  filter: blur(32px);
  opacity: 0.8;
  z-index: -1;
}

.orbit-1 {
  width: 420px;
  height: 420px;
  top: -90px;
  left: -40px;
  background: radial-gradient(circle at 10% 0, rgba(236, 72, 153, 0.6), transparent 60%);
}

.orbit-2 {
  width: 520px;
  height: 520px;
  top: -120px;
  right: -120px;
  background: radial-gradient(circle at 90% 10%, rgba(59, 130, 246, 0.7), transparent 60%);
}

.hero-content {
  align-self: center;
  max-width: 100%;
}

.eyebrow {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(148, 163, 184, 0.9);
  margin-bottom: 0.6rem;
}

.hero h1 {
  font-size: clamp(2.35rem, 3.1vw, 3.1rem);
  line-height: 1.12;
  margin-bottom: 0.9rem;
  letter-spacing: -0.03em;
  background: linear-gradient(120deg, #e5e7eb, #f9fafb 35%, #a5b4fc 70%, #f472b6 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-subtitle {
  font-size: 0.98rem;
  color: var(--text-muted);
  max-width: 34rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin: 1.45rem 0 1.3rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.2rem;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: transform 0.12s ease, box-shadow 0.12s ease, background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

.btn.primary {
  background: linear-gradient(120deg, var(--accent-1), var(--accent-2));
  border-color: rgba(129, 140, 248, 0.9);
  box-shadow: 0 18px 50px rgba(67, 56, 202, 0.8);
  color: #fdf2f8;
}

.btn.ghost {
  background: linear-gradient(120deg, rgba(15, 23, 42, 0.95), rgba(15, 23, 42, 0.9));
  border-color: rgba(148, 163, 184, 0.45);
  color: #e5e7eb;
}

.btn.full-width {
  width: 100%;
}

.btn:hover {
  transform: translateY(-1px) scale(1.01);
  box-shadow: 0 20px 55px rgba(15, 23, 42, 0.95);
}

.hero-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
  padding-top: 0.6rem;
}

.meta-label {
  display: block;
  font-size: 0.7rem;
  color: rgba(148, 163, 184, 0.9);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  margin-bottom: 0.25rem;
}

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

.hero-panel {
  align-self: stretch;
  display: flex;
}

.panel-card {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  background: radial-gradient(circle at 0 0, rgba(99, 102, 241, 0.16), transparent 60%),
    radial-gradient(circle at 100% 100%, rgba(236, 72, 153, 0.16), transparent 60%),
    rgba(15, 23, 42, 0.98);
  box-shadow: var(--shadow-soft);
  padding: 1.1rem 1rem 1rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.status-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 0, #a3e635, #22c55e);
  box-shadow: 0 0 14px rgba(22, 163, 74, 0.9);
}

.status-pill {
  padding: 0.2rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.55);
  background: rgba(15, 23, 42, 0.9);
  color: #e5e7eb;
}

.panel-body {
  padding: 0.85rem 0.65rem 0.75rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(148, 163, 184, 0.35);
  background: radial-gradient(circle at 10% 0, rgba(30, 64, 175, 0.5), transparent 60%),
    linear-gradient(135deg, rgba(15, 23, 42, 0.96), rgba(15, 23, 42, 0.93));
}

.flow-step {
  padding: 0.45rem 0.5rem;
  border-radius: 0.85rem;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.35);
}

.flow-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
}

.flow-desc {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.flow-arrow {
  height: 18px;
  border-left: 1px dashed rgba(148, 163, 184, 0.6);
  margin: 0.2rem 0.9rem;
}

.panel-footer {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.6rem;
  padding-top: 0.3rem;
}

.metric-value {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
}

.metric-label {
  font-size: 0.72rem;
  color: var(--text-muted);
}

.section {
  padding: 2.2rem 0 0;
}

.section-alt {
  margin-top: 1.4rem;
  padding: 2.3rem 1.3rem 2.2rem;
  margin-inline: -1.3rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-soft);
  background: radial-gradient(circle at top, rgba(15, 23, 42, 0.6), transparent 60%),
    linear-gradient(120deg, rgba(15, 23, 42, 0.96), rgba(15, 23, 42, 0.96));
}

.section-heading {
  max-width: 620px;
  margin-bottom: 1.8rem;
}

.section-heading h2 {
  font-size: 1.7rem;
  margin-bottom: 0.4rem;
  letter-spacing: -0.02em;
}

.section-subtitle {
  font-size: 0.92rem;
  color: var(--text-muted);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
}

.card {
  padding: 1.1rem 1rem 1rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-soft);
  background: radial-gradient(circle at 0 0, rgba(56, 189, 248, 0.18), transparent 60%),
    linear-gradient(145deg, rgba(15, 23, 42, 0.98), rgba(15, 23, 42, 0.96));
  box-shadow: 0 16px 45px rgba(15, 23, 42, 0.9);
}

.card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
}

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

.card-list {
  list-style: none;
  font-size: 0.85rem;
  color: #e5e7eb;
}

.card-list li + li {
  margin-top: 0.25rem;
}

.workflow-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}

.workflow {
  padding: 1rem 0.95rem 0.95rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-soft);
  background: linear-gradient(140deg, rgba(15, 23, 42, 0.98), rgba(15, 23, 42, 0.96));
}

.workflow h3 {
  font-size: 1rem;
  margin-bottom: 0.3rem;
}

.workflow-tagline {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 0.6rem;
}

.workflow-steps {
  list-style: none;
  font-size: 0.85rem;
  color: #e5e7eb;
}

.workflow-steps li + li {
  margin-top: 0.35rem;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.timeline-step {
  padding: 1rem 0.95rem 0.95rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-soft);
  background: radial-gradient(circle at 0 0, rgba(236, 72, 153, 0.18), transparent 60%),
    linear-gradient(140deg, rgba(15, 23, 42, 0.98), rgba(15, 23, 42, 0.96));
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.6rem;
  height: 1.6rem;
  border-radius: 999px;
  background: linear-gradient(130deg, rgba(99, 102, 241, 0.9), rgba(236, 72, 153, 0.9));
  font-size: 0.78rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.timeline-step h3 {
  font-size: 0.96rem;
  margin-bottom: 0.3rem;
}

.timeline-step p {
  font-size: 0.86rem;
  color: var(--text-muted);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.faq-item {
  border-radius: 1rem;
  border: 1px solid rgba(148, 163, 184, 0.5);
  background: rgba(15, 23, 42, 0.9);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 0.85rem 0.95rem;
  background: transparent;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
  color: inherit;
  cursor: pointer;
}

.faq-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.7);
  font-size: 0.9rem;
}

.faq-answer {
  padding: 0 0.95rem 0.8rem;
  font-size: 0.86rem;
  color: var(--text-muted);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.28s ease;
}

.faq-item.open .faq-answer {
  max-height: 240px;
}

.faq-item.open .faq-toggle {
  transform: rotate(45deg);
}

.section-contact {
  margin-top: 1.8rem;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 1.2rem;
}

.contact-form {
  padding: 1.05rem 1rem 1.1rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-soft);
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.98), rgba(15, 23, 42, 0.96));
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.9);
}

.field-row {
  display: flex;
  gap: 0.8rem;
}

.field {
  flex: 1;
  margin-bottom: 0.8rem;
}

.field label {
  display: block;
  font-size: 0.78rem;
  color: rgba(148, 163, 184, 0.95);
  margin-bottom: 0.25rem;
}

.field input,
.field textarea {
  width: 100%;
  padding: 0.55rem 0.7rem;
  border-radius: 0.7rem;
  border: 1px solid rgba(31, 41, 55, 0.9);
  background: rgba(15, 23, 42, 0.9);
  color: var(--text);
  font-size: 0.86rem;
  outline: none;
}

.field input:focus,
.field textarea:focus {
  border-color: rgba(129, 140, 248, 0.9);
  box-shadow: 0 0 0 1px rgba(129, 140, 248, 0.8);
}

.field textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-aside {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.contact-meta {
  padding: 0.9rem 0.9rem 0.9rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-soft);
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.97), rgba(15, 23, 42, 0.96));
}

.contact-meta.secondary {
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.97), rgba(17, 24, 39, 0.98));
}

.contact-meta h3 {
  font-size: 0.98rem;
  margin-bottom: 0.4rem;
}

.contact-meta p {
  font-size: 0.86rem;
  color: var(--text-muted);
  margin-bottom: 0.6rem;
}

.contact-list {
  list-style: none;
  font-size: 0.86rem;
  color: #e5e7eb;
}

.contact-list li + li {
  margin-top: 0.25rem;
}

.site-footer {
  margin-top: 3rem;
  border-top: 1px solid rgba(15, 23, 42, 1);
  padding-top: 1.6rem;
}

.footer-main {
  display: flex;
  justify-content: space-between;
  gap: 1.8rem;
  margin-bottom: 1.2rem;
}

.footer-brand {
  max-width: 320px;
}

.footer-brand p {
  margin-top: 0.4rem;
  font-size: 0.86rem;
  color: var(--text-muted);
}

.footer-links {
  display: flex;
  gap: 2.2rem;
  font-size: 0.84rem;
}

.footer-links a {
  display: block;
  margin-top: 0.25rem;
  color: var(--text-muted);
}

.footer-label {
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(148, 163, 184, 0.9);
}

.footer-bottom {
  font-size: 0.78rem;
  color: var(--text-muted);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

[data-reveal].visible {
  opacity: 1;
  transform: translateY(0);
}

.card.visible,
.workflow.visible,
.timeline-step.visible,
.panel-card.visible,
.contact-form.visible,
.contact-meta.visible {
  border-color: rgba(129, 140, 248, 0.75);
}

:focus-visible {
  outline: 2px solid rgba(129, 140, 248, 0.9);
  outline-offset: 2px;
}

@media (max-width: 960px) {
  .site-header {
    gap: 0.9rem;
  }

  .site-nav {
    gap: 1rem;
    font-size: 0.8rem;
  }

  .hero {
    grid-template-columns: minmax(0, 1fr);
    margin-top: 0.3rem;
  }

  .hero-panel {
    order: -1;
  }

  .panel-card {
    max-width: 420px;
    margin-inline: auto;
  }

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

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

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

@media (max-width: 720px) {
  .page {
    padding-inline: 1.1rem;
  }

  .site-header {
    padding-inline: 1.1rem;
  }

  .site-nav {
    display: none;
  }

  .hero {
    padding-inline: 0.3rem;
    margin-inline: -0.3rem;
  }

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

  .section-alt {
    margin-inline: -1.1rem;
  }

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

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

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

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

  .field-row {
    flex-direction: column;
  }

  .footer-main {
    flex-direction: column;
  }

  .footer-links {
    gap: 1.8rem;
  }
}
