/* =========================================================
   Fonts
   ========================================================= */
@font-face {
  font-family: "Suisse Int'l";
  src: url("20230811_Suisse_Web/SuisseIntl-Regular-WebM.woff2") format("woff2"),
    url("20230811_Suisse_Web/SuisseIntl-Regular-WebM.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Suisse Int'l";
  src: url("20230811_Suisse_Web/SuisseIntl-Medium-WebM.woff2") format("woff2"),
    url("20230811_Suisse_Web/SuisseIntl-Medium-WebM.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

/* =========================================================
   Tokens
   ========================================================= */
:root {
  --charcoal-90: #212121;
  --charcoal-90-muted: rgba(33, 33, 33, 0.64);
  --charcoal-90-super-muted: rgba(33, 33, 33, 0.36);
  --dark-grey: #313131;
  --stone-10: #f7f9ee;
  --stone-20: #ecefdf;
  --stone-60: #ccceb7;
  --stone-90: #52534d;
  --stone-100: #d6d9c8;
  --orange-digital: #ff961b;
  --orange-100: #c67123;
  --orange-10: #ffeddc;

  --shadow-card: 0 4px 16px rgba(17, 34, 17, 0.05);
  --shadow-buy: 0 8px 8px rgba(33, 33, 33, 0.05);

  --radius-pill: 999px;
  --radius-sm: 12px;
  --radius-md: 16px;
  --radius-lg: 18px;

  --content-max: 1344px;
  --gutter-d: 48px;
  --gutter-m: 16px;
}

/* =========================================================
   Reset / base
   ========================================================= */
*,
*::before,
*::after {
  box-sizing: border-box;
}
html,
body {
  margin: 0;
  padding: 0;
}
html {
  scrollbar-gutter: stable;
}
body {
  background: var(--stone-10);
  color: var(--charcoal-90);
  font-family: "Suisse Int'l", -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.3;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img,
svg {
  display: block;
  max-width: 100%;
}
button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 0;
}
a {
  color: inherit;
}
ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}
h1,
h2,
h3,
p {
  margin: 0;
}

/* =========================================================
   Type scale
   ========================================================= */
.h-display {
  font-weight: 500;
  font-size: 40px;
  line-height: 1;
  letter-spacing: -0.03em;
}
.h1 {
  font-weight: 500;
  font-size: 28px;
  line-height: 1.1;
  letter-spacing: -0.03em;
}
.h2 {
  font-weight: 500;
  font-size: 28px;
  line-height: 1.1;
  letter-spacing: -0.03em;
}
.body {
  font-weight: 400;
  font-size: 15px;
  line-height: 1.3;
}
.text-orange {
  color: var(--orange-digital);
}
@media (min-width: 900px) {
  .h-display {
    font-size: 64px;
  }
  .h1,
  .h2 {
    font-size: 40px;
  }
  .body {
    font-size: 16px;
  }
}

/* =========================================================
   Buttons / icons
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 40px;
  padding: 0 16px;
  border-radius: var(--radius-pill);
  font-weight: 500;
  font-size: 14px;
  line-height: 1.1;
  letter-spacing: -0.01em;
  white-space: nowrap;
  text-decoration: none;
  cursor: pointer;
  transition: filter 0.15s ease, background 0.15s ease;
}
.btn:focus-visible {
  outline: 2px solid var(--orange-digital);
  outline-offset: 2px;
}
.btn--primary {
  background: var(--orange-digital);
  color: var(--charcoal-90);
}
.btn--primary:hover {
  filter: brightness(0.96);
}
.btn--ghost {
  height: 48px;
  padding: 0 24px;
  border: 1px solid var(--stone-60);
  background: transparent;
  color: var(--charcoal-90);
  font-size: 16px;
}
.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.4);
}

.icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: currentColor;
}
.icon--check {
  width: 12px;
  height: 12px;
}
.icon--chevron {
  width: 16px;
  height: 16px;
}

.icon-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-pill);
  color: var(--charcoal-90);
}
.icon-button svg {
  width: 24px;
  height: 24px;
}
.icon-button:hover {
  background: rgba(33, 33, 33, 0.06);
}

/* =========================================================
   Header
   ========================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--stone-10);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  height: 72px;
  padding: 16px 16px;
  max-width: var(--content-max);
  margin: 0 auto;
}
.site-header__left {
  display: flex;
  align-items: center;
  gap: 32px;
  min-width: 0;
}
.site-header__logo {
  display: inline-flex;
  align-items: center;
}
.site-header__logo img {
  height: 23px;
  width: auto;
}
.site-nav {
  display: none;
  align-items: center;
}
.site-nav__item {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  min-height: 40px;
  padding: 8px 12px;
  border-radius: var(--radius-pill);
  font-weight: 500;
  font-size: 16px;
  line-height: 1.3;
  color: var(--charcoal-90);
}
.site-nav__item:hover {
  background: rgba(33, 33, 33, 0.06);
}
.site-header__right {
  display: flex;
  align-items: center;
  gap: 4px;
}
.site-header__menu {
  display: inline-flex;
}
@media (min-width: 900px) {
  .site-header__inner {
    height: 72px;
    padding: 16px 24px;
  }
  .site-nav {
    display: flex;
  }
  .site-header__menu {
    display: none;
  }
  .site-header__right {
    gap: 8px;
  }
}

/* =========================================================
   Buy section
   ========================================================= */
.buy {
  background: var(--stone-10);
  padding: 0 var(--gutter-m) 32px;
}
.buy__inner {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: var(--content-max);
  margin: 0 auto;
}
.buy__details {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.buy__title {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.buy__meta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding-top: 4px;
  font-size: 12px;
  color: var(--charcoal-90-muted);
  text-align: center;
}
.buy__meta a {
  text-decoration: underline;
}

@media (min-width: 900px) {
  .buy {
    padding: 48px var(--gutter-d) 80px;
  }
  .buy__inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
  }
  .buy__gallery {
    flex: 0 0 auto;
    width: min(50%, 659px);
  }
  .buy__details {
    flex: 0 0 541px;
    width: 541px;
    align-self: stretch;
    justify-content: center;
  }
}

/* Gallery */
.gallery {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-md);
  overflow: hidden;
}
.gallery__track {
  display: flex;
  width: 100%;
  height: 100%;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}
.gallery__track::-webkit-scrollbar {
  display: none;
}
.gallery__slide {
  flex: 0 0 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  scroll-snap-align: start;
}
.gallery__paginator {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  display: flex;
  gap: 8px;
  background: linear-gradient(to top, rgba(33, 33, 33, 0.3), rgba(33, 33, 33, 0));
  padding: 24px 0 0;
  pointer-events: none;
}
.gallery__dot {
  flex: 1;
  height: 2px;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 2px;
}
.gallery__dot.is-active {
  background: rgba(255, 255, 255, 1);
}

/* =========================================================
   Buy box
   ========================================================= */
.buy-box {
  background: var(--stone-100);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.buy-box__tabs {
  display: flex;
}
.buy-box__tab {
  flex: 1;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 16px;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.1;
  color: var(--charcoal-90-muted);
  border-radius: 16px 16px 0 0;
  transition: background 0.15s ease, color 0.15s ease;
}
.buy-box__tab.is-active {
  background: var(--stone-20);
  color: var(--dark-grey);
}
.buy-box__body {
  background: var(--stone-20);
  padding: 4px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-radius: 0 16px 16px 16px;
}

.buy-box__summary {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 12px;
}
.buy-box__benefits {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 3px;
}
.buy-box__benefits li {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  line-height: 1.3;
  color: var(--dark-grey);
}
.buy-box__benefits .icon--check {
  color: var(--charcoal-90);
}

.cadence {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  height: 40px;
  padding: 0 12px;
  background: var(--stone-10);
  color: var(--dark-grey);
  border-radius: var(--radius-pill);
  font-weight: 400;
  font-size: 12px;
  line-height: 1.3;
  white-space: nowrap;
  flex-shrink: 0;
}
.cadence:hover {
  filter: brightness(0.97);
}

/* Variants */
.buy-box__variants {
  display: flex;
  flex-direction: column;
}
.variant {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 8px;
  padding: 16px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background 0.15s ease;
}
.variant input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.variant__radio {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1px solid var(--charcoal-90-super-muted);
  position: relative;
  flex-shrink: 0;
}
.variant--selected .variant__radio {
  border-color: var(--charcoal-90);
}
.variant--selected .variant__radio::after {
  content: "";
  position: absolute;
  inset: 5px;
  background: var(--charcoal-90);
  border-radius: 50%;
}
.variant__label {
  font-weight: 500;
  font-size: 14px;
  line-height: 1.1;
  color: var(--dark-grey);
  padding-top: 3px;
}
.variant__badge {
  background: var(--orange-10);
  color: var(--orange-100);
  font-size: 12px;
  line-height: 1.3;
  padding: 4px 12px;
  border-radius: 24px;
  margin-left: -2px;
  white-space: nowrap;
  display: none;
}
.variant--selected .variant__badge {
  display: inline-flex;
}
.variant__price {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  gap: 4px;
  text-align: right;
  white-space: nowrap;
}
.variant__price-row {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.1;
}
.variant__price-strike {
  color: var(--stone-60);
  text-decoration: line-through;
}
.variant__price-now {
  color: var(--dark-grey);
  font-weight: 500;
  font-size: 14px;
  line-height: 1.1;
}
.variant__price-unit {
  font-size: 12px;
  line-height: 1.3;
  color: var(--dark-grey);
}

.variant--selected {
  background: var(--stone-10);
  box-shadow: var(--shadow-buy);
  grid-template-columns: auto auto auto 1fr auto;
}
.variant--selected .variant__cta {
  grid-column: 1 / -1;
  width: 100%;
  margin-top: 4px;
}
.variant:not(.variant--selected) {
  box-shadow: var(--shadow-buy);
  background: transparent;
}

/* =========================================================
   Badges marquee
   ========================================================= */
.badges {
  background: var(--stone-60);
  overflow: hidden;
}
.badges__track {
  display: flex;
  width: max-content;
  animation: badge-scroll 50s linear infinite;
}
.badges__set {
  display: flex;
  gap: 40px;
  padding: 29px 20px;
  flex-shrink: 0;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--charcoal-90);
  white-space: nowrap;
}
.badge__check {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path d='M3 8.5l3 3 7-7' fill='none' stroke='%23212121' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-size: contain;
  background-repeat: no-repeat;
}
@keyframes badge-scroll {
  to {
    transform: translateX(-50%);
  }
}
@media (prefers-reduced-motion: reduce) {
  .badges__track {
    animation-duration: 200s;
  }
}

/* =========================================================
   How it works
   ========================================================= */
.how {
  background: var(--charcoal-90);
  color: var(--stone-10);
  padding: 56px 0;
}
.how__inner {
  display: flex;
  flex-direction: column-reverse;
  gap: 16px;
  padding: 0 var(--gutter-m);
  max-width: var(--content-max);
  margin: 0 auto;
}
.how__copy {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.how__media {
  width: 100%;
  aspect-ratio: 357 / 277;
  border-radius: var(--radius-md);
  overflow: hidden;
}
.how__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.steps {
  display: flex;
  flex-direction: column;
}
.step {
  border-top: 1px solid var(--stone-90);
  padding: 16px 0;
  position: relative;
}
.step.is-active {
  border-top-color: var(--stone-60);
}
.step.is-active::before {
  content: "";
  position: absolute;
  top: -2px;
  left: 0;
  width: 60%;
  height: 3px;
  background: var(--stone-10);
  border-radius: 2px;
}
.step__title {
  font-weight: 500;
  font-size: 20px;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--stone-90);
}
.step.is-active .step__title {
  color: var(--orange-digital);
}
.step__num {
  display: inline-block;
  margin-right: 4px;
}
.step__body {
  margin-top: 8px;
  font-size: 16px;
  line-height: 1.3;
  color: var(--stone-10);
}
@media (min-width: 900px) {
  .how {
    padding: 80px 0;
  }
  .how__inner {
    flex-direction: row;
    align-items: stretch;
    gap: 24px;
    padding: 0 var(--gutter-d);
  }
  .how__copy {
    flex: 0 0 546px;
    gap: 64px;
  }
  .how__media {
    flex: 1 1 auto;
    aspect-ratio: auto;
    height: auto;
    min-height: 600px;
  }
  .step__title {
    font-size: 24px;
  }
}

/* =========================================================
   Reviews
   ========================================================= */
.reviews {
  background: var(--stone-20);
  padding: 56px 0 80px;
}
.reviews__header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  padding: 0 var(--gutter-m);
  max-width: var(--content-max);
  margin: 0 auto 32px;
}
.reviews__track-wrap {
  width: 100%;
  overflow: hidden;
}
.reviews__track {
  display: flex;
  gap: 9px;
  padding: 0 var(--gutter-m);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}
.reviews__track::-webkit-scrollbar {
  display: none;
}
.review {
  flex: 0 0 240px;
  height: 220px;
  background: var(--stone-10);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 24px;
  text-align: center;
  scroll-snap-align: start;
}
.review__stars {
  height: 18px;
  width: auto;
}
.review__quote {
  font-weight: 500;
  font-size: 18px;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--charcoal-90);
}
.review__author {
  font-size: 14px;
  line-height: 1.3;
  color: var(--charcoal-90);
}
@media (min-width: 900px) {
  .reviews {
    padding: 80px 0;
  }
  .reviews__header {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 0 var(--gutter-d);
    margin-bottom: 40px;
  }
  .reviews__track {
    gap: 9px;
    padding-left: var(--gutter-d);
  }
  .review {
    flex: 0 0 343px;
    height: 246px;
    padding: 32px;
  }
  .review__stars {
    height: 20px;
  }
  .review__quote {
    font-size: 24px;
    letter-spacing: -0.03em;
  }
}

