@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;1,400&display=swap');

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

:root {
  --bg:      #0a0a0a;
  --text:    #f0ede8;
  --muted:   #555555;
  --muted-2: #888888;
  --accent:  #C45C1A;
  --serif:   'Playfair Display', Georgia, 'Times New Roman', serif;
  --sans:    system-ui, -apple-system, 'Segoe UI', sans-serif;
  --mono:    'Courier New', ui-monospace, monospace;
}

html, body {
  height: 100%;
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

body {
  background:
    radial-gradient(ellipse at 80% 8%,  rgba(196,92,26,0.07) 0%, transparent 45%),
    radial-gradient(ellipse at 15% 38%, rgba(196,92,26,0.05) 0%, transparent 40%),
    radial-gradient(ellipse at 70% 72%, rgba(196,92,26,0.06) 0%, transparent 42%),
    radial-gradient(ellipse at 25% 95%, rgba(196,92,26,0.05) 0%, transparent 38%),
    var(--bg);
}

/* ── Scroll animations ── */

@media (prefers-reduced-motion: no-preference) {
  html { scroll-behavior: smooth; }

  .anim {
    opacity: 0;
    transform: translateY(14px);
    transition: opacity 0.38s ease-out, transform 0.38s ease-out;
  }

  .anim.is-visible {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── Header ── */

.land-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  min-height: 52px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 0 40px;
  z-index: 10;
}

.land-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  text-decoration: none;
}

.logo-img {
  height: 26px;
  width: auto;
  display: block;
}

.land-tagline {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.01em;
  margin-left: 12px;
}

/* ── Hero ── */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 100px 80px 80px;
  background: radial-gradient(ellipse at 72% 50%, rgba(196,92,26,0.16) 0%, transparent 52%), var(--bg);
}

.hero-inner {
  max-width: 520px;
  width: 100%;
  flex-shrink: 0;
}

.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 250px;
}

@media (min-width: 641px) {
  .chat-demo-messages { height: 453px; }
}

.hero-terminal {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--accent);
  letter-spacing: 0.1em;
  margin-bottom: 32px;
  opacity: 0.65;
}

.hero-terminal::after {
  content: '▍';
  margin-left: 1px;
  animation: blink 1.1s step-end infinite;
}

@keyframes blink {
  50% { opacity: 0; }
}

.hero-title {
  font-family: var(--serif);
  font-size: clamp(46px, 7.5vw, 82px);
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: -0.025em;
  color: var(--text);
  margin-bottom: 28px;
}

.hero-title em {
  font-style: italic;
  color: var(--accent);
}

.hero-subtitle {
  font-size: clamp(15px, 1.8vw, 17px);
  color: var(--muted-2);
  line-height: 1.72;
  max-width: 520px;
  margin-bottom: 52px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.btn-hero-primary {
  display: inline-block;
  padding: 14px 38px;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: opacity 0.15s;
}

.btn-hero-primary:hover { opacity: 0.88; }

.hero-secondary-link {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--muted);
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: color 0.15s;
}

.hero-secondary-link:hover { color: var(--text); }

/* ── How-track ── */

.how-track {
  position: relative;
  height: 20px;
  display: flex;
  align-items: center;
  margin-bottom: 48px;
}

.how-track-line {
  position: absolute;
  left: 12%;
  right: 12%;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    rgba(245, 240, 232, 0.18) 18%,
    rgba(245, 240, 232, 0.18) 82%,
    transparent
  );
}

.how-track-dot {
  position: absolute;
  left: 12%;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 10px rgba(196, 92, 26, 0.55), 0 0 24px rgba(196, 92, 26, 0.2);
  transform: translateX(-50%);
  will-change: left;
}

@media (prefers-reduced-motion: reduce) {
  .how-track { display: none; }
}

/* ── Cómo funciona ── */

.how-section {
  border-top: 1px solid #1a1a1a;
  padding: 96px 40px 112px;
  background: radial-gradient(ellipse at 15% 60%, rgba(196,92,26,0.07) 0%, transparent 50%);
}

.how-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.how-label {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--accent);
  letter-spacing: 0.1em;
  opacity: 0.65;
  margin-bottom: 56px;
}

.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}

.how-step {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.how-icon {
  display: block;
  flex-shrink: 0;
  opacity: 0.75;
}

.how-number {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--accent);
  opacity: 0.5;
}

.how-text {
  font-family: var(--serif);
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 400;
  line-height: 1.45;
  color: var(--text);
  letter-spacing: -0.01em;
}

/* ── Chat demo ── */

.chat-demo-phone {
  background: #111;
  border-radius: 28px;
  border: 1px solid #2a2a2a;
  box-shadow: 0 0 0 6px #161616, 0 0 48px rgba(196,92,26,0.45), 0 0 100px rgba(196,92,26,0.18), 0 28px 72px rgba(0,0,0,0.65);
  overflow: hidden;
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
}

.phone-status-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 9px 16px 5px;
  background: #111;
}

.status-time {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.2px;
}

.status-icons {
  display: flex;
  align-items: center;
  gap: 6px;
}

.chat-demo-bar {
  background: #1c1c1c;
  padding: 14px 16px 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid #2a2a2a;
}

.chat-demo-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.05em;
}

.chat-demo-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  text-align: left;
}

.chat-demo-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  font-family: var(--sans);
}

.chat-demo-online {
  font-size: 11px;
  color: #4fc75a;
  font-family: var(--sans);
}

.chat-demo-messages {
  padding: 14px 12px;
  height: 340px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 7px;
  scrollbar-width: none;
}

.chat-demo-messages::-webkit-scrollbar { display: none; }

.chat-bubble {
  max-width: 82%;
  padding: 8px 11px;
  border-radius: 14px;
  font-size: 13px;
  line-height: 1.48;
  font-family: var(--sans);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.25s ease, transform 0.25s ease;
  word-break: break-word;
}

.chat-bubble.visible {
  opacity: 1;
  transform: translateY(0);
}

.chat-bubble--client {
  background: #2a2a2a;
  color: #e0ddd8;
  align-self: flex-start;
  border-bottom-left-radius: 4px;
}

.chat-bubble--bot {
  background: var(--accent);
  color: #fff;
  align-self: flex-end;
  border-bottom-right-radius: 4px;
}

.chat-typing {
  align-self: flex-end;
  background: rgba(196, 92, 26, 0.14);
  border: 1px solid rgba(196, 92, 26, 0.22);
  border-radius: 14px;
  border-bottom-right-radius: 4px;
  padding: 10px 13px;
  display: flex;
  gap: 4px;
  align-items: center;
}

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

.chat-dot:nth-child(2) { animation-delay: 0.18s; }
.chat-dot:nth-child(3) { animation-delay: 0.36s; }

@keyframes chat-dot-pulse {
  0%, 60%, 100% { opacity: 0.25; transform: scale(0.85); }
  30% { opacity: 1; transform: scale(1.15); }
}

/* ── Audio bubble ── */

.audio-msg-bubble {
  max-width: 88%;
  align-self: flex-end;
  background: var(--accent);
  border-radius: 14px;
  border-bottom-right-radius: 4px;
  padding: 8px 10px 6px;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.audio-msg-bubble.visible {
  opacity: 1;
  transform: translateY(0);
}

.audio-msg-row {
  display: flex;
  align-items: center;
  gap: 6px;
}

.audio-play-btn {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(255,255,255,0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  color: #fff;
  flex-shrink: 0;
}

.audio-wave {
  display: flex;
  align-items: center;
  gap: 2px;
  height: 32px;
}

.audio-bar {
  width: 2.5px;
  border-radius: 2px;
  background: rgba(255,255,255,0.55);
  flex-shrink: 0;
  transition: background 0.2s;
}

.audio-wave--playing .audio-bar {
  background: #fff;
  animation: audio-bar-pulse 0.9s ease-in-out infinite;
}

@keyframes audio-bar-pulse {
  0%, 100% { transform: scaleY(0.45); }
  50%       { transform: scaleY(1); }
}

.audio-duration {
  font-size: 10px;
  color: rgba(255,255,255,0.75);
  font-family: var(--mono);
  flex-shrink: 0;
}

.audio-transcript {
  font-size: 11px;
  color: rgba(255,255,255,0.88);
  font-family: var(--sans);
  margin: 4px 0 0;
  line-height: 1.45;
  min-height: 0;
  word-break: break-word;
}

/* ── Stat bar ── */

.stat-bar {
  background: radial-gradient(ellipse at 30% 50%, rgba(196,92,26,0.10) 0%, transparent 60%), var(--bg);
  padding: 28px 24px;
}

.stat-bar-inner {
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}

.stat-number {
  font-family: var(--serif);
  font-size: clamp(46px, 7.5vw, 82px);
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: -0.025em;
  color: var(--accent);
}

.stat-label {
  font-size: clamp(15px, 1.8vw, 17px);
  color: var(--muted-2);
  line-height: 1.72;
  max-width: 400px;
}

/* ── Empleado cero ── */

.pitch-section {
  position: relative;
  border-top: 1px solid #1a1a1a;
  min-height: 620px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  background-image:
    linear-gradient(rgba(5,5,5,0.68), rgba(5,5,5,0.68)),
    url('/oficinaapp.png');
  background-size: cover;
  background-position: center;
  padding: 72px 40px 88px;
}

.pitch-text {
  position: relative;
  max-width: 560px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.pitch-tag {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.pitch-title {
  font-family: var(--serif);
  font-size: clamp(42px, 7vw, 80px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: #F5F0E8;
  margin-bottom: 36px;
}

.pitch-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.pitch-list li {
  font-size: 15px;
  color: rgba(245, 240, 232, 0.8);
  line-height: 1.5;
}

.pitch-closing {
  font-size: 15px;
  color: rgba(245, 240, 232, 0.68);
  line-height: 1.72;
  margin-bottom: 36px;
  font-style: italic;
  max-width: 480px;
}

.pitch-fine {
  font-family: var(--mono);
  font-size: 11px;
  color: rgba(245, 240, 232, 0.36);
  letter-spacing: 0.04em;
  margin-top: 14px;
}

@media (max-width: 600px) {
  .pitch-section {
    padding: 56px 24px 72px;
    background-image: none;
  }
  .pitch-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('/oficinaapp.png');
    background-size: cover;
    background-position: 60% center;
    filter: brightness(1.7);
    z-index: 0;
  }
  .pitch-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(5,5,5,0.38);
    z-index: 1;
  }
  .pitch-text { z-index: 2; }
  .pitch-list li,
  .pitch-closing {
    text-shadow: 0 1px 8px rgba(0,0,0,0.9);
  }
  .pitch-title { font-size: clamp(28px, 8vw, 40px); }
}

/* ── Planes / Precios ── */

.pricing-section {
  border-top: 1px solid #1a1a1a;
  padding: 96px 40px 120px;
  background: radial-gradient(ellipse at 85% 40%, rgba(196,92,26,0.07) 0%, transparent 48%);
}

.pricing-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}

.pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #131313;
  border: 1px solid #2e2e2e;
  border-radius: 8px;
  padding: 32px 28px;
  gap: 0;
  box-shadow: 0 4px 24px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.04);
}

.pricing-card--featured {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px rgba(196, 92, 26, 0.3), 0 8px 40px rgba(196, 92, 26, 0.12);
  padding-top: 44px;
}

.card-badge {
  position: absolute;
  top: -1px;
  left: 28px;
  background: var(--accent);
  color: #fff;
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 0 0 4px 4px;
}

.card-top {
  margin-bottom: 28px;
}

.card-plan {
  display: block;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin-bottom: 14px;
}

.card-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 14px;
}

.price-amount {
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 400;
  color: var(--text);
  letter-spacing: -0.02em;
  line-height: 1;
}

.price-amount--text {
  font-size: 28px;
  font-style: italic;
}

.price-period {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.02em;
}

.card-trial {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--accent);
  letter-spacing: 0.04em;
  margin-bottom: 14px;
  opacity: 0.8;
}

.card-desc {
  font-size: 13px;
  color: var(--muted-2);
  line-height: 1.65;
}

.card-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
  flex: 1;
}

.card-features li {
  font-size: 13px;
  color: var(--muted-2);
  padding-left: 16px;
  position: relative;
  line-height: 1.5;
}

.card-features li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--accent);
  opacity: 0.5;
  font-size: 11px;
  top: 1px;
}

.card-cta {
  display: block;
  text-align: center;
  padding: 11px 20px;
  border: 1px solid #2a2a2a;
  border-radius: 4px;
  color: var(--muted-2);
  text-decoration: none;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: border-color 0.15s, color 0.15s;
  margin-top: auto;
}

.card-cta:hover { border-color: var(--accent); color: var(--accent); }

.card-cta--featured {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.card-cta--featured:hover { opacity: 0.88; color: #fff; }

/* ── FAQ ── */

.faq-section {
  border-top: 1px solid #1a1a1a;
  padding: 96px 40px 112px;
  background: radial-gradient(ellipse at 20% 50%, rgba(196,92,26,0.06) 0%, transparent 45%);
}

.faq-inner {
  max-width: 720px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid #1e1e1e;
}

.faq-item:first-of-type {
  border-top: 1px solid #1e1e1e;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 22px 0;
  font-family: var(--serif);
  font-size: clamp(16px, 1.8vw, 19px);
  font-weight: 400;
  color: var(--text);
  cursor: pointer;
  list-style: none;
  line-height: 1.35;
  transition: color 0.15s;
}

.faq-question::-webkit-details-marker { display: none; }

.faq-question::after {
  content: '+';
  font-family: var(--mono);
  font-size: 18px;
  font-weight: 400;
  color: var(--accent);
  flex-shrink: 0;
  transition: transform 0.22s ease-out;
  line-height: 1;
}

details[open] .faq-question::after {
  transform: rotate(45deg);
}

.faq-question:hover { color: var(--accent); }

.faq-answer {
  font-size: 14px;
  color: var(--muted-2);
  line-height: 1.72;
  padding-bottom: 22px;
  max-width: 620px;
}

@media (max-width: 600px) {
  .faq-section { padding: 72px 24px 88px; }
}

/* ── Footer ── */

.land-footer {
  border-top: 1px solid #1a1a1a;
  padding: 40px 40px 48px;
}

.land-footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-legal {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.02em;
  line-height: 1.6;
  max-width: 400px;
}

.footer-copy {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.04em;
  opacity: 0.6;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-end;
}

.footer-link {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--muted);
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: color 0.15s;
}

.footer-link:hover { color: var(--accent); }

@media (max-width: 600px) {
  .land-footer { padding: 36px 24px 40px; }
  .footer-links { align-items: flex-start; }
}

/* ── Sección de cierre ── */

.closing-section {
  border-top: 1px solid #1a1a1a;
  padding: 72px 40px 80px;
  text-align: center;
  background: radial-gradient(ellipse at 50% 60%, rgba(196,92,26,0.09) 0%, transparent 50%);
}

.closing-inner {
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 44px;
}

.closing-title {
  font-family: var(--serif);
  font-size: clamp(32px, 5.5vw, 58px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text);
}

/* ── Responsive ── */

@media (max-width: 900px) {
  .pricing-grid { grid-template-columns: 1fr; max-width: 440px; }
  .pricing-section { padding: 72px 24px 88px; }
}

@media (max-width: 600px) {
  .pricing-section { padding: 48px 16px 56px; }
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    max-width: none;
  }
  .pricing-card {
    padding: 16px 12px;
    overflow: hidden;
    min-height: 260px;
  }
  .pricing-card--featured { padding-top: 26px; }
  .pricing-card:last-child {
    grid-column: 1 / -1;
    max-width: calc(50% - 5px);
    margin: 0 auto;
  }
  .pricing-card .card-top { margin-bottom: 14px; }
  .pricing-card .card-features { gap: 6px; margin-bottom: 14px; }
  .price-amount { font-size: 22px; }
  .card-plan { margin-bottom: 8px; }
  .card-price { margin-bottom: 8px; }
  .card-desc,
  .card-features li { font-size: 13px; }
  .card-cta { font-size: 13px; padding: 8px 12px; }
}

@media (max-width: 768px) {
  .how-grid { grid-template-columns: 1fr; gap: 40px; }
  .how-section { padding: 72px 24px 88px; }
}

@media (max-width: 600px) {
  .how-section { padding: 48px 24px 56px; }
  .how-grid { grid-template-columns: repeat(3, 1fr); gap: 12px; }
  .how-text { font-size: 13px; line-height: 1.45; }
  .how-icon { width: 24px; height: 24px; }
  .how-step { gap: 10px; }
}

@media (max-width: 400px) {
  .how-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .how-step:last-child {
    grid-column: 1 / -1;
    max-width: 50%;
    margin: 0 auto;
  }
}

@media (max-width: 860px) {
  .hero {
    gap: 40px;
    padding: 100px 48px 80px;
  }
  .hero-inner { max-width: 100%; }
}

@media (max-width: 640px) {
  .hero {
    flex-direction: column;
    align-items: flex-start;
    padding: 84px 24px 56px;
    gap: 36px;
    min-height: auto;
  }
  .hero-inner { max-width: 100%; }
  .hero-visual {
    width: 100%;
    max-width: 300px;
    align-self: center;
  }
  .chat-demo-phone {
    box-shadow: 0 0 0 6px #161616, 0 0 28px rgba(196,92,26,0.22), 0 0 56px rgba(196,92,26,0.10), 0 20px 48px rgba(0,0,0,0.55);
  }
}

@media (max-width: 600px) {
  .land-header { padding: 0 24px; }
  .hero-terminal { margin-top: 12px; }
}
