/* Odigos.one - Glassmorphism Dark Theme */

:root {
  --bg: #080a08;
  --bg-surface: rgba(16, 22, 18, 0.6);
  --glass-border: rgba(230, 255, 240, 0.07);
  --glass-hover: rgba(230, 255, 240, 0.12);
  --text: #f0f5f0;
  --text-muted: #909a92;
  --accent-1: #4ade80;
  --accent-2: #4ade80;
  --accent-3: #34d399;
  --glow-1: rgba(74, 222, 128, 0.4);
  --glow-2: rgba(74, 222, 128, 0.3);
  --glow-3: rgba(52, 211, 153, 0.3);
}

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

/* Focus states */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--accent-1);
  outline-offset: 2px;
}

/* Scrollbar */
::-webkit-scrollbar { width: 8px; height: 8px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: rgba(255, 255, 255, 0.1); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: rgba(255, 255, 255, 0.2); }
html { scrollbar-color: rgba(255, 255, 255, 0.1) var(--bg); }

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

body::after {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px 256px;
}

/* Ambient Background Mesh */
.ambient-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  overflow: hidden;
  background: radial-gradient(circle at 15% 50%, rgba(74, 222, 128, 0.08), transparent 40%),
              radial-gradient(circle at 85% 30%, rgba(74, 222, 128, 0.08), transparent 40%),
              radial-gradient(circle at 50% 80%, rgba(52, 211, 153, 0.06), transparent 50%);
  filter: blur(60px);
  animation: ambientShift 20s infinite alternate ease-in-out;
}

@keyframes ambientShift {
  0% { transform: scale(1); }
  100% { transform: scale(1.1) translate(-2%, 2%); }
}

.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 32px;
}

/* Typography */
h1, h2, h3, h4, .logo {
  font-family: 'Outfit', sans-serif;
}

h2 {
  font-size: clamp(32px, 5vw, 42px);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  background: linear-gradient(to right, var(--text), #9a9590);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-wrap: balance;
}

.section-subtitle {
  font-size: 18px;
  color: var(--text-muted);
  margin-bottom: 64px;
  max-width: 600px;
}

/* Nav */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  background: rgba(10, 10, 8, 0.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  padding: 20px 0;
  transition: all 0.3s ease;
}

nav.scrolled {
  border-bottom: 1px solid var(--glass-border);
  background: rgba(10, 10, 8, 0.85);
}

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

.logo {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 4px;
}

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

.logo-mark {
  flex-shrink: 0;
}

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

.nav-link {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-link:hover,
.nav-link.active {
  color: var(--text);
}

.nav-btn {
  padding: 8px 20px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--glass-border);
  color: white;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.2s;
}

.nav-btn:hover {
  background: var(--text);
  color: var(--bg);
}

/* Mobile Nav */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--text);
}

@media (max-width: 768px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    width: 280px; height: 100vh;
    background: rgba(10, 10, 8, 0.95);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    flex-direction: column;
    padding: 80px 32px 32px;
    gap: 24px;
    transition: right 0.3s ease;
    border-left: 1px solid var(--glass-border);
  }
  .nav-links.open { right: 0; }
  .nav-btn { text-align: center; }
}

/* Hero */
.hero {
  padding: 200px 0 120px;
  text-align: center;
  position: relative;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 99px;
  background: rgba(74, 222, 128, 0.1);
  border: 1px solid rgba(74, 222, 128, 0.3);
  color: #e8c88a;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 32px;
}

.hero h1 {
  font-size: clamp(48px, 8vw, 84px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: 32px;
  text-wrap: balance;
}

.hero h1 .gradient-text {
  background: linear-gradient(135deg, var(--accent-1), var(--accent-2));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.hero p {
  font-size: clamp(18px, 2vw, 22px);
  color: var(--text-muted);
  max-width: 760px;
  margin: 0 auto 56px;
  line-height: 1.6;
}

/* Buttons */
.cta-group {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 18px 36px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s ease;
}

.btn:hover::before { left: 100%; }

.btn-primary {
  background: linear-gradient(135deg, #4ade80, #34d399);
  color: white;
  box-shadow: 0 4px 24px rgba(74, 222, 128, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(74, 222, 128, 0.5);
}

.btn-secondary {
  background: var(--bg-surface);
  color: white;
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.2);
}

section {
  padding: 120px 0;
  position: relative;
}

/* Glass Cards */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
}

.glass-card {
  background: var(--bg-surface);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: 40px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.glass-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(800px circle at var(--mouse-x) var(--mouse-y), rgba(255,255,255,0.06), transparent 40%);
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}

.glass-card:hover::after { opacity: 1; }

.glass-card:hover {
  border-color: var(--glass-hover);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.card-agents { grid-column: span 7; }
.card-video { grid-column: span 5; }
.card-strategy { grid-column: span 5; }
.card-ux { grid-column: span 7; }

@media (max-width: 900px) {
  .card-agents, .card-video, .card-strategy, .card-ux { grid-column: span 12; }
}

.card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--glass-border);
}

.icon-agents { color: var(--accent-1); box-shadow: inset 0 0 20px rgba(74, 222, 128, 0.1); }
.icon-video { color: var(--accent-3); box-shadow: inset 0 0 20px rgba(52, 211, 153, 0.1); }

.glass-card h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 16px;
}

.glass-card p {
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.7;
}

/* Proof / Case Study Section */
.proof-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.proof-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  background: linear-gradient(135deg, rgba(255,255,255,0.02), rgba(255,255,255,0));
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: 48px;
  align-items: center;
}

@media (max-width: 800px) {
  .proof-item { grid-template-columns: 1fr; gap: 32px; padding: 32px; }
}

.proof-content h3 { font-size: 28px; margin-bottom: 16px; }
.proof-content p { color: var(--text-muted); margin-bottom: 32px; font-size: 17px; }

.proof-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.stat-box {
  background: rgba(0,0,0,0.3);
  border: 1px solid var(--glass-border);
  padding: 20px;
  border-radius: 16px;
}

.stat-val {
  font-family: 'JetBrains Mono', monospace;
  font-size: 32px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 4px;
}

.stat-val.gradient-1 {
  background: linear-gradient(to right, var(--accent-1), #e8c88a);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-val.gradient-2 {
  background: linear-gradient(to right, var(--accent-3), #e8c88a);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-label {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* About Section */
.about-wrapper {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 64px;
  align-items: center;
}

@media (max-width: 900px) {
  .about-wrapper { grid-template-columns: 1fr; }
}

.about-text {
  font-size: 18px;
  line-height: 1.8;
  color: var(--text-muted);
}

.about-text strong {
  color: var(--text);
  font-weight: 500;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.tag {
  padding: 8px 16px;
  border-radius: 8px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--glass-border);
  font-size: 14px;
  font-family: 'JetBrains Mono', monospace;
  color: #e4e4e7;
}

/* Contact Banner */
.contact-banner {
  background: linear-gradient(135deg, rgba(74, 222, 128, 0.15), rgba(52, 211, 153, 0.1));
  border: 1px solid rgba(74, 222, 128, 0.3);
  border-radius: 32px;
  padding: 80px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.contact-banner::before {
  content: '';
  position: absolute;
  top: -50%; left: -50%; width: 200%; height: 200%;
  background: radial-gradient(circle at center, rgba(74, 222, 128, 0.2), transparent 50%);
  z-index: 0;
  pointer-events: none;
}

.contact-banner > * { position: relative; z-index: 1; }
.contact-banner h2 { background: none; -webkit-text-fill-color: var(--text); color: var(--text); margin-bottom: 24px; }

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #a3b86c;
  background: rgba(163, 184, 108, 0.1);
  border: 1px solid rgba(163, 184, 108, 0.2);
  padding: 8px 16px;
  border-radius: 99px;
  margin-bottom: 32px;
  font-weight: 500;
}

.status-dot {
  width: 8px; height: 8px;
  background: #a3b86c;
  border-radius: 50%;
  box-shadow: 0 0 12px #a3b86c;
  animation: pulseGreen 2s infinite;
}

@keyframes pulseGreen {
  0% { box-shadow: 0 0 0 0 rgba(163, 184, 108, 0.4); }
  70% { box-shadow: 0 0 0 10px rgba(163, 184, 108, 0); }
  100% { box-shadow: 0 0 0 0 rgba(163, 184, 108, 0); }
}

/* Contact Form */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin: 180px auto 100px;
  max-width: 900px;
  align-items: center;
}

@media (max-width: 800px) {
  .contact-wrapper { grid-template-columns: 1fr; gap: 40px; margin-top: 140px; }
}

.contact-info h1 {
  font-size: clamp(40px, 5vw, 56px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 24px;
  padding-bottom: 0.1em;
  background: linear-gradient(135deg, var(--text), #9a9590);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.contact-info p {
  font-size: 18px;
  color: var(--text-muted);
  margin-bottom: 32px;
  line-height: 1.6;
}

.direct-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 24px;
  border-radius: 12px;
  background: rgba(74, 222, 128, 0.1);
  border: 1px solid rgba(74, 222, 128, 0.3);
  color: #e8c88a;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.2s;
}

.direct-link:hover {
  background: rgba(74, 222, 128, 0.2);
  transform: translateY(-2px);
}

.form-card {
  background: var(--bg-surface);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: 48px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.form-group { margin-bottom: 24px; }

.form-group label {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #e4e4e7;
}

.form-control {
  width: 100%;
  background: rgba(0,0,0,0.3);
  border: 1px solid var(--glass-border);
  color: #fff;
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  padding: 16px;
  border-radius: 12px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-control:focus {
  border-color: var(--accent-1);
  box-shadow: 0 0 0 2px rgba(74, 222, 128, 0.2);
}

textarea.form-control { resize: vertical; min-height: 120px; }

select.form-control {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 16px;
  padding-right: 40px;
}

.btn-submit {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  background: linear-gradient(135deg, #4ade80, #34d399);
  color: white;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 4px 20px rgba(74, 222, 128, 0.3);
  font-family: 'Outfit', sans-serif;
  margin-top: 8px;
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(74, 222, 128, 0.5);
}

/* ROI Calculator */
.calc-box {
  background: var(--bg-surface);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: 48px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  margin-bottom: 120px;
}

.row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

@media (max-width: 768px) {
  .row { grid-template-columns: 1fr; gap: 32px; }
}

.input-group { margin-bottom: 32px; }

.input-group label {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #fff;
}

.input-group p { font-size: 13px; color: var(--text-muted); margin-bottom: 12px; }

.slider-container { position: relative; width: 100%; margin: 24px 0 16px; }

input[type=range] {
  -webkit-appearance: none;
  width: 100%;
  background: transparent;
  height: 6px;
  outline: none;
  border-radius: 4px;
}

input[type=range]::-webkit-slider-runnable-track {
  width: 100%;
  height: 6px;
  background: rgba(255,255,255,0.1);
  border-radius: 4px;
}

input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  height: 24px;
  width: 24px;
  border-radius: 50%;
  background: var(--accent-2);
  margin-top: -9px;
  cursor: pointer;
  border: 3px solid #fff;
  box-shadow: 0 0 15px var(--accent-2);
  transition: transform 0.1s;
}

input[type=range]::-webkit-slider-thumb:hover { transform: scale(1.15); }

.val-display {
  font-family: 'JetBrains Mono', monospace;
  font-size: 20px;
  font-weight: 600;
  color: var(--accent-2);
  background: rgba(74, 222, 128, 0.1);
  padding: 10px 16px;
  border-radius: 8px;
  border: 1px solid rgba(74, 222, 128, 0.3);
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
}

.val-display span { font-size: 24px; }

.results-panel {
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0));
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.result-block { margin-bottom: 24px; }
.result-block:last-child { margin-bottom: 0; padding-top: 24px; border-top: 1px solid var(--glass-border); }

.result-label {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.result-value {
  font-family: 'JetBrains Mono', monospace;
  font-size: 40px;
  font-weight: 500;
  color: #fff;
}

.result-value.highlight {
  background: linear-gradient(135deg, var(--accent-2), var(--accent-1));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 48px;
  font-weight: 700;
}

.result-subtext { font-size: 14px; color: var(--text-muted); margin-top: 4px; }

/* Blog */
.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  padding-bottom: 120px;
}

.post-card {
  display: block;
  background: var(--bg-surface);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: 48px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.post-card:hover {
  border-color: rgba(74, 222, 128, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.post-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.tag-sm {
  padding: 4px 12px;
  border-radius: 6px;
  background: rgba(74, 222, 128, 0.15);
  border: 1px solid rgba(74, 222, 128, 0.3);
  font-size: 13px;
  font-family: 'JetBrains Mono', monospace;
  color: #e8c88a;
}

.date {
  color: var(--text-muted);
  font-size: 14px;
  font-family: 'JetBrains Mono', monospace;
}

.post-card h2 {
  font-size: 32px;
  color: #fff;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
  background: none;
  -webkit-text-fill-color: #fff;
}

.post-card p {
  color: var(--text-muted);
  font-size: 18px;
  line-height: 1.6;
}

/* Blog Post Article */
.article-header {
  padding: 180px 0 60px;
  text-align: left;
  border-bottom: 1px solid var(--glass-border);
  margin-bottom: 60px;
}

.article-content {
  font-size: 19px;
  line-height: 1.8;
  color: var(--text-muted);
  padding-bottom: 120px;
}

.article-content p { margin-bottom: 24px; }
.article-content strong { color: #fff; font-weight: 500; }
.article-content h2 {
  font-size: 32px;
  margin-top: 64px;
  margin-bottom: 24px;
  color: #fff;
  background: none;
  -webkit-text-fill-color: #fff;
}

.code-block {
  background: rgba(0,0,0,0.4);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 24px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 15px;
  color: #e8c88a;
  margin: 32px 0;
  overflow-x: auto;
}

/* Case Study */
.case-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 64px;
  margin-bottom: 120px;
}

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

.case-content { font-size: 18px; line-height: 1.8; color: var(--text-muted); }
.case-content h3 { font-size: 28px; color: #fff; margin: 48px 0 16px; font-weight: 600; letter-spacing: -0.01em; }
.case-content p { margin-bottom: 24px; }
.case-content strong { color: #fff; font-weight: 500; }

.sidebar { position: sticky; top: 120px; display: flex; flex-direction: column; gap: 24px; }

.stat-card {
  background: var(--bg-surface);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 32px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.stat-card .stat-val {
  font-family: 'JetBrains Mono', monospace;
  font-size: 42px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 8px;
  background: linear-gradient(to right, var(--accent-1), #e8c88a);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.tech-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; }

/* Content Grid (About page) */
.content-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
  padding-bottom: 120px;
}

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

.sticky-col { position: sticky; top: 120px; }

.article-text { font-size: 18px; line-height: 1.8; color: var(--text-muted); }
.article-text p { margin-bottom: 24px; }
.article-text strong { color: var(--text); font-weight: 500; }

.team-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, #4ade80, #34d399);
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 24px;
  box-shadow: 0 8px 32px rgba(74, 222, 128, 0.3);
}

/* Legal Pages */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 120px 32px 60px;
}

.legal-content h1 {
  font-size: clamp(32px, 5vw, 48px);
  letter-spacing: -0.02em;
  padding-bottom: 0.1em;
  background: linear-gradient(135deg, var(--text), #9a9590);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 24px;
}

.legal-content h2 {
  font-size: 24px;
  margin-top: 48px;
  border-bottom: 1px solid var(--glass-border);
  padding-bottom: 12px;
  color: #fff;
  background: none;
  -webkit-text-fill-color: #fff;
}

.legal-content p { color: var(--text-muted); margin-bottom: 16px; font-size: 16px; }
.legal-content ul { color: var(--text-muted); padding-left: 20px; margin-bottom: 16px; }
.legal-content li { margin-bottom: 8px; }

/* CTA Box */
.cta-box {
  text-align: center;
  border-radius: 24px;
  padding: 56px 40px;
  background: linear-gradient(135deg, rgba(74, 222, 128, 0.15), rgba(52, 211, 153, 0.05));
  border: 1px solid rgba(74, 222, 128, 0.3);
  position: relative;
  margin-bottom: 80px;
}

/* Currency Select */
select.currency-select {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--glass-border);
  color: #fff;
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  padding: 6px 12px;
  border-radius: 6px;
  outline: none;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 8px center;
  background-size: 14px;
  padding-right: 32px;
  transition: border-color 0.2s;
}

select.currency-select:hover,
select.currency-select:focus {
  border-color: rgba(255, 255, 255, 0.2);
}

select.currency-select option {
  background: var(--bg);
  color: #fff;
}

/* Hosting Showcase */
.hosting-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

@media (max-width: 900px) {
  .hosting-showcase { grid-template-columns: 1fr; gap: 48px; }
  .diff-row { grid-template-columns: 1fr !important; padding-block: 40px !important; }
  .diff-row > div { order: 0 !important; }
}

.hosting-visual {
  position: relative;
}

.subdomain-demo {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--glass-border);
  background: rgba(0, 0, 0, 0.4);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.browser-chrome {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid var(--glass-border);
}

.browser-dots {
  display: flex;
  gap: 6px;
}

.browser-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
}

.browser-url {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  padding: 8px 14px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  color: var(--text-muted);
}

.url-lock {
  color: #a3b86c;
  display: flex;
  align-items: center;
}

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

.browser-body {
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.agent-preview-line {
  height: 10px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.04);
  width: 100%;
}

.agent-preview-line.short { width: 70%; }
.agent-preview-line.shorter { width: 45%; }

.agent-preview-bubble {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(74, 222, 128, 0.12), rgba(52, 211, 153, 0.08));
  border: 1px solid rgba(74, 222, 128, 0.2);
  color: #e8c88a;
  font-size: 14px;
  font-weight: 500;
  margin: 8px 0;
}

.agent-preview-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 12px #4ade80;
  animation: pulseAgent 1.5s infinite;
}

@keyframes pulseAgent {
  0% { opacity: 1; }
  50% { opacity: 0.4; }
  100% { opacity: 1; }
}

.hosting-usecases {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.usecase-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--glass-border);
  transition: all 0.2s;
}

.usecase-item:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--glass-hover);
}

.usecase-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.usecase-item strong {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 4px;
}

.usecase-item span {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Hosting Tiers - Stepped Timeline */
.tier-steps {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
  padding-left: 32px;
}

.tier-steps::before {
  content: '';
  position: absolute;
  left: 7px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: linear-gradient(180deg, rgba(74, 222, 128, 0.15), rgba(74, 222, 128, 0.4), rgba(52, 211, 153, 0.15));
}

.tier-step {
  position: relative;
  padding: 24px 0;
}

.tier-step + .tier-step {
  border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.tier-step-marker {
  position: absolute;
  left: -32px;
  top: 28px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--bg);
  border: 2px solid rgba(74, 222, 128, 0.3);
  transition: all 0.3s;
}

.tier-step:hover .tier-step-marker {
  border-color: var(--accent-1);
  box-shadow: 0 0 12px rgba(74, 222, 128, 0.3);
}

.tier-step-featured .tier-step-marker {
  border-color: var(--accent-1);
  background: rgba(74, 222, 128, 0.15);
  box-shadow: 0 0 12px rgba(74, 222, 128, 0.2);
}

.tier-step-content {
  max-width: 560px;
}

.tier-step-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent-1);
  margin-bottom: 6px;
}

@media (max-width: 600px) {
  .tier-steps { padding-left: 24px; }
  .tier-step-marker { left: -24px; width: 12px; height: 12px; }
  .tier-steps::before { left: 5px; }
}

.run-it-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

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

/* Chat Widget */
.chat-widget {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 1000;
}

.chat-toggle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #4ade80, #34d399);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 24px rgba(74, 222, 128, 0.4);
  transition: all 0.3s;
}

.chat-toggle:hover {
  transform: scale(1.08);
  box-shadow: 0 8px 32px rgba(74, 222, 128, 0.6);
}

.chat-panel {
  display: none;
  position: absolute;
  bottom: 72px;
  right: 0;
  width: 380px;
  max-height: 520px;
  background: rgba(14, 12, 10, 0.95);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  overflow: hidden;
  flex-direction: column;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}

.chat-panel.open {
  display: flex;
}

@media (max-width: 480px) {
  .chat-panel {
    width: calc(100vw - 32px);
    right: -8px;
    max-height: 70vh;
  }
}

.chat-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid var(--glass-border);
  background: rgba(255, 255, 255, 0.02);
}

.chat-header-info {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  font-weight: 600;
}

.chat-agent-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #a3b86c;
  box-shadow: 0 0 8px #a3b86c;
  animation: pulseGreen 2s infinite;
}

.chat-close {
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  padding: 4px;
  transition: color 0.2s;
}

.chat-close:hover { color: var(--text); }

.chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 280px;
  max-height: 360px;
}

.chat-msg {
  max-width: 85%;
  font-size: 14px;
  line-height: 1.6;
}

.chat-msg p {
  padding: 12px 16px;
  border-radius: 16px;
  margin: 0;
}

.chat-msg-agent {
  align-self: flex-start;
}

.chat-msg-agent p {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--glass-border);
  color: var(--text-muted);
  border-bottom-left-radius: 4px;
}

.chat-msg-user {
  align-self: flex-end;
}

.chat-msg-user p {
  background: linear-gradient(135deg, rgba(74, 222, 128, 0.25), rgba(52, 211, 153, 0.15));
  border: 1px solid rgba(74, 222, 128, 0.3);
  color: #fff;
  border-bottom-right-radius: 4px;
}

.chat-msg-typing p {
  color: var(--text-muted);
  font-style: italic;
}

.chat-input-area {
  display: flex;
  gap: 8px;
  padding: 16px;
  border-top: 1px solid var(--glass-border);
  background: rgba(255, 255, 255, 0.02);
}

.chat-input {
  flex: 1;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 12px 16px;
  color: #fff;
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s;
}

.chat-input:focus {
  border-color: var(--accent-1);
}

.chat-input::placeholder {
  color: #52525b;
}

.chat-send {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, #4ade80, #34d399);
  border: none;
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  flex-shrink: 0;
}

.chat-send:hover {
  transform: scale(1.05);
}

.chat-send:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

/* Footer */
footer {
  padding: 40px 0;
  text-align: center;
  color: var(--text-muted);
  font-size: 14px;
}

footer a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
  margin: 0 8px;
}

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

/* Animations */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.fade-up {
  animation: fadeUp 0.8s ease backwards;
}

.fade-up-1 { animation-delay: 0.1s; }
.fade-up-2 { animation-delay: 0.2s; }
.fade-up-3 { animation-delay: 0.3s; }
.fade-up-4 { animation-delay: 0.4s; }

/* ============================================
   Page Component Classes
   ============================================ */

/* Hero variants */
.hero--compact { padding-bottom: 80px; }

.hero-title-gradient {
  font-size: clamp(48px, 6vw, 72px);
  background: linear-gradient(135deg, var(--text), #9a9590);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-wrap: balance;
}

.hero-tagline {
  font-size: 20px;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.hero-description {
  max-width: 640px;
  margin-inline: auto;
}

.hero-description--narrow {
  max-width: 620px;
  margin-inline: auto;
}

/* Section spacing */
.section--pb80 { padding-bottom: 80px; }
.section--pb80-block { padding-block: 80px; }

/* Content width constraints */
.content-narrow { max-width: 720px; }
.content-mid { max-width: 620px; }
.content-tight { max-width: 560px; }
.content-wide { max-width: 900px; }

/* Body text */
.body-text {
  color: var(--text-muted);
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 24px;
}

.body-text:last-child { margin-bottom: 0; }

.body-text--sm {
  color: var(--text-muted);
  font-size: 17px;
  line-height: 1.75;
}

.body-text--lg {
  font-size: 19px;
  line-height: 1.75;
}

.body-text--muted {
  color: var(--text-muted);
}

/* Section headings */
.section-heading {
  font-size: clamp(28px, 4vw, 36px);
  margin-bottom: 32px;
}

.section-heading--sm {
  font-size: clamp(28px, 3.5vw, 36px);
  margin-bottom: 16px;
}

.section-heading--lg {
  font-size: clamp(32px, 4vw, 48px);
  margin-bottom: 48px;
}

/* Diff rows -- add grid styles to existing .diff-row */
.diff-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
  padding-block: 64px;
}

.diff-row--bordered { border-bottom: 1px solid var(--glass-border); }
.diff-row--compact { padding-block: 48px; }

/* Diff block headings */
.diff-block-heading {
  font-size: clamp(24px, 3vw, 32px);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.diff-block-heading--sm {
  font-size: clamp(20px, 2.5vw, 24px);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
  color: #fff;
}

/* Image wrappers and infographic images */
.image-center {
  display: flex;
  justify-content: center;
}

.infographic {
  width: 100%;
  max-width: 560px;
  height: auto;
  border-radius: 12px;
}

.infographic--wide {
  width: 100%;
  max-width: 900px;
  height: auto;
  border-radius: 12px;
}

/* Alternating layout order */
.order-first { order: 1; }
.order-last { order: 2; }

/* Contact/CTA description */
.cta-description {
  color: var(--text-muted);
  font-size: 18px;
  margin-bottom: 40px;
  max-width: 600px;
  margin-inline: auto;
}

.cta-description--sm {
  color: var(--text-muted);
  font-size: 17px;
  margin-bottom: 12px;
  max-width: 560px;
  margin-inline: auto;
}

.cta-description--xs {
  color: var(--text-muted);
  font-size: 15px;
  margin-bottom: 12px;
  max-width: 560px;
  margin-inline: auto;
}

.cta-description--compact {
  color: var(--text-muted);
  font-size: 18px;
  margin-bottom: 32px;
  max-width: 480px;
  margin-inline: auto;
}

/* Waitlist form */
.waitlist-form {
  display: flex;
  gap: 12px;
  max-width: 440px;
  margin-inline: auto;
  margin-bottom: 16px;
}

.waitlist-form--tight {
  display: flex;
  gap: 12px;
  max-width: 440px;
  margin-inline: auto;
  margin-bottom: 24px;
}

.waitlist-input { flex: 1; }

.waitlist-submit {
  width: auto;
  padding: 16px 28px;
  margin-top: 0;
}

/* Hidden message divs (for JS to show) */
.form-message {
  text-align: center;
  font-size: 14px;
  display: none;
}

/* Subtle footer-style links */
.subtle-link {
  color: var(--text-muted);
  font-size: 14px;
  text-decoration: none;
}

.subtle-links {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 8px;
}

.subtle-links--tight {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Section text-center */
.text-center { text-align: center; }

/* Section subtitle with auto margins */
.section-subtitle--centered {
  max-width: 620px;
  margin-inline: auto;
}

/* CTA button large */
.btn--lg {
  padding: 20px 48px;
  font-size: 18px;
}

/* GitHub link */
.github-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #9a9590;
  text-decoration: none;
  font-size: 16px;
  transition: color 0.2s;
}

/* Use-case column layout */
.usecase-column {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Accent callout text */
.callout-accent {
  color: var(--accent-3);
  font-size: 17px;
  margin-top: 24px;
  font-weight: 500;
}

/* Lost-asset section grid */
.split-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}

@media (max-width: 900px) {
  .split-content { grid-template-columns: 1fr; }
}

/* ---- Pricing-specific ---- */

/* Pricing tier grid */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

/* Tier card layout */
.tier-card {
  display: flex;
  flex-direction: column;
  padding: 40px 32px;
}

/* Featured tier gradient */
.tier-card--featured {
  background: linear-gradient(135deg, rgba(74, 222, 128, 0.08), rgba(52, 211, 153, 0.05));
  border-color: rgba(74, 222, 128, 0.25);
}

/* Tier label */
.tier-label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #9a9590;
  margin-bottom: 12px;
}

.tier-label--accent { color: #4ade80; }

/* Tier price */
.tier-price {
  font-size: 48px;
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 16px;
}

.tier-price-period {
  font-size: 18px;
  font-weight: 400;
  color: #9a9590;
}

/* Tier body text */
.tier-body {
  color: #9a9590;
  line-height: 1.7;
  flex: 1;
}

/* Tier action area */
.tier-action { margin-top: 24px; }

/* Tier form (managed waitlist) */
.tier-form {
  display: flex;
  gap: 8px;
  margin-top: 24px;
}

.tier-form-input {
  flex: 1;
  padding: 14px 16px;
  font-size: 15px;
}

.tier-form-submit {
  white-space: nowrap;
  padding: 14px 20px;
}

/* Tier message */
.tier-message {
  font-size: 13px;
  text-align: center;
  margin-top: 10px;
  display: none;
}

/* GitHub button inline */
.btn--github {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  justify-content: center;
}

/* FAQ section */
.faq-section { margin-top: 120px; }

.faq-item { margin-bottom: 36px; }

.faq-heading {
  color: #fff;
  margin-bottom: 8px;
}

.faq-text {
  color: #9a9590;
  line-height: 1.7;
}

/* Feature list */
.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 48px;
}

.feature-item {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.feature-bullet {
  color: #4ade80;
  font-size: 14px;
  flex-shrink: 0;
}

.feature-label {
  color: #9a9590;
  font-size: 16px;
}

/* Bottom CTA spacing */
.cta-bottom { margin-top: 80px; }

.cta-bottom-text {
  color: var(--text-muted);
  margin-bottom: 24px;
}

/* Hero two-column layout */
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  align-items: center;
}
@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* Landing activity feed */
.hero-feed {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 28px 32px;
  backdrop-filter: blur(12px);
  font-family: 'JetBrains Mono', 'SF Mono', Menlo, monospace;
}
.hero-feed-header {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--glass-border);
}
.hero-feed-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 8px #4ade80;
  animation: hero-feed-pulse 2s infinite;
}
@keyframes hero-feed-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.hero-feed-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.hero-feed-item {
  display: grid;
  grid-template-columns: 56px 22px 1fr;
  gap: 10px;
  align-items: start;
  font-size: 13px;
  line-height: 1.5;
  opacity: 0;
  animation: hero-feed-cycle 12s infinite;
}
.hero-feed-item:nth-child(1) { animation-delay: 0s; }
.hero-feed-item:nth-child(2) { animation-delay: 2s; }
.hero-feed-item:nth-child(3) { animation-delay: 4s; }
.hero-feed-item:nth-child(4) { animation-delay: 6s; }
.hero-feed-item:nth-child(5) { animation-delay: 8s; }
@keyframes hero-feed-cycle {
  0% { opacity: 0; transform: translateY(8px); }
  6%, 78% { opacity: 1; transform: translateY(0); }
  85%, 100% { opacity: 0; transform: translateY(-4px); }
}
.hero-feed-time {
  color: var(--text-muted);
  opacity: 0.7;
}
.hero-feed-check {
  color: #4ade80;
  font-weight: 700;
}
.hero-feed-task {
  min-width: 0;
  color: var(--text);
  word-wrap: break-word;
}

/* How-It-Works architecture diagram */
.hero-arch {
  position: relative;
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
}
.hero-arch svg {
  width: 100%;
  height: auto;
  display: block;
}
.hero-arch-pulse {
  animation: hero-arch-pulse 2.4s ease-in-out infinite;
}
@keyframes hero-arch-pulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}
.hero-arch-pulse-2 { animation-delay: 0.4s; }
.hero-arch-pulse-3 { animation-delay: 0.8s; }
.hero-arch-pulse-4 { animation-delay: 1.2s; }

/* Accessibility: respect prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
  .hero-feed-item,
  .hero-feed-dot,
  .hero-arch-pulse,
  .reveal,
  .fade-up,
  .fade-up-2,
  .fade-up-3,
  .fade-up-4 {
    animation: none !important;
    transition: none !important;
  }
  .hero-feed-item {
    opacity: 1 !important;
    transform: none !important;
  }
  .hero-arch-pulse {
    opacity: 1 !important;
  }
}
