:root {
  --suite-bg: #121212;
  --suite-sidebar: #000;
  --suite-surface: #181818;
  --suite-surface-hover: #202020;
  --suite-border: #282828;
  --suite-text: #fff;
  --suite-muted: #b3b3b3;
  --suite-green: #1ed760;
  --suite-green-hover: #3be477;
  --suite-shadow: 0 18px 50px rgba(0, 0, 0, .28);
}

html,
body {
  background: var(--suite-bg);
}

body {
  overflow: hidden;
  color: var(--suite-text);
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

.suite-app {
  display: flex;
  width: 100%;
  height: 100vh;
  min-height: 0;
  background: var(--suite-bg);
}

.suite-sidebar {
  position: relative;
  z-index: 45;
  display: flex;
  flex: 0 0 260px;
  flex-direction: column;
  width: 260px;
  min-height: 100vh;
  padding: 24px 14px 16px;
  background: var(--suite-sidebar);
}

.suite-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 10px 28px;
  color: #fff;
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -.02em;
  text-decoration: none;
}

.suite-brand-mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--suite-green);
  color: #000;
}

.suite-brand-mark svg,
.suite-nav-item svg,
.suite-mobile-item svg,
.suite-discord-link svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
}

.suite-nav {
  display: grid;
  gap: 4px;
}

.suite-nav-label {
  margin: 21px 14px 8px;
  color: #686868;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.suite-nav-item {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 44px;
  padding: 12px 14px;
  border-radius: 999px;
  color: var(--suite-muted);
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  transition: background 180ms ease, color 180ms ease;
}

.suite-nav-item:hover,
.suite-nav-item:focus-visible,
.suite-nav-item.active {
  background: #1f1f1f;
  color: #fff;
}

.suite-nav-item.active {
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .04);
}

.suite-nav-item.active svg {
  color: var(--suite-green);
}

.suite-sidebar-spacer {
  flex: 1;
  min-height: 24px;
}

.suite-discord-link {
  display: flex;
  align-items: center;
  gap: 11px;
  margin: 8px 2px 0;
  padding: 12px 14px;
  border: 1px solid #303030;
  border-radius: 999px;
  background: #181818;
  color: #fff;
  font-size: 13px;
  font-weight: 750;
  text-decoration: none;
  transition: border-color 180ms ease, background 180ms ease;
}

.suite-discord-link:hover,
.suite-discord-link:focus-visible {
  border-color: #5865f2;
  background: #202020;
}

.suite-page {
  min-width: 0;
  height: 100vh;
  flex: 1;
  overflow-x: hidden;
  overflow-y: auto;
  background: linear-gradient(180deg, #1f1f1f 0, var(--suite-bg) 240px, var(--suite-bg) 100%);
  scrollbar-color: #535353 transparent;
}

.suite-page h1,
.suite-page h2,
.suite-page h3,
.suite-page .brand,
.suite-page .page-head h1 {
  font-family: "Space Grotesk", Inter, sans-serif;
}

.suite-page .card,
.suite-page .feature,
.suite-page .community-cta,
.suite-page .strip,
.suite-page .phone {
  border-color: var(--suite-border);
  background-color: var(--suite-surface);
  box-shadow: var(--suite-shadow);
}

.suite-page .card,
.suite-page .feature,
.suite-page .community-cta {
  border-radius: 12px;
}

.suite-page .feature:hover,
.suite-page .feature:focus-visible {
  border-color: #3d3d3d;
  background: var(--suite-surface-hover);
}

.suite-page .button.primary,
.suite-page .add-button,
.suite-page .step {
  border-color: var(--suite-green);
}

.suite-page .button.primary {
  background: var(--suite-green);
  color: #041108;
}

.suite-page .button.primary:hover,
.suite-page .button.primary:focus-visible {
  background: var(--suite-green-hover);
}

.suite-page footer {
  margin-bottom: 0;
}

.suite-mobile-nav {
  display: none;
}

@media (max-width: 900px) {
  body {
    overflow: auto;
  }

  .suite-app {
    display: block;
    height: auto;
    min-height: 100vh;
  }

  .suite-sidebar {
    display: none;
  }

  .suite-page {
    height: auto;
    min-height: 100vh;
    overflow: visible;
    padding-bottom: calc(72px + env(safe-area-inset-bottom));
  }

  .suite-mobile-nav {
    position: fixed;
    z-index: 160;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    grid-template-columns: repeat(8, minmax(46px, 1fr));
    height: calc(70px + env(safe-area-inset-bottom));
    padding: 0 4px env(safe-area-inset-bottom);
    border-top: 1px solid var(--suite-border);
    background: rgba(0, 0, 0, .96);
    backdrop-filter: blur(16px);
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scrollbar-width: none;
  }

  .suite-mobile-nav::-webkit-scrollbar {
    display: none;
  }

  .suite-mobile-item {
    display: flex;
    min-width: 0;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    border-radius: 8px;
    color: #8d8d8d;
    font-size: 8.5px;
    font-weight: 750;
    line-height: 1;
    text-decoration: none;
  }

  .suite-mobile-item.active,
  .suite-mobile-item:hover,
  .suite-mobile-item:focus-visible {
    color: #fff;
  }

  .suite-mobile-item.active svg {
    color: var(--suite-green);
  }
}

@media (max-width: 420px) {
  .suite-mobile-item {
    font-size: 8px;
  }

  .suite-mobile-item svg {
    width: 19px;
    height: 19px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .suite-nav-item,
  .suite-discord-link {
    transition: none;
  }
}
