/* One Two One website
   Palette and motif from OneTwoOne-branding-guidelines.pdf (Feb 2026).
   Typeface: Raleway (self-hosted, variable 100-900), per Jasper's instruction. */

/* ---------- Fonts ---------- */

@font-face {
  font-family: "Raleway";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("fonts/raleway-latin-normal.woff2") format("woff2");
}

@font-face {
  font-family: "Raleway";
  font-style: italic;
  font-weight: 100 900;
  font-display: swap;
  src: url("fonts/raleway-latin-italic.woff2") format("woff2");
}

/* ---------- Tokens ---------- */

:root {
  --blue: #2c68f6;        /* Electric Blue */
  --night: #101255;       /* Night Blue */
  --night-deep: #0b0d40;  /* Night Blue, one step darker (footer, cards) */
  --orange: #ec622b;      /* Fierce Orange */
  --cream: #fceccd;
  --ivory: #fef9f0;
  --ink: #101255;
  --ink-soft: rgba(16, 18, 85, 0.72);
  --line: rgba(16, 18, 85, 0.12);
  --line-light: rgba(254, 249, 240, 0.18);
  --radius: 20px;
  --radius-lg: 28px;
  --wrap: 1120px;
  --nav-h: 76px;
}

/* ---------- Reset & base ---------- */

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 16px);
}

body {
  margin: 0;
  font-family: "Raleway", "Segoe UI", Arial, sans-serif;
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--ivory);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

h1, h2, h3 {
  line-height: 1.12;
  letter-spacing: -0.015em;
  margin: 0 0 0.6em;
}

h1 {
  font-size: clamp(2.4rem, 5.6vw, 4rem);
  font-weight: 800;
}

h2 {
  font-size: clamp(1.9rem, 3.6vw, 2.6rem);
  font-weight: 800;
}

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

p {
  margin: 0 0 1em;
}

a {
  color: var(--blue);
  text-decoration-thickness: 1.5px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--orange);
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.wrap {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 24px;
}

section {
  padding: 88px 0;
}

.eyebrow {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 14px;
}

.lede {
  font-size: 1.2rem;
  max-width: 46em;
  color: var(--ink-soft);
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--orange);
  color: var(--night);
  padding: 10px 18px;
  font-weight: 700;
  z-index: 200;
}

.skip-link:focus {
  left: 12px;
  top: 12px;
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-block;
  background: var(--blue);
  color: #fff;
  font-weight: 800;
  font-size: 1rem;
  padding: 15px 30px;
  border: 0;
  border-radius: 999px;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease;
}

.btn:hover {
  background: #1f56d9;
  color: #fff;
  transform: translateY(-2px);
}

.btn-orange {
  background: var(--orange);
  color: #fff;
}

.btn-orange:hover {
  background: #d9531e;
  color: #fff;
}

.btn-ghost {
  background: transparent;
  color: var(--ivory);
  box-shadow: inset 0 0 0 2px rgba(254, 249, 240, 0.5);
}

.btn-ghost:hover {
  background: rgba(254, 249, 240, 0.08);
  color: var(--ivory);
}

.btn-ghost-dark {
  background: transparent;
  color: var(--night);
  box-shadow: inset 0 0 0 2px var(--night);
}

.btn-ghost-dark:hover {
  background: rgba(16, 18, 85, 0.06);
  color: var(--night);
}

/* ---------- Nav ---------- */

.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--night);
  border-bottom: 1px solid var(--line-light);
}

.site-nav .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--nav-h);
  gap: 24px;
}

.site-nav .logo img {
  height: 40px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

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

.nav-links a:hover {
  color: var(--orange);
}

.nav-links .btn {
  padding: 10px 22px;
  font-size: 0.95rem;
}

.lang-toggle {
  display: inline-flex;
  border: 1.5px solid rgba(254, 249, 240, 0.35);
  border-radius: 999px;
  overflow: hidden;
  margin-left: 6px;
}

.lang-toggle a {
  color: rgba(254, 249, 240, 0.75);
  text-decoration: none;
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  padding: 6px 12px;
}

.lang-toggle a:hover {
  color: #fff;
}

.lang-toggle a[aria-current="true"] {
  background: var(--blue);
  color: #fff;
}

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 3px;
  background: var(--ivory);
  margin: 5px 0;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

/* ---------- Hero ---------- */

.hero {
  background: var(--night);
  color: var(--ivory);
  position: relative;
  overflow: hidden;
  padding: 110px 0 0;
}

.hero .wrap {
  position: relative;
  z-index: 1;
}

.hero h1 {
  max-width: 15em;
  color: #fff;
}

.hero .sub {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  line-height: 1.7;
  max-width: 38em;
  color: rgba(254, 249, 240, 0.88);
  margin-bottom: 36px;
}

.mark {
  background: var(--orange);
  color: #fff;
  font-weight: 700;
  padding: 0 5px;
  border-radius: 3px;
  white-space: nowrap;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 44px;
}

.hero-proof {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.95rem;
  color: rgba(254, 249, 240, 0.75);
  padding-bottom: 60px;
}

.hero-proof img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--blue);
}

/* Pixel clusters, echoing the brand background system */

.pixels {
  position: absolute;
  pointer-events: none;
}

.pixels-tr {
  top: 0;
  right: 0;
}

.pixels-bl {
  bottom: 0;
  left: 0;
}

/* Hero value strip */

.hero-strip {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--line-light);
  background: rgba(44, 104, 246, 0.06);
}

.hero-strip .wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  padding-top: 36px;
  padding-bottom: 40px;
}

.hero-strip img {
  width: 40px;
  height: 40px;
  margin-bottom: 12px;
}

.hero-strip h3 {
  font-size: 1.05rem;
  color: #fff;
  margin-bottom: 6px;
}

.hero-strip p {
  font-size: 0.92rem;
  color: rgba(254, 249, 240, 0.7);
  margin: 0;
}

/* ---------- Experience strip ---------- */

.brands {
  padding: 56px 0;
  border-bottom: 1px solid var(--line);
}

.brands .label {
  text-align: center;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 30px;
}

.brand-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 30px 56px;
}

.brand-row img {
  width: auto;
  filter: grayscale(1);
  opacity: 0.6;
  transition: filter 0.15s ease, opacity 0.15s ease;
}

.brand-row li:hover img {
  filter: none;
  opacity: 1;
}

.bl-nespresso { height: 24px; }
.bl-torfs     { height: 22px; }
.bl-tomco     { height: 32px; }
.bl-colruyt   { height: 30px; }
.bl-lidl      { height: 44px; }
.bl-bioplanet { height: 48px; }

/* ---------- Problem section ---------- */

.problems {
  background: var(--cream);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 44px;
}

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-top: 4px solid var(--orange);
  border-radius: var(--radius);
  padding: 26px 24px;
}

.card h3 {
  font-size: 1.08rem;
  margin-bottom: 8px;
}

.card p {
  font-size: 0.95rem;
  color: var(--ink-soft);
  margin: 0;
}

.pattern-break {
  margin-top: 40px;
  background: var(--night);
  color: var(--ivory);
  border-radius: var(--radius);
  padding: 30px 34px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px 40px;
}

.pattern-break .pb-lead {
  font-size: 1.25rem;
  font-weight: 800;
  color: #fff;
  margin: 0;
  flex: 0 0 auto;
}

.pb-items {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 32px;
  flex: 1 1 420px;
}

.pb-items li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.98rem;
  font-weight: 600;
  color: rgba(254, 249, 240, 0.88);
}

.pb-items img {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
}

/* ---------- Services ---------- */

.pillar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 44px;
}

.pillar {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 30px;
}

.pillar-lead {
  grid-column: 1 / -1;
  background: var(--night);
  color: var(--ivory);
  border: 0;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 32px;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.pillar-lead h3 {
  color: #fff;
}

.pillar .num {
  display: block;
  font-weight: 800;
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  color: var(--blue);
  margin-bottom: 12px;
}

.pillar-lead .num {
  color: var(--orange);
}

.pillar h3 {
  font-size: 1.3rem;
}

.pillar .desc {
  font-size: 0.98rem;
  color: var(--ink-soft);
}

.pillar-lead .desc {
  color: rgba(254, 249, 240, 0.82);
}

.pillar ul {
  margin-top: 14px;
}

.pillar li {
  position: relative;
  padding-left: 20px;
  font-size: 0.93rem;
  color: var(--ink-soft);
  margin-bottom: 7px;
}

.pillar-lead li {
  color: rgba(254, 249, 240, 0.78);
}

.pillar li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  background: var(--blue);
}

.pillar-lead li::before {
  background: var(--orange);
}

.tag {
  display: inline-block;
  background: var(--orange);
  color: var(--night);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 16px;
}

.pillar-lead .icon {
  width: 120px;
  height: 120px;
  justify-self: center;
}

/* ---------- Method ---------- */

.method {
  background: var(--night);
  color: var(--ivory);
  position: relative;
  overflow: hidden;
}

.method h2 {
  color: #fff;
}

.method .lede {
  color: rgba(254, 249, 240, 0.75);
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
  position: relative;
  z-index: 1;
}

.step {
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  padding: 26px 22px;
  background: rgba(44, 104, 246, 0.08);
}

.step .num {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--blue);
  margin-bottom: 10px;
}

.step h3 {
  color: #fff;
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.step p {
  font-size: 0.92rem;
  color: rgba(254, 249, 240, 0.72);
  margin: 0;
}

.method-result {
  margin-top: 28px;
  background: var(--blue);
  border-radius: var(--radius);
  padding: 30px 34px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  position: relative;
  z-index: 1;
}

.method-result p {
  margin: 0;
  font-size: 1.12rem;
  font-weight: 600;
  color: #fff;
  max-width: 34em;
}

.method-note {
  margin-top: 22px;
  font-size: 0.95rem;
  color: rgba(254, 249, 240, 0.65);
  position: relative;
  z-index: 1;
}

/* ---------- Principles ---------- */

.principles-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 44px;
}

.stand {
  border-radius: var(--radius);
  padding: 34px 32px;
}

.stand-for {
  background: #fff;
  border: 1px solid var(--line);
}

.stand-against {
  background: var(--night);
  color: var(--ivory);
}

.stand-against h3 {
  color: #fff;
}

.stand li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 12px;
  font-size: 0.98rem;
}

.stand-for li {
  color: var(--ink-soft);
}

.stand-against li {
  color: rgba(254, 249, 240, 0.8);
}

.stand-for li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 10px;
  height: 10px;
  background: var(--blue);
}

.stand-against li::before {
  content: "\00d7";
  position: absolute;
  left: 0;
  top: -2px;
  color: var(--orange);
  font-weight: 800;
  font-size: 1.1rem;
}

.stand li strong {
  color: inherit;
}

.stand-for li strong {
  color: var(--night);
}

.stand-against li strong {
  color: #fff;
}

/* ---------- About ---------- */

.about {
  background: var(--cream);
}

.about .wrap {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 64px;
  align-items: stretch;
}

.about-photo {
  position: relative;
}

.about-photo img {
  border-radius: var(--radius-lg);
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-photo::before,
.about-photo::after {
  content: "";
  position: absolute;
  z-index: 0;
}

.about-photo::before {
  width: 72px;
  height: 72px;
  background: var(--blue);
  top: -20px;
  left: -20px;
}

.about-photo::after {
  width: 44px;
  height: 44px;
  background: var(--orange);
  bottom: -16px;
  right: -16px;
  z-index: 2;
}

.about .quote {
  border-left: 4px solid var(--orange);
  padding-left: 18px;
  font-size: 1.1rem;
  font-weight: 600;
  font-style: italic;
  margin: 24px 0;
}

/* ---------- Contact ---------- */

.contact {
  background: var(--night);
  color: var(--ivory);
  position: relative;
  overflow: hidden;
}

.contact h2 {
  color: #fff;
}

.contact .lede {
  color: rgba(254, 249, 240, 0.75);
}

.contact .wrap {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: start;
}

.next-steps {
  margin-top: 30px;
}

.next-steps h3 {
  font-size: 1rem;
  color: #fff;
  margin-bottom: 12px;
}

.next-steps ol {
  list-style: none;
  margin: 0 0 16px;
  padding: 0;
  counter-reset: steps;
}

.next-steps ol li {
  counter-increment: steps;
  position: relative;
  padding-left: 34px;
  margin-bottom: 10px;
  font-size: 0.95rem;
  color: rgba(254, 249, 240, 0.78);
}

.next-steps ol li::before {
  content: counter(steps);
  position: absolute;
  left: 0;
  top: 1px;
  width: 22px;
  height: 22px;
  background: var(--orange);
  color: var(--night);
  font-weight: 800;
  font-size: 0.8rem;
  display: grid;
  place-items: center;
  border-radius: 6px;
}

.fit-note {
  font-size: 0.85rem;
  color: rgba(254, 249, 240, 0.55);
  margin: 0;
}

.contact-direct {
  margin-top: 28px;
  font-size: 0.98rem;
  color: rgba(254, 249, 240, 0.75);
}

.contact-direct a {
  color: #fff;
}

.contact-direct img {
  width: 34px;
  height: 34px;
  margin-bottom: 14px;
}

.form-card {
  background: var(--ivory);
  color: var(--ink);
  border-radius: var(--radius-lg);
  padding: 38px 36px;
}

.form-card label {
  display: block;
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 6px;
}

.form-card .field {
  margin-bottom: 18px;
}

.form-card input,
.form-card textarea {
  width: 100%;
  font: inherit;
  font-size: 0.98rem;
  color: var(--ink);
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  padding: 12px 14px;
}

.form-card input:focus,
.form-card textarea:focus {
  outline: 2px solid var(--blue);
  outline-offset: 1px;
  border-color: var(--blue);
}

.form-card textarea {
  min-height: 130px;
  resize: vertical;
}

.form-card .btn {
  width: 100%;
  margin-top: 6px;
}

.form-hint {
  font-size: 0.82rem;
  color: var(--ink-soft);
  margin: 14px 0 0;
  text-align: center;
}

/* Honeypot: hidden from people, visible to naive bots */

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* ---------- Cookie consent bar ---------- */

.cookie-bar {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 300;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px 24px;
  background: var(--night);
  color: var(--ivory);
  border: 1px solid rgba(254, 249, 240, 0.18);
  border-radius: 16px;
  padding: 16px 22px;
  max-width: 860px;
  margin: 0 auto;
  box-shadow: 0 12px 40px rgba(16, 18, 85, 0.35);
}

.cookie-msg {
  margin: 0;
  font-size: 0.92rem;
  color: rgba(254, 249, 240, 0.85);
  flex: 1 1 320px;
}

.cookie-msg a {
  color: #fff;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions .btn {
  padding: 11px 22px;
  font-size: 0.92rem;
}

/* ---------- Footer ---------- */

.site-footer {
  background: var(--night-deep);
  color: rgba(254, 249, 240, 0.65);
  padding: 48px 0;
  font-size: 0.9rem;
}

.site-footer .wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-footer img {
  height: 30px;
  width: auto;
  margin-bottom: 10px;
}

.site-footer a {
  color: rgba(254, 249, 240, 0.85);
}

.site-footer a:hover {
  color: var(--orange);
}

.footer-links {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}

/* ---------- Legal pages ---------- */

.legal-main {
  max-width: 780px;
  margin: 0 auto;
  padding: 72px 24px 96px;
}

.legal-main h1 {
  font-size: clamp(2rem, 4vw, 2.8rem);
}

.legal-main h2 {
  font-size: 1.35rem;
  margin-top: 2.2em;
}

.legal-main .updated {
  color: var(--ink-soft);
  font-size: 0.92rem;
  margin-bottom: 2.5em;
}

.legal-main ul {
  list-style: square;
  padding-left: 22px;
  margin-bottom: 1em;
}

.legal-main li {
  margin-bottom: 6px;
}

.placeholder {
  background: var(--cream);
  padding: 1px 6px;
  border-radius: 4px;
  font-weight: 600;
}

/* ---------- Responsive ---------- */

@media (max-width: 900px) {
  section {
    padding: 64px 0;
  }

  .nav-toggle {
    display: block;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: var(--night);
    flex-direction: column;
    align-items: flex-start;
    padding: 12px 24px 24px;
    gap: 18px;
    border-bottom: 1px solid var(--line-light);
  }

  .nav-links.open {
    display: flex;
  }

  .hero {
    padding-top: 72px;
  }

  .hero-strip .wrap {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .pillar-grid,
  .principles-grid {
    grid-template-columns: 1fr;
  }

  .pillar-lead {
    grid-template-columns: 1fr;
  }

  .pillar-lead .icon {
    display: none;
  }

  .about-photo img {
    height: auto;
  }

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

  .about .wrap,
  .contact .wrap {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .about-photo {
    max-width: 380px;
  }
}

@media (max-width: 560px) {
  .steps {
    grid-template-columns: 1fr;
  }

  .brand-row {
    gap: 18px 32px;
  }

  .brand-row li {
    font-size: 1rem;
  }

  .form-card {
    padding: 28px 22px;
  }

  .pattern-break {
    flex-direction: column;
    align-items: flex-start;
    padding: 26px 22px;
    gap: 18px;
  }

  .pattern-break .pb-lead {
    flex: 1 1 auto;
    min-width: 0;
    font-size: 1.15rem;
  }

  .pb-items {
    flex: 0 0 auto;
    flex-direction: column;
    gap: 12px;
  }

  .pb-items li {
    align-items: flex-start;
  }

  .pb-items img {
    margin-top: 1px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .btn:hover {
    transform: none;
  }
}

/* ---------- Logo strip additions (2026-07) ---------- */

.bl-easyfairs { height: 26px; }
.bl-e5        { height: 38px; }
.bl-gamma     { height: 34px; }

/* ---------- Method rhythm note ---------- */

.method-note p {
  margin: 0;
}

.method-rhythm {
  margin: 12px 0 0;
  padding-left: 1.35em;
  display: grid;
  gap: 5px;
}

/* ---------- Why fractional ---------- */

.why-fractional .method-rhythm {
  max-width: 68ch;
}

.why-kicker {
  margin-top: 44px;
  font-weight: 700;
  color: var(--ink);
}

.why-cards {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  margin-top: 28px;
}

/* ---------- Raleway readability tuning (2026-07) ---------- */
/* Self-hosted Raleway is a variable font (100-900), so 500/600 render
   natively without any Google Fonts request (GDPR + CSP stay intact). */

body {
  font-size: 17px;
  font-weight: 500;
  line-height: 1.6;
}

@media (max-width: 560px) {
  body {
    font-size: 16px;
  }
}

/* Cap long-form line length at ~65-70 characters */
.hero .sub { max-width: 64ch; }
.lede { max-width: 60ch; }
.about p,
.about .quote,
.card p,
.pillar .desc,
.step p,
.method-note p,
.method-rhythm li,
.why-list li,
.next-steps ol li,
.contact-direct,
.fit-note {
  max-width: 68ch;
}

/* Small-text floor: nothing under 13px */
.eyebrow,
.lang-toggle a,
.brands .label,
.tag,
.next-steps ol li::before {
  font-size: 0.8125rem;
}

/* ---------- V2 interactivity (progressive enhancement) ----------
   Everything below only takes visible effect when effects.js runs;
   with JS off or prefers-reduced-motion, the site renders as v1. */

/* 1. Hero pixel field (canvas replaces the static .pixels-tr SVG) */

.pixel-field {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  pointer-events: none;
}

/* 2. Hero strip icons (canvas swapped in for the static imgs) */

.hero-strip canvas {
  width: 40px;
  height: 40px;
  margin-bottom: 12px;
  display: block;
}

@media (prefers-reduced-motion: no-preference) {
  .hero-strip canvas {
    transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
  }

  .hero-strip .wrap > div:hover canvas {
    transform: scale(1.1);
  }
}

/* 3. Brand marquee */

.marquee {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}

.marquee .brand-row {
  flex-wrap: nowrap;
  justify-content: flex-start;
  width: max-content;
}

@media (prefers-reduced-motion: no-preference) {
  .marquee .brand-row {
    animation: marquee var(--marq-dur, 26s) linear infinite;
  }

  .marquee:hover .brand-row {
    animation-play-state: paused;
  }
}

@keyframes marquee {
  to {
    transform: translateX(calc(-1 * var(--marq-dist, 1120px)));
  }
}

/* 4. Card micro-interaction (pixel corner + lift) */

.card {
  position: relative;
  overflow: hidden;
}

.card::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 44px;
  height: 44px;
  background:
    linear-gradient(var(--orange), var(--orange)) 100% 100% / 22px 22px no-repeat,
    linear-gradient(var(--orange), var(--orange)) 100% 0 / 11px 11px no-repeat,
    linear-gradient(var(--orange), var(--orange)) 0 100% / 11px 11px no-repeat;
  opacity: 0;
  transform: translate(10px, 10px);
  pointer-events: none;
}

@media (prefers-reduced-motion: no-preference) {
  .card {
    transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.25s ease, border-color 0.25s ease;
  }

  .card::after {
    transition: opacity 0.25s ease, transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 30px rgba(16, 18, 85, 0.12);
    border-color: rgba(44, 104, 246, 0.35);
  }

  .card:hover::after {
    opacity: 1;
    transform: translate(0, 0);
  }
}

/* ---------- Bigger tile headings (2026-07, round 2) ---------- */

.hero-strip h3 {
  font-size: 1.2rem;
}

.card h3 {
  font-size: 1.35rem;
}

.step h3 {
  font-size: 1.35rem;
}

.brands .label {
  font-size: 0.95rem;
}

/* ============================================================
   SQUARE CORNERS VARIANT (2026-07)
   Style guide: no rounded corners, except buttons (and the
   pill-shaped EN|NL toggle, which reads as a button).
   >>> DELETE THIS ENTIRE BLOCK to restore the rounded look. <<<
   ============================================================ */

:root {
  --radius: 0;
  --radius-lg: 0;
}

.mark,
.hero-proof img,
.next-steps ol li::before,
.form-card input,
.form-card textarea,
.cookie-bar,
.placeholder {
  border-radius: 0;
}

/* ================== END SQUARE CORNERS VARIANT ================== */

/* ---------- Round 3: underlines, level-up arrows, bullet dividers, kicker ---------- */

.ul-orange {
  text-decoration: underline;
  text-decoration-color: var(--orange);
  text-decoration-thickness: 3px;
  text-underline-offset: 5px;
}

.levelup {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  align-self: center;
}

.levelup img {
  width: 54px;
  height: 54px;
}

.levelup span {
  margin-top: 6px;
  font-weight: 800;
  font-size: 0.9rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue);
}

.pillar li {
  border-bottom: 1px solid var(--line);
  padding-bottom: 8px;
  margin-bottom: 8px;
}

.pillar-lead li {
  border-bottom-color: var(--line-light);
}

.why-kicker {
  font-size: clamp(1.9rem, 3.6vw, 2.6rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin: 56px 0 0.6em;
  max-width: none;
}

/* ---------- Round 4: wider level-up arrows, numbered reason cards ---------- */

.levelup img {
  width: 104px;
  height: 58px;
}

.levelup span {
  font-size: 1.35rem;
  letter-spacing: 0.22em;
}

.card-num {
  display: block;
  font-weight: 800;
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  color: var(--blue);
  margin-bottom: 10px;
}
