/*
Copyright (c) 2026 Duckie Technologies. All Rights Reserved. Proprietary and confidential. Unauthorized copying, distribution, modification, or reuse is strictly prohibited.
*/
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;700&family=DM+Serif+Display:ital@0;1&display=swap');

:root {
  --bg: #070b14;
  --panel: rgba(16, 25, 41, 0.82);
  --line: rgba(148, 184, 232, 0.24);
  --text: #ecf4ff;
  --muted: #a4bbd9;
  --brand: #3cd4b8;
  --brand-2: #4ea9ff;
  --shadow: 0 18px 55px rgba(0, 0, 0, 0.34);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  font-family: 'Space Grotesk', 'Trebuchet MS', sans-serif;
  color: var(--text);
  background: radial-gradient(1200px 600px at 10% -10%, rgba(78, 169, 255, 0.2), transparent 55%),
    radial-gradient(1000px 500px at 90% 0%, rgba(60, 212, 184, 0.16), transparent 58%),
    var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
}

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

.container {
  width: min(1180px, calc(100% - 2.2rem));
  margin-inline: auto;
}

.bg-grid {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(to right, rgba(109, 141, 190, 0.08) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(109, 141, 190, 0.08) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(circle at center, black, transparent 85%);
  z-index: -2;
}

.bg-orb {
  position: fixed;
  width: 34rem;
  height: 34rem;
  border-radius: 50%;
  filter: blur(50px);
  opacity: 0.3;
  z-index: -1;
  animation: drift 13s ease-in-out infinite;
}

.orb-a {
  background: linear-gradient(140deg, var(--brand), transparent 70%);
  top: -8rem;
  left: -10rem;
}

.orb-b {
  background: linear-gradient(140deg, var(--brand-2), transparent 70%);
  right: -10rem;
  top: 20%;
  animation-delay: -5s;
}

@keyframes drift {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(0, -18px, 0) scale(1.04);
  }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 8;
  background: rgba(7, 11, 20, 0.75);
  backdrop-filter: blur(9px);
  border-bottom: 1px solid rgba(146, 183, 232, 0.14);
}

.nav-shell {
  min-height: 4.35rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  font-family: 'DM Serif Display', Georgia, serif;
  letter-spacing: 0.02em;
  font-size: 1.45rem;
}

.nav-links {
  display: flex;
  gap: 1.1rem;
  font-weight: 500;
}

.nav-links a {
  color: var(--muted);
  transition: color 180ms ease, transform 180ms ease;
}

.nav-links a:hover {
  color: var(--text);
  transform: translateY(-1px);
}

.hero {
  padding: 4.8rem 0 3.1rem;
}

.eyebrow {
  display: inline-flex;
  margin: 0;
  font-size: 0.88rem;
  color: #9dd5cb;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.hero h1 {
  font-family: 'DM Serif Display', Georgia, serif;
  margin: 0.45rem 0 0;
  font-size: clamp(2.2rem, 7vw, 4rem);
  line-height: 1.07;
  max-width: 12.5ch;
}

.hero-sub {
  margin: 1.25rem 0 0;
  max-width: 62ch;
  color: var(--muted);
}

.hero-actions {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.button {
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0.63rem 1.05rem;
  font-weight: 600;
  transition: transform 190ms ease, box-shadow 190ms ease, border-color 190ms ease, background 190ms ease;
}

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

.button-primary {
  background: linear-gradient(135deg, var(--brand), #6cedd6);
  color: #03261f;
  box-shadow: 0 10px 30px rgba(60, 212, 184, 0.3);
}

.button-ghost {
  border-color: rgba(174, 208, 255, 0.3);
  color: var(--text);
  background: rgba(17, 27, 44, 0.55);
}

.button-discord {
  border-color: rgba(143, 194, 255, 0.48);
  background: rgba(18, 34, 58, 0.72);
}

.hero-meta {
  margin-top: 1.45rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.hero-meta span {
  background: rgba(22, 35, 57, 0.75);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  padding: 0.38rem 0.7rem;
  font-size: 0.89rem;
}

.hero-meta strong {
  color: var(--text);
}

.section {
  padding: 1.5rem 0 2.4rem;
}

.section-head h2 {
  margin: 0;
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(1.6rem, 4vw, 2.1rem);
}

.section-head p {
  margin-top: 0.3rem;
  color: var(--muted);
}

.service-grid {
  margin-top: 1rem;
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.service-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 1.1rem;
  padding: 1rem;
  box-shadow: var(--shadow);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(174, 208, 255, 0.45);
  box-shadow: 0 22px 42px rgba(0, 0, 0, 0.34);
}

.service-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
}

.service-top h3 {
  margin: 0;
  font-size: 1.14rem;
}

.status-pill {
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.2rem 0.55rem;
  border: 1px solid;
}

.status-online {
  background: rgba(46, 213, 170, 0.14);
  border-color: rgba(46, 213, 170, 0.45);
  color: #96f4dc;
}

.service-card p {
  color: var(--muted);
  margin: 0.65rem 0 0.55rem;
}

.service-card ul {
  margin: 0;
  padding-left: 1rem;
  color: #c4d7f3;
}

.service-link {
  display: inline-flex;
  margin-top: 0.85rem;
  color: #8ee6d5;
  font-weight: 600;
}

.service-link:hover {
  color: #bcffef;
}

.split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.support-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.95rem;
}

.support-copy h3 {
  margin: 0;
  font-size: 1.16rem;
}

.support-copy p {
  margin: 0.45rem 0 0;
  color: var(--muted);
}

.panel {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 1rem;
  padding: 1rem;
}

.panel h3 {
  margin: 0;
  font-size: 1.06rem;
}

.panel p {
  margin: 0.55rem 0 0;
  color: var(--muted);
}

.panel a {
  color: #95d8ff;
}

.status-offline {
  background: rgba(255, 109, 109, 0.15);
  border-color: rgba(255, 109, 109, 0.58);
  color: #ffcece;
}

.status-main {
  padding: 2rem 0 2.7rem;
}

.status-head h1 {
  margin: 0.45rem 0 0;
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(2rem, 5vw, 3rem);
}

.status-summary {
  margin-top: 1.2rem;
}

.status-overview-card {
  padding: 1rem 1.05rem;
}

.status-overview-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.65rem;
}

.status-overview-top h2 {
  margin: 0;
  font-size: 1.15rem;
}

.status-overview-text {
  margin: 0.55rem 0 0;
  color: var(--muted);
}

.status-meta-row {
  margin-top: 0.7rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: #bfd2ec;
}

.status-grid {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
}

.status-service-card {
  padding: 0.95rem;
}

.status-service-card p {
  margin: 0.55rem 0 0;
  color: var(--muted);
}

.site-footer {
  border-top: 1px solid rgba(146, 183, 232, 0.14);
  margin-top: 0.8rem;
}

.footer-shell {
  min-height: 4.3rem;
  display: flex;
  gap: 0.7rem;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  gap: 0.85rem;
}

.footer-links a {
  color: #c4d7f3;
}

.legal-main {
  padding: 2.1rem 0 3rem;
}

.legal-page {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 1rem;
  padding: 1.2rem;
}

.legal-page h1 {
  margin: 0;
  font-family: 'DM Serif Display', Georgia, serif;
}

.legal-page h2 {
  margin: 1.2rem 0 0.35rem;
  font-size: 1.06rem;
}

.legal-page p,
.legal-page li {
  color: var(--muted);
}

@media (max-width: 900px) {
  .service-grid,
  .split,
  .status-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 3.6rem;
  }

  .support-panel {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 700px) {
  .nav-shell {
    flex-direction: column;
    align-items: flex-start;
    padding: 0.75rem 0;
    gap: 0.45rem;
  }

  .nav-links {
    flex-wrap: wrap;
    gap: 0.65rem;
  }

  .hero-actions {
    width: 100%;
  }

  .button {
    width: 100%;
    text-align: center;
  }
}

img.twemoji-discord,
img.emoji {
  width: 1.05em;
  height: 1.05em;
  margin: 0 0.04em;
  vertical-align: -0.14em;
  display: inline-block;
  pointer-events: none;
}

