/* ===== HexaTalk — vyrapp.pro ===== */

:root {
  --bg: #0a0a12;
  --bg-alt: #0e0e1a;
  --surface: #14142300;
  --card: #13131f;
  --border: #23233a;
  --text: #e8e8f2;
  --text-dim: #9a9ab5;
  --accent: #7c5cff;
  --accent2: #00e0ff;
  --accent3: #00ff9d;
  --radius: 14px;
  --font: 'Inter', system-ui, sans-serif;
  --mono: 'JetBrains Mono', monospace;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

/* Layered ambient glow + a faint grain texture behind everything, so
   sections don't read as flat dark rectangles. */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(ellipse 60% 40% at 15% 0%, rgba(124, 92, 255, 0.10), transparent 60%),
    radial-gradient(ellipse 50% 40% at 100% 30%, rgba(0, 224, 255, 0.08), transparent 60%),
    radial-gradient(ellipse 50% 35% at 10% 85%, rgba(0, 255, 157, 0.06), transparent 60%);
  pointer-events: none;
}
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  opacity: 0.035;
  mix-blend-mode: overlay;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

::selection { background: var(--accent); color: #fff; }

a { color: inherit; text-decoration: none; }

h1, h2, h3 { line-height: 1.15; letter-spacing: -0.02em; }

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

.gradient-text {
  background: linear-gradient(90deg, var(--accent), var(--accent2), var(--accent));
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: gradientShift 6s ease-in-out infinite;
}
@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* ===== BETA badge / watermark ===== */
.beta-mark {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.beta-mark-text {
  font-weight: 900;
  font-size: clamp(4rem, 18vw, 16rem);
  letter-spacing: 0.06em;
  line-height: 0.95;
  text-transform: uppercase;
  text-align: center;
  max-width: 95vw;
  color: transparent;
  -webkit-text-stroke: 2px rgba(124, 92, 255, 0.18);
  text-stroke: 2px rgba(124, 92, 255, 0.18);
  transform: rotate(-18deg);
  user-select: none;
  opacity: 0.9;
  text-shadow: 0 0 80px rgba(124, 92, 255, 0.12);
  white-space: pre-line;
}
.beta-pill {
  position: fixed;
  top: 5.4rem;
  right: 1.25rem;
  z-index: 120;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(135deg, #7c5cff, #00e0ff);
  box-shadow: 0 8px 28px rgba(124, 92, 255, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.18);
  pointer-events: none;
  animation: betaPulse 2.8s ease-in-out infinite;
}
.beta-pill-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
  animation: betaDot 1.6s ease-out infinite;
}
@keyframes betaPulse {
  0%, 100% { transform: translateY(0); box-shadow: 0 8px 28px rgba(124, 92, 255, 0.45); }
  50% { transform: translateY(-2px); box-shadow: 0 12px 36px rgba(0, 224, 255, 0.4); }
}
@keyframes betaDot {
  0% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.65); }
  70% { box-shadow: 0 0 0 10px rgba(255, 255, 255, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); }
}
.brand-beta {
  display: inline-flex;
  align-items: center;
  margin-left: 0.35rem;
  padding: 0.15rem 0.45rem;
  border-radius: 6px;
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  color: #0a0a12;
  background: linear-gradient(135deg, #00ff9d, #00e0ff);
  vertical-align: middle;
  line-height: 1.2;
}
/* Keep page content above the watermark */
.nav, .hero, .section, footer, .hero-inner { position: relative; z-index: 1; }

@media (max-width: 720px) {
  .beta-pill {
    top: auto;
    bottom: 1rem;
    right: 50%;
    transform: translateX(50%);
    font-size: 0.78rem;
  }
  .beta-mark-text {
    -webkit-text-stroke-width: 1.5px;
    opacity: 0.75;
  }
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.75rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.btn-sm { padding: 0.5rem 1.1rem; font-size: 0.85rem; }
.btn-primary {
  background: linear-gradient(135deg, var(--accent), #5b3df0);
  color: #fff;
  box-shadow: 0 4px 24px rgba(124, 92, 255, 0.35);
  position: relative;
  overflow: hidden;
}
.btn-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, 0.25) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}
.btn-primary:hover::before { transform: translateX(100%); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(124, 92, 255, 0.5); }
.btn-ghost {
  border-color: var(--border);
  color: var(--text);
  background: rgba(255, 255, 255, 0.02);
}
.btn-ghost:hover { border-color: var(--accent); transform: translateY(-2px); }

/* ===== Nav ===== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  backdrop-filter: blur(14px);
  background: rgba(10, 10, 18, 0.75);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease, box-shadow 0.25s ease;
}
.nav.scrolled {
  border-bottom-color: var(--border);
  box-shadow: 0 10px 34px rgba(0, 0, 0, 0.4);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.9rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 2rem;
}
.brand { display: flex; align-items: center; gap: 0.6rem; }
.brand-logo { width: 34px; height: 34px; }
.brand-name { font-weight: 800; font-size: 1.2rem; letter-spacing: -0.02em; }
.nav-links { display: flex; gap: 1.6rem; margin-left: auto; }
.nav-links a {
  color: var(--text-dim);
  font-size: 0.92rem;
  font-weight: 500;
  transition: color 0.15s ease;
}
.nav-links a:hover { color: var(--text); }
.nav-links a { position: relative; }
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}
.nav-links a.active { color: var(--text); }
.nav-links a.active::after { transform: scaleX(1); }
.nav-actions { display: flex; align-items: center; gap: 1rem; }

.lang-switch {
  display: flex;
  border: 1px solid var(--border);
  border-radius: 999px;
  overflow: hidden;
}
.lang-btn {
  background: transparent;
  border: none;
  color: var(--text-dim);
  font-family: var(--mono);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.35rem 0.7rem;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}
.lang-btn.active { background: var(--accent); color: #fff; }

/* ===== Hero ===== */
.hero {
  position: relative;
  padding: 9.5rem 1.5rem 5rem;
  overflow: hidden;
}
.hero-canvas {
  position: absolute;
  inset: 0 0 auto 0;
  width: 100%;
  height: 46%;
  pointer-events: none;
  z-index: 0;
}
.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(124, 92, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(124, 92, 255, 0.06) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, #000 30%, transparent 75%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 4rem;
  align-items: center;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.9rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 0.75rem;
  color: var(--text-dim);
  margin-bottom: 1.5rem;
}
.badge-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent3);
  box-shadow: 0 0 8px var(--accent3);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.hero h1 { font-size: clamp(2.2rem, 4.5vw, 3.6rem); font-weight: 800; margin-bottom: 1.25rem; }
.hero-sub { color: var(--text-dim); font-size: 1.08rem; max-width: 34rem; margin-bottom: 2rem; }
.hero-cta { display: flex; gap: 0.9rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.hero-stats { display: flex; gap: 2.2rem; flex-wrap: wrap; }
.stat { display: flex; flex-direction: column; }
.stat-num {
  font-family: var(--mono);
  font-size: 1.5rem;
  font-weight: 600;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.stat-label { color: var(--text-dim); font-size: 0.82rem; }

/* ===== Mockup ===== */
.hero-mockup { position: relative; }
.mockup-window {
  position: relative;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.55);
  transform: perspective(1200px) rotateY(-6deg) rotateX(2deg);
  transition: transform 0.4s ease;
}
.hero-mockup:hover .mockup-window {
  transform: perspective(1200px) rotateY(0deg) rotateX(0deg);
}
.mockup-bar {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.7rem 1rem;
  background: #10101c;
  border-bottom: 1px solid var(--border);
}
.dot { width: 11px; height: 11px; border-radius: 50%; }
.dot-r { background: #ff5f57; }
.dot-y { background: #febc2e; }
.dot-g { background: #28c840; }
.mockup-title {
  margin-left: 0.6rem;
  font-family: var(--mono);
  font-size: 0.72rem;
  color: var(--text-dim);
}
.mockup-lock {
  margin-left: auto;
  font-family: var(--mono);
  font-size: 0.72rem;
  color: var(--accent3);
}
.mockup-body { display: flex; min-height: 300px; }
.mockup-sidebar {
  width: 150px;
  padding: 0.8rem 0.6rem;
  background: #0c0c16;
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.ms-item {
  font-size: 0.78rem;
  color: var(--text-dim);
  padding: 0.35rem 0.55rem;
  border-radius: 7px;
}
.ms-item.active { background: rgba(124, 92, 255, 0.15); color: var(--text); }
.ms-voice { font-size: 0.72rem; opacity: 0.85; }
.mockup-chat { flex: 1; padding: 1rem; display: flex; flex-direction: column; gap: 1rem; }
.msg { display: flex; gap: 0.7rem; }
.msg-avatar {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--c1), var(--c2));
  flex-shrink: 0;
}
.msg-head { display: flex; align-items: baseline; gap: 0.5rem; }
.msg-name { font-weight: 700; font-size: 0.85rem; }
.msg-time { font-size: 0.68rem; color: var(--text-dim); }
.msg-text { font-size: 0.85rem; color: #cfcfe2; }
.typing-row { display: flex; align-items: center; gap: 0.55rem; padding-left: 2.7rem; }
.typing-label { font-size: 0.76rem; color: var(--text-dim); font-style: italic; }
.typing-dots { display: inline-flex; gap: 3px; }
.typing-dots span {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--text-dim);
  animation: typingBounce 1.2s infinite ease-in-out;
}
.typing-dots span:nth-child(2) { animation-delay: 0.15s; }
.typing-dots span:nth-child(3) { animation-delay: 0.3s; }
@keyframes typingBounce {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.5; }
  30% { transform: translateY(-3px); opacity: 1; }
}
.mockup-input {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #10101c;
  border: 1px solid var(--border);
  border-radius: 9px;
  padding: 0.55rem 0.8rem;
}
.mockup-input-ph { font-size: 0.8rem; color: var(--text-dim); }
.mockup-send { color: var(--accent); font-size: 0.8rem; }
.mockup-glow {
  position: absolute;
  inset: -10% -15%;
  background: radial-gradient(circle at 60% 40%, rgba(124, 92, 255, 0.22), transparent 60%);
  filter: blur(30px);
  z-index: -1;
}

/* ===== Sections ===== */
.section { padding: 6rem 1.5rem; max-width: 1200px; margin: 0 auto; }
.section-dark { max-width: none; background: var(--bg-alt); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.section-head { text-align: center; max-width: 40rem; margin: 0 auto 3.5rem; }
.section-head h2 { font-size: clamp(1.8rem, 3.2vw, 2.6rem); font-weight: 800; margin-bottom: 0.8rem; }
.section-head p { color: var(--text-dim); }

/* ===== Cards ===== */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.2rem;
}
.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.8rem;
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.card { position: relative; overflow: hidden; }
.card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(220px circle at var(--mx, 50%) var(--my, 50%), rgba(124, 92, 255, 0.16), transparent 70%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.card:hover::before { opacity: 1; }
.card:hover { transform: translateY(-4px); border-color: rgba(124, 92, 255, 0.5); box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35); }
.card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(124, 92, 255, 0.22), rgba(0, 224, 255, 0.16));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.1rem;
}
.card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 0.5rem; }
.card p { color: var(--text-dim); font-size: 0.92rem; }

/* ===== Security ===== */
.security-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.security-text h2 { font-size: clamp(1.8rem, 3.2vw, 2.5rem); font-weight: 800; margin-bottom: 1rem; }
.security-text > p { color: var(--text-dim); margin-bottom: 2rem; }
.sec-list { list-style: none; display: flex; flex-direction: column; gap: 1.4rem; }
.sec-list li { display: flex; gap: 1rem; align-items: flex-start; }
.sec-check {
  color: var(--accent3);
  font-weight: 700;
  border: 1px solid rgba(0, 255, 157, 0.35);
  border-radius: 50%;
  width: 26px; height: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  flex-shrink: 0;
  margin-top: 0.15rem;
}
.sec-list span[data-i18n], .sec-list li div span { color: var(--text-dim); font-size: 0.92rem; }

.security-visual { display: flex; flex-direction: column; align-items: center; gap: 2.5rem; }
.hex-lock { position: relative; width: 180px; height: 180px; display: flex; align-items: center; justify-content: center; }
.hex-lock img { width: 110px; height: 110px; filter: drop-shadow(0 0 30px rgba(124, 92, 255, 0.5)); }
.hex-ring {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(124, 92, 255, 0.35);
  border-radius: 50%;
  animation: ring 4s linear infinite;
}
.hex-ring-2 { inset: -22px; border-color: rgba(0, 224, 255, 0.2); animation-duration: 7s; animation-direction: reverse; }
.hex-ring-3 { inset: -42px; border-color: rgba(0, 255, 157, 0.14); animation-duration: 11s; }
@keyframes ring {
  from { transform: rotate(0deg) scale(1); opacity: 0.9; }
  50% { transform: rotate(180deg) scale(1.04); opacity: 0.5; }
  to { transform: rotate(360deg) scale(1); opacity: 0.9; }
}
.sec-terminal {
  width: 100%;
  max-width: 380px;
  background: #0c0c16;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.1rem 1.2rem;
  font-family: var(--mono);
  font-size: 0.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
.term-p { color: var(--accent); }
.term-ok { color: var(--accent3); }

.term-line { opacity: 0; }
.security-visual.visible .term-line { animation: termIn 0.45s ease forwards; }
.security-visual.visible .term-line:nth-child(1) { animation-delay: 0.1s; }
.security-visual.visible .term-line:nth-child(2) { animation-delay: 0.35s; }
.security-visual.visible .term-line:nth-child(3) { animation-delay: 0.6s; }
.security-visual.visible .term-line:nth-child(4) { animation-delay: 0.85s; }
.security-visual.visible .term-line:nth-child(5) { animation-delay: 1.1s; }
@keyframes termIn {
  from { opacity: 0; transform: translateX(-6px); }
  to { opacity: 1; transform: translateX(0); }
}
.term-cursor {
  display: inline-block;
  width: 6px; height: 12px;
  margin-left: 4px;
  background: var(--accent3);
  vertical-align: middle;
  animation: cursorBlink 1s step-end infinite;
}
@keyframes cursorBlink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

/* ===== Download ===== */
.join-banner {
  max-width: 34rem;
  margin: 0 auto 2rem;
  padding: 0.9rem 1.25rem;
  border: 1px solid rgba(124, 92, 255, 0.4);
  border-radius: 0.75rem;
  background: rgba(124, 92, 255, 0.08);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  text-align: center;
}
.join-banner p { color: var(--text); font-size: 0.9rem; margin: 0; }
.join-banner .join-slug { font-family: 'JetBrains Mono', monospace; color: var(--accent2); }
.dl-platforms {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}
.dl-item {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.3rem 1.8rem;
  font-weight: 600;
  min-width: 120px;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.dl-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(160px circle at var(--mx, 50%) var(--my, 50%), rgba(124, 92, 255, 0.14), transparent 70%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.dl-item:hover::before { opacity: 1; }
.dl-item:hover { border-color: rgba(124, 92, 255, 0.5); transform: translateY(-3px); }
.dl-ico { font-size: 1.6rem; }
.dl-soon {
  font-family: var(--mono);
  font-size: 0.68rem;
  color: var(--accent2);
  border: 1px solid rgba(0, 224, 255, 0.3);
  border-radius: 999px;
  padding: 0.1rem 0.55rem;
}
.dl-avail {
  font-family: var(--mono);
  font-size: 0.68rem;
  color: var(--accent3);
  border: 1px solid rgba(0, 255, 157, 0.35);
  border-radius: 999px;
  padding: 0.1rem 0.55rem;
}
.dl-item.dl-item-ready {
  border-color: rgba(0, 255, 157, 0.4);
  cursor: pointer;
}
.dl-item.dl-item-ready:hover {
  border-color: var(--accent3);
  box-shadow: 0 8px 28px rgba(0, 255, 157, 0.15);
}
.waitlist {
  display: flex;
  gap: 0.7rem;
  max-width: 460px;
  margin: 0 auto 0.9rem;
}
.waitlist input {
  flex: 1;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.85rem 1.4rem;
  color: var(--text);
  font-family: var(--font);
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.15s ease;
}
.waitlist input:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(124, 92, 255, 0.15); }
.waitlist-note { text-align: center; color: var(--text-dim); font-size: 0.85rem; }
.waitlist-note.success { color: var(--accent3); }

/* ===== Footer ===== */
.footer {
  position: relative;
  padding: 3rem 1.5rem;
}
.footer::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border) 20%, var(--border) 80%, transparent);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  text-align: center;
}
.footer-tag { color: var(--text-dim); font-size: 0.9rem; }
.footer-open { color: var(--text-dim); font-size: 0.85rem; }
.footer-open a { color: var(--accent2); text-decoration: none; }
.footer-open a:hover { text-decoration: underline; }
.footer-meta { color: var(--text-dim); font-family: var(--mono); font-size: 0.78rem; }
.footer-plus-link { color: var(--text-dim); border-bottom: 1px dotted var(--border); }
.footer-plus-link:hover { color: var(--accent2); border-bottom-color: var(--accent2); }

/* ===== Reveal animation ===== */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.cards .card:nth-child(2) { transition-delay: 0.06s; }
.cards .card:nth-child(3) { transition-delay: 0.12s; }
.cards .card:nth-child(4) { transition-delay: 0.18s; }
.cards .card:nth-child(5) { transition-delay: 0.24s; }
.cards .card:nth-child(6) { transition-delay: 0.3s; }
.dl-platforms .dl-item:nth-child(2) { transition-delay: 0.05s; }
.dl-platforms .dl-item:nth-child(3) { transition-delay: 0.1s; }
.dl-platforms .dl-item:nth-child(4) { transition-delay: 0.15s; }
.dl-platforms .dl-item:nth-child(5) { transition-delay: 0.2s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .badge-dot, .hex-ring, .hex-ring-2, .hex-ring-3, .typing-dots span, .term-cursor { animation: none; }
  .term-line { opacity: 1; animation: none !important; }
}

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .hero-inner, .security-inner { grid-template-columns: 1fr; }
  .hero-mockup { max-width: 560px; margin: 0 auto; }
  .mockup-window { transform: none; }
  .security-visual { order: -1; }
  .hero-canvas { height: 34vh; }
}
@media (max-width: 480px) {
  .hero-canvas { height: 28vh; }
}
@media (max-width: 640px) {
  .nav-links { display: none; }
  .nav-inner { gap: 1rem; }
  .nav-actions { margin-left: auto; }
  .hero { padding-top: 7.5rem; }
  .hero-stats { gap: 1.4rem; }
  .waitlist { flex-direction: column; }
  .waitlist .btn { width: 100%; }
  .mockup-sidebar { display: none; }
}
