/* gethypershell.com — sitio informativo. Sin fuentes ni recursos externos. */

:root {
  --ink: #0e1116;
  --ink-2: #444c56;
  --ink-3: #6b7480;
  --paper: #ffffff;
  --sunken: #f5f6f8;
  --line: #e3e6ea;
  --accent: #0f7b6c;
  --accent-dark: #0b5c51;
  --ok: #1f7a4d;
  --warn-bg: #fff8e6;
  --warn-line: #e8d6a3;
  --radius: 12px;
  --max: 1120px;
  --font: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0; font-family: var(--font); color: var(--ink);
  background: var(--paper); line-height: 1.65; -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent); }
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 20px; }
.skip-link {
  position: absolute; left: -9999px; background: var(--ink); color: #fff;
  padding: 10px 16px; z-index: 100;
}
.skip-link:focus { left: 12px; top: 12px; }

/* ---------- Distributor disclosure ---------- */
.disclosure {
  background: var(--ink); color: #fff; font-size: 13px; line-height: 1.5;
  text-align: center; padding: 9px 18px;
}
.disclosure a { color: #a9c8ff; font-weight: 600; }

/* ---------- Header ---------- */
header.site { border-bottom: 1px solid var(--line); background: var(--paper); }
header.site .bar {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; min-height: 66px; flex-wrap: wrap;
}
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--ink); }
.brand img { height: 26px; width: auto; }
.brand span { font-weight: 700; font-size: 14px; letter-spacing: .01em; color: var(--ink-2); }
nav.top { display: flex; gap: 18px; flex-wrap: wrap; font-size: 14px; }
nav.top a { color: var(--ink-2); text-decoration: none; }
nav.top a:hover { color: var(--accent); }

/* ---------- Product ---------- */
.pdp { display: grid; grid-template-columns: 1.05fr 1fr; gap: 40px; padding: 36px 0 12px; align-items: start; }
@media (max-width: 880px) { .pdp { grid-template-columns: 1fr; gap: 26px; } }
.gallery img { border-radius: var(--radius); border: 1px solid var(--line); }
.gallery .thumbs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 10px; }
.eyebrow {
  font-size: 11.5px; letter-spacing: .1em; text-transform: uppercase;
  font-weight: 700; color: var(--accent); margin: 0 0 8px;
}
h1 { font-size: clamp(1.65rem, 3.2vw, 2.25rem); line-height: 1.2; margin: 0 0 10px; letter-spacing: -.02em; }
.lede { color: var(--ink-2); margin: 0 0 20px; }
.price { display: flex; align-items: baseline; gap: 12px; margin: 0 0 4px; }
.price strong { font-size: 1.9rem; letter-spacing: -.02em; }
.price-note { font-size: 13px; color: var(--ink-3); margin: 0 0 20px; }

fieldset.opts { border: 0; padding: 0; margin: 0 0 20px; }
fieldset.opts legend { font-weight: 700; font-size: 14px; padding: 0; margin-bottom: 8px; }
.cta {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  background: var(--accent); color: #fff; text-decoration: none; font-weight: 700;
  font-size: 16px; padding: 15px 28px; border-radius: 10px; border: 0; cursor: pointer; width: 100%;
}
.cta:hover { background: var(--accent-dark); }
.trust { display: flex; flex-wrap: wrap; gap: 16px; margin: 18px 0 0; padding: 0; list-style: none; }
.trust li { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--ink-2); }
.trust img { height: 22px; width: auto; }

/* ---------- Sections ---------- */
section.band { padding: 44px 0; border-top: 1px solid var(--line); }
section.band.alt { background: var(--sunken); }
h2 { font-size: clamp(1.25rem, 2.4vw, 1.6rem); margin: 0 0 12px; letter-spacing: -.015em; }
h3 { font-size: 1.05rem; margin: 0 0 6px; }
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 22px; }
.card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.card .body { padding: 16px 18px 18px; }
.card p { margin: 0; font-size: 14.5px; color: var(--ink-2); }
ul.specs { list-style: none; padding: 0; margin: 0; }
ul.specs li { display: flex; justify-content: space-between; gap: 16px; padding: 10px 0; border-bottom: 1px solid var(--line); font-size: 14.5px; }
ul.specs li:last-child { border-bottom: 0; }
ul.specs span:first-child { color: var(--ink-3); }
ul.specs span:last-child { font-weight: 600; text-align: right; }

.note {
  background: var(--warn-bg); border: 1px solid var(--warn-line);
  border-radius: var(--radius); padding: 16px 18px; margin: 22px 0 0; font-size: 14.5px;
}
.note strong { display: block; margin-bottom: 4px; }
.attrib { font-size: 13px; color: var(--ink-3); margin-top: 10px; }

details.faq { border-bottom: 1px solid var(--line); }
details.faq summary { cursor: pointer; padding: 15px 0; font-weight: 600; list-style: none; }
details.faq summary::-webkit-details-marker { display: none; }
details.faq summary::after { content: "+"; float: right; color: var(--ink-3); font-weight: 400; }
details.faq[open] summary::after { content: "−"; }
details.faq .a { padding: 0 0 15px; color: var(--ink-2); font-size: 14.5px; }

/* ---------- Footer ---------- */
footer.site { background: var(--ink); color: #b9c0cc; padding: 36px 0 28px; font-size: 13.5px; }
footer.site a { color: #c9d4e6; text-decoration: none; }
footer.site a:hover { text-decoration: underline; }
footer.site .cols { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 26px; }
footer.site h4 { color: #fff; font-size: 13px; text-transform: uppercase; letter-spacing: .06em; margin: 0 0 10px; }
footer.site .links { display: flex; flex-direction: column; gap: 6px; }
footer.site .legal { border-top: 1px solid #232a34; margin-top: 26px; padding-top: 18px; font-size: 12.5px; line-height: 1.7; }

/* ---------- Legal pages ---------- */
.legal { max-width: 820px; margin: 0 auto; padding: 40px 20px 64px; }
.legal h1 { margin-bottom: 6px; }
.legal .updated { color: var(--ink-3); font-size: 13.5px; margin: 0 0 26px; }
.legal h2 { font-size: 1.15rem; margin: 30px 0 8px; }
.legal p, .legal li { font-size: 15.5px; color: var(--ink-2); }
.legal ul { padding-left: 20px; }
.legal .box { background: var(--sunken); border: 1px solid var(--line); border-radius: var(--radius); padding: 16px 18px; margin: 0 0 24px; }
.legal .box p { margin: 0; font-size: 14.5px; }
.subnav { display: flex; flex-wrap: wrap; gap: 8px 16px; font-size: 13.5px; padding-bottom: 14px; border-bottom: 1px solid var(--line); margin-bottom: 26px; }
.subnav a[aria-current="page"] { font-weight: 700; color: var(--ink); }

/* ---------- Cookie consent ---------- */
.cc {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 9999; background: var(--paper);
  border-top: 1px solid var(--line); box-shadow: 0 -6px 24px rgba(0,0,0,.12); padding: 16px 20px;
}
.cc[hidden] { display: none; }
.cc .inner { max-width: var(--max); margin: 0 auto; display: flex; flex-wrap: wrap; gap: 14px; align-items: center; justify-content: space-between; }
.cc p { margin: 0; font-size: 13.5px; color: var(--ink-2); max-width: 660px; }
.cc .btns { display: flex; gap: 10px; flex-shrink: 0; }
.cc button {
  font: inherit; font-size: 13.5px; font-weight: 700; padding: 10px 22px;
  border-radius: 8px; cursor: pointer; border: 1px solid var(--line);
}
.cc .yes { background: var(--accent); border-color: var(--accent); color: #fff; }
.cc .no { background: transparent; color: var(--ink); }

/* ---------- Añadidos gethypershell ---------- */
.wordmark { font-weight: 800; letter-spacing: .14em; font-size: 15px; color: var(--ink); }
.highlights { list-style: none; padding: 0; margin: 0 0 4px; display: grid; gap: 7px; }
.highlights li { font-size: 14.5px; color: var(--ink-2); padding-left: 18px; position: relative; }
.highlights li::before { content: "—"; position: absolute; left: 0; color: var(--accent); }
.note.warn { background: #fff4f2; border-color: #f0cbc2; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: start; }
@media (max-width: 720px) { .grid-2 { grid-template-columns: 1fr; } }
.grid-2 figure { margin: 0; }
.grid-2 figcaption { font-size: 13px; color: var(--ink-3); margin-top: 8px; text-align: center; }
ul.plain { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
ul.plain li { font-size: 14.5px; color: var(--ink-2); }
