@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@300;400;500;600;700&family=Sora:wght@300;400;500;600;700;800&family=Inter:wght@300;400;500;600;700;800&family=Space+Grotesk:wght@400;500;600;700&display=swap');

@property --beam-angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}

:root {
  color-scheme: dark;
  --bg-black: #000000;
  --bg-darker: #060606;
  --bg-brand-gray: #1a1a1a;
  --bg-panel: rgba(10, 10, 10, 0.7);
  --bg-panel-soft: rgba(26, 26, 26, 0.55);

  --border-color: rgba(255, 255, 255, 0.06);
  --border-glow: rgba(245, 158, 11, 0.25);
  --text-primary: #ffffff;
  --text-secondary: rgba(255, 255, 255, 0.6);
  --text-muted: rgba(255, 255, 255, 0.35);

  --color-amber: #f59e0b;
  --color-orange: #ea580c;
  --color-emerald: #10b981;
  --color-teal: #059669;
  --color-cyan: #06b6d4;
  --color-rose: #ef4444;
  --color-violet: #7c3aed;
  --color-indigo: #4338ca;

  --font-sora: 'Sora', sans-serif;
  --font-sans: 'Inter', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  --shadow-dark: 0 24px 80px rgba(0, 0, 0, 0.8);
  --setu-mark: url('./assets/setu-mark.svg');
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  background-color: var(--bg-black);
  color: var(--text-primary);
  font-family: var(--font-sora);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  position: relative;
}

/* Background Glowing Blobs */
.glow-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
}

.glow-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(140px);
  opacity: 0.2;
  mix-blend-mode: screen;
}

.glow-blob-1 {
  top: -160px;
  left: -128px;
  width: 520px;
  height: 520px;
  background-color: var(--color-amber);
  opacity: 0.25;
}

.glow-blob-2 {
  top: 80px;
  left: 33%;
  width: 480px;
  height: 480px;
  background-color: var(--color-orange);
  opacity: 0.2;
}

.glow-blob-3 {
  bottom: 0;
  right: 0;
  width: 560px;
  height: 560px;
  background-color: var(--color-emerald);
  opacity: 0.2;
}

/* Typography styles */
h1, h2, h3, h4 {
  font-family: var(--font-sora);
  font-weight: 600;
  margin-top: 0;
  letter-spacing: -0.02em;
}

p {
  color: var(--text-secondary);
  font-family: var(--font-sans);
  line-height: 1.6;
}

a {
  color: var(--text-primary);
  font-weight: 500;
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  opacity: 0.8;
}

/* Custom UI inputs & buttons */
.brand-gray-input {
  width: 100%;
  min-height: 44px;
  border: 1px solid transparent;
  border-radius: 12px;
  background: var(--bg-brand-gray);
  color: var(--text-primary);
  padding: 0 16px;
  outline: none;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  transition: var(--transition);
}

.brand-gray-input::placeholder {
  color: rgba(255, 255, 255, 0.2);
}

.brand-gray-input:focus {
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.15);
}

input, select, textarea {
  width: 100%;
  min-height: 44px;
  border: 1px solid transparent;
  border-radius: 8px;
  background: var(--bg-brand-gray);
  color: var(--text-primary);
  padding: 0 16px;
  outline: none;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  transition: var(--transition);
}

input:focus, select:focus, textarea:focus {
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.15);
}

textarea {
  min-height: 110px;
  padding: 14px 16px;
  resize: vertical;
}

.btn-white {
  width: 100%;
  height: 56px;
  background: #ffffff;
  color: #000000;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-sora);
  font-size: 0.95rem;
  transition: var(--transition);
}

.btn-white:hover {
  background: rgba(255, 255, 255, 0.9);
}

.btn-white:active {
  transform: scale(0.98);
}

/* Google & Github social buttons */
.social-btn-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.social-btn {
  background: var(--bg-black);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--text-primary);
  font-family: var(--font-sora);
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
}

.social-btn:hover {
  background: rgba(255, 255, 255, 0.05);
}

/* Or separator */
.separator-row {
  position: relative;
  text-align: center;
  margin: 20px 0;
}

.separator-row::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.separator-text {
  position: relative;
  background: var(--bg-black);
  padding: 0 16px;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-muted);
}

/* Password eye button wrapper */
.password-wrapper {
  position: relative;
}

.eye-btn {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: var(--transition);
  padding: 0;
}

.eye-btn:hover {
  color: var(--text-primary);
}

/* ══════════════════════════════════════════════════════════
   AURORA AUTH — Two-Column Video + Form Layout
   ══════════════════════════════════════════════════════════ */

@keyframes aurora-fade-up {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes aurora-card-in {
  from { opacity: 0; transform: translateY(20px) scale(0.98); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

.aurora-auth {
  min-height: 100vh;
  width: 100%;
  display: flex;
  background: #000000;
  padding: 12px;
  gap: 12px;
  overflow: hidden;
}

/* ── LEFT COLUMN: Video Hero ── */
.aurora-hero {
  width: 52%;
  min-height: calc(100vh - 24px);
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
}

.aurora-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.aurora-brand {
  position: absolute;
  top: 28px;
  left: 32px;
  z-index: 10;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #fff;
  animation: aurora-fade-up 0.7s ease-out 0.1s both;
}

.aurora-brand .brand-mark {
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  border-radius: 8px;
  background: #060c0a var(--setu-mark) center / cover no-repeat;
  box-shadow: 0 0 24px rgba(16, 185, 129, 0.4);
}

.aurora-brand strong {
  display: block;
  font-family: var(--font-sora);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.2;
}

.aurora-brand small {
  display: block;
  font-size: 0.65rem;
  color: rgba(255,255,255,0.5);
  font-weight: 400;
  letter-spacing: 0.02em;
}

/* Hero content — pinned to bottom-left */
.aurora-hero-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10;
  padding: 0 40px 44px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: linear-gradient(0deg, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.4) 60%, transparent 100%);
}

.aurora-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin: 0;
  animation: aurora-fade-up 0.6s ease-out 0.2s both;
}

.aurora-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-emerald);
  box-shadow: 0 0 8px var(--color-emerald);
  animation: pulse-core 1.5s infinite alternate;
}

.aurora-title {
  font-family: var(--font-sora);
  font-size: clamp(2rem, 3.2vw, 3.2rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: #ffffff;
  margin: 0;
  max-width: 480px;
  animation: aurora-fade-up 0.6s ease-out 0.3s both;
}

.aurora-subtitle {
  font-family: var(--font-sans);
  font-size: 0.92rem;
  line-height: 1.55;
  color: rgba(255,255,255,0.55);
  margin: 0;
  max-width: 420px;
  animation: aurora-fade-up 0.6s ease-out 0.4s both;
}

/* Step indicators */
.aurora-steps {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 8px;
  animation: aurora-fade-up 0.6s ease-out 0.5s both;
}

.aurora-step {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  border-radius: 10px;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 500;
  border: 1px solid transparent;
  transition: var(--transition);
}

.aurora-step.active {
  background: #ffffff;
  color: #000000;
  border-color: #ffffff;
}

.aurora-step.inactive {
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.5);
  border-color: rgba(255,255,255,0.06);
}

.aurora-step-num {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 0.68rem;
  font-weight: 700;
  flex-shrink: 0;
}

.aurora-step.active .aurora-step-num {
  background: #000000;
  color: #ffffff;
}

.aurora-step.inactive .aurora-step-num {
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.4);
}

/* ── RIGHT COLUMN: Form Panel ── */
.aurora-form-col {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px clamp(24px, 4vw, 64px);
  overflow-y: auto;
}

.aurora-form-col .auth-card {
  width: min(480px, 100%);
  animation: aurora-card-in 0.5s ease-out both;
}

.aurora-form-col .auth-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 28px;
  color: var(--text-secondary);
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.aurora-form-col .auth-header {
  margin-bottom: 32px;
}

.aurora-form-col .auth-header h2 {
  margin-bottom: 10px;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.aurora-form-col .auth-header p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 0.92rem;
}

/* Aurora submit button */
.aurora-submit {
  width: 100%;
  min-height: 52px;
  margin-top: 6px;
  padding: 0 24px;
  border-radius: 10px;
  border: none;
  background: #ffffff;
  color: #000000;
  font-family: var(--font-sora);
  font-size: 0.92rem;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 20px rgba(255,255,255,0.08);
}

.aurora-submit:hover {
  background: rgba(255,255,255,0.92);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(255,255,255,0.12);
}

.aurora-submit:active {
  transform: translateY(0) scale(0.98);
}

.aurora-submit svg {
  transition: transform 0.25s ease;
}

.aurora-submit:hover svg {
  transform: translateX(3px);
}

/* Aurora auth production polish */
.aurora-auth {
  min-height: 100vh;
  width: 100%;
  display: flex;
  gap: 0;
  overflow: visible;
  padding: 8px;
  background: #000000;
  color: #ffffff;
  font-family: var(--font-sans);
  transition: all 0.5s ease;
}

.aurora-hero {
  display: none;
  position: relative;
  flex-shrink: 0;
  overflow: hidden;
}

.aurora-hero-content {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 0;
  background: none;
}

.aurora-brand {
  position: relative;
  top: auto;
  left: auto;
  z-index: 10;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.aurora-brand strong {
  font-family: var(--font-sans);
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0;
}

.aurora-title {
  max-width: none;
  margin: 0;
  color: #ffffff;
  font-family: var(--font-sans);
  font-size: 2.25rem;
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: 0;
  white-space: nowrap;
}

.aurora-subtitle {
  max-width: none;
  margin: 0;
  padding: 0 16px;
  color: rgba(255, 255, 255, 0.6);
  font-family: var(--font-sans);
  font-size: 0.875rem;
  line-height: 1.6;
}

.aurora-step {
  gap: 12px;
  padding: 12px 16px;
  border-radius: 12px;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 500;
}

.aurora-step.active {
  background: #ffffff;
  color: #000000;
  border: 1px solid #ffffff;
}

.aurora-step.inactive {
  background: var(--bg-brand-gray);
  color: #ffffff;
  border: 0;
}

.aurora-step.active .aurora-step-num {
  background: #000000;
  color: #ffffff;
}

.aurora-step.inactive .aurora-step-num {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.4);
}

.aurora-form-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow-y: auto;
  padding: 48px 16px;
}

.aurora-form-col .auth-card {
  width: 100%;
  max-width: 576px;
  animation: aurora-card-in 0.8s ease-out both;
}

.aurora-form-col .auth-header {
  margin-bottom: 32px;
}

.aurora-form-col .auth-header h2 {
  margin: 0 0 10px;
  font-family: var(--font-sans);
  font-size: 1.875rem;
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: 0;
}

.aurora-form-col .auth-header p {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.875rem;
}

.aurora-form-col .auth-kicker {
  margin-bottom: 28px;
  font-family: var(--font-sans);
}

.aurora-form-col .form-group label {
  color: #ffffff;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 500;
}

.aurora-form-col input {
  min-height: 44px;
  height: 44px;
  border: 0;
  border-radius: 12px;
  background: var(--bg-brand-gray);
  color: #ffffff;
  padding: 0 16px;
  font-family: var(--font-sans);
}

.aurora-form-col input::placeholder {
  color: rgba(255, 255, 255, 0.2);
}

.aurora-form-col input:focus {
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.2);
}

.aurora-form-col .password-wrapper input {
  padding-right: 48px;
}

.aurora-form-col .social-btn-row {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.aurora-form-col .social-btn {
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  background: #000000;
  font-family: var(--font-sans);
}

.aurora-form-col .social-btn:hover {
  background: rgba(255, 255, 255, 0.05);
}

.aurora-form-col .separator-text {
  background: #000000;
  color: rgba(255, 255, 255, 0.4);
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
}

.aurora-form-col .separator-row::before {
  border-top-color: rgba(255, 255, 255, 0.1);
}

.aurora-submit {
  min-height: 56px;
  height: 56px;
  margin-top: 16px;
  border-radius: 12px;
  background: #ffffff;
  color: #000000;
  font-family: var(--font-sans);
  font-weight: 600;
  box-shadow: none;
}

.aurora-submit:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: none;
  box-shadow: none;
}

.aurora-submit:active {
  transform: scale(0.98);
}

.aurora-submit svg,
.aurora-submit:hover svg {
  transform: none;
}

@media (min-width: 640px) {
  .aurora-form-col {
    padding-right: 48px;
    padding-left: 48px;
  }
}

@media (min-width: 1024px) {
  .aurora-auth {
    height: 100vh;
    overflow: hidden;
    padding: 16px;
  }

  .aurora-hero {
    display: flex;
    width: 52%;
    height: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding: 0 48px 128px;
    border-radius: 24px;
    box-shadow: var(--shadow-dark);
  }

  .aurora-form-col {
    overflow: hidden;
    padding: 24px 64px;
  }
}

@media (min-width: 1280px) {
  .aurora-form-col {
    padding-right: 96px;
    padding-left: 96px;
  }
}

/* ── Shared Auth Component Styles ── */
.mini-mark {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  border-radius: 5px;
  background: #060c0a var(--setu-mark) center / cover no-repeat;
  box-shadow: 0 0 18px rgba(16, 185, 129, 0.45);
}

.auth-form {
  display: grid;
  gap: 16px;
}

.auth-name-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.auth-status {
  border: 1px solid rgba(245, 158, 11, 0.28);
  border-radius: 8px;
  background: rgba(245, 158, 11, 0.08);
  color: rgba(255, 255, 255, 0.82);
  font-family: var(--font-sans);
  font-size: 0.84rem;
  line-height: 1.5;
  padding: 12px 14px;
}

.auth-status.success {
  border-color: rgba(16, 185, 129, 0.28);
  background: rgba(16, 185, 129, 0.08);
}

.auth-status.error {
  border-color: rgba(239, 68, 68, 0.3);
  background: rgba(239, 68, 68, 0.08);
}

.auth-switch-text {
  margin: 22px 0 0;
  color: var(--text-secondary);
  text-align: center;
  font-size: 0.9rem;
}

.auth-switch-text button,
.label-row a,
.label-row button {
  border: 0;
  padding: 0;
  background: transparent;
  color: var(--text-primary);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.auth-switch-text button:hover,
.label-row a:hover,
.label-row button:hover {
  text-decoration: underline;
}

.label-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.label-row a {
  color: var(--text-muted);
  font-size: 0.78rem;
}

.eye-btn svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.field-hint {
  margin: 7px 0 0;
  color: var(--text-muted);
  font-size: 0.78rem;
  line-height: 1.4;
}

/* Glass Panels */
.panel {
  background: var(--bg-panel);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 24px;
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-dark);
  position: relative;
  z-index: 5;
  overflow: hidden;
}

/* Primary/Secondary Buttons */
.primary,
.secondary {
  min-height: 44px;
  padding: 0 20px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid transparent;
  font-family: var(--font-sora);
}

.primary {
  background: #ffffff;
  color: #000000;
  box-shadow: 0 4px 16px rgba(255, 255, 255, 0.08);
}

.primary:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.9);
}

.secondary {
  background: var(--bg-panel-soft);
  color: var(--text-primary);
  border-color: var(--border-color);
}

.secondary:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

.full-width {
  width: 100%;
}

.hidden {
  display: none !important;
}

.form-group {
  display: grid;
  gap: 8px;
}

.form-group label {
  color: var(--text-primary);
  font-family: var(--font-sans);
  font-size: 0.84rem;
  font-weight: 700;
}

.amount-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 112px;
  gap: 10px;
}

.wallet-gate {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px;
  border: 1px solid rgba(245, 158, 11, 0.24);
  border-radius: 8px;
  background: rgba(245, 158, 11, 0.06);
}

.wallet-gate span {
  display: block;
  margin-bottom: 3px;
  color: var(--color-amber);
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.wallet-gate strong {
  display: block;
  color: var(--text-primary);
  font-size: 0.9rem;
  overflow-wrap: anywhere;
}

.wallet-gate-connected {
  border-color: rgba(16, 185, 129, 0.32);
  background: rgba(16, 185, 129, 0.07);
}

.wallet-gate-connected span {
  color: var(--color-emerald);
}

.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.section-head h2,
.section-head h3 {
  margin: 0;
}

.section-head a {
  color: var(--color-cyan);
  font-size: 0.86rem;
}

.top-actions,
.hero-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.activity-item span,
.payout-card span,
.ticket span,
.contract-card span {
  color: var(--text-secondary);
  font-family: var(--font-sans);
  font-size: 0.8rem;
}

/* Landing Page Layout & Grid */
.landing-view {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 10;
}

/* Background Cyber Grid & Spotlight */
.grid-bg-container {
  position: fixed;
  inset: 0;
  background-color: var(--bg-black);
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

#landing-shader-canvas {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  opacity: 0.82;
}

.cyber-grid {
  position: absolute;
  inset: 0;
  z-index: 2;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.024) 1px, transparent 1px);
  background-size: 42px 42px;
  background-position: center top;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000 80%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000 80%, transparent 100%);
  opacity: 0.48;
}

.mouse-spotlight {
  position: absolute;
  z-index: 3;
  top: var(--mouse-y, -1000px);
  left: var(--mouse-x, -1000px);
  width: 600px;
  height: 600px;
  transform: translate(-50%, -50%);
  background: radial-gradient(260px circle at center, rgba(245, 158, 11, 0.09), rgba(124, 58, 237, 0.08) 42%, rgba(16, 185, 129, 0.04) 64%, transparent 100%);
  pointer-events: none;
  mix-blend-mode: screen;
  transition: opacity 0.3s ease;
}

/* Glowing Border Beam Panels */
.beam-panel {
  position: relative;
  background: rgba(10, 10, 10, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  overflow: hidden;
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-dark);
}

.beam-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 12px;
  padding: 1.5px;
  background: linear-gradient(
    var(--beam-angle, 0deg),
    transparent 30%,
    var(--color-orange) 45%,
    var(--color-amber) 50%,
    var(--color-emerald) 55%,
    transparent 70%
  );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: 10;
  opacity: 0.15;
  transition: opacity 0.3s;
  animation: rotate-beam 6s linear infinite;
}

.beam-panel:hover::before {
  opacity: 0.75;
}

@keyframes rotate-beam {
  0% { --beam-angle: 0deg; }
  100% { --beam-angle: 360deg; }
}

/* Landing Header & Navigation */
.landing-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 90px;
  border-bottom: 1px solid transparent;
  position: sticky;
  top: 0;
  background: transparent;
  backdrop-filter: none;
  z-index: 1000;
}

.landing-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.landing-nav a {
  color: var(--text-secondary);
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.88rem;
  position: relative;
  padding: 6px 0;
}

.landing-nav a:not(.primary):not(.secondary)::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-amber);
  transition: width 0.25s ease;
}

.landing-nav a:not(.primary):not(.secondary):hover {
  color: var(--text-primary);
}

.landing-nav a:not(.primary):not(.secondary):hover::after {
  width: 100%;
}

.landing-nav a.primary {
  background: #ffffff;
  color: #000000;
  padding: 8px 16px;
  border-radius: 8px;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.1);
}

.landing-nav a.primary:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-1px);
}

.landing-nav a.secondary {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-primary);
  padding: 8px 16px;
  border-radius: 8px;
}

.landing-nav a.secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-1px);
}

/* Hero Section */
.landing-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(440px, 1.04fr);
  gap: clamp(36px, 5vw, 72px);
  align-items: center;
  min-height: calc(100vh - 90px);
  padding: 36px 0 64px;
  position: relative;
  isolation: isolate;
}

.landing-hero::before {
  content: "";
  position: absolute;
  top: -90px;
  bottom: -60px;
  left: 50%;
  width: var(--setu-client-width, 100vw);
  transform: translateX(-50%);
  z-index: -3;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.14) 0%, rgba(20, 11, 48, 0.28) 44%, rgba(0, 0, 0, 0.58) 100%),
    linear-gradient(100deg, rgba(245, 158, 11, 0.08), transparent 26%, rgba(16, 185, 129, 0.08) 100%),
    repeating-linear-gradient(102deg, rgba(255, 255, 255, 0.026) 0 1px, transparent 1px 7px);
  opacity: 0.68;
}

.landing-hero::after {
  content: "";
  position: absolute;
  right: -22px;
  top: 18%;
  width: min(50vw, 680px);
  height: 62%;
  border-radius: 22px;
  z-index: -2;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(236, 223, 255, 0.32) 0%, rgba(124, 58, 237, 0.18) 46%, rgba(6, 5, 16, 0.86) 100%),
    repeating-linear-gradient(97deg, rgba(255, 255, 255, 0.06) 0 1px, transparent 1px 5px),
    linear-gradient(90deg, rgba(67, 56, 202, 0.26), rgba(16, 185, 129, 0.1));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    0 28px 90px rgba(20, 6, 64, 0.34);
  opacity: 0.42;
}

.hero-text .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(10, 10, 10, 0.34);
  border: 1px solid rgba(245, 158, 11, 0.26);
  color: var(--color-amber);
  font-family: var(--font-mono);
  font-size: 0.76rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 7px 13px;
  border-radius: 99px;
  margin-bottom: 24px;
  box-shadow: 0 0 24px rgba(245, 158, 11, 0.08);
}

.hero-text h1 {
  font-size: clamp(3rem, 5.15vw, 5.05rem);
  line-height: 0.92;
  font-weight: 800;
  margin-bottom: 24px;
  letter-spacing: -0.025em;
  color: var(--text-primary);
  text-shadow: 0 18px 46px rgba(0, 0, 0, 0.44);
}

.hero-text h1 .gradient-text {
  background: linear-gradient(110deg, #ffffff 0%, var(--color-amber) 16%, var(--color-orange) 46%, var(--color-emerald) 82%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline;
}

.hero-text p {
  font-size: 1.06rem;
  line-height: 1.6;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.72);
  max-width: 560px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}

.hero-badges span {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 99px;
  background: rgba(4, 4, 9, 0.32);
  color: rgba(255, 255, 255, 0.74);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 500;
  padding: 4px 12px;
}

.hero-ctas {
  display: flex;
  gap: 16px;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 44px;
  max-width: 580px;
}

.hero-metrics div {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055) 0%, rgba(255, 255, 255, 0.012) 100%),
    rgba(3, 3, 8, 0.34);
  padding: 18px 20px;
  backdrop-filter: blur(18px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.hero-metrics strong {
  display: block;
  color: var(--text-primary);
  font-size: 1.8rem;
  line-height: 1;
  font-weight: 700;
  font-family: var(--font-mono);
}

.hero-metrics span {
  display: block;
  margin-top: 8px;
  color: var(--text-muted);
  font-family: var(--font-sans);
  font-size: 0.75rem;
  line-height: 1.4;
}

/* Product Visual Stack & HUD */
.hero-product-stack {
  display: grid;
  gap: 14px;
  align-self: center;
  transform: translateY(-8px);
  position: relative;
  z-index: 1;
}

.hero-product-stack::before {
  content: "";
  position: absolute;
  inset: -26px -22px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(236, 223, 255, 0.16) 0%, rgba(124, 58, 237, 0.13) 38%, rgba(2, 2, 8, 0.84) 100%),
    repeating-linear-gradient(102deg, rgba(255, 255, 255, 0.055) 0 1px, transparent 1px 6px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 36px 100px rgba(7, 3, 25, 0.62);
  opacity: 0.84;
  z-index: -1;
}

.hero-product-stack::after {
  content: "";
  position: absolute;
  left: -14px;
  right: -14px;
  top: 52px;
  height: 2px;
  z-index: -1;
  background: linear-gradient(90deg, transparent, rgba(245, 158, 11, 0.7), rgba(16, 185, 129, 0.65), transparent);
  box-shadow:
    0 0 18px rgba(245, 158, 11, 0.28),
    0 0 28px rgba(16, 185, 129, 0.2);
}

.hero-rail-strip {
  min-height: 54px;
  display: grid;
  grid-template-columns: auto minmax(56px, 1fr) auto minmax(56px, 1fr) auto;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025)),
    rgba(3, 3, 8, 0.58);
  padding: 12px 16px;
  backdrop-filter: blur(22px);
}

.hero-rail-strip span,
.hero-rail-strip strong {
  color: rgba(255, 255, 255, 0.88);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.hero-rail-strip strong {
  color: var(--color-amber);
}

.hero-rail-strip i {
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(245, 158, 11, 0.08), rgba(245, 158, 11, 0.86), rgba(16, 185, 129, 0.7));
  box-shadow: 0 0 16px rgba(245, 158, 11, 0.24);
}

.hero-disclosure-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 6px 18px;
  border: 1px solid rgba(16, 185, 129, 0.16);
  border-radius: 14px;
  background:
    linear-gradient(90deg, rgba(16, 185, 129, 0.09), rgba(124, 58, 237, 0.07)),
    rgba(3, 3, 8, 0.56);
  padding: 14px 16px;
  backdrop-filter: blur(18px);
}

.hero-disclosure-card span {
  color: rgba(255, 255, 255, 0.58);
  font-family: var(--font-sans);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-disclosure-card strong {
  color: var(--color-emerald);
  font-family: var(--font-mono);
  font-size: 0.86rem;
  justify-self: end;
}

.hero-disclosure-card small {
  grid-column: 1 / -1;
  color: rgba(255, 255, 255, 0.54);
  font-family: var(--font-sans);
  font-size: 0.78rem;
}

/* Dedicated Pipeline Section Layout */
.landing-pipeline-section {
  padding: 80px 0 48px;
  display: grid;
  gap: 36px;
  position: relative;
  z-index: 10;
}

.pipeline-section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.pipeline-section-header h2 {
  font-size: clamp(2rem, 4vw, 2.5rem);
  margin-top: 12px;
  margin-bottom: 12px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.pipeline-section-header p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Remittance HUD visualizer pipeline */
.zk-pipeline-card {
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 14px;
  background: rgba(10, 10, 10, 0.8);
  backdrop-filter: blur(20px);
  padding: 32px;
  box-shadow: var(--shadow-dark);
  position: relative;
}

.zk-pipeline {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 36px 24px;
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 12px;
  overflow: hidden;
}

.pipeline-node {
  width: 120px;
  padding: 16px 12px;
  background: rgba(15, 15, 15, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  text-align: center;
  z-index: 2;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
  transition: var(--transition);
}

.pipeline-node:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.6);
}

.pipeline-node.sender {
  border-left: 3px solid var(--color-orange);
}

.pipeline-node.receiver {
  border-right: 3px solid var(--color-emerald);
}

.pipeline-node h4 {
  margin: 0 0 6px 0;
  font-size: 0.68rem;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  font-family: var(--font-sans);
  font-weight: 700;
}

.pipeline-node strong {
  display: block;
  font-size: 1.25rem;
  color: var(--text-primary);
  line-height: 1.1;
  font-weight: 700;
}

.pipeline-node small {
  font-size: 0.68rem;
  color: var(--text-muted);
  font-family: var(--font-mono);
  display: block;
  margin-top: 4px;
}

.pipeline-flow {
  position: relative;
  flex: 1;
  height: 2px;
  background: rgba(255, 255, 255, 0.08);
  margin: 0 12px;
}

.flow-line {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--color-orange), var(--color-amber), var(--color-emerald));
  opacity: 0.35;
}

/* Left side pulses: Sender to ZK Pool */
.flow-pulse-left {
  position: absolute;
  top: 50%;
  left: 0;
  width: 10px;
  height: 10px;
  background: var(--color-orange);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow:
    0 0 8px var(--color-orange),
    0 0 16px var(--color-orange);
  animation: pulse-left-anim 3s linear infinite;
}

@keyframes pulse-left-anim {
  0% {
    left: 0%;
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.6);
  }
  10% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.2);
  }
  90% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.2);
  }
  100% {
    left: 100%;
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.6);
  }
}

/* Right side pulses: ZK Pool to Receiver */
.flow-pulse-right {
  position: absolute;
  top: 50%;
  left: 0;
  width: 10px;
  height: 10px;
  background: var(--color-emerald);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow:
    0 0 8px var(--color-emerald),
    0 0 16px var(--color-emerald);
  animation: pulse-right-anim 3s linear infinite;
}

@keyframes pulse-right-anim {
  0% {
    left: 0%;
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.6);
  }
  10% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.2);
  }
  90% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.2);
  }
  100% {
    left: 100%;
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.6);
  }
}

/* Delay Helpers for continuous flow streams */
.delay-1 { animation-delay: 1s; }
.delay-2 { animation-delay: 2s; }

.zk-center-pool {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 90px;
  height: 90px;
  z-index: 5;
}

.zk-pool-sphere {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: radial-gradient(circle at center, rgba(16, 185, 129, 0.16), rgba(6, 182, 212, 0.1) 40%, transparent 70%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.zk-sphere-core {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(10, 10, 10, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow:
    0 0 16px rgba(16, 185, 129, 0.3),
    inset 0 0 10px rgba(16, 185, 129, 0.2);
  display: grid;
  place-items: center;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--color-emerald);
  z-index: 2;
  animation: pulse-core 2s ease-in-out infinite alternate;
}

.zk-ring-1, .zk-ring-2 {
  position: absolute;
  border: 1.5px dashed rgba(16, 185, 129, 0.2);
  border-radius: 50%;
}

.zk-ring-1 {
  width: 58px;
  height: 58px;
  animation: spin-clockwise 15s linear infinite;
}

.zk-ring-2 {
  width: 76px;
  height: 76px;
  border-color: rgba(6, 182, 212, 0.2);
  animation: spin-counter 18s linear infinite;
}

@keyframes pulse-core {
  0% { transform: scale(0.95); box-shadow: 0 0 10px rgba(16, 185, 129, 0.2); }
  100% { transform: scale(1.05); box-shadow: 0 0 24px rgba(16, 185, 129, 0.5); }
}

@keyframes spin-clockwise {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes spin-counter {
  0% { transform: rotate(360deg); }
  100% { transform: rotate(0deg); }
}

.receipt-chip {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 24px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.3);
  padding: 16px;
}

.receipt-chip .brand-mark {
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
}

.receipt-chip strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 2px;
}

.receipt-chip small {
  display: block;
  font-size: 0.75rem;
  line-height: 1.35;
  color: var(--text-muted);
}

/* ZK Simulator widget container */
.sim-card {
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.018)),
    rgba(5, 5, 12, 0.82);
  box-shadow:
    0 34px 90px rgba(0, 0, 0, 0.54),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.terminal-header {
  background: rgba(12, 12, 18, 0.92);
  height: 42px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  padding: 0 16px;
  justify-content: space-between;
}

.terminal-dots {
  display: flex;
  gap: 6px;
}

.terminal-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: block;
}

.terminal-dots span:nth-child(1) { background: #ef4444; }
.terminal-dots span:nth-child(2) { background: #f59e0b; }
.terminal-dots span:nth-child(3) { background: #10b981; }

.terminal-title {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.42);
  letter-spacing: 0.08em;
  text-transform: lowercase;
}

.sim-body-wrap {
  padding: 28px 26px 26px;
  display: grid;
  gap: 18px;
  background:
    linear-gradient(135deg, rgba(124, 58, 237, 0.12), transparent 42%),
    linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.16));
}

.sim-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.sim-header h3 {
  margin: 0;
  font-size: 1.28rem;
  font-weight: 600;
  color: var(--text-primary);
}

.sim-form {
  display: grid;
  gap: 14px;
}

.sim-form .form-group label {
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.64);
}

.sim-form input,
.sim-form select {
  border-radius: 10px;
  background: rgba(12, 13, 13, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.035);
}

.sim-steps {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
}

.sim-steps::before {
  content: '';
  position: absolute;
  left: 17px;
  top: 18px;
  bottom: 18px;
  width: 1px;
  background: rgba(255, 255, 255, 0.08);
  z-index: 1;
}

.sim-step {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  position: relative;
  z-index: 2;
  opacity: 0.35;
  transition: opacity 0.3s;
}

.sim-step.active {
  opacity: 1;
}

.sim-step.done {
  opacity: 0.85;
}

.sim-step-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(10, 10, 10, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: grid;
  place-items: center;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  font-family: var(--font-mono);
  transition: all 0.3s;
}

.sim-step.active .sim-step-icon {
  border-color: var(--color-amber);
  color: var(--color-amber);
  box-shadow: 0 0 12px rgba(245, 158, 11, 0.25);
  background: rgba(245, 158, 11, 0.04);
}

.sim-step.done .sim-step-icon {
  border-color: var(--color-emerald);
  color: var(--color-emerald);
  box-shadow: 0 0 12px rgba(16, 185, 129, 0.2);
  background: rgba(16, 185, 129, 0.03);
}

.sim-step-info strong {
  font-size: 0.88rem;
  display: block;
  color: var(--text-primary);
  font-weight: 600;
}

.sim-step-info span {
  font-size: 0.72rem;
  color: var(--text-secondary);
  font-family: var(--font-sans);
}

.sim-console-wrapper {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.sim-console {
  background: #050505;
  padding: 16px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--color-emerald);
  height: 120px;
  overflow-y: auto;
  line-height: 1.6;
  white-space: pre-wrap;
}

/* Scanner Line Effect */
.sim-console::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(16, 185, 129, 0) 90%, rgba(16, 185, 129, 0.03) 95%, rgba(16, 185, 129, 0) 100%);
  background-size: 100% 200%;
  animation: scanlines 4s linear infinite;
  pointer-events: none;
  z-index: 10;
}

@keyframes scanlines {
  0% { background-position: 0% 0%; }
  100% { background-position: 0% 100%; }
}

/* Proof strip / stats */
.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  margin: 48px 0;
}

.proof-strip div {
  min-height: 110px;
  display: grid;
  align-content: center;
  gap: 6px;
  background: rgba(8, 8, 8, 0.95);
  padding: 20px 24px;
}

.proof-strip span {
  color: var(--color-amber);
  font-family: var(--font-mono);
  font-size: 0.74rem;
  font-weight: 700;
}

.proof-strip strong {
  font-size: 0.95rem;
  color: var(--text-primary);
  font-weight: 600;
}

.proof-strip small {
  color: var(--text-secondary);
  font-family: var(--font-sans);
  font-size: 0.72rem;
  line-height: 1.35;
}

/* Features Grid Section */
.landing-features {
  padding: 48px 0 72px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  min-height: 240px;
  display: flex;
  flex-direction: column;
  padding: 28px;
}

.feature-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  color: var(--color-amber);
}

.feature-icon::after {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 800;
}

.feature-card:nth-child(1) .feature-icon::after { content: "ZK"; color: var(--color-orange); }
.feature-card:nth-child(1) .feature-icon { border-color: rgba(234, 88, 12, 0.15); background: rgba(234, 88, 12, 0.04); }
.feature-card:nth-child(2) .feature-icon::after { content: "VK"; color: var(--color-amber); }
.feature-card:nth-child(2) .feature-icon { border-color: rgba(245, 158, 11, 0.15); background: rgba(245, 158, 11, 0.04); }
.feature-card:nth-child(3) .feature-icon::after { content: "SR"; color: var(--color-emerald); }
.feature-card:nth-child(3) .feature-icon { border-color: rgba(16, 185, 129, 0.15); background: rgba(16, 185, 129, 0.04); }

.feature-card h3 {
  font-size: 1.25rem;
  line-height: 1.2;
  margin-bottom: 12px;
  color: var(--text-primary);
  font-weight: 600;
}

.feature-card p {
  font-size: 0.88rem;
  line-height: 1.5;
  color: var(--text-secondary);
  margin: 0;
}

/* Compliance Section */
.landing-compliance {
  padding: 40px 0 100px;
}

.compliance-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
  gap: 48px;
  align-items: center;
}

.compliance-list {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.compliance-list span {
  display: block;
  border-left: 2px solid var(--color-emerald);
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.03);
  border-left-width: 2.5px;
  border-left-color: var(--color-emerald);
  color: var(--text-secondary);
  font-family: var(--font-sans);
  font-size: 0.84rem;
  padding: 12px 16px;
  border-radius: 6px;
}

.compliance-visual {
  height: 300px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: radial-gradient(circle at center, rgba(16, 185, 129, 0.05) 0%, transparent 70%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.visual-node {
  width: 104px;
  height: 104px;
  border-radius: 20px;
  background: rgba(10, 10, 10, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: grid;
  place-items: center;
  align-content: center;
  gap: 8px;
  font-family: var(--font-sora);
  font-weight: 700;
  font-size: 0.75rem;
  z-index: 3;
  box-shadow:
    0 0 20px rgba(16, 185, 129, 0.2),
    inset 0 0 10px rgba(16, 185, 129, 0.1);
}

.visual-logo {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: #060c0a var(--setu-mark) center / cover no-repeat;
  box-shadow: 0 0 14px rgba(16, 185, 129, 0.25);
}

.visual-shield {
  position: absolute;
  width: 170px;
  height: 170px;
  border: 1.5px dashed rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  animation: spin-slow 20s linear infinite;
  z-index: 2;
}

.visual-ring {
  position: absolute;
  width: 230px;
  height: 230px;
  border: 1px solid rgba(255, 255, 255, 0.03);
  border-radius: 50%;
  z-index: 1;
}

@keyframes spin-slow {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Dashboard App Shell */
.app-shell {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  min-height: 100vh;
  position: relative;
  z-index: 10;
}

.sidebar {
  position: sticky;
  top: 0;
  height: 100vh;
  border-right: 1px solid var(--border-color);
  background: rgba(10, 10, 10, 0.65);
  backdrop-filter: blur(24px);
  padding: 24px 16px;
  display: flex;
  flex-direction: column;
  z-index: 100;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.brand-mark {
  display: block;
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  border-radius: 12px;
  background: #060c0a var(--setu-mark) center / cover no-repeat;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.08),
    0 14px 34px rgba(0, 245, 160, 0.18);
}

.brand strong {
  display: block;
  font-size: 1.15rem;
  font-weight: 600;
}

.brand small {
  display: block;
  color: var(--text-secondary);
  font-family: var(--font-sans);
  font-size: 0.72rem;
  margin-top: 1px;
}

.side-nav {
  display: grid;
  gap: 4px;
  margin: 32px 0;
}

.nav-item {
  width: 100%;
  min-height: 42px;
  padding: 0 12px;
  background: transparent;
  color: var(--text-secondary);
  text-align: left;
  border: 1px solid transparent;
  border-radius: 10px;
  cursor: pointer;
  font-family: var(--font-sora);
  font-size: 0.85rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: var(--transition);
}

.nav-item.active,
.nav-item:hover {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-primary);
  border-color: rgba(255, 255, 255, 0.05);
}

.identity-panel {
  margin-top: auto;
  border: 1px solid var(--border-color);
  border-radius: 14px;
  background: var(--bg-panel-soft);
  padding: 16px;
}

.identity-panel strong {
  display: block;
  font-size: 0.9rem;
}

.identity-panel span {
  display: block;
  margin: 4px 0 14px;
  color: var(--text-secondary);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  word-break: break-all;
}

.identity-panel .wallet-status {
  margin: 8px 0 8px;
  color: var(--text-muted);
  font-family: var(--font-sans);
  font-size: 0.72rem;
  line-height: 1.35;
}

.wallet-status-live {
  color: var(--color-emerald) !important;
}

.wallet-status-staging {
  color: var(--color-amber) !important;
}

.wallet-status-warning {
  color: var(--color-rose) !important;
}

.wallet-help-link {
  display: inline-flex;
  margin: 0 0 10px;
  color: var(--color-cyan);
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.wallet-help-link[hidden] {
  display: none;
}

.wallet-connected {
  border-color: rgba(16, 185, 129, 0.34);
  background: rgba(16, 185, 129, 0.1);
  color: var(--text-primary);
}

button:disabled {
  cursor: wait;
  opacity: 0.62;
  transform: none !important;
}

.eyebrow {
  margin: 0 0 6px;
  color: var(--color-amber);
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

/* Workspace content area */
.workspace {
  min-width: 0;
  padding: 32px;
  overflow-y: auto;
  position: relative;
  z-index: 10;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
  gap: 20px;
  position: relative;
  z-index: 15;
}

.topbar h1 {
  font-size: 1.85rem;
  font-weight: 600;
  margin-bottom: 2px;
}

/* Dashboard widgets layout */
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
}

.hero-copy h2 {
  font-size: 1.85rem;
  line-height: 1.2;
}

/* Mockups and windows */
.interactive-mockup {
  height: 100%;
  min-height: 260px;
  background: rgba(10, 10, 10, 0.65);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.mockup-header {
  display: flex;
  align-items: center;
  gap: 6px;
}

.mockup-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--text-muted);
}

.mockup-dot:nth-child(1) { background: #ef4444; }
.mockup-dot:nth-child(2) { background: #f59e0b; }
.mockup-dot:nth-child(3) { background: #10b981; }

.mockup-window {
  flex: 1;
  background: var(--bg-black);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 10px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 0.78rem;
}

.mockup-row {
  display: flex;
  justify-content: space-between;
  padding: 6px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.02);
}

.mockup-green {
  color: var(--color-emerald);
}

/* Metrics Dashboard cards */
.metrics-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}

.metric-card {
  padding: 20px;
}

.metric-card span {
  font-size: 0.72rem;
  font-family: var(--font-sans);
  color: var(--text-secondary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  display: block;
  margin-bottom: 8px;
}

.metric-card strong {
  font-size: 1.45rem;
  font-weight: 600;
  display: block;
}

.status-good {
  color: var(--color-emerald);
  text-shadow: 0 0 10px rgba(16, 185, 129, 0.2);
}

.status-bad {
  color: var(--color-rose);
  text-shadow: 0 0 10px rgba(239, 68, 68, 0.2);
}

/* Table grid splits */
.split-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 24px;
}

.activity-list {
  display: grid;
  gap: 12px;
}

.activity-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 18px;
  border-radius: 8px;
  background: rgba(26, 26, 26, 0.35);
  border: 1px solid var(--border-color);
  transition: var(--transition);
}

.activity-item:hover {
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateX(4px);
}

.activity-amount {
  font-family: var(--font-mono);
  font-weight: 600;
  color: var(--color-emerald);
}

/* Payout list */
.payout-card, .ticket {
  background: var(--bg-black);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 20px;
  display: grid;
  gap: 14px;
  margin-bottom: 20px;
}

.ticket {
  grid-template-columns: 1fr 1fr;
}

/* Transfer stepper logic */
.transfer-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 24px;
}

.step-flow {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 20px;
}

.flow-step {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid transparent;
  transition: var(--transition);
}

.flow-step.active {
  background: rgba(255, 255, 255, 0.02);
  border-color: rgba(255, 255, 255, 0.1);
}

.flow-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid var(--border-color);
  display: grid;
  place-items: center;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
}

.flow-step.done .flow-icon {
  border-color: var(--color-emerald);
  color: var(--color-emerald);
}

.flow-step.active .flow-icon {
  border-color: var(--color-amber);
  color: var(--color-amber);
}

pre {
  background: var(--bg-black);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 16px;
  overflow-x: auto;
}

pre code {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--color-cyan);
  line-height: 1.6;
}

/* Check lists */
.check-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: rgba(26, 26, 26, 0.35);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  font-family: var(--font-sans);
  font-size: 0.88rem;
}

.check-item::before {
  content: "OK";
  color: var(--color-emerald);
  font-weight: bold;
  font-size: 0.72rem;
}

/* Auditor receipts */
.receipt-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 24px;
}

.receipt-header {
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 16px;
  margin-bottom: 20px;
}

.pill {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 99px;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-primary);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.receipt-body dl div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 10px;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.05);
}

.receipt-body dt {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  color: var(--text-secondary);
}

.receipt-body dd {
  margin: 0;
  font-size: 0.88rem;
  font-weight: 600;
}

/* Contract evidence */
.contract-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}

.contract-card code {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--color-cyan);
}

.tx-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.tx-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  border-radius: 8px;
  background: rgba(26, 26, 26, 0.35);
  border: 1px solid var(--border-color);
  font-family: var(--font-sora);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-primary);
}

.tx-link:hover {
  border-color: rgba(255, 255, 255, 0.15);
  color: var(--color-amber);
}

.tx-link::after {
  content: "->";
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Toast styling */
.toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: rgba(10, 10, 10, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: var(--shadow-dark);
  padding: 16px 24px;
  border-radius: 8px;
  font-family: var(--font-sora);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-primary);
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  z-index: 1000;
  pointer-events: none;
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

.confetti-particle {
  position: fixed;
  width: 8px;
  height: 8px;
  border-radius: 2px;
  pointer-events: none;
  z-index: 9999;
}

/* Responsive queries */
@media (max-width: 1024px) {
  .auth-view {
    grid-template-columns: 1fr;
    padding: 12px;
  }

  .auth-story {
    min-height: 460px;
    padding: 28px;
  }

  .auth-form-shell {
    min-height: auto;
    padding: 32px 12px 44px;
  }

  .app-shell {
    grid-template-columns: 1fr;
  }

  .sidebar {
    height: auto;
    position: relative;
    border-right: none;
    border-bottom: 1px solid var(--border-color);
  }

  .side-nav {
    display: flex;
    overflow-x: auto;
    gap: 8px;
    margin: 16px 0;
    padding-bottom: 8px;
  }

  .nav-item {
    white-space: nowrap;
    width: auto;
  }

  .identity-panel {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-top: 16px;
  }

  .identity-panel span {
    margin: 0;
  }

  .identity-panel button {
    width: auto;
  }

  .landing-hero {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 34px 0 52px;
    min-height: auto;
  }

  .landing-hero::before {
    top: -70px;
    bottom: -40px;
    opacity: 0.6;
  }

  .landing-hero::after {
    right: 50%;
    top: 44%;
    width: min(720px, 100%);
    height: 48%;
    transform: translateX(50%);
    opacity: 0.36;
  }

  .hero-text p {
    margin: 0 auto 32px;
  }

  .hero-badges {
    justify-content: center;
  }

  .hero-ctas {
    justify-content: center;
  }

  .hero-metrics {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-product-stack {
    max-width: 720px;
    width: 100%;
    margin: 12px auto 0;
  }

  .hero-product-stack::before {
    inset: -20px -16px;
  }

  .proof-strip {
    grid-template-columns: 1fr;
  }

  .landing-features {
    grid-template-columns: 1fr;
  }

  .compliance-panel {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .metrics-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .split-grid {
    grid-template-columns: 1fr;
  }

  .transfer-layout {
    grid-template-columns: 1fr;
  }

  .receipt-layout {
    grid-template-columns: 1fr;
  }

  .contract-grid {
    grid-template-columns: 1fr;
  }

  .tx-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .landing-view {
    padding: 0 16px;
    overflow: hidden;
  }

  .landing-hero::before {
    top: -120px;
    bottom: -32px;
    opacity: 0.48;
  }

  .landing-hero::after {
    top: auto;
    right: auto;
    bottom: 8%;
    left: 50%;
    width: calc(100% + 32px);
    height: 42%;
    border-radius: 18px;
    transform: translateX(-50%);
    opacity: 0.28;
  }

  .hero-product-stack::before {
    inset: -14px -10px;
    border-radius: 18px;
    opacity: 0.72;
  }

  .hero-rail-strip {
    min-height: 46px;
    grid-template-columns: auto minmax(22px, 1fr) auto minmax(22px, 1fr) auto;
    gap: 8px;
    padding: 10px 12px;
  }

  .hero-rail-strip span,
  .hero-rail-strip strong {
    font-size: 0.62rem;
    letter-spacing: 0.06em;
  }

  .hero-disclosure-card {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 4px;
  }

  .hero-disclosure-card strong {
    justify-self: center;
  }

  .sim-body-wrap {
    padding: 24px 22px 22px;
  }

  .landing-header {
    height: auto;
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
    padding: 18px 0;
  }

  .landing-header .brand {
    justify-content: center;
  }

  .landing-nav {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .landing-nav a,
  .landing-nav a.primary,
  .landing-nav a.secondary {
    width: 100%;
    min-height: 34px !important;
    padding: 0 10px !important;
    font-size: 0.8rem !important;
    text-align: center;
    white-space: normal;
  }

  .auth-view {
    padding: 0;
    gap: 0;
  }

  .auth-story {
    min-height: auto;
    border-left: 0;
    border-right: 0;
    border-radius: 0;
    padding: 22px;
  }

  .auth-story-media,
  .auth-story::after {
    display: none;
  }

  .auth-story-content {
    gap: 20px;
  }

  .auth-story h1 {
    font-size: 2rem;
  }

  .auth-step-list {
    display: none;
  }

  .auth-form-shell {
    padding: 28px 20px 40px;
  }

  .auth-name-grid,
  .social-btn-row {
    grid-template-columns: 1fr;
  }

  .workspace {
    padding: 20px;
  }

  .topbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .topbar .top-actions {
    width: 100%;
    justify-content: flex-start;
    margin-top: 8px;
  }

  .hero-text h1 {
    max-width: 100%;
    font-size: 2.15rem;
    line-height: 1.04;
    text-wrap: balance;
  }

  .hero-text,
  .hero-text .eyebrow,
  .hero-product-stack * {
    min-width: 0;
  }

  .hero-badges {
    gap: 8px;
    width: 100%;
  }

  .hero-badges span {
    min-height: 30px;
    font-size: 0.72rem;
    padding: 0 10px;
  }

  .hero-text p {
    max-width: 100%;
    font-size: 0.98rem;
  }

  .hero-metrics {
    grid-template-columns: 1fr;
  }

  .hero-product-stack,
  .corridor-card,
  .sim-card {
    min-width: 0;
  }

  .receipt-chip {
    grid-template-columns: 36px minmax(0, 1fr);
  }

  .receipt-chip .brand-mark {
    width: 36px;
    height: 36px;
    flex-basis: 36px;
  }

  .receipt-chip small {
    display: block;
    overflow-wrap: anywhere;
  }

  .corridor-map {
    grid-template-columns: 1fr;
  }

  .corridor-rail {
    grid-template-columns: 1fr;
  }

  .corridor-rail i {
    height: 10px;
  }

  .metrics-row {
    grid-template-columns: 1fr;
  }

  .ticket {
    grid-template-columns: 1fr;
  }

  .amount-row {
    grid-template-columns: 1fr;
  }

  .landing-header {
    flex-direction: column;
    height: auto;
    gap: 16px;
  }
}

/* Landing Page Footer and WebGL Shader */
.landing-footer {
  position: relative;
  left: auto;
  width: var(--setu-client-width, 100vw);
  margin-left: calc((100% - var(--setu-client-width, 100vw)) / 2);
  margin-right: calc((100% - var(--setu-client-width, 100vw)) / 2);
  min-height: 240px;
  background: #000000;
  border-top: 1px solid var(--border-color);
  overflow: hidden;
  padding: 48px 0;
  margin-top: 80px;
}

#footer-shader-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.35;
  pointer-events: none;
  z-index: 1;
}

.footer-content {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 2;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-brand strong {
  display: block;
  font-size: 1.15rem;
  color: var(--text-primary);
  font-weight: 600;
}

.footer-brand small {
  display: block;
  color: var(--text-secondary);
  font-family: var(--font-sans);
  font-size: 0.72rem;
  margin-top: 2px;
}

.footer-meta {
  text-align: right;
  max-width: 480px;
}

.footer-meta p {
  font-size: 0.82rem;
  color: var(--text-secondary);
  margin: 0 0 8px 0;
  line-height: 1.5;
}

.footer-meta span {
  font-size: 0.72rem;
  color: var(--text-muted);
  font-family: var(--font-mono);
}

@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
  .footer-meta {
    text-align: center;
  }
}
