:root {
  --bg: #080b12;
  --fg: #efede7;
  --card: #121721;
  --card-deep: #0d121c;
  --gold: #ffc61a;
  --green: #1fad7e;
  --pink: #f0427c;
  --muted: #1b212d;
  --muted-fg: #89d2b4;
  --border: #212631;
  --radius: 0.75rem;
  color-scheme: dark;
  font-synthesis: none;
}

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

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--fg);
  font-family: "Rajdhani", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a:focus-visible,
[tabindex]:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}

::selection {
  background: rgba(255, 198, 26, 0.24);
  color: var(--fg);
}

::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background: rgba(31, 173, 126, 0.3);
}

.skip-link {
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 1000;
  transform: translateY(-180%);
  border: 1px solid rgba(255, 198, 26, 0.5);
  border-radius: 0.4rem;
  background: #101722;
  color: var(--gold);
  font-family: "Orbitron", monospace;
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  padding: 0.75rem 1rem;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: 100%;
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: 1rem;
}

.ambient {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.ambient__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(31, 173, 126, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(31, 173, 126, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}

.ambient__orb,
.ambient__corner {
  position: absolute;
}

.ambient__orb {
  border-radius: 50%;
}

.ambient__orb--green {
  top: -10%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(23, 130, 94, 0.12) 0%, transparent 70%);
  animation: float 12s ease-in-out infinite;
}

.ambient__orb--gold {
  top: 40%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 191, 0, 0.06) 0%, transparent 70%);
  animation: float 16s ease-in-out 3s infinite;
}

.ambient__corner {
  width: 24rem;
  height: 24rem;
}

.ambient__corner--top {
  top: 0;
  left: 0;
  background: radial-gradient(circle at 0 0, rgba(23, 130, 94, 0.08) 0%, transparent 60%);
}

.ambient__corner--bottom {
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 100% 100%, rgba(255, 191, 0, 0.06) 0%, transparent 60%);
}

main,
.footer {
  position: relative;
  z-index: 10;
}

.glass {
  background: linear-gradient(135deg, rgba(18, 23, 33, 0.85), rgba(12, 16, 24, 0.7));
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}

.glass-elevated {
  background: linear-gradient(135deg, rgba(20, 25, 36, 0.9), rgba(13, 18, 28, 0.8));
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
}

.shadow-card {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6), 0 0 1px rgba(31, 173, 126, 0.15);
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-block: 4rem;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: 2.5rem;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 999px;
  font-family: "Orbitron", monospace;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  line-height: 1.5;
  padding: 0.375rem 0.75rem;
  text-transform: uppercase;
}

.pill--green {
  border: 1px solid rgba(31, 173, 126, 0.3);
  background: rgba(31, 173, 126, 0.1);
  color: var(--green);
}

.pill--gold {
  border: 1px solid rgba(255, 198, 26, 0.4);
  background: rgba(255, 198, 26, 0.1);
  color: var(--gold);
}

.pill--large {
  padding: 0.625rem 1.25rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.23em;
}

.hero__eyebrow {
  margin-bottom: 1rem;
}

.status-dot {
  display: inline-block;
  flex: 0 0 auto;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
}

.status-dot--green {
  background: var(--green);
  box-shadow: 0 0 10px rgba(31, 173, 126, 0.5);
}

.status-dot--gold {
  background: var(--gold);
  box-shadow: 0 0 10px rgba(255, 198, 26, 0.45);
}

.status-dot--pink {
  background: var(--pink);
  box-shadow: 0 0 10px rgba(240, 66, 124, 0.5);
}

.status-dot--blink {
  animation: blink 1.4s ease-in-out infinite;
}

.status-dot--fast {
  width: 6px;
  height: 6px;
  animation: blink 0.8s ease-in-out infinite;
}

.brand-title {
  margin-bottom: 1.5rem;
  font-family: "Orbitron", monospace;
  line-height: 0.9;
  text-transform: uppercase;
}

.brand-title span {
  display: block;
  font-size: clamp(2rem, 5vw, 3.75rem);
}

.brand-title__top {
  color: var(--fg);
  letter-spacing: 0.14em;
}

.brand-title__bottom {
  color: var(--gold);
  letter-spacing: 0.12em;
  text-shadow: 0 0 26px rgba(255, 198, 26, 0.13);
}

.hero__line {
  width: 11rem;
  height: 1px;
  margin-bottom: 1.5rem;
  background: linear-gradient(90deg, var(--gold), var(--green), transparent);
}

.hero__description {
  margin-bottom: 1.75rem;
  color: rgba(239, 237, 231, 0.9);
  font-size: 1.15rem;
  line-height: 1.6;
}

.inline-heart {
  display: inline-flex;
  width: 14px;
  height: 14px;
  vertical-align: -2px;
}

.inline-heart svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: var(--pink);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.hero__badges,
.hero__actions,
.footer__actions {
  display: flex;
  flex-wrap: wrap;
}

.hero__badges {
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.hero__actions {
  gap: 0.5rem;
}

.button,
.footer-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
  border-radius: 0.375rem;
  font-family: "Orbitron", monospace;
  font-weight: 600;
  line-height: 1.5;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 0.2s ease, filter 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.button {
  min-height: 34px;
  padding: 0.5rem 1rem;
  font-size: 0.6rem;
  letter-spacing: 0.16em;
}

.button svg,
.footer-button svg {
  width: 12px;
  height: 12px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.button--gold {
  border: 1px solid rgba(255, 198, 26, 0.3);
  color: var(--gold);
}

.button--green {
  border: 1px solid rgba(31, 173, 126, 0.3);
  color: var(--green);
}

.button--pink {
  border: 1px solid rgba(240, 66, 124, 0.25);
  color: var(--pink);
}

.button--gold:hover {
  background: rgba(255, 198, 26, 0.1);
}

.button--green:hover {
  background: rgba(31, 173, 126, 0.1);
}

.button--pink:hover {
  background: rgba(240, 66, 124, 0.1);
}

.button:hover,
.footer-button:hover {
  filter: brightness(1.2);
}

.mockup-panel {
  position: relative;
  overflow: hidden;
  cursor: default;
  border: 1px solid rgba(33, 38, 49, 0.6);
  border-radius: 1rem;
  padding: 1.5rem;
}

.mockup-panel::after {
  content: "";
  position: absolute;
  inset: auto 18% 5% 18%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(31, 173, 126, 0.18), transparent);
}

.mockup-panel__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
  color: var(--muted-fg);
  font-family: "Orbitron", monospace;
  font-size: 0.55rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.mockup-panel__live {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--green);
}

.mockup-panel__live .status-dot {
  width: 6px;
  height: 6px;
}

.mockup-panel__image {
  display: block;
  width: 100%;
  max-width: 760px;
  height: auto;
  margin-inline: auto;
  animation: float 6s ease-in-out infinite;
  filter: saturate(0.95) contrast(1.02);
}

.mockup-panel__scan {
  position: absolute;
  top: -2px;
  right: 0;
  left: 0;
  height: 1px;
  opacity: 0.24;
  background: linear-gradient(90deg, transparent, var(--green), transparent);
  animation: scan 7s linear infinite;
}

.stats-section {
  padding-block: 2rem;
}

.stats-bar {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid rgba(31, 173, 126, 0.15);
  border-radius: var(--radius);
}

.stat-item {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 0.75rem;
  border-right: 1px solid rgba(33, 38, 49, 0.3);
  border-bottom: 1px solid rgba(33, 38, 49, 0.3);
  padding: 1rem 1.25rem;
  transition: background 0.2s ease;
}

.stat-item:nth-child(even) {
  border-right: 0;
}

.stat-item:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.stat-item:hover {
  background: rgba(27, 33, 45, 0.15);
}

.stat-item__icon {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  fill: none;
  opacity: 0.8;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.stat-item__icon--gold,
.stat-item__value--gold {
  color: var(--gold);
}

.stat-item__icon--green,
.stat-item__value--green {
  color: var(--green);
}

.stat-item__icon--pink,
.stat-item__value--pink {
  color: var(--pink);
}

.stat-item__label {
  color: var(--muted-fg);
  font-family: "Orbitron", monospace;
  font-size: 0.55rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.stat-item__value-line {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}

.stat-item__value {
  display: block;
  overflow: hidden;
  font-family: "Orbitron", monospace;
  font-size: 0.875rem;
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.stat-item__tag {
  color: var(--green);
  font-family: "Orbitron", monospace;
  font-size: 0.55rem;
  font-weight: 700;
  white-space: nowrap;
}

.ticker-section {
  padding-bottom: 1rem;
}

.ticker {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.ticker__beam {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(31, 173, 126, 0.4), transparent) 0 0 / 200% 100%;
  animation: gradient-shift 4s ease infinite;
}

.ticker__inner {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-height: 43px;
  padding: 0.625rem 1rem;
}

.ticker__label {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 0.375rem;
  border-right: 1px solid rgba(33, 38, 49, 0.3);
  padding-right: 0.75rem;
  color: var(--pink);
  font-family: "Orbitron", monospace;
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.ticker__content {
  display: flex;
  min-width: 0;
  flex: 1;
  align-items: center;
  gap: 0.5rem;
}

.ticker__content.is-entering {
  animation: slide-in 0.3s ease-out;
}

.ticker__icon {
  display: flex;
  flex: 0 0 auto;
  width: 14px;
  height: 14px;
  align-items: center;
  color: var(--ticker-color, var(--gold));
}

.ticker__icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.ticker__message {
  overflow: hidden;
  color: var(--fg);
  font-size: 0.875rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ticker__message span {
  color: var(--muted-fg);
}

.ticker__time {
  flex: 0 0 auto;
  margin-left: auto;
  color: rgba(137, 210, 180, 0.6);
  font-size: 0.75rem;
}

.content-section {
  padding-block: 3rem;
}

.content-section--spacious {
  padding-block: 4rem;
}

.section-heading {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.section-heading__line {
  height: 1px;
  flex: 1;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.section-heading__title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.section-heading h2 {
  color: var(--muted-fg);
  font-family: "Orbitron", monospace;
  font-size: 0.625rem;
  letter-spacing: 0.35em;
  text-align: center;
  text-transform: uppercase;
}

.section-heading__arrow {
  font-size: 0.75rem;
  animation: blink 2s ease-in-out infinite;
}

.section-heading__arrow--gold {
  color: var(--gold);
}

.section-heading__arrow--green {
  color: var(--green);
}

.section-heading__arrow--pink {
  color: var(--pink);
}

.card-grid {
  display: grid;
  gap: 1rem;
}

.feature-card,
.step-card,
.testimonial {
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.feature-card {
  position: relative;
  overflow: hidden;
  padding: 1.25rem;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.feature-card:hover {
  transform: scale(1.02);
  border-color: rgba(31, 173, 126, 0.3);
}

.feature-card__glow {
  position: absolute;
  top: 0;
  right: 0;
  width: 8rem;
  height: 8rem;
  pointer-events: none;
  background: radial-gradient(circle, rgba(31, 173, 126, 0.05), transparent 70%);
}

.feature-card__icon {
  width: 1.25rem;
  height: 1.25rem;
  margin-bottom: 0.75rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.feature-card__icon--gold {
  color: var(--gold);
}

.feature-card__icon--pink {
  color: var(--pink);
}

.feature-card h3,
.step-card h3 {
  color: var(--fg);
  font-family: "Orbitron", monospace;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.feature-card h3 {
  margin-bottom: 0.25rem;
}

.feature-card p,
.step-card p {
  color: var(--muted-fg);
  font-size: 0.875rem;
  line-height: 1.6;
}

.live-layout {
  display: grid;
  gap: 1.5rem;
}

.feed-panel {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.feed-panel__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(33, 38, 49, 0.5);
  padding: 0.75rem 1rem;
}

.feed-panel__title,
.feed-panel__streaming {
  display: flex;
  align-items: center;
}

.feed-panel__title {
  gap: 0.5rem;
  color: var(--fg);
  font-family: "Orbitron", monospace;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.feed-panel__title svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: var(--pink);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
  animation: blink 1s ease-in-out infinite;
}

.feed-panel__streaming {
  gap: 0.375rem;
  color: var(--green);
  font-family: "Orbitron", monospace;
  font-size: 0.55rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.feed-panel__streaming .status-dot {
  width: 6px;
  height: 6px;
}

.feed-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  border-bottom: 1px solid rgba(33, 38, 49, 0.3);
  padding: 0.75rem 1rem;
  transition: background 0.2s ease;
}

.feed-item:last-child {
  border-bottom: 0;
}

.feed-item:hover {
  background: rgba(27, 33, 45, 0.1);
}

.feed-item__icon {
  display: flex;
  width: 2rem;
  height: 2rem;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--feed-border);
  border-radius: 0.5rem;
  background: var(--feed-bg);
  color: var(--feed-color);
}

.feed-item__icon svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.feed-item__body {
  min-width: 0;
  flex: 1;
}

.feed-item__heading {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 2px;
}

.feed-item__table {
  color: var(--feed-color);
  font-family: "Orbitron", monospace;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.feed-item__chevron {
  color: rgba(137, 210, 180, 0.3);
  font-size: 0.75rem;
}

.feed-item__message {
  color: rgba(239, 237, 231, 0.8);
  font-size: 0.875rem;
  line-height: 1.5;
}

.feed-item__time {
  display: inline-block;
  margin-top: 0.25rem;
  color: rgba(137, 210, 180, 0.5);
  font-size: 0.75rem;
}

.insight-stack {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.insight-card {
  position: relative;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, currentColor 20%, transparent);
  border-radius: var(--radius);
  padding: 1.25rem;
}

.insight-card--gold {
  color: var(--gold);
}

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

.insight-card--pink {
  color: var(--pink);
}

.insight-card__line {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, currentColor, transparent);
  opacity: 0.4;
}

.insight-card__label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  font-family: "Orbitron", monospace;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.insight-card__label svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.insight-card__number {
  font-family: "Orbitron", monospace;
  font-size: 1.875rem;
  font-weight: 900;
  text-shadow: 0 0 15px currentColor;
  text-transform: uppercase;
}

.insight-card__description {
  margin-top: 0.25rem;
  color: var(--muted-fg);
  font-size: 0.75rem;
}

.step-card {
  position: relative;
  padding: 2.5rem 1.5rem 1.5rem;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-card:hover {
  transform: translateY(-0.5rem);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
}

.step-card__number {
  position: absolute;
  top: -0.875rem;
  left: 50%;
  display: flex;
  width: 2rem;
  height: 2rem;
  transform: translateX(-50%);
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(31, 173, 126, 0.4);
  border-radius: 50%;
  background: rgba(31, 173, 126, 0.2);
  color: var(--green);
  font-family: "Orbitron", monospace;
  font-size: 0.75rem;
  font-weight: 700;
}

.step-card__icon {
  display: flex;
  width: 4rem;
  height: 4rem;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  background: rgba(27, 33, 45, 0.3);
}

.step-card__icon--gold {
  color: var(--gold);
}

.step-card__icon--green {
  color: var(--green);
}

.step-card__icon--pink {
  color: var(--pink);
}

.step-card__icon svg {
  width: 1.75rem;
  height: 1.75rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.step-card h3 {
  margin-bottom: 0.5rem;
}

.testimonial {
  position: relative;
  padding: 1.25rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
}

.testimonial__quote {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 1.25rem;
  height: 1.25rem;
  fill: none;
  stroke: rgba(255, 198, 26, 0.2);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.stars {
  margin-bottom: 0.75rem;
  color: var(--gold);
  font-family: Arial, sans-serif;
  font-size: 0.875rem;
  letter-spacing: 2px;
}

.testimonial__text {
  margin-bottom: 1.25rem;
  color: var(--muted-fg);
  font-size: 0.875rem;
  line-height: 1.6;
}

.testimonial__author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testimonial__avatar {
  display: flex;
  width: 2.25rem;
  height: 2.25rem;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(31, 173, 126, 0.3);
  border-radius: 50%;
  background: rgba(31, 173, 126, 0.2);
  color: var(--green);
  font-family: "Orbitron", monospace;
  font-size: 0.6rem;
  font-weight: 700;
}

.testimonial__name {
  color: var(--fg);
  font-size: 0.875rem;
  font-weight: 600;
}

.testimonial__role {
  color: var(--muted-fg);
  font-size: 0.75rem;
}

.footer {
  margin-top: 2rem;
  padding: 2rem 0 2rem;
}

.footer__cta {
  max-width: 42rem;
  margin-inline: auto;
  text-align: center;
}

.footer h2 {
  margin-bottom: 1rem;
  color: var(--gold);
  font-family: "Orbitron", monospace;
  font-size: clamp(1.5rem, 3vw, 1.875rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-shadow: 0 0 30px rgba(255, 198, 26, 0.3);
  text-transform: uppercase;
}

.footer__description {
  margin-bottom: 2rem;
  color: var(--muted-fg);
  font-size: 1.125rem;
}

.footer__actions {
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 2.25rem;
}

.footer-button {
  min-height: 46px;
  padding: 0.875rem 1.75rem;
  color: var(--fg);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
}

.footer-button svg {
  width: 14px;
  height: 14px;
}

.footer-button--gold {
  border: 1px solid rgba(255, 198, 26, 0.45);
  background: rgba(255, 198, 26, 0.07);
  box-shadow: 0 0 8px rgba(255, 198, 26, 0.35), 0 0 30px rgba(255, 198, 26, 0.12);
}

.footer-button--green {
  border: 1px solid rgba(31, 173, 126, 0.45);
  background: rgba(31, 173, 126, 0.07);
  box-shadow: 0 0 8px rgba(31, 173, 126, 0.35), 0 0 30px rgba(31, 173, 126, 0.12);
}

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

.responsible-note {
  display: flex;
  max-width: 52rem;
  flex-direction: column;
  gap: 0.25rem;
  margin: 0 auto 2rem;
  border-top: 1px solid rgba(33, 38, 49, 0.8);
  border-bottom: 1px solid rgba(33, 38, 49, 0.8);
  padding: 1rem;
  color: rgba(137, 210, 180, 0.6);
  font-size: 0.78rem;
  line-height: 1.5;
  text-align: center;
}

.responsible-note strong {
  color: rgba(239, 237, 231, 0.72);
  font-family: "Orbitron", monospace;
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer__dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 0.75rem;
}

.footer__dot {
  display: block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
}

.footer__dot--green {
  background: rgba(31, 173, 126, 0.45);
}

.footer__dot--gold {
  width: 6px;
  height: 6px;
  background: rgba(255, 198, 26, 0.65);
}

.footer__dot--pink {
  background: rgba(240, 66, 124, 0.45);
}

.footer__url {
  color: rgba(137, 210, 180, 0.4);
  font-family: "Orbitron", monospace;
  font-size: 0.55rem;
  letter-spacing: 0.5em;
  text-align: center;
  text-transform: uppercase;
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}

@keyframes scan {
  from {
    top: -2px;
  }
  to {
    top: 100%;
  }
}

@keyframes gradient-shift {
  0% {
    background-position: 0 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0 50%;
  }
}

@keyframes slide-in {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (min-width: 640px) {
  .card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 768px) {
  .stats-bar {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .stat-item,
  .stat-item:nth-child(even),
  .stat-item:nth-last-child(-n + 2) {
    border-right: 1px solid rgba(33, 38, 49, 0.3);
    border-bottom: 0;
  }

  .stat-item:last-child {
    border-right: 0;
  }
}

@media (min-width: 1024px) {
  .hero__grid {
    grid-template-columns: 5fr 7fr;
    gap: 3.5rem;
  }

  .card-grid--three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .card-grid--four {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .live-layout {
    grid-template-columns: 3fr 2fr;
  }
}

@media (max-width: 1023px) {
  .hero__copy {
    text-align: center;
  }

  .hero__line {
    margin-right: auto;
    margin-left: auto;
  }

  .hero__badges,
  .hero__actions {
    justify-content: center;
  }
}

@media (max-width: 639px) {
  .hero {
    padding-block: 4rem;
  }

  .brand-title span {
    font-size: 2rem;
  }

  .brand-title__top {
    letter-spacing: 0.1em;
  }

  .brand-title__bottom {
    letter-spacing: 0.08em;
  }

  .hero__description {
    font-size: 1rem;
  }

  .pill--large {
    justify-content: center;
  }

  .hero__actions {
    max-width: 20rem;
    margin-inline: auto;
  }

  .mockup-panel {
    padding: 1.25rem;
  }

  .mockup-panel__header {
    font-size: 0.48rem;
    letter-spacing: 0.23em;
  }

  .stats-bar {
    grid-template-columns: 1fr;
  }

  .stat-item,
  .stat-item:nth-child(even),
  .stat-item:nth-last-child(-n + 2) {
    border-right: 0;
    border-bottom: 1px solid rgba(33, 38, 49, 0.3);
  }

  .stat-item:last-child {
    border-bottom: 0;
  }

  .ticker__time {
    display: none;
  }

  .ticker__message {
    font-size: 0.78rem;
  }

  .section-heading {
    gap: 0.65rem;
  }

  .section-heading__title {
    flex: 0 1 auto;
    gap: 0.35rem;
  }

  .section-heading h2 {
    max-width: 15rem;
    font-size: 0.56rem;
    letter-spacing: 0.24em;
  }

  .feed-panel__streaming {
    font-size: 0.46rem;
  }

  .footer__actions {
    flex-direction: column;
    align-items: center;
  }

  .footer-button {
    width: min(100%, 18rem);
  }

  .footer__url {
    letter-spacing: 0.35em;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }

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