:root {
  --bg: #f8f8f7;
  --surface: #ffffff;
  --ink: #0b0c0f;
  --text: #666b70;
  --muted: #969ba1;
  --line: rgba(15, 17, 20, .09);
  --placeholder: rgba(15, 17, 20, .04);
  --placeholder-line: rgba(15, 17, 20, .15);
  --pink: #e65ab4;
  --violet: #9965e8;
  --blue: #4e70f3;
  --max: 1280px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Helvetica Neue", Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.section-pad {
  padding-left: max(5vw, calc((100vw - var(--max)) / 2));
  padding-right: max(5vw, calc((100vw - var(--max)) / 2));
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: 76px;
  padding: 0 max(5vw, calc((100vw - var(--max)) / 2));
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(248, 248, 247, .82);
  backdrop-filter: blur(20px) saturate(160%);
  border-bottom: 1px solid var(--line);
}
.brand img { width: 138px; }
.nav { display: flex; gap: 32px; font-size: 14px; font-weight: 500; }
.nav a { opacity: .68; }
.nav a:hover { opacity: 1; }

.eyebrow {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 650;
  letter-spacing: .16em;
  text-transform: uppercase;
}

/* .hero {
  position: relative;
  min-height: 760px;
  display: grid;
  grid-template-columns: minmax(480px, .92fr) minmax(500px, 1.08fr);
  align-items: center;
  gap: 70px;
  overflow: hidden;
  background: linear-gradient(180deg, #fbfbfa 0%, #f5f5f4 100%);
} */
 .hero {
  position: relative;
  min-height: 760px;

  display: flex;
  align-items: center;

  overflow: hidden;

  background-image: url("assets/hero_image_top.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero-copy { position: relative; z-index: 2; padding: 90px 0 110px; }
.hero h1 {
  margin: 0;
  font-size: clamp(76px, 8vw, 124px);
  line-height: .86;
  letter-spacing: 0.0em;
  font-weight: 500;
}
.lead {
  max-width: 540px;
  margin: 34px 0 0;
  color: var(--text);
  font-size: 21px;
  line-height: 1.5;
  letter-spacing: -.02em;
}
.primary-button {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  margin-top: 38px;
  padding: 15px 22px;
  border-radius: 999px;
  background: #0e1012;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
}

.media-placeholder {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 320px;
  border: 1px dashed var(--placeholder-line);
  background:
    linear-gradient(135deg, rgba(255,255,255,.38), transparent),
    var(--placeholder);
  color: #8e949a;
  text-align: center;
  border-radius: 28px;
}
.media-placeholder::before,
.media-placeholder::after {
  content: "";
  position: absolute;
  background: var(--placeholder-line);
  opacity: .45;
}
.media-placeholder::before { width: 1px; height: 100%; transform: rotate(45deg); }
.media-placeholder::after { width: 1px; height: 100%; transform: rotate(-45deg); }
.media-placeholder span,
.media-placeholder small { position: relative; z-index: 2; display: block; }
.media-placeholder span { font-size: 13px; font-weight: 650; letter-spacing: .14em; }
.media-placeholder small { margin-top: 8px; font-size: 12px; letter-spacing: .02em; }
.hero-placeholder {
  min-height: 520px;
  border-radius: 50% 44% 48% 52%;
  opacity: .76;
}

.product {
  min-height: 760px;
  display: grid;
  grid-template-columns: minmax(400px, .84fr) minmax(520px, 1.16fr);
  align-items: center;
  gap: 96px;
  padding-top: 120px;
  padding-bottom: 120px;
}
.product-copy { max-width: 520px; }
.product-logo { object-fit: contain; object-position: left center; }
.focus-logo { width: 170px; }
.challenge-logo { width: 200px; max-height: 100px; }
.product h2,
.standard h2 {
  margin: 28px 0 22px;
  font-size: clamp(54px, 5vw, 82px);
  line-height: .92;
  letter-spacing: -.028em;
  font-weight: 500;
}
.product-lead {
  margin: 0;
  color: var(--text);
  font-size: 19px;
  line-height: 1.55;
  letter-spacing: -.015em;
}
.feature-list { display: grid; gap: 26px; margin-top: 42px; }
.feature-row {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 18px;
  align-items: start;
}
.icon-placeholder,
.principle-icon-placeholder {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px dashed var(--placeholder-line);
  border-radius: 12px;
  color: #9aa0a6;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .08em;
}
.feature-row strong {
  display: block;
  margin-top: 2px;
  font-size: 20px;
  line-height: 1.1;
  letter-spacing: -.025em;
  font-weight: 600;
}
.feature-row span {
  display: block;
  margin-top: 6px;
  color: var(--text);
  font-size: 15px;
  line-height: 1.42;
}
.product-focus { background: #f3f4f5; }
.focus-visual { display: grid; place-items: center; }
.phone-placeholder { width: min(640px, 100%); min-height: 570px; }

.product-challenge {
  position: relative;
  color: #fff;
  background: linear-gradient(135deg, var(--pink) 0%, var(--violet) 48%, var(--blue) 100%);
}
.challenge-copy .product-lead,
.feature-list-light .feature-row span { color: rgba(255,255,255,.78); }
.icon-placeholder-light {
  color: rgba(255,255,255,.72);
  border-color: rgba(255,255,255,.35);
}
.challenge-visual { display: grid; place-items: center; }
.challenge-placeholder {
  width: min(680px, 100%);
  min-height: 580px;
  color: rgba(255,255,255,.8);
  border-color: rgba(255,255,255,.34);
  background: rgba(255,255,255,.08);
}
.challenge-placeholder::before,
.challenge-placeholder::after { background: rgba(255,255,255,.25); }

.standard {
  position: relative;
  min-height: 620px;

  display: flex;
  align-items: center;

  padding-top: 100px;
  padding-bottom: 100px;

  background-image:
    linear-gradient(
      90deg,
      rgba(255, 255, 255, .96) 0%,
      rgba(255, 255, 255, .86) 30%,
      rgba(255, 255, 255, .30) 55%,
      rgba(255, 255, 255, 0) 75%
    ),
    url("assets/studio.png");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.standard-copy { max-width: 470px; }
.standard h2 { margin-top: 0; font-size: clamp(42px, 4vw, 64px); }
.standard-copy p:last-child {
  margin: 0;
  color: var(--text);
  font-size: 17px;
  line-height: 1.65;
}
.mountain-placeholder {
  min-height: 330px;
  border-radius: 4px;
  background: linear-gradient(180deg, rgba(250,250,250,.8), rgba(230,230,230,.35));
}

.principles-wrap {
  padding-top: 72px;
  padding-bottom: 96px;
  background: linear-gradient(180deg, #fbfbfa 0%, #f4f5f7 100%);
}
.principles-card {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: rgba(255,255,255,.86);
  border: 1px solid rgba(15,17,20,.07);
  border-radius: 26px;
  box-shadow: 0 22px 50px rgba(21,25,32,.08);
  overflow: hidden;
}
.principle {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 18px;
  padding: 38px 42px;
  align-items: start;
}
.principle + .principle { border-left: 1px solid var(--line); }
.principle h3 {
  margin: 1px 0 8px;
  font-size: 18px;
  line-height: 1.15;
  letter-spacing: -.025em;
  font-weight: 620;
}
.principle p {
  margin: 0;
  color: var(--text);
  font-size: 14px;
  line-height: 1.5;
}

.footer {
  min-height: 120px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
}
.footer img { width: 116px; }
.footer p { margin: 0; }
.footer-links { justify-self: end; display: flex; gap: 22px; }

.app-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.device-mockup {
  width: 100%;
  max-width: 350px;
  height: auto;
  display: block;
  object-fit: contain;
  filter: drop-shadow(30px 30px 60px rgba(0,0,0,0.10));
}

.challenge-app-image {
  width: 100%;
  max-width: 350px;
  height: auto;
  display: block;
  object-fit: contain;

  filter: drop-shadow(30px 30px 60px rgba(0,0,0,.10));
}

.feature-icon {
  width: 64px;
  height: 64px;

  display: flex;
  align-items: center;
  justify-content: center;

  color: #747a80;
}

.feature-icon svg {
  width: 38px;
  height: 38px;
  stroke-width: 1.6;
}

.feature-icon-light {
  color: rgba(255,255,255,.82);
}

.feature-list-light .feature-row h3 {
  color: #fff;
}

.feature-list-light .feature-row p {
  color: rgba(255,255,255,.74);
}

.principle-icon {
  width: 56px;
  height: 56px;

  display: flex;
  align-items: center;
  justify-content: center;

  color: #111215;
}

.principle-icon svg {
  width: 34px;
  height: 34px;
  stroke-width: 1.55;
}

.product-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 9px;

  margin-top: 32px;
  margin-left: 76px;
}

.learn-more {
  display: inline-flex;
  align-items: center;
  gap: 7px;

  color: #111;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
}

.learn-more-wite {
  display: inline-flex;
  align-items: center;
  gap: 7px;

  color: #fff;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
}

.learn-more span {
  font-size: 18px;
  transition: transform .2s ease;
}

.learn-more:hover span {
  transform: translateX(4px);
}

.app-store-link {
  display: inline-flex;
  line-height: 0;
}

.app-store-link img {
  display: block;
  width: 112px;
  height: auto;
}

.focus-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.visual-app-store {
  display: inline-flex;
  margin-top: 22px;
  line-height: 0;
}

.visual-app-store img {
  width: 118px;
  height: auto;
  display: block;
}



@media (max-width: 1050px) {
  .hero,
  .product,
  .standard { grid-template-columns: 1fr; }
  .hero { padding-top: 70px; }
  .hero-placeholder { min-height: 360px; margin-bottom: 80px; }
  .product { gap: 60px; }
  .product-copy { max-width: 680px; }
  .standard { gap: 40px; }
  .principles-card { grid-template-columns: 1fr; }
  .principle + .principle { border-left: 0; border-top: 1px solid var(--line); }
}

@media (max-width: 680px) {
  .site-header { height: 68px; }
  .brand img { width: 110px; }
  .nav { gap: 18px; font-size: 13px; }
  .nav a:nth-child(2) { display: none; }
  .hero { min-height: auto; }
  .hero-copy { padding: 72px 0 50px; }
  .hero h1 { font-size: clamp(58px, 18vw, 88px); }
  .lead { font-size: 18px; }
  .product { padding-top: 80px; padding-bottom: 80px; }
  .product h2 { font-size: 52px; }
  .phone-placeholder,
  .challenge-placeholder { min-height: 430px; }
    /* MOBILE: OUR STANDARD */
  
 .standard {
  min-height: 760px;
  align-items: flex-start;

  padding-top: 72px;
  padding-bottom: 70px;

  background-position: 100% bottom;

  background-image:
    linear-gradient(
      180deg,
      rgba(255,255,255,1) 0%,
      rgba(255,255,255,1) 28%,
      rgba(255,255,255,.96) 38%,
      rgba(255,255,255,.70) 54%,
      rgba(255,255,255,.20) 82%,
      rgba(255,255,255,0) 100%
    ),
    url("assets/studio.png");

  background-size: cover;
}

.standard-copy {
  max-width: 100%;
}

.standard h2 {
  max-width: 620px;
  font-size: 52px;
  line-height: .98;
}

.standard-copy p:last-child {
  max-width: 580px;
  color: #5f646a;
}

}
/* =========================================
   THECHALLENGE PRIVACY
   ========================================= */

.privacy-page {
  background: #f8f8f7;
}

.privacy-hero {
  padding-top: 20px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(
      circle at 78% 42%,
      rgba(153,101,232,.10),
      transparent 34%
    ),
    radial-gradient(
      circle at 90% 25%,
      rgba(230,90,180,.08),
      transparent 28%
    ),
    #f8f8f7;
}

.privacy-hero h1 {
  max-width: 900px;
  margin: 0;

  font-size: clamp(72px, 8vw, 118px);
  line-height: .88;
  letter-spacing: -.045em;
  font-weight: 500;
}

.privacy-intro {
  max-width: 620px;

  margin: 38px 0 0;

  color: var(--text);

  font-size: 20px;
  line-height: 1.55;
  letter-spacing: -.015em;
}

.privacy-language-switch {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  margin-top: 38px;
}

.privacy-language-switch span {
  width: 1px;
  height: 14px;
  background: rgba(15,17,20,.18);
}

.language-button {
  appearance: none;
  border: 0;
  padding: 0;

  background: transparent;
  color: var(--muted);

  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .08em;

  cursor: pointer;

  transition:
    color .2s ease,
    opacity .2s ease;
}

.language-button:hover {
  color: var(--ink);
}

.language-button.active {
  color: var(--ink);
}

.privacy-language-content {
  display: none;
}

.privacy-language-content.active {
  display: block;
}


.privacy-content {
  padding-top: 30px;
  padding-bottom: 130px;
}

.privacy-english {
  background: #fff;
  border-top: 1px solid var(--line);
}

.privacy-column {
  max-width: 760px;
}

.privacy-language {
  margin: 0 0 18px !important;

  color: var(--muted) !important;

  font-size: 12px !important;
  font-weight: 650;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.privacy-column h2 {
  margin: 0;

  font-size: clamp(44px, 4vw, 64px);
  line-height: 1;
  letter-spacing: -.04em;
  font-weight: 500;
}

.privacy-date {
  margin: 20px 0 60px !important;

  color: var(--muted) !important;

  font-size: 14px !important;
}

.privacy-column h3 {
  margin: 58px 0 17px;

  font-size: 23px;
  line-height: 1.2;
  letter-spacing: -.025em;
  font-weight: 600;
}

.privacy-column h4 {
  margin: 30px 0 10px;

  font-size: 16px;
  line-height: 1.3;
  letter-spacing: -.015em;
  font-weight: 650;
}

.privacy-column p {
  margin: 0 0 19px;

  color: var(--text);

  font-size: 16px;
  line-height: 1.72;
}

.privacy-column a {
  color: var(--ink);
  border-bottom: 1px solid rgba(15,17,20,.25);
}

.privacy-column a:hover {
  border-color: var(--ink);
}


@media (max-width: 680px) {

  .privacy-hero {
    padding-top: 90px;
    padding-bottom: 80px;
  }

  .privacy-hero h1 {
    font-size: clamp(58px, 18vw, 82px);
  }

  .privacy-intro {
    margin-top: 30px;
    font-size: 18px;
  }

  .privacy-content {
    padding-top: 72px;
    padding-bottom: 90px;
  }

  .privacy-date {
    margin-bottom: 44px !important;
  }

  .privacy-column h3 {
    margin-top: 46px;
    font-size: 21px;
  }

}


/* =========================================
   PRIVACY OVERVIEW
   ========================================= */

.privacy-overview {
  min-height: calc(100vh - 196px);
  background: #f8f8f7;
}

.privacy-overview-hero {
  padding-top: 130px;
  padding-bottom: 100px;

  background:
    radial-gradient(
      circle at 82% 35%,
      rgba(153,101,232,.08),
      transparent 30%
    ),
    radial-gradient(
      circle at 94% 15%,
      rgba(230,90,180,.06),
      transparent 25%
    );
}

.privacy-overview-hero h1 {
  margin: 0;

  font-size: clamp(72px, 8vw, 118px);
  line-height: .88;
  letter-spacing: -.045em;
  font-weight: 500;
}

.privacy-overview-lead {
  max-width: 560px;

  margin: 36px 0 0;

  color: var(--text);
  font-size: 20px;
  line-height: 1.55;
}


/* PRODUCT LIST */

.privacy-products {
  padding-top: 0;
  padding-bottom: 120px;
}

.privacy-product {
  position: relative;

  display: grid;
  grid-template-columns: 190px 1fr auto;
  align-items: center;
  gap: 50px;

  min-height: 210px;

  padding: 44px 48px;

  background: rgba(255,255,255,.78);

  border-top: 1px solid var(--line);

  transition:
    background .25s ease,
    transform .25s ease;
}

.privacy-product:last-child {
  border-bottom: 1px solid var(--line);
}

.privacy-product:hover {
  background: #fff;
}

.privacy-product-logo {
  display: flex;
  align-items: center;

  min-height: 90px;
}

.privacy-product-logo img {
  max-width: 155px;
  max-height: 70px;
  object-fit: contain;
  object-position: left center;
}


.privacy-logo-challenge {
  filter: invert(1);
  opacity: .40;
}

.privacy-product-copy {
  max-width: 520px;
}

.privacy-product-label {
  display: block;

  margin-bottom: 8px;

  color: var(--muted);

  font-size: 11px;
  font-weight: 650;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.privacy-product h2 {
  margin: 0;

  font-size: 32px;
  line-height: 1.05;
  letter-spacing: -.035em;
  font-weight: 600;
}

.privacy-product p {
  margin: 12px 0 0;

  color: var(--text);

  font-size: 15px;
  line-height: 1.55;
}

.privacy-product-arrow {
  width: 48px;
  height: 48px;

  display: flex;
  align-items: center;
  justify-content: center;

  border: 1px solid rgba(15,17,20,.12);
  border-radius: 50%;

  font-size: 20px;

  transition:
    transform .25s ease,
    background .25s ease,
    color .25s ease;
}

.privacy-product:hover .privacy-product-arrow {
  transform: translate(3px, -3px);

  background: var(--ink);
  color: #fff;
}


/* MOBILE */

@media (max-width: 680px) {

  .privacy-overview-hero {
    padding-top: 90px;
    padding-bottom: 70px;
  }

  .privacy-overview-hero h1 {
    font-size: clamp(58px, 18vw, 82px);
  }

  .privacy-overview-lead {
    font-size: 18px;
  }

  .privacy-products {
    padding-bottom: 80px;
  }

  .privacy-product {
    grid-template-columns: 1fr auto;
    gap: 28px;

    padding: 38px 24px;
  }

  .privacy-product-logo {
    grid-column: 1 / -1;

    min-height: auto;
    margin-bottom: 8px;
  }

  .privacy-product-logo img {
    max-width: 135px;
    max-height: 55px;
  }

  .privacy-product-arrow {
    width: 42px;
    height: 42px;
  }

}


/* =========================================================
   FOCUS5 PRODUCT PAGE
   ========================================================= */

:root {
  --focus5-bg: #f8f8f7;
  --focus5-white: #ffffff;

  --focus5-text: #111111;
  --focus5-muted: #6c7176;
  --focus5-muted-light: #8a8f94;

  --focus5-line: rgba(0, 0, 0, 0.08);

  --focus5-accent: #707bff;
  --focus5-accent-soft: rgba(160, 170, 255, 0.12);
}


.focus5-page {
  overflow: hidden;
}


/* =========================================================
   HERO
   ========================================================= */

.focus5-hero {
  min-height: calc(100vh - 80px);

  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  align-items: center;
  gap: 80px;

  padding-top: 90px;
  padding-bottom: 100px;

  background:
    radial-gradient(
      circle at 72% 45%,
      var(--focus5-accent-soft),
      transparent 35%
    ),
    var(--focus5-bg);
}


.focus5-hero-copy {
  max-width: 620px;
}


.focus5-page-logo {
  width: 150px;
  height: auto;

  margin-bottom: 42px;
}


.focus5-hero h1 {
  margin: 0;

  font-size: clamp(64px, 6.2vw, 108px);
  line-height: 0.94;

  letter-spacing: -0.055em;
  font-weight: 500;

  color: var(--focus5-text);
}


.focus5-hero-lead {
  max-width: 590px;

  margin-top: 38px;

  font-size: 21px;
  line-height: 1.55;

  color: var(--focus5-muted);
}


/* APP STORE */

.focus5-store-link {
  display: inline-flex;

  margin-top: 36px;

  line-height: 0;
}


.focus5-store-link img {
  display: block;

  width: 145px;
  height: auto;
}


/* HERO VISUAL */

.focus5-hero-visual {
  position: relative;

  display: flex;
  justify-content: center;
  align-items: center;

  min-height: 720px;
}


.focus5-glow {
  position: absolute;

  width: 560px;
  height: 560px;

  border-radius: 50%;

  background:
    radial-gradient(
      circle,
      rgba(194, 190, 255, 0.22),
      rgba(194, 190, 255, 0) 68%
    );

  filter: blur(10px);
}


.focus5-hero-phone {
  position: relative;
  z-index: 2;

  width: min(460px, 78%);
  height: auto;

  display: block;

  transform: translateZ(0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}


/* =========================================================
   WHY FOCUS5
   ========================================================= */

.focus5-intro {
  padding-top: 130px;
  padding-bottom: 140px;

  background: var(--focus5-white);
}


.focus5-section-heading {
  max-width: 700px;

  margin: 0 auto 90px;

  text-align: center;
}


.focus5-section-heading h2 {
  margin: 14px 0 22px;

  font-size: clamp(48px, 5vw, 76px);
  line-height: 0.98;

  letter-spacing: -0.045em;
  font-weight: 500;

  color: var(--focus5-text);
}


.focus5-section-heading > p:last-child {
  max-width: 570px;

  margin: 0 auto;

  font-size: 19px;
  line-height: 1.55;

  color: var(--focus5-muted);
}


/* =========================================================
   BENEFITS
   ========================================================= */

.focus5-benefits {
  max-width: 1100px;

  margin: 0 auto;

  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 70px;
}


.focus5-benefit {
  text-align: center;
}


.focus5-benefit-icon {
  width: 72px;
  height: 72px;

  display: flex;
  align-items: center;
  justify-content: center;

  margin: 0 auto 26px;

  border-radius: 20px;

  background:
    linear-gradient(
      145deg,
      #f8f8f7,
      #f2f1f8
    );
}

.focus5-benefit-icon svg {
  width: 30px;
  height: 30px;

  stroke-width: 1.6;
  color: #7b8188;
}

.focus5-benefit h3 {
  margin: 0 0 12px;

  font-size: 20px;
  font-weight: 600;

  color: var(--focus5-text);
}


.focus5-benefit p {
  margin: 0;

  font-size: 16px;
  line-height: 1.5;

  color: #73787d;
}


/* =========================================================
   DESIGNED FOR CLARITY
   ========================================================= */

.focus5-clarity {
  position: relative;

  background:
    radial-gradient(
      circle at 72% 45%,
      var(--focus5-accent-soft),
      transparent 35%
    ),
    var(--focus5-bg);
}


.focus5-clarity-inner {
  min-height: 780px;

  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  align-items: center;

  gap: 60px;

  padding-top: 110px;
  padding-bottom: 0;
}


.focus5-clarity-copy {
  align-self: center;

  max-width: 470px;

  padding-bottom: 100px;
}


.focus5-clarity-copy h2 {
  margin: 14px 0 26px;

  font-size: clamp(52px, 5vw, 82px);
  line-height: 0.98;

  letter-spacing: -0.05em;
  font-weight: 500;

  color: var(--focus5-text);
}


.focus5-clarity-lead {
  max-width: 430px;

  font-size: 19px;
  line-height: 1.55;

  color: var(--focus5-muted);
}


/* CHECKS */

.focus5-checks {
  margin-top: 42px;

  display: grid;
  gap: 18px;
}


.focus5-checks > div {
  display: flex;
  align-items: center;
  gap: 15px;

  font-size: 17px;

  color: var(--focus5-text);
}


.focus5-checks svg {
  width: 19px;
  height: 19px;

  flex-shrink: 0;

  stroke-width: 1.8;

  color: var(--focus5-accent);
}


/* =========================================================
   PHONE COMPOSITION
   ========================================================= */

.focus5-phone-stage {
  position: relative;

  min-height: 680px;

  display: flex;
  justify-content: center;
  align-items: flex-end;
}


.focus5-phone {
  position: absolute;
  bottom: 0;

  height: auto;

  display: block;

  transform-origin: bottom center;

  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}


.focus5-phone-center {
  z-index: 3;

  width: 330px;

  transform: translateZ(0);
}


.focus5-phone-left {
  z-index: 2;

  width: 290px;

  transform: translateX(-220px) translateZ(0);
}


.focus5-phone-right {
  z-index: 2;

  width: 290px;

  transform: translateX(220px) translateZ(0);
}


/* =========================================================
   PHILOSOPHY / BUSY
   ========================================================= */

.focus5-philosophy {
  padding-top: 160px;
  padding-bottom: 170px;

  background: var(--focus5-white);

  text-align: center;
}


.focus5-philosophy-copy {
  max-width: 1000px;

  margin: 0 auto;
}


.focus5-philosophy-copy h2 {
  margin: 18px auto 30px;

  font-size: clamp(54px, 6vw, 92px);
  line-height: 0.98;

  letter-spacing: -0.05em;
  font-weight: 500;

  color: var(--focus5-text);
}


.focus5-philosophy-lead {
  max-width: 760px;

  margin: 0 auto;

  font-size: 21px;
  line-height: 1.6;

  color: var(--focus5-muted);
}


/* JOBS QUOTE */

.focus5-philosophy-quote {
  max-width: 880px;

  margin: 90px auto 0;
  padding-top: 70px;

  border-top: 1px solid var(--focus5-line);
}


.focus5-philosophy-quote blockquote {
  max-width: 800px;

  margin: 0 auto;

  font-size: clamp(36px, 4vw, 60px);
  line-height: 1.06;

  letter-spacing: -0.035em;
  font-weight: 500;

  color: var(--focus5-text);
}


.focus5-philosophy-quote p {
  margin: 24px 0 0;

  font-size: 16px;

  color: var(--focus5-muted-light);
}


/* =========================================================
   PRIVACY
   ========================================================= */

.focus5-privacy {
  padding-top: 80px;
  padding-bottom: 140px;

  background: var(--focus5-white);
}


.focus5-privacy-card {
  max-width: 1100px;

  margin: 0 auto;

  padding: 70px 80px;

  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 45px;
  align-items: start;

  border-radius: 36px;

  background: var(--focus5-bg);
}


.focus5-privacy-icon {
  width: 80px;
  height: 80px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: var(--focus5-white);
}


.focus5-privacy-icon svg {
  width: 30px;
  height: 30px;

  stroke-width: 1.6;

  color: var(--focus5-text);
}


.focus5-privacy-card h2 {
  margin: 12px 0 18px;

  font-size: clamp(38px, 4vw, 58px);

  letter-spacing: -0.04em;
  font-weight: 500;

  color: var(--focus5-text);
}


.focus5-privacy-card p:last-child {
  max-width: 600px;

  margin: 0;

  font-size: 18px;
  line-height: 1.6;

  color: var(--focus5-muted);
}


/* =========================================================
   FINAL CTA
   ========================================================= */

.focus5-final {
  padding: 140px 40px;

  text-align: center;

  background:
    radial-gradient(
      circle at 72% 45%,
      var(--focus5-accent-soft),
      transparent 35%
    ),
    var(--focus5-bg);
}


.focus5-final-inner {
  max-width: 850px;

  margin: 0 auto;
}


.focus5-final h2 {
  margin: 0;

  font-size: clamp(54px, 6vw, 92px);
  line-height: 0.98;

  letter-spacing: -0.05em;
  font-weight: 500;

  color: var(--focus5-text);
}


.focus5-final p {
  margin: 26px 0 0;

  font-size: 20px;

  color: var(--focus5-muted);
}


.focus5-store-link-final {
  margin-top: 38px;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1050px) {

  .focus5-hero {
    grid-template-columns: 1fr;

    gap: 30px;

    padding-top: 80px;
  }


  .focus5-hero-copy {
    max-width: 700px;
  }


  .focus5-hero-visual {
    min-height: 650px;
  }


  .focus5-benefits {
    gap: 30px;
  }


  .focus5-clarity-inner {
    grid-template-columns: 1fr;

    padding-bottom: 0;
  }


  .focus5-clarity-copy {
    max-width: 650px;

    padding-bottom: 20px;
  }


  .focus5-phone-stage {
    min-height: 620px;
  }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 680px) {

  /* HERO */

  .focus5-hero {
    min-height: auto;

    padding-top: 60px;
    padding-bottom: 70px;

    gap: 40px;
  }


  .focus5-page-logo {
    width: 120px;

    margin-bottom: 30px;
  }


  .focus5-hero h1 {
    font-size: 58px;
  }


  .focus5-hero-lead {
    margin-top: 28px;

    font-size: 18px;
  }


  .focus5-store-link {
    margin-top: 30px;
  }


  .focus5-store-link img {
    width: 135px;
  }


  .focus5-hero-visual {
    min-height: auto;

    padding: 20px 0 10px;
  }


  .focus5-hero-phone {
    width: 82%;
  }


  /* WHY FOCUS5 */

  .focus5-intro {
    padding-top: 90px;
    padding-bottom: 100px;
  }


  .focus5-section-heading {
    margin-bottom: 65px;

    text-align: left;
  }


  .focus5-section-heading h2 {
    font-size: 50px;
  }


  .focus5-section-heading > p:last-child {
    margin: 0;
  }


  /* BENEFITS */

  .focus5-benefits {
    grid-template-columns: 1fr;

    gap: 48px;
  }


  .focus5-benefit {
    display: grid;
    grid-template-columns: 64px 1fr;

    column-gap: 20px;

    text-align: left;
  }


  .focus5-benefit-icon {
    grid-row: 1 / span 2;

    width: 60px;
    height: 60px;

    margin: 0;
  }


  .focus5-benefit h3 {
    margin-top: 4px;
  }


  /* CLARITY */

  .focus5-clarity-inner {
    padding-top: 85px;
  }


  .focus5-clarity-copy {
    padding-bottom: 0;
  }


  .focus5-clarity-copy h2 {
    font-size: 52px;
  }


  .focus5-phone-stage {
    min-height: 520px;

    margin-top: 30px;
  }


  .focus5-phone-center {
    width: 245px;
  }


  .focus5-phone-left {
    width: 210px;

    transform: translateX(-135px) translateZ(0);
  }


  .focus5-phone-right {
    width: 210px;

    transform: translateX(135px) translateZ(0);
  }


  /* PHILOSOPHY */

  .focus5-philosophy {
    padding-top: 110px;
    padding-bottom: 110px;

    text-align: left;
  }


  .focus5-philosophy-copy h2 {
    margin-left: 0;

    font-size: 54px;
  }


  .focus5-philosophy-lead {
    margin-left: 0;

    font-size: 18px;
  }


  .focus5-philosophy-quote {
    margin-top: 70px;
    padding-top: 50px;

    text-align: left;
  }


  .focus5-philosophy-quote blockquote {
    font-size: 40px;
  }


  /* PRIVACY */

  .focus5-privacy {
    padding-top: 40px;
    padding-bottom: 90px;
  }


  .focus5-privacy-card {
    grid-template-columns: 1fr;

    gap: 28px;

    padding: 42px 30px;

    border-radius: 26px;
  }


  .focus5-privacy-icon {
    width: 64px;
    height: 64px;
  }


  /* FINAL */

  .focus5-final {
    padding: 100px 28px;
  }


  .focus5-final h2 {
    font-size: 54px;
  }

}

/* =========================================================
   FOCUS5 FEATURES
   ========================================================= */

.focus5-features {
  background: #f8f8f7;
  text-align: center;
    padding-top: 140px;
  padding-bottom: 150px;
}

.focus5-features .focus5-section-heading {
  max-width: 760px;
  margin: 0 auto 80px;
}

.focus5-features .focus5-section-heading h2 {
  margin: 14px 0 22px;

  font-size: clamp(44px, 5vw, 72px);
  line-height: 0.95;
  letter-spacing: -0.055em;
  font-weight: 600;
}

.focus5-features .focus5-section-heading > p:last-child {
  max-width: 620px;
  margin: 0 auto;

  font-size: 18px;
  line-height: 1.55;
  color: #777b80;
}


/* GRID */

.focus5-feature-grid {
  max-width: 1120px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: repeat(6, 1fr);

  gap: 22px;
}


/* CARDS */

.focus5-feature-card {
  grid-column: span 2;

  min-height: 245px;

  padding: 38px 34px;

  background: #fff;

  border: 1px solid rgba(0, 0, 0, 0.045);
  border-radius: 28px;

  text-align: left;

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}


/* letzte zwei Cards zentrieren */

.focus5-feature-card:nth-child(4) {
  grid-column: 2 / span 2;
}

.focus5-feature-card:nth-child(5) {
  grid-column: 4 / span 2;
}


/* ICON */

.focus5-feature-icon {
  width: 48px;
  height: 48px;

  margin-bottom: 30px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 15px;

  background: #f5f5f7;
}

.focus5-feature-icon svg {
  width: 22px;
  height: 22px;

  stroke-width: 1.6;

  color: #73777c;
}


/* TYPOGRAPHY */

.focus5-feature-card h3 {
  margin: 0 0 12px;

  font-size: 22px;
  line-height: 1.15;
  letter-spacing: -0.025em;

  font-weight: 600;
}

.focus5-feature-card p {
  margin: 0;

  max-width: 260px;

  font-size: 16px;
  line-height: 1.55;

  color: #777b80;
}


/* very subtle desktop interaction */

@media (hover: hover) {

  .focus5-feature-card:hover {
    transform: translateY(-4px);

    border-color: rgba(0, 0, 0, 0.07);

    box-shadow:
      0 18px 45px rgba(0, 0, 0, 0.045);
  }

}


/* TABLET */

@media (max-width: 900px) {

  .focus5-features .focus5-section-heading {
    margin-bottom: 55px;
  }

  .focus5-feature-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }

  .focus5-feature-card {
    grid-column: auto;
  }

  .focus5-feature-card:nth-child(4),
  .focus5-feature-card:nth-child(5) {
    grid-column: auto;
  }

  /* letzte Card schön mittig */

  .focus5-feature-card:last-child {
    grid-column: 1 / -1;

    width: calc(50% - 9px);
    justify-self: center;
  }

}


/* MOBILE */

@media (max-width: 620px) {

  .focus5-features {
    text-align: left;
  }

  .focus5-features .focus5-section-heading {
    margin-bottom: 42px;
  }

  .focus5-features .focus5-section-heading h2 {
    font-size: clamp(40px, 12vw, 54px);
  }

  .focus5-features .focus5-section-heading > p:last-child {
    margin: 0;
  }

  .focus5-feature-grid {
    grid-template-columns: 1fr;
  }

  .focus5-feature-card,
  .focus5-feature-card:nth-child(4),
  .focus5-feature-card:nth-child(5),
  .focus5-feature-card:last-child {
    width: 100%;
    grid-column: auto;
  }

  .focus5-feature-card {
    min-height: auto;

    padding: 28px;
    border-radius: 24px;
  }

  .focus5-feature-icon {
    margin-bottom: 24px;
  }

}


/* =========================================================
   THECHALLENGE PAGE
   ========================================================= */

.thechallenge-page {
  --tc-gutter: clamp(90px, 14.5vw, 240px);

  --tc-card-edge: clamp(40px, 4vw, 68px);

  background: #fff;
  color: #0b0b0c;
}


.thechallenge-page *,
.thechallenge-page *::before,
.thechallenge-page *::after {
  box-sizing: border-box;
}


/* =========================================================
   HERO
   ========================================================= */

.thechallenge-hero {
  min-height: 820px;

  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;

  gap: 70px;

  padding-top: 90px;
  padding-right: var(--tc-gutter);
  padding-bottom: 90px;
  padding-left: var(--tc-gutter);

  background:
    linear-gradient(
      115deg,
      #e85bb4 0%,
      #b968dc 46%,
      #5e75f2 100%
    );

  overflow: hidden;
}


.thechallenge-hero-copy {
  max-width: 590px;
}


.thechallenge-page-logo {
  width: 170px;
  height: auto;

  margin-bottom: 44px;
}


.thechallenge-hero h1 {
  margin: 0 0 30px;

  color: #fff;

  font-size: clamp(72px, 7vw, 110px);
  line-height: 0.91;
  letter-spacing: -0.025em;

  font-weight: 500;
}


.thechallenge-hero-lead {
  max-width: 560px;

  margin: 0 0 38px;

  font-size: 19px;
  line-height: 1.55;

  color: rgba(255, 255, 255, 0.82);
}


.thechallenge-store-link {
  display: inline-block;
}


.thechallenge-store-link img {
  display: block;

  width: 150px;
  height: auto;
}


/* hero phone */

.thechallenge-hero-visual {
  position: relative;

  min-height: 650px;

  display: flex;
  align-items: center;
  justify-content: center;
}


.thechallenge-hero-phone {
  position: relative;
  z-index: 2;

  width: min(500px, 88%);
  height: auto;

  filter:
    drop-shadow(0 30px 45px rgba(25, 20, 55, 0.18));
}


/* old glow no longer needed */

.thechallenge-glow {
  display: none;
}


/* =========================================================
   WHY THECHALLENGE
   ========================================================= */

.thechallenge-intro {
  padding-top: 110px;
  padding-right: var(--tc-gutter);
  padding-bottom: 105px;
  padding-left: var(--tc-gutter);

  background: #fff;
}


.thechallenge-section-heading {
  max-width: 760px;

  margin: 0 auto 72px;

  text-align: center;
}


.thechallenge-section-heading h2 {
  margin: 14px 0 22px;

  font-size: clamp(48px, 5vw, 74px);
  line-height: 0.96;
  letter-spacing: -0.055em;

  font-weight: 600;
}


.thechallenge-section-heading > p:last-child {
  max-width: 640px;

  margin: 0 auto;

  font-size: 18px;
  line-height: 1.55;

  color: #777b80;
}


.thechallenge-benefits {
  max-width: 1160px;

  margin: 0 auto;

  display: grid;
  grid-template-columns: repeat(3, 1fr);

  gap: 70px;
}


.thechallenge-benefit {
  text-align: center;
}


.thechallenge-benefit-icon {
  width: 52px;
  height: 52px;

  margin: 0 auto 26px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 16px;

  background: #f6f3f8;
}


.thechallenge-benefit-icon svg {
  width: 24px;
  height: 24px;

  stroke-width: 1.6;

  color: #a04fd1;
}


.thechallenge-benefit h3 {
  margin: 0 0 10px;

  font-size: 20px;
  line-height: 1.2;
  letter-spacing: -0.025em;
}


.thechallenge-benefit p {
  max-width: 310px;

  margin: 0 auto;

  font-size: 16px;
  line-height: 1.5;

  color: #777b80;
}


/* =========================================================
   ACCOUNTABILITY STORY
   ========================================================= */

.thechallenge-story {
  padding-top: 70px;
  padding-bottom: 25px;

  background: #fff;
}


.thechallenge-story-inner {
  width: calc(100% - (2 * var(--tc-card-edge)));

  min-height: 720px;

  margin: 0 auto;

  display: grid;
  grid-template-columns: 45% 55%;
  align-items: center;

  /*
     This keeps the COPY on exactly the same global
     horizontal axis as the sections outside the card.
  */
  padding-top: 85px;

  padding-right:
    calc(var(--tc-gutter) - var(--tc-card-edge));

  padding-bottom: 80px;

  padding-left:
    calc(var(--tc-gutter) - var(--tc-card-edge));

  border-radius: 42px;

  background:
    radial-gradient(
      circle at 22% 40%,
      rgba(247, 129, 210, 0.42),
      rgba(212, 135, 235, 0.22) 42%,
      transparent 68%
    ),
    radial-gradient(
      circle at 82% 55%,
      rgba(95, 112, 241, 0.32),
      rgba(140, 112, 235, 0.18) 44%,
      transparent 70%
    ),
    #f7f3f8;

  overflow: hidden;
}


/* story copy */

.thechallenge-story-copy {
  max-width: 650px;

  padding: 0;
  margin: 0;
}


.thechallenge-story-copy h2 {
  max-width: 650px;

  margin: 14px 0 28px;

  font-size: clamp(50px, 3.7vw, 70px);
  line-height: 0.96;
  letter-spacing: -0.045em;

  font-weight: 600;
}


.thechallenge-story-lead {
  max-width: 520px;

  margin: 0;

  font-size: 19px;
  line-height: 1.55;

  color: #60646a;
}


.thechallenge-story-tagline {
  margin: 40px 0 0;

  font-size: 16px;
  line-height: 1.45;

  color: #9951d2;
}


.thechallenge-story-tagline strong {
  display: block;

  margin-bottom: 3px;

  color: #111;
}


/* story phone */

.thechallenge-story-visual {
  min-height: 570px;

  display: flex;
  align-items: center;
  justify-content: center;
}


.thechallenge-story-phone {
  display: block;
  height: auto;
}


.thechallenge-story-phone-home {
  display: none;
}


.thechallenge-story-phone-progress {
  width: min(430px, 78%);

  transform: translateY(4px);

  filter:
    drop-shadow(0 28px 40px rgba(20, 15, 45, 0.14));
}


/* =========================================================
   CREATE / START ANYTHING
   ========================================================= */

.thechallenge-create {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;

  gap: 80px;

  padding-top: 70px;
  padding-right: var(--tc-gutter);
  padding-bottom: 115px;
  padding-left: var(--tc-gutter);

  background: #fff;
}


.thechallenge-create-copy {
  max-width: 650px;

  padding: 0;
  margin: 0;
}


.thechallenge-create-copy h2 {
  max-width: 650px;

  margin: 14px 0 28px;

  font-size: clamp(50px, 4vw, 70px);
  line-height: 0.96;
  letter-spacing: -0.045em;

  font-weight: 600;
}


.thechallenge-create-lead {
  max-width: 520px;

  margin: 0;

  font-size: 18px;
  line-height: 1.55;

  color: #74787e;
}


/* create phones */

.thechallenge-create-stage {
  min-height: 550px;

  display: flex;
  align-items: center;
  justify-content: center;

  gap: 38px;
}


.thechallenge-create-stage .thechallenge-phone {
  display: block;
  height: auto;

  filter:
    drop-shadow(0 24px 34px rgba(20, 15, 45, 0.12));
}


.thechallenge-create-stage .thechallenge-phone:first-child {
  width: 355px;

  transform: translateY(20px);
}


.thechallenge-create-stage .thechallenge-phone:last-child {
  width: 285px;

  transform: translateY(-10px);
}


/* =========================================================
   SOCIAL
   ========================================================= */

.thechallenge-social {
  padding-top: 25px;
  padding-bottom: 100px;

  background: #fff;
}


.thechallenge-social-inner {
  width: calc(100% - (2 * var(--tc-card-edge)));

  min-height: 800px;

  margin: 0 auto;

  padding-top: 90px;

  padding-right:
    calc(var(--tc-gutter) - var(--tc-card-edge));

  padding-bottom: 80px;

  padding-left:
    calc(var(--tc-gutter) - var(--tc-card-edge));

  border-radius: 42px;

  background:
    radial-gradient(
      circle at 22% 28%,
      rgba(247, 129, 210, 0.42),
      rgba(212, 135, 235, 0.22) 42%,
      transparent 68%
    ),
    radial-gradient(
      circle at 80% 68%,
      rgba(95, 112, 241, 0.32),
      rgba(140, 112, 235, 0.18) 44%,
      transparent 70%
    ),
    #f7f3f8;

  overflow: hidden;
}


/* COPY */

.thechallenge-social-copy {
  max-width: 650px;

  margin: 0 0 55px;
}


.thechallenge-social-copy h2 {
  max-width: 650px;

  margin: 14px 0 26px;

  font-size: clamp(50px, 4vw, 70px);
  line-height: 0.96;
  letter-spacing: -0.045em;

  font-weight: 600;
}


.thechallenge-social-lead {
  max-width: 520px;

  margin: 0;

  font-size: 18px;
  line-height: 1.55;

  color: #62666c;
}


/* SHOWCASE */

.thechallenge-social-showcase {
  display: flex;

  align-items: flex-end;
  justify-content: center;

  gap: clamp(35px, 5vw, 90px);

  min-height: 470px;
}


.thechallenge-social-item {
  display: flex;
  flex-direction: column;

  align-items: center;

  text-align: center;
}


/* PHONES */

.thechallenge-social-item img {
  display: block;

  height: auto;

  filter:
    drop-shadow(0 24px 34px rgba(20, 15, 45, 0.13));
}


.thechallenge-social-invite img {
  width: 300px;

  transform: translateY(20px);
}


.thechallenge-social-reminder img {
  width: 320px;

  transform: translateY(-10px);
}


.thechallenge-social-chat img {
  width: 300px;

  transform: translateY(20px);
}


/* CAPTIONS */

.thechallenge-social-caption {
  margin-top: 35px;

  font-size: 15px;
  line-height: 1.45;
}


.thechallenge-social-caption strong {
  display: block;

  margin-bottom: 4px;

  font-size: 17px;

  color: #111;
}


.thechallenge-social-caption span {
  color: #6f7177;
}


/* =========================================================
   FEATURES
   ========================================================= */

.thechallenge-features {
  padding-top: 140px;
  padding-right: var(--tc-gutter);
  padding-bottom: 150px;
  padding-left: var(--tc-gutter);

  text-align: center;

  background: #f8f8f7;
}


.thechallenge-features .thechallenge-section-heading {
  margin-bottom: 85px;
}


.thechallenge-feature-grid {
  max-width: 1120px;

  margin: 0 auto;

  display: grid;
  grid-template-columns: repeat(3, 1fr);

  gap: 22px;
}


.thechallenge-feature-card {
  min-height: 245px;

  padding: 38px 34px;

  text-align: left;

  border: 1px solid rgba(0, 0, 0, 0.045);
  border-radius: 28px;

  background: #fff;

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}


.thechallenge-feature-icon {
  width: 48px;
  height: 48px;

  margin-bottom: 30px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 15px;

  background:
    linear-gradient(
      145deg,
      rgba(241, 137, 218, 0.15),
      rgba(115, 112, 236, 0.10)
    );
}


.thechallenge-feature-icon svg {
  width: 22px;
  height: 22px;

  stroke-width: 1.6;

  color: #9a55cf;
}


.thechallenge-feature-card h3 {
  margin: 0 0 12px;

  font-size: 22px;
  line-height: 1.15;
  letter-spacing: -0.025em;
}


.thechallenge-feature-card p {
  max-width: 265px;

  margin: 0;

  font-size: 16px;
  line-height: 1.55;

  color: #777b80;
}


@media (hover: hover) {

  .thechallenge-feature-card:hover {
    transform: translateY(-4px);

    box-shadow:
      0 18px 45px rgba(0, 0, 0, 0.045);
  }

}


/* =========================================================
   FINAL CTA
   ========================================================= */

.thechallenge-final {
  padding-top: 80px;
  padding-bottom: 80px;

  /* WICHTIG: kein horizontaler Gutter hier */
  padding-left: 0;
  padding-right: 0;

  background: #fff;
}


.thechallenge-final-inner {
  /* exakt gleiche Breite wie Story / Social */
  width: calc(100% - (2 * var(--tc-card-edge)));

  min-height: 500px;

  margin: 0 auto;

  padding: 70px 80px;

  display: flex;
  flex-direction: column;

  align-items: center;
  justify-content: center;

  text-align: center;

  border-radius: 42px;

  background:
    radial-gradient(
      circle at 28% 35%,
      rgba(243, 126, 211, 0.40),
      rgba(211, 142, 235, 0.24) 40%,
      transparent 68%
    ),
    radial-gradient(
      circle at 76% 65%,
      rgba(91, 116, 246, 0.34),
      rgba(128, 110, 231, 0.20) 42%,
      transparent 70%
    ),
    #f8f5f9;
}


.thechallenge-final h2 {
  max-width: 900px;

  margin: 0 0 22px;

  font-size: clamp(58px, 5.5vw, 86px);
  line-height: 0.92;
  letter-spacing: -0.055em;

  font-weight: 600;
}


.thechallenge-final p {
  margin: 0 0 32px;

  font-size: 18px;

  color: #696d72;
}

/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1050px) {

  .thechallenge-page {
    --tc-gutter: 52px;
    --tc-card-edge: 20px;
  }


  .thechallenge-hero,
  .thechallenge-create,
  .thechallenge-story-inner {
    grid-template-columns: 1fr;
  }


  /* HERO */

  .thechallenge-hero {
    gap: 25px;

    padding-top: 75px;
    padding-bottom: 40px;
  }


  .thechallenge-hero-copy {
    max-width: 650px;
  }


  .thechallenge-hero-visual {
    min-height: 610px;
  }


  .thechallenge-hero-phone {
    width: min(430px, 72%);
  }


  /* WHY */

  .thechallenge-intro {
    padding-top: 95px;
    padding-bottom: 90px;
  }


  .thechallenge-benefits {
    gap: 40px;
  }


  /* STORY */

  .thechallenge-story {
    padding-top: 55px;
    padding-bottom: 25px;
  }


  .thechallenge-story-inner {
    min-height: auto;

    padding-top: 75px;
    padding-bottom: 25px;
  }


  .thechallenge-story-copy {
    max-width: 650px;
  }


  .thechallenge-story-visual {
    min-height: 560px;

    margin-top: 20px;
  }


  .thechallenge-story-phone-progress {
    width: min(410px, 65%);
  }


  /* CREATE */

  .thechallenge-create {
    gap: 20px;

    padding-top: 75px;
    padding-bottom: 100px;
  }


  .thechallenge-create-copy {
    max-width: 650px;
  }


  .thechallenge-create-stage {
    min-height: 550px;
  }


  /* SOCIAL */

  .thechallenge-social-grid {
    grid-template-columns: repeat(2, 1fr);
  }


  .thechallenge-social-card:last-child {
    grid-column: 1 / -1;

    width: calc(50% - 12px);

    justify-self: center;
  }


  /* FEATURES */

  .thechallenge-feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 680px) {

  .thechallenge-page {
    --tc-gutter: 24px;
    --tc-card-edge: 12px;
  }


  /* HERO */

  .thechallenge-hero {
    min-height: auto;

    grid-template-columns: 1fr;

    gap: 30px;

    padding-top: 60px;
    padding-bottom: 30px;
  }


  .thechallenge-page-logo {
    width: 145px;

    margin-bottom: 30px;
  }


  .thechallenge-hero h1 {
    font-size: clamp(58px, 17vw, 78px);
  }


  .thechallenge-hero-lead {
    font-size: 17px;
  }


  .thechallenge-hero-visual {
    min-height: 500px;
  }


  .thechallenge-hero-phone {
    width: min(360px, 88%);
  }


  /* WHY */

  .thechallenge-intro {
    padding-top: 80px;
    padding-bottom: 75px;
  }


  .thechallenge-section-heading {
    margin-bottom: 50px;

    text-align: left;
  }


  .thechallenge-section-heading > p:last-child {
    margin: 0;
  }


  .thechallenge-benefits {
    grid-template-columns: 1fr;

    gap: 48px;
  }


  .thechallenge-benefit {
    text-align: left;
  }


  .thechallenge-benefit-icon {
    margin-left: 0;
  }


  .thechallenge-benefit p {
    max-width: 100%;

    margin: 0;
  }


  /* STORY */

  .thechallenge-story {
    padding-top: 40px;
    padding-bottom: 15px;
  }


  .thechallenge-story-inner {
    grid-template-columns: 1fr;

    min-height: auto;

    padding-top: 58px;
    padding-bottom: 0;

    border-radius: 28px;
  }


  .thechallenge-story-copy h2 {
    font-size: clamp(44px, 12vw, 58px);
  }


  .thechallenge-story-lead {
    font-size: 17px;
  }


  .thechallenge-story-visual {
    min-height: 440px;

    margin-top: 25px;
  }


  .thechallenge-story-phone-progress {
    width: min(330px, 82%);

    transform: translateY(20px);
  }


  /* CREATE */

  .thechallenge-create {
    grid-template-columns: 1fr;

    gap: 20px;

    padding-top: 65px;
    padding-bottom: 90px;
  }


  .thechallenge-create-copy h2 {
    font-size: clamp(44px, 12vw, 58px);
  }


  .thechallenge-create-stage {
  min-height: 0;
  margin-top: 28px;

  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.thechallenge-create-stage .thechallenge-phone:first-child {
  width: min(300px, 76%);
  transform: none;
}


.thechallenge-create-stage .thechallenge-phone:last-child {
  display: none;
}


  /* SOCIAL */

.thechallenge-social {
  padding-top: 16px;
  padding-bottom: 70px;
}


.thechallenge-social-inner {
  width: calc(100% - 24px);

  margin: 0 auto;

  padding: 46px 22px 42px;

  min-height: auto;

  border-radius: 28px;
}


.thechallenge-social-copy {
  max-width: none;

  margin: 0 0 44px;

  text-align: left;
}


.thechallenge-social-copy h2 {
  max-width: none;

  margin: 10px 0 20px;

  font-size: clamp(42px, 11vw, 56px);
  line-height: 0.96;
  letter-spacing: -0.045em;
}


.thechallenge-social-lead {
  max-width: none;

  margin: 0;

  font-size: 17px;
  line-height: 1.5;
}


/* statt 3 Phones nebeneinander:
   3 kompakte Feature-Zeilen */

.thechallenge-social-showcase {
  display: grid;

  grid-template-columns: 1fr;

  gap: 24px;

  min-height: 0;

  align-items: initial;
  justify-content: initial;
}


.thechallenge-social-item {
  display: grid;

  grid-template-columns: 135px 1fr;

  align-items: center;

  gap: 22px;

  min-height: 190px;

  padding: 18px 18px 18px 10px;

  text-align: left;

  border-radius: 24px;

  background: rgba(255,255,255,0.30);

  border: 1px solid rgba(255,255,255,0.46);
}


/* alle Phones gleich behandeln */

.thechallenge-social-item img,
.thechallenge-social-invite img,
.thechallenge-social-reminder img,
.thechallenge-social-chat img {
  width: 125px;
  max-width: 125px;

  margin: 0 auto;

  transform: none;

  filter:
    drop-shadow(0 15px 24px rgba(20, 15, 45, 0.12));
}


/* Caption direkt rechts neben Phone */

.thechallenge-social-caption {
  margin: 0;

  text-align: left;

  font-size: 15px;
  line-height: 1.45;
}


.thechallenge-social-caption strong {
  margin-bottom: 6px;

  font-size: 18px;
  line-height: 1.15;
}


.thechallenge-social-caption span {
  display: block;

  font-size: 15px;
  line-height: 1.45;

  color: #666b70;
}



  /* FEATURES */

  .thechallenge-features {
    padding-top: 95px;
    padding-bottom: 105px;

    text-align: left;
  }


  .thechallenge-feature-grid {
    grid-template-columns: 1fr;
  }


  .thechallenge-feature-card {
    min-height: auto;

    padding: 28px;

    border-radius: 24px;
  }


  /* FINAL CTA */

  .thechallenge-final {
    padding: 12px;
  }


  .thechallenge-final-inner {
    min-height: 500px;

    padding: 55px 24px;

    border-radius: 28px;
  }


  .thechallenge-final h2 {
    font-size: clamp(50px, 14vw, 68px);
  }

}