/* GOODFEEL — Landingpage Styles (vanilla CSS, no framework)
   Note: this file assumes tokens.css is linked separately, before this one, in the page
   <head> — @import was deliberately avoided here for load reliability and performance. */

/* ---------- Layout helpers ---------- */
.container {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: 20px;
}
@media (min-width: 768px) {
  .container {
    padding-inline: 40px;
  }
}
.container-narrow {
  max-width: var(--max-w-narrow);
  margin-inline: auto;
  padding-inline: 20px;
}

.section {
  position: relative;
  padding-block: var(--space-section);
  padding-inline: 20px;
  overflow: hidden;
}
@media (min-width: 768px) {
  .section {
    padding-inline: 40px;
  }
}
.section--soft {
  background: linear-gradient(160deg, #f5f3ee 0%, #e8e4dc 45%, #f0eee6 100%);
  background-size: 200% 200%;
  animation: bg-shift 18s ease infinite;
}
@media (prefers-reduced-motion: reduce) {
  .section--soft {
    animation: none;
  }
}
@keyframes bg-shift {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

.eyebrow {
  display: block;
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--sage-dark);
  margin-bottom: 16px;
}

.blob {
  position: absolute;
  border-radius: 50%;
  background: var(--sage);
  filter: blur(110px);
  opacity: 0.18;
  pointer-events: none;
  z-index: 0;
}

/* ---------- Typography ---------- */
h1,
h2,
h3 {
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.08;
  margin: 0;
}
h1 {
  font-size: clamp(34px, 6.2vw, 72px);
}
h2 {
  font-size: clamp(30px, 5.4vw, 60px);
}
h3 {
  font-size: clamp(20px, 2.6vw, 26px);
  font-weight: 800;
}
.h-center {
  text-align: center;
}
.lede {
  font-size: clamp(17px, 1.6vw, 21px);
  color: var(--ink-60);
  line-height: 1.6;
}
.lede-center {
  text-align: center;
  max-width: 680px;
  margin-inline: auto;
}
.text-gradient {
  background: linear-gradient(120deg, #121314 0%, #5f7358 40%, #8ca184 60%, #121314 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: text-shine 6s linear infinite;
}
@media (prefers-reduced-motion: reduce) {
  .text-gradient {
    animation: none;
  }
}
@keyframes text-shine {
  to {
    background-position: 200% center;
  }
}
.text-sage-dark {
  color: var(--sage-dark);
}
.text-muted {
  color: var(--ink-60);
}
.text-faint {
  color: var(--ink-40);
}

/* ---------- Buttons & links ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: var(--radius-full);
  font-weight: 700;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s ease, background 0.3s ease;
}
.btn-primary {
  background: linear-gradient(135deg, var(--sage), var(--sage-dark));
  color: var(--ivory);
  padding: 20px 40px;
  font-size: 17px;
  box-shadow: 0 8px 22px rgba(95, 115, 88, 0.22);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(95, 115, 88, 0.32);
}
.btn-primary .arrow {
  transition: transform 0.3s ease;
}
.btn-primary:hover .arrow {
  transform: translateX(4px);
}
.btn-secondary {
  background: #fff;
  color: var(--ink);
  border: 1.5px solid var(--sage-30);
  padding: 18px 36px;
  font-size: 16px;
}
.btn-secondary:hover {
  border-color: var(--sage-dark);
  color: var(--sage-dark);
}
.btn-block {
  width: 100%;
}
@media (min-width: 640px) {
  .btn-block {
    width: auto;
  }
}
.btn-sm {
  padding: 13px 26px;
  font-size: 14px;
}
.link-underline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 14px;
  border-bottom: 1px solid var(--sage);
  padding-bottom: 3px;
  text-decoration: none;
  transition: color 0.25s ease, border-color 0.25s ease;
}
.link-underline:hover {
  color: var(--sage-dark);
  border-color: var(--sage-dark);
}
.link-ghost {
  color: var(--ink-40);
  text-decoration: none;
  transition: color 0.25s ease;
}
.link-ghost:hover {
  color: var(--sage-dark);
}

.cta-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin-top: 40px;
}
@media (min-width: 640px) {
  .cta-row {
    flex-direction: row;
    justify-content: center;
  }
}

/* ---------- Reveal on scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ---------- Top bar ---------- */
.topbar {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  background: rgba(245, 243, 238, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--sage-20);
}
.topbar__inner {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: 20px;
  height: 64px;
  display: flex;
  align-items: center;
  gap: 10px;
}
@media (min-width: 768px) {
  .topbar__inner {
    padding-inline: 40px;
  }
}
.topbar img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
}
.topbar span {
  font-weight: 900;
  letter-spacing: -0.01em;
  font-size: 14px;
}

/* ---------- Hero ---------- */
.hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: 100px;
  padding-bottom: 60px;
}
.hero__bgvideo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
  z-index: 0;
}
.hero__scrim {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(180deg, rgba(245, 243, 238, 0.55) 0%, rgba(245, 243, 238, 0.78) 45%, rgba(245, 243, 238, 0.55) 100%);
}
.hero__content {
  position: relative;
  z-index: 1;
  max-width: 880px;
  margin-inline: auto;
  width: 100%;
}
.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 18px;
  border-radius: var(--radius-full);
  border: 1px solid var(--sage-30);
  background: rgba(255, 255, 255, 0.5);
  font-size: 13px;
  font-weight: 600;
  color: var(--sage-dark);
}
.badge-pill__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--sage);
}
.hero h1 {
  text-align: center;
  margin-block: 28px;
}
.hero .lede {
  max-width: 640px;
  margin-inline: auto;
  margin-bottom: 44px;
}
.hero-secondary {
  display: block;
  text-align: center;
  margin-top: 18px;
  font-size: 14px;
}

/* ---------- Marquee ---------- */
.marquee {
  border-block: 1px solid var(--sage-20);
  padding-block: 22px;
  overflow: hidden;
  background: var(--ivory);
}
.marquee__track {
  display: flex;
  width: max-content;
  animation: marquee 42s linear infinite;
}
@media (prefers-reduced-motion: reduce) {
  .marquee__track {
    animation: none;
  }
}
@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}
.marquee__group {
  display: flex;
  align-items: center;
  gap: 44px;
  padding-inline: 22px;
  white-space: nowrap;
  font-weight: 900;
  font-size: clamp(20px, 3vw, 28px);
  letter-spacing: -0.01em;
  color: var(--ink-25);
}
.marquee__group span.star {
  color: var(--sage);
  opacity: 0.6;
  font-size: 13px;
}

/* ---------- Wiedererkennung grid ---------- */
.recognize-grid {
  display: grid;
  gap: 44px;
  margin-top: 72px;
}
@media (min-width: 768px) {
  .recognize-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
  }
}
.recognize-card {
  border-top: 1px solid var(--sage-30);
  padding-top: 28px;
}
.recognize-card .kicker {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sage-dark);
  margin-bottom: 12px;
}
.recognize-card h3 {
  margin-bottom: 14px;
  line-height: 1.3;
}
.recognize-card p {
  font-size: 14px;
  color: var(--ink-60);
  line-height: 1.7;
}

/* ---------- Split (image + text) ---------- */
.split {
  display: grid;
  gap: 44px;
  align-items: center;
  position: relative;
  z-index: 1;
}
@media (min-width: 768px) {
  .split {
    grid-template-columns: 1fr 1fr;
    gap: 64px;
  }
  .split--reverse .split__media {
    order: 2;
  }
}
.video-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  aspect-ratio: 4 / 3;
  background: var(--stone);
}
.video-frame video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.video-frame--portrait {
  aspect-ratio: 4 / 5;
}
.split__eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--sage-dark);
  margin-bottom: 14px;
}
.split p {
  font-size: 17px;
  color: var(--ink-60);
  line-height: 1.7;
  margin-bottom: 18px;
}
.split strong {
  color: var(--ink);
}
.split-people {
  display: flex;
  gap: 28px;
  margin-top: 28px;
}
.split-people figure {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
}
.split-people img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
}
.split-people figcaption {
  font-weight: 900;
}

/* ---------- Conflict section ---------- */
.conflict-grid {
  display: grid;
  gap: 16px;
  margin-top: 56px;
}
@media (min-width: 640px) {
  .conflict-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }
}
.conflict-pair {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 26px 20px;
  border-radius: var(--radius-md);
  background: #fff;
  border: 1px solid var(--sage-20);
  font-weight: 800;
  font-size: clamp(15px, 2vw, 18px);
  text-align: center;
}
.conflict-pair .or {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--champagne);
  background: var(--ink);
  border-radius: var(--radius-full);
  padding: 4px 10px;
}
.conflict-flip {
  text-align: center;
  max-width: 640px;
  margin: 64px auto 0;
  font-size: clamp(20px, 3vw, 30px);
  font-weight: 800;
  line-height: 1.5;
}
.conflict-flip em {
  font-style: normal;
  color: var(--sage-dark);
}

/* ---------- Pillar cards (80/20-Code) ---------- */
.pillar-grid {
  display: grid;
  gap: 24px;
  margin-block: 56px;
}
@media (min-width: 768px) {
  .pillar-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.pillar-card {
  background: linear-gradient(160deg, #fbfaf7 0%, #f0ede5 100%);
  border: 1px solid var(--sage-20);
  box-shadow: 0 20px 45px rgba(20, 18, 15, 0.06);
  border-radius: var(--radius-lg);
  padding: 40px;
}
.glyph-circle {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 28%, #fff 0%, #fbfaf7 70%, #f3efe7 100%);
  box-shadow: inset 0 0 0 4px var(--champagne), inset 0 0 0 5px rgba(255, 255, 255, 0.5), inset 0 2px 3px rgba(255, 255, 255, 0.6),
    inset 0 -2px 4px rgba(150, 120, 60, 0.15), 0 10px 22px rgba(95, 115, 88, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  overflow: hidden;
}
.glyph-circle img {
  width: 56px;
  height: 56px;
  object-fit: contain;
}
.pillar-card h3 {
  margin-bottom: 4px;
}
.pillar-card .pillar-sub {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sage-dark);
  margin-bottom: 22px;
}
.pillar-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 14px;
  color: var(--ink-60);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pillar-card li::before {
  content: "→ ";
  color: var(--sage-dark);
}

/* ---------- Big statement / result moment ---------- */
.statement {
  text-align: center;
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin-inline: auto;
}
.statement .big-ratio {
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 0.9;
  font-size: clamp(70px, 13vw, 150px);
  margin-block: 8px 20px;
}
.statement .big-ratio .slash {
  color: var(--sage);
}

/* ---------- Levels (Ebenen) ---------- */
.levels {
  display: flex;
  flex-direction: column;
  gap: 88px;
  margin-top: 80px;
}
.level {
  position: relative;
}
.level + .level {
  border-top: 1px solid var(--sage-20);
  padding-top: 64px;
}
.level__num {
  font-size: clamp(70px, 12vw, 120px);
  font-weight: 900;
  color: var(--sage);
  opacity: 0.12;
  line-height: 0.8;
  position: absolute;
  top: -10px;
  left: 0;
  pointer-events: none;
}
.level h3 {
  text-transform: uppercase;
  margin-bottom: 18px;
  position: relative;
}
.level p {
  font-size: 17px;
  color: var(--ink-60);
  line-height: 1.7;
  max-width: 680px;
  margin-bottom: 16px;
}
.level p strong {
  color: var(--ink);
}
.level ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  padding: 0;
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-70);
}
.level li::before {
  content: "→ ";
  color: var(--sage-dark);
}

/* ---------- Experience showcase ---------- */
.experience-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 56px;
}
@media (min-width: 640px) {
  .experience-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.experience-item {
  background: #fff;
  border: 1px solid var(--sage-20);
  border-radius: var(--radius-md);
  padding: 22px 16px;
  text-align: center;
}
.experience-item .glyph {
  font-size: 26px;
  margin-bottom: 10px;
  display: block;
}
.experience-item span.label {
  font-weight: 800;
  font-size: 14px;
  display: block;
}
.experience-feel {
  text-align: center;
  max-width: 560px;
  margin: 48px auto 0;
  color: var(--ink-60);
  font-size: 15px;
  line-height: 1.8;
}

/* ---------- Two paths ---------- */
.paths-grid {
  display: grid;
  gap: 24px;
  margin-top: 56px;
}
@media (min-width: 768px) {
  .paths-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }
}
.path-card {
  background: #fff;
  border: 1px solid var(--sage-20);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 20px 45px rgba(20, 18, 15, 0.05);
}
.path-card--primary {
  border-color: var(--sage);
  background: linear-gradient(160deg, #fbfaf7 0%, #f0ede5 100%);
}
.path-card__tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sage-dark);
  margin-bottom: 14px;
}
.path-card h3 {
  margin-bottom: 14px;
  font-size: clamp(22px, 3vw, 28px);
}
.path-card p {
  color: var(--ink-60);
  line-height: 1.7;
  margin-bottom: 28px;
  flex: 1;
}

/* ---------- Lead form (contact) ---------- */
.form-card {
  background: #fff;
  border: 1px solid var(--sage-20);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  box-shadow: 0 20px 45px rgba(20, 18, 15, 0.06);
}
@media (min-width: 640px) {
  .form-card {
    padding: 48px;
  }
}
.form-grid {
  display: grid;
  gap: 18px;
}
@media (min-width: 640px) {
  .form-row-2 {
    grid-template-columns: 1fr 1fr;
    display: grid;
    gap: 18px;
  }
}
.field label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 7px;
  color: var(--ink-70);
}
.field .req {
  color: var(--sage-dark);
}
.field input,
.field textarea {
  width: 100%;
  padding: 13px 16px;
  border-radius: 12px;
  border: 1.5px solid var(--sage-20);
  background: var(--ivory);
  font: inherit;
  font-size: 15px;
  color: var(--ink);
  transition: border-color 0.2s ease;
}
.field input:focus,
.field textarea:focus {
  border-color: var(--sage-dark);
  outline: none;
}
.field textarea {
  resize: vertical;
  min-height: 96px;
}
.field-error {
  color: #a34a3a;
  font-size: 12.5px;
  margin-top: 6px;
  display: none;
}
.field.has-error input,
.field.has-error textarea {
  border-color: #a34a3a;
}
.field.has-error .field-error {
  display: block;
}
.consent-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--ink-60);
  line-height: 1.5;
}
.consent-row input {
  margin-top: 3px;
  width: 17px;
  height: 17px;
  accent-color: var(--sage-dark);
  flex-shrink: 0;
}
.form-status {
  border-radius: 14px;
  padding: 16px 18px;
  font-size: 14px;
  line-height: 1.6;
  display: none;
}
.form-status.is-visible {
  display: block;
}
.form-status--pending {
  background: var(--stone);
  color: var(--ink-70);
}
.form-status--success {
  background: rgba(140, 161, 132, 0.16);
  color: var(--sage-dark);
}
.form-status--error {
  background: #f8e9e6;
  color: #8a3b2b;
}

/* ---------- FAQ ---------- */
.faq-list {
  border-top: 1px solid var(--sage-20);
  border-bottom: 1px solid var(--sage-20);
}
.faq-item {
  border-bottom: 1px solid var(--sage-20);
}
.faq-item:last-child {
  border-bottom: none;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-block: 26px;
  font-weight: 700;
  font-size: clamp(16px, 2vw, 19px);
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-item .faq-icon {
  flex-shrink: 0;
  font-weight: 300;
  font-size: 24px;
  color: var(--sage-dark);
  transition: transform 0.25s ease;
}
.faq-item[open] .faq-icon {
  transform: rotate(45deg);
}
.faq-item .faq-answer {
  padding-bottom: 26px;
  color: var(--ink-60);
  line-height: 1.7;
  max-width: 640px;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ivory);
  padding-block: 40px;
  border-top: 1px solid var(--sage-20);
}
.site-footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  text-align: center;
}
@media (min-width: 768px) {
  .site-footer .container {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-brand img {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: cover;
}
.footer-brand span {
  font-size: 14px;
  color: var(--ink-50);
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 22px;
  font-size: 14px;
}

/* ---------- Sticky CTA ---------- */
.sticky-cta {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 40;
  opacity: 0;
  transform: translateY(80px);
  pointer-events: none;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease;
}
.sticky-cta.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
@media (min-width: 768px) {
  .sticky-cta {
    left: 50%;
    right: auto;
    transform: translate(-50%, 80px);
  }
  .sticky-cta.is-visible {
    transform: translate(-50%, 0);
  }
}
.sticky-cta .btn-primary {
  box-shadow: 0 16px 34px rgba(20, 18, 15, 0.22);
}

/* ---------- Skip link (a11y) ---------- */
.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  background: var(--ink);
  color: var(--ivory);
  padding: 14px 20px;
  border-radius: 10px;
  z-index: 100;
  font-weight: 700;
}
.skip-link:focus {
  left: 20px;
  top: 20px;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
