:root {
  --bg: #0B0B0F;
  --panel: #131418;
  --line: #1C1D22;
  --line-strong: #3A3D42;
  --text: #F3F4F6;
  --muted: #AEB6BD;
  --faint: #6F767C;
  --accent: #FCA702;
  --wrap: 1248px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Plus Jakarta Sans", "Segoe UI", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}

a { color: inherit; text-decoration: none; }
a:hover { opacity: 0.85; }
img { max-width: 100%; height: auto; display: block; }
h1, h2, h3, p, figure { margin: 0; }

.wrap { width: min(var(--wrap), 100% - 48px); margin: 0 auto; }

.eyebrow {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}
.muted { color: var(--muted); }
.faint { color: var(--faint); }

/* Cabecera */
.top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 36px 0 0;
}
.brand { display: flex; align-items: center; gap: 12px; font-size: 22px; font-weight: 800; letter-spacing: -0.01em; }
.brand svg { display: block; border-radius: 12px; background: var(--bg); }
.nav { display: flex; gap: 32px; font-size: 15px; font-weight: 600; color: var(--muted); }

/* Hero */
.hero {
  min-height: calc(100vh - 80px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  text-align: center;
  padding: 48px 0 64px;
}
.hero-copy { display: flex; flex-direction: column; align-items: center; gap: 18px; max-width: 920px; }
.hero h1 { font-size: clamp(40px, 5vw, 68px); line-height: 1.04; font-weight: 800; letter-spacing: -0.03em; text-wrap: balance; }
.hero .lead { font-size: clamp(17px, 1.5vw, 20px); line-height: 1.5; color: var(--muted); max-width: 680px; text-wrap: pretty; }
.hero-card { display: flex; flex-direction: column; align-items: center; gap: 14px; width: 100%; }
.hero-card img {
  width: 1036px;
  max-width: 100%;
  border-radius: 26px;
  box-shadow: 0 30px 80px rgba(252, 167, 2, 0.14), 0 10px 30px rgba(0, 0, 0, 0.6);
}
.hero-cta { display: flex; flex-direction: column; align-items: center; gap: 14px; }
.btn-row { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; justify-content: center; }
.btn {
  display: inline-flex;
  align-items: center;
  height: 52px;
  padding: 0 28px;
  border-radius: 999px;
  font-size: 17px;
  font-weight: 700;
  white-space: nowrap;
}
.btn-primary { background: var(--accent); color: var(--bg); }
.btn-ghost { border: 1px solid var(--line-strong); color: var(--text); font-weight: 600; padding: 0 24px; }
.small { font-size: 13px; }

/* Secciones */
.section { padding: 120px 0 0; border-top: 1px solid var(--line); margin-top: 96px; }
.section-head { display: flex; flex-direction: column; gap: 18px; max-width: 760px; }
.section-head h2 { font-size: clamp(32px, 3.6vw, 48px); line-height: 1.08; font-weight: 800; letter-spacing: -0.03em; text-wrap: balance; }
.section-head .lead { font-size: 19px; line-height: 1.55; color: var(--muted); text-wrap: pretty; }

/* Bloques del escaparate (texto + imagen, alternando) */
.blocks { display: flex; flex-direction: column; gap: 120px; margin-top: 120px; }
.block { display: flex; align-items: center; gap: 64px; }
.block.flip { flex-direction: row-reverse; }
.block-text { width: 400px; flex-shrink: 0; display: flex; flex-direction: column; gap: 14px; }
.block-text h3 { font-size: 30px; line-height: 1.15; font-weight: 800; letter-spacing: -0.02em; }
.block-text p { font-size: 17px; line-height: 1.55; color: var(--muted); text-wrap: pretty; }
.block-text .note { font-size: 15px; color: var(--faint); }
.block-media { display: flex; flex-direction: column; gap: 22px; flex-grow: 1; min-width: 0; }
.block-media.row { flex-direction: row; align-items: flex-start; gap: 40px; }
.figure { display: flex; flex-direction: column; gap: 8px; }
.figure .cap { font-size: 13px; font-weight: 600; color: var(--faint); }
.card-img { width: 100%; border-radius: 20px; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6); }
.card-img.w3 { width: 60%; }
.card-img.w4 { width: 80%; }
.sheet-img { width: 372px; max-width: 100%; border-radius: 22px 22px 0 0; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6); }
.legend { display: flex; flex-direction: column; gap: 10px; margin-top: 8px; }
.legend div { display: flex; align-items: center; gap: 12px; font-size: 15px; color: var(--muted); }
.legend svg { flex-shrink: 0; display: block; }

/* Banda */
.band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 64px;
  padding: 48px 56px;
  border-radius: 28px;
  background: var(--panel);
  border: 1px solid var(--line);
}
.band h3 { font-size: 30px; line-height: 1.15; font-weight: 800; letter-spacing: -0.02em; }
.band p { font-size: 17px; line-height: 1.55; color: var(--muted); margin-top: 12px; max-width: 760px; text-wrap: pretty; }

/* Pasos y prosa (instalación y Breezy) */
.steps { display: flex; flex-direction: column; gap: 40px; margin-top: 64px; max-width: 860px; counter-reset: paso; }
.step { display: flex; gap: 24px; }
.step::before {
  counter-increment: paso;
  content: counter(paso);
  flex-shrink: 0;
  width: 44px; height: 44px;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800;
  color: var(--accent);
}
.step h3 { font-size: 22px; line-height: 1.2; font-weight: 800; letter-spacing: -0.01em; margin-bottom: 8px; }
.step p, .prose p, .prose li { font-size: 17px; line-height: 1.55; color: var(--muted); text-wrap: pretty; }
.step p + p, .prose p + p { margin-top: 10px; }
.prose { max-width: 860px; margin-top: 48px; }
.prose h3 { font-size: 24px; line-height: 1.2; font-weight: 800; letter-spacing: -0.01em; margin: 48px 0 12px; }
.prose ul { padding-left: 22px; margin: 10px 0 0; }
.prose strong, .step strong { color: var(--text); font-weight: 700; }
.prose a, .step a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }
.warn {
  border: 1px solid var(--line-strong);
  border-radius: 16px;
  padding: 16px 20px;
  color: var(--muted);
  font-size: 15px;
  margin-top: 16px;
}
table { border-collapse: collapse; width: 100%; margin-top: 16px; font-size: 15px; }
th, td { text-align: left; padding: 10px 12px; border-bottom: 1px solid var(--line); vertical-align: top; }
th { color: var(--faint); font-weight: 600; }
td:nth-child(2) { color: var(--text); font-weight: 600; }
.table-wrap { overflow-x: auto; }
.shots { display: flex; gap: 24px; flex-wrap: wrap; margin-top: 32px; }
.shots img { width: 300px; border-radius: 18px; border: 1px solid var(--line); }

footer { padding: 96px 0 48px; font-size: 13px; color: var(--faint); }

/* Móvil */
@media (max-width: 900px) {
  .top { padding-top: 24px; flex-direction: column; align-items: flex-start; gap: 16px; }
  .nav { gap: 20px; font-size: 14px; }
  .nav a { white-space: nowrap; }
  .hero { min-height: 0; gap: 32px; padding: 40px 0 48px; }
  .section { padding-top: 72px; margin-top: 64px; }
  .blocks { gap: 72px; margin-top: 64px; }
  .block, .block.flip { flex-direction: column; align-items: stretch; gap: 28px; }
  .block-text { width: auto; }
  .block-media.row { flex-direction: column; gap: 22px; }
  .card-img.w3, .card-img.w4 { width: 100%; }
  .band { flex-direction: column; align-items: flex-start; padding: 32px 24px; gap: 24px; }
  .step { gap: 16px; }
  .step::before { width: 36px; height: 36px; }
}
