/* ============================================================
   future.css — Changed Landing Page
   Design tokens mirror style.css exactly.
   ============================================================ */

:root {
  --green: #32FD83;
  --green-mid: #1de87a;
  --green-dark: #0b4d24;
  --dark: #111a11;
  --white: #ffffff;
  --off-white: #f4f4f4;
  --light-card: #ebebeb;
  --text-dark: #0d160d;
  --muted-d: rgba(255, 255, 255, 0.45);
  --muted-l: rgba(13, 22, 13, 0.55);
  --radius-card: 28px;
  --radius-pill: 999px;
  --max-w: 1200px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  color: var(--text-dark);
  background: var(--white);
}

img {
  display: block;
  max-width: 100%;
}

a {
  text-decoration: none;
  color: inherit;
}


/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  padding: 14px 20px;
  z-index: 100;
}

.nav__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  background: rgba(17, 26, 17, 0.90);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: var(--radius-pill);
  padding: 8px 8px 8px 22px;
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 9px;
}

.nav__logo-icon {
  height: 26px;
  width: auto;
}

.nav__logo-word {
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.4px;
}

.nav__links {
  display: flex;
  gap: 2px;
  justify-self: center;
}

.nav__links a {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
  padding: 7px 15px;
  border-radius: var(--radius-pill);
  transition: color 0.2s, background 0.2s;
}

.nav__links a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.09);
}

.nav__cta {
  padding: 9px 20px;
  background: var(--green);
  color: var(--dark);
  font-size: 13px;
  font-weight: 700;
  border-radius: var(--radius-pill);
  transition: background 0.2s;
}

.nav__cta:hover {
  background: var(--green-mid);
}

.nav__actions {
  display: flex;
  align-items: center;
  gap: 4px;
  justify-self: end;
}

/* Language selector */
.lang-selector {
  position: relative;
}

.lang-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  background: transparent;
  border: none;
  border-radius: var(--radius-pill);
  color: rgba(255, 255, 255, 0.65);
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.lang-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.lang-btn svg {
  flex-shrink: 0;
}

.lang-dropdown {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  background: #1a261a;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 6px;
  min-width: 148px;
  display: none;
  z-index: 200;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.45);
}

.lang-selector.is-open .lang-dropdown {
  display: block;
}

.lang-option {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  padding: 8px 10px;
  background: transparent;
  border: none;
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.65);
  font-family: inherit;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  text-align: left;
  transition: background 0.15s, color 0.15s;
}

.lang-option:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.lang-option.is-active {
  color: var(--green);
}

.nav__signin {
  padding: 9px 18px;
  background: transparent;
  color: rgba(255, 255, 255, 0.65);
  border: none;
  border-radius: var(--radius-pill);
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.nav__signin:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}


/* ============================================================
   HERO
   ============================================================ */
.hero {
  background: var(--dark);
  height: 100vh;
  min-height: 640px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  overflow: hidden;
}

.hero__brand {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: clamp(88px, 15.5vw, 224px);
  font-weight: 900;
  color: #fff;
  letter-spacing: -5px;
  line-height: 0.88;
  text-transform: uppercase;
  white-space: nowrap;
  z-index: 1;
  pointer-events: none;
  user-select: none;
}

.hero__phones {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 16px;
  height: 72%;
  max-height: 600px;
  padding: 0 24px;
}

.hero__phone {
  flex-shrink: 0;
}

.hero__phone img {
  height: 100%;
  width: auto;
  border-radius: 44px;
  filter: drop-shadow(0 28px 72px rgba(0, 0, 0, 0.70));
}

.hero__phone--left {
  height: 70%;
  transform: rotate(-5deg) translateY(14%);
  margin-right: -28px;
  animation: phoneFloat 4s ease-in-out infinite;
  animation-delay: 0.8s;
}

.hero__phone--center {
  height: 100%;
  animation: phoneFloat 4s ease-in-out infinite;
}

.hero__phone--right {
  height: 70%;
  transform: rotate(5deg) translateY(14%);
  margin-left: -28px;
  animation: phoneFloat 4s ease-in-out infinite;
  animation-delay: 1.6s;
}

@keyframes phoneFloat {

  0%,
  100% {
    transform: rotate(var(--tilt, 0deg)) translateY(var(--base-y, 0%));
  }

  50% {
    transform: rotate(var(--tilt, 0deg)) translateY(calc(var(--base-y, 0%) - 12px));
  }
}

.hero__phone--left {
  --tilt: -5deg;
  --base-y: 14%;
}

.hero__phone--right {
  --tilt: 5deg;
  --base-y: 14%;
}

.hero__phone--center {
  --tilt: 0deg;
  --base-y: 0%;
}


/* ============================================================
   INTRO
   ============================================================ */
.intro {
  background: var(--white);
  padding: 92px 24px 80px;
  text-align: center;
}

.intro__inner {
  max-width: 620px;
  margin: 0 auto;
}

.eyebrow {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--green-dark);
  background: rgba(50, 253, 131, 0.10);
  padding: 5px 14px;
  border-radius: 99px;
  margin-bottom: 24px;
}

.eyebrow--dark {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--text-dark);
  margin-bottom: 14px;
  opacity: 0.5;
}

.eyebrow--green {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 14px;
}

.intro__headline {
  font-size: clamp(38px, 5.5vw, 62px);
  font-weight: 900;
  color: var(--text-dark);
  letter-spacing: -2.5px;
  line-height: 1.0;
  margin-bottom: 18px;
}

.intro__sub {
  font-size: 17px;
  color: var(--muted-l);
  line-height: 1.6;
  margin-bottom: 36px;
}

.intro__disclaimer {
  font-size: 12px;
  color: rgba(13, 22, 13, 0.35);
  margin-top: 16px;
}

.intro__disclaimer a {
  color: var(--green-dark);
  text-decoration: underline;
}


/* ============================================================
   STORE BUTTONS
   ============================================================ */
.store-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.store-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  padding: 11px 20px;
  min-width: 190px;
  background: var(--dark);
  border-radius: 12px;
  border: 1.5px solid rgba(255, 255, 255, 0.12);
  transition: background 0.2s, transform 0.15s;
  cursor: pointer;
}

.store-btn:hover {
  background: #1c2e1c;
  transform: translateY(-2px);
}

.store-btn--ghost {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.15);
}

.store-btn--ghost:hover {
  background: rgba(255, 255, 255, 0.12);
}

.store-btn__icon {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
  color: #fff;
}

.store-btn__text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.store-btn__label {
  font-size: 10px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.65);
  letter-spacing: 0.2px;
  line-height: 1;
}

.store-btn__store {
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.4px;
  line-height: 1.2;
}


/* ============================================================
   FEATURES — large Bumble-style cards
   ============================================================ */
.features {
  padding: 0 20px 20px;
}

.features--bottom {
  padding-bottom: 20px;
}

.features__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.feature-card {
  border-radius: var(--radius-card);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 500px;
}

.feature-card--dark {
  background: var(--dark);
}

.feature-card--light {
  background: var(--light-card);
}

.feature-card--muted {
  background: var(--off-white);
}

.feature-card--green {
  background: var(--green);
}

.feature-card--forest {
  background: #0d2b1a;
}

.feature-card__body {
  padding: 48px 44px 0;
  flex: 1;
}

.feature-card__label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.feature-card--dark .feature-card__label {
  color: var(--green);
}

.feature-card--light .feature-card__label,
.feature-card--muted .feature-card__label {
  color: var(--muted-l);
}

.feature-card--green .feature-card__label {
  color: var(--green-dark);
}

.feature-card--forest .feature-card__label {
  color: var(--green);
}

.feature-card__title {
  font-size: clamp(24px, 2.6vw, 34px);
  font-weight: 900;
  letter-spacing: -1.2px;
  line-height: 1.05;
  margin-bottom: 14px;
}

.feature-card--dark .feature-card__title {
  color: #fff;
}

.feature-card--light .feature-card__title,
.feature-card--muted .feature-card__title {
  color: var(--text-dark);
}

.feature-card--green .feature-card__title {
  color: var(--dark);
}

.feature-card--forest .feature-card__title {
  color: #fff;
}

.feature-card__desc {
  font-size: 15px;
  line-height: 1.65;
  margin-bottom: 24px;
}

.feature-card--dark .feature-card__desc {
  color: var(--muted-d);
}

.feature-card--light .feature-card__desc,
.feature-card--muted .feature-card__desc {
  color: var(--muted-l);
}

.feature-card--green .feature-card__desc {
  color: rgba(11, 77, 36, 0.80);
}

.feature-card--forest .feature-card__desc {
  color: rgba(255, 255, 255, 0.60);
}

.feature-card__link {
  font-size: 13px;
  font-weight: 600;
  text-decoration: underline;
}

.feature-card--dark .feature-card__link {
  color: rgba(255, 255, 255, 0.55);
}

.feature-card--light .feature-card__link,
.feature-card--muted .feature-card__link {
  color: var(--text-dark);
}

.feature-card--green .feature-card__link {
  color: var(--green-dark);
}

.feature-card--forest .feature-card__link {
  color: rgba(255, 255, 255, 0.50);
}

.feature-card__screen {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  padding: 0 44px;
  margin-top: 32px;
}

.feature-card__screen img {
  width: 58%;
  max-width: 230px;
  border-radius: 28px 28px 0 0;
  box-shadow: 0 -4px 48px rgba(0, 0, 0, 0.18);
  transform: translateY(52px);
}

.feature-card--green .feature-card__screen img,
.feature-card--forest .feature-card__screen img {
  box-shadow: 0 -4px 48px rgba(0, 0, 0, 0.35);
}


/* ============================================================
   MODES
   ============================================================ */
.modes {
  background: var(--dark);
  padding: 100px 20px;
  margin-top: 20px;
}

.modes__inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.modes__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 64px;
  margin-bottom: 52px;
}

.modes__headline {
  font-size: clamp(36px, 4.5vw, 54px);
  font-weight: 900;
  color: #fff;
  letter-spacing: -2px;
  line-height: 1.05;
  margin-bottom: 14px;
}

.modes__sub {
  font-size: 16px;
  color: var(--muted-d);
  line-height: 1.6;
  max-width: 400px;
}

.modes__phone {
  flex-shrink: 0;
  width: min(280px, 26%);
}

.modes__phone img {
  width: 100%;
  border-radius: 32px;
  box-shadow: 0 20px 64px rgba(0, 0, 0, 0.55);
}

.modes__cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.mode-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  overflow: hidden;
  transition: border-color 0.2s, background 0.2s;
}

.mode-card:hover {
  border-color: rgba(50, 253, 131, 0.28);
  background: rgba(255, 255, 255, 0.09);
}

.mode-card__img {
  width: 100%;
  aspect-ratio: 9 / 17;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
}

.mode-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.mode-card__name {
  font-size: 15px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.3px;
  font-style: italic;
  padding: 16px 18px 6px;
}

.mode-card__desc {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.42);
  line-height: 1.45;
  padding: 0 18px 18px;
}


/* ============================================================
   PERSONA
   ============================================================ */
.persona {
  padding: 100px 20px;
  background: var(--white);
}

.persona__inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.persona__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 64px;
  margin-bottom: 48px;
}

.persona__headline {
  font-size: clamp(36px, 4.5vw, 54px);
  font-weight: 900;
  color: var(--text-dark);
  letter-spacing: -2px;
  line-height: 1.05;
}

.persona__sub {
  font-size: 16px;
  color: var(--muted-l);
  line-height: 1.6;
  max-width: 360px;
  flex-shrink: 0;
}

.persona__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.archetype-card {
  border-radius: 20px;
  overflow: hidden;
  background: #eceaea;
  position: relative;
}

.archetype-card img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  object-position: top;
  display: block;
  -webkit-mask-image: linear-gradient(to bottom, black 55%, transparent 92%);
  mask-image: linear-gradient(to bottom, black 55%, transparent 92%);
}

.archetype-card__info {
  padding: 0 18px 24px;
  margin-top: -28px;
}

.archetype-card__name {
  font-size: 18px;
  font-weight: 900;
  color: var(--text-dark);
  letter-spacing: -0.5px;
  margin-bottom: 6px;
}

.archetype-card__desc {
  font-size: 13px;
  color: var(--muted-l);
  line-height: 1.5;
  margin-bottom: 0;
}

.archetype-card__quote {
  font-size: 12px;
  font-style: italic;
  color: rgba(13, 22, 13, 0.42);
  margin-top: 8px;
  line-height: 1.45;
}

/* Persona phones */
.persona__phones {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  height: 560px;
  margin-bottom: 80px;
}

.persona__phone {
  display: block;
  flex-shrink: 0;
  transition: transform 0.45s cubic-bezier(0.34, 1.2, 0.64, 1);
}

.persona__phone--left {
  height: 74%;
  transform: rotate(-6deg) translateY(4%);
  z-index: 1;
}

.persona__phone--center {
  height: 100%;
  z-index: 3;
}

.persona__phone--right {
  height: 74%;
  transform: rotate(6deg) translateY(4%);
  z-index: 2;
}

.persona__phones:hover .persona__phone--left {
  transform: rotate(-6deg) translateY(0) translateX(-8px);
}

.persona__phones:hover .persona__phone--right {
  transform: rotate(6deg) translateY(0) translateX(8px);
}

.persona__phones:hover .persona__phone--center {
  transform: translateY(-10px);
}

/* Persona pillars */
.persona__pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-bottom: 72px;
}

.persona__pillar {
  padding-left: 0;
}

.persona__pillar-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(13, 22, 13, 0.07);
  font-size: 11px;
  font-weight: 700;
  color: var(--text-dark);
  letter-spacing: 0;
  margin-bottom: 14px;
}

.persona__pillar-title {
  display: block;
  font-size: 16px;
  font-weight: 800;
  color: var(--text-dark);
  letter-spacing: -0.3px;
  margin-bottom: 8px;
}

.persona__pillar-desc {
  font-size: 13px;
  color: var(--muted-l);
  line-height: 1.6;
}

/* Archetype label */
.persona__archetypes-label {
  margin-bottom: 20px;
}

/* Custom persona block */
.persona__custom {
  margin-top: 32px;
  background: #f5fdf7;
  border: 1.5px dashed rgba(50, 200, 100, 0.3);
  border-radius: 20px;
  padding: 32px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}

.persona__custom-title {
  font-size: 22px;
  font-weight: 900;
  color: var(--text-dark);
  letter-spacing: -0.5px;
  margin-bottom: 6px;
}

.persona__custom-desc {
  font-size: 15px;
  color: var(--muted-l);
  line-height: 1.55;
  max-width: 420px;
}

.persona__custom-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  flex-shrink: 0;
  justify-content: flex-end;
}

.persona__tag {
  display: inline-flex;
  padding: 8px 16px;
  background: white;
  border: 1.5px solid rgba(50, 200, 100, 0.28);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dark);
  white-space: nowrap;
}


/* ============================================================
   CTA
   ============================================================ */
.cta {
  background: var(--dark);
  padding: 100px 24px;
}

.cta__inner {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}

.cta__headline {
  font-size: clamp(38px, 5vw, 56px);
  font-weight: 900;
  color: #fff;
  letter-spacing: -2px;
  line-height: 1.0;
  margin: 14px 0 16px;
}

.cta__sub {
  font-size: 17px;
  color: var(--muted-d);
  line-height: 1.55;
  margin-bottom: 36px;
}

.cta__form {
  display: flex;
  max-width: 460px;
  margin: 0 auto;
  border: 1.5px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.05);
}

.cta__form input {
  flex: 1;
  padding: 15px 18px;
  border: none;
  outline: none;
  font-family: inherit;
  font-size: 14px;
  color: #fff;
  background: transparent;
}

.cta__form input::placeholder {
  color: rgba(255, 255, 255, 0.30);
}

.cta__form button {
  padding: 15px 22px;
  background: var(--green);
  color: var(--dark);
  border: none;
  font-family: inherit;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s;
}

.cta__form button:hover {
  background: var(--green-mid);
}

.cta__legal {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.24);
  margin-top: 14px;
}

.cta__divider {
  width: 48px;
  height: 1px;
  background: rgba(255, 255, 255, 0.15);
  margin: 40px auto 28px;
}

.cta__update-label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 16px;
}

.cta__stores {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 52px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}


/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #0a140a;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 44px 24px 24px;
}

.footer__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
}

.footer__logo-icon {
  height: 22px;
  width: auto;
}

.footer__wordmark {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.3px;
}

.footer__nav {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.footer__nav a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.40);
  transition: color 0.2s;
}

.footer__nav a:hover {
  color: #fff;
}

.footer__social {
  display: flex;
  gap: 14px;
  flex: 1;
  justify-content: flex-end;
}

.footer__social a {
  color: rgba(255, 255, 255, 0.32);
  transition: color 0.2s;
}

.footer__social a:hover {
  color: #fff;
}

.footer__social svg {
  width: 16px;
  height: 16px;
  display: block;
}

.footer__copy {
  max-width: var(--max-w);
  margin: 24px auto 0;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.17);
  text-align: center;
}


/* ============================================================
   SHOWCASE — auto-scrolling marquee strip
   ============================================================ */
.showcase {
  background: var(--white);
  padding: 0 0 80px;
  overflow: hidden;
}

.showcase__marquee {
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.showcase__track {
  display: flex;
  gap: 20px;
  align-items: flex-end;
  width: max-content;
  animation: marqueeScroll 48s linear infinite;
}

.showcase__track:hover {
  animation-play-state: paused;
}

.showcase__track img {
  height: 440px;
  width: auto;
  flex-shrink: 0;
  border-radius: 24px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.12);
}

@keyframes marqueeScroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 600px) {
  .showcase__track img {
    height: 280px;
  }

  .showcase {
    padding-bottom: 56px;
  }
}


/* ============================================================
   SCROLL ANIMATION — .fade-up gets class .visible on scroll
   ============================================================ */
.fade-up {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.fade-up--delay {
  transition-delay: 0.10s;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}


/* ============================================================
   RESPONSIVE — 960px breakpoint
   ============================================================ */
@media (max-width: 960px) {
  .features__inner {
    grid-template-columns: 1fr;
  }

  .modes__top {
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
  }

  .modes__phone {
    width: 100%;
    max-width: 240px;
  }

  .modes__cards {
    grid-template-columns: 1fr 1fr;
  }

  .persona__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

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

  .archetype-card img {
    height: 200px;
    width: 100%;
    object-fit: cover;
    object-position: top;
    -webkit-mask-image: linear-gradient(to bottom, black 52%, transparent 90%);
    mask-image: linear-gradient(to bottom, black 52%, transparent 90%);
  }

  .archetype-card__name {
    font-size: 15px;
  }

  .archetype-card__desc {
    font-size: 12px;
  }

  .archetype-card__quote {
    display: none;
  }

  .archetype-card__info {
    padding: 0 14px 18px;
    margin-top: -32px;
  }

  .persona__phones {
    height: 360px;
    gap: 12px;
    margin-bottom: 56px;
  }

  .persona__pillars {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 56px;
  }

  .persona__custom {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    padding: 28px 28px;
  }

  .persona__custom-tags {
    justify-content: flex-start;
  }

  .footer__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}

/* ============================================================
   RESPONSIVE — 600px breakpoint (mobile)
   ============================================================ */
@media (max-width: 600px) {
  .nav__links {
    display: none;
  }

  .nav__signin {
    display: none;
  }

  .nav__cta {
    padding: 9px 16px;
  }

  .hero {
    height: 88vh;
    min-height: 520px;
  }

  .hero__brand {
    display: none;
  }

  .hero__phones {
    height: 78%;
    gap: 8px;
    padding: 0 8px;
  }

  .hero__phone--left {
    height: 58%;
    margin-right: -20px;
  }

  .hero__phone--center {
    height: 88%;
  }

  .hero__phone--right {
    height: 58%;
    margin-left: -20px;
  }

  .hero__phone img {
    border-radius: 28px;
  }

  .feature-card__body {
    padding: 36px 28px 0;
  }

  .feature-card__screen {
    padding: 0 28px;
  }

  .modes__cards {
    grid-template-columns: 1fr 1fr;
  }

  .persona__grid {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .persona__phones {
    height: 260px;
    gap: 10px;
    margin-bottom: 40px;
  }

  .persona__phone--left,
  .persona__phone--right {
    height: 68%;
  }

  .persona__phone--center {
    height: 96%;
  }

  .persona__pillars {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 48px;
  }

  .persona__custom {
    padding: 24px 20px;
  }

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

  .footer__inner {
    gap: 18px;
  }

  .footer__nav {
    gap: 14px;
  }

  .footer__social {
    justify-content: flex-start;
  }
}


/* ============================================================
   COOKIE BANNER
   ============================================================ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2000;
  padding: 0 20px 20px;
  pointer-events: none;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.34, 1.1, 0.64, 1);
}

.cookie-banner.is-visible {
  transform: translateY(0);
  pointer-events: all;
}

.cookie-banner__inner {
  max-width: 760px;
  margin: 0 auto;
  background: rgba(17, 26, 17, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.cookie-banner__text {
  flex: 1;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.55;
  min-width: 220px;
}

.cookie-banner__text a {
  color: var(--green);
  text-decoration: none;
  font-weight: 500;
}

.cookie-banner__text a:hover {
  text-decoration: underline;
}

.cookie-banner__actions {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

.cookie-btn {
  padding: 10px 20px;
  border-radius: 999px;
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.18s, background 0.18s;
  white-space: nowrap;
}

.cookie-btn:hover {
  opacity: 0.85;
}

.cookie-btn--primary {
  background: var(--green);
  color: var(--dark);
  border: none;
}

.cookie-btn--ghost {
  background: transparent;
  color: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.cookie-btn--ghost:hover {
  opacity: 1;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.4);
}

@media (max-width: 600px) {
  .cookie-banner__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .cookie-banner__actions {
    width: 100%;
  }

  .cookie-btn {
    flex: 1;
    text-align: center;
  }
}