:root {
  --bg-start: #0b1220;
  --bg-end: #0f172a;
  --text: #f8fafc;
  --muted: rgba(248, 250, 252, 0.7);
  --accent: #00d0ff;
  --accent-strong: #00a0f2;
  --card-bg: rgba(15, 23, 42, 0.7);
  --border: rgba(255, 255, 255, 0.08);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: radial-gradient(circle at top, var(--bg-start), var(--bg-end));
  color: var(--text);
  min-height: 100vh;
}

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

a {
  color: var(--muted);
  text-decoration: none;
}

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

.hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 3rem;
  padding: 4rem clamp(1.5rem, 3vw, 4rem);
  align-items: center;
}

.hero__content {
  max-width: 520px;
}

.hero__badge {
  display: inline-flex;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  background: rgba(0, 208, 255, 0.15);
  color: var(--accent);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero__logo {
  margin: 1.5rem 0 1rem;
  width: 180px;
  height: 180px;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.hero__logo img {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  box-shadow: 0 10px 30px rgba(0, 214, 255, 0.3);
}

.hero__logo::before,
.hero__logo::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 208, 255, 0.5), transparent 60%);
  animation: pulse 4s infinite;
  z-index: -1;
}

.hero__logo::after {
  animation-delay: 1s;
  filter: blur(6px);
}

@keyframes pulse {
  0% {
    transform: scale(0.8);
    opacity: 0.8;
  }
  70% {
    transform: scale(1.4);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

.hero h1 {
  font-size: clamp(2rem, 4vw, 3.25rem);
  margin: 0 0 1rem;
}

.hero p,
.hero__tagline {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.6;
}

.hero__tagline {
  font-size: clamp(1.5rem, 3.4vw, 2.25rem);
  color: var(--text);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.hero__support {
  color: rgba(248, 250, 252, 0.8);
  font-size: clamp(1.05rem, 2.4vw, 1.25rem);
  margin-bottom: 2rem;
  max-width: 48ch;
}

.cta {
  margin-top: 1.5rem;
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.cta input {
  flex: 1;
  min-width: 220px;
  padding: 0.9rem 1rem;
  border-radius: 999px;
  border: 1px solid transparent;
  background: rgba(15, 23, 42, 0.8);
  color: var(--text);
}

.cta input:focus {
  outline: 2px solid var(--accent);
}

.cta button {
  padding: 0.9rem 1.8rem;
  border-radius: 999px;
  border: none;
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  color: var(--bg-start);
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.cta button:hover {
  transform: translateY(-1px);
}

.cta__disclaimer {
  margin-top: 0.75rem;
  font-size: 0.9rem;
  color: rgba(248, 250, 252, 0.6);
}

.status {
  margin-top: 1rem;
  font-weight: 500;
  color: var(--muted);
}

.status[data-type='success'] {
  color: #34d399;
}

.status[data-type='error'] {
  color: #fca5a5;
}

.status[data-type='pending'] {
  color: var(--accent);
}

.hero__visual {
  background: rgba(15, 23, 42, 0.8);
  border-radius: 24px;
  padding: 2rem;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.dashboard {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.dashboard__meta {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 1rem;
}

.dashboard__meta .label {
  text-transform: uppercase;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  color: rgba(248, 250, 252, 0.7);
  margin: 0 0 0.5rem;
}

.dashboard__meta strong {
  font-size: 1.5rem;
}

.dashboard__preview {
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 1rem;
}

.dashboard__preview img {
  width: 100%;
  display: block;
  border-radius: 12px;
}

main {
  flex: 1;
  padding: 0 1.5rem 4rem;
}

.dashboard-showcase {
  display: grid;
  grid-template-columns: minmax(240px, 340px) minmax(0, 1fr);
  gap: 2.5rem;
  margin: 0 clamp(1.5rem, 4vw, 4rem) 3rem;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border: 1px solid var(--border);
  border-radius: 24px;
  background: rgba(15, 23, 42, 0.7);
  align-items: center;
}

.dashboard-showcase .eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
  color: rgba(248, 250, 252, 0.6);
  margin-bottom: 0.5rem;
}

.dashboard-showcase h2 {
  margin: 0 0 0.75rem;
}

.dashboard-copy {
  color: rgba(248, 250, 252, 0.75);
  line-height: 1.6;
}

.dashboard-showcase__media {
  background: rgba(15, 23, 42, 0.8);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  width: min(100%, 620px);
  justify-self: center;
}

.dashboard-showcase__media img {
  width: 100%;
  display: block;
  border-radius: 12px;
}

.usp {
  margin: 3rem clamp(1.5rem, 4vw, 4rem);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: rgba(15, 23, 42, 0.7);
  border: 1px solid var(--border);
  border-radius: 24px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.35);
}

.usp .eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
  color: rgba(248, 250, 252, 0.6);
  margin-bottom: 0.35rem;
}

.usp h2 {
  margin: 0 0 1rem;
}

.usp__copy {
  color: rgba(248, 250, 252, 0.8);
  line-height: 1.7;
  margin-bottom: 1.75rem;
}

.usp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
}

.usp-grid article {
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 1.5rem;
}

.usp-grid h3 {
  margin-top: 0;
  margin-bottom: 0.6rem;
}

.usp-grid p {
  color: rgba(248, 250, 252, 0.75);
  line-height: 1.6;
}

@media (max-width: 900px) {
  .dashboard-showcase {
    grid-template-columns: 1fr;
  }

  .dashboard-showcase__media {
    width: 100%;
  }
}

.metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.metric {
  padding: 1.5rem;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: rgba(15, 23, 42, 0.6);
}

.metric__value {
  font-size: 2rem;
  font-weight: 600;
  color: var(--accent);
}

.metric__label {
  display: block;
  margin-top: 0.35rem;
  color: rgba(248, 250, 252, 0.7);
  font-size: 0.95rem;
}

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.features article {
  background: rgba(15, 23, 42, 0.7);
  border-radius: 20px;
  padding: 1.75rem;
  border: 1px solid var(--border);
}

.features h3 {
  margin-top: 0;
  margin-bottom: 0.75rem;
}

.features p {
  color: rgba(248, 250, 252, 0.75);
  line-height: 1.6;
}

.quote {
  margin-top: 4rem;
  padding: 2.5rem;
  border-radius: 24px;
  background: linear-gradient(120deg, rgba(0, 208, 255, 0.15), rgba(15, 23, 42, 0.8));
  font-size: 1.25rem;
  line-height: 1.6;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.quote__author {
  margin-top: 1rem;
  font-size: 0.95rem;
  color: rgba(248, 250, 252, 0.75);
}

footer {
  padding: 2rem 1.5rem 3rem;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(248, 250, 252, 0.6);
}

.footer__links {
  margin-top: 1rem;
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer__links a {
  color: rgba(248, 250, 252, 0.7);
  font-size: 0.95rem;
}

@media (max-width: 640px) {
  .hero {
    padding: 2.5rem 1.5rem;
  }

  .hero__visual {
    order: -1;
  }
}
