/* ============================================================
   guds - Game Day Gummies - landing page styles
   Mobile-first. Token-matched to design handoff.
   ============================================================ */

/* SELF-HOSTED FONTS */
@font-face {
  font-family: 'Zing Rust';
  src: url('fonts/ZingRustDemo-Base.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Future Display';
  src: url('fonts/Futura_Display.ttf') format('truetype');
  font-weight: 400 900;
  font-display: swap;
}
@font-face {
  font-family: 'Inter Tight';
  src: url('fonts/InterTight-VariableFont_wght.ttf') format('truetype');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter Tight';
  src: url('fonts/InterTight-Italic-VariableFont_wght.ttf') format('truetype');
  font-weight: 100 900;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Druk Trial';
  src: url('fonts/Druk-Medium-Trial.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Druk Trial';
  src: url('fonts/Druk-MediumItalic-Trial.otf') format('opentype');
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Druk Trial';
  src: url('fonts/Druk-Bold-Trial.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Druk Trial';
  src: url('fonts/Druk-BoldItalic-Trial.otf') format('opentype');
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Druk Trial';
  src: url('fonts/Druk-Heavy-Trial.otf') format('opentype');
  font-weight: 800 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Druk Trial';
  src: url('fonts/Druk-HeavyItalic-Trial.otf') format('opentype');
  font-weight: 800 900;
  font-style: italic;
  font-display: swap;
}

/* DESIGN TOKENS */
:root {
  --bg:      #F8F4F1;
  --surface: #FFFFFF;
  --panel:   #EFEFEF;
  --ink:     #14160F;
  --ink-2:   #54564E;
  --ink-3:   #8A8C84;
  --line:    #E6E6E3;
  --line-2:  #D6D6D2;
  --volt:    #E4D300;
  --danger:  #E5402F;

  --font-logo:    'Future Display', 'Arial Narrow', sans-serif;
  --font-display: 'Druk Trial', 'Anton', 'Arial Narrow', sans-serif;
  --font-h2:      'Inter Tight', system-ui, sans-serif;
  --font-text:    'Inter Tight', system-ui, sans-serif;
  --font-mono:    'Space Mono', ui-monospace, monospace;

  --r-xs:   6px;
  --r-sm:   10px;
  --r-md:   16px;
  --r-lg:   22px;
  --r-xl:   30px;
  --r-pill: 999px;

  --sh-1: 0 1px 3px rgba(20,22,15,.06);
  --sh-2: 0 8px 24px rgba(20,22,15,.08);
  --sh-3: 0 20px 50px rgba(20,22,15,.12);

  --ease-out: cubic-bezier(.2,.7,.3,1);
  --ease-pop: cubic-bezier(.2,.8,.2,1.18);
  --dur-fast: 130ms;
  --dur-base: 220ms;
}

/* RESET */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  font-size: 16px;
  scroll-behavior: smooth;
}
body {
  font-family: var(--font-text);
  background: var(--bg);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img {
  display: block;
  max-width: 100%;
}
button {
  cursor: pointer;
  font-family: inherit;
  border: none;
  background: none;
}
a {
  color: inherit;
}

/* LAYOUT */
.container {
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: 20px;
}
@media (min-width: 768px) {
  .container {
    padding-inline: 32px;
  }
}

/* TYPE UTILITIES */
.wordmark {
  font-family: var(--font-logo);
  font-weight: 400;
  text-transform: lowercase;
  letter-spacing: -.01em;
  line-height: .8;
  color: var(--ink);
  display: inline-block;
}
.brand-label {
  font-family: var(--font-text);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.g-lead {
  font-family: var(--font-text);
  font-weight: 500;
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.5;
  letter-spacing: -.2px;
  color: var(--ink-2);
}

/* BUTTON */
.btn {
  font-family: var(--font-text);
  font-weight: 700;
  border-radius: var(--r-pill);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  white-space: nowrap;
  transition:
    background var(--dur-fast),
    color var(--dur-fast),
    transform var(--dur-fast) var(--ease-out);
  border: none;
  line-height: 1;
}
.btn:active {
  transform: scale(.97);
}
.btn--dark {
  background: var(--ink);
  color: #fff;
}
.btn--dark:hover {
  background: #000;
}
.btn--panel {
  background: var(--panel);
  color: var(--ink);
}
.btn--panel:hover {
  background: #E4E4E2;
}
.btn--sm  { padding: 10px 18px; font-size: 13px; }
.btn--md  { padding: 13px 24px; font-size: 14px; }
.btn--lg  { padding: 16px 30px; font-size: 16px; }
.btn--full { width: 100%; }

/* PACK PANEL */
.pack-panel {
  width: 100%;
  aspect-ratio: 1 / 1;
  background: var(--panel);
  border-radius: var(--r-lg);
  display: grid;
  place-items: center;
  overflow: hidden;
}
.pack-panel--xl {
  border-radius: var(--r-xl);
}
.pack-img {
  width: calc(100% - 20% * 2);
  height: auto;
  object-fit: contain;
}
.pack-panel--xl .pack-img {
  width: calc(100% - 14% * 2);
}
.pack-panel--lifestyle {
  background: #000;
}
.pack-img--cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.modal__pack--lifestyle {
  background: #000;
}
.modal__pack--lifestyle .pack-img--cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* EMAIL SIGNUP */
.signup-wrap {
  margin-top: 30px;
  scroll-margin-top: 90px;
}
.signup-form {
  display: flex;
  gap: 10px;
  max-width: 460px;
  flex-wrap: wrap;
}
.signup-input {
  font-family: var(--font-text);
  font-size: 15px;
  padding: 14px 18px;
  flex: 1;
  min-width: 180px;
  border: 1.5px solid var(--line-2);
  border-radius: var(--r-pill);
  background: #fff;
  color: var(--ink);
  outline: none;
  transition: border-color var(--dur-fast);
  -webkit-appearance: none;
}
.signup-input:focus {
  border-color: var(--ink);
}
.signup-input::placeholder {
  color: var(--ink-3);
}
.signup-form--compact {
  max-width: 380px;
}
.signup-input--compact {
  padding: 11px 14px;
}
.signup-note {
  font-family: var(--font-text);
  font-weight: 500;
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: -.2px;
  color: var(--ink-3);
  margin-top: 10px;
  max-width: 460px;
}
.signup-success {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-text);
  font-weight: 700;
  font-size: 15px;
  color: var(--ink);
  margin-top: 10px;
}
.signup-success:empty {
  display: none;
}
.check-icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

/* ============================================================
   SECTIONS
   ============================================================ */

/* NAV */
.nav {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255,255,255,.18);
  backdrop-filter: blur(28px) saturate(180%);
  -webkit-backdrop-filter: blur(28px) saturate(180%);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.7),
    inset 0 -1px 0 rgba(255,255,255,.15),
    0 4px 32px rgba(20,22,15,.06);
}
.nav__inner {
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (min-width: 768px) {
  .nav__inner {
    height: 104px;
  }
}
.nav__wordmark {
  font-size: 48px;
}
@media (min-width: 768px) {
  .nav__wordmark {
    font-size: 64px;
  }
}

/* BADGE */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 13px;
  border-radius: var(--r-pill);
  background: var(--panel);
  margin-bottom: 22px;
}
.badge__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--volt);
  box-shadow: 0 0 10px var(--volt);
  flex-shrink: 0;
}

/* HERO */
.hero {
  background: var(--bg);
}
.hero__inner {
  padding-block: 48px 56px;
  display: flex;
  flex-direction: column;
  gap: 36px;
}
@media (min-width: 768px) {
  .hero__inner {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    flex-direction: unset;
    gap: 48px;
    align-items: center;
    padding-block: 56px 64px;
  }
}
.hero__h1 {
  font-family: 'Zing Rust', var(--font-display);
  font-style: normal;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: -0.06em;
  font-size: clamp(72px, 9.75vw, 132px);
  line-height: .92;
  color: var(--ink);
}
.hero__lead {
  margin-top: 20px;
  max-width: 440px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.hero__lead-1 {
  font-family: var(--font-text);
  font-weight: 700;
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.5;
  letter-spacing: -.2px;
  color: var(--ink);
  display: block;
}
.hero__lead-2 {
  font-family: var(--font-text);
  font-weight: 500;
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.5;
  letter-spacing: -.2px;
  color: var(--ink-2);
  display: block;
}
.hero__visual {
  max-width: 460px;
  width: 100%;
  margin-inline: auto;
}
@media (min-width: 768px) {
  .hero__visual {
    justify-self: center;
    margin-inline: unset;
    max-width: 100%;
  }
}
.hero__img-wrap {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: var(--r-xl);
  overflow: hidden;
}
.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* BENEFITS */
.benefits {
  background: var(--bg);
  border-top: 1px solid var(--line);
}
.benefits__grid {
  padding-block: 48px 52px;
  display: grid;
  gap: 28px;
}
@media (min-width: 640px) {
  .benefits__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 36px;
  }
}
.benefit {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.benefit__icon {
  width: 46px;
  height: 46px;
  border-radius: var(--r-pill);
  background: var(--panel);
  color: var(--ink);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.benefit__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 22px;
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 5px;
}
.benefit__body {
  font-family: var(--font-text);
  font-weight: 500;
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: -.2px;
  color: var(--ink-2);
}

/* THE CASE - WHY GUDS */
.thecase {
  background: var(--surface);
  border-top: 1px solid var(--line);
}
.thecase__wrap {
  padding-block: 72px;
}
.thecase__header {
  max-width: 760px;
  margin-bottom: 40px;
}
@media (min-width: 1024px) {
  .thecase__header {
    max-width: 860px;
    margin-inline: auto;
  }
}
.thecase__h2 {
  font-family: var(--font-h2);
  font-weight: 700;
  letter-spacing: -.2px;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.02;
  color: var(--ink);
  margin-top: 12px;
}
.thecase__row {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 20px;
  align-items: start;
  padding-block: 32px;
  border-top: 1px solid var(--line);
}
@media (min-width: 540px) {
  .thecase__row {
    grid-template-columns: 140px 1fr;
    gap: 28px;
  }
}
@media (min-width: 1024px) {
  .thecase__row {
    grid-template-columns: 180px 1fr;
    gap: 40px;
    padding-block: 24px;
    max-width: 860px;
    margin-inline: auto;
  }
}
.thecase__media {
  aspect-ratio: 1 / 1;
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--bg);
  flex-shrink: 0;
}
.thecase__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.thecase__text {
  max-width: 620px;
}
.thecase__h3 {
  font-family: var(--font-h2);
  font-weight: 700;
  letter-spacing: -.2px;
  font-size: clamp(18px, 2.6vw, 30px);
  line-height: 1.05;
  color: var(--ink);
  margin-bottom: 14px;
}

/* CREDIBILITY BLOCK */
.cred {
  background: var(--bg);
  border-top: 1px solid var(--line);
}
.cred__grid {
  padding-block: 56px;
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr 1fr;
}
@media (min-width: 1024px) {
  .cred__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }
}
.cred__item {
  padding: 24px 20px;
  background: var(--surface);
  border-radius: var(--r-md);
  border: 1px solid var(--line);
}
.cred__num {
  font-family: var(--font-display);
  font-weight: 900;
  font-style: italic;
  font-size: 36px;
  line-height: .85;
  color: var(--line-2);
  display: block;
  margin-bottom: 14px;
}
@media (min-width: 640px) {
  .cred__num { font-size: 44px; }
}
.cred__text {
  font-family: var(--font-text);
  font-weight: 600;
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: -.2px;
  color: var(--ink);
}
@media (min-width: 640px) {
  .cred__text { font-size: 15px; }
}

/* TICKER */
.ticker {
  background: #005C00;
  overflow: hidden;
  user-select: none;
}
.ticker__track {
  display: flex;
  width: max-content;
  animation: guds-marquee 34s linear infinite;
}
.ticker__run {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.ticker__item {
  font-family: var(--font-text);
  font-weight: 700;
  font-size: 19px;
  letter-spacing: -.01em;
  color: var(--bg);
  white-space: nowrap;
  padding: 18px 20px;
}
.ticker__dot {
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--bg);
  opacity: .4;
  flex-shrink: 0;
  margin-inline: 14px;
}
@keyframes guds-marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .ticker__track {
    animation: none;
  }
}

/* FOOTER */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--line);
}
.footer__inner {
  padding-block: 56px 28px;
}
.footer__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 32px;
  flex-wrap: wrap;
  padding-bottom: 44px;
  border-bottom: 1px solid var(--line);
}
.footer__wordmark-wrap {
  padding-bottom: 18px;
  line-height: 1;
}
.footer__tagline {
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--ink);
  margin-bottom: 16px;
  line-height: 1.0;
  max-width: 320px;
}
.footer__insta {
  font-family: var(--font-text);
  font-weight: 700;
  font-size: 15px;
  color: var(--ink);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: opacity var(--dur-fast);
  align-self: flex-end;
  padding-bottom: 2px;
}
.footer__insta:hover {
  opacity: .65;
}
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 22px;
  flex-wrap: wrap;
  gap: 12px;
}
.footer__copy {
  font-family: var(--font-text);
  font-weight: 500;
  font-size: 14px;
  line-height: 1.5;
  color: var(--ink-3);
}

/* ============================================================
   MODAL
   ============================================================ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .82);
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 20px;
  animation: overlay-in var(--dur-base) var(--ease-out) both;
}
.modal-overlay[hidden] {
  display: none;
}
@keyframes overlay-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.modal {
  background: var(--ink);
  color: #fff;
  border-radius: var(--r-lg);
  width: 100%;
  max-width: 780px;
  padding: 20px 16px 18px;
  animation: modal-up var(--dur-base) var(--ease-pop) both;
  max-height: 88dvh;
  max-height: 88vh;
  overflow-y: auto;
}
@media (min-width: 540px) {
  .modal {
    padding: 28px 28px 24px;
  }
}
@media (min-width: 768px) {
  .modal {
    padding: 40px 44px 36px;
  }
}
@keyframes modal-up {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}
.modal__head {
  margin-bottom: 16px;
}
.modal__wordmark {
  font-size: 20px;
  color: var(--volt);
  display: block;
  margin-bottom: 8px;
  padding-bottom: 2px;
}
.modal__title {
  font-family: var(--font-logo);
  font-weight: 400;
  font-size: clamp(22px, 4vw, 44px);
  line-height: .9;
  letter-spacing: -.02em;
  color: #fff;
}
.modal__sub {
  font-family: var(--font-text);
  font-weight: 500;
  font-size: 13px;
  line-height: 1.4;
  color: rgba(255,255,255,.55);
  margin-top: 8px;
}
.modal__cards {
  display: grid;
  gap: 8px;
}
@media (min-width: 460px) {
  .modal__cards {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }
}
.modal__card {
  background: rgba(255,255,255,.05);
  border: 1.5px solid rgba(255,255,255,.12);
  border-radius: var(--r-md);
  padding: 10px;
  text-align: left;
  width: 100%;
  display: flex;
  flex-direction: column;
  transition:
    border-color var(--dur-base),
    background var(--dur-base),
    transform var(--dur-fast) var(--ease-out);
  cursor: pointer;
}
@media (min-width: 460px) {
  .modal__card {
    padding: 12px;
  }
}
.modal__card:hover:not(:disabled) {
  border-color: rgba(255,255,255,.28);
  background: rgba(255,255,255,.08);
}
.modal__card:active:not(:disabled) {
  transform: scale(.98);
}
.modal__card--selected {
  border-color: var(--danger) !important;
  background: rgba(229, 64, 47, .12) !important;
}
.modal__card:disabled {
  cursor: default;
}
.modal__pack {
  aspect-ratio: 1 / 1;
  background: rgba(255,255,255,.06);
  border-radius: var(--r-md);
  display: grid;
  place-items: center;
  overflow: hidden;
  margin-bottom: 12px;
}
.modal__pack .pack-img {
  width: calc(100% - 10% * 2);
}
.modal__card-meta {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 4px;
}
.modal__dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  flex-shrink: 0;
}
.modal__card-name {
  font-family: var(--font-text);
  font-weight: 700;
  font-size: 14px;
  line-height: 1.2;
  color: #fff;
}
.modal__card-taste {
  font-family: var(--font-text);
  font-weight: 500;
  font-size: 12px;
  line-height: 1.4;
  color: rgba(255,255,255,.45);
}
.modal__confirm {
  padding: 24px 0 6px;
  text-align: center;
  animation: modal-up var(--dur-base) var(--ease-pop) both;
}
.modal__confirm[hidden] {
  display: none;
}
.modal__confirm-text {
  font-family: var(--font-logo);
  font-weight: 400;
  font-size: clamp(24px, 3.5vw, 40px);
  letter-spacing: -.02em;
  line-height: .92;
  color: #fff;
}

/* ============================================================
   FLAVOUR VOTE SECTION (on-page)
   ============================================================ */
.fv {
  background: var(--bg);
  border-top: 1px solid var(--line);
}
.fv__inner {
  padding-block: 64px 80px;
}
.fv__header {
  max-width: 720px;
  margin-bottom: 36px;
}
.fv__h2 {
  font-family: var(--font-h2);
  font-weight: 700;
  letter-spacing: -.2px;
  font-size: clamp(26px, 4vw, 48px);
  line-height: 1.02;
  color: var(--ink);
  margin-top: 12px;
  margin-bottom: 0;
}
.fv__sub {
  margin-top: 14px;
}
.fv__grid {
  display: grid;
  gap: 16px;
}
@media (min-width: 640px) {
  .fv__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
  }
}
.fv-card {
  border: 1.5px solid var(--line);
  border-radius: var(--r-lg);
  padding: 14px;
  transition: border-color var(--dur-base);
  background: var(--surface);
}
.fv-card--selected {
  border-color: var(--ink);
}
.fv-card__body {
  margin-top: 14px;
}
.fv-card__name {
  font-family: var(--font-text);
  font-weight: 700;
  font-size: 16px;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 7px;
  margin-top: 5px;
}
.fv-card__dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  flex-shrink: 0;
}
.fv-card__taste {
  font-family: var(--font-text);
  font-weight: 500;
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: -.2px;
  color: var(--ink-2);
  margin-top: 5px;
}
.fv-card__action {
  margin-top: 14px;
}
.fv-vote-btn {
  padding-block: 16px;
  font-size: 17px;
}
.fv-card__result {
  margin-top: 14px;
}
.fv-card__result[hidden] {
  display: none;
}
.fv-result__row {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-text);
  font-weight: 700;
  font-size: 13px;
  color: var(--ink);
  margin-bottom: 6px;
}
.fv-result__track {
  height: 8px;
  border-radius: 999px;
  background: var(--panel);
  overflow: hidden;
}
.fv-result__bar {
  height: 100%;
  border-radius: 999px;
  width: 0%;
  transition: width 600ms var(--ease-out);
}

/* Email input inside dark modal */
.signup-input--modal {
  width: 100%;
  display: block;
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.2);
  color: #fff;
  border-radius: var(--r-pill);
  padding: 14px 18px;
  font-family: var(--font-text);
  font-size: 15px;
  outline: none;
  transition: border-color var(--dur-fast);
  -webkit-appearance: none;
}
.signup-input--modal::placeholder {
  color: rgba(255,255,255,.35);
}
.signup-input--modal:focus {
  border-color: rgba(255,255,255,.5);
}
.vote-modal-form {
  display: flex;
  flex-direction: column;
  gap: 0;
}

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