/* Basic reset */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  height: 100%;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Inter", "Segoe UI",
    sans-serif;
  background: radial-gradient(circle at top left, #0f172a 0, #020617 45%, #000 100%);
  color: #e5e7eb;
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

/* Layout */
.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

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

main,
section,
.hero,
.grid-3,
.process-steps,
.split,
.contact-grid,
.faq-grid {
  min-width: 0;
}

header {
  border-bottom: 1px solid rgba(148, 163, 184, 0.25);
  backdrop-filter: blur(14px);
  background: radial-gradient(circle at top, rgba(15, 23, 42, 0.95), rgba(2, 6, 23, 0.9));
  position: sticky;
  top: 0;
  z-index: 40;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-mark {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 0%, #22c55e, #0ea5e9 40%, #0f172a 80%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.logo-mark img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-title {
  font-weight: 600;
  letter-spacing: 0.04em;
}

.logo-sub {
  font-size: 0.75rem;
  color: #9ca3af;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  min-width: 0;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 0.7rem;
  border: 1px solid rgba(148, 163, 184, 0.6);
  background: rgba(15, 23, 42, 0.92);
  color: #e5e7eb;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.menu-toggle .bar {
  width: 18px;
  height: 2px;
  background: #e5e7eb;
  border-radius: 999px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-toggle .bar + .bar {
  margin-top: 4px;
}

.menu-toggle[aria-expanded="true"] .bar:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .bar:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] .bar:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.nav-link {
  font-size: 0.9rem;
  color: #e5e7eb;
  position: relative;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.35rem;
  width: 0;
  height: 1px;
  background: linear-gradient(to right, #22d3ee, #22c55e);
  transition: width 0.18s ease-out;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-cta {
  padding: 0.5rem 1rem;
  border-radius: 999px;
  background: linear-gradient(120deg, #22c55e, #0ea5e9);
  color: #0b1120;
  font-size: 0.9rem;
  font-weight: 600;
  box-shadow: 0 0 0 1px rgba(15, 23, 42, 0.7),
    0 18px 45px rgba(34, 197, 94, 0.35);
  transition: transform 0.12s ease-out, box-shadow 0.12s ease-out,
    filter 0.12s ease-out;
}

.nav-cta:hover {
  transform: translateY(-1px);
  filter: brightness(1.05);
  box-shadow: 0 0 0 1px rgba(15, 23, 42, 0.8),
    0 22px 55px rgba(34, 197, 94, 0.4);
}

/* Hero & common sections */
.hero {
  padding: 3.5rem 0 3rem;
  display: grid;
  grid-template-columns: minmax(0, 6fr) minmax(0, 5fr);
  gap: 3rem;
  align-items: center;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.15rem 0.6rem 0.15rem 0.15rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.35);
  box-shadow: 0 12px 40px rgba(15, 23, 42, 0.9);
  font-size: 0.75rem;
  color: #9ca3af;
  margin-bottom: 1.25rem;
  max-width: 100%;
  white-space: normal;
}

.kicker-dot {
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 0%, #22c55e, #22d3ee);
  box-shadow: 0 0 20px rgba(45, 212, 191, 0.95);
}

.hero-title {
  font-size: clamp(2.5rem, 4vw, 3.2rem);
  letter-spacing: -0.04em;
  margin-bottom: 0.85rem;
}

.hero-title span.accent {
  background: linear-gradient(135deg, #22c55e, #06b6d4, #38bdf8);
  -webkit-background-clip: text;
  color: transparent;
}

.hero-subtitle {
  color: #9ca3af;
  max-width: 32rem;
  font-size: 0.98rem;
}

.hero-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin: 1.8rem 0 0.6rem;
}

.metric {
  min-width: 130px;
}

.metric-label {
  font-size: 0.75rem;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 0.25rem;
}

.metric-value {
  font-size: 1.25rem;
  font-weight: 600;
}

.hero-actions {
  margin-top: 1.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.btn-primary {
  padding: 0.85rem 1.5rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  background: linear-gradient(135deg, #22c55e, #0ea5e9);
  color: #020617;
  font-weight: 600;
  font-size: 0.95rem;
  box-shadow: 0 0 0 1px rgba(15, 23, 42, 0.85),
    0 24px 60px rgba(34, 197, 94, 0.4);
  transition: transform 0.12s ease-out, box-shadow 0.12s ease-out,
    filter 0.12s ease-out;
  text-align: center;
}

.btn-primary:hover {
  transform: translateY(-1px);
  filter: brightness(1.05);
  box-shadow: 0 0 0 1px rgba(15, 23, 42, 0.9),
    0 30px 70px rgba(34, 197, 94, 0.5);
}

.btn-ghost {
  padding: 0.75rem 1.25rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.5);
  cursor: pointer;
  background: rgba(15, 23, 42, 0.8);
  color: #e5e7eb;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  text-align: center;
}

.btn-ghost span.pill {
  padding: 0.15rem 0.5rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.9);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #6b7280;
}

.hero-note {
  margin-top: 0.75rem;
  font-size: 0.78rem;
  color: #6b7280;
}

.hero-visual {
  position: relative;
}

.hero-card {
  border-radius: 1.75rem;
  padding: 1.75rem 1.5rem;
  background: radial-gradient(circle at 0% 0%, rgba(34, 197, 94, 0.22), transparent 52%),
    radial-gradient(circle at 100% 0%, rgba(34, 211, 238, 0.2), transparent 55%),
    rgba(15, 23, 42, 0.96);
  border: 1px solid rgba(148, 163, 184, 0.55);
  box-shadow: 0 24px 80px rgba(15, 23, 42, 0.95);
}

.hero-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}

.hero-card-title {
  font-size: 0.85rem;
  color: #9ca3af;
}

.hero-card-tag {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #a5b4fc;
}

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

.chip {
  padding: 0.65rem 0.75rem;
  border-radius: 0.9rem;
  background: rgba(15, 23, 42, 0.85);
  border: 1px solid rgba(148, 163, 184, 0.6);
  font-size: 0.78rem;
}

.chip span {
  display: block;
}

.chip-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #6b7280;
  margin-bottom: 0.15rem;
}

.chip-value {
  font-weight: 500;
}

.badge-inline {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.4rem;
  font-size: 0.72rem;
  color: #22c55e;
}

.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #22c55e;
  box-shadow: 0 0 12px rgba(34, 197, 94, 0.9);
}

.section {
  padding: 3rem 0;
}

.section-header {
  margin-bottom: 1.75rem;
}

.eyebrow {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #6b7280;
  margin-bottom: 0.45rem;
}

.section-title {
  font-size: 1.45rem;
  margin-bottom: 0.45rem;
}

.section-subtitle {
  font-size: 0.9rem;
  color: #9ca3af;
  max-width: 30rem;
}

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

.card {
  border-radius: 1.25rem;
  padding: 1.4rem 1.3rem;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.45);
  box-shadow: 0 18px 55px rgba(15, 23, 42, 0.9);
}

.card-title {
  font-size: 1rem;
  margin-bottom: 0.4rem;
}

.card-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.72rem;
  color: #a5b4fc;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 0.6rem;
}

.card-body {
  font-size: 0.9rem;
  color: #9ca3af;
}

.card-list {
  margin-top: 0.7rem;
  padding-left: 1rem;
  font-size: 0.86rem;
  color: #d1d5db;
}

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

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

.step {
  border-radius: 1rem;
  padding: 1.2rem 1.1rem;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.4);
  font-size: 0.9rem;
}

.step-count {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.95);
  border: 1px solid rgba(148, 163, 184, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: #9ca3af;
  margin-bottom: 0.5rem;
}

.step-title {
  font-weight: 500;
  margin-bottom: 0.25rem;
}

.step-text {
  font-size: 0.86rem;
  color: #9ca3af;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 6fr) minmax(0, 5fr);
  gap: 2.5rem;
}

.about-text {
  font-size: 0.92rem;
  color: #d1d5db;
}

.about-text p + p {
  margin-top: 0.7rem;
}

.about-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.6);
  margin-bottom: 0.85rem;
}

.about-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  margin-top: 1.1rem;
}

.about-meta-item span {
  display: block;
}

.about-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  color: #6b7280;
  margin-bottom: 0.1rem;
}

.about-value {
  font-size: 0.9rem;
}

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

.faq-item {
  border-radius: 0.9rem;
  padding: 0.9rem 0.95rem;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.35);
  font-size: 0.9rem;
}

.faq-q {
  font-weight: 500;
  margin-bottom: 0.2rem;
}

.faq-a {
  color: #9ca3af;
  font-size: 0.86rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 6fr) minmax(0, 5fr);
  gap: 2rem;
}

form {
  display: grid;
  gap: 1rem;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.field label {
  font-size: 0.85rem;
  color: #e5e7eb;
}

.field input,
.field textarea {
  background: rgba(15, 23, 42, 0.9);
  border-radius: 0.75rem;
  border: 1px solid rgba(148, 163, 184, 0.7);
  padding: 0.7rem 0.8rem;
  color: #e5e7eb;
  font-size: 0.9rem;
}

.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: #22c55e;
  box-shadow: 0 0 0 1px rgba(34, 197, 94, 0.7);
}

.field small {
  font-size: 0.75rem;
  color: #6b7280;
}

.helper {
  font-size: 0.82rem;
  color: #9ca3af;
}

.form-footer {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-top: 0.5rem;
}

.form-note {
  font-size: 0.78rem;
  color: #6b7280;
}

.success-message {
  display: none;
  margin-top: 0.8rem;
  font-size: 0.82rem;
  color: #22c55e;
}

.success-message.visible {
  display: block;
}

.error-message {
  display: none;
  margin-top: 0.8rem;
  font-size: 0.82rem;
  color: #fb7185;
}

.error-message.visible {
  display: block;
}

footer {
  margin-top: auto;
  border-top: 1px solid rgba(148, 163, 184, 0.3);
  padding: 1.5rem 0 1.75rem;
  font-size: 0.82rem;
  color: #6b7280;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.footer-links a {
  color: #9ca3af;
}

.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.15rem 0.6rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.5);
  font-size: 0.72rem;
}

/* Cookie banner */
.cookie-banner {
  position: fixed;
  inset-inline: 0;
  bottom: 0.75rem;
  display: flex;
  justify-content: center;
  z-index: 50;
  pointer-events: none;
}

.cookie-inner {
  max-width: 520px;
  width: 100%;
  margin: 0 1.25rem;
  padding: 0.75rem 0.85rem;
  border-radius: 0.9rem;
  background: rgba(15, 23, 42, 0.97);
  border: 1px solid rgba(148, 163, 184, 0.6);
  font-size: 0.8rem;
  color: #e5e7eb;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  pointer-events: auto;
  max-width: min(520px, calc(100vw - 2.5rem));
}

.cookie-text {
  flex: 1;
}

.cookie-actions {
  display: flex;
  gap: 0.5rem;
}

.cookie-btn {
  border-radius: 999px;
  padding: 0.4rem 0.8rem;
  border: none;
  font-size: 0.8rem;
  cursor: pointer;
}

.cookie-btn-primary {
  background: linear-gradient(135deg, #22c55e, #0ea5e9);
  color: #020617;
}

.cookie-btn-secondary {
  background: transparent;
  border: 1px solid rgba(148, 163, 184, 0.7);
  color: #e5e7eb;
}

.cookie-banner.hidden {
  display: none;
}

/* Utilities */
.text-muted {
  color: #9ca3af;
}

.text-soft {
  color: #6b7280;
}

.pill-compact {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  border-radius: 999px;
  padding: 0.15rem 0.55rem;
  border: 1px solid rgba(148, 163, 184, 0.5);
  font-size: 0.72rem;
}

.mt-1 {
  margin-top: 0.25rem;
}

.mt-2 {
  margin-top: 0.5rem;
}

.mt-3 {
  margin-top: 0.75rem;
}

.mt-4 {
  margin-top: 1rem;
}

.mb-1 {
  margin-bottom: 0.25rem;
}

.mb-2 {
  margin-bottom: 0.5rem;
}

.mb-3 {
  margin-bottom: 0.75rem;
}

.mb-4 {
  margin-bottom: 1rem;
}

.highlight {
  color: #22d3ee;
}

.inline-link {
  color: #38bdf8;
  text-decoration: underline;
  text-decoration-color: rgba(56, 189, 248, 0.7);
  text-underline-offset: 3px;
}

/* Responsive */
@media (max-width: 960px) {
  .container {
    padding: 1.25rem;
  }

  .nav {
    align-items: flex-start;
  }

  .nav-links {
    width: 100%;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 0.9rem 1rem;
  }

  .nav-link,
  .nav-cta {
    font-size: 0.86rem;
  }

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

  .hero {
    padding-top: 2.5rem;
  }

  .hero-visual {
    order: -1;
  }

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

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

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

@media (max-width: 720px) {
  .nav {
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.9rem;
  }

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

  .nav-links {
    display: flex;
    width: 100%;
    justify-content: flex-start;
    flex-direction: column;
    align-items: stretch;
    gap: 0.35rem;
    padding-top: 0;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transform: translateY(-6px);
    pointer-events: none;
    transition: max-height 0.28s ease, opacity 0.22s ease,
      transform 0.22s ease, padding-top 0.2s ease;
  }

  .nav-links.open {
    max-height: 320px;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    padding-top: 0.35rem;
  }

  .nav-link::after {
    display: none;
  }

  .nav-link,
  .nav-cta {
    display: block;
    width: 100%;
  }

  .nav-link {
    padding: 0.55rem 0.2rem;
  }

  .nav-cta {
    padding: 0.6rem 0.9rem;
    text-align: center;
  }

  .hero {
    padding-top: 2.1rem;
    gap: 1.5rem;
  }

  .hero-title {
    font-size: clamp(1.8rem, 8vw, 2.4rem);
  }

  .hero-subtitle {
    font-size: 0.92rem;
  }

  .hero-actions {
    width: 100%;
    gap: 0.75rem;
  }

  .hero-actions .btn-primary,
  .hero-actions .btn-ghost {
    width: 100%;
    justify-content: center;
  }

  .hero-card {
    padding: 1.2rem 1rem;
  }

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

  .chip {
    font-size: 0.76rem;
  }

  .section {
    padding: 2.2rem 0;
  }

  .section-title {
    font-size: 1.3rem;
  }

  .section-subtitle {
    font-size: 0.86rem;
  }

  .card,
  .step,
  .faq-item {
    padding: 1rem 0.9rem;
  }

  .cookie-inner {
    margin: 0 0.75rem;
    padding: 0.7rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.55rem;
  }

  .cookie-actions {
    width: 100%;
  }

  .cookie-btn {
    flex: 1;
  }

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

