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

html {
  scroll-behavior: smooth;
}

body {
  background: #030508;
  color: #f4f7fb;
  font-family: Inter, sans-serif;
  overflow-x: hidden;
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  mask-image: radial-gradient(ellipse at center, rgba(0,0,0,1) 20%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, rgba(0,0,0,1) 20%, transparent 80%);
  pointer-events: none;
  z-index: -2;
}

body::after {
  content: "";
  position: fixed;
  top: -30%;
  left: -10%;
  width: 70vw;
  height: 70vw;
  background: radial-gradient(circle, rgba(0, 217, 155, 0.08) 0%, transparent 60%);
  filter: blur(120px);
  z-index: -1;
  pointer-events: none;
  animation: floatOrb 25s infinite alternate ease-in-out;
}

@keyframes floatOrb {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(5vw, 10vh) scale(1.1); }
  100% { transform: translate(-5vw, 5vh) scale(0.9); }
}

:root {
  --green: #00f0a8;
  --green-dark: #00b37d;
  --cyan: #00d2ff;
  --purple: #b25cff;
  --border: rgba(255, 255, 255, 0.08);
  --glass: rgba(10, 15, 22, 0.65);
  --mono: "DM Mono", monospace;
}

/* Navbar */
.navbar {
  height: 60px;
  border-bottom: 1px solid var(--border);
  background: rgba(3, 5, 8, 0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  position: sticky;
  top: 0;
  z-index: 100;
  transition: all 0.3s ease;
}

.nav-inner {
  max-width: 1200px;
  height: 100%;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
}

.brand {
  color: white;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--mono);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.5px;
  transition: opacity 0.3s ease;
}

.brand:hover {
  opacity: 0.8;
}

.brand b {
  color: var(--green);
}

.brand-icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(0, 240, 168, 0.4);
  background: rgba(0, 240, 168, 0.1);
  border-radius: 10px;
  color: var(--green);
  box-shadow: 0 0 15px rgba(0, 240, 168, 0.15);
}

.nav-links {
  display: flex;
  gap: 40px;
}

.nav-links a,
.mobile-menu a {
  color: #8a9bb3;
  text-decoration: none;
  font: 600 11px var(--mono);
  letter-spacing: 1.2px;
  position: relative;
  transition: color 0.3s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--green);
  transition: width 0.3s ease;
  border-radius: 2px;
}

.nav-links a:hover {
  color: white;
}

.nav-links a:hover::after {
  width: 100%;
}

.telegram-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #000;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  text-decoration: none;
  border: none;
  border-radius: 12px;
  padding: 10px 22px;
  font: 700 11px var(--mono);
  letter-spacing: 1px;
  box-shadow: 0 4px 20px rgba(0, 240, 168, 0.25);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.telegram-btn:hover,
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0, 240, 168, 0.4);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: 0;
  color: #fff;
  font-size: 26px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.mobile-menu {
  display: none;
}

/* Hero */
.hero {
  min-height: calc(100vh - 60px);
  display: flex;
  align-items: center;
  padding: 80px 20px 100px;
  position: relative;
}

.hero-grid {
  width: 100%;
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
}

.status-pill {
  width: max-content;
  padding: 8px 16px;
  border: 1px solid rgba(0, 240, 168, 0.4);
  background: rgba(0, 240, 168, 0.05);
  color: var(--green);
  border-radius: 30px;
  font: 600 10px var(--mono);
  letter-spacing: 1.5px;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  box-shadow: 0 0 20px rgba(0, 240, 168, 0.1);
  backdrop-filter: blur(5px);
}

.status-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--green);
  border-radius: 50%;
  margin-right: 8px;
  box-shadow: 0 0 12px var(--green);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(0, 240, 168, 0.4); }
  70% { box-shadow: 0 0 0 6px rgba(0, 240, 168, 0); }
  100% { box-shadow: 0 0 0 0 rgba(0, 240, 168, 0); }
}

.hero h1 {
  font-size: clamp(50px, 6.5vw, 90px);
  line-height: 1.05;
  letter-spacing: -3px;
  font-weight: 800;
  margin-bottom: 30px;
  color: #fff;
}

.hero h1 span {
  background: linear-gradient(135deg, var(--green), var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.hero-description {
  max-width: 580px;
  color: #aeb9c8;
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 40px;
  font-weight: 400;
}

.hero-description strong {
  color: #fff;
  font-weight: 600;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  margin-bottom: 50px;
}

.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 24px;
  border-radius: 12px;
  text-decoration: none;
  font: 700 11px var(--mono);
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.btn-primary {
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: #000;
  border: none;
  box-shadow: 0 6px 25px rgba(0, 240, 168, 0.2);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.03);
  color: #fff;
  border: 1px solid var(--border);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(0, 240, 168, 0.4);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 240, 168, 0.15);
}

.btn-secondary span, .btn-primary span {
  transition: transform 0.3s ease;
}
.btn-secondary:hover span, .btn-primary:hover span {
  transform: translateX(4px);
}

.stats {
  max-width: 600px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.stat {
  position: relative;
}

.stat:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -10px;
  top: 10%;
  height: 80%;
  width: 1px;
  background: var(--border);
}

.stat strong {
  display: block;
  font-size: 18px;
  margin-bottom: 6px;
  color: #fff;
}

.stat span {
  color: #6a7b92;
  font: 600 8px var(--mono);
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

/* Telemetry Card */
.telemetry-wrap {
  position: relative;
  max-width: 420px;
  margin-left: auto;
  perspective: 1000px;
}

.telemetry-card {
  min-height: 405px;
  padding: 28px;
  border: 1px solid rgba(0, 240, 168, 0.2);
  border-radius: 20px;
  background: var(--glass);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transform-style: preserve-3d;
  transition: transform 0.5s ease;
}

.telemetry-wrap:hover .telemetry-card {
  transform: rotateY(-5deg) rotateX(5deg);
}

.telemetry-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.telemetry-title {
  color: var(--green);
  font: 600 10px var(--mono);
  letter-spacing: 1.8px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.telemetry-title span {
  animation: pulse 1.5s infinite;
}

.synced {
  color: #6a7b92;
  font: 600 8px var(--mono);
  letter-spacing: 1px;
}

.telemetry-line {
  height: 1px;
  background: linear-gradient(90deg, rgba(255,255,255,0.1), transparent);
  margin: 20px 0 30px;
}

.graph {
  height: 160px;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.3);
  box-shadow: inset 0 5px 20px rgba(0,0,0,0.2);
}

.graph-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 40px 40px;
}

.graph-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.graph-area {
  fill: url(#graphFill);
}

.graph-line {
  filter: drop-shadow(0 0 8px rgba(0, 240, 168, 0.5));
}

.graph-label {
  position: absolute;
  bottom: 12px;
  left: 15px;
  color: rgba(255,255,255,0.4);
  font: 600 7px var(--mono);
  letter-spacing: 1px;
}

.telemetry-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-top: 25px;
}

.telemetry-stat {
  min-height: 85px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.02);
  border-radius: 14px;
  padding: 15px;
  transition: all 0.3s ease;
}

.telemetry-stat:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(0, 240, 168, 0.2);
}

.telemetry-stat span {
  display: block;
  color: #6a7b92;
  font: 600 8px var(--mono);
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.telemetry-stat strong {
  display: block;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 5px;
  color: #fff;
}

.telemetry-stat small {
  color: var(--green);
  font-size: 8px;
  font-weight: 500;
}

.cyan {
  color: var(--cyan) !important;
}

.risk-line {
  margin-top: 22px;
  padding-top: 15px;
  border-top: 1px solid var(--border);
  color: #6a7b92;
  font: 600 8px var(--mono);
  letter-spacing: 0.8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.telegram-float {
  position: absolute;
  bottom: -25px;
  left: -25px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  background: rgba(10, 18, 28, 0.9);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 240, 168, 0.2);
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  transform: translateZ(30px);
  transition: transform 0.3s ease;
}

.telemetry-wrap:hover .telegram-float {
  transform: translateZ(50px) translateY(-5px);
}

.tg-circle {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(0, 210, 255, 0.1), rgba(0, 210, 255, 0.2));
  border: 1px solid rgba(0, 210, 255, 0.3);
  color: var(--cyan);
  font-size: 14px;
}

.telegram-float strong,
.telegram-float span {
  display: block;
}

.telegram-float strong {
  color: #fff;
  font: 700 9px var(--mono);
  letter-spacing: 0.5px;
}

.telegram-float span {
  color: var(--green);
  font-size: 8px;
  margin-top: 4px;
}

/* Ticker */
.ticker {
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(3, 5, 8, 0.8);
  backdrop-filter: blur(10px);
  padding: 12px 0;
  box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

.ticker-track {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 40px;
  color: #6a7b92;
  font: 700 9px var(--mono);
  letter-spacing: 2px;
  animation: ticker 30s linear infinite;
}

.ticker-track span {
  color: var(--green);
  font-size: 12px;
}

.ticker-track b {
  color: #fff;
}

@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Sections */
.section {
  padding: 120px 20px;
  position: relative;
}

.systems-section {
  max-width: 1200px;
  margin: auto;
}

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

.eyebrow {
  color: var(--green);
  font: 700 10px var(--mono);
  letter-spacing: 2px;
  margin-bottom: 16px;
  display: inline-block;
  padding: 6px 12px;
  background: rgba(0, 240, 168, 0.05);
  border: 1px solid rgba(0, 240, 168, 0.2);
  border-radius: 20px;
}

.section-heading h2 {
  font-size: clamp(36px, 4vw, 48px);
  line-height: 1.1;
  letter-spacing: -1.5px;
  color: #fff;
}

.section-heading > p {
  color: #8da4c0;
  font-size: 14px;
  line-height: 1.8;
  max-width: 350px;
}

/* System Cards */
.system-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.system-card {
  min-height: 460px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: var(--glass);
  backdrop-filter: blur(15px);
  position: relative;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.system-card:hover {
  transform: translateY(-10px);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(255,255,255,0.05);
}

.system-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(800px circle at var(--mouse-x) var(--mouse-y), rgba(255,255,255,0.06), transparent 40%);
  z-index: 10;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s;
}

.system-card:hover::before {
  opacity: 1;
}

.card-visual {
  height: 220px;
  position: relative;
  overflow: hidden;
}

.card-visual:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 10%, var(--glass) 100%);
}

.aviator .card-visual {
  background: radial-gradient(circle at 50% 50%, rgba(255, 50, 80, 0.2), transparent 60%), #120a0f;
}

.jetx .card-visual {
  background: radial-gradient(circle at 50% 50%, rgba(0, 210, 255, 0.2), transparent 60%), #0a101a;
}

.color .card-visual {
  background: radial-gradient(circle at 50% 50%, rgba(178, 92, 255, 0.2), transparent 60%), #14081c;
}

.card-icon {
  position: absolute;
  left: 25px;
  top: 25px;
  z-index: 3;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  font-size: 18px;
  backdrop-filter: blur(10px);
}

.aviator .card-icon {
  color: #ff4d6d;
  border: 1px solid rgba(255, 77, 109, 0.3);
  background: rgba(255, 77, 109, 0.1);
  box-shadow: 0 0 20px rgba(255, 77, 109, 0.2);
}

.jetx .card-icon {
  color: var(--cyan);
  border: 1px solid rgba(0, 210, 255, 0.3);
  background: rgba(0, 210, 255, 0.1);
  box-shadow: 0 0 20px rgba(0, 210, 255, 0.2);
}

.color .card-icon {
  color: var(--purple);
  border: 1px solid rgba(178, 92, 255, 0.3);
  background: rgba(178, 92, 255, 0.1);
  box-shadow: 0 0 20px rgba(178, 92, 255, 0.2);
}

.card-badge {
  position: absolute;
  z-index: 3;
  right: 25px;
  top: 25px;
  padding: 8px 12px;
  border: 1px solid var(--border);
  border-radius: 20px;
  color: #fff;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(5px);
  font: 700 8px var(--mono);
  letter-spacing: 1.2px;
}

.visual-plane {
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 55%;
  transform: translate(-50%, -50%) rotate(-25deg);
  font-size: 100px;
  color: rgba(255, 255, 255, 0.05);
  transition: transform 0.5s ease;
}

.system-card:hover .visual-plane {
  transform: translate(-50%, -60%) rotate(-15deg) scale(1.1);
}

.jet-visual {
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-size: 65px;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.05);
  letter-spacing: -2px;
  transition: transform 0.5s ease;
}

.system-card:hover .jet-visual {
  transform: translate(-50%, -55%) scale(1.1);
}

.balls {
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  gap: 15px;
  transition: transform 0.5s ease;
}

.system-card:hover .balls {
  transform: translate(-50%, -55%) scale(1.05);
}

.balls span {
  width: 90px;
  height: 90px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #e07a5f, #3d405b 80%);
  color: rgba(255, 255, 255, 0.8);
  font-size: 40px;
  font-weight: 800;
  box-shadow: 0 10px 20px rgba(0,0,0,0.5);
}
.balls span:nth-child(2) {
  background: radial-gradient(circle at 30% 30%, #81b29a, #3d405b 80%);
}

.card-body {
  position: relative;
  z-index: 5;
  padding: 0 30px 30px;
}

.card-label {
  font: 700 9px var(--mono);
  letter-spacing: 1.5px;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.aviator .card-label { color: #ff4d6d; }
.jetx .card-label { color: var(--cyan); }
.color .card-label { color: var(--purple); }

.card-body h3 {
  font-size: 24px;
  color: #fff;
  letter-spacing: -0.5px;
  margin-bottom: 15px;
}

.card-body p {
  min-height: 60px;
  color: #8da4c0;
  font-size: 13px;
  line-height: 1.7;
}

.card-divider {
  height: 1px;
  background: var(--border);
  margin: 20px 0;
}

.card-body ul {
  list-style: none;
  margin-bottom: 25px;
}

.card-body li {
  color: #aebbd0;
  font-size: 12px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.card-body li:before {
  content: "✓";
  color: var(--green);
  margin-right: 10px;
  font-weight: bold;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  text-decoration: none;
  font: 700 10px var(--mono);
  letter-spacing: 1px;
  transition: color 0.3s ease;
}

.card-link span {
  transition: transform 0.3s ease;
}

.card-link:hover {
  color: var(--green);
}

.card-link:hover span {
  transform: translateX(5px);
}

/* Protocol Section */
.protocol-section {
  background: rgba(10, 15, 22, 0.4);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 100px max(20px, calc((100vw - 1200px) / 2));
}

.protocol-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 50px;
}

.protocol-card {
  min-height: 220px;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 35px;
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.3s ease;
}

.protocol-card:hover {
  border-color: rgba(0, 240, 168, 0.3);
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.protocol-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.protocol-top span:first-child {
  color: var(--green);
  font: 700 12px var(--mono);
  background: rgba(0, 240, 168, 0.1);
  padding: 4px 10px;
  border-radius: 12px;
}

.protocol-top span:last-child {
  color: #4a5b70;
  font-size: 24px;
}

.protocol-content h3 {
  font-size: 20px;
  color: #fff;
  margin-bottom: 15px;
}

.protocol-content p {
  color: #8da4c0;
  font-size: 13px;
  line-height: 1.7;
}

/* Direct Section */
.direct-section {
  padding: 120px 20px;
  display: flex;
  justify-content: center;
}

.direct-card {
  width: 100%;
  max-width: 800px;
  text-align: center;
  padding: 60px 40px;
  border: 1px solid rgba(0, 210, 255, 0.2);
  border-radius: 24px;
  background: radial-gradient(circle at 50% 0%, rgba(0, 210, 255, 0.1), transparent 60%), var(--glass);
  backdrop-filter: blur(20px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.direct-icon {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  margin: 0 auto 25px;
  border: 1px solid rgba(0, 210, 255, 0.3);
  border-radius: 14px;
  color: var(--cyan);
  font-size: 20px;
  background: rgba(0, 210, 255, 0.1);
  box-shadow: 0 0 20px rgba(0, 210, 255, 0.2);
}

.direct-card h2 {
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.2;
  letter-spacing: -1px;
  margin-bottom: 20px;
  color: #fff;
}

.direct-card p {
  color: #8ca5c0;
  font-size: 14px;
  line-height: 1.8;
  max-width: 550px;
  margin: 0 auto 35px;
}

.direct-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.direct-card small {
  display: block;
  margin-top: 30px;
  color: #4a5b70;
  font: 700 9px var(--mono);
  letter-spacing: 2px;
}

/* Responsible Section */
.responsible-section {
  padding: 0 20px 100px;
  display: flex;
  justify-content: center;
}

.responsible-card {
  width: 100%;
  max-width: 900px;
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 25px;
  padding: 35px;
  border: 1px solid rgba(255, 170, 0, 0.3);
  border-radius: 20px;
  background: rgba(255, 170, 0, 0.05);
  backdrop-filter: blur(10px);
}

.warning-icon {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  border: 1px solid rgba(255, 170, 0, 0.4);
  color: #ffaa00;
  background: rgba(255, 170, 0, 0.1);
  font-weight: bold;
  font-size: 20px;
}

.yellow {
  color: #ffaa00;
  background: rgba(255, 170, 0, 0.1);
  border-color: rgba(255, 170, 0, 0.2);
}

.responsible-card h2 {
  font-size: 22px;
  margin-bottom: 15px;
  color: #fff;
}

.responsible-card p {
  color: #8da4c0;
  font-size: 12px;
  line-height: 1.8;
}

/* Footer */
footer {
  border-top: 1px solid var(--border);
  padding: 30px 20px;
  background: rgba(3, 5, 8, 0.9);
}

.footer-inner {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-inner span {
  color: #4a5b70;
  font-size: 11px;
}

.footer-inner a {
  color: #fff;
  text-decoration: none;
  font: 700 10px var(--mono);
  letter-spacing: 1.5px;
  transition: color 0.3s ease;
}

.footer-inner a:hover {
  color: var(--green);
}

/* Utilities */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s cubic-bezier(0.25, 0.8, 0.25, 1), transform 1s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

/* Media Queries */
@media (max-width: 1024px) {
  .hero-grid { gap: 40px; }
  .hero h1 { font-size: 60px; }
  .system-cards { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .navbar { height: 70px; }
  .nav-inner { padding: 0 20px; }
  .nav-links, .nav-telegram { display: none; }
  .mobile-menu-btn { display: block; }
  
  .mobile-menu {
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: rgba(3, 5, 8, 0.95);
    backdrop-filter: blur(20px);
    padding: 30px 20px;
    border-bottom: 1px solid var(--border);
    clip-path: circle(0% at 100% 0);
    transition: clip-path 0.5s ease-in-out;
    opacity: 0;
    pointer-events: none;
  }
  
  .mobile-menu.active {
    clip-path: circle(150% at 100% 0);
    opacity: 1;
    pointer-events: all;
  }

  .mobile-menu a {
    font-size: 14px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
  }

  .mobile-menu .telegram-btn {
    margin-top: 10px;
    width: 100%;
    border-bottom: none;
  }

  .hero {
    padding: 60px 20px 80px;
    min-height: auto;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 60px;
    text-align: center;
  }

  .status-pill {
    margin: 0 auto 30px;
  }

  .hero h1 {
    font-size: clamp(40px, 10vw, 60px);
    margin-bottom: 20px;
  }

  .hero-description {
    margin: 0 auto 30px;
    font-size: 15px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
    max-width: 400px;
    margin: 0 auto 40px;
  }

  .stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 15px;
  }
  
  .stat:nth-child(2)::after { display: none; }
  .stat:last-child::after { display: none; }

  .telemetry-wrap {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
  }
  
  .telegram-float {
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%) translateZ(30px);
    width: 90%;
    justify-content: center;
  }
  
  .telemetry-wrap:hover .telegram-float {
    transform: translateX(-50%) translateZ(50px) translateY(-5px);
  }

  .section { padding: 80px 20px; }
  
  .section-heading {
    grid-template-columns: 1fr;
    gap: 20px;
    text-align: center;
    margin-bottom: 40px;
  }
  
  .section-heading > p {
    max-width: 100%;
    margin: 0 auto;
  }

  .system-cards { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
  .protocol-cards { grid-template-columns: 1fr; }
  
  .direct-card { padding: 40px 25px; }
  .direct-buttons { flex-direction: column; }
  
  .responsible-card {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .warning-icon { margin: 0 auto; }
  
  .footer-inner {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 38px; }
  .telemetry-card { padding: 20px; }
  .telemetry-stats { grid-template-columns: 1fr; }
  .card-visual { height: 180px; }
  .card-body { padding: 0 20px 25px; }
  .protocol-card { padding: 25px; }
}
