:root {
  --bg: #0b1020;
  --bg-soft: #121933;
  --card: rgba(255, 255, 255, 0.06);
  --card-strong: rgba(255, 255, 255, 0.1);
  --text: #eef2ff;
  --muted: #b5bfdc;
  --line: rgba(255, 255, 255, 0.12);
  --primary: #7c8cff;
  --primary-hover: #96a2ff;
  --accent: #5eead4;
  --shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
  --radius: 22px;
  --max-width: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, Roboto, Arial, sans-serif;
  background:
    radial-gradient(circle at top right, rgba(124, 140, 255, 0.18), transparent 30%),
    radial-gradient(circle at bottom left, rgba(94, 234, 212, 0.08), transparent 28%),
    var(--bg);
  color: var(--text);
  line-height: 1.6;
}

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

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

.container {
  width: min(var(--max-width), calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(11, 16, 32, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  letter-spacing: 0.2px;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #07111f;
  font-weight: 800;
  box-shadow: var(--shadow);
}

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

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

.nav-cta,
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  background: var(--primary);
  color: white;
  font-weight: 600;
  transition: 0.2s ease;
}

.nav-cta:hover,
.btn-primary:hover {
  background: var(--primary-hover);
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  padding: 0;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--text);
  margin: 4px auto;
  border-radius: 999px;
}

.hero {
  padding: 72px 0 34px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 30px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.03);
  font-size: 0.92rem;
  margin-bottom: 18px;
}

.hero h1 {
  margin: 0 0 18px;
  font-size: clamp(2.4rem, 5vw, 4.6rem);
  line-height: 1.06;
  letter-spacing: -0.04em;
  max-width: 10.5ch;
}

.hero p {
  margin: 0;
  max-width: 620px;
  color: var(--muted);
  font-size: 1.06rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 28px 0 22px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 700;
  transition: 0.2s ease;
  border: 1px solid transparent;
}

.btn-secondary {
  background: transparent;
  border-color: var(--line);
  color: var(--text);
}

.btn-secondary:hover {
  border-color: rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.04);
}

.hero-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: var(--muted);
  font-size: 0.95rem;
}

.hero-card {
  position: relative;
  padding: 26px;
  border-radius: 28px;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04)),
    var(--bg-soft);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: auto -60px -70px auto;
  width: 210px;
  height: 210px;
  background: radial-gradient(circle, rgba(124, 140, 255, 0.22), transparent 68%);
  pointer-events: none;
}

.hero-card-top {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: flex-start;
  margin-bottom: 20px;
}

.label {
  display: inline-block;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(94, 234, 212, 0.12);
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.hero-card h2,
.section-head h2 {
  margin: 0;
  font-size: clamp(1.5rem, 2vw, 2rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.hero-card p,
.section-head p,
.card p,
.tool-benefits li,
.footer-copy,
.trust-box p,
.cta-banner p {
  color: var(--muted);
}

.hero-mini-preview {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

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

.mini-box strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1rem;
}

.section {
  padding: 34px 0;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
}

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

.card {
  padding: 24px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--card);
  transition: 0.2s ease;
}

.card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.18);
  background: var(--card-strong);
}

.card h3 {
  margin: 0 0 10px;
  font-size: 1.18rem;
  line-height: 1.25;
}

.card .small-label,
.tool-panel .small-label,
.tool-preview .small-label {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 0.78rem;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
}

.card .card-link {
  display: inline-flex;
  margin-top: 14px;
  color: var(--text);
  font-weight: 700;
}

.tool-highlight {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 20px;
  align-items: stretch;
}

.tool-panel,
.tool-preview {
  padding: 28px;
  border-radius: 28px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03));
  box-shadow: var(--shadow);
}

.tool-panel h3 {
  margin: 0 0 12px;
  font-size: 1.4rem;
}

.tool-benefits {
  margin: 18px 0 24px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.tool-benefits li::before {
  content: "•";
  color: var(--accent);
  margin-right: 10px;
}

.preview-window {
  border-radius: 18px;
  background: #0f162c;
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.preview-topbar {
  display: flex;
  gap: 8px;
  align-items: center;
  padding: 12px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.preview-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.24);
}

.preview-body {
  padding: 18px;
  display: grid;
  gap: 12px;
}

.preview-line,
.preview-pill {
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.preview-line {
  height: 12px;
}

.preview-line.short {
  width: 55%;
}

.preview-line.medium {
  width: 78%;
}

.preview-pill {
  display: inline-block;
  height: 36px;
  width: 132px;
  background: rgba(124, 140, 255, 0.3);
}

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

.trust-box {
  padding: 20px;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
}

.trust-box h3 {
  margin-top: 0;
}

.cta-banner {
  padding: 30px;
  border-radius: 30px;
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(124, 140, 255, 0.18), rgba(94, 234, 212, 0.08)),
    rgba(255, 255, 255, 0.04);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  box-shadow: var(--shadow);
}

.cta-banner h2 {
  margin: 0 0 10px;
  font-size: clamp(1.6rem, 2vw, 2.2rem);
  line-height: 1.2;
}

.site-footer {
  padding: 34px 0 46px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  margin-top: 18px;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  color: var(--muted);
}

.footer-links a:hover,
.card-link:hover {
  color: var(--text);
}

@media (max-width: 980px) {
  .hero-grid,
  .tool-highlight,
  .cards,
  .trust-strip {
    grid-template-columns: 1fr;
  }

  .section-head,
  .cta-banner,
  .footer-grid {
    align-items: flex-start;
    justify-content: flex-start;
  }
}

@media (max-width: 760px) {
  .nav {
    min-height: 72px;
    position: relative;
  }

  .menu-toggle {
    display: inline-block;
    margin-left: auto;
  }

  .desktop-cta {
    display: none;
  }

  .nav-links {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 0 6px;
  }

  .nav-links.is-open {
    display: flex;
  }

  .hero {
    padding-top: 42px;
  }

  .hero h1 {
    max-width: none;
  }

  .hero-actions,
  .hero-metrics {
    flex-direction: column;
    align-items: stretch;
  }

  .btn,
  .nav-cta {
    width: 100%;
  }

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


.tools-hero-grid {
  align-items: stretch;
}

.tools-hero-card h2 {
  margin: 0 0 12px;
  font-size: clamp(1.55rem, 2vw, 2.05rem);
}

.recommendation-boxes {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: 18px;
}

.featured-tool-card {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 20px;
}

.featured-tool-main,
.featured-tool-side {
  display: grid;
  gap: 18px;
}

.featured-tool-main {
  padding: 28px;
  border-radius: 28px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.04));
  box-shadow: var(--shadow);
}

.featured-tool-top,
.tool-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}

.featured-tool-main h3,
.tool-fit-card h3 {
  margin: 10px 0 12px;
  font-size: 1.55rem;
  line-height: 1.2;
}

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

.tool-fit-card {
  padding: 24px;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.04);
}

.tool-fit-card p,
.featured-tool-main p,
.tool-card-meta,
.disabled-link {
  color: var(--muted);
}

.status-badge,
.tool-chip {
  display: inline-flex;
  align-items: center;
  padding: 7px 11px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.status-live {
  background: rgba(94, 234, 212, 0.12);
  color: var(--accent);
}

.status-soon {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
}

.tool-chip {
  background: rgba(124, 140, 255, 0.16);
  color: #dbe1ff;
}

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

.tool-card {
  display: grid;
  gap: 14px;
}

.tool-card-live {
  border-color: rgba(94, 234, 212, 0.22);
}

.tool-card-soon {
  opacity: 0.96;
}

.tool-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.92rem;
}

.tool-card-meta span {
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,0.03);
}

.disabled-link {
  display: inline-flex;
  margin-top: 4px;
  font-weight: 700;
}

@media (max-width: 980px) {
  .featured-tool-card,
  .tool-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .feature-actions {
    flex-direction: column;
    align-items: stretch;
  }
}
