/* ============================================================
   Heavy Duty — hub de links + media kit
   Estética propia: oscuro, industrial, con acento eléctrico.
   ============================================================ */

:root {
  --hd-bg: #0a0a0c;
  --hd-panel: #131318;
  --hd-panel-2: #1b1c23;
  --hd-line: #2a2b34;
  --hd-text: #e9e9ee;
  --hd-muted: #9a9ba7;
  --hd-accent: #fc5185;      /* rosa marca fitbyflorr */
  --hd-accent-2: #ffcd35;    /* dorado energía */
  --hd-grad: linear-gradient(135deg, #fc5185 0%, #ff8a5b 55%, #ffcd35 100%);
}

.hd body, body.hd { background: var(--hd-bg); color: var(--hd-text); }

.hd-page {
  min-height: 100vh;
  background:
    radial-gradient(1200px 600px at 50% -10%, rgba(252,81,133,0.18), transparent 60%),
    radial-gradient(900px 500px at 90% 20%, rgba(255,205,53,0.10), transparent 55%),
    var(--hd-bg);
  color: var(--hd-text);
}

/* Top bar */
.hd-top {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.25rem 0;
}
.hd-back {
  font-family: var(--font-head); font-weight: 600; font-size: 0.85rem;
  color: var(--hd-muted); display: inline-flex; align-items: center; gap: 0.4rem;
  transition: color 0.25s;
}
.hd-back:hover { color: #fff; }
.hd-wordmark { font-family: var(--font-head); font-weight: 700; letter-spacing: 0.02em; }
.hd-wordmark b { background: var(--hd-grad); -webkit-background-clip: text; background-clip: text; color: transparent; }

/* Hero */
.hd-hero { text-align: center; padding: 2.5rem 0 3rem; }
.hd-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--font-head); font-weight: 600; font-size: 0.72rem;
  text-transform: uppercase; letter-spacing: 0.2em;
  padding: 0.45rem 1rem; border-radius: 999px;
  border: 1px solid var(--hd-line); color: var(--hd-muted);
  background: rgba(255,255,255,0.02);
}
.hd-avatar {
  width: 120px; height: 120px; border-radius: 50%;
  margin: 1.6rem auto 1.2rem; object-fit: cover;
  border: 3px solid transparent;
  background: var(--hd-grad) border-box;
  box-shadow: 0 0 0 3px var(--hd-bg), 0 20px 50px -18px rgba(252,81,133,0.6);
}
.hd-avatar.placeholder {
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-weight: 700; font-size: 2.4rem; color: #fff;
  background: var(--hd-grad);
}
.hd-avatar.logo {
  background: var(--hd-grad);
  display: flex; align-items: center; justify-content: center; padding: 22px;
}
.hd-avatar.logo img { width: 100%; height: 100%; object-fit: contain; }

/* Team */
.hd-team { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 1rem; margin-top: 2rem; }
.hd-member {
  background: var(--hd-panel); border: 1px solid var(--hd-line);
  border-radius: 18px; padding: 1.6rem; text-align: center;
}
.hd-member .ring {
  width: 64px; height: 64px; border-radius: 50%; margin: 0 auto 0.9rem;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-weight: 700; font-size: 1.4rem; color: #14060c;
  background: var(--hd-grad);
}
.hd-member h3 { font-family: var(--font-head); font-weight: 700; font-size: 1.1rem; margin: 0; }
.hd-member .role { color: var(--hd-accent); font-size: 0.78rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; margin: 0.3rem 0 0.6rem; }
.hd-member p { color: var(--hd-muted); font-size: 0.9rem; margin: 0; }

/* App feature list */
.hd-appfeat { list-style: none; padding: 0; margin: 1.4rem 0 0; display: grid; gap: 0.7rem; }
.hd-appfeat li { display: flex; gap: 0.6rem; color: var(--hd-text); }
.hd-appfeat li svg { flex: none; color: var(--hd-accent); margin-top: 2px; }

/* Footnote */
.hd-foot { color: var(--hd-muted); font-size: 0.75rem; letter-spacing: 0.04em; margin-top: 1.4rem; text-transform: uppercase; }
.hd-stat .sub { color: var(--hd-muted); font-size: 0.68rem; margin-top: 0.2rem; }
.hd-title {
  font-family: var(--font-head); font-weight: 700;
  font-size: clamp(2.4rem, 7vw, 4.5rem); line-height: 0.95;
  text-transform: uppercase; letter-spacing: -0.01em;
}
.hd-title .stroke {
  background: var(--hd-grad); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hd-tagline { color: var(--hd-muted); max-width: 46ch; margin: 1rem auto 0; font-size: 1.05rem; }

/* Links hub */
.hd-links { max-width: 560px; margin: 2.5rem auto 0; display: grid; gap: 0.85rem; }
.hd-link {
  display: flex; align-items: center; gap: 1rem;
  padding: 1.05rem 1.3rem; border-radius: 16px;
  background: var(--hd-panel); border: 1px solid var(--hd-line);
  transition: transform 0.3s var(--ease), border-color 0.3s, background 0.3s;
}
.hd-link:hover { transform: translateY(-3px); border-color: var(--hd-accent); background: var(--hd-panel-2); }
.hd-link .ic {
  width: 42px; height: 42px; flex: none; border-radius: 12px;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(252,81,133,0.12); color: var(--hd-accent);
}
.hd-link .txt { flex: 1; }
.hd-link .txt strong { font-family: var(--font-head); font-weight: 600; display: block; }
.hd-link .txt span { font-size: 0.82rem; color: var(--hd-muted); }
.hd-link .arrow { color: var(--hd-muted); transition: transform 0.3s var(--ease); }
.hd-link:hover .arrow { transform: translateX(4px); color: #fff; }
.hd-link.featured {
  background: var(--hd-grad); border-color: transparent; color: #14060c;
}
.hd-link.featured .ic { background: rgba(0,0,0,0.15); color: #14060c; }
.hd-link.featured .txt span { color: rgba(20,6,12,0.7); }
.hd-link.featured .arrow { color: #14060c; }

/* Section wrapper */
.hd-section { padding: clamp(3.5rem, 8vw, 6rem) 0; }
.hd-kicker {
  font-family: var(--font-head); font-weight: 600; font-size: 0.72rem;
  text-transform: uppercase; letter-spacing: 0.24em; color: var(--hd-accent);
}
.hd-h2 { font-family: var(--font-head); font-weight: 700; font-size: clamp(1.9rem, 4vw, 3rem); margin: 0.6rem 0 1rem; }
.hd-divider { height: 1px; background: var(--hd-line); border: 0; margin: 0; }

/* Media kit — stats */
.hd-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; margin-top: 2rem; }
.hd-stat {
  background: var(--hd-panel); border: 1px solid var(--hd-line);
  border-radius: 16px; padding: 1.5rem 1.2rem; text-align: center;
}
.hd-stat .num {
  font-family: var(--font-head); font-weight: 700; font-size: clamp(1.8rem, 4vw, 2.6rem);
  background: var(--hd-grad); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hd-stat .lbl { color: var(--hd-muted); font-size: 0.82rem; margin-top: 0.3rem; }

/* Media kit — audience / platforms */
.hd-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1rem; margin-top: 2rem; }
.hd-card {
  background: var(--hd-panel); border: 1px solid var(--hd-line);
  border-radius: 18px; padding: 1.6rem;
}
.hd-card h3 { font-family: var(--font-head); font-weight: 600; font-size: 1.1rem; margin: 0 0 0.4rem; }
.hd-card p { color: var(--hd-muted); font-size: 0.92rem; margin: 0; }
.hd-card .metric { font-family: var(--font-head); font-weight: 700; font-size: 1.6rem; color: #fff; }

/* Services */
.hd-services { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1rem; margin-top: 2rem; }
.hd-service {
  background: var(--hd-panel); border: 1px solid var(--hd-line);
  border-radius: 18px; padding: 1.8rem; position: relative; overflow: hidden;
}
.hd-service::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 3px; background: var(--hd-grad);
}
.hd-service h3 { font-family: var(--font-head); font-weight: 700; font-size: 1.25rem; margin: 0 0 0.5rem; }
.hd-service .price { font-family: var(--font-head); font-weight: 700; font-size: 1.9rem; margin: 0.6rem 0; }
.hd-service ul { list-style: none; padding: 0; margin: 1rem 0 0; }
.hd-service li { color: var(--hd-muted); padding: 0.35rem 0 0.35rem 1.4rem; position: relative; }
.hd-service li::before { content: "→"; position: absolute; left: 0; color: var(--hd-accent); }

/* CTA / contact */
.hd-cta {
  background: var(--hd-grad); color: #14060c; border-radius: 24px;
  padding: clamp(2.5rem, 6vw, 4rem); text-align: center; margin-top: 2rem;
}
.hd-cta h2 { font-family: var(--font-head); font-weight: 700; font-size: clamp(1.8rem, 4vw, 2.8rem); margin: 0 0 0.6rem; }
.hd-cta p { max-width: 44ch; margin: 0 auto 1.6rem; opacity: 0.8; }
.hd-cta .btn { background: #14060c; color: #fff; }
.hd-cta .btn:hover { background: #000; }

/* Placeholder marker */
.todo {
  outline: 2px dashed var(--hd-accent-2); outline-offset: 3px;
  position: relative;
}
[data-placeholder]::after {
  content: attr(data-placeholder);
  display: inline-block; margin-left: 0.5rem;
  font-family: var(--font-body); font-size: 0.6rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  background: var(--hd-accent-2); color: #000; padding: 0.15rem 0.4rem; border-radius: 4px;
  vertical-align: middle;
}

@media (max-width: 640px) {
  .hd-stats { grid-template-columns: repeat(2, 1fr); }
}
