:root {
  --bg: #07090d;
  --bg-soft: #0a0d12;
  --surface: #0d1118;
  --surface-2: #11161f;
  --surface-3: #151b24;
  --text: #f5f7fa;
  --muted: #929aa8;
  --muted-2: #697383;
  --line: rgba(255, 255, 255, 0.085);
  --line-strong: rgba(255, 255, 255, 0.13);
  --blue: #2563eb;
  --blue-light: #60a5fa;
  --green: #4ade80;
  --radius: 18px;
  --container: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body::selection {
  background: rgba(37, 99, 235, 0.35);
}

a {
  color: inherit;
  text-decoration: none;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.container {
  width: min(calc(100% - 48px), var(--container));
  margin: 0 auto;
}

/* HEADER */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(7, 9, 13, 0.88);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.brand > span:last-child span {
  color: var(--blue-light);
}

.brand-logo {
  position: relative;
  width: 32px;
  height: 32px;
  display: block;
  overflow: hidden;
  border-radius: 9px;
  background: #fff;
}

.brand-logo::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 7px;
  width: 8px;
  height: 18px;
  background: #080a0e;
  border-radius: 2px;
}

.brand-logo::after {
  content: "";
  position: absolute;
  left: 8px;
  top: 7px;
  width: 14px;
  height: 7px;
  background: #080a0e;
  border-radius: 2px 5px 5px 2px;
}

.brand-logo span {
  position: absolute;
  left: 15px;
  top: 10px;
  width: 9px;
  height: 4px;
  background: #fff;
  border-radius: 0 3px 3px 0;
  z-index: 2;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  color: var(--muted);
  font-size: 14px;
}

.desktop-nav a {
  transition: color 0.2s ease;
}

.desktop-nav a:hover {
  color: #fff;
}

.desktop-nav .nav-button {
  padding: 10px 15px;
  color: #fff;
  border: 1px solid var(--line-strong);
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.025);
}

.desktop-nav .nav-button:hover {
  border-color: rgba(96, 165, 250, 0.5);
  background: rgba(37, 99, 235, 0.1);
}

.mobile-cta {
  display: none;
}

/* GENERAL */

.eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--blue-light);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.eyebrow-line {
  width: 18px;
  height: 1px;
  background: var(--blue-light);
  opacity: 0.8;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  letter-spacing: -0.055em;
}

.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 18px;
  border-radius: 10px;
  border: 1px solid var(--line-strong);
  font-size: 14px;
  font-weight: 750;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease;
}

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

.button-primary {
  color: #07101a;
  background: #fff;
  border-color: #fff;
}

.button-primary:hover {
  background: #e9eef5;
}

.button-secondary {
  color: #fff;
  background: rgba(255, 255, 255, 0.025);
}

.button-secondary:hover {
  border-color: rgba(96, 165, 250, 0.45);
  background: rgba(37, 99, 235, 0.08);
}

/* HERO */

.hero {
  position: relative;
  overflow: hidden;
  padding: 96px 0 92px;
  border-bottom: 1px solid var(--line);
}

.hero::before {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  top: -240px;
  right: -120px;
  border-radius: 50%;
  background: rgba(37, 99, 235, 0.07);
  filter: blur(100px);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(480px, 1.08fr);
  align-items: center;
  gap: 70px;
}

.hero-content {
  max-width: 560px;
}

.hero h1 {
  margin: 22px 0 24px;
  font-size: clamp(50px, 6vw, 78px);
  line-height: 0.99;
  font-weight: 800;
}

.hero h1 span,
.section-heading h2 span,
.split-copy h2 span,
.cta-card h2 span,
.faq-container h2 span {
  color: var(--blue-light);
}

.hero-copy {
  max-width: 540px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 17px;
  color: var(--muted-2);
  font-size: 12px;
}

.hero-points i {
  margin-right: 5px;
  color: var(--green);
  font-style: normal;
}

/* HERO VISUAL */

.hero-visual {
  position: relative;
  width: 100%;
  max-width: 610px;
  justify-self: end;
}

.visual-label {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 7px;
  margin-bottom: 9px;
  color: var(--muted-2);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.live-dot,
.green-dot {
  width: 7px;
  height: 7px;
  display: inline-block;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(74, 222, 128, 0.07);
}

.discord-window {
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 15px;
  background: #0c1016;
  box-shadow:
    0 35px 80px rgba(0, 0, 0, 0.45),
    0 0 0 8px rgba(255, 255, 255, 0.012);
}

.window-top {
  height: 49px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 17px;
  border-bottom: 1px solid var(--line);
  background: #0e131a;
}

.window-title {
  color: #dce2e9;
  font-size: 12px;
  font-weight: 700;
}

.window-channel {
  margin-right: 6px;
  color: var(--muted-2);
  font-size: 18px;
  vertical-align: -2px;
}

.window-dots {
  display: flex;
  gap: 5px;
}

.window-dots span {
  width: 6px;
  height: 6px;
  display: block;
  border-radius: 50%;
  background: #414a56;
}

.window-body {
  min-height: 385px;
  padding: 25px 28px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
    #0b0f15;
  background-size: 100% 34px;
}

.bot-message {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.bot-avatar {
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: #fff;
  color: #0a0d12;
  font-size: 12px;
  font-weight: 900;
}

.message-content {
  min-width: 0;
  width: 100%;
}

.message-author {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 8px;
  color: #f4f6f8;
  font-size: 12px;
  font-weight: 800;
}

.message-author small {
  padding: 2px 4px;
  border-radius: 3px;
  background: #5865f2;
  color: #fff;
  font-size: 7px;
  font-weight: 800;
}

.store-card {
  width: min(100%, 470px);
  padding: 18px;
  border: 1px solid var(--line-strong);
  border-radius: 11px;
  background: #10151d;
}

.store-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}

.store-card-header small {
  color: var(--blue-light);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.store-card h3 {
  margin: 3px 0 0;
  color: #fff;
  font-size: 18px;
  letter-spacing: -0.025em;
}

.store-card p {
  margin: 13px 0 17px;
  color: var(--muted);
  font-size: 11px;
}

.available {
  padding: 4px 7px;
  border: 1px solid rgba(74, 222, 128, 0.18);
  border-radius: 5px;
  color: var(--green);
  background: rgba(74, 222, 128, 0.06);
  font-size: 7px;
  font-weight: 800;
}

.product-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.product-bottom strong {
  color: #fff;
  font-size: 15px;
}

.product-bottom button {
  padding: 8px 11px;
  border: 0;
  border-radius: 7px;
  background: #fff;
  color: #0a0d12;
  font: inherit;
  font-size: 9px;
  font-weight: 800;
}

.order-status {
  width: min(100%, 470px);
  margin-top: 13px;
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(13, 17, 24, 0.9);
}

.status-heading {
  display: flex;
  align-items: center;
  gap: 9px;
}

.status-heading .check {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 7px;
  background: rgba(74, 222, 128, 0.1);
  color: var(--green);
  font-size: 11px;
}

.status-heading div {
  display: grid;
  flex: 1;
}

.status-heading strong {
  color: #e9edf2;
  font-size: 10px;
}

.status-heading small {
  color: var(--muted-2);
  font-size: 8px;
}

.status-heading b {
  color: var(--green);
  font-size: 8px;
}

.status-progress {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  margin: 13px 0 4px;
}

.status-progress span {
  height: 3px;
  border-radius: 10px;
  background: #242b34;
}

.status-progress .done,
.status-progress .current {
  background: var(--blue);
}

.status-progress .current {
  background: var(--green);
}

.status-labels {
  display: flex;
  justify-content: space-between;
  color: var(--muted-2);
  font-size: 7px;
}

.window-input {
  height: 43px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 14px;
  border-top: 1px solid var(--line);
  color: #555e6a;
  font-size: 10px;
  background: #0e131a;
}

.input-icon {
  width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--muted-2);
}

/* TRUST STRIP */

.trust-strip {
  border-bottom: 1px solid var(--line);
  background: #090c11;
}

.trust-inner {
  min-height: 67px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.trust-inner > span {
  color: var(--muted-2);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.trust-items {
  display: flex;
  gap: 28px;
  color: #778190;
  font-size: 11px;
}

.trust-items span::before {
  content: "•";
  margin-right: 8px;
  color: var(--blue-light);
}

/* SECTIONS */

.section {
  padding: 110px 0;
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr 0.7fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 48px;
}

.section-heading h2,
.split-copy h2,
.cta-card h2,
.faq-container h2 {
  margin: 16px 0 0;
  font-size: clamp(36px, 4.5vw, 56px);
  line-height: 1.03;
  font-weight: 800;
}

.section-heading > p {
  max-width: 440px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}

/* FEATURES */

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 13px;
}

.feature-card {
  position: relative;
  min-height: 250px;
  padding: 25px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #0a0e14;
  transition:
    transform 0.22s ease,
    border-color 0.22s ease,
    background 0.22s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(96, 165, 250, 0.28);
  background: #0c1118;
}

.feature-number {
  position: absolute;
  top: 22px;
  right: 23px;
  color: #323b47;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.feature-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 35px;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: #10151d;
  font-size: 18px;
}

.feature-card h3 {
  margin-bottom: 8px;
  color: #eef2f6;
  font-size: 16px;
  letter-spacing: -0.02em;
}

.feature-card p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.7;
}

/* WORKFLOW */

.workflow-section {
  border-block: 1px solid var(--line);
  background: #090c11;
}

.centered {
  grid-template-columns: 1fr;
  text-align: center;
}

.centered .eyebrow {
  justify-content: center;
}

.centered > p {
  max-width: 590px;
  margin: 0 auto;
}

.workflow-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 13px;
}

.workflow-step {
  min-height: 235px;
  padding: 23px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: #0c1016;
}

.step-number {
  color: #4d5765;
  font-size: 9px;
  font-weight: 800;
}

.step-icon {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  margin: 26px 0 20px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #11161f;
}

.workflow-step h3 {
  margin-bottom: 8px;
  font-size: 15px;
}

.workflow-step p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.7;
}

.workflow-arrow {
  color: #3d4754;
  font-size: 18px;
}

/* DISCORD FIRST */

.split-section {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  align-items: center;
  gap: 100px;
}

.split-copy > p {
  max-width: 520px;
  margin: 23px 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
}

.check-list {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: #d9dee5;
  font-size: 12px;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 9px;
}

.check-list span {
  color: var(--green);
}

.command-card {
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 15px;
  background: #0c1016;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25);
}

.command-top {
  display: flex;
  justify-content: space-between;
  padding: 14px 17px;
  border-bottom: 1px solid var(--line);
  color: var(--muted-2);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.command-row {
  display: grid;
  grid-template-columns: 25px 110px 1fr;
  align-items: center;
  min-height: 61px;
  padding: 0 17px;
  border-bottom: 1px solid var(--line);
}

.command-prefix {
  color: var(--blue-light);
  font-weight: 800;
}

.command-row strong {
  color: #e8ecf2;
  font-size: 12px;
}

.command-row small {
  color: var(--muted-2);
  font-size: 10px;
}

.command-footer {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 13px 17px;
  color: var(--muted-2);
  font-size: 9px;
}

/* CTA */

.cta-section {
  padding: 0 0 110px;
}

.cta-card {
  position: relative;
  overflow: hidden;
  min-height: 310px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  padding: 55px 60px;
  border: 1px solid var(--line-strong);
  border-radius: 20px;
  background:
    linear-gradient(90deg, #0d121a 0%, #0d121a 55%, #0d1622 100%);
}

.cta-card::after {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  right: 70px;
  top: -110px;
  border-radius: 50%;
  background: rgba(37, 99, 235, 0.09);
  filter: blur(60px);
  pointer-events: none;
}

.cta-card > div,
.cta-button {
  position: relative;
  z-index: 1;
}

.cta-card h2 {
  max-width: 650px;
}

.cta-card p:not(.eyebrow) {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.cta-button {
  min-width: 145px;
}

/* FAQ */

.faq-section {
  border-top: 1px solid var(--line);
  background: #090c11;
}

.faq-container {
  max-width: 900px;
}

.faq-list {
  margin-top: 45px;
  border-top: 1px solid var(--line);
}

details {
  border-bottom: 1px solid var(--line);
}

summary {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;
  list-style: none;
  color: #e8ecf1;
  font-size: 14px;
  font-weight: 700;
}

summary::-webkit-details-marker {
  display: none;
}

summary span {
  color: var(--muted-2);
  font-size: 22px;
  font-weight: 300;
  transition: transform 0.2s ease;
}

details[open] summary span {
  transform: rotate(45deg);
}

details p {
  max-width: 700px;
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.8;
}

/* FOOTER */

.site-footer {
  border-top: 1px solid var(--line);
  background: #07090d;
}

.footer-main {
  min-height: 125px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.footer-brand p {
  margin: 8px 0 0;
  color: var(--muted-2);
  font-size: 11px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  color: var(--muted);
  font-size: 11px;
}

.footer-links a:hover {
  color: #fff;
}

.footer-bottom {
  min-height: 55px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid var(--line);
  color: #4e5865;
  font-size: 9px;
}

/* RESPONSIVE */

@media (max-width: 1050px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .hero-content {
    max-width: 720px;
  }

  .hero-visual {
    max-width: 720px;
    justify-self: start;
  }

  .workflow-grid {
    grid-template-columns: 1fr 1fr;
  }

  .workflow-arrow {
    display: none;
  }

  .workflow-step {
    min-height: 210px;
  }

  .split-section {
    gap: 55px;
  }
}

@media (max-width: 820px) {
  .container {
    width: min(calc(100% - 32px), var(--container));
  }

  .desktop-nav {
    display: none;
  }

  .mobile-cta {
    display: inline-flex;
    padding: 8px 12px;
    border: 1px solid var(--line-strong);
    border-radius: 8px;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
  }

  .hero {
    padding: 72px 0 70px;
  }

  .hero h1 {
    font-size: clamp(47px, 12vw, 68px);
  }

  .section {
    padding: 80px 0;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .feature-grid {
    grid-template-columns: 1fr 1fr;
  }

  .split-section {
    grid-template-columns: 1fr;
  }

  .cta-card {
    display: block;
    padding: 42px 30px;
  }

  .cta-button {
    margin-top: 28px;
  }

  .footer-main {
    display: block;
    padding: 30px 0;
  }

  .footer-links {
    margin-top: 25px;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(calc(100% - 26px), var(--container));
  }

  .brand {
    font-size: 18px;
  }

  .brand-logo {
    width: 30px;
    height: 30px;
  }

  .hero-grid {
    gap: 40px;
  }

  .hero h1 {
    font-size: 48px;
  }

  .hero-copy {
    font-size: 14px;
    line-height: 1.7;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-points {
    display: grid;
    gap: 7px;
  }

  .window-body {
    min-height: 340px;
    padding: 18px 14px;
  }

  .store-card-header {
    display: block;
  }

  .available {
    display: inline-block;
    margin-top: 8px;
  }

  .product-bottom {
    align-items: flex-end;
  }

  .trust-inner {
    display: block;
    padding: 22px 0;
  }

  .trust-items {
    flex-wrap: wrap;
    gap: 9px 18px;
    margin-top: 10px;
  }

  .feature-grid,
  .workflow-grid {
    grid-template-columns: 1fr;
  }

  .feature-card {
    min-height: auto;
  }

  .workflow-step {
    min-height: auto;
  }

  .command-row {
    grid-template-columns: 22px 95px 1fr;
  }

  .cta-card {
    min-height: 0;
    padding: 35px 24px;
  }

  .footer-bottom {
    display: block;
    padding: 18px 0;
  }

  .footer-bottom span {
    display: block;
    margin-bottom: 5px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition: none !important;
  }
}
