/*=== Media Query ===*/
/* /////////////////////////// 
    Header Area
//////////////////////////// */
/* ==========================================================
   SUPASTE-INSPIRED NAVIGATION
   Typeface: Inter
   Structure: logo left / links centred / CTA right
   ========================================================== */

:root {
  --nav-bg: #FFA02E;
  --nav-text: #1f1f1f;
  --nav-muted: #090909;
  --nav-border: rgba(255, 255, 255, 0.10);
  --nav-hover: rgba(255, 255, 255, 0.10);
  --nav-cta-bg: #ffffff;
  --nav-cta-text: #090909;
  --nav-radius: 18px;
  --nav-height: 62px;
}

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  padding: 16px 18px 0;
  background: transparent;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.site-header .container {
  width: 100%;
  max-width: 1240px;
  padding: 0;
}

.supaste-nav {
  position: relative;
  display: grid;
  grid-template-columns: minmax(180px, 1fr) auto minmax(180px, 1fr);
  align-items: center;
  min-height: var(--nav-height);
  padding: 7px 9px 7px 17px;
  overflow: visible;
  border: 1px solid var(--nav-border);
  border-radius: var(--nav-radius);
  background: var(--nav-bg);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.06) inset,
    0 18px 46px rgba(0, 0, 0, 0.16);
  opacity: 0;
  transform: translateY(-12px);
  animation: supasteNavEnter 700ms cubic-bezier(.22, 1, .36, 1) 100ms forwards;
}

@keyframes supasteNavEnter {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Logo */
.supaste-brand {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  gap: 9px;
  min-width: 0;
  color: var(--nav-text);
  text-decoration: none !important;
}

.supaste-brand__icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  flex: 0 0 52px;
  overflow: hidden;
}

.supaste-brand__icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.supaste-brand__name {
  color: var(--nav-text);
  font-size: 18px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.035em;
  white-space: nowrap;
}

.supaste-brand:hover .supaste-brand__icon {
  transform: rotate(-5deg) scale(1.06);
}

/* Desktop links */
.supaste-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.supaste-menu li {
  margin: 0;
  padding: 0;
}

.supaste-menu a {
  position: relative;
  display: block;
  height: 38px;
  padding: 0 14px;
  overflow: hidden;
  border-radius: 11px;
  color: var(--nav-muted);
  font-size: 18px;
  font-weight: 600;
  line-height: 38px;
  letter-spacing: -0.025em;
  text-decoration: none !important;
  transition:
    color 280ms ease,
    background-color 280ms ease,
    transform 280ms cubic-bezier(.22, 1, .36, 1);
}

.supaste-menu a::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: var(--nav-hover);
  opacity: 0;
  transform: scale(.86);
  transition:
    opacity 280ms ease,
    transform 360ms cubic-bezier(.22, 1, .36, 1);
}

.supaste-menu a:hover,
.supaste-menu a:focus-visible,
.supaste-menu a.is-active {
  color: var(--nav-text);
  transform: translateY(-1px);
}

.supaste-menu a:hover::before,
.supaste-menu a:focus-visible::before,
.supaste-menu a.is-active::before {
  opacity: 1;
  transform: scale(1);
}

/* Supaste-like rolling text hover */
.supaste-menu__roll {
  position: relative;
  z-index: 1;
  display: block;
  height: 38px;
  transition: transform 480ms cubic-bezier(.22, 1, .36, 1);
}

.supaste-menu__roll > span {
  display: block;
  height: 38px;
  white-space: nowrap;
}

.supaste-menu a:hover .supaste-menu__roll,
.supaste-menu a:focus-visible .supaste-menu__roll {
  transform: translateY(-38px);
}

/* CTA */
.supaste-nav__actions {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 8px;
}

.supaste-download {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 46px;
  padding: 0 19px;
  overflow: hidden;
  border: 0;
  border-radius: 13px;
  background: var(--nav-cta-bg);
  color: var(--nav-cta-text) !important;
  font-size: 13px;
  font-weight: 650;
  line-height: 1;
  letter-spacing: -0.025em;
  text-decoration: none !important;
  box-shadow: 0 1px 0 rgba(255, 255, 255, .5) inset;
  transition:
    transform 380ms cubic-bezier(.22, 1, .36, 1),
    box-shadow 380ms ease,
    background-color 280ms ease;
}

.supaste-download::before {
  content: "";
  position: absolute;
  top: -70%;
  left: -30%;
  width: 32%;
  height: 240%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.75), transparent);
  transform: rotate(20deg) translateX(-220%);
  transition: transform 700ms cubic-bezier(.22, 1, .36, 1);
}

.supaste-download:hover {
  color: #000 !important;
  background: #f1f1f1;
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(0, 0, 0, .24);
}

.supaste-download:hover::before {
  transform: rotate(20deg) translateX(520%);
}

.supaste-download__arrow {
  display: inline-flex;
  font-size: 15px;
  transition: transform 380ms cubic-bezier(.22, 1, .36, 1);
}

.supaste-download:hover .supaste-download__arrow {
  transform: translate(2px, -2px);
}

/* Mobile toggle */
.supaste-menu-toggle {
  display: none;
  position: relative;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 0;
  border-radius: 12px;
  background: transparent;
  cursor: pointer;
}

.supaste-menu-toggle span {
  position: absolute;
  left: 11px;
  width: 20px;
  height: 1.5px;
  border-radius: 10px;
  background: var(--nav-text);
  transition:
    top 360ms cubic-bezier(.22, 1, .36, 1),
    transform 360ms cubic-bezier(.22, 1, .36, 1),
    opacity 220ms ease;
}

.supaste-menu-toggle span:nth-child(1) { top: 15px; }
.supaste-menu-toggle span:nth-child(2) { top: 21px; }
.supaste-menu-toggle span:nth-child(3) { top: 27px; }

.supaste-menu-toggle[aria-expanded="true"] span:nth-child(1) {
  top: 21px;
  transform: rotate(45deg);
}

.supaste-menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
  transform: translateX(5px);
}

.supaste-menu-toggle[aria-expanded="true"] span:nth-child(3) {
  top: 21px;
  transform: rotate(-45deg);
}

.supaste-mobile-panel {
  display: none;
}

/* Tablet/mobile */
@media (max-width: 991.98px) {
  .site-header {
    padding: 10px 14px 0;
  }

  .supaste-nav {
    display: flex;
    justify-content: space-between;
    min-height: 48px;
    padding: 5px 6px 5px 8px;
    border-radius: 0 0 17px 17px;
  }

  .supaste-brand {
    gap: 7px;
  }

  .supaste-brand__icon {
    width: 25px;
    height: 25px;
    flex-basis: 25px;
    border-radius: 7px;
  }

  .supaste-brand__name {
    font-size: 13px;
  }

  .supaste-menu,
  .supaste-nav__actions {
    display: none;
  }

  .supaste-menu-toggle {
    display: block;
  }

  .supaste-mobile-panel {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    left: 0;
    display: block;
    padding: 8px;
    visibility: hidden;
    border: 1px solid var(--nav-border);
    border-radius: 17px;
    background: rgba(5, 5, 5, .97);
    box-shadow: 0 22px 60px rgba(0, 0, 0, .30);
    opacity: 0;
    transform: translateY(-10px) scale(.98);
    transform-origin: top center;
    pointer-events: none;
    transition:
      opacity 320ms ease,
      transform 440ms cubic-bezier(.22, 1, .36, 1),
      visibility 0s linear 440ms;
  }

  .supaste-nav.is-open .supaste-mobile-panel {
    visibility: visible;
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
    transition-delay: 0s;
  }

  .supaste-mobile-panel a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 48px;
    padding: 0 14px;
    border-radius: 12px;
    color: rgba(255,255,255,.78);
    font-size: 15px;
    font-weight: 500;
    letter-spacing: -0.025em;
    text-decoration: none !important;
    opacity: 0;
    transform: translateY(-7px);
    transition:
      color 220ms ease,
      background-color 220ms ease,
      opacity 320ms ease,
      transform 420ms cubic-bezier(.22, 1, .36, 1);
  }

  .supaste-nav.is-open .supaste-mobile-panel a {
    opacity: 1;
    transform: translateY(0);
  }

  .supaste-nav.is-open .supaste-mobile-panel a:nth-child(1) { transition-delay: 50ms; }
  .supaste-nav.is-open .supaste-mobile-panel a:nth-child(2) { transition-delay: 90ms; }
  .supaste-nav.is-open .supaste-mobile-panel a:nth-child(3) { transition-delay: 130ms; }
  .supaste-nav.is-open .supaste-mobile-panel a:nth-child(4) { transition-delay: 170ms; }

  .supaste-mobile-panel .supaste-mobile-download {
    justify-content: center;
    margin-top: 6px;
    background: var(--nav-text);
    color: #050505;
    font-weight: 650;
  }
}

@media (max-width: 575.98px) {
  .site-header {
    padding-top: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .supaste-nav,
  .supaste-nav *,
  .supaste-nav *::before,
  .supaste-nav *::after {
    animation: none !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .supaste-nav {
    opacity: 1;
    transform: none;
  }
}

/* ==========================================================
   DESKTOP SHAPE CORRECTION
   Matches the reference form: top-attached black navigation
   with square top corners and deep rounded bottom corners.
   ========================================================== */
@media (min-width: 992px) {
  .site-header {
    padding: 16px 0 0;
    background: transparent;
  }

  .site-header > .container {
    width: calc(100% - 96px);
    max-width: 1440px;
    margin-right: auto;
    margin-left: auto;
    padding-right: 0;
    padding-left: 0;
  }

  .supaste-nav {
    min-height: 66px;
    padding: 7px 11px 7px 13px;
    border: 0;
    border-radius: 0 0 24px 24px;
    background: var(--nav-bg);
    box-shadow: none;
  }

  .supaste-brand {
    gap: 12px;
  }

  .supaste-brand__icon {
    width: 52px;
    height: 52px;
    flex-basis: 52px;
  }

  .supaste-brand__name {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: -0.045em;
  }

  .supaste-menu {
    gap: 0;
  }

  .supaste-menu a {
    height: 40px;
    padding: 0 13px;
    border-radius: 10px;
    font-size: 16px;
    line-height: 40px;
    letter-spacing: -0.04em;
  }

  .supaste-menu__roll,
  .supaste-menu__roll > span {
    height: 40px;
  }

  .supaste-menu a:hover .supaste-menu__roll,
  .supaste-menu a:focus-visible .supaste-menu__roll {
    transform: translateY(-40px);
  }

  .supaste-download {
    height: 42px;
    padding: 0 18px;
    border-radius: 11px;
    font-size: 15px;
  }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
  .site-header > .container {
    width: calc(100% - 48px);
  }

  .supaste-menu a {
    padding-right: 10px;
    padding-left: 10px;
    font-size: 14px;
  }

  .supaste-brand__name {
    font-size: 16px;
  }
}

/* ==========================================================
   EXACT SUPASTE SIDE PROFILE

   The black navigation is not a normal rounded rectangle.
   Its top edge extends outward, both vertical sides sit inward,
   and the lower corners curve inward again. This creates the
   characteristic mirrored S-shaped profile on both sides.
   ========================================================== */
@media (min-width: 992px) {
  .site-header {
    padding-top: 0;
  }

  .site-header > .container {
    width: calc(100% - 96px);
    max-width: 1440px;
  }

  .supaste-nav {
    --supaste-side-curve: 22px;

    position: relative;
    isolation: isolate;
    min-height: 66px;
    padding:
      7px
      calc(var(--supaste-side-curve) + 11px)
      7px
      calc(var(--supaste-side-curve) + 13px);
    overflow: visible;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  /* Main body: its vertical sides are inset from the wide top. */
  .supaste-nav::before {
    content: "";
    position: absolute;
    z-index: 0;
    top: 0;
    right: var(--supaste-side-curve);
    bottom: 0;
    left: var(--supaste-side-curve);
    border-radius:
      0
      0
      var(--supaste-side-curve)
      var(--supaste-side-curve);
    background: var(--nav-bg);
    pointer-events: none;
  }

  /*
     Wide upper shoulders. The transparent quarter-circles cut
     the upper left/right edges into the same concave profile as
     the Supaste reference instead of ordinary rounded corners.
  */
  .supaste-nav::after {
    content: "";
    position: absolute;
    z-index: 0;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--supaste-side-curve);
    background:
      radial-gradient(
        circle at left bottom,
        transparent calc(var(--supaste-side-curve) - 0.8px),
        var(--nav-bg) var(--supaste-side-curve)
      ) left top / var(--supaste-side-curve) var(--supaste-side-curve) no-repeat,
      radial-gradient(
        circle at right bottom,
        transparent calc(var(--supaste-side-curve) - 0.8px),
        var(--nav-bg) var(--supaste-side-curve)
      ) right top / var(--supaste-side-curve) var(--supaste-side-curve) no-repeat;
    pointer-events: none;
  }

  .supaste-nav > * {
    position: relative;
    z-index: 1;
  }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
  .site-header > .container {
    width: calc(100% - 48px);
  }

  .supaste-nav {
    --supaste-side-curve: 19px;
  }
}


/* ==========================================================
   FINAL PRECISION OVERRIDE
   Matches the Supaste side profile and removes the small offset.
   Keep this block LAST in this stylesheet.
   ========================================================== */

@media (min-width: 992px) {
  .site-header {
    right: 0 !important;
    left: 0 !important;
    width: 100% !important;
    padding: 0 !important;
    background: transparent !important;
  }

  .site-header > .container,
  .site-header .container {
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  .site-header .supaste-nav {
    position: relative;
    isolation: isolate;
    display: grid;
    grid-template-columns: minmax(210px, 1fr) auto minmax(210px, 1fr);
    align-items: center;

    width: 100% !important;
    min-height: 70px;
    margin: 0 !important;
    padding: 8px clamp(96px, 7.1vw, 126px);

    overflow: visible;
    border: 0 !important;
    border-radius: 0 !important;
    outline: 0 !important;
    background: transparent !important;
    background-image: none !important;
    box-shadow: none !important;
  }

  /*
     Reference proportions, measured from the supplied Supaste image:
     top shoulder  = 3.1% of the width
     straight side = 5.6% of the width
     bottom inset  = 8.2% of the width

     The top curve ends at 32% of the height. The straight section
     continues to 69%, then the lower curve finishes at the bottom.
  */
  .site-header .supaste-nav::before {
    content: "" !important;
    position: absolute;
    z-index: 0;
    inset: 0;
    display: block !important;
    background: var(--nav-bg) !important;

    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1000 100' preserveAspectRatio='none'%3E%3Cpath fill='white' d='M31 0H969C955 0 944 14 944 32V69C944 87 932 100 918 100H82C68 100 56 87 56 69V32C56 14 45 0 31 0Z'/%3E%3C/svg%3E");
    -webkit-mask-position: center;
    -webkit-mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;

    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1000 100' preserveAspectRatio='none'%3E%3Cpath fill='white' d='M31 0H969C955 0 944 14 944 32V69C944 87 932 100 918 100H82C68 100 56 87 56 69V32C56 14 45 0 31 0Z'/%3E%3C/svg%3E");
    mask-position: center;
    mask-size: 100% 100%;
    mask-repeat: no-repeat;

    pointer-events: none;
  }

  .site-header .supaste-nav::after {
    content: none !important;
    display: none !important;
  }

  .site-header .supaste-nav > * {
    position: relative;
    z-index: 1;
  }

  .site-header .supaste-brand {
    justify-self: start;
    gap: 12px;
  }

  .site-header .supaste-brand__icon {
    width: 52px;
    height: 52px;
    flex: 0 0 52px;
  }

  .site-header .supaste-brand__name {
    font-size: 26px;
    font-weight: 500;
    letter-spacing: -0.045em;
  }

  .site-header .supaste-menu {
    justify-self: center;
    gap: 0;
  }

  .site-header .supaste-menu a {
    height: 40px;
    padding: 0 13px;
    border-radius: 10px;
    font-size: 16px;
    line-height: 40px;
    letter-spacing: -0.04em;
  }

  .site-header .supaste-menu__roll,
  .site-header .supaste-menu__roll > span {
    height: 40px;
  }

  .site-header .supaste-menu a:hover .supaste-menu__roll,
  .site-header .supaste-menu a:focus-visible .supaste-menu__roll {
    transform: translateY(-40px);
  }

  .site-header .supaste-nav__actions {
    justify-self: end;
  }

  .site-header .supaste-download {
    height: 44px;
    padding: 0 20px;
    border-radius: 12px;
    font-size: 15px;
  }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
  .site-header .supaste-nav {
    grid-template-columns: minmax(170px, 1fr) auto minmax(170px, 1fr);
    padding-right: clamp(70px, 7.1vw, 88px);
    padding-left: clamp(70px, 7.1vw, 88px);
  }

  .site-header .supaste-menu a {
    padding-right: 10px;
    padding-left: 10px;
    font-size: 14px;
  }
}

@media (max-width: 991.98px) {
  .site-header {
    top: 0 !important;
    right: 0 !important;
    left: 0 !important;
    width: 100% !important;
    padding: 0 !important;
  }

  .site-header > .container,
  .site-header .container {
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  .site-header .supaste-nav {
    min-height: 58px;
    padding: 6px clamp(46px, 7.1vw, 64px);
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
  }

  .site-header .supaste-nav::before {
    content: "" !important;
    position: absolute;
    z-index: 0;
    inset: 0;
    display: block !important;
    background: var(--nav-bg) !important;

    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1000 100' preserveAspectRatio='none'%3E%3Cpath fill='white' d='M25 0H975C962 0 952 14 952 32V69C952 87 940 100 924 100H76C60 100 48 87 48 69V32C48 14 38 0 25 0Z'/%3E%3C/svg%3E");
    -webkit-mask-position: center;
    -webkit-mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;

    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1000 100' preserveAspectRatio='none'%3E%3Cpath fill='white' d='M25 0H975C962 0 952 14 952 32V69C952 87 940 100 924 100H76C60 100 48 87 48 69V32C48 14 38 0 25 0Z'/%3E%3C/svg%3E");
    mask-position: center;
    mask-size: 100% 100%;
    mask-repeat: no-repeat;
  }

  .site-header .supaste-nav::after {
    content: none !important;
    display: none !important;
  }
}

/* /////////////////////////// 
          HERO-AREA
//////////////////////////// */
.hero-area {
  padding-top: 30px;
  padding-bottom: 55px;
  position: relative;
  z-index: 1;
}

.hero-area:after {
  position: absolute;
  content: '';
  height: 100%;
  width: 100%;
  left: 0;
  z-index: -1;
  bottom: 0;
}

@media (min-width: 992px) {
  .hero-area:after {
    height: 70%;
    bottom: 200px;
  }
}

.hero-shape {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
}

@media (min-width: 768px) {
  .hero-shape {
    top: 0%;
  }
}

@media (min-width: 992px) {
  .hero-shape {
    display: block;
  }
}

.hero-left-content {
  text-align: center;
  margin-top: 5px;
}

@media (min-width: 768px) {
  .hero-left-content {
    text-align: left;
    margin-top: 50px;
  }
}

@media (min-width: 992px) {
  .hero-left-content {
    text-align: left;
    margin-top: 85px;
  }
}

.hero-left-content h1 {
  color: #1f1f1f;
  font-family: 'Karla', sans-serif;
  font-size: 45px;
  font-weight: 700;
  letter-spacing: -2px;
  margin-bottom: 10px;
  line-height: 36px;
}

@media (min-width: 768px) {
  .hero-left-content h1 {
    font-size: 39px;
  }
}

@media (min-width: 992px) {
  .hero-left-content h1 {
    font-size: 45px;
    line-height: 52px;
    margin-bottom: 22px;
  }
}

@media (min-width: 1200px) {
  .hero-left-content h1 {
    font-size: 55px;
    padding-right: 35px;
  }
}

.hero-left-content p {
  color: #222f3f;
  font-family: 'Rubik', sans-serif;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: -0.3px;
  line-height: 36px;
}

@media (min-width: 992px) {
  .hero-left-content p {
    font-size: 21px;
  }
}

@media (min-width: 1200px) {
  .hero-left-content p {
    padding-right: 5px;
  }
}

.hero-left-content .hero-btns {
  margin-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media (min-width: 992px) {
  .hero-left-content .hero-btns {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}

.hero-left-content .hero-btns .apple-store {
  padding: 0 6px;
}

.hero-left-content .hero-btns .google-play {
  padding: 0 6px;
}

.hero-image {
  padding: 0 35px;
}

@media (min-width: 480px) {
  .hero-image {
    padding: 0 60px;
  }
}

@media (min-width: 768px) {
  .hero-image {
    padding: 0;
  }
}

/* /////////////////////////// 
            ABOUT
//////////////////////////// */
.about-section-01 {
  padding-bottom: 45px;
}

.about-section-03 {
  padding-top: 46px;
}

@media (min-width: 992px) {
  .about-section-03 {
    padding-top: 120px;
  }
}

.about-wrapper {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid #e5e5e5;
}

.about-wrapper .about-content {
  text-align: center;
  padding-bottom: 36px;
}

@media (min-width: 768px) {
  .about-wrapper .about-content {
    text-align: left;
    margin-top: 0;
    padding-bottom: 55px;
  }
}

@media (min-width: 992px) {
  .about-wrapper .about-content {
    padding-top: 115px;
    padding-bottom: 100px;
  }
}

.about-wrapper .about-content h2 {
  color: #1f1f1f;
  font-family: 'Karla', sans-serif;
  font-size: 40px;
  font-weight: 700;
  letter-spacing: -5px;
  line-height: 50px;
}

@media (min-width: 768px) {
  .about-wrapper .about-content h2 {
    margin-bottom: 20px;
    font-size: 45px;
  }
}

@media (min-width: 992px) {
  .about-wrapper .about-content h2 {
    font-size: 60px;
    line-height: 64px;
  }
}

@media (min-width: 1200px) {
  .about-wrapper .about-content h2 {
    padding-right: 60px;
  }
}

.about-wrapper .about-content p {
  color: #666666;
  font-family: 'Rubik', sans-serif;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: -0.3px;
  line-height: 36px;
}

@media (min-width: 768px) {
  .about-wrapper .about-content p {
    font-size: 17px;
  }
}

@media (min-width: 992px) {
  .about-wrapper .about-content p {
    font-size: 21px;
  }
}

@media (min-width: 1200px) {
  .about-wrapper .about-content p {
    padding-right: 12px;
  }
}

.about-wrapper .about-image-01 {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (min-width: 768px) {
  .about-wrapper .about-image-01 {
    position: absolute;
    top: 20px;
    right: 0;
  }
}

.about-wrapper .about-image-01 img {
  max-width: 100%;
}

.about-wrapper .about-image-02 {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (min-width: 768px) {
  .about-wrapper .about-image-02 {
    position: absolute;
    top: 40px;
    left: 0;
  }
}

.about-wrapper .about-image-02 img {
  max-width: 100%;
}

.about-wrapper .about-image-03 {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media (min-width: 768px) {
  .about-wrapper .about-image-03 {
    position: absolute;
    top: 0;
    right: 0;
  }
}

.about-wrapper .about-image-03 img {
  max-width: 100%;
}

/* /////////////////////////// 
    Testimonial Section
//////////////////////////// */
.testimonial-section {
  padding-top: 46px;
  padding-bottom: 36px;
  background-color: #f4f5f7;
  position: relative;
  z-index: 1;
  background: #e7f4ed;
}

@media (min-width: 992px) {
  .testimonial-section {
    background: transparent;
    padding-top: 120px;
  }
  .testimonial-section .section-title {
    margin-bottom: 62px;
  }
}

.tstimonial-shape {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
}

.section-title {
  margin-bottom: 30px;
  text-align: center;
}

.section-title h2 {
  color: #1f1f1f;
  font-family: Karla;
  font-size: 40px;
  line-height: 55px;
  font-weight: 700;
  letter-spacing: -4px;
}

@media (min-width: 992px) {
  .section-title {
    margin-bottom: 45px;
  }
  .section-title h2 {
    font-size: 48px;
    line-height: 60px;
  }
}

.masonry-with-columns {
  -webkit-columns: 3 350px;
          columns: 3 350px;
  -webkit-column-gap: 30px;
          column-gap: 30px;
}

.masonry-with-columns .testimonial-card {
  margin-bottom: 30px;
  display: inline-block;
  width: 100%;
  height: auto;
}

.testimonial-card {
  -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04);
          box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04);
  border-radius: 5px;
  background-color: #ffffff;
  padding: 30px 30px 35px 35px;
}

.testimonial-card .card-content {
  margin-bottom: 34px;
}

.testimonial-card .card-content p {
  color: #1f1f1f;
  font-family: 'Rubik', sans-serif;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: -0.1px;
  line-height: 32px;
}

.testimonial-card .card-id {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.testimonial-card .card-id .id-content {
  margin-left: 22px;
}

.testimonial-card .card-id .id-content h6 {
  color: #1f1f1f;
  font-family: 'Karla', sans-serif;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.32px;
  margin-bottom: 2px;
}

.testimonial-card .card-id .id-content span {
  color: #666666;
  font-family: 'Karla', sans-serif;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: -0.4px;
}

/* ///////////////////////////
         CTA Section
//////////////////////////// */
.cta-content {
  padding-top: 52px;
  padding-bottom: 60px;
}

@media (min-width: 992px) {
  .cta-content {
    padding-top: 80px;
    padding-bottom: 135px;
  }
}

.cta-content {
  text-align: center;
}

.cta-content h2 {
  color: #1f1f1f;
  font-family: 'Karla', sans-serif;
  font-size: 40px;
  font-weight: 700;
  letter-spacing: -5px;
  line-height: 55px;
  margin-top: 35px;
}

@media (min-width: 992px) {
  .cta-content h2 {
    font-size: 60px;
    line-height: 70px;
  }
}

.cta-content .title-top-text {
  color: #666666;
  font-family: 'Karla', sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.cta-content .cta-btns {
  margin-top: 45px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.cta-content .cta-btns .apple-store {
  padding: 0 9px;
}

.cta-content .cta-btns .google-play {
  padding: 0 9px;
}

/* /////////////////////////// 
       Footer Section
//////////////////////////// */
.footer-bar-wrapper {
  border-top: 1px solid #e5e5e5;
  padding: 0px 0 50px;
}

@media (min-width: 992px) {
  .footer-bar-wrapper {
    padding: 22px 0;
  }
}

.footer-icon {
  margin-bottom: 20px;
}

@media (min-width: 768px) {
  .footer-icon {
    margin-bottom: 0;
  }
}

.footer-nav {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 10px;
}

.footer-nav .nav-item {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.69px;
  position: relative;
}

.footer-nav .nav-item a {
  padding: 0 7px;
}

@media (min-width: 992px) {
  .footer-nav .nav-item a {
    padding: 0 17px;
  }
}

.footer-nav .nav-item:after {
  position: absolute;
  content: '';
  background-color: #0d41e9;
  left: 0;
  width: 45px;
  height: 2px;
  bottom: 0;
  opacity: 0;
  margin-left: 6px;
  margin-top: 2px;
  -webkit-transition: .4s;
  transition: .4s;
}

@media (min-width: 768px) {
  .footer-nav .nav-item:after {
    margin-left: 6px;
  }
}

@media (min-width: 992px) {
  .footer-nav .nav-item:after {
    margin-left: 16px;
  }
}

.footer-nav .nav-item:hover a {
  color: #000;
}

.footer-nav .nav-item:hover:after {
  opacity: 1;
}

@media (min-width: 768px) {
  .footer-nav {
    margin-bottom: 0;
  }
}

.copy-right {
  text-align: center;
}

.copy-right p {
  font-size: 14px;
  font-weight: 400;
  letter-spacing: -0.6px;
  line-height: 28px;
  color: #666666;
  margin-bottom: 0;
}
/*# sourceMappingURL=style.css.map */

/* ==========================================================
   RESPONSIVE LANDING PAGE OVERRIDES
   Keeps the desktop composition and fixes tablet/phone layout.
   ========================================================== */
html {
  scroll-behavior: smooth;
}

body {
  min-width: 0;
  overflow-x: hidden;
}

.site-wrapper {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

img,
video {
  max-width: 100%;
}

#features,
#assistant,
#recipes,
#brochures,
#contact,
#download {
  scroll-margin-top: 82px;
}

.hero-area .row,
.about-wrapper .row {
  align-items: center;
}

.hero-image {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image video {
  display: block;
  width: 75%;
  height: auto;
  object-fit: contain;
}

.hero-btns a,
.cta-btns a {
  display: block;
  min-width: 0;
}

.hero-btns img,
.cta-btns img {
  display: block;
  width: 100%;
  height: auto;
}

.footer-nav {
  flex-wrap: wrap;
}

@media (max-width: 991.98px) {
  body.nav-menu-open {
    overflow: hidden;
  }

  .site-header .supaste-nav {
    min-height: 62px;
    padding: 7px clamp(18px, 4.5vw, 44px);
  }

  .site-header .supaste-brand {
    gap: 8px;
  }

  .site-header .supaste-brand__icon {
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    border-radius: 10px;
  }

  .site-header .supaste-brand__name {
    font-size: 16px;
    line-height: 1;
  }

  .site-header .supaste-menu-toggle {
    flex: 0 0 42px;
  }

  .site-header .supaste-mobile-panel {
    top: calc(100% + 6px);
    right: 14px;
    left: 14px;
    width: auto;
    max-height: calc(100vh - 82px);
    overflow-y: auto;
  }

  .site-header .supaste-mobile-panel .supaste-mobile-download {
    background: #ffffff;
    color: #090909 !important;
  }

  .hero-area {
    padding-top: 92px;
    padding-bottom: 48px;
  }

  .hero-left-content {
    margin-top: 20px;
  }

  .hero-left-content h1 {
    font-size: clamp(44px, 7vw, 58px);
    line-height: 1.04;
    letter-spacing: -3px;
  }

  .hero-left-content p {
    font-size: 17px;
    line-height: 1.75;
  }

  .hero-image video {
    width: min(90%, 390px);
  }

  .about-wrapper .about-image-01,
  .about-wrapper .about-image-02,
  .about-wrapper .about-image-03 {
    position: static;
    width: 100%;
    padding: 24px 16px 32px;
  }

  .about-wrapper .about-image-01 img,
  .about-wrapper .about-image-02 img,
  .about-wrapper .about-image-03 img {
    display: block;
    width: auto;
    max-width: min(100%, 320px);
    max-height: 540px;
    margin: 0 auto;
    object-fit: contain;
  }

  .about-wrapper .about-content {
    padding: 40px 12px 24px;
  }

  .about-wrapper .about-content h2 {
    font-size: clamp(38px, 5.2vw, 48px);
    line-height: 1.08;
    letter-spacing: -3px;
  }

  .about-wrapper .about-content p {
    font-size: 17px;
    line-height: 1.75;
  }
}

@media (max-width: 767.98px) {
  .container {
    padding-right: 20px;
    padding-left: 20px;
  }

  .hero-shape {
    display: none;
  }

  .hero-area {
    padding-top: 84px;
    padding-bottom: 34px;
  }

  .hero-left-content {
    max-width: 560px;
    margin: 8px auto 26px;
    text-align: center;
  }

  .hero-left-content h1 {
    margin-bottom: 16px;
    padding: 0;
    font-size: clamp(38px, 12vw, 50px);
    line-height: 1.05;
    letter-spacing: -2.5px;
  }

  .hero-left-content p {
    margin-bottom: 0;
    font-size: 16px;
    line-height: 1.65;
  }

  .hero-left-content .hero-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-top: 26px;
  }

  .hero-left-content .hero-btns .apple-store,
  .hero-left-content .hero-btns .google-play {
    width: min(170px, calc(50% - 5px));
    padding: 0;
  }

  .hero-image {
    padding: 0;
  }

  .hero-image video {
    width: min(100%, 300px);
    margin: 0 auto;
  }

  .about-section-01,
  .about-section-02,
  .about-section-03 {
    padding: 0;
  }

  .about-wrapper {
    overflow: visible;
  }

  .about-wrapper .about-content {
    padding: 42px 0 8px;
    text-align: center;
  }

  .about-wrapper .about-content h2 {
    margin-bottom: 16px;
    padding: 0;
    overflow-wrap: anywhere;
    font-size: clamp(32px, 10vw, 42px);
    line-height: 1.08;
    letter-spacing: -2px;
  }

  .about-wrapper .about-content p {
    margin-bottom: 0;
    padding: 0;
    font-size: 16px;
    line-height: 1.7;
  }

  .about-wrapper .about-image-01,
  .about-wrapper .about-image-02,
  .about-wrapper .about-image-03 {
    padding: 24px 0 42px;
  }

  .about-wrapper .about-image-01 img,
  .about-wrapper .about-image-02 img,
  .about-wrapper .about-image-03 img {
    max-width: min(82vw, 285px);
    max-height: 500px;
  }

  .footer-section {
    padding-top: 34px;
  }

  .footer-bar-wrapper {
    padding: 28px 0 26px;
  }

  .footer-nav {
    gap: 8px 4px;
    margin: 0 auto 22px;
  }

  .footer-nav .nav-item {
    flex: 0 0 auto;
  }

  .footer-nav .nav-item a {
    padding: 7px 10px;
    line-height: 1.25;
  }

  .footer-nav .nav-item::after {
    display: none;
  }

  .copy-right p {
    padding: 0 12px;
    font-size: 13px;
    line-height: 1.6;
  }
}

@media (max-width: 420px) {
  .site-header .supaste-nav {
    padding-right: 14px;
    padding-left: 14px;
  }

  .site-header .supaste-brand__icon {
    width: 34px;
    height: 34px;
    flex-basis: 34px;
  }

  .site-header .supaste-brand__name {
    font-size: 15px;
  }

  .hero-left-content h1 {
    font-size: 36px;
    letter-spacing: -2px;
  }

  .hero-left-content .hero-btns .apple-store,
  .hero-left-content .hero-btns .google-play {
    width: min(180px, 100%);
  }

  .footer-nav {
    flex-direction: column;
    align-items: center;
  }
}

/* ==========================================================
   PREMIUM FEATURE SHOWCASES
   Distinct visual language for AI, recipes and brochures.
   ========================================================== */

.features-intro,
.feature-showcase {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.features-intro {
  position: relative;
  padding: 112px 0 54px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 160, 46, .16), transparent 34%),
    #ffffff;
}

.features-intro__content {
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}

.features-intro__eyebrow,
.feature-copy__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 22px;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.features-intro__eyebrow {
  color: #a65600;
}

.features-intro__content h2 {
  margin: 0;
  color: #171717;
  font-size: clamp(46px, 6vw, 82px);
  font-weight: 700;
  line-height: .98;
  letter-spacing: -.065em;
}

.features-intro__content h2 span {
  display: block;
  color: #9a9a9f;
}

.features-intro__content p {
  max-width: 650px;
  margin: 28px auto 0;
  color: #606066;
  font-size: 19px;
  line-height: 1.65;
  letter-spacing: -.02em;
}

.feature-showcase {
  position: relative;
  padding: 30px 0;
}

.feature-showcase:last-of-type {
  padding-bottom: 112px;
}

.feature-card {
  position: relative;
  isolation: isolate;
  min-height: 680px;
  padding: 44px 54px;
  overflow: hidden;
  border: 1px solid rgba(18, 18, 18, .07);
  border-radius: 48px;
  box-shadow:
    0 1px 1px rgba(0, 0, 0, .02),
    0 26px 80px rgba(26, 24, 20, .08);
}

.feature-card::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  opacity: .7;
  pointer-events: none;
  background-image: radial-gradient(rgba(255,255,255,.55) .7px, transparent .7px);
  background-size: 8px 8px;
  -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,.7), transparent 58%);
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.7), transparent 58%);
}

.feature-card__index {
  position: absolute;
  z-index: 2;
  top: 34px;
  right: 38px;
  color: rgba(20, 20, 20, .24);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .16em;
}

.feature-showcase--assistant .feature-card {
  border-color: rgba(255, 255, 255, .1);
  background:
    radial-gradient(circle at 82% 18%, rgba(155, 90, 255, .35), transparent 31%),
    radial-gradient(circle at 62% 86%, rgba(46, 98, 255, .22), transparent 36%),
    linear-gradient(145deg, #171023 0%, #0a0710 72%);
  box-shadow: 0 32px 90px rgba(30, 16, 54, .24);
}

.feature-showcase--assistant .feature-card__index {
  color: rgba(255, 255, 255, .32);
}

.feature-showcase--recipes .feature-card {
  background:
    radial-gradient(circle at 12% 16%, rgba(255, 255, 255, .88), transparent 33%),
    radial-gradient(circle at 88% 82%, rgba(255, 168, 56, .32), transparent 35%),
    linear-gradient(145deg, #fffaf1 0%, #ffe0a6 100%);
}

.feature-showcase--brochures .feature-card {
  background:
    radial-gradient(circle at 85% 12%, rgba(255, 255, 255, .9), transparent 31%),
    radial-gradient(circle at 14% 88%, rgba(39, 211, 139, .22), transparent 34%),
    linear-gradient(145deg, #effff7 0%, #c9f4dc 100%);
}

.feature-card > .row {
  min-height: 590px;
}

.feature-copy {
  position: relative;
  z-index: 4;
  max-width: 520px;
}

.feature-copy__eyebrow {
  margin-bottom: 24px;
  color: #5f41c8;
}

.feature-copy__eyebrow-icon {
  display: inline-grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: 9px;
  background: rgba(105, 73, 225, .12);
  font-size: 14px;
  letter-spacing: 0;
}

.feature-copy h2 {
  margin: 0;
  color: #19191b;
  font-size: clamp(44px, 4.5vw, 68px);
  font-weight: 700;
  line-height: .98;
  letter-spacing: -.065em;
}

.feature-copy h2 span {
  display: block;
  margin-top: 8px;
  color: rgba(25, 25, 27, .48);
}

.feature-copy > p {
  max-width: 500px;
  margin: 28px 0 0;
  color: #55545a;
  font-size: 18px;
  line-height: 1.72;
  letter-spacing: -.02em;
}

.feature-benefits {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  margin-top: 30px;
}

.feature-benefits span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 38px;
  padding: 7px 14px 7px 8px;
  border: 1px solid rgba(20, 20, 20, .08);
  border-radius: 999px;
  background: rgba(255, 255, 255, .56);
  color: #353438;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
  box-shadow: 0 10px 30px rgba(32, 29, 23, .05);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.feature-benefits b {
  display: inline-grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #1e1e20;
  color: #ffffff;
  font-size: 12px;
}

.feature-showcase--assistant .feature-copy__eyebrow {
  color: #cbb8ff;
}

.feature-showcase--assistant .feature-copy__eyebrow-icon {
  background: rgba(176, 133, 255, .18);
  color: #ffffff;
  box-shadow: 0 0 24px rgba(147, 90, 255, .28);
}

.feature-showcase--assistant .feature-copy h2 {
  color: #ffffff;
}

.feature-showcase--assistant .feature-copy h2 span {
  color: rgba(255, 255, 255, .50);
}

.feature-showcase--assistant .feature-copy > p {
  color: rgba(255, 255, 255, .68);
}

.feature-showcase--assistant .feature-benefits span {
  border-color: rgba(255, 255, 255, .10);
  background: rgba(255, 255, 255, .075);
  color: rgba(255, 255, 255, .84);
  box-shadow: none;
}

.feature-showcase--assistant .feature-benefits b {
  background: linear-gradient(135deg, #a87cff, #7254ff);
}

.feature-showcase--recipes .feature-copy__eyebrow {
  color: #a45600;
}

.feature-showcase--recipes .feature-copy__eyebrow-icon {
  background: rgba(255, 153, 37, .17);
  color: #a45600;
}

.feature-showcase--recipes .feature-benefits b {
  background: #ff922b;
}

.feature-showcase--brochures .feature-copy__eyebrow {
  color: #087b4a;
}

.feature-showcase--brochures .feature-copy__eyebrow-icon {
  background: rgba(14, 145, 87, .13);
  color: #087b4a;
}

.feature-showcase--brochures .feature-benefits b {
  background: #0d9e5e;
}

.feature-visual {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  min-height: 590px;
}

.feature-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  pointer-events: none;
}

.feature-phone-shell {
  position: relative;
  z-index: 3;
  width: min(56%, 350px);
  transition: transform 700ms cubic-bezier(.2, .8, .2, 1);
}

.feature-phone-shell::before {
  content: "";
  position: absolute;
  z-index: -1;
  right: 9%;
  bottom: 2%;
  left: 9%;
  height: 18%;
  border-radius: 50%;
  background: rgba(0, 0, 0, .25);
  filter: blur(28px);
}

.feature-phone-shell img {
  display: block;
  width: 100%;
  max-height: 610px;
  object-fit: contain;
  filter: drop-shadow(0 30px 34px rgba(0, 0, 0, .22));
}

.feature-card:hover .feature-phone-shell {
  transform: translateY(-8px) rotate(.6deg);
}

.feature-visual--assistant .feature-phone-shell {
  transform: rotate(2deg);
}

.feature-visual--assistant .feature-orb--one {
  width: 390px;
  height: 390px;
  background: radial-gradient(circle at 35% 35%, rgba(190, 133, 255, .52), rgba(91, 46, 198, .08) 64%, transparent 72%);
}

.feature-visual--assistant .feature-orb--two {
  right: 6%;
  bottom: 8%;
  width: 210px;
  height: 210px;
  background: rgba(64, 106, 255, .18);
  filter: blur(24px);
}

.feature-visual--recipes .feature-orb--one {
  width: 430px;
  height: 430px;
  background: radial-gradient(circle at 40% 35%, rgba(255,255,255,.95), rgba(255,255,255,.3) 48%, transparent 72%);
}

.feature-visual--recipes .feature-orb--two {
  left: 4%;
  bottom: 8%;
  width: 250px;
  height: 250px;
  background: rgba(255, 137, 25, .16);
  filter: blur(22px);
}

.feature-visual--brochures .feature-orb--one {
  width: 420px;
  height: 420px;
  background: radial-gradient(circle at 38% 35%, rgba(255,255,255,.96), rgba(255,255,255,.28) 48%, transparent 72%);
}

.feature-visual--brochures .feature-orb--two {
  right: 5%;
  bottom: 7%;
  width: 250px;
  height: 250px;
  background: rgba(12, 164, 91, .16);
  filter: blur(24px);
}

.feature-float,
.recipe-mini-card,
.offer-float {
  position: absolute;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, .66);
  border-radius: 20px;
  background: rgba(255, 255, 255, .84);
  color: #171719;
  box-shadow: 0 22px 55px rgba(31, 23, 48, .18);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.feature-float small,
.recipe-mini-card small,
.offer-float small {
  display: block;
  margin-bottom: 3px;
  color: #89878e;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.feature-float strong,
.recipe-mini-card strong,
.offer-float strong {
  display: block;
  max-width: 240px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -.025em;
}

.feature-float__avatar,
.feature-float__spark,
.offer-float__icon,
.offer-float__heart,
.recipe-mini-card > span:first-child:not(.recipe-mini-card__thumb) {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  border-radius: 13px;
  font-size: 15px;
  font-weight: 800;
}

.feature-float__avatar {
  background: #efebff;
  color: #6645d5;
}

.feature-float__spark {
  background: linear-gradient(135deg, #a979ff, #6250f5);
  color: #ffffff;
  box-shadow: 0 8px 22px rgba(113, 76, 236, .3);
}

.feature-float--prompt {
  top: 16%;
  left: 1%;
  animation: featureFloat 5.6s ease-in-out infinite;
}

.feature-float--answer {
  right: 0;
  bottom: 19%;
  animation: featureFloat 6.4s ease-in-out -1.5s infinite;
}

.recipe-mini-card > span:first-child:not(.recipe-mini-card__thumb) {
  background: #fff0d3;
  color: #bd6500;
}

.recipe-mini-card--time {
  top: 14%;
  left: 1%;
  animation: featureFloat 6.1s ease-in-out -.8s infinite;
}

.recipe-mini-card--budget {
  right: 2%;
  top: 25%;
  animation: featureFloat 5.8s ease-in-out -2s infinite;
}

.recipe-mini-card--menu {
  right: 1%;
  bottom: 15%;
  min-width: 230px;
  animation: featureFloat 6.6s ease-in-out -.4s infinite;
}

.recipe-mini-card__thumb {
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  border-radius: 14px;
  background:
    radial-gradient(circle at 36% 36%, #fff3bd 0 14%, transparent 15%),
    radial-gradient(circle at 64% 55%, #ef8736 0 16%, transparent 17%),
    linear-gradient(135deg, #7bcf74, #3d8d45);
  box-shadow: inset 0 0 0 4px rgba(255,255,255,.54);
}

.offer-float__icon {
  background: #dff8ea;
  color: #087a49;
}

.offer-float__heart {
  background: #fff0f2;
  color: #ed4963;
}

.offer-float--notification {
  top: 15%;
  left: 0;
  animation: featureFloat 6.2s ease-in-out -.6s infinite;
}

.offer-float--favorite {
  right: 0;
  top: 34%;
  animation: featureFloat 5.9s ease-in-out -1.8s infinite;
}

.offer-float--stores {
  right: 3%;
  bottom: 14%;
  gap: 0;
  padding: 11px 15px 11px 11px;
  animation: featureFloat 6.7s ease-in-out -1s infinite;
}

.offer-float--stores strong {
  margin-left: 10px;
}

.store-dot {
  width: 28px;
  height: 28px;
  margin-left: -7px;
  border: 3px solid rgba(255,255,255,.95);
  border-radius: 50%;
  background: linear-gradient(135deg, #ffb03a, #ff7a30);
}

.store-dot:first-child {
  margin-left: 0;
  background: linear-gradient(135deg, #57d498, #15965d);
}

.store-dot:nth-child(2) {
  background: linear-gradient(135deg, #826cff, #5135c9);
}

@keyframes featureFloat {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(0, -9px, 0); }
}

@media (max-width: 1199.98px) {
  .feature-card {
    min-height: 630px;
    padding: 40px;
    border-radius: 40px;
  }

  .feature-card > .row,
  .feature-visual {
    min-height: 550px;
  }

  .feature-copy h2 {
    font-size: clamp(42px, 4.5vw, 58px);
  }

  .feature-phone-shell {
    width: min(58%, 320px);
  }

  .feature-float strong,
  .recipe-mini-card strong,
  .offer-float strong {
    max-width: 190px;
    font-size: 13px;
  }
}

@media (max-width: 991.98px) {
  .features-intro {
    padding: 90px 0 42px;
  }

  .features-intro__content h2 {
    font-size: clamp(46px, 8vw, 68px);
  }

  .feature-showcase {
    padding: 18px 0;
  }

  .feature-showcase:last-of-type {
    padding-bottom: 78px;
  }

  .feature-card {
    min-height: 0;
    padding: 48px 42px 24px;
    border-radius: 36px;
  }

  .feature-card > .row {
    min-height: 0;
  }

  .feature-copy {
    max-width: 690px;
    margin: 0 auto;
    text-align: center;
  }

  .feature-copy h2 {
    font-size: clamp(44px, 7vw, 62px);
  }

  .feature-copy > p {
    max-width: 650px;
    margin-right: auto;
    margin-left: auto;
  }

  .feature-benefits {
    align-items: center;
  }

  .feature-visual {
    min-height: 580px;
    margin-top: 24px;
  }

  .feature-phone-shell {
    width: min(48%, 330px);
  }

  .feature-float--prompt,
  .recipe-mini-card--time,
  .offer-float--notification {
    left: 7%;
  }

  .feature-float--answer,
  .recipe-mini-card--budget,
  .recipe-mini-card--menu,
  .offer-float--favorite,
  .offer-float--stores {
    right: 7%;
  }
}

@media (max-width: 767.98px) {
  .features-intro {
    padding: 76px 0 34px;
  }

  .features-intro__eyebrow,
  .feature-copy__eyebrow {
    margin-bottom: 18px;
    font-size: 11px;
    letter-spacing: .11em;
  }

  .features-intro__content h2 {
    font-size: clamp(38px, 11vw, 53px);
    line-height: 1.02;
    letter-spacing: -.055em;
  }

  .features-intro__content p {
    margin-top: 22px;
    font-size: 16px;
    line-height: 1.65;
  }

  .feature-showcase {
    padding: 10px 0;
  }

  .feature-showcase .container {
    padding-right: 12px;
    padding-left: 12px;
  }

  .feature-card {
    padding: 42px 22px 10px;
    border-radius: 30px;
  }

  .feature-card__index {
    top: 24px;
    right: 24px;
    font-size: 11px;
  }

  .feature-copy__eyebrow-icon {
    width: 24px;
    height: 24px;
    border-radius: 8px;
  }

  .feature-copy h2 {
    font-size: clamp(36px, 10.5vw, 48px);
    line-height: 1.01;
    letter-spacing: -.055em;
  }

  .feature-copy h2 span {
    margin-top: 7px;
  }

  .feature-copy > p {
    margin-top: 22px;
    font-size: 16px;
    line-height: 1.64;
  }

  .feature-benefits {
    gap: 9px;
    margin-top: 24px;
  }

  .feature-benefits span {
    min-height: 36px;
    padding: 6px 12px 6px 7px;
    font-size: 13px;
  }

  .feature-benefits b {
    width: 23px;
    height: 23px;
  }

  .feature-visual {
    min-height: 470px;
    margin-top: 16px;
  }

  .feature-phone-shell {
    width: min(63%, 270px);
  }

  .feature-float,
  .recipe-mini-card,
  .offer-float {
    gap: 9px;
    padding: 10px 12px;
    border-radius: 15px;
  }

  .feature-float small,
  .recipe-mini-card small,
  .offer-float small {
    font-size: 9px;
  }

  .feature-float strong,
  .recipe-mini-card strong,
  .offer-float strong {
    max-width: 142px;
    font-size: 11px;
  }

  .feature-float__avatar,
  .feature-float__spark,
  .offer-float__icon,
  .offer-float__heart,
  .recipe-mini-card > span:first-child:not(.recipe-mini-card__thumb) {
    width: 32px;
    height: 32px;
    flex-basis: 32px;
    border-radius: 10px;
    font-size: 12px;
  }

  .feature-float--prompt,
  .recipe-mini-card--time,
  .offer-float--notification {
    top: 14%;
    left: 0;
  }

  .feature-float--answer {
    right: 0;
    bottom: 16%;
  }

  .recipe-mini-card--budget,
  .offer-float--favorite {
    top: 31%;
    right: 0;
  }

  .recipe-mini-card--menu,
  .offer-float--stores {
    right: 0;
    bottom: 11%;
  }

  .recipe-mini-card--menu {
    min-width: 0;
  }

  .recipe-mini-card__thumb {
    width: 38px;
    height: 38px;
    flex-basis: 38px;
    border-radius: 11px;
  }

  .offer-float--stores {
    padding-left: 9px;
  }

  .offer-float--stores strong {
    max-width: 110px;
    margin-left: 7px;
  }

  .store-dot {
    width: 23px;
    height: 23px;
    margin-left: -8px;
    border-width: 2px;
  }
}

@media (max-width: 420px) {
  .feature-card {
    padding-right: 17px;
    padding-left: 17px;
    border-radius: 26px;
  }

  .feature-copy h2 {
    font-size: 35px;
  }

  .feature-visual {
    min-height: 430px;
  }

  .feature-phone-shell {
    width: min(65%, 245px);
  }

  .feature-float strong,
  .recipe-mini-card strong,
  .offer-float strong {
    max-width: 118px;
    font-size: 10px;
  }

  .feature-float--prompt,
  .recipe-mini-card--time,
  .offer-float--notification {
    left: -5px;
  }

  .feature-float--answer,
  .recipe-mini-card--budget,
  .recipe-mini-card--menu,
  .offer-float--favorite,
  .offer-float--stores {
    right: -5px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .feature-float,
  .recipe-mini-card,
  .offer-float,
  .feature-phone-shell {
    animation: none !important;
    transition: none !important;
  }
}
@media (min-width: 992px) {
  .features-intro > .container,
  .feature-showcase > .container {
    width: calc(100% - 48px);
    max-width: 1480px;
  }
}

@media (min-width: 1440px) {
  .features-intro > .container,
  .feature-showcase > .container {
    width: calc(100% - 80px);
  }
}
.technical-support,
.site-footer {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.technical-support {
  position: relative;
  padding: 72px 0 26px;
}

.technical-support > .container,
.site-footer > .container {
  width: calc(100% - 48px);
  max-width: 1480px;
}

.technical-support__card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 42px 44px 22px;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 34px;
  background:
    radial-gradient(circle at 82% -20%, rgba(255, 160, 46, .20), transparent 34%),
    linear-gradient(145deg, #111114 0%, #09090b 58%, #0e0e11 100%);
  box-shadow:
    0 28px 70px rgba(19, 16, 12, .16),
    0 1px 0 rgba(255, 255, 255, .055) inset;
}

.technical-support__grid {
  position: absolute;
  z-index: -2;
  inset: 0;
  opacity: .23;
  background-image:
    linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px);
  background-size: 34px 34px;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 42%, #000);
          mask-image: linear-gradient(to right, transparent, #000 42%, #000);
  pointer-events: none;
}

.technical-support__glow {
  position: absolute;
  z-index: -1;
  border-radius: 999px;
  filter: blur(8px);
  pointer-events: none;
}

.technical-support__glow--one {
  top: -84px;
  right: 16%;
  width: 230px;
  height: 230px;
  background: rgba(255, 160, 46, .14);
}

.technical-support__glow--two {
  right: -75px;
  bottom: -115px;
  width: 250px;
  height: 250px;
  background: rgba(255, 202, 132, .08);
}

.technical-support__main {
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(520px, 1.12fr);
  gap: clamp(34px, 5vw, 88px);
  align-items: center;
}

.technical-support__copy {
  max-width: 510px;
}

.technical-support__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 15px;
  color: rgba(255, 255, 255, .67);
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.technical-support__status {
  position: relative;
  width: 8px;
  height: 8px;
  flex: 0 0 8px;
  border-radius: 50%;
  background: #75e69a;
  box-shadow: 0 0 0 5px rgba(117, 230, 154, .10);
}

.technical-support__status::after {
  content: "";
  position: absolute;
  inset: -5px;
  border: 1px solid rgba(117, 230, 154, .32);
  border-radius: inherit;
  animation: supportStatusPulse 2.4s ease-out infinite;
}

@keyframes supportStatusPulse {
  0% {
    opacity: .9;
    transform: scale(.45);
  }

  75%,
  100% {
    opacity: 0;
    transform: scale(1.55);
  }
}

.technical-support__copy h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(38px, 4.1vw, 60px);
  font-weight: 650;
  line-height: .98;
  letter-spacing: -.055em;
}

.technical-support__copy p {
  max-width: 470px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, .58);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: -.015em;
}

.technical-support__channels {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.support-channel {
  position: relative;
  display: grid;
  grid-template-columns: 45px minmax(0, 1fr) 30px;
  gap: 13px;
  align-items: center;
  min-height: 94px;
  padding: 17px 17px 17px 16px;
  overflow: hidden;
  border-radius: 23px;
  text-decoration: none !important;
  transition:
    transform 380ms cubic-bezier(.22, 1, .36, 1),
    box-shadow 380ms ease,
    border-color 280ms ease;
}

.support-channel::before {
  content: "";
  position: absolute;
  top: -90%;
  left: -25%;
  width: 35%;
  height: 270%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.52), transparent);
  transform: rotate(20deg) translateX(-240%);
  transition: transform 780ms cubic-bezier(.22, 1, .36, 1);
  pointer-events: none;
}

.support-channel:hover {
  transform: translateY(-4px);
}

.support-channel:hover::before {
  transform: rotate(20deg) translateX(580%);
}

.support-channel--email {
  border: 1px solid rgba(255, 255, 255, .88);
  background: #ffffff;
  color: #111114 !important;
  box-shadow: 0 16px 34px rgba(0, 0, 0, .18);
}

.support-channel--email:hover {
  color: #111114 !important;
  box-shadow: 0 22px 42px rgba(0, 0, 0, .24);
}

.support-channel--phone {
  border: 1px solid rgba(255, 186, 101, .58);
  background:
    linear-gradient(145deg, #ffb14f 0%, #ffa02e 62%, #f8921f 100%);
  color: #16120d !important;
  box-shadow: 0 16px 34px rgba(255, 160, 46, .14);
}

.support-channel--phone:hover {
  color: #16120d !important;
  box-shadow: 0 22px 42px rgba(255, 160, 46, .21);
}

.support-channel--placeholder {
  cursor: default;
}

.support-channel--placeholder .support-channel__text strong {
  opacity: .72;
}

.support-channel__icon {
  display: grid;
  place-items: center;
  width: 45px;
  height: 45px;
  border-radius: 15px;
}

.support-channel--email .support-channel__icon {
  background: #f2f2f4;
}

.support-channel--phone .support-channel__icon {
  background: rgba(255, 255, 255, .26);
}

.support-channel__icon svg {
  width: 22px;
  height: 22px;
}

.support-channel__text {
  display: block;
  min-width: 0;
}

.support-channel__text small {
  display: block;
  margin-bottom: 5px;
  color: currentColor;
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: .12em;
  text-transform: uppercase;
  opacity: .52;
}

.support-channel__text strong {
  display: block;
  overflow: hidden;
  color: currentColor;
  font-size: clamp(13px, 1.05vw, 16px);
  font-weight: 650;
  line-height: 1.25;
  letter-spacing: -.025em;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.support-channel__arrow {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  font-size: 15px;
  transition: transform 380ms cubic-bezier(.22, 1, .36, 1);
}

.support-channel--email .support-channel__arrow {
  background: #111114;
  color: #fff;
}

.support-channel--phone .support-channel__arrow {
  background: rgba(17, 17, 20, .88);
  color: #fff;
}

.support-channel:hover .support-channel__arrow {
  transform: translate(2px, -2px) rotate(4deg);
}

.technical-support__tip {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 22px;
  padding-top: 17px;
  border-top: 1px solid rgba(255, 255, 255, .075);
}

.technical-support__tip-icon {
  display: grid;
  place-items: center;
  width: 21px;
  height: 21px;
  flex: 0 0 21px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 50%;
  color: rgba(255, 255, 255, .73);
  font-size: 11px;
  font-weight: 700;
}

.technical-support__tip p {
  margin: 0;
  color: rgba(255, 255, 255, .42);
  font-size: 11px;
  line-height: 1.55;
  letter-spacing: -.005em;
}

.site-footer {
  padding: 0 0 24px;
}

.site-footer__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  align-items: center;
  min-height: 62px;
  padding: 12px 4px 0;
}

.site-footer__brand {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  gap: 8px;
  color: #151515 !important;
  font-size: 14px;
  font-weight: 650;
  letter-spacing: -.025em;
  text-decoration: none !important;
}

.site-footer__brand img {
  display: block;
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.site-footer__links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
}

.site-footer__links a {
  color: #777 !important;
  font-size: 12px;
  font-weight: 550;
  letter-spacing: -.015em;
  text-decoration: none !important;
  transition: color 220ms ease;
}

.site-footer__links a:hover {
  color: #111 !important;
}

.site-footer__copyright {
  justify-self: end;
  margin: 0;
  color: #9a9a9a;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .02em;
}

@media (max-width: 1199.98px) {
  .technical-support__main {
    grid-template-columns: minmax(0, .8fr) minmax(470px, 1.2fr);
    gap: 34px;
  }

  .technical-support__card {
    padding-right: 32px;
    padding-left: 32px;
  }
}

@media (max-width: 991.98px) {
  .technical-support {
    padding-top: 58px;
  }

  .technical-support__main {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .technical-support__copy {
    max-width: 640px;
  }

  .technical-support__copy h2 {
    font-size: clamp(42px, 7vw, 56px);
  }

  .technical-support__channels {
    max-width: 720px;
  }
}

@media (max-width: 767.98px) {
  .technical-support {
    padding: 44px 0 20px;
  }

  .technical-support > .container,
  .site-footer > .container {
    width: 100%;
    padding-right: 14px;
    padding-left: 14px;
  }

  .technical-support__card {
    padding: 34px 20px 18px;
    border-radius: 28px;
  }

  .technical-support__copy h2 {
    font-size: clamp(36px, 10vw, 46px);
  }

  .technical-support__copy p {
    margin-top: 14px;
    font-size: 14px;
  }

  .technical-support__channels {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .support-channel {
    min-height: 84px;
    border-radius: 20px;
  }

  .support-channel__text strong {
    font-size: 15px;
  }

  .technical-support__tip {
    align-items: flex-start;
    margin-top: 18px;
    padding-top: 15px;
  }

  .site-footer {
    padding-bottom: 18px;
  }

  .site-footer__inner {
    grid-template-columns: 1fr;
    gap: 12px;
    justify-items: center;
    padding-top: 14px;
    text-align: center;
  }

  .site-footer__brand,
  .site-footer__copyright {
    justify-self: center;
  }

  .site-footer__links {
    flex-wrap: wrap;
    gap: 10px 18px;
  }
}

@media (max-width: 420px) {
  .technical-support__card {
    padding-right: 16px;
    padding-left: 16px;
    border-radius: 24px;
  }

  .technical-support__eyebrow {
    font-size: 10px;
  }

  .technical-support__copy h2 {
    font-size: 34px;
  }

  .support-channel {
    grid-template-columns: 42px minmax(0, 1fr) 28px;
    gap: 10px;
    padding-right: 13px;
    padding-left: 12px;
  }

  .support-channel__icon {
    width: 42px;
    height: 42px;
    border-radius: 14px;
  }

  .support-channel__text strong {
    font-size: 13px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .technical-support__status::after {
    animation: none !important;
  }

  .support-channel,
  .support-channel::before,
  .support-channel__arrow {
    transition: none !important;
  }
}
/* ==========================================================
   MOBILE FLOATING FEATURE CARDS — COMPACT FINAL OVERRIDE
   Keeps the phone preview visible and reduces visual clutter.
   Keep this block at the very end of the stylesheet.
   ========================================================== */

@media (max-width: 767.98px) {
  .feature-visual {
    min-height: 450px;
  }

  .feature-phone-shell {
    width: min(72%, 285px);
  }

  .feature-float,
  .recipe-mini-card,
  .offer-float {
    gap: 7px;
    max-width: 145px;
    padding: 7px 9px;
    border-radius: 12px;
    box-shadow: 0 12px 30px rgba(31, 23, 48, .14);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
  }

  .feature-float small,
  .recipe-mini-card small,
  .offer-float small {
    margin-bottom: 2px;
    font-size: 8px;
    letter-spacing: .045em;
  }

  .feature-float strong,
  .recipe-mini-card strong,
  .offer-float strong {
    max-width: 102px;
    font-size: 9.5px;
    line-height: 1.2;
  }

  .feature-float__avatar,
  .feature-float__spark,
  .offer-float__icon,
  .offer-float__heart,
  .recipe-mini-card > span:first-child:not(.recipe-mini-card__thumb) {
    width: 27px;
    height: 27px;
    flex-basis: 27px;
    border-radius: 9px;
    font-size: 10px;
  }

  .recipe-mini-card__thumb {
    width: 31px;
    height: 31px;
    flex-basis: 31px;
    border-radius: 9px;
  }

  .store-dot {
    width: 19px;
    height: 19px;
    margin-left: -6px;
    border-width: 2px;
  }

  /* Show fewer cards on phones. */
  .feature-float--prompt,
  .recipe-mini-card--budget,
  .offer-float--stores {
    display: none;
  }

  /* Reposition the cards that remain so they frame, not cover, the phone. */
  .feature-float--answer {
    top: auto;
    right: -2px;
    bottom: 9%;
  }

  .recipe-mini-card--time {
    top: 12%;
    left: -2px;
  }

  .recipe-mini-card--menu {
    top: auto;
    right: -2px;
    bottom: 8%;
    min-width: 0;
  }

  .offer-float--notification {
    top: 12%;
    left: -2px;
  }

  .offer-float--favorite {
    top: auto;
    right: -2px;
    bottom: 10%;
  }
}

@media (max-width: 420px) {
  .feature-visual {
    min-height: 410px;
  }

  .feature-phone-shell {
    width: min(74%, 250px);
  }

  .feature-float,
  .recipe-mini-card,
  .offer-float {
    max-width: 128px;
    padding: 6px 8px;
  }

  .feature-float strong,
  .recipe-mini-card strong,
  .offer-float strong {
    max-width: 88px;
    font-size: 9px;
  }

  /* On very narrow phones, show only one floating card per feature. */
  .recipe-mini-card--menu,
  .offer-float--favorite {
    display: none;
  }

  .feature-float--answer {
    right: -4px;
    bottom: 8%;
  }

  .recipe-mini-card--time,
  .offer-float--notification {
    left: -4px;
    top: 10%;
  }
}
