:root {
  --bg: #0b1220; /* page background */
  --card: #0f172a; /* card background */
  --text: #e5e7eb; /* base text */
  --muted: #94a3b8; /* secondary text */
  --brand: #0ea5e9; /* accent color */
  --brand-2: #22d3ee; /* accent gradient second color */
  --ring: rgba(14, 165, 233, 0.35);
  --success: #22c55e;
  --danger: #ef4444;
}
@media (prefers-color-scheme: light) {
  :root {
    --bg: #f8fafc;
    --card: #ffffff;
    --text: #0f172a;
    --muted: #475569;
    --ring: rgba(14, 165, 233, 0.25);
  }
}

* {
  box-sizing: border-box;
}
html,
body {
  height: 100%;
}
body {
  margin: 0;
  font-family:
    "Inter",
    system-ui,
    -apple-system,
    Segoe UI,
    Roboto,
    Helvetica,
    Arial,
    "Apple Color Emoji",
    "Segoe UI Emoji";
  color: var(--text);
  background:
    radial-gradient(
      1200px 800px at 20% 20%,
      rgba(34, 211, 238, 0.09),
      transparent 60%
    ),
    radial-gradient(
      1200px 800px at 80% 30%,
      rgba(14, 165, 233, 0.1),
      transparent 60%
    ),
    linear-gradient(180deg, var(--bg), var(--bg));
  display: grid;
  place-items: center;
  padding: 0.4rem;
}

.container {
  width: 100%;
  max-width: 960px;
  margin-bottom: 1.5rem;
}

.card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0)),
    var(--card);
  border: 1px solid rgba(148, 163, 184, 0.15);
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(2, 6, 23, 0.35);
  overflow: hidden;
  position: relative;
  isolation: isolate;
}

.glow {
  position: absolute;
  inset: -1px;
  background: conic-gradient(
    from 0deg at 50% 50%,
    var(--brand),
    var(--brand-2),
    transparent 60%
  );
  filter: blur(40px);
  opacity: 0.15;
  z-index: -1;
}

header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.25rem 0.75rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}
.logo-badge {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
}
.logo-badge > img {
  width: 36px;
  height: 36px;
  object-fit: cover;
}

.pill {
  font-size: 0.85rem;
  color: var(--muted);
  border: 1px solid rgba(148, 163, 184, 0.25);
  padding: 0.35rem 0.6rem;
  border-radius: 999px;
}

.hero {
  padding: 3.25rem 1.5rem 2rem;
  text-align: center;
}
.headline {
  font-size: clamp(2.2rem, 6vw, 3.4rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 1rem;
}
.subhead {
  color: var(--muted);
  max-width: 680px;
  margin: 0 auto;
}

.card-content {
  display: grid;
  width: 100%;
  justify-items: center;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  padding: 0 1.5rem 2rem;
}

.card_web {
  width: 100%;
  max-width: 330px;
  height: 200px;
  border-radius: 1rem;
  border: 1px solid rgba(148, 163, 184, 0.15);
  box-shadow: 0 10px 30px rgba(2, 6, 23, 0.25);
  overflow: hidden;
  cursor: pointer;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  transition: all 0.3s ease;
  position: relative;
  background-color: var(--card);

  &:hover {
    border-color: var(--brand);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(2, 6, 23, 0.45);
  }

  &:active {
    transform: scale(0.98);
  }
}

.card_web img {
  position: absolute;
  object-fit: cover;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  transition: transform 0.3s ease;
}

.card_web:hover img {
  transform: scale(1.05);
}

.card_web span {
  padding: 0.4rem 1rem;
  background: rgba(15, 23, 42, 0.8);
  backdrop-filter: blur(4px);
  font-weight: 600;
  border-radius: 999px;
  font-size: 0.85rem;
  text-align: center;
  width: fit-content;
  color: #fff;
  position: relative;
  bottom: 15px;
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.divider {
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(148, 163, 184, 0.28),
    transparent
  );
  margin: 0 1.25rem;
}

footer {
  padding: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.footer-left {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.legal-nav {
  display: flex;
  gap: 1rem;
}

.legal-nav a {
  font-size: 0.75rem;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

.legal-nav a:hover {
  color: var(--brand);
}

.socials {
  display: flex;
  gap: 0.5rem;
}
.iconbtn {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(148, 163, 184, 0.3);
  background: rgba(148, 163, 184, 0.06);
  text-decoration: none;
  color: var(--text);
  transition: all 0.2s ease;
}
.iconbtn:hover {
  border-color: var(--brand);
  background: rgba(14, 165, 233, 0.1);
  color: var(--brand);
}
.iconbtn:active {
  transform: translateY(1px);
}

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

@media (max-width: 640px) {
  .hero {
    padding: 2rem 1rem 1.5rem;
  }
  .card-content {
    gap: 1.5rem;
  }
  footer {
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }
}
