/* =========================================
   DeployBar — deploybar.app
   Open box, upward arrow. Dark navy, cyan, amber glow.
   ========================================= */

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,wght@0,400;0,500;0,600;0,700&family=Space+Mono:wght@400;700&display=swap');

:root {
  --bg-deep: #060b16;
  --bg: #0a1020;
  --bg-surface: #10192e;
  --bg-elevated: #172240;
  --bg-glass: rgba(16, 25, 46, 0.85);
  --border: #192845;
  --border-light: #243756;

  --text-primary: #e4e9f1;
  --text-secondary: #8694ad;
  --text-muted: #4a5c78;

  --accent: #28c4de;
  --accent-dim: rgba(40, 196, 222, 0.10);
  --accent-glow: rgba(40, 196, 222, 0.22);
  --warm: #e09530;
  --warm-dim: rgba(224, 149, 48, 0.10);
  --warm-glow: rgba(224, 149, 48, 0.18);
  --success: #3dd68c;
  --success-dim: rgba(61, 214, 140, 0.15);
  --failure: #ef5f5f;
  --failure-dim: rgba(239, 95, 95, 0.15);

  --font-display: 'DM Sans', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --font-mono: 'Space Mono', monospace;

  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 20px;

  --shadow-dropdown: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.05);
  --shadow-card: 0 2px 20px rgba(0, 0, 0, 0.3);
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--text-primary);
  background-color: var(--bg-deep);
  line-height: 1.6;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.012) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.012) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
  z-index: 0;
}

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

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

img { max-width: 100%; }

/* --- Nav --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 2rem;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(6, 11, 22, 0.82);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.nav-logo:hover { color: var(--text-primary); }

.nav-logo svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

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

/* --- Layout --- */
.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 1;
}

section { padding: 6rem 0; }

.section-label {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.section-label::before {
  content: '';
  display: block;
  width: 12px;
  height: 1px;
  background: var(--accent);
}

h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2.5rem;
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.3;
  margin-bottom: 0.5rem;
}

/* --- Hero --- */
.hero {
  padding-top: 9rem;
  padding-bottom: 4rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, var(--accent-glow), transparent 70%);
  top: -80px;
  right: -80px;
  filter: blur(100px);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--warm-glow), transparent 70%);
  bottom: -60px;
  left: -120px;
  filter: blur(90px);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-billie {
  display: block;
  margin: 0 auto 2rem;
  border-radius: 24px;
  filter: drop-shadow(0 0 40px var(--accent-glow));
  animation: fadeInDown 0.5s ease-out both;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 0.7s ease-out 0.3s both;
}

.hero-cta-secondary {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 1rem;
  color: var(--text-secondary);
  padding: 0.85rem 1.5rem;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  transition: border-color 0.2s, color 0.2s;
}

.hero-cta-secondary:hover {
  color: var(--text-primary);
  border-color: var(--text-muted);
}

.app-icon {
  width: 120px;
  height: 120px;
  border-radius: 27px;
  filter:
    drop-shadow(0 0 40px var(--accent-glow))
    drop-shadow(0 0 80px var(--warm-glow));
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-dim);
  border: 1px solid rgba(40, 196, 222, 0.18);
  padding: 0.4rem 1rem;
  border-radius: 100px;
  margin-bottom: 2rem;
  animation: fadeInDown 0.6s ease-out 0.05s both;
}

.hero-badge .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s ease-in-out infinite;
}

.hero h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 3.8rem;
  line-height: 1.08;
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.7s ease-out 0.1s both;
}

.hero p {
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 500px;
  margin: 0 auto 2.5rem;
  animation: fadeInUp 0.7s ease-out 0.2s both;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 1rem;
  color: var(--bg-deep);
  background: var(--text-primary);
  padding: 0.85rem 2rem;
  border-radius: var(--radius-md);
  transition: transform 0.2s, box-shadow 0.2s;
  animation: fadeInUp 0.7s ease-out 0.3s both;
}

.hero-cta:hover {
  color: var(--bg-deep);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(228, 233, 241, 0.15);
}

.hero-cta .apple-logo {
  font-size: 1.2rem;
  line-height: 1;
}

/* --- Demo Area --- */
.demo-area {
  max-width: 420px;
  margin: 3rem auto 0;
  position: relative;
  z-index: 2;
}

.demo-col {
  position: relative;
}

.reveal-intro {
  text-align: center;
  font-size: 1.1rem;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 1.5rem;
}

/* Notification cascade */
.notif-cascade {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 1rem;
}

.notif-card {
  background: rgba(42, 42, 46, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 12px 14px;
  font-family: -apple-system, BlinkMacSystemFont, sans-serif;
  max-width: 100%;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  opacity: 0;
  transform: translateX(80px);
  animation: notifSlideIn 0.4s ease-out forwards, notifShake 0.08s ease-in-out 0.4s 2;
  animation-delay: var(--delay), calc(var(--delay) + 0.4s);
}

.notif-cascade.clearing .notif-card {
  animation: notifSlideOut 0.5s ease-in forwards;
}

.notif-cascade.clearing .notif-card:nth-child(1) { animation-delay: 0s; }
.notif-cascade.clearing .notif-card:nth-child(2) { animation-delay: 0.05s; }
.notif-cascade.clearing .notif-card:nth-child(3) { animation-delay: 0.10s; }
.notif-cascade.clearing .notif-card:nth-child(4) { animation-delay: 0.15s; }
.notif-cascade.clearing .notif-card:nth-child(5) { animation-delay: 0.20s; }
.notif-cascade.clearing .notif-card:nth-child(6) { animation-delay: 0.25s; }
.notif-cascade.clearing .notif-card:nth-child(7) { animation-delay: 0.30s; }
.notif-cascade.clearing .notif-card:nth-child(8) { animation-delay: 0.35s; }

.notif-app {
  font-size: 11px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 3px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.notif-icon { font-size: 12px; }

.notif-title {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2px;
}

.notif-body {
  font-size: 12px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.4;
}

.notif-slack { border-left: 3px solid #e01e5a; }
.notif-email { border-left: 3px solid #4a90d9; }
.notif-gh { border-left: 3px solid var(--failure); }
.notif-twitter { border-left: 3px solid #1da1f2; }
.notif-jira { border-left: 3px solid #ff5630; }
.notif-cal { border-left: 3px solid #7c5cfc; }

/* DeployBar reveal (hidden until cascade clears) */
.deploybar-reveal {
  opacity: 0;
  transform: translateY(20px) scale(0.97);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.deploybar-reveal.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Toggle buttons */
.hero-toggle {
  display: none;
  background: none;
  border: none;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-muted);
  cursor: pointer;
  padding: 0.6rem 0;
  margin-top: 0.5rem;
  margin-left: auto;
  transition: color 0.2s;
  text-align: right;
  width: 100%;
}

.hero-toggle:hover {
  color: var(--accent);
}

#show-nightmare { display: none; }
#fix-nightmare { display: none; }

@keyframes notifSlideIn {
  from { opacity: 0; transform: translateX(80px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes notifShake {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(-3px); }
}

@keyframes notifSlideOut {
  from { opacity: 1; transform: translateX(0); }
  to { opacity: 0; transform: translateX(120px); }
}

.menubar-mock {
  border-radius: 8px 8px 0 0;
  overflow: hidden;
  line-height: 0;
  position: relative;
  display: flex;
  align-items: center;
}

.menubar-deploybar-icon {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  color: var(--failure);
  filter: drop-shadow(0 0 4px rgba(239, 95, 95, 0.4));
  line-height: 0;
}

.menubar-deploybar-icon svg {
  width: 14px;
  height: 14px;
}

.menubar-screenshot {
  width: 100%;
  height: auto;
  display: block;
}

.dropdown-mock {
  background: rgba(36, 36, 40, 0.97);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  box-shadow: var(--shadow-dropdown);
  overflow: hidden;
  font-family: -apple-system, BlinkMacSystemFont, sans-serif;
}

.dropdown-section { padding: 8px 0; }

.dropdown-section + .dropdown-section {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.dropdown-section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4px 14px 6px;
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.45);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.dropdown-count {
  background: rgba(255, 255, 255, 0.08);
  padding: 1px 7px;
  border-radius: 10px;
  font-size: 10px;
  font-weight: 500;
}

.dropdown-count.red {
  background: var(--failure-dim);
  color: var(--failure);
}

.deploy-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 7px 14px;
  transition: background 0.15s;
  cursor: default;
}

.deploy-row:hover { background: rgba(255, 255, 255, 0.04); }

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.status-dot.red {
  background: var(--failure);
  box-shadow: 0 0 8px rgba(239, 95, 95, 0.5);
}

.status-dot.amber {
  background: var(--warm);
  box-shadow: 0 0 8px var(--warm-glow);
}

.status-dot.green {
  background: var(--success);
  box-shadow: 0 0 6px rgba(61, 214, 140, 0.3);
}

.status-dot.pulse { animation: pulse 2s ease-in-out infinite; }

.deploy-row-content { flex: 1; min-width: 0; }

.deploy-repo {
  font-size: 12.5px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  gap: 6px;
}

.deploy-detail {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.source-badge {
  font-size: 9px;
  font-weight: 600;
  padding: 1px 5px;
  border-radius: 4px;
  letter-spacing: 0.02em;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.5);
}

.deploy-time {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.3);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.deploy-ack {
  width: 20px;
  height: 20px;
  border-radius: 4px;
  border: none;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.4);
  font-size: 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s, color 0.15s;
  flex-shrink: 0;
}

.deploy-ack:hover {
  background: var(--failure-dim);
  color: var(--failure);
}

.billie-roast {
  font-size: 10.5px;
  font-style: italic;
  color: var(--accent);
  padding: 2px 14px 4px 32px;
  line-height: 1.3;
  opacity: 0.7;
}

.billie-roast {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
  padding: 2px 14px 8px 34px;
  font-style: italic;
  display: flex;
  align-items: center;
  gap: 6px;
}

.billie-roast img {
  flex-shrink: 0;
}

.dropdown-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 6px 14px;
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.35);
}

/* --- Steps --- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.step-card {
  padding: 2rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--bg-surface);
  transition: border-color 0.3s, box-shadow 0.3s;
}

.step-card:hover {
  border-color: var(--border-light);
  box-shadow: var(--shadow-card);
}

.step-num {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--accent);
  display: inline-block;
  margin-bottom: 1.25rem;
  background: var(--accent-dim);
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-sm);
}

.step-card p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
  font-weight: 400;
}

/* --- Features --- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.feature-card {
  padding: 1.75rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--bg-surface);
  transition: border-color 0.3s, transform 0.3s;
}

.feature-card:hover {
  border-color: var(--border-light);
  transform: translateY(-2px);
}

.feature-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  margin-bottom: 1rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
}

.feature-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  font-weight: 400;
  line-height: 1.6;
}

/* --- Integrations --- */
.integrations-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.integration-card {
  padding: 2.5rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--bg-surface);
  text-align: center;
}

.integration-icon {
  font-size: 2.5rem;
  margin-bottom: 1.25rem;
  display: block;
  opacity: 0.8;
}

.integration-card h3 { margin-bottom: 0.75rem; }

.integration-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  font-weight: 400;
  line-height: 1.6;
}

/* --- Pricing --- */
.pricing-card {
  max-width: 420px;
  margin: 3rem auto 0;
  padding: 3rem;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  background: var(--bg-surface);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.pricing-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--accent-dim), transparent 50%, var(--warm-dim));
  pointer-events: none;
}

.pricing-card > * { position: relative; }

.price {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 3.5rem;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.price-sub {
  font-size: 0.95rem;
  color: var(--text-secondary);
  font-weight: 400;
  margin-bottom: 2rem;
}

.price-features {
  list-style: none;
  text-align: left;
  margin-bottom: 2rem;
}

.price-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
  padding: 0.4rem 0;
  font-weight: 400;
}

.price-features li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--success);
  flex-shrink: 0;
}

.pricing-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--bg-deep);
  background: var(--text-primary);
  padding: 0.8rem 2rem;
  border-radius: var(--radius-md);
  transition: transform 0.2s, box-shadow 0.2s;
}

.pricing-cta:hover {
  color: var(--bg-deep);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(228, 233, 241, 0.12);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.pricing-grid .pricing-card {
  max-width: none;
  margin: 0;
}

.pricing-card-pro {
  border-color: var(--accent);
  box-shadow: 0 0 30px var(--accent-dim);
}

.price-label {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.5rem;
  position: relative;
}

.price-period {
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--text-secondary);
}

.pricing-cta-pro {
  background: var(--accent);
  color: var(--bg-deep);
}

.pricing-cta-pro:hover {
  color: var(--bg-deep);
  box-shadow: 0 8px 24px var(--accent-glow);
}

/* --- Footer --- */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 3rem 0;
}

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

.footer-left {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-left a {
  color: var(--text-muted);
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-color: var(--border);
}

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

.footer-links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
}

.footer-links a {
  font-size: 0.85rem;
  color: var(--text-muted);
}

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

/* --- Prose (Privacy, Support) --- */
.prose-page {
  padding-top: 8rem;
  padding-bottom: 4rem;
}

.prose { max-width: 640px; }

.prose h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2.5rem;
  line-height: 1.15;
  margin-bottom: 0.5rem;
}

.prose .page-date {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 3rem;
  display: block;
}

.prose .page-sub {
  font-size: 1.05rem;
  color: var(--text-secondary);
  font-weight: 400;
  margin-bottom: 3rem;
  display: block;
}

.prose h2 {
  font-size: 1.35rem;
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
}

.prose p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  font-weight: 400;
  line-height: 1.75;
  margin-bottom: 1.25rem;
}

.prose ul {
  list-style: none;
  margin-bottom: 1.25rem;
  padding-left: 0;
}

.prose ul li {
  font-size: 0.95rem;
  color: var(--text-secondary);
  font-weight: 400;
  line-height: 1.75;
  padding-left: 1.25rem;
  position: relative;
}

.prose ul li::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
  position: absolute;
  left: 0;
  top: 0.7em;
}

.prose a {
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(40, 196, 222, 0.3);
}

.prose a:hover { text-decoration-color: var(--accent); }

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

/* Support page */
.support-card {
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  background: var(--bg-surface);
  padding: 2.5rem;
  margin: 2rem 0 3rem;
  text-align: center;
}

.support-card p {
  margin-bottom: 1.25rem;
}

.support-email-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 1rem;
  color: var(--bg-deep);
  background: var(--accent);
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-md);
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
}

.support-email-btn:hover {
  color: var(--bg-deep);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px var(--accent-glow);
}

.support-email-text {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 0.75rem;
  display: block;
}

.faq-item { margin-bottom: 2rem; }
.faq-item h3 { font-size: 1.05rem; margin-bottom: 0.4rem; }
.faq-item p { margin-bottom: 0; }

/* --- Animations --- */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

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

.reveal-children > * {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.reveal-children.visible > *:nth-child(1) { transition-delay: 0s; opacity: 1; transform: translateY(0); }
.reveal-children.visible > *:nth-child(2) { transition-delay: 0.08s; opacity: 1; transform: translateY(0); }
.reveal-children.visible > *:nth-child(3) { transition-delay: 0.16s; opacity: 1; transform: translateY(0); }
.reveal-children.visible > *:nth-child(4) { transition-delay: 0.24s; opacity: 1; transform: translateY(0); }
.reveal-children.visible > *:nth-child(5) { transition-delay: 0.32s; opacity: 1; transform: translateY(0); }
.reveal-children.visible > *:nth-child(6) { transition-delay: 0.4s; opacity: 1; transform: translateY(0); }
.reveal-children.visible > *:nth-child(7) { transition-delay: 0.48s; opacity: 1; transform: translateY(0); }

/* --- Responsive --- */
@media (max-width: 768px) {
  .nav { padding: 0 1.25rem; }
  .nav-links { gap: 1.25rem; }
  .nav-links a { font-size: 0.8rem; }
  .container { padding: 0 1.25rem; }
  section { padding: 4rem 0; }
  .hero { padding-top: 7rem; }
  .hero h1 { font-size: 2.4rem; }
  .hero p { font-size: 1rem; }
  .hero-billie { width: 120px; height: 120px; }
  h2 { font-size: 1.8rem; }
  .steps-grid { grid-template-columns: 1fr; gap: 1rem; }
  .features-grid { grid-template-columns: 1fr; gap: 1rem; }
  .integrations-row { grid-template-columns: 1fr; gap: 1rem; }
  .pricing-grid { grid-template-columns: 1fr; }
  .deploybar-reveal { max-width: 100%; }
  .footer-inner { flex-direction: column; gap: 1rem; text-align: center; }
  .prose h1 { font-size: 2rem; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 2rem; }
  .hero-billie { width: 100px; height: 100px; }
  .menubar-mock { font-size: 10px; }
  .deploy-repo { font-size: 11.5px; }
  .deploy-detail { font-size: 10px; }
}

