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

:root {
  --bg: #06090f;
  --surface: #0f1725;
  --surface-soft: #131f31;
  --line: #263954;
  --text: #e9f0fa;
  --muted: #99aec8;
  --dim: #6f87a3;
  --accent: #6ee7ff;
  --accent-strong: #34d8ff;
  --warm: #ffb86a;
  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 10px;
  --maxw: 1140px;
  --font-body: "Instrument Sans", sans-serif;
  --font-display: "Rajdhani", sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background:
    radial-gradient(circle at 16% -4%, #1f4d78 0%, transparent 36%),
    radial-gradient(circle at 84% 10%, #234f6f 0%, transparent 32%),
    linear-gradient(180deg, #05070c 0%, #06090f 55%, #04060b 100%);
  line-height: 1.6;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160' viewBox='0 0 160 160'%3E%3Cg fill='none' stroke='rgba(117,165,209,.12)' stroke-width='1'%3E%3Cpath d='M0 40h160M0 80h160M0 120h160M40 0v160M80 0v160M120 0v160'/%3E%3C/g%3E%3C/svg%3E")
    repeat;
  mask-image: linear-gradient(180deg, #000 0%, transparent 90%);
  pointer-events: none;
  z-index: -2;
}

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

.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  z-index: 999;
  font-size: 0.85rem;
  background: var(--accent);
  color: #00131d;
  padding: 0.5rem 0.75rem;
  border-radius: 6px;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 6px;
}

.top-wrap {
  position: sticky;
  top: 0;
  z-index: 50;
}

.announcement {
  border-bottom: 1px solid rgba(110, 231, 255, 0.25);
  background: rgba(8, 15, 24, 0.86);
  backdrop-filter: blur(16px);
}

.announcement p {
  max-width: var(--maxw);
  margin: 0 auto;
  text-align: center;
  padding: 0.5rem 1.25rem;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--accent);
}

.nav-shell {
  border-bottom: 1px solid rgba(112, 137, 170, 0.22);
  background: rgba(6, 11, 18, 0.78);
  backdrop-filter: blur(20px);
}

.nav-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  min-height: 70px;
  padding: 0.85rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.65rem;
  letter-spacing: -0.01em;
}

.logo span {
  color: var(--accent);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  color: var(--muted);
  font-size: 0.92rem;
}

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.ghost,
.solid {
  border-radius: 999px;
  padding: 0.5rem 1rem;
  font-size: 0.86rem;
  font-weight: 600;
}

.ghost {
  border: 1px solid rgba(126, 153, 189, 0.38);
  color: var(--muted);
}

.ghost:hover {
  color: var(--text);
  border-color: rgba(126, 153, 189, 0.66);
}

.solid {
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  color: #00141f;
}

.solid:hover {
  filter: brightness(1.08);
}

main {
  padding: 2rem 0 5rem;
}

.hero,
.section {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 1.75rem 1.25rem;
}

.hero {
  padding-top: 3.7rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 2rem;
  align-items: start;
}

.kicker {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-size: 0.76rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  font-family: var(--font-display);
}

h1,
h2,
h3,
.metric-value {
  font-family: var(--font-display);
}

h1 {
  font-size: clamp(2.2rem, 6vw, 4rem);
  line-height: 0.95;
  letter-spacing: -0.02em;
  max-width: 14ch;
  margin-bottom: 1.1rem;
}

.hero-sub {
  color: var(--muted);
  font-size: 1.08rem;
  max-width: 58ch;
}

.hero-note {
  margin-top: 1rem;
  color: var(--warm);
  font-weight: 600;
}

.hero-actions {
  margin-top: 1.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.primary-cta,
.secondary-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.75rem 1.4rem;
  font-weight: 700;
  font-size: 0.92rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.primary-cta {
  background: linear-gradient(135deg, var(--accent), #53f5ff);
  color: #00141f;
}

.primary-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 26px rgba(72, 232, 255, 0.34);
}

.secondary-cta {
  border: 1px solid rgba(148, 176, 214, 0.44);
  color: var(--text);
}

.secondary-cta:hover {
  border-color: rgba(148, 176, 214, 0.74);
  transform: translateY(-1px);
}

.hero-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(175deg, rgba(15, 23, 37, 0.94), rgba(8, 13, 21, 0.94));
  padding: 1.25rem;
  box-shadow: inset 0 0 0 1px rgba(118, 172, 224, 0.11);
}

.hero-panel h2 {
  font-size: 1.22rem;
  margin-bottom: 0.95rem;
  line-height: 1.1;
}

.metric-list {
  display: grid;
  gap: 0.85rem;
}

.metric-list > div {
  border: 1px solid rgba(112, 143, 176, 0.25);
  border-radius: var(--radius-sm);
  padding: 0.8rem 0.85rem;
  background: rgba(10, 16, 26, 0.8);
}

.metric-value {
  font-size: 2.05rem;
  line-height: 0.9;
}

.metric-label {
  color: var(--muted);
  font-size: 0.82rem;
  margin-top: 0.2rem;
}

.section {
  padding-top: 2.35rem;
}

.eyebrow {
  font-size: 0.73rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 0.7rem;
  font-family: var(--font-display);
  font-weight: 700;
}

h2 {
  font-size: clamp(1.6rem, 4vw, 2.65rem);
  line-height: 0.98;
  max-width: 18ch;
  margin-bottom: 1.05rem;
}

.section > p {
  color: var(--muted);
  max-width: 76ch;
}

.accent-line {
  color: var(--text) !important;
  margin-top: 0.85rem;
  font-weight: 600;
}

.pain-grid,
.feature-grid {
  margin-top: 1.2rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.95rem;
}

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

.card {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 1.15rem 1rem;
  background: linear-gradient(160deg, rgba(16, 25, 40, 0.88), rgba(10, 16, 27, 0.94));
  min-height: 182px;
}

.card h3 {
  font-size: 1.28rem;
  margin-bottom: 0.48rem;
}

.card p {
  color: var(--muted);
  font-size: 0.93rem;
}

.pain:hover {
  border-color: rgba(255, 184, 106, 0.55);
}

.feature:hover {
  border-color: rgba(110, 231, 255, 0.62);
}

.gateway {
  border: 1px dashed rgba(110, 231, 255, 0.38);
  border-radius: var(--radius-lg);
  background: rgba(7, 12, 20, 0.77);
}

.inline-link {
  margin-top: 1rem;
  display: inline-block;
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.compare h2 {
  max-width: 20ch;
}

.table-wrap {
  margin-top: 1.05rem;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(8, 14, 23, 0.92);
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
}

th,
td {
  text-align: left;
  padding: 0.8rem 0.9rem;
  border-bottom: 1px solid rgba(95, 126, 162, 0.25);
}

th {
  font-family: var(--font-display);
  font-size: 0.97rem;
  color: var(--text);
}

td {
  color: var(--muted);
  font-size: 0.9rem;
}

tbody tr:hover td {
  background: rgba(104, 149, 192, 0.08);
}

.pricing-card {
  border: 1px solid rgba(255, 184, 106, 0.42);
  border-radius: var(--radius-lg);
  padding: 1.4rem;
  background: linear-gradient(170deg, rgba(37, 25, 14, 0.55), rgba(10, 14, 24, 0.94));
}

.launch-tag {
  display: inline-block;
  border: 1px solid rgba(255, 184, 106, 0.62);
  border-radius: 999px;
  padding: 0.2rem 0.68rem;
  font-size: 0.71rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--warm);
  font-family: var(--font-display);
  font-weight: 700;
}

.pricing-head h2 {
  margin-top: 0.65rem;
  margin-bottom: 0.58rem;
}

.pricing-card ul {
  margin-top: 0.95rem;
  list-style: none;
  display: grid;
  gap: 0.5rem;
}

.pricing-card li {
  color: var(--text);
  font-size: 0.94rem;
  padding-left: 1.05rem;
  position: relative;
}

.pricing-card li::before {
  content: "";
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  background: var(--accent);
  position: absolute;
  left: 0;
  top: 0.57rem;
}

.faq-list {
  margin-top: 1rem;
  display: grid;
  gap: 0.6rem;
}

details {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(10, 16, 25, 0.88);
  padding: 0.85rem 0.95rem;
}

summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--text);
}

details p {
  color: var(--muted);
  margin-top: 0.5rem;
}

.cta {
  text-align: center;
  border: 1px solid rgba(110, 231, 255, 0.36);
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, rgba(11, 20, 33, 0.92), rgba(7, 12, 20, 0.95));
  padding: 2rem 1.25rem;
}

.cta h2 {
  margin-left: auto;
  margin-right: auto;
}

.cta p {
  margin-left: auto;
  margin-right: auto;
}

.cta .primary-cta {
  margin-top: 1rem;
}

.cta-sub {
  margin-top: 0.85rem;
  font-size: 0.92rem;
}

.cta-sub a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

footer {
  margin: 2.4rem auto 0;
  max-width: var(--maxw);
  padding: 1.4rem 1.25rem 2.2rem;
  border-top: 1px solid rgba(112, 143, 176, 0.24);
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.footer-top p {
  color: var(--muted);
  font-size: 0.9rem;
}

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

.footer-grid h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  margin-bottom: 0.4rem;
}

.footer-grid a {
  display: block;
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 0.25rem;
}

.footer-grid a:hover {
  color: var(--text);
}

.copyright {
  margin-top: 1rem;
  color: var(--dim);
  font-size: 0.82rem;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-copy {
  animation: rise 0.55s ease both;
}

.hero-panel {
  animation: rise 0.55s ease 0.12s both;
}

@media (max-width: 940px) {
  .nav-links {
    display: none;
  }

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

  .pain-grid,
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    max-width: 420px;
  }

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

@media (max-width: 640px) {
  .nav-inner {
    min-height: 62px;
  }

  .logo {
    font-size: 1.42rem;
  }

  .nav-actions {
    gap: 0.45rem;
  }

  .ghost,
  .solid {
    padding: 0.47rem 0.74rem;
    font-size: 0.79rem;
  }

  .hero,
  .section {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  h1 {
    max-width: none;
  }

  .footer-top {
    flex-direction: column;
    align-items: flex-start;
  }

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

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }
}
