:root {
  color-scheme: dark;
  --bg: #07080d;
  --bg-soft: #0c0d14;
  --panel: rgba(16, 17, 26, 0.86);
  --panel-strong: rgba(19, 21, 31, 0.94);
  --border: rgba(255, 255, 255, 0.085);
  --border-hot: rgba(190, 255, 65, 0.44);
  --text: #f5f5f0;
  --muted: #a6a5b8;
  --faint: #777688;
  --accent: #b7ff34;
  --accent-soft: rgba(183, 255, 52, 0.12);
  --violet: #aaa8c2;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.4);
  --radius: 20px;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  background: var(--bg);
}

body {
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 52% 6%, rgba(183, 255, 52, 0.12), transparent 28rem),
    radial-gradient(circle at 16% 18%, rgba(142, 118, 255, 0.14), transparent 34rem),
    linear-gradient(180deg, #090a10 0%, #07080d 54%, #06070b 100%);
  color: var(--text);
  letter-spacing: 0;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.75), transparent 72%);
}

a {
  color: inherit;
}

.page {
  width: min(100%, 1440px);
  margin: 0 auto;
  padding: 56px 22px 24px;
}

.hero {
  position: relative;
  display: grid;
  min-height: 304px;
  align-content: center;
  padding: 12px 0 34px;
}

.hero::after {
  position: absolute;
  top: -160px;
  left: 50%;
  z-index: -1;
  width: min(860px, 92vw);
  height: 520px;
  content: "";
  transform: translateX(-50%);
  background:
    radial-gradient(circle, rgba(183, 255, 52, 0.16), transparent 36%),
    radial-gradient(circle at 35% 58%, rgba(151, 123, 255, 0.14), transparent 42%);
  filter: blur(10px);
}

.eyebrow {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
  color: rgba(183, 255, 52, 0.88);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.34em;
  text-transform: uppercase;
}

.eyebrow-icon {
  position: relative;
  width: 15px;
  height: 15px;
  border: 1px solid rgba(183, 255, 52, 0.78);
  border-radius: 50%;
  box-shadow: 0 0 20px rgba(183, 255, 52, 0.28);
}

.eyebrow-icon::before,
.eyebrow-icon::after {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 17px;
  height: 1px;
  content: "";
  transform: translate(-50%, -50%);
  background: currentColor;
}

.eyebrow-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(3rem, 5.9vw, 5.45rem);
  line-height: 0.96;
  font-weight: 800;
  letter-spacing: 0;
}

.hero-accent {
  display: block;
  max-width: 700px;
  margin-top: 10px;
  color: var(--violet);
  font-size: clamp(2rem, 4.2vw, 3.7rem);
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 700px;
  margin: 24px 0 0;
  color: #c3c1d1;
  font-size: clamp(1rem, 1.8vw, 1.18rem);
  line-height: 1.75;
}

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

.tool-card {
  position: relative;
  min-height: 162px;
  padding: 25px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.04), transparent 34%),
    var(--panel);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.03) inset;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.tool-card::before {
  position: absolute;
  inset: -1px;
  z-index: 0;
  pointer-events: none;
  content: "";
  opacity: 0;
  background:
    radial-gradient(
      circle at var(--glow-x, 20%) var(--glow-y, 0%),
      rgba(183, 255, 52, 0.13),
      transparent 54%
    );
  transition: opacity 180ms ease;
}

.tool-card > * {
  position: relative;
  z-index: 1;
}

.tool-link {
  display: block;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

.tool-link:hover,
.tool-link:focus-visible {
  transform: translateY(-5px);
  border-color: var(--border-hot);
  background:
    linear-gradient(145deg, rgba(183, 255, 52, 0.1), transparent 42%),
    var(--panel-strong);
  box-shadow:
    0 28px 90px rgba(0, 0, 0, 0.44),
    0 0 42px rgba(183, 255, 52, 0.12),
    0 1px 0 rgba(255, 255, 255, 0.06) inset;
  outline: none;
}

.tool-link:hover::before,
.tool-link:focus-visible::before,
.tool-card:not(.tool-link):hover::before {
  opacity: 1;
}

.tool-card:not(.tool-link):hover {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.14);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.055), transparent 36%),
    rgba(17, 18, 27, 0.92);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.32);
}

.tool-card.is-coming {
  color: rgba(245, 245, 240, 0.72);
}

.tool-card.is-coming .tool-description {
  color: rgba(166, 165, 184, 0.76);
}

.tool-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 23px;
  margin-bottom: 20px;
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  width: fit-content;
  min-height: 22px;
  padding: 4px 10px;
  border: 1px solid rgba(255, 255, 255, 0.055);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.045);
  color: #8b8999;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.status-live {
  border-color: rgba(183, 255, 52, 0.22);
  background: var(--accent-soft);
  color: var(--accent);
}

.status-live::before {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  content: "";
  background: var(--accent);
  box-shadow: 0 0 14px rgba(183, 255, 52, 0.54);
}

.arrow {
  display: inline-grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 1px solid rgba(183, 255, 52, 0.12);
  border-radius: 50%;
  color: rgba(183, 255, 52, 0.84);
  background: rgba(183, 255, 52, 0.045);
  font-size: 1.1rem;
  line-height: 1;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.tool-link:hover .arrow,
.tool-link:focus-visible .arrow {
  transform: translate(2px, -2px);
  border-color: rgba(183, 255, 52, 0.34);
  background: rgba(183, 255, 52, 0.1);
}

.tool-title {
  margin: 0;
  color: var(--text);
  font-size: 1.14rem;
  line-height: 1.25;
  font-weight: 800;
  letter-spacing: 0;
}

.tool-description {
  max-width: 28rem;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  margin-top: 96px;
  padding: 24px 0 6px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  color: #8f8e9e;
  font-size: 0.92rem;
}

.site-footer p {
  margin: 0;
}

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

.footer-links a {
  color: #aaa9b8;
  text-decoration: none;
  transition: color 160ms ease;
}

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

@media (max-width: 1100px) {
  .page {
    padding-top: 52px;
  }

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

@media (max-width: 640px) {
  .page {
    padding: 36px 16px 20px;
  }

  .hero {
    min-height: 284px;
    padding: 10px 0 34px;
  }

  .hero::after {
    top: -132px;
    height: 430px;
  }

  .eyebrow {
    gap: 9px;
    margin-bottom: 22px;
    font-size: 0.64rem;
    letter-spacing: 0.26em;
  }

  .eyebrow-icon {
    width: 13px;
    height: 13px;
  }

  h1 {
    font-size: clamp(2.55rem, 13vw, 3.55rem);
    line-height: 0.98;
  }

  .hero-accent {
    margin-top: 8px;
    font-size: clamp(1.68rem, 8vw, 2.35rem);
    line-height: 1.05;
  }

  .hero-copy {
    margin-top: 22px;
    font-size: 1rem;
    line-height: 1.62;
  }

  .tools {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 10px;
  }

  .tool-card {
    min-height: 150px;
    padding: 22px;
    border-radius: 18px;
  }

  .tool-title {
    font-size: 1.08rem;
  }

  .tool-description {
    font-size: 0.94rem;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
    margin-top: 62px;
    font-size: 0.88rem;
  }

  .footer-links {
    justify-content: flex-start;
  }
}
