* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  background: #000;
  color: #fff;
  font-family: Georgia, "Times New Roman", Times, serif;
}

.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
  text-align: center;
  padding: max(64px, 7vh) 24px 48px;
}

.hero__top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.hero__logo-art {
  width: min(30vw, 200px);
  height: auto;
  filter: invert(1);
}

.hero__logo {
  width: min(80vw, 680px);
  height: auto;
  filter: invert(1);
}

.hero__subtitle {
  font-family: "GFS Didot", Didot, Georgia, serif;
  font-size: clamp(0.63rem, 1.08vw, 0.77rem);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0.5;
}

.hero__heading {
  font-family: "GFS Didot", Didot, Georgia, serif;
  font-size: clamp(0.88rem, 1.64vw, 1.26rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.5;
  max-width: 860px;
}

.hero__problem-sub {
  font-size: clamp(0.81rem, 1.44vw, 0.99rem);
  opacity: 0.55;
  font-style: italic;
  margin-top: 10px;
}

.hero__stat {
  font-size: clamp(0.81rem, 1.44vw, 0.99rem);
  opacity: 0.65;
  margin-top: 10px;
}

.details {
  min-height: 100vh;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 32px;
  align-items: start;
  align-content: center;
  padding: 64px 10vw;
}

.details__text {
  font-size: clamp(0.99rem, 1.98vw, 1.44rem);
  line-height: 1.6;
  max-width: 40ch;
  font-weight: 400;
}

.details__text p + p {
  margin-top: 18px;
}

.details__heading {
  font-size: clamp(1.26rem, 2.34vw, 1.8rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 12px;
  font-family: "GFS Didot", Didot, Georgia, serif;
}

.details__contact {
  text-align: left;
  line-height: 1.6;
}

.details__title {
  font-size: clamp(1.26rem, 2.34vw, 1.8rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 12px;
  font-family: "GFS Didot", Didot, Georgia, serif;
}

.details__email {
  display: inline-block;
  color: #fff;
  text-decoration: none;
  font-size: clamp(0.99rem, 1.98vw, 1.44rem);
  letter-spacing: 0.04em;
  border-bottom: 1px solid rgba(255, 255, 255, 0.6);
  padding-bottom: 4px;
}

.details__email:hover,
.details__email:focus-visible {
  border-bottom-color: #fff;
}


.scroll-indicator {
  position: fixed;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 16px solid transparent;
  border-right: 16px solid transparent;
  border-top: 20px solid #fff;
  animation: blink 2s ease-in-out infinite;
  transition: opacity 0.2s ease;
}

.scroll-indicator.is-hidden {
  opacity: 0;
  animation: none;
  pointer-events: none;
}

@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.25;
  }
}

@media (prefers-reduced-motion: reduce) {
  .scroll-indicator {
    animation: none;
    opacity: 1;
  }
}

/* ── Navigation ── */

.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 32px;
  padding: 0 32px;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.site-nav__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-right: auto;
  text-decoration: none;
  padding: 12px 0;
}

.site-nav__brand--home {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.site-nav__brand--home.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.site-nav__brand-art {
  height: 2.2rem;
  width: auto;
  filter: invert(1);
}

.site-nav__brand-name {
  height: 1.2rem;
  width: auto;
  filter: invert(1);
}

.site-nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.site-nav__hamburger {
  display: none;
}

.site-nav__link {
  color: #fff;
  font-family: "GFS Didot", Didot, Georgia, serif;
  font-size: 0.81rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 4px;
  padding: 24px 0;
  transition: text-decoration-color 0.2s ease;
}

.site-nav__link:hover,
.site-nav__link:focus-visible {
  text-decoration-color: #fff;
}

.lang-switch {
  display: flex;
  align-items: center;
  font-family: "GFS Didot", Didot, Georgia, serif;
  font-size: 0.81rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 24px 0;
}

.lang-switch__option {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.35);
  font: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
  cursor: pointer;
  padding: 0 2px 2px;
  border-bottom: 1px solid transparent;
  transition: color 0.2s ease, border-bottom-color 0.2s ease;
}

.lang-switch__option:hover {
  color: rgba(255, 255, 255, 0.7);
}

.lang-switch__option.is-active {
  color: #fff;
  cursor: default;
}

.lang-switch__sep {
  color: rgba(255, 255, 255, 0.25);
  margin: 0 4px;
  user-select: none;
}

/* ── Language visibility ── */

[data-lang] {
  display: none;
}

html.lang-en [data-lang="en"],
html.lang-nl [data-lang="nl"] {
  display: revert;
}

/* ── Blog ── */

.blog {
  max-width: 720px;
  margin: 0 auto;
  padding: 120px 24px 80px;
}

.blog__title {
  font-family: "GFS Didot", Didot, Georgia, serif;
  font-size: clamp(1.62rem, 2.7vw, 2.16rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 48px;
}

.blog__post {
  margin-bottom: 48px;
}

.blog__post + .blog__post {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 48px;
}

.blog__header {
  background: none;
  border: none;
  color: inherit;
  font: inherit;
  padding: 0;
  text-align: left;
  width: 100%;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  user-select: none;
}

.blog__header:hover .blog__post-title {
  border-bottom-color: #fff;
}

.blog__post-title {
  font-family: "GFS Didot", Didot, Georgia, serif;
  font-size: clamp(1.08rem, 2.16vw, 1.44rem);
  letter-spacing: 0.06em;
  border-bottom: 1px solid transparent;
  transition: border-bottom-color 0.2s ease;
}

.blog__post--latest .blog__post-title {
  font-size: clamp(1.26rem, 2.34vw, 1.8rem);
}

.blog__date {
  font-size: 0.77rem;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.5);
  white-space: nowrap;
  flex-shrink: 0;
}

.blog__body {
  line-height: 1.7;
  font-size: clamp(0.9rem, 1.8vw, 1.04rem);
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.4s ease, opacity 0.3s ease, margin-top 0.3s ease;
  margin-top: 0;
}

.blog__post--latest .blog__body,
.blog__post.is-open .blog__body {
  max-height: 4000px;
  opacity: 1;
  margin-top: 20px;
}

.blog__body p {
  margin-bottom: 1em;
}

.blog__body h2,
.blog__body h3 {
  font-family: "GFS Didot", Didot, Georgia, serif;
  margin: 1.4em 0 0.6em;
}

.blog__body a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.blog__body code {
  background: rgba(255, 255, 255, 0.1);
  padding: 2px 6px;
  border-radius: 3px;
  font-size: 0.81em;
}

.blog__body pre {
  background: rgba(255, 255, 255, 0.05);
  padding: 16px;
  border-radius: 4px;
  overflow-x: auto;
  margin-bottom: 1em;
}

.blog__body pre code {
  background: none;
  padding: 0;
}

.blog__body blockquote {
  border-left: 2px solid rgba(255, 255, 255, 0.3);
  padding-left: 16px;
  margin: 1em 0;
  color: rgba(255, 255, 255, 0.7);
}

.blog__body ul,
.blog__body ol {
  padding-left: 1.5em;
  margin-bottom: 1em;
}

.blog__chevron {
  font-size: 0.63rem;
  color: rgba(255, 255, 255, 0.4);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.blog__post.is-open .blog__chevron {
  transform: rotate(90deg);
}

/* ── Active nav link ── */

.site-nav__link.is-active {
  text-decoration-color: #fff;
}

/* ── Platform page ── */

.platform-hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 10vw 80px;
  gap: 16px;
}

.platform-hero__intro {
  font-size: clamp(0.9rem, 1.62vw, 1.08rem);
  opacity: 0.7;
  margin-bottom: 8px;
}

.platform-hero__title {
  font-family: "GFS Didot", Didot, Georgia, serif;
  font-size: clamp(2.16rem, 5.4vw, 4.5rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.platform-hero__tagline {
  font-family: "GFS Didot", Didot, Georgia, serif;
  font-size: clamp(0.99rem, 2.25vw, 1.62rem);
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.7);
  font-style: italic;
}

.platform-hero__subtitle {
  font-size: clamp(0.9rem, 1.8vw, 1.17rem);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-family: "GFS Didot", Didot, Georgia, serif;
  margin-top: 8px;
}

.platform-hero__body {
  font-size: clamp(0.99rem, 1.98vw, 1.44rem);
  line-height: 1.6;
  max-width: 40ch;
  color: rgba(255, 255, 255, 0.8);
}

.platform-cta-btn {
  display: inline-block;
  color: #fff;
  text-decoration: none;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.6);
  padding: 12px 28px;
  font-family: "GFS Didot", Didot, Georgia, serif;
  font-size: 0.81rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: border-color 0.2s ease, background 0.2s ease;
  margin-top: 12px;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
}

.platform-cta-btn:hover,
.platform-cta-btn:focus-visible {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.05);
}

.platform-cta-btn--secondary {
  border-color: rgba(255, 255, 255, 0.25);
  color: rgba(255, 255, 255, 0.6);
}

.platform-cta-btn--secondary:hover,
.platform-cta-btn--secondary:focus-visible {
  border-color: rgba(255, 255, 255, 0.6);
  color: #fff;
  background: none;
}

.platform-section {
  padding: 80px 10vw;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.platform-section__inner {
  display: flex;
  gap: 64px;
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
}

.platform-section--reversed .platform-section__inner {
  flex-direction: row-reverse;
}

.platform-section__text {
  flex: 1;
  min-width: 0;
  font-size: clamp(0.99rem, 1.98vw, 1.44rem);
  line-height: 1.6;
}

.platform-section__text p + p {
  margin-top: 18px;
}

.platform-section__visual {
  flex: 1;
  min-width: 0;
}

.platform-section__heading {
  font-family: "GFS Didot", Didot, Georgia, serif;
  font-size: clamp(1.26rem, 2.34vw, 1.8rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.platform-section__quote-line {
  border-left: 2px solid rgba(255, 255, 255, 0.3);
  padding-left: 16px;
  color: rgba(255, 255, 255, 0.8);
  margin: 20px 0;
  line-height: 1.9;
}

.platform-section__message {
  background: rgba(255, 255, 255, 0.04);
  border-left: 2px solid rgba(255, 255, 255, 0.4);
  padding: 16px;
  margin: 20px 0;
  line-height: 1.7;
}

.platform-section__img {
  width: 100%;
  height: auto;
  display: block;
}

.platform-visual-placeholder {
  min-height: 320px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: rgba(255, 255, 255, 0.2);
  font-family: "GFS Didot", Didot, Georgia, serif;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 24px;
  line-height: 1.6;
}

.platform-features {
  list-style: none;
  max-width: 1100px;
  margin: 32px auto 0;
}

.platform-features__item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 24px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-size: clamp(0.9rem, 1.62vw, 1.08rem);
  line-height: 1.5;
}

.platform-features__item span {
  color: rgba(255, 255, 255, 0.6);
  text-align: right;
  flex-shrink: 0;
}

/* Progression component */

.platform-progression {
  display: flex;
  gap: 16px;
  align-items: center;
  margin: 32px 0 28px;
}

.platform-progression__stage {
  flex: 1;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 20px 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.platform-progression__num {
  font-family: "GFS Didot", Didot, Georgia, serif;
  font-size: 1.44rem;
  color: rgba(255, 255, 255, 0.2);
}

.platform-progression__label {
  font-family: "GFS Didot", Didot, Georgia, serif;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.platform-progression__desc {
  font-size: 0.77rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.4;
}

.platform-progression__connector {
  color: rgba(255, 255, 255, 0.25);
  font-size: 1.08rem;
  flex-shrink: 0;
}

/* Story section (Max use case) */

.platform-section--story .platform-section__inner {
  flex-direction: column;
  max-width: 860px;
}

.platform-section__story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}

.platform-section__story-text {
  font-size: clamp(0.99rem, 1.98vw, 1.44rem);
  line-height: 1.6;
}

.platform-section__story-text p + p {
  margin-top: 18px;
}

.platform-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0 32px;
  font-size: clamp(0.9rem, 1.62vw, 1.17rem);
}

.platform-table td {
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  line-height: 1.5;
  vertical-align: top;
}

.platform-table__highlight td {
  border-bottom: none;
  padding-top: 20px;
  color: rgba(255, 255, 255, 0.9);
}

/* Quote section */

.platform-quote {
  padding: 80px 10vw;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.platform-quote blockquote {
  font-family: "GFS Didot", Didot, Georgia, serif;
  font-size: clamp(1.08rem, 2.16vw, 1.58rem);
  line-height: 1.7;
  font-style: italic;
  max-width: 52ch;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.9);
}

.platform-quote blockquote p + p {
  margin-top: 20px;
}

/* Footer CTA */

.platform-footer-cta {
  padding: 80px 10vw;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.platform-footer-cta__heading {
  font-family: "GFS Didot", Didot, Georgia, serif;
  font-size: clamp(1.35rem, 2.7vw, 1.98rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.platform-footer-cta__sub {
  font-size: clamp(0.86rem, 1.62vw, 0.99rem);
  color: rgba(255, 255, 255, 0.65);
  max-width: 52ch;
  line-height: 1.6;
}

/* ── Signup page ── */

.signup {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 120px 10vw 80px;
  text-align: center;
}

.signup__heading {
  font-family: "GFS Didot", Didot, Georgia, serif;
  font-size: clamp(1.62rem, 3.15vw, 2.52rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.signup__sub {
  font-size: clamp(0.9rem, 1.62vw, 1.04rem);
  color: rgba(255, 255, 255, 0.65);
  max-width: 46ch;
  line-height: 1.6;
  margin-bottom: 48px;
}

.signup__form {
  width: 100%;
  max-width: 440px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  text-align: left;
}

.signup__field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.signup__label {
  font-family: "GFS Didot", Didot, Georgia, serif;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}

.signup__label--optional::after {
  content: " (optional)";
  font-family: Georgia, "Times New Roman", serif;
  text-transform: none;
  letter-spacing: 0;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.35);
}

html.lang-nl .signup__label--optional::after {
  content: " (optioneel)";
}

.signup__input {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  color: #fff;
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: clamp(0.9rem, 1.62vw, 0.99rem);
  padding: 8px 0;
  outline: none;
  transition: border-bottom-color 0.2s ease;
  width: 100%;
}

.signup__input:focus {
  border-bottom-color: #fff;
}

.signup__input::placeholder {
  color: rgba(255, 255, 255, 0.18);
}

.signup__submit {
  align-self: flex-start;
  margin-top: 8px;
}

.signup__trust {
  font-size: 0.72rem;
  opacity: 0.55;
  margin-top: 8px;
}

.signup__success {
  font-size: clamp(0.9rem, 1.62vw, 1.04rem);
  line-height: 1.7;
}

.signup__error {
  font-size: clamp(0.9rem, 1.62vw, 1.04rem);
  color: #e05555;
  margin-top: 16px;
}

.signup__field-error {
  font-size: 0.81rem;
  color: #e05555;
  margin-top: 6px;
}

/* ── Responsive ── */

@media (max-width: 768px) {
  .platform-section__inner {
    flex-direction: column !important;
  }

  .platform-section__story-grid {
    grid-template-columns: 1fr;
  }

  .platform-progression {
    flex-direction: column;
  }

  .platform-progression__connector {
    transform: rotate(90deg);
  }

  .platform-features__item {
    flex-direction: column;
    gap: 2px;
  }

  .platform-features__item span {
    text-align: left;
  }
}

@media (max-width: 640px) {
  .site-nav__brand-name {
    display: none;
  }

  .site-nav__links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(6px);
    padding: 8px 20px 20px;
    gap: 0;
  }

  .site-nav.is-open .site-nav__links {
    display: flex;
  }

  .site-nav.is-open .site-nav__link {
    padding: 16px 0;
    font-size: 0.9rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .site-nav__hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px 0;
    width: 24px;
  }

  .site-nav__hamburger span {
    display: block;
    width: 22px;
    height: 1px;
    background: #fff;
    transition: transform 0.2s ease, opacity 0.2s ease;
  }

  .site-nav.is-open .site-nav__hamburger span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .site-nav.is-open .site-nav__hamburger span:nth-child(2) {
    opacity: 0;
  }

  .site-nav.is-open .site-nav__hamburger span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }
}

/* ── Assist campaign page ── */

.assist-hero {
  min-height: 100vh;
  padding: 120px 10vw 80px;
  display: flex;
  align-items: center;
}

.assist-hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
  align-items: center;
}

.assist-hero__eyebrow {
  font-family: "GFS Didot", Didot, Georgia, serif;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.45;
  margin-bottom: 16px;
}

.assist-hero__h1 {
  font-family: "GFS Didot", Didot, Georgia, serif;
  font-size: clamp(1.8rem, 3.6vw, 3rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.2;
  margin-bottom: 24px;
}

.assist-hero__sub {
  font-size: clamp(1rem, 1.98vw, 1.35rem);
  line-height: 1.6;
  margin-bottom: 16px;
}

.assist-hero__body {
  font-size: clamp(0.9rem, 1.62vw, 1.04rem);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
}

.assist-hero__product-desc {
  font-size: clamp(0.9rem, 1.62vw, 1.04rem);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 16px;
}

.assist-hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.assist-hero__img {
  width: 100%;
  height: auto;
  display: block;
}

.assist-hiw {
  padding: 80px 10vw 64px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.assist-hiw__title {
  font-family: "GFS Didot", Didot, Georgia, serif;
  font-size: clamp(1.26rem, 2.34vw, 1.8rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 32px;
}

.assist-hiw__img {
  width: 100%;
  max-width: 900px;
  height: auto;
  display: block;
  margin: 0 auto;
}

.assist-hiw__caption {
  font-family: "GFS Didot", Didot, Georgia, serif;
  font-size: clamp(0.72rem, 1.26vw, 0.86rem);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 20px;
}

.assist-strip {
  padding: 56px 10vw;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.assist-strip__inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
}

.assist-strip__item {
  text-align: center;
  padding: 0 16px;
}

.assist-strip__title {
  font-family: "GFS Didot", Didot, Georgia, serif;
  font-size: clamp(0.86rem, 1.44vw, 1rem);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.assist-strip__desc {
  font-size: clamp(0.86rem, 1.44vw, 0.99rem);
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
}

.assist-section__heading {
  font-family: "GFS Didot", Didot, Georgia, serif;
  font-size: clamp(1.26rem, 2.34vw, 1.8rem);
  font-style: italic;
  letter-spacing: 0.02em;
  line-height: 1.4;
  margin-bottom: 20px;
}

.assist-onboarding__heading {
  font-family: "GFS Didot", Didot, Georgia, serif;
  font-size: clamp(1.35rem, 2.52vw, 1.98rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.assist-onboarding__body {
  font-size: clamp(0.99rem, 1.8vw, 1.17rem);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
  max-width: 50ch;
  margin: 0 auto;
}

.assist-testimonial {
  flex: 1;
  min-width: 0;
}

.assist-testimonial__quote {
  font-family: "GFS Didot", Didot, Georgia, serif;
  font-size: clamp(1.08rem, 2.07vw, 1.44rem);
  font-style: italic;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 16px;
}

.assist-testimonial__attr {
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 0.06em;
}

.assist-trust {
  flex: 1;
  min-width: 0;
}

.assist-trust__list {
  list-style: none;
}

.assist-trust__item {
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  font-size: clamp(0.86rem, 1.44vw, 0.99rem);
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.75);
}

.assist-footer__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.platform-footer-cta [data-lang] p + p {
  margin-top: 10px;
}

@media (max-width: 860px) {
  .assist-hero__inner {
    grid-template-columns: 1fr;
  }

  .assist-hero__visual {
    order: -1;
  }
}

@media (max-width: 640px) {
  .assist-strip__inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

/* ── OpenClaw for Business campaign page ── */

.ocfb-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  column-gap: 64px;
  row-gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
}

.ocfb-hero-text-top {
  grid-column: 1;
  grid-row: 1;
}

.ocfb-hero-inner .assist-hero__ctas {
  grid-column: 1;
  grid-row: 2;
  margin-top: 0;
  align-self: center;
}

.ocfb-dennis {
  grid-column: 2;
  grid-row: 1 / 3;
  align-self: center;
  width: 100%;
  height: auto;
  display: block;
}

.ocfb-features-banner {
  grid-column: 2;
  grid-row: 2;
  align-self: center;
  max-width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 860px) {
  .ocfb-hero-inner {
    display: flex;
    flex-direction: column;
  }

  .ocfb-dennis {
    order: -1;
    width: 100%;
  }
}

.ocfb-price-badge {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 20px;
}

.ocfb-price-badge__free {
  font-family: "GFS Didot", Didot, Georgia, serif;
  font-size: 0.81rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
}

.ocfb-price-badge__price {
  font-size: 0.81rem;
  color: rgba(255, 255, 255, 0.5);
}

.ocfb-hiw {
  padding: 80px 10vw 64px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.ocfb-hiw__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1100px;
  margin: 40px auto 0;
}

.ocfb-hiw__step {
  padding: 0 16px;
}

.ocfb-hiw__num {
  font-family: "GFS Didot", Didot, Georgia, serif;
  font-size: 2.5rem;
  color: rgba(255, 255, 255, 0.15);
  margin-bottom: 12px;
}

.ocfb-hiw__step-title {
  font-family: "GFS Didot", Didot, Georgia, serif;
  font-size: clamp(0.86rem, 1.44vw, 1rem);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.ocfb-hiw__step-desc {
  font-size: clamp(0.86rem, 1.44vw, 0.99rem);
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
}

.ocfb-wide-section {
  padding: 80px 10vw;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.ocfb-wide-section__inner {
  max-width: 720px;
  margin: 0 auto;
}

.ocfb-wide-section__heading {
  font-family: "GFS Didot", Didot, Georgia, serif;
  font-size: clamp(1.35rem, 2.52vw, 1.98rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.ocfb-wide-section__body {
  font-size: clamp(0.99rem, 1.98vw, 1.17rem);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
}

.ocfb-wide-section__body p + p {
  margin-top: 16px;
}

.ocfb-email-flow {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 32px;
  font-size: clamp(0.86rem, 1.44vw, 0.99rem);
  line-height: 2.2;
}

.ocfb-email-flow__arrow {
  padding-left: 24px;
  color: rgba(255, 255, 255, 0.3);
}

.ocfb-email-flow__divider {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin: 12px 0;
}

.ocfb-email-flow__blocked {
  color: rgba(255, 255, 255, 0.45);
}

.ocfb-checklist {
  list-style: none;
  max-width: 640px;
  margin: 0 auto;
}

.ocfb-checklist__item {
  display: flex;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  font-size: clamp(0.9rem, 1.62vw, 1.08rem);
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.8);
}

.ocfb-checklist__icon {
  flex-shrink: 0;
  width: 1.6em;
}

.ocfb-pricing-line {
  font-family: "GFS Didot", Didot, Georgia, serif;
  font-size: 0.81rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
  margin-top: 32px;
}

.ocfb-footer {
  padding: 40px 10vw;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
  font-size: 0.77rem;
  color: rgba(255, 255, 255, 0.3);
  letter-spacing: 0.06em;
  line-height: 2;
}

.ocfb-footer a {
  color: rgba(255, 255, 255, 0.4);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.ocfb-footer a:hover {
  color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 640px) {
  .ocfb-hiw__steps {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
