:root {
  --bg: #050505;
  --surface: #0e0e0e;
  --surface-hover: #161616;
  --border: #2a2a2a;
  --border-highlight: #444444;
  --text-main: #f3f3f3;
  --text-muted: #888888;
  --accent: #ccff00;
  /* Electric Volt */
  --accent-hover: #b3e600;
}

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

body {
  font-family: "Inter", sans-serif;
  background-color: var(--bg);
  color: var(--text-main);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Animated Grid Background */
.grid-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 200vw;
  height: 200vh;
  background-image:
    linear-gradient(to right, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  z-index: -1;
  animation: panGrid 60s linear infinite;
  pointer-events: none;
}

.grid-fade {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: radial-gradient(circle at 50% 50%, transparent 0%, var(--bg) 80%);
  z-index: -1;
  pointer-events: none;
}

@keyframes panGrid {
  0% {
    transform: translateY(0) translateX(0);
  }

  100% {
    transform: translateY(-40px) translateX(-40px);
  }
}

h1,
h2,
h3,
.logo-text {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.mono {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.85rem;
  letter-spacing: -0.01em;
}

a {
  color: var(--text-main);
  text-decoration: none;
  transition: 0.2s;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

/* Nav */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  padding: 24px 0;
  background: rgba(5, 5, 5, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

nav .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-mark {
  width: 16px;
  height: 16px;
  background: var(--accent);
  box-shadow: 4px 4px 0px rgba(255, 255, 255, 0.1);
}

.logo-text {
  font-size: 1.25rem;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}

.nav-links a {
  color: var(--text-muted);
  text-transform: uppercase;
}

.nav-links a:hover {
  color: var(--accent);
}

/* Hero */
.hero {
  padding: 180px 0 120px;
  position: relative;
  overflow: hidden;
}

/* Hero Animated Seal */
.hero-seal {
  position: absolute;
  top: 100px;
  right: -50px;
  width: 500px;
  height: 500px;
  opacity: 0.08;
  pointer-events: none;
  animation: rotateSlow 40s linear infinite;
  z-index: -1;
}

@media (max-width: 900px) {
  .hero-seal {
    display: none;
  }
}

@keyframes rotateSlow {
  100% {
    transform: rotate(360deg);
  }
}

.hero-seal-inner {
  animation: rotateSlowReverse 30s linear infinite;
  transform-origin: center;
}

@keyframes rotateSlowReverse {
  100% {
    transform: rotate(-360deg);
  }
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 8px 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text-muted);
  margin-bottom: 40px;
  text-transform: uppercase;
  animation: fadeUp 0.8s ease backwards;
}

.badge .dot {
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--accent);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    opacity: 1;
  }

  50% {
    opacity: 0.4;
    box-shadow: 0 0 2px var(--accent);
  }

  100% {
    opacity: 1;
  }
}

.hero h1 {
  font-size: clamp(3rem, 8vw, 6rem);
  line-height: 0.95;
  margin-bottom: 32px;
  text-transform: uppercase;
  animation: fadeUp 0.8s ease 0.1s backwards;
}

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

.hero p {
  font-size: clamp(1.1rem, 2vw, 1.25rem);
  color: var(--text-muted);
  max-width: 600px;
  margin-bottom: 48px;
  line-height: 1.6;
  animation: fadeUp 0.8s ease 0.2s backwards;
}

.btn-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeUp 0.8s ease 0.3s backwards;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  border: none;
  outline: none;
  font-family: "JetBrains Mono", monospace;
  transition: all 0.2s cubic-bezier(0.25, 1, 0.5, 1);
}

.btn-primary {
  background: var(--accent);
  color: #000;
  box-shadow: 4px 4px 0px var(--border-highlight);
  border: 1px solid var(--accent);
}

.btn-primary:hover {
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0px var(--border-highlight);
  background: var(--accent-hover);
}

.btn-secondary {
  background: transparent;
  color: var(--text-main);
  border: 1px solid var(--border);
  box-shadow: 4px 4px 0px var(--surface);
}

.btn-secondary:hover {
  background: var(--surface);
  border-color: var(--border-highlight);
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0px var(--surface);
}

/* Install Code Block */
.install-block {
  margin-top: 80px;
  max-width: 450px;
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 16px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-left: 4px solid var(--accent);
  animation: fadeUp 0.8s ease 0.4s backwards;
}

.install-block code {
  color: var(--text-main);
  font-size: 0.95rem;
}

.install-block code span {
  color: var(--accent);
}

.install-block .copy {
  color: var(--text-muted);
  cursor: pointer;
  text-transform: uppercase;
  font-size: 0.8rem;
  font-weight: 700;
}

.install-block .copy:hover {
  color: var(--accent);
}

/* Section Layout */
section {
  padding: 120px 0;
  border-top: 1px dotted var(--border);
  position: relative;
}

.section-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 64px;
}

@media (max-width: 900px) {
  .section-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

h2.section-title {
  font-size: clamp(2rem, 4vw, 3.5rem);
  text-transform: uppercase;
  line-height: 1.1;
}

@media (min-width: 901px) {
  h2.section-title {
    position: sticky;
    top: 120px;
  }
}

h2.section-title span {
  display: block;
  color: var(--accent);
  font-size: 1rem;
  margin-bottom: 16px;
  font-family: "JetBrains Mono", monospace;
}

/* Feature Cards */
.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

@media (max-width: 600px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 40px 32px;
  transition: all 0.2s;
  position: relative;
  overflow: hidden;
}

.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--border-highlight);
  transition: 0.3s;
}

.card:hover {
  background: var(--surface-hover);
  border-color: var(--border-highlight);
  transform: translateY(-4px);
  box-shadow: 8px 8px 0px rgba(0, 0, 0, 0.5);
}

.card:hover::before {
  background: var(--accent);
}

.stamp {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 0.75rem;
  color: var(--text-muted);
  border: 1px solid var(--border);
  padding: 4px 8px;
}

/* Feature Animated SVGs */
.feature-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 24px;
}

.svg-stroke {
  stroke: var(--text-main);
  stroke-width: 1.5;
  fill: none;
  transition: stroke 0.3s;
}

.svg-accent {
  stroke: var(--accent);
  stroke-width: 1.5;
  fill: none;
}

.card:hover .svg-stroke {
  stroke: var(--accent);
}

/* Card 1: Scanning Line */
@keyframes scanLine {
  0%,
  100% {
    transform: translateY(0);
    opacity: 0;
  }

  10%,
  90% {
    opacity: 1;
  }

  50% {
    transform: translateY(24px);
  }
}

.anim-scan {
  animation: scanLine 2s ease-in-out infinite;
  stroke: var(--accent);
}

/* Card 2: Moving Data Blocks */
@keyframes dataFlowX {
  0% {
    transform: translateX(0);
    opacity: 0.2;
  }

  50% {
    opacity: 1;
  }

  100% {
    transform: translateX(12px);
    opacity: 0.2;
  }
}

.anim-data-1 {
  animation: dataFlowX 1.5s linear infinite;
}

.anim-data-2 {
  animation: dataFlowX 1.5s linear infinite;
  animation-delay: 0.75s;
}

/* Card 3: Orbiting node */
@keyframes orbit {
  0% {
    transform: rotate(0deg) translateX(8px) rotate(0deg);
  }

  100% {
    transform: rotate(360deg) translateX(8px) rotate(-360deg);
  }
}

.anim-orbit {
  transform-origin: center;
  animation: orbit 3s linear infinite;
}

/* Card 4: Scrolling Logs */
@keyframes scrollLog {
  0% {
    transform: translateY(8px);
    opacity: 0;
  }

  20%,
  80% {
    opacity: 1;
  }

  100% {
    transform: translateY(-8px);
    opacity: 0;
  }
}

.anim-log-1 {
  animation: scrollLog 2s linear infinite;
}

.anim-log-2 {
  animation: scrollLog 2s linear infinite;
  animation-delay: 0.6s;
}

.anim-log-3 {
  animation: scrollLog 2s linear infinite;
  animation-delay: 1.2s;
}

.card h3 {
  font-size: 1.5rem;
  margin-bottom: 16px;
  color: var(--text-main);
}

.card p {
  color: var(--text-muted);
  font-size: 1rem;
}

/* Ticket / Waitlist Component */
.ticket {
  background: var(--surface);
  border: 1px solid var(--border);
  display: flex;
  position: relative;
  overflow: hidden;
}

@media (max-width: 768px) {
  .ticket {
    flex-direction: column;
  }
}

.ticket-main {
  padding: 48px;
  flex: 1;
}

.ticket-stub {
  padding: 48px 32px;
  border-left: 2px dashed var(--border);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.02);
  min-width: 200px;
  position: relative;
}

@media (max-width: 768px) {
  .ticket-stub {
    border-left: none;
    border-top: 2px dashed var(--border);
    min-width: auto;
    gap: 32px;
  }
}

/* Animated Barcode in Ticket */
.barcode-svg {
  width: 100%;
  height: 40px;
  margin-top: 32px;
}

@keyframes barcodeFlicker {
  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.7;
  }

  55% {
    opacity: 0.3;
  }

  60% {
    opacity: 0.9;
  }
}

.barcode-svg rect {
  fill: var(--text-muted);
  animation: barcodeFlicker 4s infinite;
}

.barcode-svg rect:nth-child(even) {
  animation-delay: 0.5s;
  fill: var(--text-main);
}

.barcode-svg rect:nth-child(3n) {
  animation-delay: 1.2s;
}

.ticket-main h3 {
  font-size: 2.5rem;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.ticket-main p {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 400px;
  margin-bottom: 40px;
}

.form-row {
  display: flex;
  gap: 0;
  position: relative;
  z-index: 2;
}

@media (max-width: 500px) {
  .form-row {
    flex-direction: column;
    gap: 12px;
  }
}

.form-row input {
  flex: 1;
  background: var(--bg);
  border: 1px solid var(--border);
  padding: 16px 20px;
  color: var(--text-main);
  font-family: "JetBrains Mono", monospace;
  font-size: 0.9rem;
  outline: none;
  transition: 0.2s;
}

.form-row input:focus {
  border-color: var(--accent);
}

.form-row button {
  background: var(--text-main);
  color: var(--bg);
  border: 1px solid var(--text-main);
  padding: 16px 32px;
  font-family: "JetBrains Mono", monospace;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  transition: 0.2s;
}

@media (min-width: 501px) {
  .form-row button {
    border-left: none;
  }
}

.form-row button:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #000;
}

.tag-grid {
  display: grid;
  gap: 24px;
}

.tag-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.tag-item span:first-child {
  color: var(--text-muted);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.tag-item span:last-child {
  color: var(--text-main);
  font-weight: 500;
  font-size: 0.9rem;
}

/* Log FAQ */
.faq-list {
  border-top: 1px solid var(--border);
}

.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 32px 0;
}

.faq-item h3 {
  font-size: 1.25rem;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.faq-item h3::before {
  content: ">";
  color: var(--accent);
  font-family: "JetBrains Mono", monospace;
  font-size: 1.5rem;
}

.faq-item p {
  color: var(--text-muted);
  font-size: 1rem;
  max-width: 600px;
  padding-left: 28px;
}

/* Footer */
footer {
  padding: 64px 0 120px;
  border-top: 1px solid var(--border);
}

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

@media (max-width: 600px) {
  .footer-content {
    flex-direction: column;
    gap: 24px;
    text-align: center;
  }
}

.footer-left {
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-left .status {
  width: 8px;
  height: 8px;
  background: var(--border-highlight);
  border-radius: 50%;
}

.footer-links {
  display: flex;
  gap: 32px;
}

.footer-links a {
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  color: var(--text-muted);
}

.footer-links a:hover {
  color: var(--accent);
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* PRO PAGE STYLES */
:root {
  --bg: #050505;
  --surface: #0e0e0e;
  --surface-hover: #161616;
  --border: #2a2a2a;
  --border-highlight: #444;
  --text-main: #f3f3f3;
  --text-muted: #888;
  --accent: #ccff00;
  --accent-hover: #b3e600;
  --red: #ff4444;
}

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

body {
  font-family: "Inter", sans-serif;
  background: var(--bg);
  color: var(--text-main);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3 {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  letter-spacing: -0.03em;
}

a {
  color: var(--text-main);
  text-decoration: none;
  transition: 0.2s;
}

.container {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Nav */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  padding: 20px 0;
  background: rgba(5, 5, 5, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

nav .container {
  max-width: 1100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: -0.02em;
  color: var(--text-main);
}

.logo span {
  color: var(--accent);
}

.nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
}

.nav-links a {
  color: var(--text-muted);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.nav-links a:hover {
  color: var(--text-main);
}

.nav-links a.active {
  color: var(--accent);
}

/* Content */
.content {
  padding: 120px 0 80px;
}

.eyebrow {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 16px;
}

h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1.1;
  margin-bottom: 20px;
}

.lead {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 48px;
  max-width: 560px;
}

.lead strong {
  color: var(--text-main);
}

hr {
  border: none;
  border-top: 1px solid var(--border);
  margin: 48px 0;
}

/* Pricing card */
.pricing-card {
  background: var(--surface);
  border: 1px solid var(--border-highlight);
  border-radius: 12px;
  padding: 40px;
  margin: 0 0 48px;
}

.price {
  font-family: "Space Grotesk", sans-serif;
  font-size: 3.5rem;
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--text-main);
  line-height: 1;
}

.price span {
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-muted);
  letter-spacing: 0;
}

.price-note {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin: 8px 0 28px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: #000;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 14px 32px;
  border-radius: 6px;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: background 0.2s;
}

.btn-primary:hover {
  background: var(--accent-hover);
  color: #000;
}

.stripe-note {
  margin-top: 12px;
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* Feature table */
.table-wrap {
  overflow-x: auto;
  margin: 32px 0;
  border-radius: 8px;
  border: 1px solid var(--border);
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}

thead {
  background: var(--surface);
}

th {
  text-align: left;
  padding: 14px 20px;
  font-weight: 600;
  color: var(--text-muted);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-bottom: 1px solid var(--border);
}

td {
  padding: 13px 20px;
  border-bottom: 1px solid var(--border);
  color: var(--text-muted);
  vertical-align: top;
}

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

td:first-child {
  color: var(--text-main);
}

.yes {
  color: #4ade80;
  font-weight: 600;
}

.no {
  color: var(--border-highlight);
}

.pro-val {
  color: var(--accent);
  font-weight: 500;
}

th:last-child,
.td-pro {
  background: rgba(204, 255, 0, 0.03);
}

/* Setup */
.setup-block {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 24px;
  margin: 24px 0;
}

pre {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.82rem;
  color: #a1a1aa;
  line-height: 1.7;
  overflow-x: auto;
}

code {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.875em;
  background: var(--surface);
  padding: 2px 6px;
  border-radius: 4px;
  color: var(--accent);
}

/* FAQ */
.faq-item {
  border-top: 1px solid var(--border);
  padding: 24px 0;
}

.faq-item:last-child {
  border-bottom: 1px solid var(--border);
}

.faq-q {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-main);
  margin-bottom: 10px;
}

.faq-a {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* Section headings */
h2 {
  font-size: 1.4rem;
  margin-bottom: 20px;
  color: var(--text-main);
}

/* Footer */
footer {
  padding: 40px 0;
  border-top: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 0.8rem;
  margin-top: 80px;
}

footer .container {
  max-width: 1100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

footer a {
  color: var(--text-muted);
}

footer a:hover {
  color: var(--text-main);
}

/* BLOG ARTICLE TYPOGRAPHY */
article {
  max-width: 720px;
  margin: 0 auto;
  padding: 64px 24px 80px;
}
article h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
  margin-bottom: 24px;
}
article h2 {
  font-size: 1.5rem;
  margin: 48px 0 16px;
  color: var(--text-main);
  border-bottom: 1px dashed var(--border);
  padding-bottom: 8px;
}
article h3 {
  font-size: 1.15rem;
  margin: 32px 0 12px;
  color: var(--text-main);
}
article p {
  margin-bottom: 24px;
  font-size: 1.05rem;
  line-height: 1.7;
  color: #d4d4d8;
}
article ul,
article ol {
  padding-left: 24px;
  margin-bottom: 24px;
  color: #d4d4d8;
  font-size: 1.05rem;
  line-height: 1.7;
}
article li {
  margin-bottom: 8px;
}
article a {
  color: var(--accent);
  text-decoration: underline;
  text-decoration-color: rgba(204, 255, 0, 0.3);
  text-underline-offset: 4px;
}
article a:hover {
  color: var(--accent-hover);
  text-decoration-color: var(--accent-hover);
}
article code {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.85em;
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 2px 6px;
  border-radius: 4px;
  color: var(--text-main);
}
article pre {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 24px;
  overflow-x: auto;
  margin: 32px 0;
}
article pre code {
  background: transparent;
  border: none;
  padding: 0;
  color: var(--text-muted);
  font-size: 0.85rem;
}
article hr {
  border: none;
  border-top: 1px solid var(--border);
  margin: 48px 0;
}
