:root {
  --bg: #0A0A0A;
  --text: #FFFFFF;
  --muted: #3A3A3A;
  --accent: #5865F2;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  overflow: hidden;
  height: 100vh;
  width: 100vw;
}

.nav-menu-button,
.nav-mobile-panel {
  display: none;
}

.landing-container {
  width: 1920px;
  height: 1080px;
  position: relative;
  margin: 0 auto;
  transform-origin: top center;
  background: #0A0A0A;
}

@media (max-width: 900px) {
  body {
    overflow-x: hidden;
    overflow-y: auto;
    height: auto;
    min-height: 100vh;
    width: 100%;
  }

  .landing-container {
    width: 100%;
    min-height: 100vh;
    height: auto;
    overflow: hidden;
  }

  .navbar {
    width: 100vw !important;
    height: 68px;
    padding: 0 16px;
    justify-content: space-between;
  }

  .nav-links,
  .nav-add-discord {
    display: none;
  }

  .nav-auth {
    margin-left: auto;
    display: flex;
    gap: 8px;
  }

  .nav-auth .btn-login {
    min-width: 78px;
    height: 38px;
    padding: 0 14px !important;
  }

  .nav-logo span {
    font-size: 18px;
  }

  .nav-menu-button {
    width: 40px;
    height: 40px;
    border: 1px solid #2E2E2E;
    border-radius: 9px;
    background: #101010;
    color: #fff;
    display: grid;
    place-items: center;
    padding: 9px;
  }

  .nav-menu-button span {
    display: block;
    width: 19px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
  }

  .nav-mobile-panel {
    position: fixed;
    inset: 68px 0 auto 0;
    display: none;
    background: rgba(10, 10, 10, .98);
    border-bottom: 1px solid #1C1C1C;
    padding: 16px;
    z-index: 999;
  }

  .navbar.mobile-open .nav-mobile-panel {
    display: grid;
    gap: 16px;
  }

  .nav-mobile-links {
    display: grid;
    gap: 6px;
  }

  .nav-mobile-links a {
    min-height: 44px;
    border-radius: 9px;
    color: #D7D7D7;
    text-decoration: none;
    display: flex;
    align-items: center;
    padding: 0 12px;
    font-size: 15px;
    font-weight: 700;
  }

  .nav-mobile-links a.active {
    background: #151515;
    color: #fff;
  }

  .nav-mobile-auth {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .nav-mobile-auth .btn {
    width: 100%;
    min-height: 42px;
  }

  .hero-title,
  .hero-desc,
  .hero-btns,
  .hero-legal,
  .card-rect-4,
  .waves {
    position: relative;
    left: auto;
    top: auto;
  }

  .hero-title {
    margin: 118px auto 0;
    width: min(100% - 32px, 560px);
    font-size: clamp(42px, 13vw, 68px);
    line-height: .96;
  }

  .hero-desc {
    width: min(100% - 32px, 560px);
    margin: 28px auto 0;
    font-size: 18px;
  }

  .hero-btns {
    width: min(100% - 32px, 560px);
    margin: 28px auto 0;
    flex-wrap: wrap;
  }

  .btn-hero {
    flex: 1 1 190px;
    justify-content: center;
  }

  .hero-legal {
    width: min(100% - 32px, 560px);
    margin: 14px auto 0;
    line-height: 1.5;
  }

  .card-rect-4 {
    display: none;
  }

  .card-rect-8,
  .card-rect-8 svg {
    width: 100%;
  }

  .commands-page-content {
    max-width: none !important;
    padding: 0 16px !important;
  }

  .commands-main-title {
    margin-top: 112px !important;
    font-size: clamp(30px, 9vw, 46px);
  }

  .commands-main-desc {
    margin-bottom: 28px !important;
  }

  .module-pills {
    justify-content: flex-start !important;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 8px;
    margin-bottom: 24px;
    gap: 8px;
    scrollbar-width: thin;
  }

  .module-pill {
    flex: 0 0 auto;
    min-height: 34px;
    padding: 6px 12px;
    font-size: 13px;
    display: inline-flex;
    align-items: center;
  }

  .commands-table-wrapper {
    overflow-x: auto;
    margin-bottom: 56px;
  }

  .commands-table {
    width: max-content;
    min-width: 100%;
  }

  .commands-table th,
  .commands-table td {
    padding: 12px 14px;
  }

  .commands-table th:nth-child(1),
  .commands-table td:nth-child(1) {
    min-width: 128px;
  }

  .commands-table th:nth-child(2),
  .commands-table td:nth-child(2) {
    min-width: 220px;
    max-width: 320px;
  }

  .commands-table th:nth-child(3),
  .commands-table td:nth-child(3) {
    min-width: 180px;
    max-width: 300px;
  }

  .pricing-main {
    width: 100%;
    padding: 112px 16px 72px;
  }

  .pricing-copy {
    text-align: left;
  }

  .pricing-plans {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 901px) and (max-width: 1280px) {
  .landing-container {
    transform: scale(.68);
  }
}
.navbar {
  position: absolute;
  width: 1920px;
  height: 72px;
  left: 0px;
  top: 0px;
  background: #0A0A0A;
  border-bottom: 1px solid #1C1C1C;
  z-index: 1000;
  display: flex;
  align-items: center;
  padding: 0 40px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 20px;
}

.nav-links {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 40px;
}

.nav-links a {
  color: #848484;
  text-decoration: none;
  font-size: 16px;
  position: relative;
  padding: 4px 0;
  transition: all 0.2s;
}

.nav-links a.active {
  color: #FFFFFF;
}

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2px;
  background: #FFFFFF;
  border-radius: 2px;
}

.nav-auth {
  margin-left: auto;
  display: flex;
  gap: 12px;
}

.btn {
  height: 34px;
  padding: 0 20px;
  border-radius: 9px;
  font-size: 12px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.btn-login { border: 1px solid #2E2E2E; color: #fff; background: transparent; width: 82px; }
.btn-primary { background: #fff; color: #000; }
.hero-title {
  position: absolute;
  left: 422px;
  top: 180px;
  font-weight: 900;
  font-size: 72px;
  line-height: 1;
  z-index: 10;
  display: flex;
  flex-direction: column;
}

.hero-title span { color: var(--muted); }

.hero-desc {
  position: absolute;
  width: 550px;
  left: 422px;
  top: 500px;
  font-size: 22px;
  color: var(--muted);
  line-height: 1.3;
  z-index: 10;
}

.hero-desc span { color: #FFFFFF; }

.hero-btns {
  position: absolute;
  left: 422px;
  top: 610px;
  display: flex;
  gap: 16px;
  z-index: 10;
}

.btn-hero {
  height: 44px;
  padding: 0 24px;
  border-radius: 9px;
  font-size: 15px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.btn-hero.outline { 
  border: 1px solid #2E2E2E; 
  color: #fff; 
  transition: border-color 0.2s ease;
}

.btn-hero.outline:hover {
  border-color: #444;
}

.btn-text {
  transition: transform 0.2s ease, color 0.2s ease;
  display: inline-block;
}

.btn-hero.outline:hover .btn-text {
  transform: translateX(3px);
  color: #fff;
}

.btn-hero svg {
  transition: transform 0.2s ease;
}

.btn-hero.outline:hover svg {
  transform: translateX(4px);
}

.hero-legal {
  position: absolute;
  left: 422px;
  top: 670px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.44);
  z-index: 10;
}

.hero-legal a {
  color: #FFFFFF;
  text-decoration: none;
  font-weight: 700;
}
.card-rect-4 {
  position: absolute;
  width: 442px;
  height: 492px;
  left: 1265px;
  top: 200px;
  background: #111111;
  border: 2px solid #202020;
  border-radius: 25px;
  z-index: 5;
}

.card-rect-8 {
  position: absolute;
  width: 442px;
  height: 147px;
  left: -2px;
  top: 0px;
  border-radius: 25px 25px 0px 0px;
}

.card-rect-8 svg { width: 442px; height: 147px; }

.card-atlas-name {
  position: absolute;
  width: 51px;
  height: 24px;
  left: 143px;
  top: 49px;
  font-weight: 700;
  font-size: 20px;
  line-height: 24px;
  color: #FFFFFF;
}

.card-atlas-tag {
  position: absolute;
  width: 85px;
  height: 19px;
  left: 143px;
  top: 73px;
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  color: #FFFFFF;
}

.card-rect-5 {
  position: absolute;
  width: 82px;
  height: 80px;
  left: 47px;
  top: 44px;
  background: #1A1A1A;
  border: 2px solid #2A2A2A;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-rect-5 svg {
  width: 32px;
  height: 28px;
}

.card-vector-1 {
  position: absolute;
  width: 380px;
  height: 0px;
  left: 31px;
  top: 153px;
  border: 2px solid #202020;
}

.card-rect-9 {
  position: absolute;
  width: 442px;
  height: 15px;
  left: 0;
  top: 132px;
  background: linear-gradient(360deg, #111111 0%, rgba(17, 17, 17, 0) 100%);
}

.cmd-group {
  position: absolute;
  width: 380px;
  height: 61px;
  left: 31px;
  background: #0E0E0E;
  border: 1px solid #202020;
  border-radius: 16px;
  display: flex;
  align-items: center;
  padding: 0 21px;
}

.cmd-icon-v2 {
  width: 2px;
  height: 20px;
  background: #5865F2 !important;
  transform: rotate(20deg);
  border-radius: 1px;
  flex-shrink: 0;
}

.cmd-text-name {
  margin-left: 20px;
  font-size: 20px;
  line-height: 24px;
  color: #FFFFFF;
}

.cmd-text-meta {
  margin-left: auto;
  font-size: 16px;
  line-height: 19px;
  color: rgba(255, 255, 255, 0.39);
}
.waves {
  position: absolute;
  bottom: 72px;
  left: 0;
  width: 1920px;
  pointer-events: none;
  opacity: 0.6;
  z-index: 1;
}
.legal-page {
  width: 1920px;
  min-height: 1080px;
  position: relative;
  margin: 0 auto;
  background: #0A0A0A;
  padding-top: 120px;
  padding-bottom: 100px;
  overflow-y: auto;
}

.legal-container {
  width: 1000px;
  margin: 0 auto;
  padding: 60px;
  background: #0E0E0E;
  border: 1px solid #1C1C1C;
  border-radius: 25px;
  position: relative;
  z-index: 10;
}

.legal-content {
  color: #848484;
  line-height: 1.7;
  font-size: 16px;
}

.legal-content h1 { color: #fff; font-size: 42px; margin-bottom: 40px; font-weight: 900; }
.legal-content h2 { color: #fff; font-size: 24px; margin-top: 40px; margin-bottom: 20px; font-weight: 700; }
.legal-content p { margin-bottom: 20px; }
.legal-content ul { margin-bottom: 20px; padding-left: 20px; }
.legal-content li { margin-bottom: 8px; }
.legal-content strong { color: #fff; }
.legal-content a { color: #5865F2; text-decoration: none; font-weight: 600; }
.commands-page-content {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding-top: 140px;
  min-height: 80vh;
}

.commands-main-title {
  font-size: 42px;
  font-weight: 800;
  text-align: left;
  color: #fff;
  margin-bottom: 40px;
}

.commands-argument-legend {
  margin: -42px auto 32px;
  max-width: 720px;
  color: #848484;
  font-size: 13px;
  line-height: 1.6;
  text-align: center;
}

.module-pills {
  display: flex;
  justify-content: flex-start;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.module-pill {
  min-height: 36px;
  padding: 7px 16px;
  background: transparent;
  border: 1px solid #1C1C1C;
  border-radius: 6px;
  color: #848484;
  cursor: pointer;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.2s;
}

.module-pill:hover {
  border-color: #333;
  color: #fff;
}

.module-pill.active {
  background: #1C1C1C;
  border-color: #333;
  color: #fff;
}

.commands-table-wrapper {
  width: 100%;
  margin-bottom: 100px;
  border: 1px solid #1C1C1C;
  border-radius: 12px;
  overflow-x: auto;
  overflow-y: hidden;
  background: #0E0E0E;
  min-height: 0;
  transition: height 0.3s ease-in-out;
}

.commands-table {
  width: 100%;
  border-collapse: collapse;
}

.commands-table tbody {
  transition: opacity 0.2s ease-in-out;
}

.commands-table-wrapper.loading tbody {
  opacity: 0.6;
}

.commands-table th {
  text-align: left;
  padding: 14px 24px;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  background: #111111;
  border-bottom: 1px solid #1C1C1C;
}

.commands-table tr:nth-child(even) td {
  background: rgba(255, 255, 255, 0.02);
}

.commands-table td {
  padding: 16px 24px;
  color: #848484;
  font-size: 14px;
  line-height: 1.5;
  border-bottom: 1px solid #161616;
}

.commands-table tr:last-child td {
  border-bottom: none;
}

.cmd-name-wrapper {
  display: flex;
  align-items: center;
  gap: 8px;
}

.cmd-slash {
  color: #5865F2;
  font-weight: 900;
  font-size: 16px;
  user-select: none;
}

.cmd-name-text {
  color: #fff;
  font-weight: 700;
  font-size: 15px;
}

.cmd-desc-text {
  margin-bottom: 6px;
}

.cmd-usage-text {
  font-size: 14px;
  color: #CACACA;
  font-family: inherit;
  font-weight: 500;
}

.cmd-arg {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  padding: 1px 6px;
  border-radius: 4px;
  margin: 0 2px;
  font-weight: 600;
}
.footer {
  position: absolute;
  width: 1920px;
  height: 60px;
  left: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  background: transparent;
}

.footer-top-text { font-size: 12px; color: #3A3A3A; margin-bottom: 8px; }
.footer-nav { display: flex; gap: 16px; align-items: center; font-size: 12px; color: #3A3A3A; }
.dot { width: 3px; height: 3px; background: #3A3A3A; border-radius: 50%; }

@media (max-width: 900px) {
  body {
    overflow-x: hidden;
    overflow-y: auto;
    height: auto;
    min-height: 100vh;
    width: 100%;
  }

  .landing-container {
    width: 100%;
    min-height: 100vh;
    height: auto;
    overflow: hidden;
  }

  .navbar {
    width: 100vw !important;
    height: 68px;
    padding: 0 16px;
    justify-content: space-between;
  }

  .nav-links,
  .nav-add-discord {
    display: none;
  }

  .nav-auth {
    margin-left: auto;
    display: flex;
    gap: 8px;
  }

  .nav-auth .btn-login {
    min-width: 78px;
    height: 38px;
    padding: 0 14px !important;
  }

  .nav-logo span {
    font-size: 18px;
  }

  .nav-menu-button {
    width: 40px;
    height: 40px;
    border: 1px solid #2E2E2E;
    border-radius: 9px;
    background: #101010;
    color: #fff;
    display: grid;
    place-items: center;
    padding: 9px;
  }

  .nav-menu-button span {
    display: block;
    width: 19px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
  }

  .nav-mobile-panel {
    position: fixed;
    inset: 68px 0 auto 0;
    display: none;
    background: rgba(10, 10, 10, .98);
    border-bottom: 1px solid #1C1C1C;
    padding: 16px;
    z-index: 999;
  }

  .navbar.mobile-open .nav-mobile-panel {
    display: grid;
    gap: 16px;
  }

  .nav-mobile-links {
    display: grid;
    gap: 6px;
  }

  .nav-mobile-links a {
    min-height: 44px;
    border-radius: 9px;
    color: #D7D7D7;
    text-decoration: none;
    display: flex;
    align-items: center;
    padding: 0 12px;
    font-size: 15px;
    font-weight: 700;
  }

  .nav-mobile-links a.active {
    background: #151515;
    color: #fff;
  }

  .nav-mobile-auth {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .nav-mobile-auth .btn {
    width: 100%;
    min-height: 42px;
  }

  .hero-title,
  .hero-desc,
  .hero-btns,
  .hero-legal,
  .card-rect-4 {
    position: relative;
    left: auto;
    top: auto;
  }

  .waves {
    bottom: 72px;
    left: 50%;
    width: 1400px;
    transform: translateX(-50%);
  }

  .hero-title {
    margin: 118px auto 0;
    width: min(100% - 32px, 560px);
    font-size: clamp(42px, 13vw, 68px);
    line-height: .96;
  }

  .hero-desc {
    width: min(100% - 32px, 560px);
    margin: 28px auto 0;
    font-size: 18px;
  }

  .hero-btns {
    width: min(100% - 32px, 560px);
    margin: 28px auto 0;
    flex-wrap: wrap;
  }

  .btn-hero {
    flex: 1 1 190px;
    justify-content: center;
  }

  .hero-legal {
    width: min(100% - 32px, 560px);
    margin: 14px auto 0;
    line-height: 1.5;
  }

  .card-rect-4 {
    display: none;
  }

  .card-rect-8,
  .card-rect-8 svg {
    width: 100%;
  }

  .commands-page-content {
    max-width: none !important;
    padding: 0 16px !important;
  }

  .commands-main-title {
    margin-top: 112px !important;
    font-size: clamp(30px, 9vw, 46px);
  }

  .commands-main-desc {
    margin-bottom: 28px !important;
  }

  .module-pills {
    justify-content: flex-start !important;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 8px;
    margin-bottom: 24px;
    gap: 8px;
    scrollbar-width: thin;
  }

  .module-pill {
    flex: 0 0 auto;
    min-height: 34px;
    padding: 6px 12px;
    font-size: 13px;
    display: inline-flex;
    align-items: center;
  }

  .commands-table-wrapper {
    overflow-x: auto;
    margin-bottom: 56px;
  }

  .commands-table {
    width: max-content;
    min-width: 100%;
  }

  .commands-table th,
  .commands-table td {
    padding: 12px 14px;
  }

  .commands-table th:nth-child(1),
  .commands-table td:nth-child(1) {
    min-width: 128px;
  }

  .commands-table th:nth-child(2),
  .commands-table td:nth-child(2) {
    min-width: 220px;
    max-width: 320px;
  }

  .commands-table th:nth-child(3),
  .commands-table td:nth-child(3) {
    min-width: 180px;
    max-width: 300px;
  }

  .pricing-main {
    width: 100%;
    padding: 112px 16px 72px;
  }

  .pricing-copy {
    text-align: left;
  }

  .pricing-plans {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 901px) and (max-width: 1280px) {
  .landing-container {
    transform: scale(.68);
  }
}
