:root {
  --bg: #07080a;
  --text: rgba(255, 255, 255, 0.92);
  --muted: rgba(255, 255, 255, 0.65);
  --muted2: rgba(255, 255, 255, 0.45);
  --border: rgba(255, 255, 255, 0.12);
  --surface: rgba(255, 255, 255, 0.06);
  --surface2: rgba(255, 255, 255, 0.09);
  --amber: #f59e0b;
  --shadow: 0 30px 120px rgba(0, 0, 0, 0.6);
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  line-height: 1.5;
}

::selection {
  background: rgba(245, 158, 11, 0.35);
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1100px, calc(100% - 48px));
  margin: 0 auto;
}

.bg {
  position: relative;
  min-height: 100dvh;
  overflow: hidden;
}

.bg__gradients {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.bg__gradients::before,
.bg__gradients::after {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 999px;
  filter: blur(48px);
}
.bg__gradients::before {
  top: -160px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(245, 158, 11, 0.2);
}
.bg__gradients::after {
  bottom: -180px;
  left: 18%;
  background: rgba(236, 72, 153, 0.15);
}

.bg__grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.25;
  background-image: linear-gradient(to right, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 64px 64px;
}

.bg__vignette {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.35) 45%, rgba(0, 0, 0, 0.75) 100%);
}

.header {
  padding-top: 40px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand__avatar {
  width: 44px;
  height: 44px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(245, 158, 11, 0.35);
  background: rgba(245, 158, 11, 0.1);
  flex: 0 0 auto;
}
.brand__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.brand__title {
  font-family: "Space Grotesk", Inter, system-ui, sans-serif;
  font-weight: 700;
  letter-spacing: -0.2px;
}
.brand__subtitle {
  font-size: 12px;
  color: var(--muted2);
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.85);
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}
.pill:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(245, 158, 11, 0.4);
  transform: translateY(-1px);
}
.pill:focus-visible {
  outline: 2px solid rgba(245, 158, 11, 0.7);
  outline-offset: 2px;
}
.pill__icon {
  width: 16px;
  height: 16px;
  color: rgba(245, 158, 11, 0.9);
}
.pill__icon svg {
  width: 16px;
  height: 16px;
  display: block;
}
.pill__label {
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
}
@media (max-width: 520px) {
  .pill__label {
    display: none;
  }
}

.main {
  padding: 40px 0 64px;
  position: relative;
}

.hero {
  display: grid;
  gap: 32px;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: end;
}
@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
    align-items: start;
  }
}

.h1 {
  margin: 0;
  font-family: "Space Grotesk", Inter, system-ui, sans-serif;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.08;
  letter-spacing: -0.8px;
}
.accent {
  color: rgba(245, 158, 11, 0.95);
}

.lead {
  margin: 14px 0 0;
  max-width: 640px;
  color: var(--muted);
}

.cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}
.btn:focus-visible {
  outline: 2px solid rgba(245, 158, 11, 0.7);
  outline-offset: 2px;
}
.btn__icon {
  width: 16px;
  height: 16px;
}
.btn__icon svg {
  width: 16px;
  height: 16px;
  display: block;
}
.btn--primary {
  background: rgba(245, 158, 11, 1);
  color: #0b0b0d;
}
.btn--primary:hover {
  background: rgba(245, 158, 11, 0.85);
  transform: translateY(-1px);
}
.btn--ghost {
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.9);
}
.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(245, 158, 11, 0.4);
  transform: translateY(-1px);
}

.status {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-top: 22px;
  font-size: 14px;
  color: var(--muted2);
}
.status__dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #34d399;
  box-shadow: 0 0 30px rgba(52, 211, 153, 0.6);
}

.card {
  border: 1px solid var(--border);
  background: var(--surface);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.card--feature {
  position: relative;
  overflow: hidden;
  padding: 18px 18px 16px;
}
.card__wm {
  position: absolute;
  right: -56px;
  top: -72px;
  width: 420px;
  height: 420px;
  opacity: 0.06;
  filter: invert(1) blur(0.3px);
  pointer-events: none;
  user-select: none;
}
.card__title {
  font-family: "Space Grotesk", Inter, system-ui, sans-serif;
  font-weight: 700;
  letter-spacing: -0.2px;
  font-size: 18px;
}
.list {
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
  color: var(--muted);
  font-size: 14px;
}
.dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: rgba(245, 158, 11, 0.95);
  margin-right: 10px;
  transform: translateY(-1px);
}
.tip {
  margin-top: 14px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.2);
  padding: 12px 12px;
  color: var(--muted2);
  font-size: 12px;
}

.links {
  margin-top: 48px;
}
.links__head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
}
.h2 {
  margin: 0;
  font-family: "Space Grotesk", Inter, system-ui, sans-serif;
  font-size: 26px;
  letter-spacing: -0.3px;
}
.muted {
  margin: 6px 0 0;
  color: var(--muted2);
  font-size: 14px;
}

.grid {
  margin-top: 16px;
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 980px) {
  .grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 560px) {
  .grid {
    grid-template-columns: 1fr;
  }
}

.card--link {
  position: relative;
  overflow: hidden;
  padding: 18px;
  display: flex;
  gap: 14px;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
  background: rgba(255, 255, 255, 0.05);
}
.card--link::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.25s ease;
  background: radial-gradient(240px 240px at 50% -10%, rgba(245, 158, 11, 0.2), transparent 55%),
    radial-gradient(240px 240px at 20% 120%, rgba(236, 72, 153, 0.12), transparent 55%);
}
.card--link:hover {
  transform: translateY(-2px);
  border-color: rgba(245, 158, 11, 0.4);
  background: rgba(255, 255, 255, 0.08);
}
.card--link:hover::before {
  opacity: 1;
}
.card--link:focus-visible {
  outline: 2px solid rgba(245, 158, 11, 0.7);
  outline-offset: 2px;
}

.card__icon {
  width: 44px;
  height: 44px;
  border-radius: 18px;
  border: 1px solid rgba(245, 158, 11, 0.35);
  background: rgba(245, 158, 11, 0.1);
  color: rgba(245, 158, 11, 0.9);
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  position: relative;
  z-index: 1;
}
.card__icon svg {
  width: 22px;
  height: 22px;
  display: block;
}
.card__body {
  min-width: 0;
  position: relative;
  z-index: 1;
}
.card__h {
  font-weight: 700;
  letter-spacing: -0.2px;
  font-size: 16px;
}
.card__p {
  margin-top: 6px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}
.card__go {
  margin-top: 12px;
  font-weight: 700;
  color: rgba(245, 158, 11, 0.85);
  font-size: 13px;
}

.footer {
  margin-top: 56px;
  padding-top: 22px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  color: var(--muted2);
  font-size: 14px;
}
.footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
}
.footer__links a:hover {
  color: rgba(255, 255, 255, 0.9);
}

@media (prefers-reduced-motion: reduce) {
  .btn,
  .pill,
  .card--link {
    transition: none !important;
  }
}


