/* ========================================================================
   wrappr Landing — Bumble-inspired one-pager
   Colors:
     Primary   (fork green)     #8CBF45  / dark #69AC30
     Secondary (bg lavender)    #E2C2DE  / saturated #AC6EAB
   ======================================================================== */

/* --- Reset --- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

:root {
  --w-primary: #8CBF45;
  --w-primary-dark: #69AC30;
  --w-primary-darker: #4d8020;
  --w-secondary: #E2C2DE;
  --w-secondary-light: #F2E5EE;
  --w-secondary-dark: #AC6EAB;
  --w-black: #1a1a1a;
  --w-gray-900: #232323;
  --w-gray-700: #4a4a4a;
  --w-gray-500: #6b6b6b;
  --w-gray-300: #c7c7c7;
  --w-gray-200: #e5e5e5;
  --w-gray-100: #f2f2f2;
  --w-gray-50:  #f7f7f7;
  --w-white: #ffffff;
  --w-radius-sm: 14px;
  --w-radius-md: 22px;
  --w-radius-lg: 32px;
  --w-radius-xl: 44px;
  --w-shadow-sm: 0 4px 14px rgba(0,0,0,0.06);
  --w-shadow-md: 0 14px 40px rgba(0,0,0,0.10);
  --w-font: "Inter", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
}

/* --- i18n visibility --- */
.lang-de .t-en,
.lang-en .t-de {
  display: none !important;
}

body {
  margin: 0;
  font-family: var(--w-font);
  font-size: 16px;
  line-height: 1.55;
  color: var(--w-black);
  background: var(--w-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

.skip-link {
  position: absolute;
  left: -9999px;
  padding: 0.75rem 1rem;
  background: var(--w-black);
  color: #fff;
  z-index: 999;
}
.skip-link:focus { left: 1rem; top: 1rem; }

/* ========================================================================
   LAYOUT HELPERS
   ======================================================================== */
.w-container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

.w-section {
  padding: clamp(4rem, 8vw, 7rem) 0;
}

.w-section--tight {
  padding: clamp(2.5rem, 5vw, 4rem) 0;
}

/* ========================================================================
   HEADER
   ======================================================================== */
.w-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--w-white);
  padding: 1rem 0;
}

.w-header__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.5rem;
}

.w-logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 1.625rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--w-black);
}

.w-logo__icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
}

.w-nav {
  justify-self: center;
  background: var(--w-gray-100);
  border-radius: 999px;
  padding: 0.375rem;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.w-nav__link {
  padding: 0.625rem 1.25rem;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--w-black);
  border-radius: 999px;
  transition: background 0.2s;
}

.w-nav__link:hover {
  background: var(--w-white);
}

.w-header__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.w-lang {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.625rem 1rem;
  background: var(--w-gray-100);
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 500;
}

.w-lang__globe {
  width: 16px;
  height: 16px;
}

/* ========================================================================
   BUTTONS
   ======================================================================== */
.w-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  font-family: inherit;
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.005em;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, transform 0.1s;
}

.w-btn:active {
  transform: translateY(1px);
}

.w-btn--primary {
  background: var(--w-primary);
  color: var(--w-white);
}

.w-btn--primary:hover {
  background: var(--w-primary-dark);
}

.w-btn--dark {
  background: var(--w-black);
  color: var(--w-white);
}

.w-btn--dark:hover {
  background: var(--w-gray-900);
}

.w-btn--outline {
  background: transparent;
  color: var(--w-black);
  border: 1.5px solid var(--w-black);
}

.w-btn--lg {
  padding: 1.125rem 2.25rem;
  font-size: 1rem;
}

/* ========================================================================
   HERO
   ======================================================================== */
.w-hero {
  padding: clamp(3rem, 6vw, 5rem) 0 clamp(4rem, 8vw, 7rem);
  background: var(--w-white);
}

.w-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.w-hero__headline {
  margin: 0 0 1.75rem;
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.03em;
  color: var(--w-black);
}

.w-hero__headline em {
  font-style: normal;
  color: var(--w-primary-dark);
}

.w-hero__lead {
  margin: 0 0 2.5rem;
  max-width: 560px;
  font-size: 1.125rem;
  line-height: 1.55;
  color: var(--w-gray-700);
}

.w-hero__cta {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Hero visual — overlapping photo cards with tags */
.w-hero__visual {
  position: relative;
  min-height: 520px;
}

.w-photo-stack {
  position: relative;
  width: 100%;
  height: 560px;
}

.w-photo-card {
  position: absolute;
  border-radius: var(--w-radius-lg);
  overflow: hidden;
  box-shadow: var(--w-shadow-md);
  background: var(--w-gray-100);
  transition: all 1.7s cubic-bezier(0.05, 0.7, 0.1, 1);
}

.w-photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* --- Position slots for the carousel --- */
/* Slot A: front-left (hero) */
.w-photo-card[data-slot="0"] {
  width: 56%;
  aspect-ratio: 3 / 4;
  top: 0;
  left: 2%;
  z-index: 3;
  transform: rotate(-3deg) scale(1);
  opacity: 1;
}

/* Slot B: right-back */
.w-photo-card[data-slot="1"] {
  width: 52%;
  aspect-ratio: 3 / 4;
  top: 12%;
  right: 0;
  left: auto;
  z-index: 2;
  transform: rotate(3deg) scale(0.95);
  opacity: 0.88;
}

/* Slot C: bottom-center-back */
.w-photo-card[data-slot="2"] {
  width: 48%;
  aspect-ratio: 3 / 4;
  bottom: 0;
  top: auto;
  left: 18%;
  right: auto;
  z-index: 1;
  transform: rotate(-1deg) scale(0.9);
  opacity: 0.75;
}

/* Initial positions (before JS kicks in) */
.w-photo-card--1 {
  width: 56%;
  aspect-ratio: 3 / 4;
  top: 0;
  left: 2%;
  z-index: 3;
  transform: rotate(-3deg);
}

.w-photo-card--2 {
  width: 52%;
  aspect-ratio: 3 / 4;
  top: 12%;
  right: 0;
  z-index: 2;
  transform: rotate(3deg);
}

.w-photo-card--3 {
  width: 48%;
  aspect-ratio: 3 / 4;
  bottom: 0;
  left: 18%;
  z-index: 1;
  transform: rotate(-1deg);
}

.w-tag {
  position: absolute;
  padding: 0.625rem 1.125rem;
  background: var(--w-primary);
  color: var(--w-white);
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 600;
  white-space: nowrap;
  box-shadow: var(--w-shadow-sm);
  z-index: 10;
}

.w-tag--1 { top: 8%;  right: 4%; }
.w-tag--2 { top: 42%; left: -4%; background: var(--w-secondary-dark); }
.w-tag--3 { bottom: 14%; right: 10%; background: var(--w-black); }

/* ========================================================================
   PLACEHOLDER (generic, for images + app screenshots)
   ======================================================================== */
.w-ph {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background: repeating-linear-gradient(
    45deg,
    var(--w-secondary-light),
    var(--w-secondary-light) 12px,
    #ece2ea 12px,
    #ece2ea 24px
  );
  border: 2px dashed var(--w-secondary-dark);
  color: var(--w-secondary-dark);
  font-size: 0.8125rem;
  line-height: 1.45;
  text-align: center;
  width: 100%;
  height: 100%;
}

.w-ph__inner {
  max-width: 90%;
}

.w-ph__label {
  display: block;
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--w-secondary-dark);
  margin-bottom: 0.5rem;
  opacity: 0.85;
}

.w-ph__desc {
  display: block;
  font-weight: 500;
  color: var(--w-gray-700);
}

/* Phone mockup frame */
.w-phone {
  position: relative;
  width: 100%;
  max-width: 260px;
  aspect-ratio: 9 / 19;
  background: var(--w-black);
  border-radius: 36px;
  padding: 8px;
  box-shadow: var(--w-shadow-md);
}

.w-phone__screen {
  width: 100%;
  height: 100%;
  border-radius: 28px;
  overflow: hidden;
  background: var(--w-white);
}

.w-phone__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

/* ========================================================================
   GIANT WORDMARK SECTION (like Bumble "Bu...ble")
   ======================================================================== */
.w-giant {
  background: var(--w-secondary);
  padding: clamp(4rem, 9vw, 8rem) 0;
  position: relative;
  overflow: hidden;
}

.w-giant__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: clamp(320px, 48vw, 560px);
}

.w-giant__text {
  font-size: clamp(8rem, 28vw, 24rem);
  font-weight: 900;
  letter-spacing: -0.06em;
  line-height: 0.85;
  color: var(--w-black);
  margin: 0;
  position: relative;
  z-index: 1;
  user-select: none;
}

.w-giant__phones {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(1rem, 3vw, 3rem);
  z-index: 2;
  pointer-events: none;
}

.w-giant__phone {
  width: clamp(140px, 16vw, 230px);
  pointer-events: auto;
}

.w-giant__phone--1 { transform: rotate(-6deg) translateY(-4%); }
.w-giant__phone--2 { transform: rotate(2deg)  translateY(4%); z-index: 3; }
.w-giant__phone--3 { transform: rotate(7deg)  translateY(-2%); }

/* ========================================================================
   CLAIMS BANNER (marquee-style static)
   ======================================================================== */
.w-claims {
  background: var(--w-black);
  color: var(--w-white);
  padding: clamp(3rem, 6vw, 5rem) 0;
  overflow: hidden;
}

.w-claims__track {
  display: flex;
  gap: 3.5rem;
  flex-wrap: wrap;
  justify-content: center;
  align-items: baseline;
}

.w-claims__item {
  font-size: clamp(1.5rem, 3vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.w-claims__item--accent {
  color: var(--w-primary);
}

.w-claims__item--secondary {
  color: var(--w-secondary);
}

.w-claims__dot {
  display: inline-block;
  width: 0.4em;
  height: 0.4em;
  background: var(--w-primary);
  border-radius: 50%;
  margin: 0 0.3em;
  vertical-align: middle;
}

/* ========================================================================
   FEATURE CARDS
   ======================================================================== */
.w-features {
  background: var(--w-white);
  padding: clamp(4rem, 7vw, 6rem) 0;
}

.w-features__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.w-feat-card {
  position: relative;
  background: var(--w-secondary);
  border-radius: var(--w-radius-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  min-height: 560px;
}

.w-feat-card__visual {
  position: relative;
  height: 320px;
  background: var(--w-white);
  border-radius: var(--w-radius-md);
  margin-bottom: 2rem;
  overflow: hidden;
}

/* Email overlay pills */
.w-img-overlay-wrap {
  position: relative;
  flex: 1 1 0%;
  min-width: 0;
  width: 0;
  height: 100%;
  overflow: hidden;
  border-radius: calc(var(--w-radius-sm) - 2px);
}

.w-feat-card__visual--dual .w-img-overlay-wrap + img {
  flex: 1 1 0%;
  min-width: 0;
  width: 0;
}

.w-img-overlay-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Gradient overlay to hide email area at bottom of group screenshot */
.w-img-overlay-wrap::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(to bottom, rgba(255,255,255,0) 0%, #fff 35%);
  z-index: 1;
  border-radius: 0 0 calc(var(--w-radius-sm) - 2px) calc(var(--w-radius-sm) - 2px);
  pointer-events: none;
}

.w-email-pill {
  position: absolute;
  background: #e8e4f0;
  color: #6b6180;
  font-size: 0.5rem;
  font-weight: 600;
  padding: 0.2rem 0.45rem;
  border-radius: 1rem;
  white-space: nowrap;
  z-index: 3;
  letter-spacing: 0.01em;
  line-height: 1.3;
  left: 12%;
}

.w-email-pill--1 { bottom: 22%; }
.w-email-pill--2 { bottom: 10%; }
.w-email-pill--3 { bottom: 2%; }

.w-feat-card__img_group1 {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 2%;
  display: block;
}

.w-feat-card__img_group2 {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
  display: block;
}

.w-feat-card__img_filter1 {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 12%;
  display: block;
}

.w-feat-card__img_filter2 {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 100%;
  display: block;
}

.w-feat-card__visual--dual {
  display: flex;
  gap: 0.75rem;
  padding: 0.75rem;
  background: var(--w-white);
}

.w-feat-card__visual--dual .w-feat-card__img {
  flex: 1;
  min-width: 0;
  border-radius: calc(var(--w-radius-sm) - 2px);
  object-fit: cover;
  object-position: top center;
}

.w-feat-card__title {
  margin: 0 0 1rem;
  font-size: clamp(1.75rem, 2.75vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--w-black);
}

.w-feat-card__desc {
  margin: 0 0 1.5rem;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--w-gray-700);
  flex: 1;
}

.w-feat-card__link {
  font-size: 1rem;
  font-weight: 600;
  color: var(--w-black);
  border-bottom: 1.5px solid var(--w-black);
  padding-bottom: 2px;
  align-self: flex-start;
  transition: color 0.2s, border-color 0.2s;
}

.w-feat-card__link:hover {
  color: var(--w-primary-dark);
  border-bottom-color: var(--w-primary-dark);
}

/* ========================================================================
   POSITIONING (wrappr ≠ …)
   ======================================================================== */
.w-positioning {
  background: var(--w-gray-50);
  padding: clamp(4rem, 7vw, 6rem) 0;
}

.w-positioning__header {
  text-align: center;
  margin-bottom: 3rem;
}

.w-positioning__eyebrow {
  display: inline-block;
  padding: 0.375rem 0.875rem;
  background: var(--w-primary);
  color: var(--w-white);
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.w-positioning__title {
  margin: 0 auto;
  max-width: 820px;
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.1;
  color: var(--w-black);
}

.w-pos-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.w-pos-card {
  background: var(--w-white);
  border: 1px solid var(--w-gray-200);
  border-radius: var(--w-radius-md);
  padding: 2rem;
  text-align: center;
}

.w-pos-card--active {
  background: var(--w-primary);
  color: var(--w-white);
  border-color: var(--w-primary);
  transform: scale(1.04);
}

.w-pos-card__name {
  margin: 0 0 0.75rem;
  font-size: 1.375rem;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.w-pos-card__label {
  margin: 0;
  font-size: 1rem;
  color: var(--w-gray-500);
  font-weight: 500;
}

.w-pos-card--active .w-pos-card__label {
  color: rgba(255,255,255,0.85);
}

/* ========================================================================
   USE CASES
   ======================================================================== */
.w-usecases {
  background: var(--w-white);
  padding: clamp(4rem, 7vw, 6rem) 0;
}

.w-usecases__header {
  max-width: 680px;
  margin: 0 0 3rem;
}

.w-usecases__title {
  margin: 0 0 1rem;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.1;
}

.w-usecases__lead {
  margin: 0;
  font-size: 1.0625rem;
  color: var(--w-gray-700);
}

.w-uc-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.w-uc-card {
  background: var(--w-gray-50);
  border-radius: var(--w-radius-md);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  min-height: 280px;
  transition: background 0.2s;
}

.w-uc-card:hover {
  background: var(--w-secondary-light);
}

.w-uc-card__image {
  height: 140px;
  border-radius: var(--w-radius-sm);
  overflow: hidden;
  margin-bottom: 1.25rem;
}

.w-uc-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.w-uc-card__img--datenight {
  object-position: center 34%;
}

.w-uc-card__img--office {
  object-position: center 49%;
}


.w-uc-card__title {
  margin: 0 0 0.5rem;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.w-uc-card__desc {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--w-gray-700);
  line-height: 1.5;
}

/* ========================================================================
   HOW IT WORKS (3 steps)
   ======================================================================== */
.w-how {
  background: var(--w-secondary-light);
  padding: clamp(4rem, 7vw, 6rem) 0;
}

.w-how__header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.w-how__eyebrow {
  display: inline-block;
  padding: 0.375rem 0.875rem;
  background: var(--w-black);
  color: var(--w-white);
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.w-how__title {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.05;
}

.w-how__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
}

.w-step {
  background: var(--w-white);
  border-radius: var(--w-radius-lg);
  padding: 2rem;
  text-align: left;
}

.w-step__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  background: var(--w-primary);
  color: var(--w-white);
  border-radius: 50%;
  font-size: 1.125rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
}

.w-step__phone {
  margin: 0 auto 1.5rem;
}

.w-step__title {
  margin: 0 0 0.625rem;
  font-size: 1.375rem;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.w-step__desc {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--w-gray-700);
  line-height: 1.55;
}

/* ========================================================================
   FOUNDING MEMBER (like "Teile deine Ideen")
   ======================================================================== */
.w-member {
  padding: clamp(4rem, 7vw, 6rem) 0;
  background: var(--w-white);
}

.w-member__card {
  background: var(--w-gray-50);
  border: 1px solid var(--w-gray-200);
  border-radius: var(--w-radius-lg);
  padding: clamp(2rem, 4vw, 3rem);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.w-member__visual {
  height: 460px;
  border-radius: var(--w-radius-md);
  overflow: hidden;
  position: relative;
}

.w-member__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.w-member__badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  width: 120px;
  height: 120px;
  background: var(--w-primary);
  color: var(--w-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-align: center;
  text-transform: uppercase;
  box-shadow: var(--w-shadow-md);
  z-index: 2;
  padding: 1rem;
  border: 3px solid var(--w-white);
  line-height: 1.2;
}

.w-member__title {
  margin: 0 0 1.25rem;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.05;
}

.w-member__text {
  margin: 0 0 1rem;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--w-gray-700);
}

.w-member__text:last-of-type {
  margin-bottom: 2rem;
}

/* ========================================================================
   DOWNLOAD CTA (like Bumble "Hol dir die App")
   ======================================================================== */
.w-download {
  background: var(--w-secondary);
  padding: clamp(3.5rem, 6vw, 5.5rem) 0;
}

.w-download__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.w-download__title {
  margin: 0 0 0.875rem;
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.05;
}

.w-download__lead {
  margin: 0 0 2rem;
  font-size: 1.0625rem;
  color: var(--w-gray-700);
  max-width: 420px;
}

.w-qr {
  width: 220px;
  height: 220px;
  background: var(--w-white);
  border-radius: var(--w-radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.w-download__visual {
  position: relative;
  min-height: 420px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: -40px;
}

.w-download__phones {
  display: flex;
  gap: -48px;
}

.w-download__phone {
  width: 200px;
}

.w-download__phone--1 { transform: rotate(-6deg) translateY(6px); margin-right: -40px; z-index: 1; }
.w-download__phone--2 { transform: translateY(-12px); z-index: 3; }
.w-download__phone--3 { transform: rotate(6deg) translateY(6px); margin-left: -40px; z-index: 2; }

/* ========================================================================
   FOOTER
   ======================================================================== */
.w-footer {
  background: var(--w-black);
  color: var(--w-white);
  padding: clamp(3rem, 5vw, 4.5rem) 0 2rem;
}

.w-footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.w-footer__brand {
  max-width: 320px;
}

.w-footer__logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
  color: var(--w-white);
}

.w-footer__logo img {
  width: 40px;
  height: 40px;
  border-radius: 10px;
}

.w-footer__tagline {
  margin: 0;
  color: rgba(255,255,255,0.7);
  font-size: 0.9375rem;
}

.w-footer__col h4 {
  margin: 0 0 1rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}

.w-footer__col ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.w-footer__col a {
  color: rgba(255,255,255,0.88);
  font-size: 0.9375rem;
  transition: color 0.2s;
}

.w-footer__col a:hover {
  color: var(--w-primary);
}

.w-footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.55);
}

/* ========================================================================
   MODAL
   ======================================================================== */
.w-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.w-modal[aria-hidden="true"] {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.w-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  cursor: pointer;
}

.w-modal__card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  max-width: 820px;
  width: 100%;
  max-height: 90vh;
  background: var(--w-white);
  border-radius: var(--w-radius-lg);
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.25);
  transform: translateY(0) scale(1);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.w-modal[aria-hidden="true"] .w-modal__card {
  transform: translateY(24px) scale(0.97);
}

.w-modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 10;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--w-white);
  border: none;
  border-radius: 50%;
  font-size: 1.5rem;
  line-height: 1;
  color: var(--w-black);
  cursor: pointer;
  box-shadow: var(--w-shadow-sm);
  transition: background 0.2s;
}

.w-modal__close:hover {
  background: var(--w-gray-100);
}

.w-modal__image {
  position: relative;
  min-height: 100%;
}

.w-modal__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.w-modal__body {
  padding: clamp(1.75rem, 3vw, 2.5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow-y: auto;
}

.w-modal__eyebrow {
  display: inline-block;
  padding: 0.3rem 0.75rem;
  background: var(--w-primary);
  color: var(--w-white);
  border-radius: 999px;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  align-self: flex-start;
}

.w-modal__title {
  margin: 0 0 1rem;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.1;
  color: var(--w-black);
}

.w-modal__text {
  margin: 0 0 1.5rem;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--w-gray-700);
}

.w-modal__form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.w-modal__field {
  position: relative;
}

.w-modal__input {
  width: 100%;
  padding: 1rem 1rem 0.5rem;
  font-family: inherit;
  font-size: 1rem;
  border: 1.5px solid var(--w-gray-300);
  border-radius: var(--w-radius-sm);
  background: var(--w-white);
  color: var(--w-black);
  transition: border-color 0.2s;
  outline: none;
}

.w-modal__input:focus {
  border-color: var(--w-primary);
}

.w-modal__label {
  position: absolute;
  top: 50%;
  left: 1rem;
  transform: translateY(-50%);
  font-size: 0.9375rem;
  color: var(--w-gray-500);
  pointer-events: none;
  transition: all 0.2s ease;
}

.w-modal__input:focus + .w-modal__label,
.w-modal__input:not(:placeholder-shown) + .w-modal__label {
  top: 0.55rem;
  transform: translateY(0);
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--w-primary-dark);
}

.w-modal__checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  cursor: pointer;
  font-size: 0.8125rem;
  line-height: 1.45;
  color: var(--w-gray-700);
}

.w-modal__checkbox input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.w-modal__checkmark {
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  border: 1.5px solid var(--w-gray-300);
  border-radius: 5px;
  margin-top: 1px;
  transition: all 0.15s ease;
  position: relative;
}

.w-modal__checkbox input:checked + .w-modal__checkmark {
  background: var(--w-primary);
  border-color: var(--w-primary);
}

.w-modal__checkbox input:checked + .w-modal__checkmark::after {
  content: '';
  position: absolute;
  left: 6px;
  top: 2px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.w-modal__checkbox-text a {
  color: var(--w-primary-dark);
  text-decoration: underline;
}

.w-modal__form[hidden],
.w-modal__success[hidden] {
  display: none !important;
}

.w-modal__submit {
  width: 100%;
  margin-top: 0.25rem;
}

/* Success state */
.w-modal__success {
  text-align: center;
  padding: 1.5rem 0;
}

.w-modal__success-icon {
  width: 3.5rem;
  height: 3.5rem;
  margin: 0 auto 1.25rem;
  background: var(--w-primary);
  color: var(--w-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
}

.w-modal__success-title {
  margin: 0 0 0.625rem;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--w-black);
}

.w-modal__success-text {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--w-gray-700);
  line-height: 1.55;
}

/* ========================================================================
   RESPONSIVE
   ======================================================================== */
/* ---- Tablet (max 960px) ---- */
@media (max-width: 960px) {
  .w-hero__inner,
  .w-features__grid,
  .w-pos-grid,
  .w-how__grid,
  .w-member__card,
  .w-download__inner,
  .w-footer__grid {
    grid-template-columns: 1fr;
  }

  .w-nav {
    display: none;
  }

  .w-header__inner {
    grid-template-columns: auto auto;
  }

  .w-hero__visual {
    min-height: 420px;
  }

  .w-pos-card--active {
    transform: none;
  }

  .w-modal__card {
    grid-template-columns: 1fr;
    max-height: 95vh;
  }

  .w-modal__image {
    max-height: 200px;
  }

  .w-member__visual {
    height: 300px;
  }

  .w-footer__grid {
    gap: 2rem;
  }

  /* Use cases: 2 columns on tablet */
  .w-uc-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Download phones smaller */
  .w-download__phone {
    width: 160px;
  }
}

/* ---- Mobile (max 640px) ---- */
@media (max-width: 640px) {
  .w-container {
    padding: 0 1.25rem;
  }

  /* -- Header -- */
  .w-header {
    padding: 0.625rem 0;
  }

  .w-header__inner {
    padding: 0 1rem;
    gap: 0.5rem;
  }

  .w-logo {
    font-size: 1.25rem;
    gap: 0.4rem;
  }

  .w-logo__icon {
    width: 28px;
    height: 28px;
  }

  .w-header__actions .w-lang-toggle {
    font-size: 0.7rem;
    padding: 0.3rem 0.6rem;
  }

  .w-header__actions .w-btn {
    font-size: 0.75rem;
    padding: 0.5rem 1rem;
  }

  /* -- Hero -- */
  .w-hero {
    padding: 2rem 0 2.5rem;
  }

  .w-hero__headline {
    font-size: clamp(2rem, 10vw, 3rem);
    margin-bottom: 1rem;
  }

  .w-hero__lead {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }

  .w-hero__cta {
    gap: 0.75rem;
  }

  .w-hero__cta .w-btn {
    font-size: 0.875rem;
    padding: 0.75rem 1.5rem;
  }

  .w-hero__visual {
    min-height: 360px;
  }

  .w-photo-stack {
    height: 380px;
  }

  /* -- Giant wordmark -- */
  .w-giant {
    padding: 2rem 0 2.5rem;
  }

  .w-giant__inner {
    min-height: auto;
    flex-direction: column;
    gap: 1.5rem;
  }

  .w-giant__text {
    font-size: 4rem;
    text-align: center;
  }

  .w-giant__phones {
    position: relative;
    inset: auto;
    gap: 0.5rem;
  }

  .w-giant__phone {
    width: 105px;
  }

  .w-giant__phone--1 { transform: rotate(-4deg); }
  .w-giant__phone--2 { transform: rotate(1deg); }
  .w-giant__phone--3 { transform: rotate(4deg); }

  /* -- Claims -- */
  .w-claims {
    padding: 2rem 0;
  }

  .w-claims__track {
    gap: 1rem 2rem;
  }

  .w-claims__item {
    font-size: 1.125rem;
  }

  /* -- Feature cards -- */
  .w-features {
    padding: 3rem 0;
  }

  .w-feat-card {
    padding: 1.25rem;
    min-height: auto;
  }

  .w-feat-card__visual {
    height: 240px;
    margin-bottom: 1.25rem;
  }

  .w-feat-card__visual--dual {
    gap: 0.5rem;
    padding: 0.5rem;
  }

  .w-feat-card__title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
  }

  .w-feat-card__desc {
    font-size: 0.875rem;
  }

  .w-email-pill {
    font-size: 0.4rem;
    padding: 0.15rem 0.3rem;
  }

  /* -- Positioning -- */
  .w-positioning {
    padding: 3rem 0;
  }

  .w-pos-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .w-pos-card {
    padding: 1.5rem;
  }

  .w-pos-card__name {
    font-size: 1.25rem;
  }

  /* -- Use cases -- */
  .w-usecases {
    padding: 3rem 0;
  }

  .w-uc-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .w-uc-card__image {
    height: 140px;
  }

  .w-uc-card__title {
    font-size: 1rem;
  }

  .w-uc-card__desc {
    font-size: 0.8rem;
    line-height: 1.4;
  }

  /* -- How it works -- */
  .w-how {
    padding: 3rem 0;
  }

  .w-how__grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .w-step {
    padding: 1.25rem;
  }

  .w-step__phone {
    max-width: 200px;
  }

  .w-step__title {
    font-size: 1.125rem;
  }

  /* -- Founding Member -- */
  .w-member {
    padding: 3rem 0;
  }

  .w-member__card {
    padding: 1.25rem;
    gap: 1.5rem;
  }

  .w-member__visual {
    height: 240px;
  }

  .w-member__badge {
    width: 80px;
    height: 80px;
    font-size: 0.5rem;
    bottom: 1rem;
    left: 1rem;
    padding: 0.5rem;
    border-width: 2px;
  }

  .w-member__title {
    font-size: 1.625rem;
  }

  .w-member__text {
    font-size: 0.875rem;
  }

  /* -- Download -- */
  .w-download {
    padding: 3rem 0;
    text-align: center;
  }

  .w-download__lead {
    max-width: none;
  }

  .w-download__visual {
    min-height: 280px;
  }

  .w-download__phones {
    justify-content: center;
  }

  .w-download__phone {
    width: 120px;
  }

  .w-download__phone--1 { margin-right: -24px; }
  .w-download__phone--3 { margin-left: -24px; }

  .w-qr {
    width: 160px;
    height: 160px;
    margin: 0 auto;
  }

  .w-hero__cta {
    justify-content: center;
  }

  /* -- Footer -- */
  .w-footer {
    padding: 2.5rem 0 1.5rem;
  }

  .w-footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }

  .w-footer__bottom {
    flex-direction: column;
    gap: 0.75rem;
    text-align: center;
  }

  /* -- Modal -- */
  .w-modal__card {
    margin: 1rem;
    max-height: calc(100vh - 2rem);
    border-radius: var(--w-radius-md);
  }

  .w-modal__body {
    padding: 1.25rem;
  }

  .w-modal__title {
    font-size: 1.375rem;
  }

  .w-modal__text {
    font-size: 0.85rem;
  }

  /* -- Cookie banner -- */
  .w-cookie__inner {
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
    padding: 0 1.25rem;
  }

  .w-cookie__actions {
    justify-content: stretch;
  }

  .w-cookie__btn {
    flex: 1;
    text-align: center;
  }
}

/* ========================================================================
   Cookie Banner
   ======================================================================== */

.w-cookie {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--w-secondary-light);
  border-top: 1px solid var(--w-secondary);
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.08);
  padding: 1.25rem 0;
}

.w-cookie__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.w-cookie__text {
  flex: 1;
}

.w-cookie__text p {
  margin: 0;
  font-size: 0.85rem;
  line-height: 1.5;
  color: var(--w-gray-700);
}

.w-cookie__link {
  font-size: 0.8rem;
  color: var(--w-secondary-dark);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.w-cookie__actions {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
}

.w-cookie__btn {
  font-size: 0.8rem;
  padding: 0.6rem 1.25rem;
  white-space: nowrap;
}

.w-btn--outline-secondary {
  background: transparent;
  color: var(--w-secondary-dark);
  border: 1.5px solid var(--w-secondary-dark);
}

.w-btn--outline-secondary:hover {
  background: var(--w-secondary);
  color: var(--w-black);
}

@media (max-width: 640px) {
  .w-cookie__inner {
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
    padding: 0 1.25rem;
  }

  .w-cookie__actions {
    justify-content: stretch;
  }

  .w-cookie__btn {
    flex: 1;
    text-align: center;
  }
}
