/* =========================================================
   INSTAPRINT — Sistema de diseño
   Acompañamiento Ejecutivo Inteligente
   ========================================================= */

@font-face {
  font-family: 'Fraunces';
  src: url('../assets/fonts/fraunces-variable.woff2') format('woff2');
  font-weight: 300 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Manrope';
  src: url('../assets/fonts/manrope-variable.woff2') format('woff2');
  font-weight: 300 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Fragment Mono';
  src: url('../assets/fonts/fragment-mono.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  /* Superficies oscuras */
  --ink: #0A0E1A;
  --surface: #0F1526;
  --card: #141B30;
  --card-hi: #1B233D;
  --border: #262F4C;
  --border-soft: #1B2238;

  /* Texto sobre oscuro */
  --ivory: #F3F5FA;
  --ivory-mid: #A6AEC7;
  --ivory-low: #656E8C;

  /* Acentos */
  --gold: #C9A227;
  --gold-light: #E8C766;
  --gold-doc: #8A6A18;
  --steel: #6C8EBF;
  --steel-light: #A9C4E8;
  --emerald: #2F8F6E;
  --emerald-light: #66C6A3;

  /* Superficies claras (para romper el tono, mezclado con blanco) */
  --light-bg: #F3F5FA;
  --light-surface: #FFFFFF;
  --light-border: #E3E7F0;
  --light-ink: #0A0E1A;
  --light-ink-mid: #4A5170;

  --signature: linear-gradient(120deg, #E8C766, #C9A227 55%, #8A6A18);

  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Manrope', Arial, Helvetica, sans-serif;
  --font-mono: 'Fragment Mono', ui-monospace, Menlo, Consolas, monospace;

  --fs-display: clamp(2.6rem, 5.4vw, 4.6rem);
  --fs-h2: clamp(1.9rem, 3.6vw, 2.9rem);
  --fs-h3: clamp(1.1rem, 1.6vw, 1.3rem);
  --fs-lede: clamp(1.05rem, 1.4vw, 1.25rem);

  --container: 1220px;
  --gutter: clamp(20px, 5vw, 64px);
  --section-pad: clamp(72px, 11vw, 140px);

  --radius-card: 18px;
  --radius-pill: 999px;

  --ease-out: cubic-bezier(.16,1,.3,1);
  --dur-fast: 180ms;
  --dur-med: 320ms;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--ivory);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
ul { margin: 0; padding: 0; list-style: none; }
p { margin: 0; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

.skip-link {
  position: absolute;
  left: 12px;
  top: -60px;
  background: var(--gold);
  color: var(--ink);
  padding: 10px 18px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  z-index: 1000;
  transition: top var(--dur-fast) var(--ease-out);
}
.skip-link:focus { top: 12px; }

:focus-visible {
  outline: 2.5px solid var(--gold-light);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ---------- Typography ---------- */
h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 560;
  letter-spacing: -0.012em;
  line-height: 1.08;
  margin: 0;
  color: var(--ivory);
}
.section--light h1, .section--light h2, .section--light h3 { color: var(--light-ink); }

h1 { font-size: var(--fs-display); }
h2 { font-size: var(--fs-h2); }
h3 {
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: -0.005em;
  font-size: var(--fs-h3);
}

.eyebrow {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: .74rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold-light);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: '';
  width: 22px;
  height: 1.5px;
  background: var(--signature);
  display: inline-block;
}
.section--light .eyebrow { color: var(--gold-doc, #8A6A18); }

.lede {
  font-size: var(--fs-lede);
  color: var(--ivory-mid);
  line-height: 1.7;
  max-width: 62ch;
}
.section--light .lede { color: var(--light-ink-mid); }

.mono {
  font-family: var(--font-mono);
  font-variant-numeric: tabular-nums;
  letter-spacing: .01em;
  overflow-wrap: anywhere;
  word-break: break-word;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 28px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: .92rem;
  border: 1px solid transparent;
  transition: transform var(--dur-fast) var(--ease-out), box-shadow var(--dur-fast) var(--ease-out), background var(--dur-fast) var(--ease-out), border-color var(--dur-fast) var(--ease-out);
  white-space: nowrap;
  min-height: 48px;
  touch-action: manipulation;
}
.btn svg { width: 19px; height: 19px; flex-shrink: 0; }

.btn--primary {
  background: var(--signature);
  color: var(--ink);
  box-shadow: 0 8px 24px -8px rgba(201,162,39,.55);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 14px 32px -10px rgba(201,162,39,.65); }
.btn--primary:active { transform: translateY(0); }

.btn--ghost {
  background: transparent;
  color: var(--ivory);
  border-color: var(--border);
}
.btn--ghost:hover { background: var(--card); border-color: var(--ivory-low); transform: translateY(-2px); }
.section--light .btn--ghost { color: var(--light-ink); border-color: var(--light-border); }
.section--light .btn--ghost:hover { background: var(--light-bg); border-color: var(--light-ink-mid); }

@media (prefers-reduced-motion: reduce) {
  .btn--primary:hover, .btn--ghost:hover { transform: none; }
}

/* ---------- Header / Nav ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 0;
  transition: padding var(--dur-med) var(--ease-out), background var(--dur-med) var(--ease-out), border-color var(--dur-med) var(--ease-out);
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled {
  padding: 12px 0;
  background: rgba(10,14,26,.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--border-soft);
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; gap: 24px; }

.brand {
  display: flex;
  align-items: center;
  gap: 11px;
}
.brand svg { width: 42px; height: 42px; }
.brand-word { font-family: var(--font-display); font-weight: 560; font-size: 1.28rem; letter-spacing: -0.01em; color: var(--ivory); }

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.4vw, 38px);
}
.nav-links a {
  font-size: .88rem;
  font-weight: 600;
  color: var(--ivory-mid);
  position: relative;
  padding: 6px 2px;
  transition: color var(--dur-fast) var(--ease-out);
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; right: 100%;
  bottom: 0;
  height: 1.5px;
  background: var(--gold);
  transition: right var(--dur-med) var(--ease-out);
}
.nav-links a:hover { color: var(--ivory); }
.nav-links a:hover::after { right: 0; }

.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-cta .btn--primary { padding: 11px 22px; font-size: .84rem; }

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  width: 46px; height: 46px;
  align-items: center;
  justify-content: center;
  color: var(--ivory);
}
.nav-toggle svg { width: 20px; height: 20px; }

.mobile-panel {
  position: fixed;
  inset: 0;
  background: var(--ink);
  z-index: 99;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 28px;
  padding: 0 var(--gutter);
  transform: translateY(-100%);
  transition: transform var(--dur-med) var(--ease-out);
}
.mobile-panel.is-open { transform: translateY(0); }
.mobile-panel a { font-family: var(--font-display); font-size: 2rem; color: var(--ivory); }
.mobile-panel a.btn.btn--primary {
  font-family: var(--font-body);
  font-size: .95rem;
  font-weight: 700;
  color: var(--ink);
  align-self: flex-start;
  margin-top: 12px;
}

.nav-links a { white-space: nowrap; }

@media (max-width: 1060px) {
  .nav-links { display: none; }
  .nav-toggle { display: inline-flex; }
  .nav-cta .btn--primary span.long { display: none; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--ink);
}
.hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.hero-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(10,14,26,.35) 0%, rgba(10,14,26,.55) 55%, var(--ink) 100%),
    linear-gradient(90deg, rgba(10,14,26,.65) 0%, rgba(10,14,26,.1) 48%, rgba(10,14,26,.55) 100%);
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 120px;
  padding-bottom: 80px;
}
.hero-content .eyebrow { margin-bottom: 22px; }
.hero-content h1 { max-width: 15ch; }
.hero-content .lede { margin-top: 26px; }
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 42px;
}

.hero-scroll-cue {
  position: absolute;
  bottom: 34px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--ivory-low);
}
.hero-scroll-cue .line {
  width: 1px;
  height: 34px;
  background: linear-gradient(var(--gold-light), transparent);
  animation: scrollcue 2.2s var(--ease-out) infinite;
}
@keyframes scrollcue {
  0% { transform: scaleY(0); transform-origin: top; opacity: 0; }
  40% { transform: scaleY(1); transform-origin: top; opacity: 1; }
  60% { transform: scaleY(1); transform-origin: bottom; opacity: 1; }
  100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-scroll-cue .line { animation: none; height: 20px; opacity: .6; }
}

/* ---------- Sections ---------- */
.section {
  padding: var(--section-pad) 0;
  position: relative;
}
.section--dark { background: var(--surface); }
.section--ink { background: var(--ink); }
.section--light { background: var(--light-bg); color: var(--light-ink-mid); }

.section-head { max-width: 720px; }
.section-head h2 { margin-top: 16px; }
.section-head .lede { margin-top: 18px; }

.divider {
  height: 1px;
  background: var(--border-soft);
  border: 0;
}
.section--light .divider { background: var(--light-border); }

/* ---------- Reveal-on-scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s var(--ease-out), transform .7s var(--ease-out);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ---------- Value pillars ---------- */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 56px;
}
.pillar {
  background: linear-gradient(160deg, var(--card-hi), var(--card));
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 30px 26px;
  transition: transform var(--dur-med) var(--ease-out), border-color var(--dur-med) var(--ease-out), box-shadow var(--dur-med) var(--ease-out);
}
.pillar:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
  box-shadow: 0 20px 40px -22px rgba(201,162,39,.4);
}
.icon-badge {
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--card);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  transition: transform var(--dur-med) var(--ease-out), border-color var(--dur-fast) var(--ease-out), background var(--dur-fast) var(--ease-out);
}
.icon-badge svg { width: 21px; height: 21px; stroke-width: 1.6; transition: stroke var(--dur-fast) var(--ease-out); }
.pillar:hover .icon-badge {
  border-color: var(--gold);
  background: rgba(201,162,39,.14);
  transform: scale(1.08);
}
.pillar h3 { margin-bottom: 8px; transition: color var(--dur-fast) var(--ease-out); }
.pillar p { color: var(--ivory-mid); font-size: .93rem; line-height: 1.6; }

@media (prefers-reduced-motion: reduce) {
  .pillar:hover, .pillar:hover .icon-badge { transform: none; }
}

@media (max-width: 760px) {
  .pillars { grid-template-columns: 1fr; }
}

/* ---------- Service cards ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 56px;
}
.service-card {
  background: var(--light-surface);
  border: 1px solid var(--light-border);
  border-radius: var(--radius-card);
  padding: 34px 28px;
  box-shadow: 0 10px 34px -18px rgba(10,14,26,.18);
  transition: transform var(--dur-med) var(--ease-out), box-shadow var(--dur-med) var(--ease-out), border-color var(--dur-med) var(--ease-out);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 46px -20px rgba(10,14,26,.22);
}
.service-card[data-accent="gold"] { --accent: var(--gold); --accent-doc: #8A6A18; }
.service-card[data-accent="steel"] { --accent: var(--steel); --accent-doc: #3A5A85; }
.service-card[data-accent="emerald"] { --accent: var(--emerald); --accent-doc: #1C5443; }
.service-card:hover { border-color: var(--accent); }

.service-card .icon-badge {
  background: var(--light-bg);
  border-color: var(--light-border);
  color: var(--accent-doc);
}
.service-card:hover .icon-badge { border-color: var(--accent); }
.service-card .service-name {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: .8rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--accent-doc);
  margin-bottom: 12px;
  display: block;
}
.service-card h3 { color: var(--light-ink); font-size: 1.25rem; margin-bottom: 12px; }
.service-card p.desc { color: var(--light-ink-mid); font-size: .95rem; line-height: 1.65; }
.service-card .service-tag {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--light-border);
  font-family: var(--font-mono);
  font-size: .76rem;
  color: var(--accent-doc);
}

@media (max-width: 900px) {
  .services-grid { grid-template-columns: 1fr; }
}

/* ---------- Digital WorkForce section ---------- */
.dwf-intro { display: grid; grid-template-columns: 1.15fr .85fr; gap: 60px; align-items: start; }
.dwf-seal-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 18px;
  padding: 30px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
}
.dwf-seal-wrap svg { width: 140px; height: 140px; }
.dwf-seal-wrap p { font-size: .82rem; color: var(--ivory-low); line-height: 1.6; }

.tech-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}
.tech-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px 10px 12px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border);
  background: var(--card);
  font-size: .82rem;
  font-weight: 600;
  color: var(--ivory-mid);
}
.tech-pill svg { width: 17px; height: 17px; color: var(--gold-light); stroke-width: 1.7; }

@media (max-width: 900px) {
  .dwf-intro { grid-template-columns: 1fr; }
  .dwf-seal-wrap { max-width: 320px; }
}

/* ---------- Team cards (specialists) ---------- */
.teams-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 64px;
}
.team-card {
  background: linear-gradient(160deg, var(--card-hi), var(--card));
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 30px 26px;
  transition: transform var(--dur-med) var(--ease-out), border-color var(--dur-med) var(--ease-out);
}
.team-card:hover { transform: translateY(-4px); }
.team-card[data-accent="gold"] { --accent: var(--gold); --accent-light: var(--gold-light); }
.team-card[data-accent="steel"] { --accent: var(--steel); --accent-light: var(--steel-light); }
.team-card[data-accent="emerald"] { --accent: var(--emerald); --accent-light: var(--emerald-light); }
.team-card:hover { border-color: var(--accent); }
.team-card .service-name { color: var(--accent-light); font-weight: 800; font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; }
.team-card h3 { margin-top: 10px; color: var(--ivory); font-size: 1.05rem; }
.team-card .count {
  display: inline-block;
  margin-top: 14px;
  margin-bottom: 4px;
  font-family: var(--font-mono);
  font-size: .74rem;
  color: var(--accent-light);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  padding: 4px 12px;
}
.specialist-list { margin-top: 16px; display: flex; flex-direction: column; gap: 9px; }
.specialist-list li {
  font-size: .87rem;
  color: var(--ivory-mid);
  padding-left: 18px;
  position: relative;
  line-height: 1.5;
}
.specialist-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
}
.team-note {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--border-soft);
  font-size: .8rem;
  color: var(--ivory-low);
  font-style: normal;
}

@media (max-width: 900px) {
  .teams-grid { grid-template-columns: 1fr; }
}

/* ---------- Comparison ---------- */
.compare {
  margin-top: 56px;
  display: grid;
  gap: 14px;
}
.compare-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
  background: var(--light-surface);
  border: 1px solid var(--light-border);
  border-radius: var(--radius-card);
  overflow: hidden;
}
.compare-row > div { padding: 22px 26px; }
.compare-row .who {
  font-weight: 700;
  color: var(--light-ink);
  font-size: .95rem;
  display: flex;
  align-items: center;
}
.compare-row .limit {
  color: var(--light-ink-mid);
  font-size: .87rem;
  border-left: 1px solid var(--light-border);
  border-right: 1px solid var(--light-border);
  display: flex;
  align-items: center;
}
.compare-row .win {
  color: #8A6A18;
  font-weight: 700;
  font-size: .87rem;
  background: linear-gradient(160deg, #FBF6E8, #FFFFFF);
  display: flex;
  align-items: center;
  gap: 10px;
}
.compare-row .win svg { width: 16px; height: 16px; flex-shrink: 0; }
.compare-labels {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  padding: 0 26px;
  font-family: var(--font-body);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--light-ink-mid);
}
.compare-labels span:last-child { color: #8A6A18; }

@media (max-width: 760px) {
  .compare-row { grid-template-columns: 1fr; }
  .compare-row .limit { border-left: 0; border-right: 0; border-top: 1px solid var(--light-border); border-bottom: 1px solid var(--light-border); }
  .compare-labels { display: none; }
}

/* ---------- Pull quote ---------- */
.pullquote {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}
.pullquote blockquote {
  font-family: var(--font-display);
  font-weight: 560;
  font-size: clamp(1.7rem, 3.4vw, 2.6rem);
  line-height: 1.28;
  margin: 0;
  letter-spacing: -0.01em;
}
.pullquote .accent-word { color: var(--gold-light); }

/* ---------- Contact ---------- */
.contact-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, .8fr);
  gap: 60px;
  align-items: center;
}
.contact-card {
  background: linear-gradient(160deg, var(--card-hi), var(--card));
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 34px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  min-width: 0;
}
.contact-item { display: flex; align-items: flex-start; gap: 14px; min-width: 0; }
.contact-item .icon-badge { margin-bottom: 0; flex-shrink: 0; }
.contact-item > div { min-width: 0; }
.contact-item .label { font-size: .74rem; text-transform: uppercase; letter-spacing: .1em; color: var(--ivory-low); font-weight: 700; }
.contact-item .value { font-family: var(--font-mono); font-size: .95rem; color: var(--ivory); margin-top: 4px; }
.contact-item a.value:hover { color: var(--gold-light); }

@media (max-width: 900px) {
  .contact-wrap { grid-template-columns: 1fr; }
}

/* ---------- Footer ---------- */
.site-footer {
  border-top: 1px solid var(--border-soft);
  padding: 44px 0 36px;
}
.footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}
.footer-brand { display: flex; align-items: center; gap: 12px; }
.footer-brand svg { width: 28px; height: 28px; }
.footer-brand .fb-text { display: flex; flex-direction: column; }
.footer-brand .fb-name { font-family: var(--font-display); font-size: 1rem; color: var(--ivory); }
.footer-brand .fb-legal { font-family: var(--font-mono); font-size: .68rem; color: var(--ivory-low); margin-top: 3px; }

.footer-seal { display: flex; align-items: center; gap: 10px; }
.footer-seal svg { width: 34px; height: 34px; }
.footer-seal span { font-size: .74rem; color: var(--ivory-low); max-width: 16ch; line-height: 1.4; }

.social-row { display: flex; align-items: center; gap: 10px; }
.social-icon {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ivory-low);
  transition: border-color var(--dur-fast) var(--ease-out), color var(--dur-fast) var(--ease-out);
}
.social-icon svg { width: 17px; height: 17px; stroke-width: 1.6; }
.social-icon:hover { border-color: var(--gold); color: var(--gold-light); }

@media (max-width: 760px) {
  .footer-row { flex-direction: column; align-items: flex-start; }
}

/* ---------- Utility ---------- */
.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}
