/* SimplyBowl promotional site — SaltyYak Apps */

:root {
  --navy: #0d2475;
  --navy-mid: #1b4588;
  --navy-deep: #080040;
  --teal: #028891;
  --teal-glow: rgba(2, 136, 145, 0.45);
  --gold: #f2c94c;
  --gold-dark: #d4a82a;
  --green: #00ce52;
  --white: #ffffff;
  --mist: rgba(255, 255, 255, 0.72);
  --glass: rgba(13, 36, 117, 0.55);
  --shadow: 0 24px 80px rgba(8, 0, 64, 0.45);
  --radius: 16px;
  --radius-lg: 28px;
  --font: "Outfit", system-ui, sans-serif;
  --font-display: "Fraunces", Georgia, serif;
  --safe-top: env(safe-area-inset-top, 0px);
  --safe-right: env(safe-area-inset-right, 0px);
  --safe-bottom: env(safe-area-inset-bottom, 0px);
  --safe-left: env(safe-area-inset-left, 0px);
  --header-base: 64px;
  --header-h: calc(var(--header-base) + var(--safe-top));
  --sticky-cta-h: 3.75rem;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

@media (min-width: 768px) {
  :root {
    --header-base: 72px;
  }
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--white);
  background: linear-gradient(165deg, var(--navy-deep) 0%, var(--navy) 35%, #0a1a4a 100%);
  overflow-x: hidden;
}

img,
video {
  max-width: 100%;
  display: block;
}

a {
  color: var(--gold);
  text-decoration: none;
  transition: color 0.2s var(--ease), opacity 0.2s var(--ease);
}

a:hover {
  color: var(--white);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  z-index: 9999;
  padding: 0.75rem 1rem;
  background: var(--gold);
  color: var(--navy-deep);
  border-radius: 8px;
  font-weight: 700;
}

.skip-link:focus {
  top: calc(1rem + var(--safe-top));
  left: calc(1rem + var(--safe-left));
}

.container {
  width: min(1120px, 100%);
  margin-inline: auto;
  padding-left: max(1.25rem, var(--safe-left));
  padding-right: max(1.25rem, var(--safe-right));
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.85rem 1.5rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s var(--ease);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn--gold {
  background: linear-gradient(135deg, var(--gold) 0%, #ffe082 100%);
  color: var(--navy-deep);
  box-shadow: 0 8px 32px rgba(242, 201, 76, 0.35);
}

.btn--gold:hover {
  color: var(--navy-deep);
  box-shadow: 0 12px 40px rgba(242, 201, 76, 0.5);
}

.btn--primary {
  background: var(--teal);
  color: var(--white);
  box-shadow: 0 8px 28px var(--teal-glow);
}

.btn--primary:hover {
  color: var(--white);
  background: #03a0ab;
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.25);
  color: var(--white);
  backdrop-filter: blur(8px);
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
}

.btn--lg {
  padding: 1rem 1.75rem;
  font-size: 1.05rem;
}

.btn--small {
  padding: 0.55rem 1.1rem;
  font-size: 0.9rem;
}

.store-icon {
  width: 1.35rem;
  height: 1.35rem;
}

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header-h);
  padding-top: var(--safe-top);
  transition: background 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.site-header.is-scrolled {
  background: rgba(8, 0, 64, 0.88);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-base);
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--white);
}

.brand:hover {
  color: var(--white);
}

.brand-mark {
  flex-shrink: 0;
}

.brand-text {
  font-weight: 800;
  font-size: 1.15rem;
  line-height: 1;
  letter-spacing: -0.02em;
}

.brand-salty {
  color: var(--gold);
}

.brand-yak {
  color: var(--white);
}

.brand-text small {
  font-size: 0.65em;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.55);
  margin-left: 0.15em;
}

.brand--footer {
  margin-bottom: 0.75rem;
}

.nav {
  display: none;
  gap: 1.75rem;
}

.nav a {
  color: var(--mist);
  font-weight: 500;
  font-size: 0.95rem;
}

.nav a:hover {
  color: var(--white);
}

.header-cta {
  display: none;
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: none;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 2px;
  width: 22px;
  margin-inline: auto;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav {
  position: fixed;
  inset: var(--header-h) 0 auto;
  z-index: 99;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem max(1.5rem, var(--safe-right)) 1.5rem max(1.5rem, var(--safe-left));
  background: rgba(8, 0, 64, 0.97);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-nav[hidden] {
  display: none;
}

.mobile-nav a {
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 600;
}

@media (min-width: 900px) {
  .nav,
  .header-cta {
    display: flex;
  }

  .nav-toggle,
  .mobile-nav {
    display: none !important;
  }
}

/* Hero */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: calc(var(--header-h) + 2rem) 0 4rem;
  overflow: hidden;
}

.hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: url("../assets/hero-poster.svg") center / cover no-repeat;
  background-color: var(--navy-deep);
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

html.hero-static .hero-video {
  display: none;
}

html.hero-static .hero-video-overlay {
  background:
    linear-gradient(180deg, rgba(8, 0, 64, 0.35) 0%, rgba(13, 36, 117, 0.55) 50%, rgba(8, 0, 64, 0.8) 100%),
    radial-gradient(ellipse 70% 45% at 50% 15%, rgba(2, 136, 145, 0.2), transparent 65%);
}

.hero-video-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 0, 64, 0.55) 0%, rgba(13, 36, 117, 0.75) 45%, rgba(8, 0, 64, 0.92) 100%),
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(2, 136, 145, 0.25), transparent 60%);
}

.hero-pins {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.15;
}

.pin {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 20px var(--gold);
  animation: pin-float 6s var(--ease) infinite;
}

.pin--1 { top: 18%; left: 12%; animation-delay: 0s; }
.pin--2 { top: 25%; left: 22%; animation-delay: 0.4s; }
.pin--3 { top: 15%; left: 35%; animation-delay: 0.8s; }
.pin--4 { top: 22%; right: 30%; animation-delay: 1.2s; }
.pin--5 { top: 12%; right: 18%; animation-delay: 0.2s; }
.pin--6 { bottom: 35%; left: 8%; animation-delay: 1.6s; }
.pin--7 { bottom: 28%; right: 12%; animation-delay: 2s; }
.pin--8 { top: 40%; left: 5%; animation-delay: 0.6s; }
.pin--9 { top: 35%; right: 8%; animation-delay: 1s; }
.pin--10 { bottom: 20%; left: 45%; animation-delay: 1.4s; }

@keyframes pin-float {
  0%, 100% { transform: translateY(0) scale(1); opacity: 0.6; }
  50% { transform: translateY(-12px) scale(1.15); opacity: 1; }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.eyebrow {
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mist);
  margin: 0 0 1rem;
}

.eyebrow strong {
  color: var(--gold);
}

.hero-title {
  margin: 0 0 1.25rem;
}

.hero-title-app {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(3rem, 10vw, 5.5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, var(--white) 0%, var(--gold) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-title-tag {
  display: block;
  margin-top: 0.35rem;
  font-size: clamp(1.35rem, 4vw, 2rem);
  font-weight: 600;
  color: var(--mist);
  line-height: 1.25;
}

.hero-lead {
  max-width: 36rem;
  margin: 0 auto 2rem;
  font-size: 1.15rem;
  color: var(--mist);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 2.5rem;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem 3rem;
  list-style: none;
  margin: 0;
  padding: 1.5rem 2rem;
  background: var(--glass);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(12px);
  max-width: 36rem;
  margin-inline: auto;
}

.hero-stats li {
  text-align: center;
}

.hero-stats strong {
  display: block;
  font-size: 1.35rem;
  color: var(--gold);
}

.hero-stats span {
  font-size: 0.85rem;
  color: var(--mist);
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: 28px;
  height: 44px;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-radius: 14px;
}

.hero-scroll span {
  position: absolute;
  top: 8px;
  left: 50%;
  width: 4px;
  height: 8px;
  margin-left: -2px;
  background: var(--gold);
  border-radius: 2px;
  animation: scroll-dot 2s var(--ease) infinite;
}

@keyframes scroll-dot {
  0%, 100% { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(14px); opacity: 0; }
}

/* Trust strip */
.trust {
  padding: 2rem 0;
  background: rgba(0, 0, 0, 0.2);
  border-block: 1px solid rgba(255, 255, 255, 0.06);
}

.trust-inner p {
  margin: 0;
  text-align: center;
  font-size: 1.1rem;
  color: var(--mist);
  max-width: 40rem;
  margin-inline: auto;
}

/* Sections */
.section-head {
  text-align: center;
  margin-bottom: 3rem;
}

.section-label {
  display: inline-block;
  margin: 0 0 0.5rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
}

.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 2.75rem);
  margin: 0 0 0.75rem;
  line-height: 1.15;
}

.section-desc {
  margin: 0 auto;
  max-width: 32rem;
  color: var(--mist);
}

.features {
  padding: 5rem 0;
}

.feature-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 960px) {
  .feature-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.feature-card {
  padding: 1.75rem;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  transition: transform 0.35s var(--ease), border-color 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(242, 201, 76, 0.35);
  box-shadow: var(--shadow);
}

.feature-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 1rem;
  color: var(--gold);
}

.feature-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.2rem;
}

.feature-card p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--mist);
}

/* Showcase */
.showcase {
  padding: 5rem 0;
  background: linear-gradient(180deg, transparent, rgba(2, 136, 145, 0.08), transparent);
}

.showcase-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 900px) {
  .showcase-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.showcase-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.5rem);
  margin: 0 0 1rem;
  line-height: 1.2;
}

.showcase-copy p {
  color: var(--mist);
  margin: 0 0 1.5rem;
}

.phone-mock {
  display: flex;
  justify-content: center;
}

.phone-frame {
  width: min(280px, 85vw);
  padding: 12px;
  background: linear-gradient(160deg, #2a2a2a, #111);
  border-radius: 36px;
  box-shadow: var(--shadow), 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.phone-screen {
  background: #f1f1f1;
  border-radius: 26px;
  overflow: hidden;
  color: var(--navy);
}

.mock-header {
  padding: 1rem;
  background: var(--navy);
  color: var(--white);
  font-weight: 700;
  text-align: center;
  font-size: 0.95rem;
}

.mock-scorecard {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 4px;
  padding: 12px 8px;
  background: #c0c0c0;
}

.mock-frame {
  background: var(--white);
  border-radius: 6px;
  padding: 6px 4px;
  text-align: center;
  font-size: 0.7rem;
  font-weight: 700;
  min-height: 52px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.mock-frame--active {
  background: rgba(134, 154, 255, 0.45);
  outline: 2px solid var(--navy);
}

.mock-frame small {
  font-size: 0.55rem;
  color: #555;
  font-weight: 600;
}

.mock-actions {
  display: flex;
  gap: 8px;
  padding: 12px;
  background: var(--white);
}

.mock-btn {
  flex: 1;
  padding: 10px;
  text-align: center;
  border-radius: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  background: #e3e1e1;
  color: var(--navy);
}

.mock-btn--strike {
  background: var(--navy);
  color: var(--white);
}

/* Video */
.video-section {
  padding: 5rem 0;
}

.video-player {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: #000;
}

.video-player video {
  width: 100%;
  aspect-ratio: 16 / 9;
}

/* How */
.how {
  padding: 5rem 0;
}

.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .steps {
    grid-template-columns: repeat(3, 1fr);
  }
}

.step {
  position: relative;
  padding: 2rem 1.5rem 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  margin-bottom: 1rem;
  background: var(--gold);
  color: var(--navy-deep);
  font-weight: 800;
  border-radius: 50%;
  font-size: 1.1rem;
}

.step h3 {
  margin: 0 0 0.5rem;
  font-size: 1.15rem;
}

.step p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--mist);
}

/* CTA banner */
.cta-banner {
  padding: 4rem 0;
}

.cta-banner-inner {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 2.5rem;
  background: linear-gradient(135deg, var(--navy-mid), var(--teal));
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

@media (min-width: 768px) {
  .cta-banner-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.cta-banner h2 {
  font-family: var(--font-display);
  margin: 0 0 0.35rem;
  font-size: 1.75rem;
}

.cta-banner p {
  margin: 0;
  color: rgba(255, 255, 255, 0.85);
}

/* FAQ */
.faq {
  padding: 5rem 0 6rem;
}

.faq-list {
  max-width: 40rem;
  margin-inline: auto;
}

.faq-item {
  margin-bottom: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
  overflow: hidden;
}

.faq-item summary {
  padding: 1.1rem 1.25rem;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  font-size: 1.25rem;
  color: var(--gold);
  transition: transform 0.25s var(--ease);
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item p {
  margin: 0;
  padding: 0 1.25rem 1.25rem;
  color: var(--mist);
  font-size: 0.95rem;
}

/* Footer */
.site-footer {
  padding: 3rem 0 calc(5rem + var(--safe-bottom));
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.25);
}

.footer-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr;
  }
}

.footer-brand p {
  color: var(--mist);
  font-size: 0.95rem;
  max-width: 22rem;
}

.footer-links h3 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin: 0 0 0.75rem;
}

.footer-links a {
  display: block;
  color: var(--mist);
  margin-bottom: 0.35rem;
}

.footer-note {
  font-size: 0.85rem;
  color: var(--mist);
  margin: 0;
}

.footer-note code {
  font-size: 0.8rem;
  background: rgba(255, 255, 255, 0.08);
  padding: 0.15rem 0.4rem;
  border-radius: 4px;
}

.footer-bottom {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-bottom p {
  margin: 0;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.45);
}

/* Sticky CTA */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem max(1.25rem, var(--safe-right)) calc(0.85rem + var(--safe-bottom)) max(1.25rem, var(--safe-left));
  background: rgba(8, 0, 64, 0.95);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(242, 201, 76, 0.3);
  transform: translateY(100%);
  transition: transform 0.4s var(--ease);
}

.sticky-cta.is-visible {
  transform: translateY(0);
}

.sticky-cta[hidden] {
  display: none;
}

.sticky-cta p {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 600;
}

/* Reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 767px) {
  .hero {
    padding: calc(var(--header-h) + 1.25rem) 0 calc(2.5rem + var(--safe-bottom));
  }

  .hero-pins {
    display: none;
  }

  .hero-lead {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    margin-bottom: 1.75rem;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-stats {
    gap: 0.75rem 1rem;
    padding: 1rem 1rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }

  .hero-stats strong {
    font-size: 1.1rem;
  }

  .hero-stats span {
    font-size: 0.75rem;
  }

  .hero-scroll {
    bottom: calc(1rem + var(--safe-bottom));
  }

  .brand-text {
    font-size: 1rem;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
  }

  .section-head {
    margin-bottom: 2rem;
  }

  .features,
  .showcase,
  .video-section,
  .how,
  .faq {
    padding-block: 3.5rem;
  }

  .cta-banner {
    padding-block: 3rem;
  }

  .cta-banner-inner {
    padding: 1.75rem;
  }

  .site-footer {
    padding-bottom: calc(6.5rem + var(--safe-bottom));
  }

  .sticky-cta p {
    font-size: 0.82rem;
    line-height: 1.3;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .pin,
  .hero-scroll span {
    animation: none;
  }

  .hero-video {
    display: none;
  }

  .hero-video-overlay {
    background:
      linear-gradient(180deg, rgba(8, 0, 64, 0.35) 0%, rgba(13, 36, 117, 0.55) 50%, rgba(8, 0, 64, 0.8) 100%);
  }
}
