/* ============================================
   LANDING SOFTWARE A MEDIDA - Estilo proceso/editorial
   Extiende landingFichaje.css (variables y header reutilizables)
   ============================================ */

/* ===== HERO CONVERSACIONAL ===== */
.sw-hero {
  position: relative;
  min-height: 100vh;
  padding: 120px 0 80px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--fichaje-bg);
}

.sw-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(55, 100, 237, 0.18) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(55, 100, 237, 0.12) 0%, transparent 50%);
  pointer-events: none;
}

.sw-hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(55, 100, 237, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(55, 100, 237, 0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
}

.sw-hero-content {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.sw-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 600;
  color: var(--fichaje-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 32px;
}

.sw-hero-eyebrow::before,
.sw-hero-eyebrow::after {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--fichaje-primary);
}

.sw-hero-title {
  font-size: clamp(48px, 7vw, 96px);
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: -0.04em;
  color: white;
  margin-bottom: 32px;
}

.sw-hero-title .accent {
  color: var(--fichaje-primary);
  font-style: italic;
  font-weight: 800;
}

.sw-hero-title .equation {
  display: inline-block;
  margin: 0 16px;
  color: rgba(255, 255, 255, 0.4);
  font-weight: 300;
}

.sw-hero-sub {
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.5;
  color: var(--fichaje-text-muted);
  max-width: 700px;
  margin: 0 auto 56px;
  font-weight: 400;
}

.sw-hero-sub strong {
  color: white;
  font-weight: 700;
}

.sw-hero-scroll {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  color: var(--fichaje-text-muted);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s;
}

.sw-hero-scroll:hover { color: white; }

.sw-hero-scroll-icon {
  width: 32px;
  height: 50px;
  border: 2px solid var(--fichaje-primary);
  border-radius: 100px;
  position: relative;
}

.sw-hero-scroll-icon::after {
  content: '';
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: var(--fichaje-primary);
  border-radius: 100px;
  animation: scroll-down 1.8s infinite;
}

@keyframes scroll-down {
  0%, 100% { transform: translate(-50%, 0); opacity: 1; }
  50% { transform: translate(-50%, 18px); opacity: 0.3; }
}

/* ===== SECCIÓN "TE SUENA?" - 3 PERFILES DE CLIENTE ===== */
.sw-suena {
  position: relative;
  padding: 140px 0;
  background: var(--fichaje-bg-darker);
  overflow: hidden;
}

.sw-suena-header {
  text-align: center;
  margin-bottom: 80px;
}

.sw-suena-eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  color: var(--fichaje-primary);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 20px;
}

.sw-suena h2 {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: white;
  margin: 0 auto;
  max-width: 800px;
}

.sw-suena-cases {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.sw-case {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px;
  align-items: center;
  padding: 40px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--fichaje-border);
  border-radius: 24px;
  transition: transform 0.3s, border-color 0.3s, background 0.3s;
}

.sw-case:hover {
  transform: translateX(8px);
  border-color: rgba(55, 100, 237, 0.4);
  background: rgba(55, 100, 237, 0.05);
}

.sw-case-num {
  font-size: 56px;
  font-weight: 900;
  font-style: italic;
  color: var(--fichaje-primary);
  line-height: 1;
  letter-spacing: -0.04em;
  opacity: 0.5;
}

.sw-case-text {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sw-case-quote {
  font-size: 22px;
  font-weight: 600;
  color: white;
  line-height: 1.35;
  letter-spacing: -0.01em;
}

.sw-case-tag {
  font-size: 13px;
  color: var(--fichaje-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 600;
}

/* ===== HILO CONDUCTOR (línea que atraviesa la landing) ===== */
.sw-thread {
  position: relative;
  padding: 60px 0 0;
  background: var(--fichaje-bg);
}

.sw-thread-line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg,
    transparent 0%,
    rgba(55, 100, 237, 0.4) 8%,
    rgba(55, 100, 237, 0.6) 92%,
    transparent 100%);
  transform: translateX(-50%);
  z-index: 1;
}

/* ===== SECCIÓN INTRO PROCESO ===== */
.sw-process-intro {
  position: relative;
  padding: 80px 0 120px;
  background: var(--fichaje-bg);
  text-align: center;
  z-index: 2;
}

.sw-process-intro-eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  color: var(--fichaje-primary);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 20px;
}

.sw-process-intro h2 {
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: white;
  margin: 0 auto 24px;
  max-width: 800px;
}

.sw-process-intro h2 .accent {
  color: var(--fichaje-primary);
  font-style: italic;
}

.sw-process-intro p {
  font-size: 19px;
  line-height: 1.6;
  color: var(--fichaje-text-muted);
  max-width: 640px;
  margin: 0 auto;
}

/* ===== FASE INDIVIDUAL ===== */
.sw-phase {
  position: relative;
  padding: 80px 0;
  background: var(--fichaje-bg);
}

.sw-phase-alt { background: var(--fichaje-bg-darker); }

.sw-phase-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
  position: relative;
  z-index: 2;
}

/* Alternancia: fases pares invierten orden */
.sw-phase:nth-child(even) .sw-phase-grid {
  direction: rtl;
}

.sw-phase:nth-child(even) .sw-phase-grid > * {
  direction: ltr;
}

/* Marcador en la línea central (punto) */
.sw-phase-marker {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 24px;
  height: 24px;
  background: var(--fichaje-bg);
  border: 3px solid var(--fichaje-primary);
  border-radius: 50%;
  z-index: 3;
  box-shadow: 0 0 0 8px var(--fichaje-bg);
}

.sw-phase-marker::before {
  content: '';
  position: absolute;
  inset: 4px;
  background: var(--fichaje-primary);
  border-radius: 50%;
  opacity: 0.3;
}

.sw-phase-alt .sw-phase-marker {
  background: var(--fichaje-bg-darker);
  box-shadow: 0 0 0 8px var(--fichaje-bg-darker);
}

.sw-phase-content {
  max-width: 480px;
}

.sw-phase-num {
  font-size: 14px;
  font-weight: 700;
  color: var(--fichaje-primary);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.sw-phase-num-big {
  font-size: 80px;
  font-weight: 900;
  font-style: italic;
  color: var(--fichaje-primary);
  letter-spacing: -0.05em;
  line-height: 0.9;
  margin-bottom: 12px;
  opacity: 0.95;
}

.sw-phase-title {
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: white;
  margin-bottom: 20px;
}

.sw-phase-desc {
  font-size: 17px;
  line-height: 1.65;
  color: var(--fichaje-text-muted);
  margin-bottom: 24px;
}

.sw-phase-desc strong { color: white; font-weight: 700; }

.sw-phase-meta {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  padding-top: 20px;
  border-top: 1px solid var(--fichaje-border);
}

.sw-phase-meta-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.sw-phase-meta-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--fichaje-text-muted);
  font-weight: 700;
}

.sw-phase-meta-value {
  font-size: 16px;
  color: white;
  font-weight: 700;
}

/* Visuales de cada fase (cada uno distinto) */
.sw-phase-visual {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  max-width: 460px;
  margin: 0 auto;
}

/* === FASE 0: BOMBILLA (idea) === */
.sw-visual-bulb {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sw-visual-bulb-glow {
  position: absolute;
  inset: 20%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(55, 100, 237, 0.4) 0%, transparent 70%);
  filter: blur(40px);
  animation: bulb-pulse 3s ease-in-out infinite;
}

@keyframes bulb-pulse {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.1); }
}

.sw-visual-bulb svg {
  width: 60%;
  height: 60%;
  position: relative;
  z-index: 2;
}

.sw-visual-bulb-rays {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.sw-visual-bulb-rays line {
  stroke: var(--fichaje-primary);
  stroke-width: 1.5;
  opacity: 0.4;
}

/* === FASE 1: BOCADILLOS DE DIÁLOGO === */
.sw-visual-chat {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  padding: 20px;
}

.sw-chat-bubble {
  padding: 16px 20px;
  border-radius: 16px;
  font-size: 15px;
  line-height: 1.4;
  font-weight: 500;
  max-width: 80%;
  position: relative;
}

.sw-chat-bubble.them {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--fichaje-border);
  color: white;
  align-self: flex-start;
  border-bottom-left-radius: 4px;
}

.sw-chat-bubble.us {
  background: linear-gradient(135deg, var(--fichaje-primary) 0%, #2548b8 100%);
  color: white;
  align-self: flex-end;
  border-bottom-right-radius: 4px;
  box-shadow: 0 8px 24px rgba(55, 100, 237, 0.3);
}

.sw-chat-bubble-meta {
  font-size: 11px;
  color: var(--fichaje-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 4px;
  font-weight: 700;
}

/* === FASE 2: WIREFRAME / BLUEPRINT === */
.sw-visual-blueprint {
  background: rgba(55, 100, 237, 0.04);
  border: 1px dashed rgba(55, 100, 237, 0.4);
  border-radius: 16px;
  padding: 24px;
  position: relative;
}

.sw-visual-blueprint::before {
  content: 'PROPUESTA TÉCNICA';
  position: absolute;
  top: -10px;
  left: 24px;
  background: var(--fichaje-bg);
  padding: 0 12px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--fichaje-primary);
}

.sw-phase-alt .sw-visual-blueprint::before {
  background: var(--fichaje-bg-darker);
}

.sw-blueprint-row {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
}

.sw-blueprint-block {
  background: rgba(55, 100, 237, 0.15);
  border: 1px solid rgba(55, 100, 237, 0.3);
  border-radius: 6px;
  padding: 12px 8px;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.7);
  font-family: 'Courier New', monospace;
  text-align: center;
  flex: 1;
}

.sw-blueprint-block.solid {
  background: var(--fichaje-primary);
  color: white;
  border-color: var(--fichaje-primary);
}

.sw-blueprint-block.tall { padding: 24px 8px; }
.sw-blueprint-block.short { padding: 6px 8px; }

.sw-blueprint-arrow {
  display: flex;
  justify-content: center;
  margin: 8px 0;
  color: rgba(55, 100, 237, 0.5);
  font-size: 14px;
}

/* === FASE 3: SPRINTS (barras de progreso) === */
.sw-visual-sprints {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  padding: 20px;
}

.sw-sprint {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sw-sprint-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  font-weight: 600;
}

.sw-sprint-name {
  color: white;
  font-family: 'Courier New', monospace;
  letter-spacing: 0.05em;
}

.sw-sprint-status {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 700;
}

.sw-sprint-status.done { color: #4ade80; }
.sw-sprint-status.live { color: var(--fichaje-primary); }
.sw-sprint-status.next { color: var(--fichaje-text-muted); }

.sw-sprint-bar {
  height: 8px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 100px;
  overflow: hidden;
  position: relative;
}

.sw-sprint-bar-fill {
  height: 100%;
  border-radius: 100px;
  background: linear-gradient(90deg, var(--fichaje-primary) 0%, #5a82f5 100%);
  position: relative;
}

.sw-sprint-bar-fill.done {
  background: linear-gradient(90deg, #22c55e 0%, #4ade80 100%);
}

.sw-sprint-bar-fill.live::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  background-size: 30% 100%;
  background-repeat: no-repeat;
  animation: sprint-shimmer 1.8s infinite linear;
}

@keyframes sprint-shimmer {
  0% { background-position: -30% 0; }
  100% { background-position: 130% 0; }
}

/* === FASE 4: COHETE / LANZAMIENTO === */
.sw-visual-launch {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.sw-launch-circle {
  width: 80%;
  height: 80%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(55, 100, 237, 0.2) 0%, transparent 70%);
  position: absolute;
  animation: launch-pulse 3s infinite ease-in-out;
}

@keyframes launch-pulse {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.15); opacity: 1; }
}

.sw-launch-icon {
  position: relative;
  z-index: 2;
  font-size: 100px;
  color: var(--fichaje-primary);
}

.sw-launch-stats {
  position: absolute;
  bottom: 10%;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-around;
  z-index: 3;
}

.sw-launch-stat {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid var(--fichaje-border);
  border-radius: 12px;
  padding: 12px 16px;
  text-align: center;
}

.sw-launch-stat-value {
  font-size: 22px;
  font-weight: 900;
  color: white;
  line-height: 1;
  margin-bottom: 2px;
}

.sw-launch-stat-label {
  font-size: 10px;
  color: var(--fichaje-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
}

/* === FASE 5: GRÁFICO ASCENDENTE (evolución) === */
.sw-visual-evolve {
  position: relative;
  padding: 24px;
  display: flex;
  align-items: flex-end;
}

.sw-evolve-grid {
  position: absolute;
  inset: 24px;
  border-left: 1px solid var(--fichaje-border);
  border-bottom: 1px solid var(--fichaje-border);
}

.sw-evolve-grid::before,
.sw-evolve-grid::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  border-top: 1px dashed rgba(255, 255, 255, 0.05);
}

.sw-evolve-grid::before { top: 33%; }
.sw-evolve-grid::after { top: 66%; }

.sw-evolve-bars {
  display: flex;
  align-items: flex-end;
  gap: 12px;
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 2;
}

.sw-evolve-bar {
  flex: 1;
  background: linear-gradient(180deg, var(--fichaje-primary) 0%, rgba(55, 100, 237, 0.3) 100%);
  border-radius: 6px 6px 0 0;
  position: relative;
  transition: transform 0.3s;
}

.sw-evolve-bar:hover { transform: translateY(-4px); }

.sw-evolve-bar-label {
  position: absolute;
  bottom: -24px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 10px;
  color: var(--fichaje-text-muted);
  font-weight: 600;
  font-family: 'Courier New', monospace;
}

.sw-evolve-bar-value {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 11px;
  color: white;
  font-weight: 700;
  font-family: 'Courier New', monospace;
}

/* ===== SECCIÓN CASOS (tipologías sin nombres) ===== */
.sw-cases {
  padding: 140px 0;
  background: var(--fichaje-bg);
}

.sw-cases-header {
  text-align: center;
  margin-bottom: 80px;
}

.sw-cases-eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  color: var(--fichaje-primary);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 20px;
}

.sw-cases h2 {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: white;
  margin: 0 auto 16px;
  max-width: 700px;
}

.sw-cases-sub {
  font-size: 18px;
  line-height: 1.5;
  color: var(--fichaje-text-muted);
  max-width: 580px;
  margin: 0 auto;
}

.sw-cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.sw-case-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--fichaje-border);
  border-radius: 24px;
  padding: 36px;
  transition: transform 0.3s, border-color 0.3s, background 0.3s;
}

.sw-case-card:hover {
  transform: translateY(-6px);
  border-color: rgba(55, 100, 237, 0.4);
  background: rgba(55, 100, 237, 0.04);
}

.sw-case-card-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  color: var(--fichaje-primary);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 16px;
  padding: 6px 12px;
  background: rgba(55, 100, 237, 0.1);
  border-radius: 100px;
}

.sw-case-card h3 {
  font-size: 22px;
  font-weight: 800;
  color: white;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
  line-height: 1.2;
}

.sw-case-card p {
  font-size: 15px;
  line-height: 1.55;
  color: var(--fichaje-text-muted);
  margin-bottom: 20px;
}

.sw-case-card-arrow {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  color: var(--fichaje-primary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.sw-case-card-arrow svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.5;
  transition: transform 0.3s;
}

.sw-case-card:hover .sw-case-card-arrow svg {
  transform: translateX(4px);
}

/* ===== CTA FINAL ===== */
.sw-cta {
  position: relative;
  padding: 140px 0;
  background: linear-gradient(135deg, var(--fichaje-primary) 0%, #2548b8 100%);
  text-align: center;
  overflow: hidden;
}

.sw-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 70% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
}

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

.sw-cta h2 {
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.04em;
  color: white;
  margin-bottom: 24px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.sw-cta h2 em {
  font-style: italic;
  color: rgba(255, 255, 255, 0.85);
}

.sw-cta-sub {
  font-size: 19px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.85);
  max-width: 600px;
  margin: 0 auto 48px;
}

.sw-cta-button {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  background: white;
  color: var(--fichaje-primary);
  padding: 22px 40px;
  border-radius: 100px;
  font-weight: 800;
  font-size: 19px;
  text-decoration: none;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  transition: transform 0.2s, box-shadow 0.2s;
}

.sw-cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.4);
  color: var(--fichaje-primary);
}

.sw-cta-button svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.5;
}

.sw-cta-note {
  margin-top: 32px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 968px) {
  .sw-thread-line { display: none; }

  .sw-phase {
    padding: 60px 0;
  }

  .sw-phase-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .sw-phase:nth-child(even) .sw-phase-grid { direction: ltr; }

  .sw-phase-marker { display: none; }

  .sw-phase-visual {
    max-width: 320px;
    order: -1;
  }

  .sw-cases-grid { grid-template-columns: 1fr; }

  .sw-case {
    grid-template-columns: 60px 1fr;
    gap: 20px;
    padding: 28px;
  }

  .sw-case-num { font-size: 40px; }
  .sw-case-quote { font-size: 18px; }

  .sw-hero-title .equation { display: block; margin: 8px 0; }

  .sw-cta-button { padding: 18px 28px; font-size: 16px; }
}
