﻿:root {
  color-scheme: dark;
  --bg: #07111f;
  --bg-2: #0a1629;
  --surface: rgba(10, 18, 35, 0.72);
  --surface-strong: rgba(10, 18, 35, 0.92);
  --card: rgba(14, 24, 44, 0.78);
  --ink: #eef5ff;
  --muted: #92a3bf;
  --line: rgba(148, 163, 184, 0.16);
  --line-strong: rgba(148, 163, 184, 0.24);
  --accent: #2dd4bf;
  --accent-strong: #14b8a6;
  --accent-2: #f59e0b;
  --accent-soft: rgba(45, 212, 191, 0.16);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
  --shadow-soft: 0 18px 42px rgba(0, 0, 0, 0.24);
  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --container: min(1160px, calc(100% - 32px));
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 12%, rgba(45, 212, 191, 0.14), transparent 20%),
    radial-gradient(circle at 86% 10%, rgba(245, 158, 11, 0.14), transparent 22%),
    radial-gradient(circle at 84% 78%, rgba(45, 212, 191, 0.08), transparent 24%),
    linear-gradient(180deg, #06101d 0%, #081425 52%, #060d19 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(148, 163, 184, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148, 163, 184, 0.06) 1px, transparent 1px);
  background-size: 48px 48px;
  opacity: 0.55;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.8), transparent 82%);
}

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

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

p {
  line-height: 1.7;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.section {
  padding: 84px 0;
}

.ambient {
  position: fixed;
  z-index: -1;
  width: 32rem;
  height: 32rem;
  border-radius: 999px;
  filter: blur(28px);
  opacity: 0.45;
  pointer-events: none;
}

.ambient-left {
  top: -10rem;
  left: -10rem;
  background: radial-gradient(circle, rgba(45, 212, 191, 0.26), transparent 68%);
}

.ambient-right {
  top: 16rem;
  right: -12rem;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.24), transparent 68%);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(6, 15, 27, 0.72);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(148, 163, 184, 0.1);
}

.header-inner {
  min-height: 82px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand-mark {
  width: 46px;
  height: 46px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4px;
  padding: 6px;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(20, 184, 166, 0.92), rgba(8, 145, 178, 0.94));
  box-shadow: 0 14px 34px rgba(20, 184, 166, 0.18);
}

.brand-mark span {
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
}

.brand-copy {
  display: grid;
  gap: 2px;
}

.brand-copy strong {
  font-size: 1rem;
  letter-spacing: 0.01em;
}

.brand-copy span,
.footer-inner p,
.section-heading p,
.hero-text,
.metric-card p,
.feature-card p,
.workflow-step p,
.price-card p,
.faq-item p,
.comparison-item p,
.contact-card p,
.info-card p {
  color: var(--muted);
}

.brand-copy span {
  font-size: 0.9rem;
}

.nav-toggle {
  display: none;
  justify-items: center;
  align-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  box-shadow: var(--shadow-soft);
}

.nav-toggle span {
  grid-column: 1;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--ink);
  transition: transform 0.22s ease, opacity 0.22s ease;
}

.nav-toggle span:nth-child(1) {
  transform: translateY(-5px);
}

.nav-toggle span:nth-child(2) {
  transform: translateY(0);
}

.nav-toggle span:nth-child(3) {
  transform: translateY(5px);
}

.nav-toggle .sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
  padding: 0;
}

.nav-links {
  justify-self: center;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  box-shadow: var(--shadow-soft);
}

.nav-links a {
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 600;
  transition: color 0.2s ease;
}

.nav-links a:hover,
.nav-links a:focus-visible,
.nav-links a[aria-current="page"] {
  color: var(--ink);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  letter-spacing: 0.01em;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease,
    background 0.18s ease, color 0.18s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
}

.btn-small {
  min-height: 42px;
  padding: 0 16px;
  font-size: 0.92rem;
}

.btn-primary {
  color: #04201c;
  background: linear-gradient(135deg, #7ff7e8 0%, #2dd4bf 50%, #8bf1d7 100%);
  box-shadow: 0 14px 34px rgba(45, 212, 191, 0.24);
}

.btn-secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.03);
  border-color: var(--line);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  border-color: rgba(45, 212, 191, 0.28);
}

.btn-full {
  width: 100%;
}

.hero {
  padding-top: 58px;
}

.hero-grid,
.subpage-grid,
.pricing-grid,
.contact-grid {
  display: grid;
  gap: 24px;
}

.hero-grid {
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
  align-items: center;
}

.subpage-grid {
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
  align-items: center;
}

.hero-copy {
  display: grid;
  gap: 18px;
}

.eyebrow-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.eyebrow {
  margin: 0;
  color: #7ff7e8;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.75rem;
  font-weight: 800;
}

.eyebrow-pill,
.panel-label,
.price-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #d1fae5;
  background: rgba(45, 212, 191, 0.12);
  border: 1px solid rgba(45, 212, 191, 0.18);
}

h1,
h2,
h3,
h4 {
  margin: 0;
  line-height: 1.04;
  letter-spacing: -0.04em;
}

h1,
h2 {
  font-family: "Sora", sans-serif;
}

h1 {
  font-size: clamp(3.3rem, 7vw, 6.3rem);
  max-width: 11ch;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
}

h3 {
  font-size: 1.35rem;
}

.hero-text {
  margin: 0;
  max-width: 60ch;
  font-size: 1.06rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.metric-card,
.feature-card,
.workflow-panel,
.price-card,
.faq-item,
.contact-card,
.info-card,
.dashboard-card,
.cta-card,
.trust-chip {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(14, 24, 44, 0.94), rgba(12, 20, 37, 0.78));
  box-shadow: var(--shadow-soft);
}

.metric-card {
  padding: 18px;
  border-radius: var(--radius-md);
}

.metric-card span,
.stack-card span,
.workflow-step span,
.workflow-copy .eyebrow,
.comparison-item strong {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.metric-card strong {
  display: block;
  margin-top: 10px;
  font-size: 1.08rem;
}

.metric-card p {
  margin: 10px 0 0;
  font-size: 0.92rem;
}

.hero-panel {
  padding: 14px;
}

.dashboard-card {
  padding: 22px;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(17, 27, 49, 0.96), rgba(10, 18, 35, 0.78)),
    rgba(14, 24, 44, 0.72);
}

.dashboard-top,
.sequence-head,
.cta-card,
.footer-inner,
.workflow-step {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.dashboard-top h2 {
  margin-top: 8px;
  font-size: clamp(1.6rem, 2.8vw, 2.1rem);
}

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 800;
}

.status-live {
  color: #bbf7d0;
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.22);
}

.status-live::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #22c55e;
  box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.14);
}

.dashboard-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(220px, 0.7fr);
  gap: 14px;
  margin-top: 18px;
}

.sequence-card {
  padding: 18px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(45, 212, 191, 0.14);
  background: linear-gradient(180deg, rgba(9, 17, 34, 0.88), rgba(8, 15, 28, 0.8));
}

.sequence-head {
  font-size: 0.92rem;
}

.sequence-head strong {
  color: #d1fae5;
}

.sequence-track {
  height: 12px;
  margin: 14px 0 16px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(148, 163, 184, 0.12);
}

.sequence-fill {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #2dd4bf, #60a5fa, #f59e0b);
}

.sequence-list {
  display: grid;
  gap: 10px;
}

.sequence-step {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(148, 163, 184, 0.06);
}

.sequence-step span {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
  font-weight: 800;
}

.sequence-step strong {
  font-size: 0.95rem;
}

.sequence-step.done {
  background: rgba(34, 197, 94, 0.08);
}

.sequence-step.live {
  background: rgba(45, 212, 191, 0.12);
}

.sequence-step.pending {
  background: rgba(148, 163, 184, 0.06);
}

.dashboard-side {
  display: grid;
  gap: 10px;
}

.stack-card {
  padding: 16px;
  border-radius: 18px;
  border: 1px solid rgba(148, 163, 184, 0.12);
  background: rgba(255, 255, 255, 0.03);
}

.stack-card strong {
  display: block;
  margin-top: 8px;
  font-size: 1rem;
}

.stack-card.accent {
  background: linear-gradient(180deg, rgba(45, 212, 191, 0.14), rgba(255, 255, 255, 0.04));
  border-color: rgba(45, 212, 191, 0.2);
}

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

.trust-chip {
  padding: 16px 18px;
  border-radius: 999px;
  text-align: center;
  font-size: 0.95rem;
  font-weight: 700;
}

.section-heading {
  display: grid;
  gap: 14px;
  margin-bottom: 28px;
  max-width: 780px;
}

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

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

.feature-card {
  padding: 24px;
  border-radius: var(--radius-lg);
  min-height: 220px;
}

.feature-index {
  margin: 0;
  color: #7ff7e8;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.feature-card h3 {
  margin-top: 12px;
}

.feature-card p {
  margin: 12px 0 0;
}

.workflow-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 20px;
  padding: 28px;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(14, 24, 44, 0.94), rgba(10, 18, 35, 0.82));
}

.workflow-copy p:not(.eyebrow) {
  max-width: 52ch;
}

.workflow-steps {
  display: grid;
  gap: 12px;
}

.workflow-step {
  align-items: flex-start;
  padding: 16px 0;
  border-top: 1px solid rgba(148, 163, 184, 0.12);
}

.workflow-step:first-child {
  border-top: 0;
  padding-top: 0;
}

.workflow-step span {
  width: 36px;
  height: 36px;
  flex: none;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #041d18;
  background: linear-gradient(135deg, #7ff7e8, #2dd4bf);
}

.workflow-step strong {
  display: block;
  font-size: 1.05rem;
}

.workflow-step p {
  margin: 6px 0 0;
}

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

.price-card {
  padding: 24px;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(14, 24, 44, 0.96), rgba(10, 18, 35, 0.82));
}

.price-card-featured {
  border-color: rgba(45, 212, 191, 0.26);
  box-shadow: 0 28px 74px rgba(4, 16, 29, 0.48);
  background:
    linear-gradient(180deg, rgba(17, 32, 59, 0.98), rgba(10, 18, 35, 0.82)),
    rgba(10, 18, 35, 0.9);
}

.price-card-top {
  display: grid;
  gap: 8px;
}

.price-card ul,
.contact-list {
  margin: 18px 0 20px;
  padding-left: 18px;
  color: var(--muted);
  display: grid;
  gap: 10px;
}

.pricing-table {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(14, 24, 44, 0.88), rgba(10, 18, 35, 0.76));
}

.pricing-row {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
}

.pricing-row > span {
  padding: 16px 18px;
  border-top: 1px solid rgba(148, 163, 184, 0.12);
}

.pricing-row-head > span {
  border-top: 0;
  background: rgba(148, 163, 184, 0.06);
  color: var(--ink);
  font-weight: 800;
}

.pricing-row > span:not(:first-child) {
  text-align: center;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-item {
  padding: 4px 20px;
  border-radius: var(--radius-lg);
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0;
  font-size: 1.05rem;
  font-weight: 800;
  cursor: pointer;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #d1fae5;
  background: rgba(45, 212, 191, 0.1);
}

.faq-item[open] summary::after {
  content: "â€“";
}

.faq-item p {
  margin: 0 0 18px;
}

.subpage-grid .hero-panel,
.hero-panel {
  padding: 14px;
}

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

.mini-stat {
  padding: 18px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: var(--shadow-soft);
}

.mini-stat span {
  display: block;
  color: var(--muted);
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 800;
}

.mini-stat strong {
  display: block;
  margin-top: 8px;
  font-size: 1.06rem;
}

.comparison-list {
  display: grid;
  gap: 12px;
}

.comparison-item {
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(148, 163, 184, 0.1);
}

.comparison-item strong {
  display: block;
  margin-bottom: 8px;
}

.contact-grid {
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
}

.contact-card,
.info-card {
  padding: 26px;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(14, 24, 44, 0.94), rgba(10, 18, 35, 0.82));
}

.contact-card-alt {
  background: linear-gradient(180deg, rgba(17, 32, 59, 0.98), rgba(10, 18, 35, 0.82));
}

.contact-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.lead-form {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.lead-form label {
  display: grid;
  gap: 8px;
  font-size: 0.94rem;
  font-weight: 700;
}

.lead-form span {
  color: var(--ink);
}

.lead-form input,
.lead-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--ink);
  padding: 14px 16px;
  font: inherit;
  outline: none;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.lead-form input::placeholder,
.lead-form textarea::placeholder {
  color: #7487a8;
}

.lead-form input:focus,
.lead-form textarea:focus {
  border-color: rgba(45, 212, 191, 0.4);
  box-shadow: 0 0 0 4px rgba(45, 212, 191, 0.1);
  background: rgba(255, 255, 255, 0.05);
}

.contact-list {
  list-style: disc;
}

.contact-steps {
  display: grid;
  gap: 12px;
  margin-top: 20px;
}

.cta-section {
  padding-top: 28px;
}

.cta-card {
  padding: 28px;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(135deg, rgba(45, 212, 191, 0.12), rgba(245, 158, 11, 0.08)),
    rgba(10, 18, 35, 0.86);
  border-color: rgba(45, 212, 191, 0.18);
}

.cta-card p {
  max-width: 56ch;
}

.footer-inner {
  padding: 28px 0 44px;
  border-top: 1px solid rgba(148, 163, 184, 0.1);
  justify-content: space-between;
  gap: 20px;
}

.footer-links {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.footer-links a {
  color: var(--muted);
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--ink);
}

.copyright {
  margin: 0;
  color: var(--muted);
  white-space: nowrap;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
}

.js-enabled .reveal {
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.js-enabled .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1080px) {
  .hero-grid,
  .subpage-grid,
  .pricing-grid,
  .contact-grid,
  .workflow-panel {
    grid-template-columns: 1fr;
  }

  .hero-metrics,
  .trust-grid,
  .feature-grid,
  .feature-grid-wide {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .footer-inner,
  .cta-card {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 760px) {
  .header-inner {
    grid-template-columns: auto auto;
  }

  .nav-toggle {
    display: grid;
    justify-self: end;
  }

  .header-cta {
    display: none;
  }

  .nav-links {
    display: none;
    grid-column: 1 / -1;
    justify-self: stretch;
    justify-content: flex-start;
    flex-wrap: wrap;
    margin-top: 8px;
    border-radius: 22px;
  }

  .site-header[data-open="true"] .nav-links {
    display: flex;
  }

  .site-header[data-open="true"] .nav-toggle span:nth-child(1) {
    transform: translateY(2px) rotate(45deg);
  }

  .site-header[data-open="true"] .nav-toggle span:nth-child(2) {
    opacity: 0;
  }

  .site-header[data-open="true"] .nav-toggle span:nth-child(3) {
    transform: translateY(-2px) rotate(-45deg);
  }

  .hero {
    padding-top: 38px;
  }

  .hero-metrics,
  .trust-grid,
  .feature-grid,
  .feature-grid-wide,
  .pricing-grid,
  .mini-grid {
    grid-template-columns: 1fr;
  }

  .pricing-row {
    grid-template-columns: 1fr;
  }

  .pricing-row > span {
    text-align: left !important;
  }

  .pricing-row-head {
    display: none;
  }

  .pricing-row > span:first-child {
    background: rgba(148, 163, 184, 0.06);
    font-weight: 800;
  }

  .pricing-row > span:not(:first-child) {
    padding-top: 8px;
  }

  .footer-inner {
    align-items: flex-start;
  }
}

@media (max-width: 520px) {
  .section {
    padding: 64px 0;
  }

  h1 {
    font-size: clamp(2.9rem, 15vw, 4.1rem);
  }

  .hero-actions,
  .cta-actions,
  .contact-actions {
    flex-direction: column;
  }

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

  .dashboard-card,
  .workflow-panel,
  .price-card,
  .contact-card,
  .cta-card,
  .feature-card,
  .info-card,
  .metric-card {
    border-radius: 20px;
  }
}

