/* NFC RIPPER Landing – redesigned layout, same theme */
@import url('https://fonts.googleapis.com/css2?family=Share+Tech+Mono&family=Orbitron:wght@500;700;900&display=swap');

:root {
  --bg: #050506;
  --bg-terminal: #0a0b0c;
  --surface: #0d0e10;
  --surface-hover: #141618;
  --red: #E53935;
  --red-dark: #8B0000;
  --red-accent: #FF1744;
  --red-dim: rgba(255, 23, 68, 0.2);
  --white: #f5f5f5;
  --white-dim: #b0b0b0;
  --grey: #6a6a6a;
  --green: #00E676;
  --green-dim: rgba(0, 230, 118, 0.15);
  --cyan: #00E5FF;
  --cyan-dim: rgba(0, 229, 255, 0.2);
  --amber: #FFAB00;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: var(--red-accent) var(--surface);
}
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--surface); }
::-webkit-scrollbar-thumb { background: var(--red-accent); border-radius: 5px; border: 2px solid var(--surface); }
::-webkit-scrollbar-thumb:hover { background: #e6133d; }

body {
  margin: 0;
  font-family: 'Share Tech Mono', 'Consolas', 'Courier New', monospace;
  background: var(--bg);
  color: var(--white);
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
}

/* ========== Background ========== */
.landing-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.landing-bg .bg-gradient {
  position: absolute;
  inset: -50%;
  background:
    radial-gradient(ellipse 80% 50% at 50% -20%, rgba(255, 23, 68, 0.12) 0%, transparent 50%),
    radial-gradient(ellipse 60% 40% at 85% 100%, rgba(139, 0, 0, 0.15) 0%, transparent 45%),
    radial-gradient(ellipse 50% 30% at 15% 80%, rgba(0, 230, 118, 0.03) 0%, transparent 40%);
  animation: bgPulse 8s ease-in-out infinite alternate;
}
.landing-bg .bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 23, 68, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 23, 68, 0.06) 1px, transparent 1px);
  background-size: 28px 28px;
  animation: gridMove 25s linear infinite, gridPulse 6s ease-in-out infinite;
}
.landing-bg .bg-grid-2 {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 23, 68, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 23, 68, 0.03) 1px, transparent 1px);
  background-size: 56px 56px;
  animation: gridMoveReverse 40s linear infinite;
}
.landing-bg .bg-scanlines {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(0deg, transparent 0, transparent 2px, rgba(0,0,0,0.1) 2px, rgba(0,0,0,0.1) 4px);
  animation: scanlineDrift 6s linear infinite;
}
.landing-bg .bg-squares {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.landing-bg .bg-square {
  position: absolute;
  width: 4px;
  height: 4px;
  background: rgba(255, 23, 68, 0.25);
  border-radius: 1px;
  animation: squareFloat 12s ease-in-out infinite;
}
.landing-bg .bg-square:nth-child(1)  { left: 5%;  top: 10%; animation-delay: 0s;    animation-duration: 10s; }
.landing-bg .bg-square:nth-child(2)  { left: 18%; top: 25%; animation-delay: 1s;   animation-duration: 14s; }
.landing-bg .bg-square:nth-child(3)  { left: 32%; top: 8%;  animation-delay: 2s;   animation-duration: 11s; }
.landing-bg .bg-square:nth-child(4)  { left: 45%; top: 40%; animation-delay: 0.5s; animation-duration: 16s; }
.landing-bg .bg-square:nth-child(5)  { left: 58%; top: 15%; animation-delay: 3s;   animation-duration: 9s; }
.landing-bg .bg-square:nth-child(6)  { left: 72%; top: 55%; animation-delay: 1.5s; animation-duration: 13s; }
.landing-bg .bg-square:nth-child(7)  { left: 85%; top: 22%; animation-delay: 2.5s;  animation-duration: 15s; }
.landing-bg .bg-square:nth-child(8)  { left: 12%; top: 60%; animation-delay: 4s;   animation-duration: 10s; }
.landing-bg .bg-square:nth-child(9)  { left: 25%; top: 75%; animation-delay: 0.8s; animation-duration: 12s; }
.landing-bg .bg-square:nth-child(10) { left: 55%; top: 80%; animation-delay: 2.2s; animation-duration: 11s; }
.landing-bg .bg-square:nth-child(11) { left: 78%; top: 35%; animation-delay: 3.5s; animation-duration: 14s; }
.landing-bg .bg-square:nth-child(12) { left: 8%;  top: 42%; animation-delay: 1.2s; animation-duration: 9s; }
.landing-bg .bg-square:nth-child(13) { left: 42%; top: 65%; animation-delay: 2.8s; animation-duration: 13s; }
.landing-bg .bg-square:nth-child(14) { left: 68%; top: 8%;  animation-delay: 0.3s; animation-duration: 15s; }
.landing-bg .bg-square:nth-child(15) { left: 92%; top: 48%; animation-delay: 4.2s; animation-duration: 10s; }
.landing-bg .bg-square:nth-child(16) { left: 15%; top: 88%; animation-delay: 1.8s; animation-duration: 12s; }
.landing-bg .bg-square:nth-child(17) { left: 38%; top: 18%; animation-delay: 3.2s; animation-duration: 11s; }
.landing-bg .bg-square:nth-child(18) { left: 62%; top: 72%; animation-delay: 0.6s; animation-duration: 14s; }
.landing-bg .bg-square:nth-child(19) { left: 88%; top: 65%; animation-delay: 2.4s; animation-duration: 9s; }
.landing-bg .bg-square:nth-child(20) { left: 50%; top: 92%; animation-delay: 3.8s; animation-duration: 13s; }
.landing-bg .bg-square:nth-child(odd) { background: rgba(0, 229, 255, 0.2); }
.landing-bg .bg-square:nth-child(3n) { width: 6px; height: 6px; background: rgba(255, 23, 68, 0.35); animation-duration: 8s; }
.landing-bg .bg-square:nth-child(5n) { width: 3px; height: 3px; background: rgba(0, 230, 118, 0.2); animation-duration: 18s; }
.landing-bg .bg-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(105deg, transparent 48%, rgba(255, 23, 68, 0.04) 50%, transparent 52%),
    linear-gradient(75deg, transparent 48%, rgba(0, 229, 255, 0.03) 50%, transparent 52%);
  background-size: 200% 200%;
  animation: linesShift 20s ease-in-out infinite;
}
.landing-bg .bg-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 35%, rgba(0,0,0,0.5) 100%);
}
@keyframes bgPulse {
  from { opacity: 0.8; transform: scale(1); }
  to   { opacity: 1;   transform: scale(1.03); }
}
@keyframes gridMove {
  0%   { transform: translate(0, 0); }
  100% { transform: translate(28px, 28px); }
}
@keyframes gridMoveReverse {
  0%   { transform: translate(0, 0); }
  100% { transform: translate(-56px, -56px); }
}
@keyframes scanlineDrift {
  0%   { background-position: 0 0; }
  100% { background-position: 0 8px; }
}
@keyframes squareFloat {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.6; }
  25%      { transform: translate(15px, -20px) scale(1.2); opacity: 1; }
  50%      { transform: translate(-10px, 10px) scale(0.9); opacity: 0.7; }
  75%      { transform: translate(20px, 15px) scale(1.1); opacity: 0.9; }
}
@keyframes linesShift {
  0%, 100% { background-position: 0% 0%, 100% 100%; opacity: 1; }
  50%      { background-position: 100% 100%, 0% 0%; opacity: 0.8; }
}
@keyframes gridPulse {
  0%, 100% { opacity: 0.9; }
  50%      { opacity: 1; }
}

.landing-wrap { position: relative; z-index: 1; min-height: 100vh; }

/* ========== Header ========== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 0.75rem 1.5rem;
  background: rgba(5, 5, 6, 0.92);
  border-bottom: 1px solid var(--red-dim);
  backdrop-filter: blur(8px);
}
.header-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: var(--white);
}
.header-logo-img {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  object-fit: cover;
}
.header-brand {
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.12em;
}
.header-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.header-link {
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  color: var(--white-dim);
  text-decoration: none;
  transition: color 0.2s;
}
.header-link:hover { color: var(--red-accent); }
.header-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.header-btn {
  padding: 0.4rem 0.85rem;
  font-size: 0.75rem;
  font-family: 'Orbitron', sans-serif;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--white-dim);
  text-decoration: none;
  border: 1px solid var(--red-dim);
  border-radius: 6px;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.header-btn:hover {
  color: var(--white);
  border-color: rgba(255, 23, 68, 0.5);
  background: rgba(255, 23, 68, 0.06);
}
.header-btn-primary {
  color: var(--white);
  background: var(--red-accent);
  border-color: var(--red-accent);
}
.header-btn-primary:hover {
  background: #e6133d;
  border-color: #e6133d;
  box-shadow: 0 0 20px rgba(255, 23, 68, 0.3);
}

/* ========== Hero – split layout ========== */
.hero {
  padding: 3rem 1.5rem 4rem;
  max-width: 1200px;
  margin: 0 auto;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.hero-label {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  color: var(--red-accent);
  margin-bottom: 1rem;
}
.hero-title {
  font-family: 'Orbitron', sans-serif;
  font-weight: 900;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15;
  letter-spacing: 0.02em;
  margin: 0 0 1rem;
  color: var(--white);
  text-shadow: 0 0 40px rgba(255, 23, 68, 0.2);
}
.hero-tagline {
  font-size: 0.95rem;
  color: var(--white-dim);
  line-height: 1.65;
  margin: 0 0 1rem;
  max-width: 420px;
}
.hero-highlights {
  font-size: 0.8rem;
  color: var(--grey);
  letter-spacing: 0.06em;
  margin: 0 0 1.5rem;
}
.hero-highlights strong { color: var(--red-accent); }
.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-frame {
  width: 100%;
  max-width: 420px;
  background: var(--surface);
  border: 1px solid var(--red-dim);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0,0,0,0.4), 0 0 0 1px rgba(255,23,68,0.08);
}
.hero-frame-bar {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 0.75rem;
  background: var(--bg-terminal);
  border-bottom: 1px solid var(--red-dim);
}
.hero-frame-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--grey);
}
.hero-frame-dot:nth-child(1) { background: #ff5f56; }
.hero-frame-dot:nth-child(2) { background: #ffbd2e; }
.hero-frame-dot:nth-child(3) { background: #27c93f; }
.hero-frame-title {
  margin-left: 0.5rem;
  font-size: 0.7rem;
  color: var(--grey);
  letter-spacing: 0.08em;
}
.hero-frame-img {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: middle;
}

/* ========== Blocks (sections) ========== */
.block {
  padding: 4rem 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}
.block-head {
  margin-bottom: 2rem;
}
.block-tag {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  color: var(--red-accent);
  margin-bottom: 0.5rem;
}
.block-title {
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  font-size: 1.75rem;
  letter-spacing: 0.06em;
  margin: 0;
  color: var(--white);
}
.block-desc {
  margin: 0.5rem 0 0;
  font-size: 0.9rem;
  color: var(--grey);
}

/* Video block */
.block-video { padding-top: 2rem; }
.video-container {
  max-width: 720px;
  margin: 0 auto;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--red-dim);
  box-shadow: 0 10px 40px rgba(0,0,0,0.35);
  background: #000;
}
.video-player {
  display: block;
  width: 100%;
  height: auto;
}

/* ========== App screenshots ========== */
.appshots-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-top: 1rem;
}
.appshot-item {
  flex: 0 0 auto;
  text-align: center;
  max-width: 280px;
}
.appshot-frame {
  border-radius: 24px;
  overflow: hidden;
  border: 2px solid var(--red-dim);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4), 0 0 0 1px rgba(255,23,68,0.1);
  background: var(--surface);
  padding: 8px;
}
.appshot-img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 16px;
  vertical-align: middle;
}
.appshot-caption {
  margin: 0.75rem 0 0;
  font-size: 0.8rem;
  color: var(--grey);
  letter-spacing: 0.04em;
  line-height: 1.4;
}

/* ========== Bento grid (features) ========== */
.bento {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.bento-item.bento-wide { grid-column: 1 / -1; }
.bento-card {
  padding: 1.25rem;
  background: var(--surface);
  border: 1px solid var(--red-dim);
  border-radius: 8px;
  border-left: 3px solid var(--red-accent);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.bento-card:hover {
  border-color: rgba(255, 23, 68, 0.35);
  box-shadow: 0 0 24px rgba(255, 23, 68, 0.08);
}
.bento-tag {
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  color: var(--red-accent);
  margin-bottom: 0.5rem;
  display: block;
}
.bento-card h3 {
  font-family: 'Orbitron', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
  color: var(--white);
}
.bento-card p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--white-dim);
  line-height: 1.5;
}

/* ========== Timeline (how it works) ========== */
.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  position: relative;
}
.timeline-step {
  position: relative;
  padding: 1.25rem;
  background: var(--surface);
  border: 1px solid var(--red-dim);
  border-radius: 8px;
  text-align: center;
  transition: border-color 0.2s;
}
.timeline-step:hover { border-color: rgba(255, 23, 68, 0.4); }
.timeline-num {
  width: 2.25rem;
  height: 2.25rem;
  margin: 0 auto 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--red-accent);
  color: var(--bg);
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: 50%;
}
.timeline-body h3 {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.9rem;
  margin: 0 0 0.4rem;
  color: var(--white);
}
.timeline-body p {
  margin: 0;
  font-size: 0.8rem;
  color: var(--white-dim);
  line-height: 1.5;
}

/* ========== Pricing ========== */
.pricing-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}
.pricing-single {
  max-width: 360px;
  margin: 0 auto 1.5rem;
}
.pricing-card-main { text-align: center; }
.pricing-period {
  font-size: 0.6em;
  font-weight: 500;
  color: var(--white-dim);
  letter-spacing: 0.04em;
}
.pricing-card {
  padding: 1.5rem;
  background: var(--surface);
  border: 1px solid var(--red-dim);
  border-radius: 10px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.pricing-card:hover {
  border-color: rgba(255, 23, 68, 0.4);
  box-shadow: 0 0 28px rgba(255, 23, 68, 0.08);
}
.pricing-card-featured {
  border-color: var(--red-accent);
  box-shadow: 0 0 24px rgba(255, 23, 68, 0.15);
}
.pricing-badge {
  position: absolute;
  top: -0.5rem;
  right: 1rem;
  font-size: 0.6rem;
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--bg);
  background: var(--red-accent);
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
}
.pricing-name {
  font-family: 'Orbitron', sans-serif;
  font-size: 1rem;
  color: var(--red-accent);
  margin: 0 0 0.25rem;
}
.pricing-price {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--white);
  margin: 0 0 1rem;
}
.pricing-list {
  list-style: none;
  margin: 0 0 1.25rem;
  padding: 0;
  flex: 1;
}
.pricing-list li {
  font-size: 0.85rem;
  color: var(--white-dim);
  padding: 0.3rem 0;
  padding-left: 1.2rem;
  position: relative;
}
.pricing-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: bold;
}
.pricing-cta {
  display: block;
  text-align: center;
  padding: 0.6rem 1rem;
  font-size: 0.8rem;
  font-family: 'Orbitron', sans-serif;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--white);
  background: var(--red-accent);
  border: none;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}
.pricing-cta:hover {
  background: #e6133d;
  transform: translateY(-1px);
}
.pricing-note {
  font-size: 0.85rem;
  color: var(--grey);
  margin: 0;
  text-align: center;
}

/* ========== Download – terminal style ========== */
.block-download { padding-bottom: 4rem; }
.download-terminal {
  max-width: 520px;
  margin: 0 auto;
  background: var(--bg-terminal);
  border: 1px solid var(--red-dim);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.03);
}
.download-terminal-bar {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 0.75rem;
  background: rgba(0,0,0,0.4);
  border-bottom: 1px solid var(--red-dim);
}
.download-terminal-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.download-terminal-dot:nth-child(1) { background: #ff5f56; }
.download-terminal-dot:nth-child(2) { background: #ffbd2e; }
.download-terminal-dot:nth-child(3) { background: #27c93f; }
.download-terminal-title {
  margin-left: 0.5rem;
  font-size: 0.75rem;
  color: var(--grey);
}
.download-terminal-body {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  padding: 2rem;
  flex-wrap: wrap;
}
.download-main {
  position: relative;
  min-height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.download-trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.5rem;
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  color: var(--white);
  background: linear-gradient(135deg, var(--red-accent) 0%, var(--red-dark) 100%);
  border: 2px solid var(--red-accent);
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}
.download-trigger:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(255, 23, 68, 0.4);
}
.download-trigger-icon {
  width: 36px;
  height: 36px;
  border-radius: 6px;
  object-fit: cover;
}
.download-trigger.hidden,
.download-loading.hidden,
.download-done.hidden { display: none !important; }
.download-loading {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}
.download-progress {
  width: 200px;
  height: 6px;
  background: var(--surface);
  border-radius: 3px;
  overflow: hidden;
  border: 1px solid var(--red-dim);
}
.download-progress-fill {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--red-dark), var(--red-accent));
  border-radius: 2px;
  transition: width 2.2s ease-out;
}
.download-done {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}
.download-done p { margin: 0; color: var(--green); font-weight: 600; }
.download-link {
  padding: 0.6rem 1.25rem;
  font-family: 'Orbitron', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--white);
  background: var(--red-accent);
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.2s;
}
.download-link:hover { background: #e6133d; }
.download-qr {
  text-align: center;
}
.download-qr img {
  display: block;
  border-radius: 8px;
  border: 2px solid var(--red-dim);
  padding: 6px;
  background: #fff;
}
.download-qr span {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.75rem;
  color: var(--grey);
  letter-spacing: 0.05em;
}
.download-hint {
  margin: 1.25rem auto 0;
  font-size: 0.8rem;
  color: var(--grey);
  text-align: center;
  max-width: 400px;
}

/* ========== Buttons ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  font-size: 0.85rem;
  font-family: 'Orbitron', sans-serif;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-decoration: none;
  border-radius: 8px;
  border: 2px solid transparent;
  transition: all 0.2s ease;
}
.btn-primary {
  background: var(--red-accent);
  color: var(--white);
  border-color: var(--red-accent);
}
.btn-primary:hover {
  background: #e6133d;
  border-color: #e6133d;
  box-shadow: 0 4px 24px rgba(255, 23, 68, 0.4);
  transform: translateY(-1px);
}
.btn-outline {
  background: transparent;
  color: var(--white-dim);
  border-color: var(--red-dim);
}
.btn-outline:hover {
  color: var(--white);
  border-color: var(--cyan);
  background: rgba(0, 229, 255, 0.06);
}
.btn-lg { padding: 0.9rem 1.75rem; font-size: 0.9rem; }

/* ========== Footer ========== */
.site-footer {
  padding: 2rem 1.5rem;
  border-top: 1px solid var(--red-dim);
  background: rgba(0, 0, 0, 0.2);
}
.footer-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  font-size: 0.85rem;
  color: var(--grey);
}
.footer-brand {
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--white-dim);
}
.footer-sep { margin: 0 0.5rem; color: var(--red-dim); }
.footer-desc { color: var(--grey); }
.footer-link {
  color: var(--cyan);
  text-decoration: none;
}
.footer-link:hover { text-decoration: underline; }
.footer-copy {
  margin: 1rem 0 0;
  font-size: 0.8rem;
  opacity: 0.85;
}

/* ========== Responsive ========== */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-tagline { max-width: none; margin-left: auto; margin-right: auto; }
  .hero-buttons { justify-content: center; }
  .bento { grid-template-columns: 1fr; }
  .bento-item.bento-wide { grid-column: 1; }
  .timeline { grid-template-columns: 1fr 1fr; }
  .pricing-row { grid-template-columns: 1fr; max-width: 320px; margin-left: auto; margin-right: auto; }
}

@media (max-width: 640px) {
  .site-header { flex-direction: column; align-items: stretch; }
  .header-nav { justify-content: center; }
  .header-actions { justify-content: center; }
  .timeline { grid-template-columns: 1fr; }
  .download-terminal-body { flex-direction: column; }
}
