/* Scout App landing page conversion layout (2026-07-13). */

body.landing-home {
  --landing-ink: #10251a;
  --landing-muted: #52645a;
  --landing-green: #087a40;
  --landing-green-dark: #066735;
  --landing-green-soft: #eaf8f0;
  --landing-line: #dce7e0;
  --landing-warm: #fff8ed;
  --landing-navy: #10271d;
  color: var(--landing-ink);
  background: #fff;
  overflow-x: clip;
}

body.landing-home main {
  overflow: hidden;
}

body.landing-home h1,
body.landing-home h2,
body.landing-home h3,
body.landing-home p {
  color: inherit;
}

body.landing-home h1,
body.landing-home h2,
body.landing-home h3 {
  letter-spacing: -0.035em;
}

body.landing-home .container {
  width: min(1180px, calc(100% - 48px));
  max-width: 1180px;
  margin-inline: auto;
}

body.landing-home section {
  scroll-margin-top: 92px;
}

body.landing-home .section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--landing-green-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1.2;
  text-transform: uppercase;
}

body.landing-home .section-kicker::before {
  width: 22px;
  height: 2px;
  content: "";
  background: currentColor;
}

body.landing-home .landing-section-heading {
  max-width: 720px;
  margin: 0 auto 48px;
  text-align: center;
}

body.landing-home .landing-section-heading .section-kicker {
  justify-content: center;
}

body.landing-home .landing-section-heading h2,
body.landing-home .clarity-strip h2,
body.landing-home .product-workflow h2,
body.landing-home .final-demo h2 {
  margin: 0 0 16px;
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.08;
}

body.landing-home .landing-section-heading p,
body.landing-home .product-workflow__copy > p,
body.landing-home .final-demo__copy > p {
  margin: 0;
  color: var(--landing-muted);
  font-size: 1.08rem;
  line-height: 1.7;
}

/* Navigation */
body.landing-home .landing-nav {
  position: fixed;
  z-index: 1000;
  inset: 0 0 auto;
  height: 78px;
  padding: 0;
  border-bottom: 1px solid rgba(16, 39, 29, 0.08);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: none;
  backdrop-filter: blur(14px);
}

body.landing-home .landing-nav.scrolled {
  box-shadow: 0 10px 30px rgba(16, 39, 29, 0.08);
}

body.landing-home .landing-nav .container {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: space-between;
}

body.landing-home .landing-brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 10px;
  color: var(--landing-ink);
  text-decoration: none;
}

body.landing-home .landing-brand .logo {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

body.landing-home .landing-brand__text {
  font-size: 1.15rem;
  font-weight: 650;
  letter-spacing: -0.03em;
}

body.landing-home .landing-brand__text strong {
  color: var(--landing-green);
  font-weight: 800;
}

body.landing-home .nav-menu {
  display: flex;
  align-items: center;
  gap: 28px;
}

body.landing-home .nav-link {
  padding: 8px 0;
  color: #33463b;
  font-size: 0.91rem;
  font-weight: 650;
}

body.landing-home .nav-link:hover,
body.landing-home .nav-link:focus-visible {
  color: var(--landing-green-dark);
}

body.landing-home .nav-link::after {
  display: none;
}

body.landing-home .nav-login {
  color: var(--landing-ink);
}

body.landing-home .nav-mobile-actions,
body.landing-home .nav-login--inline {
  display: none;
}

body.landing-home .nav-cta {
  min-height: 44px;
  padding: 11px 18px;
  font-size: 0.9rem;
}

body.landing-home .hamburger {
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 0;
  border-radius: 12px;
  background: var(--landing-green-soft);
}

body.landing-home a:focus-visible,
body.landing-home button:focus-visible,
body.landing-home summary:focus-visible,
body.landing-home input:focus-visible,
body.landing-home textarea:focus-visible,
body.landing-home select:focus-visible {
  outline: 3px solid #ffbf47;
  outline-offset: 3px;
}

/* Shared actions */
body.landing-home .btn {
  min-height: 48px;
  padding: 13px 22px;
  border-radius: 12px;
  box-shadow: none;
  font-size: 0.96rem;
  font-weight: 750;
  line-height: 1.2;
  transform: none;
}

body.landing-home .btn:hover {
  transform: translateY(-1px);
}

body.landing-home .btn-primary {
  border: 1px solid var(--landing-green);
  background: var(--landing-green);
  box-shadow: 0 12px 24px rgba(13, 159, 86, 0.18);
}

body.landing-home .btn-primary:hover,
body.landing-home .btn-primary:focus-visible {
  border-color: var(--landing-green-dark);
  background: var(--landing-green-dark);
  box-shadow: 0 14px 28px rgba(8, 122, 64, 0.22);
}

body.landing-home .btn-light {
  border: 1px solid rgba(255, 255, 255, 0.75);
  color: var(--landing-navy);
  background: #fff;
}

body.landing-home .btn-light:hover,
body.landing-home .btn-light:focus-visible {
  color: var(--landing-green-dark);
  background: #f7fff9;
}

body.landing-home .btn-outline {
  border-color: var(--landing-ink);
  color: var(--landing-ink);
  background: transparent;
}

body.landing-home .btn-outline:hover,
body.landing-home .btn-outline:focus-visible {
  border-color: var(--landing-ink);
  color: #fff;
  background: var(--landing-ink);
}

body.landing-home .btn-full {
  width: 100%;
}

body.landing-home .landing-text-link,
body.landing-home .landing-price-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--landing-green-dark);
  font-weight: 750;
  text-decoration: none;
}

body.landing-home .landing-text-link:hover,
body.landing-home .landing-text-link:focus-visible,
body.landing-home .landing-price-card__link:hover,
body.landing-home .landing-price-card__link:focus-visible {
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* Hero */
body.landing-home .landing-hero {
  min-height: auto;
  padding: 142px 0 86px;
  background:
    radial-gradient(circle at 82% 22%, rgba(13, 159, 86, 0.13), transparent 31%),
    linear-gradient(180deg, #f7fbf8 0%, #fff 83%);
}

body.landing-home .landing-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(520px, 1.12fr);
  align-items: center;
  gap: clamp(48px, 6vw, 82px);
}

body.landing-home .landing-hero__copy {
  position: relative;
  z-index: 2;
}

body.landing-home .landing-hero h1 {
  max-width: 670px;
  margin: 0 0 24px;
  color: var(--landing-ink);
  font-size: clamp(3rem, 4.6vw, 4.35rem);
  font-weight: 800;
  line-height: 1.01;
}

body.landing-home .landing-hero__subtitle {
  max-width: 630px;
  margin: 0;
  color: var(--landing-muted);
  font-size: 1.12rem;
  line-height: 1.72;
}

body.landing-home .landing-hero__actions {
  display: flex;
  margin: 32px 0 35px;
  align-items: center;
  gap: 20px;
}

body.landing-home .landing-hero__proof {
  display: flex;
  padding-top: 25px;
  border-top: 1px solid var(--landing-line);
  align-items: center;
  gap: 22px;
}

body.landing-home .landing-proof-club {
  display: flex;
  align-items: center;
  gap: 11px;
}

body.landing-home .landing-proof-club img {
  width: 46px;
  height: 46px;
  object-fit: contain;
}

body.landing-home .landing-proof-club span {
  display: flex;
  flex-direction: column;
}

body.landing-home .landing-proof-club small,
body.landing-home .landing-proof-club strong {
  line-height: 1.35;
}

body.landing-home .landing-proof-club small {
  color: var(--landing-muted);
  font-size: 0.7rem;
  text-transform: uppercase;
}

body.landing-home .landing-proof-club strong {
  color: var(--landing-ink);
  font-size: 0.88rem;
}

body.landing-home .landing-press-link {
  padding-left: 22px;
  border-left: 1px solid var(--landing-line);
  color: var(--landing-muted);
  font-size: 0.82rem;
  font-weight: 650;
  text-decoration: none;
}

body.landing-home .landing-press-link:hover {
  color: var(--landing-green-dark);
}

/* Code-native product preview keeps the first screen readable. */
body.landing-home .product-preview {
  position: relative;
  min-width: 0;
  border: 1px solid rgba(16, 39, 29, 0.12);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 38px 80px rgba(16, 39, 29, 0.14);
  transform: perspective(1200px) rotateY(-2deg) rotateX(1deg);
}

body.landing-home .product-preview__bar {
  display: grid;
  height: 54px;
  padding: 0 18px;
  border-bottom: 1px solid #e8eee9;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  color: #34483d;
  font-size: 0.72rem;
}

body.landing-home .product-preview__bar > strong {
  font-size: 0.76rem;
}

body.landing-home .product-preview__dots {
  display: flex;
  gap: 5px;
}

body.landing-home .product-preview__dots i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d3ddd7;
}

body.landing-home .product-preview__status {
  justify-self: end;
  padding: 4px 9px;
  border-radius: 99px;
  color: #087a40;
  background: #e8f7ee;
  font-size: 0.65rem;
  font-weight: 750;
}

body.landing-home .product-preview__body {
  display: grid;
  min-height: 418px;
  grid-template-columns: 54px 1fr;
}

body.landing-home .product-preview__sidebar {
  display: flex;
  padding-top: 23px;
  border-right: 1px solid #e8eee9;
  background: #f9fbfa;
  align-items: center;
  flex-direction: column;
  gap: 17px;
}

body.landing-home .product-preview__sidebar span {
  width: 19px;
  height: 19px;
  border-radius: 6px;
  background: #dbe5df;
}

body.landing-home .product-preview__sidebar span.is-active {
  background: var(--landing-green);
  box-shadow: 0 0 0 5px #e5f6ed;
}

body.landing-home .product-preview__content {
  min-width: 0;
  padding: 28px 27px 30px;
}

body.landing-home .product-preview__headline {
  display: flex;
  margin-bottom: 20px;
  align-items: end;
  justify-content: space-between;
  gap: 15px;
}

body.landing-home .product-preview__headline div {
  display: flex;
  flex-direction: column;
}

body.landing-home .product-preview__headline small,
body.landing-home .product-preview__headline > span {
  color: #77877e;
  font-size: 0.66rem;
}

body.landing-home .product-preview__headline strong {
  margin-top: 4px;
  color: #173326;
  font-size: 1rem;
}

body.landing-home .product-metrics {
  display: grid;
  margin-bottom: 18px;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

body.landing-home .product-metrics article {
  display: flex;
  min-width: 0;
  padding: 12px;
  border: 1px solid #e5ece7;
  border-radius: 12px;
  align-items: center;
  gap: 9px;
}

body.landing-home .metric-icon {
  display: grid;
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  border-radius: 8px;
  color: #087a40;
  background: #e5f6ed;
  place-items: center;
  font-size: 0.7rem;
  font-weight: 800;
}

body.landing-home .metric-icon--blue {
  color: #2563a6;
  background: #e9f2fc;
}

body.landing-home .metric-icon--orange {
  color: #a85d11;
  background: #fff2df;
}

body.landing-home .product-metrics article div {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

body.landing-home .product-metrics strong {
  color: #163326;
  font-size: 0.78rem;
}

body.landing-home .product-metrics small {
  overflow: hidden;
  color: #5d6d63;
  font-size: 0.68rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

body.landing-home .product-preview__panel {
  padding: 16px;
  border: 1px solid #e5ece7;
  border-radius: 13px;
}

body.landing-home .product-preview__panel-head,
body.landing-home .player-row {
  display: grid;
  align-items: center;
}

body.landing-home .product-preview__panel-head {
  margin-bottom: 10px;
  grid-template-columns: 1fr auto;
  color: #294437;
  font-size: 0.7rem;
}

body.landing-home .product-preview__panel-head span {
  color: #7a8981;
  font-size: 0.6rem;
}

body.landing-home .player-row {
  padding: 9px 0;
  border-top: 1px solid #eef2ef;
  grid-template-columns: 30px 88px 1fr 32px;
  gap: 8px;
}

body.landing-home .player-avatar {
  display: grid;
  width: 27px;
  height: 27px;
  border-radius: 9px;
  color: #31549b;
  background: #e8effc;
  place-items: center;
  font-size: 0.55rem;
  font-weight: 800;
}

body.landing-home .player-avatar--green {
  color: #087a40;
  background: #e6f6ed;
}

body.landing-home .player-avatar--orange {
  color: #a85d11;
  background: #fff2df;
}

body.landing-home .player-row div {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

body.landing-home .player-row strong,
body.landing-home .player-row b {
  color: #294437;
  font-size: 0.7rem;
}

body.landing-home .player-row small {
  color: #607068;
  font-size: 0.64rem;
}

body.landing-home .player-bar {
  height: 6px;
  overflow: hidden;
  border-radius: 99px;
  background: #eef3ef;
}

body.landing-home .player-bar i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: var(--landing-green);
}

body.landing-home .preview-callout {
  position: absolute;
  display: flex;
  padding: 9px 12px;
  border: 1px solid rgba(16, 39, 29, 0.1);
  border-radius: 10px;
  color: #2e4438;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 12px 24px rgba(16, 39, 29, 0.1);
  align-items: center;
  gap: 7px;
  font-size: 0.68rem;
  font-weight: 700;
}

body.landing-home .preview-callout span {
  color: var(--landing-green);
}

body.landing-home .preview-callout--top {
  top: 95px;
  right: -28px;
}

body.landing-home .preview-callout--bottom {
  bottom: 28px;
  left: -32px;
}

/* Audience split */
body.landing-home .audience-paths {
  padding: 82px 0 90px;
}

body.landing-home .audience-paths__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

body.landing-home .audience-card {
  display: flex;
  min-height: 470px;
  padding: clamp(30px, 4vw, 46px);
  border: 1px solid var(--landing-line);
  border-radius: 20px;
  background: #fbfdfb;
  flex-direction: column;
}

body.landing-home .audience-card--club {
  border-color: transparent;
  color: #fff;
  background: var(--landing-navy);
}

body.landing-home .audience-card__eyebrow {
  margin-bottom: 24px;
  color: var(--landing-green-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

body.landing-home .audience-card--club .audience-card__eyebrow {
  color: #72dfa4;
}

body.landing-home .audience-card h3 {
  max-width: 500px;
  margin: 0 0 15px;
  font-size: clamp(1.65rem, 3vw, 2.35rem);
  line-height: 1.12;
}

body.landing-home .audience-card > p {
  margin: 0 0 25px;
  color: var(--landing-muted);
  font-size: 0.98rem;
  line-height: 1.65;
}

body.landing-home .audience-card--club > p {
  color: #c8d6cf;
}

body.landing-home .audience-card ul,
body.landing-home .landing-price-card ul {
  margin: 0 0 30px;
  padding: 0;
  list-style: none;
}

body.landing-home .audience-card li,
body.landing-home .landing-price-card li {
  position: relative;
  padding: 8px 0 8px 27px;
  font-size: 0.95rem;
}

body.landing-home .audience-card li::before,
body.landing-home .landing-price-card li::before {
  position: absolute;
  top: 8px;
  left: 0;
  display: grid;
  width: 19px;
  height: 19px;
  border-radius: 50%;
  content: "✓";
  color: #087a40;
  background: #e5f6ed;
  place-items: center;
  font-size: 0.65rem;
  font-weight: 900;
}

body.landing-home .audience-card--club li::before {
  color: #b9f3d1;
  background: rgba(114, 223, 164, 0.16);
}

body.landing-home .audience-card__footer {
  display: flex;
  margin-top: auto;
  padding-top: 25px;
  border-top: 1px solid var(--landing-line);
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

body.landing-home .audience-card--club .audience-card__footer {
  border-color: rgba(255, 255, 255, 0.14);
}

body.landing-home .audience-card__footer span {
  display: flex;
  color: var(--landing-muted);
  flex-direction: column;
  font-size: 0.75rem;
}

body.landing-home .audience-card--club .audience-card__footer span {
  color: #c8d6cf;
}

body.landing-home .audience-card__footer strong {
  color: inherit;
  font-size: 1.25rem;
}

/* Benefits without another wall of cards. */
body.landing-home .clarity-strip {
  padding: 86px 0;
  border-block: 1px solid var(--landing-line);
  background: #f6faf7;
}

body.landing-home .clarity-strip .container {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.55fr);
  gap: 70px;
}

body.landing-home .clarity-strip__intro h2 {
  max-width: 410px;
  margin-bottom: 0;
}

body.landing-home .clarity-strip__items {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
}

body.landing-home .clarity-strip__items article {
  padding-top: 15px;
  border-top: 2px solid #bfd8ca;
}

body.landing-home .clarity-strip__items article > span {
  color: var(--landing-green-dark);
  font-size: 0.7rem;
  font-weight: 800;
}

body.landing-home .clarity-strip__items h3 {
  margin: 18px 0 10px;
  font-size: 1.1rem;
  letter-spacing: -0.02em;
}

body.landing-home .clarity-strip__items p {
  margin: 0;
  color: var(--landing-muted);
  font-size: 0.88rem;
  line-height: 1.65;
}

/* Product flow */
body.landing-home .product-workflow {
  padding: 116px 0;
}

body.landing-home .product-workflow__grid {
  display: grid;
  grid-template-columns: minmax(340px, 0.75fr) minmax(0, 1.35fr);
  align-items: center;
  gap: 76px;
}

body.landing-home .workflow-list {
  margin: 34px 0 30px;
  padding: 0;
  list-style: none;
}

body.landing-home .workflow-list li {
  display: grid;
  padding: 20px 0;
  border-top: 1px solid var(--landing-line);
  grid-template-columns: 35px 1fr;
  gap: 14px;
}

body.landing-home .workflow-list li:last-child {
  border-bottom: 1px solid var(--landing-line);
}

body.landing-home .workflow-list li > span {
  display: grid;
  width: 28px;
  height: 28px;
  border-radius: 9px;
  color: var(--landing-green-dark);
  background: var(--landing-green-soft);
  place-items: center;
  font-size: 0.76rem;
  font-weight: 800;
}

body.landing-home .workflow-list strong {
  display: block;
  margin-bottom: 4px;
  color: var(--landing-ink);
}

body.landing-home .workflow-list p {
  margin: 0;
  color: var(--landing-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

body.landing-home .product-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

body.landing-home .product-gallery figure {
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--landing-line);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(16, 39, 29, 0.09);
}

body.landing-home .product-gallery__main {
  grid-column: 1 / -1;
}

body.landing-home .product-gallery img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 8.5;
  border-bottom: 1px solid var(--landing-line);
  object-fit: cover;
  object-position: top;
}

body.landing-home .product-gallery figure > a {
  display: block;
}

body.landing-home .product-gallery figure:not(.product-gallery__main) img {
  aspect-ratio: 16 / 9;
}

body.landing-home .product-gallery figcaption {
  display: flex;
  padding: 13px 15px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

body.landing-home .product-gallery figcaption strong {
  color: var(--landing-ink);
  font-size: 0.86rem;
}

body.landing-home .product-gallery figcaption span {
  color: var(--landing-muted);
  font-size: 0.8rem;
  text-align: right;
}

/* Case study */
body.landing-home .case-study {
  padding: 102px 0;
  background: var(--landing-navy);
}

body.landing-home .case-study__card {
  display: grid;
  color: #fff;
  grid-template-columns: 0.68fr 1.5fr 0.75fr;
  gap: clamp(36px, 5vw, 70px);
}

body.landing-home .case-study__identity {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 18px;
}

body.landing-home .case-study__identity img {
  width: 76px;
  height: 76px;
  object-fit: contain;
}

body.landing-home .case-study__identity div,
body.landing-home .case-study__person span {
  display: flex;
  flex-direction: column;
}

body.landing-home .case-study__identity span {
  margin-bottom: 5px;
  color: #72dfa4;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

body.landing-home .case-study__identity strong {
  margin-bottom: 3px;
  font-size: 1.05rem;
}

body.landing-home .case-study__identity small,
body.landing-home .case-study__person small {
  color: #aebfb6;
}

body.landing-home .case-study__quote {
  padding-inline: clamp(0px, 2vw, 30px);
  border-inline: 1px solid rgba(255, 255, 255, 0.14);
}

body.landing-home .case-study blockquote {
  margin: 0 0 29px;
  color: #fff;
  font-size: clamp(1.25rem, 2.3vw, 1.8rem);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.45;
}

body.landing-home .case-study__person {
  display: flex;
  align-items: center;
  gap: 13px;
}

body.landing-home .case-study__person img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
}

body.landing-home .case-study__person strong {
  font-size: 0.86rem;
}

body.landing-home .case-study__person small {
  margin-top: 3px;
  font-size: 0.69rem;
}

body.landing-home .case-study__results {
  display: flex;
  flex-direction: column;
}

body.landing-home .case-study__results > div {
  display: grid;
  padding: 14px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  grid-template-columns: 27px 1fr;
  gap: 8px;
}

body.landing-home .case-study__results > div span {
  color: #72dfa4;
  font-size: 0.65rem;
  font-weight: 800;
}

body.landing-home .case-study__results > div strong {
  font-size: 0.8rem;
  line-height: 1.45;
}

body.landing-home .case-study__results > a {
  margin-top: auto;
  padding-top: 20px;
  color: #9ceabd;
  font-size: 0.8rem;
  font-weight: 700;
  text-decoration: none;
}

/* Pricing */
body.landing-home .landing-pricing {
  padding: 90px 0;
  background: #f7faf8;
}

body.landing-home .landing-pricing__grid {
  display: grid;
  max-width: 920px;
  margin: 0 auto;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
  gap: 22px;
}

body.landing-home .landing-price-card {
  position: relative;
  display: flex;
  padding: 38px;
  border: 1px solid var(--landing-line);
  border-radius: 20px;
  background: #fff;
  flex-direction: column;
  box-shadow: 0 16px 45px rgba(16, 39, 29, 0.07);
}

body.landing-home .landing-price-card--club {
  border: 2px solid var(--landing-green);
}

body.landing-home .landing-price-card__badge {
  position: absolute;
  top: 0;
  right: 25px;
  padding: 7px 12px;
  border-radius: 0 0 8px 8px;
  color: #fff;
  background: var(--landing-green);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

body.landing-home .landing-price-card__header > span {
  color: var(--landing-green-dark);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

body.landing-home .landing-price-card__header h3 {
  margin: 14px 0 9px;
  font-size: 1.55rem;
}

body.landing-home .landing-price-card__header p {
  min-height: 52px;
  margin: 0;
  color: var(--landing-muted);
  font-size: 0.88rem;
  line-height: 1.55;
}

body.landing-home .landing-price-card__price {
  display: flex;
  margin: 28px 0 5px;
  align-items: baseline;
  gap: 9px;
}

body.landing-home .landing-price-card__price strong {
  color: var(--landing-ink);
  font-size: 2.45rem;
  letter-spacing: -0.055em;
  line-height: 1;
}

body.landing-home .landing-price-card__price span,
body.landing-home .landing-price-card__billing {
  color: var(--landing-muted);
  font-size: 0.78rem;
}

body.landing-home .landing-price-card__billing {
  margin: 4px 0 7px;
  min-height: 43px;
  line-height: 1.5;
}

body.landing-home .landing-price-card ul {
  margin: 24px 0 29px;
}

body.landing-home .landing-price-card .btn {
  margin-top: auto;
}

body.landing-home .landing-price-card__link {
  margin-top: 16px;
  align-self: center;
  font-size: 0.76rem;
}

body.landing-home .assisted-start {
  display: flex;
  max-width: 920px;
  margin: 24px auto 0;
  padding: 24px 28px;
  border: 1px solid var(--landing-line);
  border-radius: 16px;
  background: var(--landing-warm);
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

body.landing-home .assisted-start div {
  display: flex;
  flex-direction: column;
}

body.landing-home .assisted-start strong {
  color: var(--landing-ink);
  font-size: 0.9rem;
}

body.landing-home .assisted-start span {
  margin-top: 4px;
  color: var(--landing-muted);
  font-size: 0.78rem;
}

body.landing-home .pricing-note {
  max-width: 820px;
  margin: 22px auto 0;
  color: #52645a;
  font-size: 0.82rem;
  line-height: 1.55;
  text-align: center;
}

/* FAQ */
body.landing-home .landing-faq {
  padding: 88px 0;
}

body.landing-home .faq-list-v2 {
  max-width: 820px;
  margin: 0 auto;
  border-top: 1px solid var(--landing-line);
}

body.landing-home .faq-list-v2 details {
  border-bottom: 1px solid var(--landing-line);
}

body.landing-home .faq-list-v2 summary {
  position: relative;
  padding: 24px 44px 24px 0;
  color: var(--landing-ink);
  font-weight: 750;
  list-style: none;
}

body.landing-home .faq-list-v2 summary::-webkit-details-marker {
  display: none;
}

body.landing-home .faq-list-v2 summary::after {
  position: absolute;
  top: 21px;
  right: 2px;
  display: grid;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  content: "+";
  color: var(--landing-green-dark);
  background: var(--landing-green-soft);
  place-items: center;
  font-size: 1.1rem;
}

body.landing-home .faq-list-v2 details[open] summary::after {
  content: "−";
}

body.landing-home .faq-list-v2 p {
  max-width: 690px;
  margin: -4px 0 25px;
  color: var(--landing-muted);
  font-size: 0.93rem;
  line-height: 1.7;
}

/* Demo request */
body.landing-home .landing-demo {
  padding: 104px 0;
  color: #fff;
  background:
    radial-gradient(circle at 12% 10%, rgba(114, 223, 164, 0.13), transparent 32%),
    var(--landing-navy);
}

body.landing-home .final-demo__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(440px, 1fr);
  align-items: center;
  gap: 82px;
}

body.landing-home .landing-demo .section-kicker {
  color: #72dfa4;
}

body.landing-home .landing-demo h2 {
  color: #fff;
}

body.landing-home .final-demo__copy > p {
  color: #bdcdc5;
}

body.landing-home .final-demo__points {
  display: grid;
  margin-top: 32px;
  gap: 12px;
}

body.landing-home .final-demo__points span {
  position: relative;
  padding-left: 27px;
  color: #dce8e2;
  font-size: 0.88rem;
}

body.landing-home .final-demo__points span::before {
  position: absolute;
  left: 0;
  content: "✓";
  color: #72dfa4;
  font-weight: 900;
}

body.landing-home .demo-form-card {
  padding: clamp(28px, 4vw, 42px);
  border-radius: 20px;
  color: var(--landing-ink);
  background: #fff;
  box-shadow: 0 32px 70px rgba(0, 0, 0, 0.2);
}

body.landing-home .beratung-form .form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

body.landing-home .beratung-form .form-group {
  display: block;
  margin-bottom: 16px;
  justify-content: initial;
}

body.landing-home .beratung-form label {
  display: block;
  margin-bottom: 7px;
  color: #33473c;
  font-size: 0.76rem;
  font-weight: 750;
}

body.landing-home .beratung-form input,
body.landing-home .beratung-form textarea {
  width: 100%;
  max-width: none;
  flex: none;
  padding: 12px 13px;
  border: 1px solid #cedbd3;
  border-radius: 10px;
  color: var(--landing-ink);
  background: #fbfdfb;
  font: inherit;
  font-size: 0.9rem;
  outline: none;
  transition: border-color 150ms ease, box-shadow 150ms ease;
}

body.landing-home .beratung-form textarea {
  min-height: 90px;
  resize: vertical;
}

body.landing-home .beratung-form input:focus,
body.landing-home .beratung-form textarea:focus {
  border-color: var(--landing-green);
  box-shadow: 0 0 0 3px rgba(13, 159, 86, 0.12);
}

body.landing-home .beratung-form input:invalid:not(:placeholder-shown),
body.landing-home .beratung-form input:valid:not(:placeholder-shown) {
  border-color: #cedbd3;
}

body.landing-home .beratung-form input:user-invalid {
  border-color: #c73737;
}

body.landing-home .beratung-form button:disabled {
  opacity: 0.62;
  transform: none;
}

body.landing-home .privacy-note {
  margin: 12px 0 0;
  color: #52645a;
  font-size: 0.82rem;
  line-height: 1.5;
  text-align: center;
}

body.landing-home .landing-form-status {
  display: none;
  margin: 14px 0 0;
  padding: 11px 12px;
  border-radius: 9px;
  font-size: 0.78rem;
  line-height: 1.45;
}

body.landing-home .landing-form-status.is-success,
body.landing-home .landing-form-status.is-error {
  display: block;
}

body.landing-home .landing-form-status.is-success {
  color: #076437;
  background: #e6f7ee;
}

body.landing-home .landing-form-status.is-error {
  color: #9f2525;
  background: #fff0f0;
}

body.landing-home .landing-honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

/* Footer */
body.landing-home .landing-footer {
  padding: 62px 0 26px;
  background: #091a12;
}

body.landing-home .landing-footer__grid {
  display: grid;
  padding-bottom: 45px;
  grid-template-columns: minmax(220px, 0.8fr) minmax(0, 1.4fr);
  gap: 70px;
}

body.landing-home .landing-brand--footer {
  color: #fff;
}

body.landing-home .landing-brand--footer img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

body.landing-home .landing-footer__brand p {
  max-width: 310px;
  margin: 19px 0 0;
  color: #9db0a6;
  font-size: 0.84rem;
  line-height: 1.65;
}

body.landing-home .landing-footer__links {
  display: grid;
  grid-template-columns: 0.75fr 0.8fr 1.25fr;
  gap: 35px;
}

body.landing-home .landing-footer__links > div {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: flex-start;
}

body.landing-home .landing-footer__links strong {
  margin-bottom: 13px;
  color: #fff;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

body.landing-home .landing-footer__links a,
body.landing-home .landing-footer__links span {
  margin: 4px 0;
  color: #9db0a6;
  font-size: 0.78rem;
  line-height: 1.55;
  overflow-wrap: anywhere;
  text-decoration: none;
}

body.landing-home .landing-footer__links a:hover {
  color: #72dfa4;
}

body.landing-home .footer-bottom {
  display: flex;
  padding-top: 24px;
  border-top-color: rgba(255, 255, 255, 0.1);
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

body.landing-home .footer-copyright p {
  margin: 0;
  color: #7f9389;
  font-size: 0.72rem;
}

body.landing-home .footer-certifications {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

body.landing-home .cert-badge {
  padding: 5px 8px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 6px;
  color: #9db0a6;
  background: transparent;
  font-size: 0.72rem;
}

body.landing-home .footer-consent-button {
  padding: 5px 8px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 6px;
  color: #9db0a6;
  background: transparent;
  font: inherit;
  font-size: 0.72rem;
}

body.landing-home .footer-consent-button:hover,
body.landing-home .footer-consent-button:focus-visible {
  color: #72dfa4;
  border-color: rgba(114, 223, 164, 0.55);
}

body.landing-home .analytics-consent {
  position: relative;
  display: flex;
  width: min(900px, calc(100% - 48px));
  margin: 30px auto;
  padding: 19px 20px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  color: #fff;
  background: #10271d;
  box-shadow: 0 16px 38px rgba(16, 39, 29, 0.16);
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

body.landing-home .analytics-consent[hidden] {
  display: none;
}

body.landing-home .analytics-consent > div:first-child {
  max-width: 560px;
}

body.landing-home .analytics-consent strong {
  display: block;
  margin-bottom: 4px;
  color: #fff;
  font-size: 0.88rem;
}

body.landing-home .analytics-consent p {
  margin: 0;
  color: #c3d1ca;
  font-size: 0.72rem;
  line-height: 1.55;
}

body.landing-home .analytics-consent__actions {
  display: flex;
  flex: 0 0 auto;
  gap: 9px;
}

body.landing-home .analytics-consent .btn {
  min-height: 42px;
  padding: 10px 13px;
  font-size: 0.75rem;
}

body.landing-home .analytics-consent .btn-outline {
  border-color: rgba(255, 255, 255, 0.55);
  color: #fff;
}

body.landing-home .back-to-top {
  border: 1px solid rgba(255, 255, 255, 0.7);
  background: var(--landing-green);
}

/* Restore familiar system cursors; the previous football cursor distracted from CTAs. */
@media (pointer: fine) {
  body.landing-home {
    cursor: auto;
  }

  body.landing-home a,
  body.landing-home button,
  body.landing-home summary,
  body.landing-home [role="button"],
  body.landing-home .back-to-top {
    cursor: pointer;
  }

  body.landing-home input,
  body.landing-home textarea {
    cursor: text;
  }
}

@media (max-width: 1180px) {
  body.landing-home .landing-hero__grid {
    grid-template-columns: minmax(0, 0.92fr) minmax(460px, 1.08fr);
    gap: 45px;
  }

  body.landing-home .preview-callout--top {
    right: -12px;
  }

  body.landing-home .preview-callout--bottom {
    left: -12px;
  }
}

@media (max-width: 980px) {
  body.landing-home .landing-nav {
    height: 70px;
  }

  body.landing-home .nav-menu {
    position: fixed;
    z-index: 999;
    top: 70px;
    right: 0;
    left: 0;
    display: flex;
    max-height: 0;
    padding: 0 24px;
    overflow: hidden;
    border-bottom: 1px solid var(--landing-line);
    background: #fff;
    opacity: 0;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    pointer-events: none;
    transition: max-height 250ms ease, opacity 180ms ease, padding 250ms ease;
  }

  body.landing-home .nav-menu.active {
    max-height: 560px;
    padding: 14px 24px 24px;
    opacity: 1;
    pointer-events: auto;
  }

  body.landing-home .nav-menu .nav-link {
    padding: 12px 0;
    border-bottom: 1px solid #edf2ef;
  }

  body.landing-home .nav-menu .nav-login--menu {
    display: none;
  }

  body.landing-home .nav-menu .nav-cta {
    margin-top: 14px;
    text-align: center;
  }

  body.landing-home .nav-mobile-actions {
    display: flex;
    align-items: center;
    gap: 14px;
  }

  body.landing-home .nav-login--inline {
    display: block;
  }

  body.landing-home .hamburger {
    display: flex;
    justify-content: center;
  }

  body.landing-home .landing-hero {
    padding: 124px 0 76px;
  }

  body.landing-home .landing-hero__grid,
  body.landing-home .product-workflow__grid,
  body.landing-home .final-demo__grid {
    grid-template-columns: 1fr;
  }

  body.landing-home .landing-hero__grid {
    gap: 58px;
  }

  body.landing-home .landing-hero__copy {
    max-width: 750px;
  }

  body.landing-home .product-preview {
    width: min(100%, 700px);
    margin: 0 auto;
    transform: none;
  }

  body.landing-home .clarity-strip .container {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  body.landing-home .clarity-strip__intro h2 {
    max-width: 620px;
  }

  body.landing-home .product-workflow__grid {
    gap: 55px;
  }

  body.landing-home .product-workflow__copy {
    max-width: 720px;
  }

  body.landing-home .case-study__card {
    grid-template-columns: 0.6fr 1.4fr;
  }

  body.landing-home .case-study__results {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }

  body.landing-home .case-study__results > a {
    grid-column: 1 / -1;
  }

  body.landing-home .final-demo__grid {
    gap: 45px;
  }

  body.landing-home .final-demo__copy {
    max-width: 680px;
  }

  body.landing-home .demo-form-card {
    max-width: 680px;
  }
}

@media (max-width: 760px) {
  body.landing-home .container {
    width: min(100% - 32px, 1180px);
  }

  body.landing-home section {
    scroll-margin-top: 74px;
  }

  body.landing-home .landing-brand .logo {
    width: 38px;
    height: 38px;
  }

  body.landing-home .landing-brand__text {
    font-size: 1.02rem;
  }

  body.landing-home .landing-hero {
    padding: 110px 0 65px;
  }

  body.landing-home .landing-hero h1 {
    font-size: clamp(2.45rem, 11vw, 3.6rem);
  }

  body.landing-home .landing-hero__subtitle {
    font-size: 1rem;
  }

  body.landing-home .landing-hero__actions {
    align-items: stretch;
    flex-direction: column;
    gap: 15px;
  }

  body.landing-home .landing-hero__actions .btn,
  body.landing-home .landing-hero__actions .landing-text-link {
    justify-content: center;
    text-align: center;
  }

  body.landing-home .landing-hero__proof {
    align-items: flex-start;
    flex-direction: column;
    gap: 15px;
  }

  body.landing-home .landing-press-link {
    padding: 15px 0 0;
    border-top: 1px solid var(--landing-line);
    border-left: 0;
  }

  body.landing-home .product-preview__body {
    min-height: 350px;
    grid-template-columns: 38px 1fr;
  }

  body.landing-home .product-preview__content {
    padding: 18px 14px 20px;
  }

  body.landing-home .product-preview__headline > span,
  body.landing-home .preview-callout,
  body.landing-home .product-preview__sidebar span:nth-child(n+4) {
    display: none;
  }

  body.landing-home .product-metrics article {
    padding: 9px 7px;
  }

  body.landing-home .metric-icon {
    width: 24px;
    height: 24px;
  }

  body.landing-home .player-row {
    grid-template-columns: 27px 71px 1fr 28px;
  }

  body.landing-home .audience-paths,
  body.landing-home .product-workflow,
  body.landing-home .landing-pricing,
  body.landing-home .landing-faq,
  body.landing-home .landing-demo {
    padding: 66px 0;
  }

  body.landing-home .landing-section-heading {
    margin-bottom: 34px;
  }

  body.landing-home .audience-paths__grid,
  body.landing-home .landing-pricing__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  body.landing-home .audience-card {
    min-height: 0;
  }

  body.landing-home .clarity-strip {
    padding: 74px 0;
  }

  body.landing-home .clarity-strip__items {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  body.landing-home .product-gallery {
    display: flex;
    margin-inline: -16px;
    padding: 4px 16px 18px;
    overflow-x: auto;
    gap: 14px;
    scroll-padding-inline: 16px;
    scroll-snap-type: x mandatory;
  }

  body.landing-home .product-gallery__main {
    grid-column: auto;
  }

  body.landing-home .product-gallery figure {
    flex: 0 0 min(86vw, 440px);
    scroll-snap-align: start;
  }

  body.landing-home .product-gallery figcaption {
    align-items: flex-start;
    flex-direction: column;
    gap: 3px;
  }

  body.landing-home .product-gallery figcaption span {
    text-align: left;
  }

  body.landing-home .case-study {
    padding: 76px 0;
  }

  body.landing-home .case-study__card {
    grid-template-columns: 1fr;
  }

  body.landing-home .case-study__identity {
    align-items: center;
    flex-direction: row;
  }

  body.landing-home .case-study__quote {
    padding: 28px 0;
    border-block: 1px solid rgba(255, 255, 255, 0.14);
    border-inline: 0;
  }

  body.landing-home .case-study__results {
    display: flex;
  }

  body.landing-home .landing-price-card {
    padding: 29px 25px;
  }

  body.landing-home .landing-price-card__header p {
    min-height: 0;
  }

  body.landing-home .assisted-start {
    align-items: stretch;
    flex-direction: column;
  }

  body.landing-home .assisted-start .btn {
    text-align: center;
  }

  body.landing-home .landing-footer__grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  body.landing-home .landing-footer__links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px 20px;
  }

  body.landing-home .landing-footer__links > div:last-child {
    grid-column: 1 / -1;
  }

  body.landing-home .analytics-consent {
    width: calc(100% - 26px);
    margin: 18px auto;
    padding: 17px;
    align-items: stretch;
    flex-direction: column;
    gap: 14px;
  }

  body.landing-home .analytics-consent__actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 520px) {
  body.landing-home .container {
    width: min(100% - 26px, 1180px);
  }

  body.landing-home .nav-login--inline {
    font-size: 0.82rem;
  }

  body.landing-home .landing-hero h1 {
    font-size: 2.35rem;
  }

  body.landing-home .product-preview__bar {
    grid-template-columns: 1fr auto;
  }

  body.landing-home .product-preview__bar > strong {
    display: none;
  }

  body.landing-home .product-metrics {
    grid-template-columns: 1fr 1fr;
  }

  body.landing-home .product-metrics article:last-child {
    display: none;
  }

  body.landing-home .player-row {
    grid-template-columns: 27px 70px 1fr;
  }

  body.landing-home .player-row b {
    display: none;
  }

  body.landing-home .audience-card {
    padding: 28px 23px;
  }

  body.landing-home .audience-card__footer {
    align-items: stretch;
    flex-direction: column;
  }

  body.landing-home .audience-card__footer .btn {
    width: 100%;
    text-align: center;
  }

  body.landing-home .beratung-form .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  body.landing-home .demo-form-card {
    padding: 25px 20px;
  }

  body.landing-home .landing-footer__links {
    grid-template-columns: 1fr;
  }

  body.landing-home .landing-footer__links > div:last-child {
    grid-column: auto;
  }

  body.landing-home .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  body.landing-home .footer-certifications {
    justify-content: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  body.landing-home *,
  body.landing-home *::before,
  body.landing-home *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
