/* Homepage styles (index.html) */

:root {
  --accent: #8B5CF6;
  --accent-hover: #7C3AED;
  --display: "GFS Didot", Georgia, "Times New Roman", serif;
  --body: Georgia, "Times New Roman", serif;
}

.op a { color: inherit; }

.op {
  max-width: 1080px;
  margin: 0 auto;
  padding: 100px 56px 56px;
}

.op-brand {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 16px 24px;
  margin-bottom: 48px;
}
.op-brand__sw { display: flex; align-items: center; gap: 14px; }
.op-brand__bh { display: flex; align-items: center; gap: 12px; }
.op-brand__bh-text {
  font-family: var(--display);
  font-size: 1.45rem;
  letter-spacing: 0.08em;
  color: #fff;
}
.op-brand__bh-logo { height: 36px; width: auto; border-radius: 4px; display: block; }
.op-brand img.mark { height: 64px; width: auto; }
.op-brand img.name { height: 38px; width: auto; opacity: 0.92; filter: invert(1); }

.op-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  column-gap: 56px;
  row-gap: 0;
  align-items: start;
  margin-bottom: 56px;
}
.op-hero__text     { grid-column: 1; grid-row: 1 / 3; }
.op-hero__visual   { grid-column: 2; grid-row: 1; align-self: center; }
.op-hero__features { grid-column: 2; grid-row: 2; align-self: center; padding-top: 24px; }
.op-hero__eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin: 0 0 18px;
}
.op-hero__h1 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(1.9rem, 3.6vw, 2.85rem);
  line-height: 1.18;
  letter-spacing: 0.005em;
  margin: 0 0 22px;
  max-width: 22ch;
}
.op-hero__sub {
  font-size: 1.05rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.78);
  margin: 0 0 12px;
}
.op-hero__product {
  font-size: 1.05rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.55);
  margin: 0 0 18px;
}
.op-hero__ctas {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-top: 24px;
}
.op-hero__cta-secondary {
  font-family: var(--display);
  font-size: 0.88rem;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.25);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}
.op-hero__cta-secondary:hover {
  color: #fff;
  border-color: rgba(255,255,255,0.6);
}
.op-hero__cta-secondary[data-lang] { display: none; }
html.lang-en .op-hero__cta-secondary[data-lang="en"] { display: inline; }
html.lang-nl .op-hero__cta-secondary[data-lang="nl"] { display: inline; }

.op-hero__visual img { max-width: 100%; height: auto; border-radius: 12px; }
.op-hero__visual img[data-lang] { display: none; }
html.lang-en .op-hero__visual img[data-lang="en"] { display: block; }
html.lang-nl .op-hero__visual img[data-lang="nl"] { display: block; }
.op-hero__features img { display: block; max-width: 100%; height: auto; }
.op-hero__features img.op-hero__features-img--print { display: none; }
.op-hero__features-caption {
  text-align: center;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin: 8px 0 0;
}

.op-scene {
  position: relative;
  margin-bottom: 56px;
  padding: 64px 48px 32px;
  background-image: url('../onepager/assets/office-space.jpg');
  background-size: cover;
  background-position: center;
  border-radius: 16px;
  overflow: hidden;
}
.op-scene::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.18) 0%, rgba(0,0,0,0.42) 100%);
  pointer-events: none;
}
.op-scene > * { position: relative; }
.op-scene .op-benefits {
  max-width: 50%;
  margin: 0 20% 88px 30%;
  padding: 24px 28px;
  background: rgba(0,0,0,0.45);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
}
.op-scene .op-steps { margin-bottom: 0; }
.op-scene .op-step {
  background: rgba(0,0,0,0.25);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-color: rgba(255,255,255,0.18);
}

.op-benefits { margin-bottom: 56px; }
.op-benefits__title {
  font-family: var(--display);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin: 0 0 22px;
}
.op-benefits__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 40px;
  row-gap: 20px;
}
.op-benefit {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 14px;
  align-items: start;
}
.op-benefit__check { color: var(--accent); font-size: 1.05rem; line-height: 1.4; }
.op-benefit__title {
  font-family: var(--display);
  font-size: 1.05rem;
  line-height: 1.3;
  margin: 0;
  color: #fff;
}
.op-benefit__soft {
  color: rgba(255,255,255,0.5);
  font-family: var(--body);
}

.op-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 56px;
}
.op-step {
  position: relative;
  padding: 24px 22px 22px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  background: rgba(255,255,255,0.03);
}
.op-step__num {
  position: absolute;
  top: -10px; left: 18px;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-family: var(--display);
  font-size: 0.85rem;
  display: flex; align-items: center; justify-content: center;
  line-height: 1;
}
.op-step__title {
  font-family: var(--display);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin: 4px 0 8px;
}
.op-step__lead {
  font-family: var(--display);
  font-size: 1.18rem;
  line-height: 1.3;
  margin: 0 0 8px;
}
.op-step__body {
  font-size: 1.05rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.78);
  margin: 0;
}

.op-quotes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-bottom: 56px;
}
.op-quote {
  padding: 24px 24px 22px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  background: rgba(255,255,255,0.03);
}
.op-quote__text {
  font-family: var(--display);
  font-size: 1.12rem;
  line-height: 1.4;
  font-style: italic;
  margin: 0 0 14px;
  color: rgba(255,255,255,0.9);
}
.op-quote__text::before {
  content: "\201C";
  display: block;
  font-size: 2.4rem;
  line-height: 0.6;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 10px;
  font-style: normal;
}
.op-quote__by {
  font-family: var(--display);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin: 0;
}
.op-quote__context {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  margin: 6px 0 0;
}

.op-offering {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 56px;
  padding: 28px 0;
  border-top: 1px solid rgba(255,255,255,0.12);
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.op-offer { display: flex; align-items: center; gap: 14px; }
.op-offer__icon {
  flex: 0 0 auto;
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
}
.op-offer__icon svg { width: 100%; height: 100%; }
.op-offer__label {
  font-family: var(--display);
  font-size: 1.05rem;
  line-height: 1.25;
  margin: 0;
}

.op-founders {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 32px;
  align-items: center;
  margin-bottom: 56px;
}
.op-founders__photo {
  width: 100%; height: auto;
  border-radius: 10px;
  display: block;
  filter: grayscale(0.15);
}
.op-founders__quote {
  font-family: var(--display);
  font-size: 1.35rem;
  line-height: 1.4;
  margin: 0 0 12px;
}
.op-founders__by {
  font-family: var(--display);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin: 0;
}

.op-cta {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 36px;
  align-items: center;
  padding-top: 36px;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.op-cta__h {
  font-family: var(--display);
  font-size: 1.6rem;
  line-height: 1.25;
  margin: 0 0 16px;
}
.platform-cta-btn[data-lang] { display: none; }
html.lang-en .platform-cta-btn[data-lang="en"] { display: inline-block; }
html.lang-nl .platform-cta-btn[data-lang="nl"] { display: inline-block; }
.op-cta__meta {
  margin: 14px 0 0;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
}
.op-cta__meta a { text-decoration: none; border-bottom: 1px solid rgba(255,255,255,0.25); }
.op-qr {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.op-qr__frame {
  background: #fff;
  padding: 10px;
  border-radius: 8px;
  line-height: 0;
}
.op-qr__frame img { width: 108px; height: 108px; display: block; }
.op-qr__caption {
  font-family: var(--display);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin: 0;
}

@media screen and (max-width: 820px) {
  .op { padding: 80px 24px 40px; }
  .op-hero { grid-template-columns: 1fr; row-gap: 24px; }
  .op-hero__text     { grid-column: 1; grid-row: 1; }
  .op-hero__visual   { grid-column: 1; grid-row: 2; }
  .op-hero__features { grid-column: 1; grid-row: 3; padding-top: 0; }
  .op-benefits__list { grid-template-columns: 1fr; }
  .op-scene { padding: 32px 20px; }
  .op-scene .op-benefits { max-width: 100%; padding: 18px 20px; margin: 0 0 32px; }
  .op-steps { grid-template-columns: 1fr; }
  .op-quotes { grid-template-columns: 1fr; }
  .op-offering { grid-template-columns: 1fr; gap: 18px; }
  .op-founders { grid-template-columns: 1fr; }
  .op-founders__photo { max-width: 240px; }
  .op-cta { grid-template-columns: 1fr; gap: 24px; }
  .op-qr { align-items: flex-start; }
}

@media print {
  @page { size: A4 portrait; margin: 12mm; }
  html, body { background: #fff !important; color: #111 !important; }
  body { font-size: 10pt; line-height: 1.4; }
  -webkit-print-color-adjust: exact;
  print-color-adjust: exact;
  .site-nav, .ocfb-footer { display: none !important; }
  .op { max-width: none; margin: 0; padding: 0; }
  .op-brand { margin-bottom: 14px; gap: 8px 14px; }
  .op-brand__bh-text { font-size: 13pt; color: #111; }
  .op-brand__bh-logo { height: 24px; }
  .op-brand img.mark { height: 22px; }
  .op-brand img.name { height: 26px; filter: none; opacity: 1; }
  .op-hero { margin-bottom: 14px; column-gap: 18px; }
  .op-hero__eyebrow { font-size: 7pt; color: #555; margin-bottom: 6px; }
  .op-hero__h1 { font-size: 17pt; line-height: 1.1; margin-bottom: 8px; color: #111; }
  .op-hero__sub { font-size: 10pt; color: #222; margin-bottom: 6px; }
  .op-hero__product { font-size: 8.5pt; color: #555; margin-bottom: 0; }
  .op-hero__features { padding-top: 10px; }
  .op-hero__features-caption { font-size: 7pt; color: #555; margin-top: 4px; }
  .op-hero__features img.op-hero__features-img--screen { display: none; }
  .op-hero__features img.op-hero__features-img--print  { display: block; }
  .op-scene { background-image: none; padding: 0; margin-bottom: 14px; border-radius: 0; }
  .op-scene::before { display: none; }
  .op-scene .op-benefits { max-width: 100%; padding: 0; margin: 0 0 14px; background: transparent; border: 0; backdrop-filter: none; }
  .op-scene .op-step { background: #fafafa; backdrop-filter: none; border-color: #d8d8d8; }
  .op-benefits__title { font-size: 7pt; color: #555; margin-bottom: 8px; }
  .op-benefits__list { column-gap: 18px; row-gap: 8px; }
  .op-benefit { grid-template-columns: 14px 1fr; gap: 8px; break-inside: avoid; }
  .op-benefit__check { color: var(--accent) !important; font-size: 9pt; }
  .op-benefit__title { font-size: 9.5pt; color: #111; }
  .op-steps { gap: 10px; margin-bottom: 16px; }
  .op-step { padding: 14px; border-color: #d8d8d8; background: #fafafa; break-inside: avoid; }
  .op-step__num { background: var(--accent) !important; color: #fff !important; width: 20px; height: 20px; font-size: 9pt; top: -8px; }
  .op-step__title { color: #555; font-size: 7.5pt; }
  .op-step__lead { font-size: 11pt; color: #111; }
  .op-step__body { font-size: 9pt; color: #333; }
  .op-quotes { gap: 12px; margin-bottom: 14px; }
  .op-quote { padding: 10px 12px; border-color: #d8d8d8; border-left: 2px solid var(--accent); background: #fafafa; break-inside: avoid; }
  .op-quote__text { font-size: 9.5pt; color: #111; margin-bottom: 6px; }
  .op-quote__by { font-size: 7pt; color: #555; }
  .op-offering { gap: 10px; margin-bottom: 16px; padding: 12px 0; border-color: #d8d8d8; break-inside: avoid; }
  .op-offer__icon { width: 28px; height: 28px; color: var(--accent) !important; }
  .op-offer__label { font-size: 9.5pt; color: #111; }
  .op-founders { margin-bottom: 16px; gap: 18px; grid-template-columns: 130px 1fr; break-inside: avoid; }
  .op-founders__photo { filter: none; }
  .op-founders__quote { font-size: 12pt; color: #111; }
  .op-founders__by { color: #555; }
  .op-cta { padding-top: 14px; border-color: #d8d8d8; gap: 24px; break-inside: avoid; }
  .op-cta__h { font-size: 13pt; color: #111; margin-bottom: 8px; }
  .platform-cta-btn { background: var(--accent) !important; color: #fff !important; border-color: var(--accent) !important; padding: 8px 16px; font-size: 9.5pt; }
  .op-cta__meta { font-size: 9pt; color: #333; }
  .op-qr__frame { padding: 4px; background: #fff; border: 1px solid #d8d8d8; }
  .op-qr__frame img { width: 84px; height: 84px; }
}
