:root {
  --bg-main: #ffffff;
  --bg-muted: #f8f9fa;
  --bg-dark: #0f1d33;
  --surface: #ffffff;
  --text-main: #1e293b;
  --text-soft: #475569;
  --line: #e2e8f0;
  --green: #22c55e;
  --teal: #0f766e;
  --gradient: linear-gradient(90deg, #06b6d4 0%, #22c55e 100%);
  --shadow-soft: 0 10px 30px rgba(15, 23, 42, 0.08);
  --radius: 14px;
  --radius-sm: 999px;
  --container: 1140px;
  --container-hero: 1320px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg-main);
  color: var(--text-main);
  font-family: "Manrope", sans-serif;
  line-height: 1.6;
}

p {
  line-height: 1.68;
  letter-spacing: 0.014em;
}

.top-gradient {
  height: 5px;
  width: 100%;
  background: var(--gradient);
}

.container {
  width: min(var(--container), 92%);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.93);
  backdrop-filter: blur(10px);
}

.nav-wrap {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.motion-toggle {
  border: 1px solid #67e8f9;
  background: #ecfeff;
  color: #0f766e;
  border-radius: var(--radius-sm);
  padding: 0.4rem 0.65rem;
  font-weight: 700;
  font-size: 0.8rem;
  cursor: pointer;
}

.motion-toggle[aria-pressed="true"] {
  border-color: #4ade80;
  background: #f0fdf4;
  color: #166534;
}

.brand {
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--text-main);
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-logo {
  width: 30px;
  height: 30px;
  max-width: 30px;
  max-height: 30px;
  object-fit: contain;
  flex-shrink: 0;
  display: block;
}

.brand img.brand-logo {
  width: 30px !important;
  height: 30px !important;
  max-width: 30px !important;
  max-height: 30px !important;
}

.brand-mark {
  font-weight: 800;
  font-size: 1.15rem;
  line-height: 1;
}

.brand-sub {
  font-size: 0.72rem;
  color: var(--text-soft);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-links a {
  color: var(--text-soft);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.93rem;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--teal);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown summary {
  list-style: none;
  color: var(--text-soft);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.93rem;
  cursor: pointer;
  user-select: none;
}

.nav-dropdown summary::-webkit-details-marker {
  display: none;
}

.nav-dropdown summary::after {
  content: "▾";
  margin-left: 0.35rem;
  font-size: 0.8rem;
}

.nav-dropdown[open] summary,
.nav-dropdown summary:hover,
.nav-dropdown summary:focus-visible {
  color: var(--teal);
  outline: none;
}

.nav-dropdown-menu {
  position: absolute;
  right: 0;
  top: calc(100% + 0.6rem);
  min-width: 170px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow-soft);
  padding: 0.35rem;
  display: grid;
  gap: 0.2rem;
  z-index: 30;
}

.nav-dropdown-menu a {
  display: block;
  padding: 0.45rem 0.55rem;
  border-radius: 8px;
  color: var(--text-main);
  font-weight: 600;
  text-decoration: none;
}

.nav-dropdown-menu a:hover,
.nav-dropdown-menu a:focus-visible {
  background: #f0fdfa;
  color: var(--teal);
  outline: none;
}

.section-dark,
.section-light,
.section-white,
.final-cta {
  padding: 6rem 0;
}

.section-dark {
  background:
    radial-gradient(circle at 10% 10%, rgba(6, 182, 212, 0.18), transparent 44%),
    radial-gradient(circle at 90% 90%, rgba(34, 197, 94, 0.16), transparent 40%),
    var(--bg-dark);
  color: #f8fafc;
}

.section-light {
  background: var(--bg-muted);
}

.section-white {
  background: #fff;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.4rem;
  align-items: center;
}

.hero .container {
  width: min(var(--container-hero), 94%);
}

h1,
h2,
h3 {
  margin-top: 0;
  line-height: 1.2;
}

h1 {
  font-size: clamp(2rem, 4vw, 3.6rem);
  font-weight: 800;
  max-width: 17ch;
  margin-bottom: 1rem;
}

.kinetic-title span {
  display: inline-block;
  margin-right: 0.28rem;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 420ms ease, transform 420ms ease, filter 420ms ease;
  filter: blur(3px);
}

.kinetic-title span.word-in {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

h2 {
  font-size: clamp(1.7rem, 2.8vw, 2.7rem);
  font-weight: 800;
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.heading-accent {
  position: relative;
  padding-left: 1rem;
}

.heading-accent::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.2rem;
  bottom: 0.2rem;
  width: 4px;
  border-radius: 99px;
  background: var(--gradient);
}

.eyebrow {
  display: inline-block;
  font-size: 0.77rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--teal);
  margin-bottom: 0.8rem;
}

.section-dark .eyebrow {
  color: #7dd3fc;
}

.lead,
.section-intro {
  color: var(--text-soft);
  max-width: 68ch;
}

.text-accent {
  color: #0f766e;
  font-weight: 700;
}

.section-dark .lead {
  color: #cbd5e1;
}

.hero-image-wrap {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(125, 211, 252, 0.24);
  box-shadow: 0 18px 34px rgba(15, 23, 42, 0.28);
  width: 100%;
  max-width: 920px;
  justify-self: end;
}

@media (min-width: 1280px) {
  .hero-grid {
    grid-template-columns: 0.88fr 1.12fr;
    gap: 2.8rem;
  }

  .hero-image-wrap {
    max-width: 1020px;
  }
}

.hero-image {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.btn-row {
  margin-top: 1.3rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.btn {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  padding: 0.72rem 1rem;
  font-weight: 700;
  font-size: 0.92rem;
  transition: transform 160ms ease, opacity 160ms ease, background-color 160ms ease;
}

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

.btn-solid {
  color: #fff;
  background: var(--gradient);
  border: 1px solid rgba(15, 23, 42, 0.12);
  box-shadow: 0 8px 18px rgba(15, 118, 110, 0.22);
}

.btn-solid:hover {
  opacity: 0.96;
}

.btn-disabled {
  cursor: default;
  opacity: 0.6;
  pointer-events: none;
}

.btn-outline,
.btn-outline-dark {
  border: 1px solid currentColor;
  background: transparent;
}

.btn-outline {
  color: #e2e8f0;
}

.btn-outline-dark {
  color: var(--teal);
}

.btn-ghost {
  margin-top: 1.2rem;
  border: 1px solid var(--line);
  color: var(--text-main);
}

a:focus-visible,
button:focus-visible,
[role="tab"]:focus-visible {
  outline: 3px solid #a855f7;
  outline-offset: 3px;
  border-radius: 10px;
}

.text-link {
  display: inline-block;
  margin-top: 1.2rem;
  color: var(--teal);
  font-weight: 700;
}

.diff-grid {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 1.4rem;
}

.environment-grid {
  margin-top: 1.6rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.environment-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: var(--shadow-soft);
  padding: 1rem;
}

.environment-card ul {
  margin: 0;
  padding-left: 1rem;
}

.buzzword-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.buzz-pill {
  border: 1px solid #bae6fd;
  background: #ecfeff;
  color: #0f766e;
  border-radius: var(--radius-sm);
  padding: 0.35rem 0.68rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.editorial-card,
.card,
.stage-card,
.audience-card,
.stat {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.editorial-card {
  padding: 1.2rem;
}

.editorial-card ul {
  margin: 0.8rem 0 0;
  padding-left: 1.15rem;
}

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

.card {
  padding: 1rem;
}

.bento-value {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-template-areas:
    "one one two"
    "three four four";
}

.bento-one {
  grid-area: one;
}

.bento-two {
  grid-area: two;
}

.bento-three {
  grid-area: three;
}

.bento-four {
  grid-area: four;
}

.bento-value .card {
  border: 1px solid #dbe8f7;
  background: #fff;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.65),
    0 14px 24px rgba(15, 23, 42, 0.12);
}

.path-tabs {
  margin-top: 2rem;
  position: relative;
  display: grid;
  gap: 0.8rem;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  align-items: stretch;
}

.path-tabs::before {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  top: 1.9rem;
  height: 3px;
  border-radius: 999px;
  background: rgba(15, 118, 110, 0.28);
}

.path-tab {
  border: 1px solid #cbd5e1;
  border-radius: 14px;
  padding: 0.55rem 0.6rem 0.7rem;
  background: #fff;
  color: #334155;
  font-weight: 700;
  cursor: pointer;
  transition: transform 140ms ease, box-shadow 160ms ease;
  text-align: left;
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0.2rem;
}

.step-no {
  font-size: 0.72rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #0891b2;
  font-weight: 800;
}

.step-name {
  font-size: 1.02rem;
  line-height: 1.1;
  font-weight: 800;
}

.step-note {
  font-size: 0.77rem;
  color: #64748b;
}

.path-tab::after {
  content: "";
  width: 14px;
  height: 14px;
  border-radius: 999px;
  border: 3px solid #cbd5e1;
  background: #fff;
  position: absolute;
  top: 1.55rem;
  right: -0.48rem;
}

.path-tab:hover,
.path-tab:focus-visible {
  transform: translateY(-2px) scale(1.015);
  box-shadow: 0 12px 20px rgba(15, 23, 42, 0.12);
}

.path-tab.active {
  color: #fff;
  border-color: transparent;
}

.path-tab.active .step-no,
.path-tab.active .step-note {
  color: rgba(240, 249, 255, 0.9);
}

.path-tab:last-child::after {
  display: none;
}

.path-tab.ignite.active {
  background: linear-gradient(125deg, #06b6d4, #0ea5a3);
}

.path-tab.learn.active {
  background: linear-gradient(125deg, #0891b2, #0f766e);
}

.path-tab.apply.active {
  background: linear-gradient(125deg, #0f766e, #16a34a);
}

.path-tab.grow.active {
  background: linear-gradient(125deg, #0b5f63, #15803d);
}

.path-tab.lead.active {
  background: linear-gradient(125deg, #164e63, #0f172a);
}

.path-panels {
  margin-top: 1rem;
}

.path-panel {
  border: 1px solid #d6e0ea;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-soft);
  padding: 1rem 1.1rem;
}

.path-panel-content {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1rem;
  align-items: start;
}

.path-panel h3 {
  margin-bottom: 0.45rem;
}

.path-summary {
  margin: 0 0 0.55rem;
  color: #475569;
}

.path-actions {
  margin-bottom: 0.7rem;
}

.btn-module {
  color: #fff;
  background: #0f766e;
  border: 1px solid #0f766e;
  box-shadow: none;
}

.path-figure {
  margin: 0;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #dbe3ee;
  background: #f8fafc;
  min-height: 240px;
}

.path-image {
  width: 100%;
  height: 100%;
  min-height: 240px;
  object-fit: cover;
  display: block;
}

.path-panel ul {
  margin: 0.6rem 0 0;
  padding-left: 1rem;
}

.path-panel[hidden] {
  display: none;
}

.journey-grid {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.85rem;
}

.stage-card {
  padding: 0;
  overflow: hidden;
  background: #f8fafc;
}

.stage-head {
  color: #fff;
  padding: 1rem 1rem 1.05rem;
  min-height: 190px;
}

.stage-head h3 {
  margin-bottom: 0.45rem;
  font-size: 2rem;
  line-height: 1;
}

.stage-head p {
  margin: 0;
  color: rgba(241, 245, 249, 0.95);
}

.stage-level {
  margin: 0 0 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: rgba(224, 242, 254, 0.92);
  font-weight: 700;
}

.stage-body {
  padding: 1rem 1rem 1.15rem;
}

.stage-body ul {
  margin: 0.9rem 0 0;
  padding-left: 1.05rem;
  color: #475569;
}

.stage-body li {
  margin-bottom: 0.22rem;
}

.stage-card.ignite .stage-head {
  background: linear-gradient(125deg, #06b6d4, #0ea5a3);
}

.stage-card.learn .stage-head {
  background: linear-gradient(125deg, #0891b2, #0f766e);
}

.stage-card.apply .stage-head {
  background: linear-gradient(125deg, #0f766e, #16a34a);
}

.stage-card.grow .stage-head {
  background: linear-gradient(125deg, #0b5f63, #15803d);
}

.stage-card.lead .stage-head {
  background: linear-gradient(125deg, #164e63, #0f172a);
}

.pill {
  margin: 0 0 0.7rem;
  display: inline-block;
  background: #e6fffa;
  color: #115e59;
  border: 1px solid #bae6fd;
  border-radius: var(--radius-sm);
  padding: 0.35rem 0.78rem;
  font-weight: 700;
  font-size: 0.8rem;
}

.audience-grid {
  margin-top: 2rem;
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.audience-card {
  padding: 1.3rem;
}

.audience-card.team {
  background: #fff;
}

.audience-card ul {
  padding-left: 1.1rem;
}

.method-grid {
  margin-top: 1.8rem;
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(2, minmax(320px, 430px));
  justify-content: center;
}

.method-card {
  border: 2px solid #b6d9ee;
  border-radius: var(--radius);
  background: #fff;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.7),
    0 18px 30px rgba(15, 23, 42, 0.14);
  padding: 1.1rem 1.15rem 1.2rem;
  min-height: 480px;
  display: flex;
  flex-direction: column;
  position: relative;
}

.method-card::before {
  content: "";
  position: absolute;
  left: 1rem;
  right: 1rem;
  top: 0.75rem;
  height: 3px;
  border-radius: 99px;
  background: var(--gradient);
}

.method-card.premium {
  border-color: #78d4c4;
}

.split-subtitle {
  margin: 0 0 0.55rem;
  font-size: 1.02rem;
  font-weight: 700;
  color: #115e59;
  background: #ecfeff;
  border-left: 4px solid #14b8a6;
  border-radius: 8px;
  padding: 0.45rem 0.65rem;
}

.split-list {
  margin: 0.85rem 0 1rem;
  padding-left: 0;
  list-style: none;
  color: #475569;
}

.split-list li {
  margin-bottom: 0.45rem;
  border: 1px solid #e2e8f0;
  background: #f8fafc;
  border-radius: 8px;
  padding: 0.38rem 0.55rem;
  display: flex;
  align-items: flex-start;
  gap: 0.45rem;
}

.split-list li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 99px;
  margin-top: 0.44rem;
  background: #0ea5a3;
  flex-shrink: 0;
}

.method-card .btn {
  margin-top: auto;
}

.split-footnote {
  margin: 1.1rem auto 0;
  max-width: 900px;
  border: 1px solid #b6d9ee;
  border-left: 5px solid #06b6d4;
  background: #f0fdfa;
  color: #0f766e;
  border-radius: 8px;
  padding: 0.78rem 0.95rem;
  font-weight: 600;
}

.matrix-list {
  display: grid;
  gap: 0.65rem;
}

.matrix-row {
  display: grid;
  grid-template-columns: auto 1fr minmax(130px, 42%);
  gap: 0.5rem;
  align-items: center;
}

.matrix-icon {
  font-size: 0.9rem;
}

.matrix-icon.low {
  color: #f97316;
}

.matrix-icon.high {
  color: #22c55e;
}

.matrix-row i {
  display: block;
  width: 100%;
  height: 10px;
  border-radius: 999px;
  background: #e2e8f0;
  position: relative;
  overflow: hidden;
}

.matrix-row i::before {
  content: "";
  position: absolute;
  inset: 0;
  width: var(--fill, 50%);
  background: #0f766e;
  border-radius: 999px;
}

.assemble-item {
  opacity: 0.2;
  transform: translateY(26px);
  transition: transform 450ms ease, opacity 450ms ease;
}

.methodology.in-view .assemble-item {
  opacity: 1;
  transform: translateY(0);
}

.method-ctas {
  margin-top: 1.1rem;
}

.stats-row {
  margin-top: 1.8rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.stat {
  padding: 1rem;
  text-align: center;
}

.stat p {
  margin: 0;
}

.stat-value {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
  color: #0f766e;
  margin-bottom: 0.4rem;
}

.trust-pills {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.trust-pills span {
  border: 1px solid #bae6fd;
  background: #ecfeff;
  color: #0f766e;
  border-radius: var(--radius-sm);
  padding: 0.35rem 0.7rem;
  font-weight: 600;
  font-size: 0.85rem;
}

.final-cta {
  background:
    radial-gradient(circle at 10% 80%, rgba(6, 182, 212, 0.28), transparent 34%),
    radial-gradient(circle at 90% 20%, rgba(34, 197, 94, 0.2), transparent 32%),
    #0f172a;
  color: #f8fafc;
}

.final-cta h2 {
  max-width: 18ch;
}

.final-cta p {
  color: #cbd5e1;
}

.final-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.site-footer {
  border-top: 1px solid #1e293b;
  background: #0f172a;
}

.site-footer .container {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.site-footer p {
  margin: 0;
  color: #cbd5e1;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.footer-links a {
  color: #67e8f9;
  text-decoration: none;
  font-weight: 700;
}

.footer-brand-logo {
  height: 52px;
  width: auto;
  object-fit: contain;
}

.imprint-main {
  padding: 4rem 0;
}

.imprint-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: var(--shadow-soft);
  padding: 1.4rem;
}

.imprint-card h2 {
  font-size: 1.25rem;
  margin-bottom: 0.6rem;
}

.imprint-card p {
  margin: 0 0 1rem;
  color: var(--text-main);
}

.global-faq-list {
  margin-top: 1.2rem;
  display: grid;
  gap: 0.7rem;
}

.global-faq-list details {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  padding: 0.8rem;
}

.global-faq-list summary {
  cursor: pointer;
  font-weight: 700;
}

.global-faq-list p {
  margin: 0.55rem 0 0;
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 450ms ease, transform 450ms ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1100px) {
  .bento-value {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-areas:
      "one two"
      "three four";
  }

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

  .path-tabs {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .path-tabs::before {
    display: none;
  }

  .path-tab::after {
    display: none;
  }
}

@media (max-width: 900px) {
  .site-header {
    position: static;
  }

  .nav-links {
    display: none;
  }

  .hero-grid,
  .diff-grid,
  .audience-grid,
  .method-grid,
  .path-panel-content,
  .stats-row,
  .final-cta-inner {
    grid-template-columns: 1fr;
    display: grid;
  }

  .hero-image-wrap {
    max-width: 100%;
    justify-self: stretch;
  }

  .section-dark,
  .section-light,
  .section-white,
  .final-cta {
    padding: 4.5rem 0;
  }
}

@media (max-width: 640px) {
  .path-tabs {
    grid-template-columns: 1fr;
  }

  .btn-row {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  .site-footer .container {
    min-height: auto;
    padding: 1rem 0;
    flex-direction: column;
    align-items: flex-start;
  }
}

body[data-reduce-motion="true"] *,
body[data-reduce-motion="true"] *::before,
body[data-reduce-motion="true"] *::after {
  animation: none !important;
  transition: none !important;
  scroll-behavior: auto !important;
}

body[data-reduce-motion="true"] .reveal {
  opacity: 1 !important;
  transform: none !important;
}

body[data-reduce-motion="true"] .assemble-item {
  opacity: 1 !important;
  transform: none !important;
}
