:root {
  --ff-sans: "Work Sans", system-ui, -apple-system, "Segoe UI", Roboto, Ubuntu, "Helvetica Neue", Arial, sans-serif;
  --ff-serif: "Lora", Georgia, "Times New Roman", serif;
  --color-espresso: #2f231f;
  --color-beige: #f5efe7;
  --color-ink: #111;
  --color-text: #fff;
  --glass-border: rgba(0, 0, 0, 0.12);
  --shadow-soft: 0 8px 24px rgba(0, 0, 0, 0.08);
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  font-family: var(--ff-serif);
  color: var(--color-espresso);
  background: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex: 1 0 auto;
}

.container-xxl {
  width: min(1680px, 100%);
  margin: 0 auto;
  padding: 0 10px;
}

.brand-serif {
  font-family: var(--ff-sans);
}

.hero {
  min-height: 100vh;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.95)), url('../assets/benefits.jpg') center/cover no-repeat;
  text-align: center;
  position: relative;
}

.hero .brand {
  height: 80px;
  width: auto;
  margin-bottom: 10px;
}

.hero-title {
  font-family: var(--ff-sans);
  font-weight: 700;
  font-size: clamp(2rem, 6vw, 3.5rem);
  margin: 6px 0 4px;
}

.hero-sub {
  color: #6b6460;
  margin: 0 0 16px;
}

.countdown {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  border: 1px solid var(--glass-border);
  border-radius: 14px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.cd-item {
  display: grid;
  justify-items: center;
}

.cd-num {
  font-size: clamp(1.6rem, 4.2vw, 2.6rem);
  font-weight: 700;
  line-height: 1;
}

.cd-label {
  font-size: .85rem;
  color: #6b6460;
}

.cd-sep {
  font-weight: 700;
  opacity: .35;
  font-size: clamp(1.6rem, 4.2vw, 2.4rem);
}

.hero-social {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 18px;
  display: flex;
  justify-content: center;
}


.f-social {
  display: flex;
  gap: 10px;
}

.f-ic {
  width: 36px;
  height: 36px;
  border: 1px solid var(--glass-border);
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--color-espresso);
  text-decoration: none;
  transition: background 160ms ease, transform 160ms ease;
}

.f-ic:hover {
  background: #f7f2eb;
  transform: translateY(-1px);
}

.landing-slides {
  position: relative;
  overflow: hidden;
}

.frame {
  position: relative;
  z-index: 20;
}

.slideshow {
  width: 100%;
  height: calc(100vh - 0px);
  position: relative;
  overflow: hidden;
  background: radial-gradient(1000px 500px at 50% 45%, #fffdf9 0%, #f6ece1 58%, #f3e6d8 100%);
}

.slide {
  margin: 0;
}

.slide,
.slide__img-wrap,
.slide__img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.slide {
  display: flex;
  align-items: center;
  justify-content: center;
}

.js .slide {
  opacity: 0;
  pointer-events: none;
}

.js .slide--current {
  opacity: 1;
  pointer-events: auto;
}

.slide__img-wrap {
  will-change: transform;
  overflow: hidden;
}

.slide__img {
  background-size: cover;
  background-position: center center;
  will-change: transform;
  -webkit-backspace-visibility: hidden;
}

.slide__caption {
  position: relative;
  padding: 0 10vw;
  cursor: default;
  width: 100%;
}

.slides__caption-headline {
  font-size: clamp(2rem, 6.5vw, 5rem);
  line-height: 1.1;
  margin: 0;
  font-weight: 300;
}

.text-row {
  position: relative;
  overflow: hidden;
  display: block;
  white-space: nowrap;
}

.text-row>span {
  display: block;
  position: relative;
  padding: .5rem 0;
}

.slides__caption-headline em,
.slides__caption-headline strong {
  font-family: freight-big-pro, serif;
  font-size: clamp(2rem, 7vw, 5rem);
  font-weight: 400;
}

.slides__caption-headline em {
  font-style: italic;
}

.slides__caption-link {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  margin-top: 1rem;
  text-indent: .2vw;
  font-size: clamp(1rem, 5vw, 1.75rem);
  font-weight: 600;
}

.slides__caption-link.slides__ghost {
  width: 1px;
  height: 1px;
  overflow: hidden;
  padding: 0;
  margin: 0;
  border: 0;
}

.cta-btn {
  --cta-shadow: 0 10px 35px rgba(0, 0, 0, 0.25);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 60px;
  padding: 14px 24px 14px 22px;
  color: #fff;
  border-radius: 999px;
  border: 1px solid rgba(47, 35, 31, 0.98);
  background: rgba(47, 35, 31, 0.92);
  box-shadow: 0 2px 0 rgba(255, 255, 255, .06) inset;
  transition: background .2s ease, transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  text-decoration: none;
}

.cta-btn:hover {
  background: rgba(58, 44, 39, 0.98);
  transform: translateY(-2px);
  box-shadow: var(--cta-shadow);
}

.cta-btn__label {
  font-size: clamp(1rem, 2.5vw, 1.6rem);
  letter-spacing: .015em;
  font-weight: 600;
}

.cta-btn__icon {
  width: 44px;
  height: 20px;
  transition: transform .2s ease;
}

.cta-btn:hover .cta-btn__icon {
  transform: translateX(6px);
}

.slides-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 16px;
  background: #3a302a27;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  margin-right: 0;
  border-radius: 75px;
  pointer-events: auto;
  z-index: 101;
}

.slides-nav__button {
  display: block;
  cursor: pointer;
  background: none;
  border: 0;
  width: 64px;
  height: 28px;
  padding: 0;
  margin: 0 .75rem;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  transition: all .2s ease;
}

.slides-nav__button:hover {
  transform: scale(1.1);
}

.slides-nav svg {
  display: block;
  width: 100%;
  height: 100%;
  fill: #fff;
}

.slides-nav__index {
  margin-left: 1rem;
  white-space: nowrap;
  color: var(--color-text);
  border: 1px solid var(--color-text);
  border-radius: 60px;
  padding: 1.1rem 1.6rem;
  text-align: center;
  display: flex;
  align-items: center;
}

.slides-nav__index>span {
  width: 2rem;
}

.slides-nav__index-current {
  position: relative;
  overflow: hidden;
}

.slides-nav__index-current span {
  display: inline-block;
}

@media screen and (min-width: 53em) {
  .frame {
    position: absolute;
    text-align: left;
    z-index: 100;
    top: 0;
    left: 0;
    bottom: 20px;
    display: grid;
    align-content: space-between;
    width: 100%;
    max-width: none;
    height: 100vh;
    padding: 2rem 50px;
    pointer-events: none;
    grid-template-columns: 25% 50% 25%;
    grid-template-rows: auto auto auto;
    grid-template-areas: 'title links info' '... ... ...' 'demos demos nav';
  }

  .slides-nav {
    grid-area: nav;
    justify-self: end;
    align-self: end;
  }

  .frame a,
  .frame button {
    pointer-events: auto;
  }
}

@media (max-width: 1439.98px) {
  .slide--current .slide__caption::before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 0;
    top: -40px;
    height: calc(100% + 80px);
    width: min(60vw, 720px);
    background: linear-gradient(90deg, rgba(255, 255, 255, .88), rgba(255, 255, 255, .72), rgba(255, 255, 255, .38), transparent);
    pointer-events: none;
  }

  .slide__caption {
    position: relative;
    padding: 0 2vw 0 6vw;
  }

  .slides__caption-headline {
    font-size: clamp(1.8rem, 5.2vw, 4.6rem);
    position: relative;
    z-index: 1;
  }

  .slides__caption-headline em,
  .slides__caption-headline strong {
    font-size: clamp(1.8rem, 5.6vw, 4.8rem);
  }

  .frame {
    position: absolute;
    bottom: 10px;
    right: 0;
  }

  .slides-nav {
    justify-content: flex-end;
  }
}

@media (max-width: 1199.98px) {
  .slide--current .slide__caption::before {
    width: min(70vw, 680px);
  }

  .slides__caption-headline {
    font-size: clamp(2rem, 6.2vw, 3.8rem);
  }

  .slides__caption-headline em,
  .slides__caption-headline strong {
    font-size: clamp(2rem, 6.6vw, 4rem);
  }

  .slides-nav__index {
    padding: .8rem 1.2rem;
  }
}

@media (max-width: 991.98px) {
  .cta-btn__icon {
    width: 36px;
    height: 16px;
  }

  .slides-nav__button svg {
    width: 60px;
    height: 24px;
  }
}

@media (max-width: 767.98px) {
  .cta-btn__icon {
    width: 32px;
    height: 14px;
  }
}

@media (max-width: 479.98px) {
  .slides-nav__button svg {
    margin: 0 1px;
    transform: scale(0.8);
  }

  .slides-nav__button {
    width: 48px;
  }

  .slides-nav__index {
    padding: 10px 12px;
    font-size: 14px;
  }
}


.landing-subscribe {
  padding: 100px 0;
  background: #fefcfb;
}

.landing-subscribe .ls-inner {
  text-align: center;
  display: grid;
  gap: 16px;
  width: min(720px, 96vw);
  margin: 0 auto;
  background: #fff;
}

.landing-subscribe h3 {
  margin: 0;
  font-family: var(--ff-sans);
  font-weight: 700;
  font-size: clamp(1.6rem, 2.8vw, 2rem);
}

.landing-subscribe .ls-form {
  display: grid;
  gap: 12px;
  justify-items: stretch;
}

.landing-subscribe .ls-input {
  width: 100%;
  height: 52px;
  padding: 0 16px;
  border: 1px solid var(--glass-border);
  border-radius: 14px;
  color: var(--color-espresso);
  font-size: 16px;
}

.landing-subscribe .ls-input:focus {
  outline: none;
  box-shadow: 0 0 0 2px rgba(47, 35, 31, 0.08);
  border-color: rgba(47, 35, 31, 0.75);
}

.landing-subscribe .btn {
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  border-radius: 999px;
}

.landing-subscribe .ls-note {
  color: #6b6460;
  opacity: .85;
  font-size: .9rem;
  margin: 0;
}


.landing-subscribe .btn .arrow {
  width: 36px;
  margin-left: 8px;
  fill: currentColor;
  flex-shrink: 0;
}

.btn,
a.btn {
  font-family: var(--ff-serif);
  letter-spacing: 0.015em;
  font-weight: 600;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 12px 22px;
  text-decoration: none;
  cursor: pointer;
  font-size: 1.25rem;
}

.btn-theme {
  color: #fff;
  background: rgba(47, 35, 31, 0.92);
  border-color: rgba(47, 35, 31, 0.98);
  box-shadow: 0 2px 0 rgba(255, 255, 255, 0.06) inset;
  transition: background 200ms ease, transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease, color 200ms ease;
}

.btn-theme:hover {
  color: #fff;
  background: rgba(58, 44, 39, 0.98);
  transform: translateY(-1px);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.25);
}

#benefits {
  background: #f2e5d8;
  padding: 72px 0;
  position: relative;
  overflow: hidden;
  --benefits-bg-base: 140px;
}

#benefits::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: -100px;
  background-image: url('../assets/benefits.jpg');
  background-size: cover;
  background-position: calc(50% + var(--benefits-bg-base, 0px) + var(--benefits-bg-shift, 0px)) center;
  will-change: background-position;
  z-index: 0;
}

#benefits>.container-xxl {
  position: relative;
  z-index: 1;
}

@media (min-width: 992px) {
  #benefits {
    --benefits-bg-base: 100px;
  }
}

@media (min-width: 1400px) {
  #benefits {
    --benefits-bg-base: 60px;
  }
}

@media (min-width: 1920px) {
  #benefits {
    --benefits-bg-base: 0px;
  }
}

.benefits-head {
  text-align: left;
  margin: 0 10px 18px;
}

.benefits-head h3 {
  font-family: var(--ff-serif);
  font-weight: 700;
  font-size: clamp(1.8rem, 3.2vw, 2.25rem);
  margin: 0;
}

.benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.benefit-card {
  position: relative;
  min-height: 170px;
  background: linear-gradient(90deg, #fcf9f3 0%, #fcf9f3 75%, rgba(252, 249, 243, 0) 100%);
  border-radius: 18px;
  padding: 18px;
  overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (min-width: 992px) {
  .benefit-card {
    width: 50%;
    min-height: 170px;
  }
}

.benefit-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}

.benefit-icon {
  height: 128px;
  display: grid;
  place-items: center;
}

.benefit-icon--left {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
}

.benefit-card {
  padding-left: 168px;
}

@media (max-width: 480px) {
  .benefit-icon--left {
    position: static;
    left: auto;
    top: auto;
    transform: none;
  }

  .benefit-card {
    padding-left: 18px;
    text-align: center;
  }
}

.benefit-icon video {
  width: 128px;
  height: 128px;
  object-fit: contain;
  display: block;
  filter: none;
}

.benefit-title {
  margin: 0;
  font-family: var(--ff-sans);
  font-weight: 700;
  font-size: 22px;
}

.benefit-text {
  margin: 6px 0 0;
  color: #6b6460;
}

.benefit-cta {
  width: max-content;
  text-decoration: none;
  color: var(--color-espresso);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.benefit-cta .arrow {
  width: 22px;
  height: 10px;
  fill: currentColor;
  transition: transform .2s ease;
}

.benefit-cta:hover {
  color: #7f5a3a;
}

.benefit-cta:hover .arrow {
  transform: translateX(6px);
}

.landing-footer {
  background: #fefcfb;
  border-top: 1px solid var(--glass-border);
  color: var(--color-espresso);
  padding: 16px 0;
}

.landing-footer .lf-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 10px;
}

.landing-footer .lf-left {
  font-size: .95rem;
}


.landing-pick {
  padding: 100px 0 100px;
  background: #fff;
}

.landing-pick h2 {
  font-family: var(--ff-sans);
  font-weight:600;
  font-size: clamp(1.8rem, 3.2vw, 2.25rem);
  margin: 0;
}

.landing-pick .options-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 28px;
  margin-top: 20px;
}

.landing-pick .option-card {
  display: block;
  width: 500px;
  max-width: 30%;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 18px;
  padding: 10px 30px 30px 30px;
  background: #fdfdfd;
  color: inherit;
  text-decoration: none;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
  text-align: center;
}

.landing-pick .option-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  border-color: rgba(0, 0, 0, 0.18);
}

.landing-pick .option-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.landing-pick .line-art {
  width: 100%;
  height: auto;
  text-align: center;
}

.landing-pick .line-art video {
  width: 400px;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
  opacity: 1;
  transition: opacity 180ms ease;
  margin: 0 auto;
}

.landing-pick .option-title {
  font-family: var(--ff-sans);
  font-weight: 500;
  font-size: 1.4rem;
  margin: 0 0 15px;
}

.landing-pick .option-desc {
  color: #6c757d;
  margin: 0;
}

@media (max-width: 991.98px) {
  .landing-pick .option-card {
    max-width: 46%;
  }
}

@media (max-width: 575.98px) {
  .landing-pick .option-card {
    max-width: 100%;
  }
}



@media (max-width: 1439.98px) {
  .slide--current .slide__caption::before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 0;
    top: -40px;
    height: calc(100% + 60px);
    width: min(60vw, 720px);
    background: linear-gradient(90deg, rgba(255, 255, 255, .88), rgba(255, 255, 255, .72), rgba(255, 255, 255, .48), transparent);
    pointer-events: none;
  }

  .slide__caption {
    position: relative;
    padding: 0 2vw 0 6vw;
  }

  .slides__caption-headline {
    font-size: clamp(1.8rem, 5.2vw, 4.6rem);
    position: relative;
    z-index: 1;
  }

  .slides__caption-headline em,
  .slides__caption-headline strong {
    font-size: clamp(1.8rem, 5.6vw, 4.8rem);
  }

  .slides__caption-link {
    margin-top: 0.75rem;
    position: relative;
    z-index: 1;
  }

  .frame {
    position: absolute;
    top: auto;
    bottom: 10px;
    right: 0;
  }

  .slides-nav {
    justify-content: flex-end;
  }

  .slides-nav__index {
    padding: .8rem 1.2rem;
  }
}

@media (max-width: 1199.98px) {
  .slide--current .slide__caption::before {
    width: min(70vw, 680px);
  }

  .slides__caption-headline {
    font-size: clamp(2rem, 6.2vw, 3.8rem);
  }

  .slides__caption-headline em,
  .slides__caption-headline strong {
    font-size: clamp(2rem, 6.6vw, 4rem);
  }


}

@media (max-width: 767.98px) {
  .cta-btn__icon {
    width: 32px;
    height: 14px;
  }

  .slide--current .slide__caption::before {
    width: min(90vw, 680px);
    background: linear-gradient(90deg, rgba(255, 255, 255, .88), rgba(255, 255, 255, .72), rgba(255, 255, 255, .38), transparent);
  }

  .slides-nav__button svg {
    width: 60px;
    height: 24px;
  }

}



@media (max-width: 479.98px) {
  .slides-nav__button svg {
    margin: 0 1px;
    transform: scale(0.8);
  }

  .slides-nav__button {
    width: 48px;
  }

  .slides-nav__index {
    padding: 10px 12px;
    font-size: 14px;
  }
}

@media screen and (max-width: 768px) {
  .landing-footer .lf-inner {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .benefits-head h3 {
    text-align: center;
  }
}