/* ================================
   Base Reset / Shared Variables
================================ */
* { box-sizing: border-box; }

:root {
  --bar-height: 10vh;
  --btn-size: 88px;
  --ui-gap: 16px;
  --bar-black: #000;
  --ui-font: system-ui, -apple-system, BlinkMacSystemFont,
             "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --ui-grey: rgba(255,255,255,0.78);
}

html, body {
  height: 100%;
  margin: 0;
}

body {
  background: #000;
  color: #fff;
  font-family: var(--ui-font);
  opacity: 0;
  transition: opacity 800ms ease;
}

body.is-ready {
  opacity: 1;
}

/* ================================
   Shared Hero Frame
================================ */
.hero-header {
  position: relative;
  height: 100vh;
  width: 100%;
  background: #000;
  overflow: hidden;
}

.hero-header::before,
.hero-header::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: var(--bar-height);
  background: var(--bar-black);
  z-index: 6;
}

.hero-header::before { top: 0; }
.hero-header::after  { bottom: 0; }

.overlay {
  position: absolute;
  top: var(--bar-height);
  bottom: var(--bar-height);
  left: 0;
  right: 0;
  background: rgba(0,0,0,0.18);
  z-index: 2;
  opacity: 0;
  transition: opacity 900ms ease;
}

body.is-ready .overlay {
  opacity: 1;
}

.bg-video {
  position: absolute;
  top: var(--bar-height);
  bottom: var(--bar-height);
  left: 0;
  width: 100%;
  height: calc(100% - (var(--bar-height) * 2));
  object-fit: cover;
  z-index: 1;
}

/* ================================
   INDEX PAGE (index.html)
================================ */
.hero-header:not(.demo-hero) .ui {
  position: absolute;
  top: calc(var(--bar-height) / 2 - (var(--btn-size) / 2));
  right: 3vw;
  display: flex;
  gap: var(--ui-gap);
  align-items: center;
  z-index: 50;
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 800ms ease, transform 800ms ease;
}

body.is-ready .hero-header:not(.demo-hero) .ui {
  opacity: 1;
  transform: translateY(0);
}

.contact-button {
  height: calc(var(--btn-size) - 10px);
  padding: 0 30px;
  border: none;
  border-radius: 18px;
  background: var(--bar-black);
  color: var(--ui-grey);
  cursor: pointer;
  font-family: var(--ui-font);
  text-transform: uppercase;
  font-weight: 300;
  letter-spacing: 0.16em;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 120ms ease, box-shadow 250ms ease, color 250ms ease;
  outline: none;
  text-decoration: none;
}

.contact-button:hover {
  transform: scale(1.02);
  box-shadow: 0 0 0 1px rgba(255,255,255,0.06);
  color: #fff;
  text-decoration: none;
}

.contact-button:active {
  transform: scale(0.98);
}

.icon-button {
  width: var(--btn-size);
  height: var(--btn-size);
  border: none;
  border-radius: 18px;
  background: var(--bar-black);
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: transform 120ms ease;
  outline: none;
}

.icon-button:hover { transform: scale(1.03); }
.icon-button:active { transform: scale(0.97); }

.icon-button img {
  width: 36px;
  height: 36px;
  opacity: 0.78;
  filter: grayscale(1);
}

.hero-header:not(.demo-hero) .keymailer-quote {
  position: absolute;
  right: 3vw;
  bottom: calc(var(--bar-height) / 2);
  transform: translateY(50%);
  z-index: 12;
  text-align: right;
  width: fit-content;
  max-width: min(800px, calc(100% - 6vw));
  pointer-events: none;
  opacity: 0;
  transition: opacity 900ms ease;
}

body.is-ready .hero-header:not(.demo-hero) .keymailer-quote {
  opacity: 1;
}

.hero-header:not(.demo-hero) .quote-text {
  margin: 0;
  font-style: italic;
  font-size: 22px;
  letter-spacing: 0.06em;
  color: #ffffff;
  opacity: 0.95;
  font-family: var(--ui-font);
}

.hero-header:not(.demo-hero) .quote-attrib {
  margin: 8px 0 0;
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.78);
  font-family: var(--ui-font);
}

/* ================================
   Shared Modal / Accessibility
================================ */
.modal {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 1000;
  font-family: var(--ui-font);
}

.modal.open { display: block; }

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.72);
}

.modal-panel {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(420px, calc(100% - 40px));
  transform: translate(-50%, -50%);
  background: rgba(15, 15, 15, 0.97);
  color: #fff;
  border-radius: 20px;
  padding: 22px;
  box-shadow: 0 25px 70px rgba(0,0,0,0.6);
}

.modal-close {
  position: absolute;
  top: 10px;
  right: 12px;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 12px;
  background: rgba(255,255,255,0.08);
  color: #fff;
  font-size: 22px;
  cursor: pointer;
}

.modal-panel h2 {
  margin: 6px 0 10px;
  font-size: 18px;
  font-weight: 300;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.modal-sub {
  margin: 0 0 16px;
  font-size: 14px;
  opacity: 0.85;
  font-weight: 300;
}

.modal-form {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}

.modal-form input {
  flex: 1;
  min-width: 200px;
  height: 46px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.06);
  color: #fff;
  padding: 0 12px;
  outline: none;
  font-family: var(--ui-font);
  font-weight: 300;
}

.modal-send {
  height: 46px;
  padding: 0 16px;
  border: none;
  border-radius: 12px;
  background: rgba(255,255,255,0.2);
  color: #fff;
  cursor: pointer;
  font-family: var(--ui-font);
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  font-size: 12px;
}

.modal-hint {
  margin-top: 10px;
  font-size: 12px;
  opacity: 0.75;
  font-weight: 300;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

.icon-button:focus-visible,
.contact-button:focus-visible,
.modal-close:focus-visible,
.modal-send:focus-visible,
.modal-form input:focus-visible {
  box-shadow: 0 0 0 2px rgba(255,255,255,0.22);
}

.modal-email {
  margin: 12px 0 18px;
  font-size: 15px;
  font-family: var(--ui-font);
}

.modal-email a,
.modal-sub a {
  color: #ffffff;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.35);
}

.modal-email a:hover,
.modal-sub a:hover {
  border-bottom-color: #ffffff;
}

.modal-note {
  margin-top: 6px;
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.05em;
}

/* ================================
   DEMO PAGE (demo.html)
================================ */
.demo-page {
  background: #000;
  color: #fff;
  position: relative;
  z-index: 2;
}

.demo-body {
  padding-top: 0px;
}

.demo-hero {
  position: relative;
  min-height: 78vh;
  overflow: hidden;
}

.demo-hero::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background: #000;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  z-index: 900;
}

.demo-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 140px;
  background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, #000 100%);
  pointer-events: none;
  z-index: 5;
}

.demo-hero .ui {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 28px;
  padding: 0 7vw;
  z-index: 1000;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("images/Demo_PG_BG.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}

.hero-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("images/grain.png");
  opacity: 0.05;
  mix-blend-mode: overlay;
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, rgba(0,0,0,0) 34%, rgba(0,0,0,0.68) 100%);
}

.demo-hero .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.12);
  z-index: 1;
}

.demo-hero-content {
  position: relative;
  z-index: 12;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 820px;
  padding: 110px 6vw 48px;
}

.demo-kicker {
  margin: 0 0 14px;
  font-family: var(--ui-font);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.82);
  line-height: 1;
  opacity: 0.85;
}

.snarl-logo {
  width: clamp(280px, 32vw, 560px);
  height: auto;
  margin-bottom: 20px;
}

.demo-subtitle {
  margin: 0 0 34px;
  max-width: 560px;
  font-size: clamp(16px, 1.75vw, 21px);
  line-height: 1.65;
  letter-spacing: 0.01em;
  color: rgba(255,255,255,0.92);
  font-family: var(--ui-font);
  font-weight: 300;
}

.demo-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.demo-hero-actions.centered {
  justify-content: center;
}

.demo-primary-button,
.demo-secondary-button {
  min-height: 52px;
  padding: 0 22px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-family: var(--ui-font);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 12px;
  cursor: pointer;
  transition: opacity 0.2s ease, transform 0.12s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.demo-primary-button {
  background: rgba(255,255,255,0.10);
  color: rgba(255,255,255,0.95);
  border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(6px);
}

.demo-secondary-button {
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.88);
  border: 1px solid rgba(255,255,255,0.16);
  backdrop-filter: blur(6px);
}

.demo-primary-button:hover,
.demo-secondary-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 0 1px rgba(255,255,255,0.08);
  text-decoration: none;
}

.demo-primary-button:active,
.demo-secondary-button:active {
  transform: none;
  box-shadow: none;
}

.demo-strapline {
  position: absolute;
  left: 6vw;
  bottom: 100px;
  width: 800px;
  max-width: 78vw;
  height: auto;
  z-index: 30;
  pointer-events: none;
  opacity: 0.95;
}

#back-to-top {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  background: transparent !important;
  border: none !important;
  color: #fff !important;
  font-size: 16px;
  line-height: 1;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease;
  text-decoration: none;
  z-index: 1001;
}

#back-to-top.show {
  opacity: 0.8;
  visibility: visible;
  pointer-events: auto;
}

#back-to-top.show:hover {
  opacity: 1;
  text-decoration: none;
}

.ui a,
.ui button,
.nav-link,
.nav-button {
  background: none !important;
  border: none !important;
  padding: 0 !important;
  font-family: var(--ui-font);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 12px;
  color: rgba(255,255,255,0.78);
  cursor: pointer;
  transition: opacity 0.2s ease, color 0.2s ease;
  text-decoration: none;
}

.ui a:hover,
.ui button:hover,
.nav-link:hover,
.nav-button:hover {
  color: #fff;
  opacity: 1;
  text-decoration: none;
}

.demo-page section {
  scroll-margin-top: 100px;
}

.demo-section {
  padding: 90px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}

#walkthrough {
  padding-top: 20px;
}

.demo-wrap {
  width: min(1200px, calc(100% - 10vw));
  margin: 0 auto;
}

.demo-wrap.narrow {
  width: min(760px, calc(100% - 10vw));
}

.demo-section h2 {
  margin: 0 0 24px;
  font-family: var(--ui-font);
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: clamp(26px, 3vw, 36px);
  color: #fff;
}

.demo-section h3 {
  margin: 0 0 16px;
  font-family: var(--ui-font);
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 16px;
  color: #fff;
}

.video-length {
  font-size: 12px;
  margin-left: 10px;
  padding: 4px 8px;
  border-radius: 6px;
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.8);
  font-family: var(--ui-font);
  letter-spacing: 0.1em;
}

.demo-section p,
.demo-footer p,
.demo-list,
.demo-meta-strip {
  font-family: var(--ui-font);
  font-weight: 300;
  color: rgba(255,255,255,0.84);
}

.demo-section p {
  font-size: 17px;
  line-height: 1.75;
  margin: 0 0 16px;
}

.section-intro {
  margin-bottom: 30px !important;
  max-width: 640px;
  font-size: 18px;
  line-height: 1.75;
  color: rgba(255,255,255,0.82);
}

.features-section {
  text-align: left;
}

.features-section h2 {
  text-align: left;
  margin-bottom: 18px;
  letter-spacing: 0.08em;
}

.feature-list {
  list-style: none;
  margin: 30px 0 0;
  padding: 0;
}

.feature-list li {
  margin-bottom: 14px;
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255,255,255,0.85);
}

.video-grid.single {
  display: grid;
  grid-template-columns: 1fr;
}

.video-card,
.info-card,
.download-card,
.build-notes {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 22px;
  overflow: hidden;
}

.video-card {
  position: relative;
  background: #050505;
  transition: transform 0.25s ease, box-shadow 0.35s ease;
}

.video-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 35px 70px rgba(0,0,0,0.75);
}

.video-container {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 18px;
  background: #000;
}

.video-container iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.demo-meta-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0 0 26px;
}

.demo-meta-strip span {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  font-size: 13px;
  letter-spacing: 0.04em;
}

.demo-list {
  margin: 0;
  padding-left: 18px;
  line-height: 1.8;
  font-size: 15px;
}

.download-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-bottom: 26px;
}

.download-card {
  min-height: 170px;
  padding: 28px;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border-radius: 22px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  transition: transform .18s ease, box-shadow .25s ease, border-color .25s ease;
}

.download-card:hover,
.download-card:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(255,255,255,0.25);
  box-shadow: 0 18px 40px rgba(0,0,0,0.6);
  text-decoration: none;
}

.download-label {
  display: block;
  color: #fff;
  font-family: var(--ui-font);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 16px;
  margin-bottom: 6px;
}

.download-meta {
  display: block;
  color: rgba(255,255,255,0.65);
  font-family: var(--ui-font);
  font-size: 14px;
}

.demo-disclaimer {
  margin-top: 28px;
  text-align: center;
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255,255,255,0.55);
  font-family: var(--ui-font);
}

.build-notes {
  padding: 24px;
}

.two-column-notes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.notes-col h3 {
  margin-bottom: 16px;
}

.notes-col ul {
  margin: 0;
  padding-left: 18px;
}

.notes-col li {
  margin-bottom: 10px;
  line-height: 1.5;
}

.project-status-line {
  grid-column: 1 / -1;
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-family: var(--ui-font);
  font-size: 13px;
  line-height: 1.6;
  letter-spacing: 0.02em;
  color: rgba(255,255,255,0.65);
  text-align: center;
}

.project-status-line strong {
  color: rgba(255,255,255,0.88);
  font-weight: 400;
}

.screenshot-section {
  padding-top: 30px;
  padding-bottom: 70px;
}

.screenshot-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.screenshot-strip img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 16px;
  background: #000;
  transform: scale(1);
  transition: transform 0.45s ease, filter 0.45s ease;
  box-shadow: 0 20px 40px rgba(0,0,0,0.35);
}

.screenshot-strip img:hover {
  transform: scale(1.035);
  filter: brightness(1.08);
}

.press-quote {
  text-align: center;
  padding: 60px 6vw 40px;
}

.press-quote .quote-text {
  font-size: 26px;
  line-height: 1.4;
  font-style: italic;
  color: rgba(255,255,255,0.92);
}

.press-quote .quote-source {
  margin-top: 12px;
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.04em;
}

.demo-footer-cta {
  text-align: center;
}

.publisher-line {
  margin-top: 8px;
  color: rgba(255,255,255,0.7);
}

.demo-footer {
  padding: 30px 5vw 50px;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.08);
  background: #000;
}

.demo-footer p {
  margin: 0;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.56);
}

/* Shared links */
a {
  color: #ffffff;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.logo-home {
  display: inline-block;
}

.logo-home:hover {
  opacity: 0.85;
  text-decoration: none;
}

/* ================================
   Responsive
================================ */
@media (max-width: 1100px) {
  .demo-strapline {
    width: 70vw;
  }
}

@media (max-width: 980px) {
  .download-grid,
  .two-column-notes {
    grid-template-columns: 1fr;
  }

  .demo-hero-content {
    padding: 120px 6vw 100px;
    max-width: 800px;
  }
}

@media (max-width: 900px) {
  :root {
    --bar-height: 14vh;
    --btn-size: 72px;
    --ui-gap: 12px;
  }

  .contact-button {
    padding: 0 18px;
    font-size: 12px;
    letter-spacing: 0.12em;
    border-radius: 14px;
  }

  .icon-button {
    border-radius: 14px;
  }

  .icon-button img {
    width: 28px;
    height: 28px;
  }

  .hero-header:not(.demo-hero) .quote-text {
    font-size: 18px;
  }

  .hero-header:not(.demo-hero) .quote-attrib {
    font-size: 9px;
  }

  .hero-header:not(.demo-hero) .ui {
    right: 4vw;
    gap: 10px;
  }

  .demo-hero .ui {
    gap: 18px;
    padding: 0 5vw;
  }

  .two-column-notes {
    gap: 30px;
  }

  .screenshot-strip {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  :root {
    --bar-height: 12vh;
    --btn-size: 58px;
  }
	
	@media (max-width: 640px) {

  :root {
    --bar-height: 12vh;
    --btn-size: 58px;
  }

  /* --- NAV BAR --- */

  .ui {
    padding: 0 12px;
    gap: 10px;
    justify-content: space-between;
  }

  .ui a,
  .ui button {
    font-size: 11px;
    letter-spacing: 0.06em;
  }

  /* Hide less important nav links on phones */
  .ui a[href="#trailer"],
  .ui a[href="#walkthrough"] {
    display: none;
  }


  /* --- HERO LAYOUT --- */

  .demo-hero-content {
    padding: 90px 20px 40px;
    max-width: 100%;
  }


  /* --- LOGO --- */

  .snarl-logo {
    width: min(80vw, 360px);
  }


  /* --- HERO TEXT --- */

  .demo-subtitle {
    font-size: 15px;
    line-height: 1.55;
    max-width: 100%;
  }


  /* --- STRAPLINE (IMPORTANT) --- */

  .demo-strapline {
    left: 50%;
    transform: translateX(-50%);
    width: 90vw;
    bottom: 80px;
    max-width: none;
  }


  /* --- HERO BUTTONS --- */

  .demo-hero-actions {
    flex-direction: column;
    gap: 12px;
    width: 100%;
  }

  .demo-primary-button,
  .demo-secondary-button {
    width: 100%;
    justify-content: center;
  }

}

  .hero-header:not(.demo-hero) .ui {
    right: 4vw;
    gap: 10px;
  }

  .contact-button {
    height: calc(var(--btn-size) - 8px);
    padding: 0 14px;
    font-size: 11px;
    letter-spacing: 0.1em;
  }

  .icon-button {
    width: var(--btn-size);
    height: var(--btn-size);
  }

  .hero-header:not(.demo-hero) .quote-text {
    font-size: 16px;
  }

  .hero-header:not(.demo-hero) .keymailer-quote {
    right: 4vw;
    max-width: calc(100% - 8vw);
  }

  .demo-hero {
    min-height: 70vh;
  }

  .demo-hero .ui {
    padding: 0 4vw;
    gap: 10px;
  }

  .demo-hero-content {
    padding: 95px 6vw 70px;
    max-width: 620px;
  }

  .demo-section {
    padding: 68px 0;
  }

  #walkthrough {
    padding-top: 10px;
  }

  .demo-wrap,
  .demo-wrap.narrow {
    width: calc(100% - 8vw);
  }

  .demo-subtitle {
    max-width: 520px;
  }

  .demo-primary-button,
  .demo-secondary-button {
    width: 100%;
  }

  .demo-hero-actions {
    width: 100%;
    flex-direction: column;
  }

  .demo-meta-strip {
    flex-direction: column;
    align-items: stretch;
  }

  .project-status-line {
    font-size: 13px;
  }

  .modal-panel {
    width: min(92vw, 420px);
    padding: 20px;
  }

  .modal-form {
    flex-direction: column;
    align-items: stretch;
  }

  .modal-send {
    width: 100%;
  }
}
