﻿::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #121418;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, #65ff64 0%, #2fd4ff 100%);
  border-radius: 8px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(135deg, #7dff7d 0%, #5adfff 100%);
}

:root {
  --bg: #0b0c10;
  --card: #111317;
  --muted: #8b93a7;
  --text: #e9edf1;
  --brand: #65ff64;
  --ring: rgba(101, 255, 100, 0.25);
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  --shadowmenu: 0 2px 10px rgb(233 237 241 / 10%);
  --shadowactive: 0 2px 10px rgba(0, 100, 0, 1.15);
  --linkactive: 0 1px 18px rgba(255, 47, 146, 0.5);
  --radius: 18px;
}

* {
  scrollbar-width: thin;
  scrollbar-color: #65ff64 #121418;
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  background: radial-gradient(
      1200px 700px at 20% -10%,
      rgba(101, 255, 100, 0.06),
      transparent 50%
    ),
    var(--bg);
  color: var(--text);
  font: 16px/1.5 system-ui, Segoe UI, Roboto, Inter, Arial;
}

a {
  color: inherit;
  text-decoration: none;
}

.wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 28px;
}

.side-buttons {
  position: fixed;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 100;
  pointer-events: none;
}
.side-buttons .side-btn {
  pointer-events: auto;
}

.side-btn {
  border: 1px solid #2a2e37;
  background: var(--card);
  border-radius: 14px;
  padding: 12px;
  text-align: center;
  color: var(--text);
  cursor: pointer;
  box-shadow: var(--shadowmenu);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;


  opacity: 0;
  transform: translateX(-28px) scale(0.98);
  filter: blur(3px);
  animation: side-enter 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;

  animation-delay: 0.18s;
  transition: box-shadow 0.3s ease, background 0.3s ease, transform 0.25s ease;
  will-change: transform, opacity, filter;
}

.side-btn:nth-child(2) {
  animation-delay: 0.32s;
}

.side-btn:hover {
  box-shadow: var(--shadowactive);
  background: #151821;
  color: var(--brand);
  border: 1px solid #063309;
  transform: translateX(2px);
}

.side-btn i {
  font-size: 18px;
}
.lang-flag {
  width: 24px;
  height: auto;
  display: block;
}

@keyframes side-enter {
  0% {
    opacity: 0;
    transform: translateX(-28px) scale(0.98);
    filter: blur(3px);
  }
  60% {
    opacity: 1;
    transform: translateX(3px) scale(1);
    filter: blur(0);
  }
  100% {
    opacity: 1;
    transform: translateX(0) scale(1);
    filter: blur(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .side-btn {
    animation: none !important;
    transform: none !important;
    opacity: 1 !important;
    filter: none !important;
  }
}

@media (max-height: 520px) {
  .side-buttons {
    top: auto;
    bottom: 20px;
    transform: none;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border: 1px solid #2a2e37;
  border-radius: 999px;
  background: #0f1116;
  text-decoration: none;
}

.btn:hover {
  border-color: #3a4150;
  box-shadow: var(--shadowactive);
}

.btn--accent {
  border-color: transparent;
  background: linear-gradient(135deg, #65ff64 0%, #2fd4ff 100%);
  color: var(--bg);
  font-weight: 700;
}

.btn--ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border: 1px solid #2a2e37;
  border-radius: 999px;
  background: transparent;
  color: var(--text);
  transition: border-color 0.2s ease, color 0.2s ease;
}

.btn--ghost:hover {
  border-color: #3a4150;
  color: var(--brand);
}

.site-header {
  position: sticky;
  top: 24px;
  z-index: 50;
  display: flex;
  justify-content: center;
}

.hd-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  justify-content: space-between;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 18px 28px;
  background: rgba(20, 23, 30, 0.7);
  backdrop-filter: blur(10px);
  border-radius: 22px;
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.28);
}

.brand {
  display: flex;
  align-items: center;
  gap: 18px;
  font-weight: 800;
}

.brand-logo {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  object-fit: cover;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.35));
}

.brand-divider {
  width: 1px;
  height: 28px;
  background: linear-gradient(180deg, #65ff64, #2fd4ff);
  opacity: 0.6;
}

.hd-nav {
  display: flex;
  gap: 16px;
}

.hd-link {
  padding: 0px 12px;
  position: relative;
  border-radius: 12px;
  font-weight: bold;
}

.hd-link:hover {


}

.hd-link::after {
  content: "";
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: -6px;
  height: 2px;
  background: linear-gradient(90deg, #65ff64, #2fd4ff);
  transform: scaleX(0);
  transition: transform 0.25s ease;
}

.hd-link:hover::after {
  transform: scaleX(1);
}

.hd-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hd-icon {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  border: 1px solid #2a2e37;
  background: #0f1116;
}

.hd-link img {
  vertical-align: middle;
}

.hd-icon:hover {
  box-shadow: var(--linkactive);
  color: #ff2f92;
}

.card-header .social-links {
  display: flex;
  gap: 10px;
  margin-left: auto;
}

.card-header .social-links .hd-icon {
  width: 34px;
  height: 34px;
}

.card-header .social-links svg {
  width: 16px;
  height: 16px;
}

.hd-image {
  height: 21px;
  padding-right: 3px;
}

.hd-cta {
  font-weight: 800;
}

.hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 32px;
  align-items: center;
  margin: 80px 0 110px;
}

.hero h1 {
  font-size: 38px;
  line-height: 1.1;
  margin: 0 0 12px;
}

.hero p {
  color: var(--muted);
  max-width: 65ch;
  margin: 0 0 12px;
}

.hero__content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.hero__stat {
  padding: 18px 20px;
  border-radius: 20px;
  border: 1px solid rgba(70, 84, 112, 0.4);
  background: linear-gradient(170deg, rgba(32, 39, 53, 0.95), rgba(14, 17, 25, 0.9));
  box-shadow: 0 18px 38px rgba(5, 10, 24, 0.45);
}

.hero__stat-value {
  display: block;
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.hero__stat-label {
  display: block;
  margin-top: 6px;
  font-size: 13px;
  color: var(--muted);
}

.hero__showcase {
  display: flex;
  justify-content: center;
}

.hero-stage {
  position: relative;
  width: 100%;
  max-width: 520px;
  min-height: 360px;
  padding: 60px 56px 80px;
  border-radius: 32px;
  overflow: hidden;
  border: 1px solid rgba(70, 84, 112, 0.38);
  background: radial-gradient(380px at 90% -20%, rgba(101, 255, 100, 0.18), transparent 65%),
    linear-gradient(165deg, rgba(26, 32, 44, 0.96), rgba(8, 12, 20, 0.92));
  box-shadow: 0 34px 70px rgba(4, 10, 24, 0.72);
}

.hero-stage__halo {
  position: absolute;
  inset: -30% -25% auto -25%;
  height: 65%;
  background: radial-gradient(closest-side, rgba(47, 212, 255, 0.22), transparent 70%);
  filter: blur(42px);
  opacity: 0.55;
  animation: heroStageHalo 14s ease-in-out infinite alternate;
  pointer-events: none;
}

.hero-stage__card {
  margin: 0;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(70, 84, 112, 0.45);
  box-shadow: 0 22px 46px rgba(6, 12, 28, 0.55);
  background: rgba(14, 18, 28, 0.92);
  isolation: isolate;
}

.hero-stage__card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-stage__card figcaption {
  position: absolute;
  inset: auto 0 0;
  padding: 18px 20px;
  display: grid;
  gap: 4px;
  background: linear-gradient(180deg, rgba(5, 8, 14, 0) 0%, rgba(5, 8, 14, 0.92) 100%);
  color: #f3f5ff;
}

.hero-stage__card--primary {
  position: relative;
  width: 340px;
  height: 240px;
  margin: 0 auto;
  animation: heroStageFloat 7s ease-in-out infinite alternate;
  z-index: 3;
}

.hero-stage__card--secondary {
  position: absolute;
  width: 220px;
  height: 160px;
  z-index: 2;
  animation: heroStageFloat 8s ease-in-out infinite alternate;
}

.hero-stage__card--secondary figcaption {
  padding: 14px 16px;
  font-size: 14px;
}

.hero-stage__card--upper {
  top: 24px;
  right: 46px;
  animation-delay: 1.6s;
}

.hero-stage__card--lower {
  bottom: 30px;
  left: 34px;
  animation-delay: 3.1s;
}

.hero-stage__tag {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.75;
}

.hero-stage__title {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.35;
}

.hero-stage__ticker {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0 32px;
  color: var(--muted);
  font-size: 13px;
}

.hero-stage__ticker-label {
  flex: 0 0 auto;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(70, 84, 112, 0.38);
  background: rgba(12, 16, 24, 0.82);
  font-weight: 600;
}

.hero-stage__ticker-track {
  position: relative;
  overflow: hidden;
  flex: 1;
  height: 26px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.hero-stage__ticker-track span {
  white-space: nowrap;
  display: inline-block;
  padding-right: 48px;
  animation: heroStageTicker 18s linear infinite;
}

.hero-stage__ticker-track span:nth-child(2) {
  animation-delay: 9s;
  margin-left: 24px;
}

@keyframes heroStageTicker {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

@keyframes heroStageFloat {
  0% {
    transform: translateY(0) scale(1);
  }
  100% {
    transform: translateY(-14px) scale(1.02);
  }
}

@keyframes heroStageHalo {
  0% {
    opacity: 0.45;
    transform: rotate(0deg) scale(1);
  }
  100% {
    opacity: 0.75;
    transform: rotate(10deg) scale(1.12);
  }
}

.badge {
  display: inline-block;
  background: #0f1116;
  border: 1px dashed #2a2e37;
  padding: 6px 10px;
  border-radius: 999px;
  color: #c6cbd9;
  font-size: 13px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

@media (max-width: 960px) {
  .hero__stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 1024px) {
  .grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 680px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .hero__showcase {
    width: 100%;
  }

  .hero-stage {
    max-width: 100%;
    padding: 40px 28px 70px;
    min-height: 320px;
    margin-top: 10px;
  }

  .hero__actions {
    width: 100%;
  }

  .hero__actions .btn {
    flex: 1;
    justify-content: center;
  }

  .hero__stats {
    grid-template-columns: 1fr;
  }

  .hero-stage__card--primary {
    width: 280px;
    height: 200px;
  }

  .hero-stage__card--secondary {
    width: 180px;
    height: 128px;
  }

  .hero-stage__card--upper {
    top: 12px;
    right: 20px;
  }

  .hero-stage__card--lower {
    bottom: 24px;
    left: 18px;
  }

  .hero-stage__ticker {
    padding: 0 20px;
    gap: 10px;
  }

  .hero-stage__ticker-label {
    font-size: 12px;
  }

  .hero-stage__ticker-track {
    height: 24px;
  }

  .grid {
    grid-template-columns: 1fr;
  }
}

.card {
  position: relative;
  background: linear-gradient(180deg, #14161b, #0e1015);
  border: 1px solid #232733;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transform: translateZ(0);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.5);
}

.card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px 10px;
}

.card-title {
  font-weight: 700;
}

.card-badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.card .badge {
  font-size: 12px;
  padding: 4px 8px;
  border-radius: 999px;
  background: #151821;
  border: 1px solid #2a2e37;
  color: #ff2f92;
}

.mock {
  padding: 10px 10px 16px;
}

.laptop {
  position: relative;
  background: var(--bg);
  border: 1px solid #242a33;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.45),
    0 0 0 6px rgba(0, 0, 0, 0.2) inset;
}

.laptop:before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 14px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.laptop .bar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 26px;
  background: linear-gradient(180deg, #141922, #0f131a);
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 10px;
  border-bottom: 1px solid #1e232e;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #ff5f56;
}

.dot:nth-child(2) {
  background: #ffbd2e;
}

.dot:nth-child(3) {
  background: #27c93f;
}

.screen {
  display: block;
  aspect-ratio: 16/10;
  padding-top: 25px;
  width: 100%;
  background: var(--bg);
  transition: transform 0.5s ease;
}

.screen img,
.screen video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 30px 12px 14px;
}

.link {
  padding: 8px 12px;
  border-radius: 10px;
  border: 1px solid #2a2e37;
  background: #12141a;
}

.link:hover {
  border-color: #3a4150;
  box-shadow: var(--shadowactive);
}

.card-footer .link {
  display: inline-block;


  color: var(--brand);

  font-weight: 600;
}

.card-footer .link:hover {
  box-shadow: var(--shadowactive);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

form {
  display: grid;
  gap: 12px;
}

input,
textarea {
  padding: 10px;
  border-radius: 8px;
  border: 1px solid #2a2e37;
  background: #0f1116;
  color: var(--text);
}

button {
  border: none;
  border-radius: 8px;
  background: linear-gradient(135deg, #65ff64, #2fd4ff);
  color: var(--bg);
  font-weight: 700;
  cursor: pointer;
}

.section {
  margin: 48px 0;
}

.section-head {
  margin-bottom: 18px;
}

.section-head--centered {
  text-align: center;
  display: grid;
  gap: 4px;
  justify-items: center;
  margin-bottom: 24px;
}

.portfolio__grid {
  margin-top: 32px;
}

.section-head__bar {
  display: inline-block;
  width: 64px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(101, 255, 100, 0.85), rgba(47, 212, 255, 0.65));
  box-shadow: 0 6px 18px rgba(47, 212, 255, 0.25);
}

.section h2 {
  margin: 0 0 6px;
}

.muted {
  color: var(--muted);
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

@media (max-width: 860px) {
  .two-col {
    grid-template-columns: 1fr;
  }
}

.list {
  padding-left: 0;
  margin: 10px 0 16px;
  list-style: none;
}

.list li {
  margin: 8px 0;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 14px 0 18px;
}

.stat {
  border: 1px solid #2a2e37;
  background: var(--card);
  border-radius: 14px;
  padding: 12px;
  text-align: center;
}

.stat .big {
  display: block;
  font-size: 22px;
  font-weight: 800;
}

.chips,
.toolbox {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.chip,
.tool {
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid #2a2e37;
  background: #12141a;
  font-size: 13px;
}

.steps {
  margin: 0 0 0 18px;
}

.steps li {
  margin: 6px 0;
}

.faq details {
  border: 1px solid #2a2e37;
  background: var(--card);
  border-radius: 12px;
  padding: 10px 12px;
  margin-top: 10px;
}

.faq summary {
  cursor: pointer;
  font-weight: 600;
}

.faq p {
  margin: 8px 0 0;
  color: var(--muted);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
}

.contact-alert {
  border: 1px solid rgba(101, 255, 100, 0.3);
  background: rgba(101, 255, 100, 0.12);
  color: var(--text);
  border-radius: 12px;
  padding: 12px 14px;
  font-weight: 600;
}

.contact-alert--error {
  border-color: rgba(255, 105, 135, 0.45);
  background: rgba(255, 105, 135, 0.12);
  color: #ffb3c2;
}

@media (max-width: 860px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

.contact-form {
  border: 1px solid #2a2e37;
  background: var(--card);
  border-radius: 16px;
  padding: 16px;
  display: grid;
  gap: 12px;
}

.field {
  display: flex;
  flex-direction: column;
  margin-bottom: 8px;
}

.field label {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--text);
}

.field input,
.field textarea {
  background: #0f1116;
  border: 1px solid #2a2e37;
  border-radius: 12px;
  padding: 10px 12px;
  color: var(--text);
}

.field input:focus,
.field textarea:focus {
  outline: none;
  box-shadow: var(--shadowactive);
}

.contact-form .btn {
  justify-self: start;
}

.contact-form .btn--accent {
  padding: 8px 18px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.01em;
  background: linear-gradient(135deg, #6af59e 0%, #2f9eff 100%);
  box-shadow: 0 12px 28px rgba(58, 174, 255, 0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-form .btn--accent:hover,
.contact-form .btn--accent:focus {
  transform: translateY(-1px);
  box-shadow: 0 16px 34px rgba(58, 174, 255, 0.28);
}

.field.inline {
  flex-direction: row;
  gap: 8px;
  align-items: center;
}

.contact-side .card-title {
  font-weight: 700;
}

.map-placeholder {
  display: flex;
  flex-direction: column;
  border-top: 1px solid #2a2e37;
  border-radius: 0 0 14px 14px;
  overflow: hidden;
  background: #10131a;
}

.map-placeholder iframe {
  display: block;
  width: 100%;
  height: 240px;
  border: 0;
  flex: 1 1 auto;
}

.mock-duo {
  position: relative;
  padding: 16px 10px 26px;
  min-height: 330px;
}

.mock-desktop {
  width: 85%;
  margin-left: 0px;
  z-index: 1;
  transition: transform 0.5s ease;
}

.phone {
  position: absolute;

  right: -7%;

  bottom: -25px;
  width: 34%;
  z-index: 2;
  filter: drop-shadow(0 10px 10px rgba(0, 0, 0, 0.25));
  transition: transform 0.5s ease;
}

.phone .bezel {
  position: relative;
  width: 100%;
  aspect-ratio: 9/19.5;
  border-radius: 28px;
  background: linear-gradient(145deg, #0e1116, #0a0c10);
  box-shadow: inset 0 0 0 2px #1b1f27,
     inset 0 0 0 10px #0b0c10,
     0 8px 28px rgba(0, 0, 0, 0.55);

}

.phone .bezel::before,
.phone .bezel::after {
  content: "";
  position: absolute;
  width: 3px;
  border-radius: 3px;
  background: #1e232e;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05);
  z-index: 5;
}
.phone .bezel::before {

  height: 44px;
  right: -3px;
  top: 28%;
}
.phone .bezel::after {

  height: 68px;
  left: -3px;
  top: 24%;
  background: linear-gradient(#1e232e 0 0) top/3px 28px no-repeat,
    linear-gradient(#1e232e 0 0) bottom/3px 28px no-repeat, #1e232e;
}

.phone .notch {
  position: absolute;
  top: 3px;
  left: 50%;
  transform: translateX(-50%);
  width: 44%;
  height: 15px;
  background: #0a0d12;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.35),
    inset 0 -1px 0 rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  z-index: 5;
}
.phone .notch .cam {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #3aa0ff, #0f1722 60%);
  box-shadow: 0 0 0 2px #0c1118, 0 0 0 3px #0a0d12;
}
.phone .notch .spk {
  width: 34%;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(180deg, #1a2330, #0e141d);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.phone .screen {
  position: absolute;
  left: 7px;
  padding-top: 0px;
  top: 12px;
  bottom: 18px;
  border-radius: 18px;
  overflow: hidden;
  background: var(--bg);
  aspect-ratio: 9/19.5;
  max-width: fit-content;
  z-index: 3;
}
.phone .screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.phone .home-indicator {
  position: absolute;
  left: 50%;
  bottom: 8px;
  transform: translateX(-50%);
  width: 32%;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.18),
    rgba(255, 255, 255, 0.06)
  );
  z-index: 5;
}

.card:hover .mock-desktop {
  transform: translateY(-2px);
}
.card:hover .phone {
  transform: translateY(-4px);
}

@media (max-width: 980px) {
  .mock-desktop {
    width: 78%;
  }
  .phone {
    width: 36%;
    right: 4%;
  }
}
@media (max-width: 680px) {
  .mock-duo {
    min-height: unset;
    padding-bottom: 10px;
  }
  .mock-desktop {
    width: 100%;
    margin-left: 0;
  }
  .phone {
    position: static;
    width: 60%;
    margin: 10px auto 0;
    transform: none !important;
  }
}

.cookie-fab {
  position: fixed;
  right: 24px;
  bottom: 22px;
  z-index: 140;
}
.cookie-fab img {
  width: 100%;
}
.cookie-fab__btn {
  border: 1px solid #2a2e37;
  background: var(--card);
  border-radius: 14px;
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  box-shadow: var(--shadowmenu, 0 2px 10px rgba(0, 200, 0, 0.15));
  color: var(--text);
  cursor: pointer;
  transition: box-shadow 0.25s, transform 0.2s, background 0.25s;
  animation: cookie-fab-float 2.6s ease-in-out infinite;
}
.cookie-fab__btn:hover {
  box-shadow: var(--shadowactive, 0 2px 10px rgba(0, 100, 0, 0.6));
  background: #151821;
  transform: translateY(-2px);
}
.cookie-fab__btn i {
  font-size: 20px;
  color: var(--brand);
}
.cookie-panel {
  position: absolute;
  right: 0;
  bottom: 22px;
  width: min(320px, 86vw);
  border: 1px solid #2a2e37;
  background: var(--card);
  border-radius: 16px;
  padding: 12px 14px;
  box-shadow: var(--shadow, 0 10px 30px rgba(0, 0, 0, 0.35));
  transform-origin: right center;
  opacity: 0;
  transform: translateY(6px) scale(0.98);
  pointer-events: none;
  transition: opacity 0.25s, transform 0.25s;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  align-items: center;
  cursor: pointer;
}
.cookie-panel:hover {
  border-color: #3a4150;
  box-shadow: var(--shadowactive);
  transform: translateY(0) scale(1.005);
}
.cookie-panel:active {
  transform: translateY(1px) scale(0.995);
}
.cookie-text {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.4;
}
.cookie-actions {
  display: flex;
}
.cookie-actions button {
  padding: 8px 14px;
  font-size: 14px;
  border-radius: 12px;
  border: 1px solid #2a2e37;
  background: var(--brand);
  color: var(--bg);
  font-weight: 600;
  white-space: nowrap;
  cursor: pointer;
}
.cookie-actions button:hover {
  box-shadow: var(--shadowactive);
}
.cookie-fab.is-open .cookie-fab__btn {
  display: none;
}
.cookie-fab.is-open .cookie-panel {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
@keyframes cookie-fab-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}
@media (prefers-reduced-motion: reduce) {
  .cookie-fab__btn {
    animation: none !important;
  }
  .cookie-panel {
    transition: none !important;
  }
}
@media (max-width: 420px) {
  .cookie-fab {
    right: 16px;
    bottom: 16px;
  }
  .cookie-panel {
    width: min(92vw, 420px);
  }
}

.hd-burger {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid #2a2e37;
  background: #0f1116;
  place-items: center;
  gap: 4px;
  cursor: pointer;
  z-index: 60;
}
.hd-burger:hover {
  box-shadow: var(--shadowactive);
}

.burger-grid {
  display: grid;
  grid-template-columns: repeat(2, 6px);
  grid-template-rows: repeat(2, 6px);
  gap: 6px;
}
.burger-grid > span {
  width: 6px;
  height: 6px;
  border-radius: 2px;
  background: var(--text);
  transition: transform 0.2s ease;
}
.hd-burger:hover .burger-grid > span {
  transform: scale(1.12);
}

@media (max-width: 860px) {
  .hd-nav,
  .hd-right {
    display: none !important;
  }
  .hd-burger {
    display: inline-grid !important;
  }
  .side-buttons {
    display: none !important;
  }
  .brand-text {
    font-size: 14px;
  }
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(11, 12, 16, 0.98);
  backdrop-filter: blur(8px);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 0.25s, transform 0.25s;
}
.mobile-menu.is-open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.mobile-menu__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 20px 24px 28px;
  display: grid;
  grid-template-rows: auto 1fr auto auto;
  gap: 18px;
  height: 100%;
}
.mobile-menu__top {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.mobile-menu__close {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  border: 1px solid #2a2e37;
  background: #0f1116;
  color: var(--text);
  cursor: pointer;
}
.mobile-menu__close:hover {
  box-shadow: var(--shadowactive);
}

.mobile-menu__nav {
  display: grid;
  gap: 10px;
  align-content: center;
  justify-items: center;
  min-height: 50vh;
}
.mobile-menu__nav .hd-link {
  display: grid;
  place-items: center;
  text-align: center;
  width: min(360px, 90vw);
  height: 52px;
  padding: 0 12px;
  font-size: 16px;
  border: 1px solid #2a2e37;
  background: var(--card);
  border-radius: 14px;
}
.mobile-menu__nav .hd-link:hover {
  box-shadow: var(--shadowactive);
}

.mobile-cta {
  align-self: center;
  justify-self: center;
}

.mobile-menu__row {
  margin-top: auto;
  display: flex;
  justify-content: center;
  gap: 10px;
}
.mobile-menu__row .side-btn {
  border: 1px solid #2a2e37;
  background: var(--card);
  border-radius: 14px;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  box-shadow: var(--shadowmenu);
  color: var(--text);
}
.mobile-menu__row .side-btn:hover {
  box-shadow: var(--shadowactive);
  background: #151821;
}

.body--menu-open .site-header {
  opacity: 0;
  pointer-events: none;
}

.site-footer {
  margin-top: 56px;
  padding: 28px 0 18px;
  background: radial-gradient(
      900px 400px at 80% 120%,
      rgba(101, 255, 100, 0.06),
      transparent 50%
    ),
    linear-gradient(180deg, #14161b, #0e1015);
  border-top: 1px solid #232733;
  box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.25) inset;
}

.ft-inner {
  padding: 0 28px;
}

.ft-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1.1fr 1.1fr;
  gap: 24px;
  align-items: start;
  margin-bottom: 16px;
}

@media (max-width: 1024px) {
  .ft-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 680px) {
  .ft-grid {
    grid-template-columns: 1fr;
  }
}

.ft-col {
  border: 1px solid #232733;
  background: var(--card);
  border-radius: 16px;
  padding: 16px;
  box-shadow: var(--shadow);
}

.ft-brand {
  gap: 12px;
  margin-bottom: 10px;
}

.ft-muted {
  color: var(--muted);
  margin: 0 0 12px;
}

.ft-social {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.ft-social .hd-icon {
  width: 34px;
  height: 34px;
}

.ft-social .hd-icon svg {
  width: 16px;
  height: 16px;
}

.ft-title {
  margin: 0 0 10px;
  font-size: 16px;
}

.ft-links {
  display: grid;
  gap: 8px;
}
.ft-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border: 1px solid #2a2e37;
  background: #12141a;
  border-radius: 12px;
  color: inherit;
  text-decoration: none;
}
.ft-link:hover {
  border-color: #3a4150;
  box-shadow: var(--shadowactive);
}

.ft-link__icon {
  display: grid;
  place-items: center;
  width: 18px;
  height: 18px;
}

.ft-link__icon svg {
  width: 16px;
  height: 16px;
}

.ft-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.ft-chips .chip {
  border-color: #2a2e37;
  background: #12141a;
}

.ft-contact {
  list-style: none;
  margin: 0 0 12px;
  padding: 0;
}
.ft-contact li {
  margin: 6px 0;
  color: var(--muted);
}
.ft-contact .link {
  background: transparent;
  border-color: #2a2e37;
}

.ft-cta {
  margin-top: 8px;
}

.ft-bottom {
  margin-top: 12px;
  border: 1px solid #232733;
  background: var(--card);
  border-radius: 16px;
  padding: 14px 18px;
}
.ft-bottom__content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.ft-copy {
  color: #d5d9e6;
  font-size: 14px;
  font-weight: 600;
}
.ft-note {
  color: #9aa3b9;
  font-size: 13px;
}

@media (max-width: 680px) {
  .ft-bottom__content {
    align-items: center;
    text-align: center;
  }
}

html[data-theme="light"] {
  --bg: #f7f9fc;
  --card: #ffffff;
  --muted: #4b5565;
  --text: #0b0c10;
  --brand: #0c9e0b;
  --ring: rgba(12, 158, 11, 0.22);
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  --shadowmenu: 0 2px 10px rgba(0, 0, 0, 0.06);
  --shadowactive: 0 6px 18px rgba(12, 158, 11, 0.25);
  --linkactive: 0 1px 18px rgba(255, 47, 146, 0.25);
}

html[data-theme="light"] body {
  background: radial-gradient(
      1200px 700px at 20% -10%,
      rgba(12, 158, 11, 0.06),
      transparent 50%
    ),
    var(--bg);
  color: var(--text);
}

html[data-theme="light"] .hd-inner,
html[data-theme="light"] .card,
html[data-theme="light"] .contact-form,
html[data-theme="light"] .ft-col,
html[data-theme="light"] .ft-bottom {
  background: var(--card);
  border-color: #e6e8ef;
  box-shadow: var(--shadow);
}
html[data-theme="light"] .ft-copy {
  color: var(--text);
}
html[data-theme="light"] .ft-note {
  color: #5f6b7c;
}

html[data-theme="light"] .hd-icon,
html[data-theme="light"] .link,
html[data-theme="light"] .ft-link,
html[data-theme="light"] .chip,
html[data-theme="light"] .tool,
html[data-theme="light"] .badge,
html[data-theme="light"] .side-btn,
html[data-theme="light"] .cookie-fab__btn,
html[data-theme="light"] .mobile-menu__row .side-btn,
html[data-theme="light"] .mobile-menu__nav .hd-link {
  background: #ffffff;
  border-color: #e6e8ef;
  color: var(--text);
  box-shadow: var(--shadowmenu);
}

html[data-theme="light"] .btn {



}
html[data-theme="light"] .btn--accent {

  color: var(--text);
}
html[data-theme="light"] .btn--ghost {
  border-color: #e6e8ef;
  background: #ffffff;
  color: #0b0c10;
}
html[data-theme="light"] .btn--ghost:hover {
  color: var(--brand);
}
html[data-theme="light"] .contact-alert {
  border-color: #c8f3d0;
  background: #f4fff6;
  color: #0b0c10;
}
html[data-theme="light"] .contact-alert--error {
  border-color: #ffd2da;
  background: #fff4f6;
  color: #a1223c;
}

html[data-theme="light"] .card .badge {
  background: #f3f6fb;
  border-color: #e6e8ef;
  color: #574e69;
}

html[data-theme="light"] .site-footer {
  background: radial-gradient(
      900px 400px at 80% 120%,
      rgba(12, 158, 11, 0.06),
      transparent 50%
    ),
    linear-gradient(180deg, #ffffff, #ffffff);
  border-top-color: #e6e8ef;
  box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.06) inset;
}

html[data-theme="light"] .laptop {
  background: #f2f4f8;
  border-color: #e6e8ef;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.12),
    0 0 0 6px rgba(0, 0, 0, 0.03) inset;
}
html[data-theme="light"] .screen {
  background: #fff;
}

html[data-theme="light"] .field input,
html[data-theme="light"] .field textarea {
  background: #fff;
  border-color: #e6e8ef;
  color: var(--text);
}

html[data-theme="light"] .mobile-menu {
  background: rgba(255, 255, 255, 0.92);
}
html[data-theme="light"] .mobile-menu__close {
  background: #ffffff;
  border-color: #e6e8ef;
  color: var(--text);
}

html[data-theme="light"] .ft-link,
html[data-theme="light"] .chip,
html[data-theme="light"] .tool,
html[data-theme="light"] .badge,
html[data-theme="light"] .link {
  background: #fff;
}

html[data-theme="light"] .ft-muted,
html[data-theme="light"] .muted,
html[data-theme="light"] .faq p {
  color: var(--muted);
}

html[data-theme="light"] .hd-icon:hover,
html[data-theme="light"] .ft-link:hover,
html[data-theme="light"] .link:hover,
html[data-theme="light"] .side-btn:hover,
html[data-theme="light"] .mobile-menu__nav .hd-link:hover {
  box-shadow: var(--shadowactive);
}

html[data-theme="light"] .stat,
html[data-theme="light"] .contact-form,
html[data-theme="light"] .faq details,
html[data-theme="light"] .ft-col,
html[data-theme="light"] .ft-bottom,
html[data-theme="light"] .map-placeholder {
  border-color: #e6e8ef;
}

html[data-theme="light"] .map-placeholder {
  background: #fff;
}

html[data-theme="dark"] body {
  background: #121418 !important;
  color: #fff !important;
}
html[data-theme="light"] body {
  background: #f5f5f5 !important;
  color: #000 !important;
}

#theme-toggle svg {
  width: 18px;
  height: 18px;
  display: block;
}

#theme-toggle {
  color: var(--text);
}
#theme-toggle svg {
  width: 18px;
  height: 18px;
  display: block;
}

#theme-toggle {
  font-size: 18px;
  line-height: 1;
}

#theme-toggle::before {
    content: "☀";
    position: relative;
    top: -1px;
    font-size: 20px;
    line-height: 1;
    font-family: "Apple Color Emoji", "Segoe UI Emoji", "Noto Color Emoji", system-ui, sans-serif;
}

html[data-theme="dark"] #theme-toggle::before {
    content: "🌙";
}

html[data-theme="light"] .hd-image {
  filter: brightness(0) saturate(100%);
}
/* Discord page */
.discord-main {
  display: flex;
  flex-direction: column;
  gap: 72px;
  margin-top: 32px;
}

.discord-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
  gap: 48px;
  align-items: stretch;
}

.discord-hero__content .badge {
  margin-bottom: 18px;
}

.discord-hero__content h1 {
  max-width: 560px;
}

.discord-hero__content p {
  max-width: 520px;
  color: var(--muted);
  line-height: 1.6;
}

.discord-hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.discord-hero__card {
  padding: 24px 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: linear-gradient(160deg, rgba(35, 40, 60, 0.96) 0%, rgba(17, 19, 28, 0.98) 100%);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 28px;
}

.discord-hero__card .card-header {
  padding: 8px 8px 0;
}

.discord-hero__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.discord-hero__list li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  color: #d9e2ff;
}

.discord-hero__icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(88, 101, 242, 0.16);
  color: #cdd4ff;
}

.discord-bots__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}

.discord-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding: 28px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: linear-gradient(150deg, rgba(21, 25, 34, 0.98) 0%, rgba(12, 15, 24, 0.98) 100%);
  overflow: hidden;
  min-height: 100%;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  --discord-accent: #5865f2;
  --discord-soft: rgba(88, 101, 242, 0.16);
}

.discord-card::before {
  content: "";
  position: absolute;
  inset: -120px -40px auto auto;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle at center, var(--discord-soft) 0%, transparent 70%);
  opacity: 0.75;
  pointer-events: none;
  transition: transform 0.35s ease;
}

.discord-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: 0 28px 46px rgba(15, 19, 35, 0.4);
}

.discord-card:hover::before {
  transform: translate(-16px, -16px);
}

.discord-card__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 1;
}

.discord-card__tag {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--discord-accent);
}

.discord-card__title {
  display: flex;
  align-items: center;
  gap: 18px;
  position: relative;
  z-index: 1;
}

.discord-card__icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  background: var(--discord-soft);
  color: var(--discord-accent);
}

.discord-card__desc {
  position: relative;
  z-index: 1;
  color: #c3d1ff;
  line-height: 1.6;
}

.discord-card__lists {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  position: relative;
  z-index: 1;
}

.discord-card__list ul {
  list-style: none;
  margin: 12px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.discord-card__list li {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 14px;
  padding: 10px 12px;
  color: #d6defc;
  font-size: 14px;
  line-height: 1.5;
}

.discord-card__subtitle {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(224, 230, 255, 0.72);
}

.discord-card__actions {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 18px;
  position: relative;
  z-index: 1;
}

.discord-card__link {
  color: var(--discord-accent);
  font-weight: 600;
  position: relative;
  text-decoration: none;
}

.discord-card__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 1px;
  background: currentColor;
  opacity: 0.5;
  transition: opacity 0.2s ease;
}

.discord-card__link:hover::after {
  opacity: 1;
}

.discord-card--sentinel {
  --discord-accent: #f97316;
  --discord-soft: rgba(249, 115, 22, 0.18);
}

.discord-card--pulse {
  --discord-accent: #22d3ee;
  --discord-soft: rgba(34, 211, 238, 0.2);
}

.discord-card--bridge {
  --discord-accent: #a855f7;
  --discord-soft: rgba(168, 85, 247, 0.18);
}

.discord-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.discord-step {
  border-radius: 24px;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: linear-gradient(150deg, rgba(24, 28, 40, 0.96) 0%, rgba(15, 17, 24, 0.98) 100%);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.discord-step:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.12);
}

.discord-step__icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(88, 101, 242, 0.16);
  color: #b7c4ff;
}

.discord-step h3 {
  font-size: 18px;
  font-weight: 600;
}

.discord-step p {
  font-size: 14px;
  line-height: 1.6;
}

.discord-cta__card {
  border-radius: 28px;
  padding: 28px;
  background: linear-gradient(145deg, rgba(33, 37, 51, 0.98) 0%, rgba(17, 19, 29, 0.98) 100%);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.discord-cta__body {
  padding: 0 4px 6px;
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  align-items: center;
}

.discord-cta__body .muted {
  flex: 1 1 320px;
  margin: 0;
}

.badge--soft {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #e7ecff;
}

@media (max-width: 1080px) {
  .discord-hero {
    grid-template-columns: 1fr;
  }

  .discord-hero__card {
    order: -1;
  }
}

@media (max-width: 860px) {
  .discord-main {
    gap: 56px;
  }

  .discord-card__lists {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .discord-card {
    padding: 22px;
  }

  .discord-hero__actions {
    flex-direction: column;
  }

  .discord-hero__card .card-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .discord-hero__list li {
    padding: 10px 12px;
  }
}

html[data-theme="light"] .discord-hero__card {
  background: linear-gradient(160deg, rgba(240, 245, 255, 0.96) 0%, rgba(222, 232, 255, 0.96) 100%);
  border-color: rgba(21, 26, 42, 0.08);
}

html[data-theme="light"] .discord-hero__list li {
  background: rgba(15, 23, 42, 0.06);
  border-color: rgba(15, 23, 42, 0.08);
  color: #2c3650;
}

html[data-theme="light"] .discord-hero__icon {
  background: rgba(88, 101, 242, 0.12);
  color: #4657d8;
}

html[data-theme="light"] .discord-card {
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.98) 0%, rgba(236, 242, 255, 0.97) 100%);
  border-color: rgba(15, 23, 42, 0.08);
  box-shadow: 0 24px 42px rgba(15, 23, 42, 0.08);
}

html[data-theme="light"] .discord-card__desc {
  color: #4f5b78;
}

html[data-theme="light"] .discord-card__list li {
  background: rgba(15, 23, 42, 0.05);
  border-color: rgba(15, 23, 42, 0.08);
  color: #42516d;
}

html[data-theme="light"] .discord-card__subtitle {
  color: rgba(42, 55, 88, 0.78);
}

html[data-theme="light"] .discord-card__link::after {
  background: var(--discord-accent);
}

html[data-theme="light"] .discord-step {
  background: linear-gradient(150deg, rgba(248, 249, 255, 0.98) 0%, rgba(233, 240, 255, 0.98) 100%);
  border-color: rgba(15, 23, 42, 0.08);
}

html[data-theme="light"] .discord-step__icon {
  background: rgba(88, 101, 242, 0.1);
  color: #3d4fcf;
}

html[data-theme="light"] .discord-step p {
  color: #4f5a76;
}

html[data-theme="light"] .discord-cta__card {
  background: linear-gradient(150deg, rgba(245, 249, 255, 0.98) 0%, rgba(228, 236, 255, 0.97) 100%);
  border-color: rgba(15, 23, 42, 0.08);
}

html[data-theme="light"] .badge--soft {
  background: rgba(15, 23, 42, 0.06);
  border-color: rgba(15, 23, 42, 0.1);
  color: #2f3c5c;
}

html[data-theme="light"] .hero__stat {
  background: rgba(255, 255, 255, 0.96);
  border-color: rgba(15, 23, 42, 0.12);
  box-shadow: 0 20px 44px rgba(21, 31, 55, 0.12);
}

html[data-theme="light"] .hero__stat-value {
  color: #162033;
}

html[data-theme="light"] .hero__stat-label {
  color: rgba(45, 54, 72, 0.66);
}

html[data-theme="light"] .hero-stage {
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.97), rgba(236, 242, 255, 0.94));
  border-color: rgba(15, 23, 42, 0.12);
  box-shadow: 0 34px 70px rgba(23, 34, 64, 0.14);
}

html[data-theme="light"] .hero-stage__ticker {
  color: rgba(42, 55, 88, 0.72);
}

html[data-theme="light"] .hero-stage__ticker-label {
  background: rgba(243, 247, 255, 0.9);
  border-color: rgba(15, 23, 42, 0.12);
  color: rgba(42, 55, 88, 0.85);
}

html[data-theme="light"] .hero-stage__card {
  background: rgba(255, 255, 255, 0.98);
  border-color: rgba(15, 23, 42, 0.12);
  box-shadow: 0 22px 42px rgba(23, 34, 64, 0.16);
}

html[data-theme="light"] .hero-stage__card figcaption {
  color: #0f172a;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(244, 247, 255, 0.96) 100%);
}



