/* ═══════════════════════════════════════════════════════════════
   KINAR — Design System
   Palette: crimson (#981B30), charcoal, white, grey — no blues/greens
   ═══════════════════════════════════════════════════════════════ */

:root {
  --charcoal:      #1F1F1F;
  --charcoal-mid:  #1F1F1F;
  --steel:         #3A3A3A;
  --steel-light:   #808087;

  /* Deep crimson — sole brand/action colour */
  --accent:        #981B30;
  --accent-hover:  #5A0F1C;

  --bg:            #FFFFFF;
  --bg-soft:       #F5EBDA;
  --bg-muted:      #EDE5D8;
  --border:        #E0E0E2;
  --border-dark:   #C8C8CA;

  --text:          #1F1F1F;
  --text-muted:    #5A5A5F;
  --text-light:    #909095;

  --shadow-sm:  0 1px 2px rgba(0,0,0,.05);
  --shadow-md:  0 4px 12px rgba(0,0,0,.07), 0 1px 3px rgba(0,0,0,.04);
  --shadow-lg:  0 12px 32px rgba(0,0,0,.09), 0 4px 8px rgba(0,0,0,.04);
  --shadow-xl:  0 24px 48px rgba(0,0,0,.12);

  --radius-sm:  2px;
  --radius:     4px;
  --radius-lg:  6px;
  --radius-xl:  10px;

  --transition: 0.15s ease;
  --max-w:      1100px;
}

/* ── Reset ─────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
ul { list-style: none; }

/* ── Typography ────────────────────────────────────────────────── */
h1, h2 { font-family: 'Playfair Display', Georgia, serif; font-weight: 700; line-height: 1.15; color: var(--charcoal); }
h3, h4 { font-family: 'Plus Jakarta Sans', system-ui, sans-serif; font-weight: 700; line-height: 1.15; color: var(--charcoal); }
h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); letter-spacing: -0.02em; }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.35rem); letter-spacing: -0.015em; }
h4 { font-size: 1.05rem; letter-spacing: -0.01em; }
p  { color: var(--text); }
.lead { font-size: 1.15rem; line-height: 1.7; color: var(--text-muted); }
.eyebrow {
  font-size: .8rem; font-weight: 600; letter-spacing: .1em;
  text-transform: uppercase; font-variant: small-caps; color: var(--steel); margin-bottom: .5rem;
}

/* ── Layout ────────────────────────────────────────────────────── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 1.5rem; }
.section    { padding: 6rem 0; }
.section-sm { padding: 3.5rem 0; }

/* ── Buttons ───────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .75rem 1.75rem; border-radius: var(--radius-sm);
  font-weight: 600; font-size: .95rem; cursor: pointer;
  border: 2px solid transparent;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), border-color var(--transition);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn:active { transform: translateY(0); }

.btn-primary   { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-hover); }

.btn-green     { background: var(--accent); color: #fff; }
.btn-green:hover { background: var(--accent-hover); }

.btn-outline-white {
  background: transparent; color: #fff;
  border-color: rgba(255,255,255,.5);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,.1); border-color: #fff;
}

.btn-outline-dark {
  background: transparent; color: var(--charcoal);
  border-color: var(--charcoal);
}
.btn-outline-dark:hover {
  background: var(--charcoal); color: #fff;
}

.btn-lg { padding: 1rem 2.25rem; font-size: 1.05rem; border-radius: var(--radius); }
.btn-sm { padding: .5rem 1rem; font-size: .85rem; }

/* ── Nav ────────────────────────────────────────────────────────── */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.96); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 1.5rem;
}
.nav-inner {
  max-width: var(--max-w); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
}
.nav-logo {
  display: flex; align-items: center; gap: .75rem;
  font-weight: 800; font-size: 1.15rem; color: var(--charcoal);
}
.nav-logo-img { height: 36px; width: auto; }
.nav-logo-text { font-family: 'Josefin Sans', sans-serif; font-weight: 700; font-size: 1.15rem; text-transform: uppercase; letter-spacing: .12em; line-height: 1; margin-top: 9px; margin-left: -4px; }
.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-links a { font-family: 'Josefin Sans', sans-serif; font-size: .8rem; font-weight: 600; color: var(--text-muted); transition: color var(--transition); letter-spacing: .08em; text-transform: uppercase; }
.nav-links a:hover { color: var(--charcoal); }
.nav-links a.nav-active { color: var(--accent); }
.nav-cta { display: flex; align-items: center; gap: 1.25rem; }

.nav-lang {
  display: flex; align-items: center; gap: .25rem;
  font-size: .75rem; font-weight: 600; letter-spacing: .05em;
}
.nav-lang-item {
  color: var(--text-light); cursor: pointer;
  transition: color var(--transition); padding: .15rem .05rem;
}
.nav-lang-item:hover { color: var(--charcoal); }
.nav-lang-item.active { color: var(--accent); }
.nav-lang-item.nav-lang-disabled { opacity: .3; cursor: default; pointer-events: none; }
.nav-lang-sep { color: var(--border-dark); font-size: .6rem; user-select: none; }

.nav-login {
  width: 32px; height: 32px; border-radius: 50%;
  border: 1.5px solid var(--border-dark);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted);
  transition: border-color var(--transition), color var(--transition), background var(--transition);
}
.nav-login:hover { border-color: var(--charcoal); color: var(--charcoal); background: var(--bg-soft); }

/* ── Landing split ─────────────────────────────────────────────── */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - 64px);
}
.split-side {
  display: flex; flex-direction: column;
  justify-content: center; padding: 5rem 5% 5rem 6%;
  position: relative; overflow: hidden;
}
.split-seller { background: var(--bg-soft); }
.split-buyer  { background: var(--charcoal); }

.split-badge {
  display: inline-flex; align-items: center; gap: .4rem;
  padding: .35rem .85rem; border-radius: 99px;
  font-size: .78rem; font-weight: 600; letter-spacing: .04em;
  text-transform: uppercase; margin-bottom: 1.5rem;
}
.split-seller .split-badge { background: rgba(152,27,48,.1); color: var(--accent); }
.split-buyer  .split-badge { background: rgba(255,255,255,.12); color: rgba(255,255,255,.85); }

.split-seller h2 { font-size: clamp(1.75rem, 3.5vw, 2.75rem); color: var(--charcoal); }
.split-buyer  h2 { font-size: clamp(1.75rem, 3.5vw, 2.75rem); color: #fff; }

.split-seller .lead { color: var(--text-muted); margin: 1rem 0 2rem; }
.split-buyer  .lead { color: rgba(255,255,255,.7); margin: 1rem 0 2rem; }

.split-benefits { display: flex; flex-direction: column; gap: .75rem; margin-bottom: 2.5rem; }
.split-benefit {
  display: flex; align-items: flex-start; gap: .6rem;
  font-size: .95rem;
}
.split-seller .split-benefit { color: var(--text); }
.split-buyer  .split-benefit { color: rgba(255,255,255,.85); }
.split-benefit-icon {
  flex-shrink: 0; width: 20px; height: 20px; margin-top: 2px;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: .7rem; font-weight: 700;
}
.split-seller .split-benefit-icon { background: rgba(152,27,48,.1); color: var(--accent); }
.split-buyer  .split-benefit-icon { background: rgba(255,255,255,.15); color: #fff; }

.split-divider {
  position: absolute; left: 0; top: 0; bottom: 0; width: 2px;
  background: linear-gradient(to bottom, transparent, var(--border), transparent);
}
.split-buyer .split-stat {
  display: flex; gap: 2rem; margin-top: 1.5rem; padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,.12);
}
.split-stat-item { text-align: center; }
.split-stat-num { font-size: 1.5rem; font-weight: 800; color: #fff; }
.split-stat-label { font-size: .75rem; color: rgba(255,255,255,.5); text-transform: uppercase; letter-spacing: .06em; }

/* ── Seller hero ────────────────────────────────────────────────── */
.seller-hero {
  background: var(--charcoal);
  color: #fff; padding: 6rem 1.5rem; text-align: center;
}
.seller-hero h1 { color: #fff; margin-bottom: 1rem; }
.seller-hero .lead { color: rgba(255,255,255,.8); max-width: 640px; margin: 0 auto 2.5rem; }
.seller-hero-badges { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-top: 1.5rem; }
.seller-hero-badge {
  display: flex; align-items: center; gap: .4rem;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2);
  border-radius: 99px; padding: .4rem 1rem; font-size: .82rem; color: rgba(255,255,255,.85);
}

/* ── How it works ───────────────────────────────────────────────── */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 3rem; }
.step { text-align: center; padding: 2rem 1.5rem; }
.step-num {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--charcoal); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; font-weight: 800; margin: 0 auto 1.25rem;
}
.step h3 { font-size: 1.1rem; margin-bottom: .5rem; }
.step p { font-size: .92rem; color: var(--text-muted); }

/* ── Feature grid ───────────────────────────────────────────────── */
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 3rem; }
.feature-card {
  background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 2rem;
  transition: transform var(--transition), box-shadow var(--transition);
}
.feature-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.feature-icon { font-size: 2rem; margin-bottom: 1rem; }
.feature-card h3 { font-size: 1.05rem; margin-bottom: .5rem; }
.feature-card p { font-size: .9rem; color: var(--text-muted); }

/* ── Cards ──────────────────────────────────────────────────────── */
.card {
  background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.card-img { width: 100%; height: 200px; object-fit: cover; background: var(--bg-muted); }
.card-img-placeholder {
  width: 100%; height: 200px;
  background: var(--charcoal-mid);
  display: flex; align-items: center; justify-content: center;
  font-size: 2.5rem;
}
.card-body { padding: 1.5rem; }
.card-meta { font-size: .8rem; color: var(--text-light); margin-bottom: .5rem; }
.card-title { font-size: 1.05rem; font-weight: 700; color: var(--charcoal); margin-bottom: .5rem; line-height: 1.3; }
.card-excerpt { font-size: .88rem; color: var(--text-muted); line-height: 1.5; }
.card-link { display: flex; align-items: center; gap: .3rem; margin-top: 1rem; font-size: .85rem; font-weight: 600; color: var(--accent); }

/* ── Article grid ───────────────────────────────────────────────── */
.article-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }

/* ── Article body ───────────────────────────────────────────────── */
.article-hero {
  background: var(--charcoal);
  padding: 6rem 1.5rem 4rem; color: #fff;
}
.article-hero h1 { color: #fff; max-width: 760px; margin: .75rem 0 1rem; }
.article-hero .lead { color: rgba(255,255,255,.8); max-width: 640px; }
.article-meta { font-size: .82rem; color: rgba(255,255,255,.55); margin-top: 1rem; }

.article-body { max-width: 760px; margin: 0 auto; padding: 3.5rem 1.5rem; }
.article-body h2 { margin: 2.5rem 0 1rem; }
.article-body h3 { margin: 2rem 0 .75rem; color: var(--steel); }
.article-body p  { margin-bottom: 1.25rem; line-height: 1.75; }
.article-body ul, .article-body ol { margin: 1rem 0 1.5rem 1.5rem; }
.article-body li { margin-bottom: .5rem; line-height: 1.7; }
.article-body strong { color: var(--charcoal); }
.article-body blockquote {
  border-left: 4px solid var(--steel); padding: 1rem 1.5rem;
  background: var(--bg-soft); border-radius: 0 var(--radius) var(--radius) 0;
  margin: 1.5rem 0; color: var(--text-muted); font-style: italic;
}
.article-cta-box {
  background: var(--charcoal);
  color: #fff; border-radius: var(--radius-lg); padding: 2.5rem;
  text-align: center; margin: 3rem 0;
}
.article-cta-box h3 { color: #fff; margin-bottom: .75rem; }
.article-cta-box p { color: rgba(255,255,255,.75); margin-bottom: 1.5rem; }

/* ── Trust strip ────────────────────────────────────────────────── */
.trust-strip {
  background: var(--bg-soft); border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border); padding: 1.25rem 1.5rem;
}
.trust-items { display: flex; gap: 2.5rem; justify-content: center; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: .5rem; font-size: .85rem; color: var(--text-muted); font-weight: 500; }
.trust-icon { font-size: 1rem; }

/* ── Forms ──────────────────────────────────────────────────────── */
.form-card {
  background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--radius-xl); padding: 2.5rem;
  box-shadow: var(--shadow-md); max-width: 640px; margin: 0 auto;
}
.form-group { margin-bottom: 1.25rem; }
.form-label { display: block; font-size: .88rem; font-weight: 600; color: var(--charcoal); margin-bottom: .4rem; }
.form-label .required { color: var(--accent); margin-left: .2rem; }
.form-control {
  width: 100%; padding: .7rem 1rem;
  border: 1.5px solid var(--border); border-radius: var(--radius-sm);
  font-size: .95rem; background: var(--bg-soft);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-control:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(152,27,48,.10); background: var(--bg); }
.form-control::placeholder { color: var(--text-light); }
.form-select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2364748B' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-hint { font-size: .78rem; color: var(--text-light); margin-top: .3rem; }
.form-divider { border: none; border-top: 1px solid var(--border); margin: 1.75rem 0; }
.form-upload-zone {
  border: 2px dashed var(--border-dark); border-radius: var(--radius);
  padding: 2rem; text-align: center; background: var(--bg-soft);
  cursor: pointer; transition: border-color var(--transition), background var(--transition);
}
.form-upload-zone:hover { border-color: var(--accent); background: #F5EBDA; }
.form-upload-icon { font-size: 2rem; margin-bottom: .5rem; }
.form-upload-zone p { font-size: .88rem; color: var(--text-muted); }
.form-upload-zone strong { color: var(--accent); }

/* ── OTP ─────────────────────────────────────────────────────────── */
.otp-input-wrap { display: flex; gap: .75rem; justify-content: center; margin: 2rem 0; }
.otp-digit {
  width: 56px; height: 68px; text-align: center; font-size: 2rem; font-weight: 700;
  border: 2px solid var(--border); border-radius: var(--radius);
  background: var(--bg-soft); color: var(--charcoal);
  transition: border-color var(--transition);
}
.otp-digit:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(152,27,48,.10); }

/* ── Alerts / Flash ──────────────────────────────────────────────── */
.flash-wrap { padding: .75rem 1.5rem; }
.alert {
  display: flex; align-items: center; gap: .75rem;
  padding: .85rem 1.25rem; border-radius: var(--radius-sm);
  font-size: .9rem; margin-bottom: .75rem;
}
.alert-error   { background: #F5EBDA; color: #981B30; border: 1px solid #F5EBDA; }
.alert-success { background: #F5EBDA; color: var(--charcoal); border: 1px solid var(--border-dark); }
.alert-info    { background: #F5EBDA; color: var(--charcoal); border: 1px solid var(--border-dark); }

/* ── Landing page (seller-first layout) ─────────────────────────── */
.lp-hero {
  background: var(--charcoal);
  padding: 7rem 1.5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.lp-hero .eyebrow { color: var(--steel-light); }
.lp-hero h1 { color: #fff; margin: .75rem auto 1.5rem; max-width: 760px; }
.lp-hero .lead { color: rgba(255,255,255,.75); max-width: 600px; margin: 0 auto 2.5rem; }
.lp-hero-cta { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-bottom: 2rem; }
.lp-trust-row {
  display: flex; gap: 1.5rem; justify-content: center; flex-wrap: wrap;
  font-size: .82rem; color: rgba(255,255,255,.45); margin-bottom: 2.5rem;
}
.lp-mountain {
  line-height: 0; margin-top: 1rem;
}
.lp-mountain svg { width: 100%; display: block; }

.lp-proof {
  background: var(--bg);
  padding: 3.5rem 1.5rem;
  border-bottom: 1px solid var(--border);
}
.lp-proof-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 2rem; text-align: center; max-width: var(--max-w); margin: 0 auto;
}
.lp-proof-num   { font-size: 2rem; font-weight: 800; color: var(--charcoal); font-family: 'Plus Jakarta Sans', system-ui, sans-serif; }
.lp-proof-label { font-size: .82rem; color: var(--text-muted); margin-top: .25rem; text-transform: uppercase; letter-spacing: .05em; }

/* ── Buyer light theme ──────────────────────────────────────────── */
.buyer-page { background: var(--bg); min-height: 100vh; color: var(--text); }
.buyer-page p, .buyer-page span, .buyer-page li { color: inherit; }
.buyer-page .nav { background: rgba(255,255,255,.96); border-bottom-color: var(--border); }
.buyer-page .nav-links a { color: var(--text-muted); }
.buyer-page .nav-links a:hover { color: var(--charcoal); }
.buyer-page .nav-links a.nav-active { color: var(--accent); }
.buyer-page .nav-logo { color: var(--charcoal); }

.buyer-hero {
  padding: 7rem 1.5rem 5rem; text-align: center;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  position: relative; overflow: hidden;
}
.buyer-hero h1 { color: var(--charcoal); position: relative; }
.buyer-hero .lead { color: var(--text-muted); max-width: 560px; margin: 1rem auto 2rem; position: relative; }
.kinar-tag {
  display: inline-block; background: rgba(152,27,48,.08);
  border: 1px solid rgba(152,27,48,.2); color: var(--accent);
  padding: .35rem .85rem; border-radius: var(--radius-sm); font-size: .78rem;
  font-weight: 600; letter-spacing: .06em; text-transform: uppercase; margin-bottom: 1.25rem;
}
.buyer-features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 4rem; }
.buyer-feature-card {
  background: var(--bg-soft); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 1.75rem;
  transition: transform var(--transition), box-shadow var(--transition);
}
.buyer-feature-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.buyer-feature-icon { font-size: 1.75rem; margin-bottom: 1rem; }
.buyer-feature-card h3 { color: var(--charcoal); font-size: 1rem; margin-bottom: .5rem; }
.buyer-feature-card p { color: var(--text-muted); font-size: .88rem; }

.buyer-waitlist-card {
  background: var(--bg-soft); border: 1px solid var(--border);
  border-radius: var(--radius-xl); padding: 2.5rem; max-width: 480px; margin: 0 auto;
}
.buyer-waitlist-card .form-control { background: var(--bg); border-color: var(--border); color: var(--text); }
.buyer-waitlist-card .form-control::placeholder { color: var(--text-light); }
.buyer-waitlist-card .form-control:focus { border-color: var(--accent); background: var(--bg); }
.buyer-waitlist-card .form-label { color: var(--text-muted); }

/* ── Stats banner ───────────────────────────────────────────────── */
.stats-banner { background: var(--charcoal-mid); color: #fff; padding: 3.5rem 1.5rem; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; text-align: center; }
.stat-num { font-size: 2.25rem; font-weight: 800; color: #fff; }
.stat-label { font-size: .82rem; color: rgba(255,255,255,.55); text-transform: uppercase; letter-spacing: .06em; margin-top: .25rem; }

/* ── CTA section ────────────────────────────────────────────────── */
.cta-section {
  background: var(--charcoal-mid);
  color: #fff; padding: 6rem 1.5rem; text-align: center;
}
.cta-section h2 { color: #fff; margin-bottom: 1rem; }
.cta-section .lead { color: rgba(255,255,255,.75); max-width: 560px; margin: 0 auto 2.5rem; }

/* ── Footer ──────────────────────────────────────────────────────── */
.footer {
  background: var(--charcoal); color: rgba(255,255,255,.55);
  padding: 3rem 1.5rem 1.5rem;
}
.footer p, .footer span { color: rgba(255,255,255,.55); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 2.5rem; }
.footer-brand { }
.footer-logo { display: flex; align-items: center; gap: .6rem; font-weight: 800; font-size: 1.1rem; color: #fff; margin-bottom: .75rem; }
.footer-logo-img { height: 32px; width: auto; }
.footer-logo-text { font-family: 'Josefin Sans', sans-serif; font-weight: 700; font-size: 1.1rem; text-transform: uppercase; letter-spacing: .12em; line-height: 1; margin-top: 9px; margin-left: -4px; }
.footer-tagline { font-size: .85rem; line-height: 1.6; color: rgba(255,255,255,.55); }
.footer-col h4 { color: rgba(255,255,255,.8); font-size: .82rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 1rem; }
.footer-col ul { display: flex; flex-direction: column; gap: .5rem; }
.footer-col a { font-size: .88rem; color: rgba(255,255,255,.45); transition: color var(--transition); }
.footer-col a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08); padding-top: 1.25rem;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem;
}
.footer-bottom p { font-size: .78rem; color: rgba(255,255,255,.4); }
.footer-made { font-size: .78rem; display: flex; align-items: center; gap: .4rem; color: rgba(255,255,255,.4); }

/* ── Breadcrumb ──────────────────────────────────────────────────── */
.breadcrumb { padding: .875rem 0; font-size: .82rem; color: var(--text-light); }
.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--charcoal); }
.breadcrumb span { margin: 0 .4rem; }

/* ── Progress steps ─────────────────────────────────────────────── */
.progress-steps { display: flex; gap: 0; margin-bottom: 2.5rem; }
.progress-step { flex: 1; display: flex; flex-direction: column; align-items: center; position: relative; }
.progress-step:not(:last-child)::after {
  content: ''; position: absolute; top: 16px; left: 50%; right: -50%;
  height: 2px; background: var(--border); z-index: 0;
}
.progress-step.active:not(:last-child)::after { background: var(--accent); }
.progress-step-dot {
  width: 32px; height: 32px; border-radius: 50%;
  border: 2px solid var(--border); background: var(--bg);
  display: flex; align-items: center; justify-content: center;
  font-size: .8rem; font-weight: 700; color: var(--text-light);
  z-index: 1; position: relative;
}
.progress-step.active .progress-step-dot { border-color: var(--accent); background: var(--accent); color: #fff; }
.progress-step.done .progress-step-dot { border-color: var(--charcoal-mid); background: var(--charcoal-mid); color: #fff; }
.progress-step-label { font-size: .75rem; color: var(--text-light); margin-top: .5rem; text-align: center; }
.progress-step.active .progress-step-label { color: var(--accent); font-weight: 600; }

/* ── Responsive ──────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .split { grid-template-columns: 1fr; min-height: auto; }
  .split-side { padding: 4rem 1.5rem; }
  .split-divider { display: none; }
  .steps { grid-template-columns: 1fr; }
  .features { grid-template-columns: 1fr; }
  .article-grid { grid-template-columns: repeat(2, 1fr); }
  .buyer-features { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .article-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .otp-digit { width: 44px; height: 56px; font-size: 1.5rem; }
}

/* ═══════════════════════════════════════════════════════════════
   KINAR — Additional Components (public web)
   ═══════════════════════════════════════════════════════════════ */

/* ── Buttons: missing variants ──────────────────────────────────── */
.btn-outline {
  background: transparent; color: var(--charcoal);
  border-color: var(--border-dark);
}
.btn-outline:hover { background: var(--bg-soft); border-color: var(--charcoal); }

.btn-outline-light {
  background: transparent; color: rgba(255,255,255,.9);
  border-color: rgba(255,255,255,.35);
}
.btn-outline-light:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.7); }

.btn-ghost-light {
  background: transparent; color: rgba(255,255,255,.6);
  border-color: transparent; font-weight: 500;
}
.btn-ghost-light:hover { color: #fff; }

.btn-xl { padding: 1.2rem 2.75rem; font-size: 1.15rem; border-radius: var(--radius); }
.btn-full { width: 100%; justify-content: center; }

/* ── Section helpers ────────────────────────────────────────────── */
.section-light { background: var(--bg); }
.section-charcoal  { background: var(--charcoal-mid); }
.section-charcoal p, .section-charcoal span, .section-charcoal li { color: inherit; }
.hero p, .hero span, .hero li { color: inherit; }
.page-hero p, .page-hero span { color: inherit; }
.seller-hero p, .seller-hero span { color: inherit; }

.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-header h2 { margin-bottom: .75rem; }
.section-header p  { color: var(--text-muted); max-width: 560px; margin: 0 auto; }
.section-header-light h2 { color: #fff; }
.section-header-light p  { color: rgba(255,255,255,.65); }

.section-cta { text-align: center; margin-top: 3rem; }

/* Final CTA block — white/grey, elegant */
.section-cta-block {
  background: var(--bg-soft);
  border-top: 1px solid var(--border);
  text-align: center; padding: 6rem 1.5rem;
}
.section-cta-block h2 { color: var(--charcoal); margin-bottom: .75rem; }
.section-cta-block p  { color: var(--text-muted); margin-bottom: 2rem; }

.cta-inline {
  display: flex; align-items: center; justify-content: space-between;
  gap: 2rem; flex-wrap: wrap;
}
.cta-inline h2 { color: var(--charcoal); }
.cta-inline p  { color: var(--text-muted); margin-top: .5rem; }

.container-narrow { max-width: 760px; margin: 0 auto; padding: 0 1.5rem; }

/* ── Landing: split layout ─────────────────────────────────────── */
.landing-page { overflow-x: hidden; }

.split-landing {
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: 100vh;
}
.split-left  { background: var(--bg-soft); }
.split-right { background: var(--charcoal); }

.split-inner {
  max-width: 560px; padding: 5rem 4rem;
  display: flex; flex-direction: column; justify-content: center;
  margin: 0 auto;
}

.split-logo {
  display: flex; align-items: center; gap: .6rem;
  font-weight: 800; font-size: 1.1rem; color: var(--charcoal);
  margin-bottom: 2rem;
}
.split-logo-light { color: rgba(255,255,255,.9); }
.split-logo .split-logo-mark,
.split-logo-light .split-logo-mark {
  width: 34px; height: 34px; border-radius: var(--radius-sm);
  background: var(--accent); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: .85rem; font-weight: 900;
}

.split-badge {
  display: inline-flex; align-items: center;
  padding: .3rem .8rem; border-radius: var(--radius-sm);
  font-size: .72rem; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; margin-bottom: 1.5rem;
  background: var(--bg-muted); color: var(--text-muted);
  border: 1px solid var(--border-dark);
  width: fit-content;
}
.split-badge-light {
  background: rgba(255,255,255,.10); color: rgba(255,255,255,.7);
  border-color: rgba(255,255,255,.2);
}

.split-headline { font-size: clamp(1.9rem, 3.5vw, 2.75rem); margin-bottom: 1.25rem; }
.split-headline-light { color: #fff; }

.split-sub { color: var(--text-muted); line-height: 1.7; margin-bottom: 2rem; }
.split-sub-light { color: rgba(255,255,255,.65); }

.split-features {
  display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2.5rem;
}
.split-features li {
  display: flex; align-items: flex-start; gap: .85rem;
}
.split-features-light li strong { color: rgba(255,255,255,.9); }
.split-features-light li span   { color: rgba(255,255,255,.55); }
.split-features li div { display: flex; flex-direction: column; }
.split-features li strong { font-size: .95rem; color: var(--charcoal); }
.split-features li span   { font-size: .85rem; color: var(--text-muted); margin-top: .1rem; }
.feature-icon { font-size: 1.3rem; flex-shrink: 0; margin-top: .15rem; }

.split-cta { display: flex; flex-wrap: wrap; gap: .75rem; margin-bottom: 2rem; }

.split-trust {
  display: flex; flex-wrap: wrap; gap: .75rem;
  font-size: .78rem; color: var(--text-light);
}
.split-trust span { display: flex; align-items: center; }
.split-trust-light { color: rgba(255,255,255,.4); }

.landing-proof {
  background: var(--bg); border-top: 1px solid var(--border);
  padding: 3rem 1.5rem;
}
.proof-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 2rem; text-align: center;
}
.proof-number { font-size: 2rem; font-weight: 800; color: var(--charcoal); }
.proof-label  { font-size: .82rem; color: var(--text-muted); margin-top: .25rem; text-transform: uppercase; letter-spacing: .05em; }

.footer-minimal { padding: 1.5rem; }
.footer-links { display: flex; gap: 1rem; }
.footer-links a { font-size: .78rem; color: rgba(255,255,255,.4); transition: color var(--transition); }
.footer-links a:hover { color: rgba(255,255,255,.8); }

/* ── Seller home: hero ──────────────────────────────────────────── */
.hero {
  background: var(--bg);
  padding: 6rem 1.5rem;
  border-bottom: 1px solid var(--border);
}
.hero-inner {
  max-width: var(--max-w); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 420px; gap: 4rem; align-items: center;
}
.hero-badge {
  display: inline-block; background: rgba(152,27,48,.08);
  color: var(--accent); padding: .35rem .9rem;
  border-radius: 99px; font-size: .75rem; font-weight: 600;
  letter-spacing: .05em; text-transform: uppercase; margin-bottom: 1.25rem;
}
.hero h1     { color: var(--charcoal); margin-bottom: 1.25rem; }
.hero-sub    { color: var(--text-muted); font-size: 1.05rem; line-height: 1.7; margin-bottom: 2rem; }
.hero-cta    { display: flex; flex-wrap: wrap; gap: .75rem; margin-bottom: 1.75rem; }
.hero-trust  { display: flex; flex-wrap: wrap; gap: 1.25rem; font-size: .82rem; color: var(--text-light); }

.report-mockup {
  display: flex; justify-content: center;
  /* extra room so the stacked pages peeking right/bottom are not clipped */
  padding-right: 18px; padding-bottom: 14px;
}
.report-cover {
  position: relative; z-index: 1;
  width: 300px; background: #fff; border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl); padding: 2rem 1.75rem;
  display: flex; flex-direction: column; gap: 0;
  /* red spine — the "binding" on the left */
  border-left: 5px solid var(--accent);
}
/* page 2 — one step behind */
.report-cover::before {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background: #EDE5D8; border-radius: var(--radius-lg);
  transform: translate(8px, 6px);
  box-shadow: 2px 3px 10px rgba(0,0,0,.07);
}
/* page 3 — furthest back */
.report-cover::after {
  content: ''; position: absolute; inset: 0; z-index: -2;
  background: #E0D6C8; border-radius: var(--radius-lg);
  transform: translate(15px, 11px);
  box-shadow: 2px 3px 8px rgba(0,0,0,.05);
}
.report-cover-header {
  display: flex; align-items: center; gap: .85rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--border);
}
.report-cover-logo {
  width: 40px; height: 40px; background: var(--accent); color: #fff;
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
  font-size: 1rem; font-weight: 900; flex-shrink: 0;
}
.report-cover-title { font-size: 1rem; font-weight: 800; color: var(--charcoal); line-height: 1.2; }
.report-cover-sub   { font-size: .75rem; color: var(--text-muted); margin-top: .1rem; }

.report-checklist {
  list-style: none; display: flex; flex-direction: column; gap: 1rem;
  margin: 0; padding: 0;
}
.report-checklist li {
  display: flex; align-items: flex-start; gap: .65rem;
}
.report-check {
  color: var(--accent); font-weight: 800; font-size: .9rem;
  flex-shrink: 0; margin-top: .05rem;
}
.report-checklist strong {
  display: block; font-size: .85rem; color: var(--charcoal); font-weight: 700;
}
.report-checklist span {
  display: block; font-size: .75rem; color: var(--text-muted); line-height: 1.4;
}
.report-cover-badge {
  margin-top: 1.5rem; padding-top: 1.25rem;
  border-top: 1px solid var(--border);
  font-size: .72rem; color: var(--text-light);
  text-align: center; letter-spacing: .01em;
}

/* ── Steps grid ─────────────────────────────────────────────────── */
.steps-grid {
  display: grid; grid-template-columns: 1fr 40px 1fr 40px 1fr; gap: 0;
  align-items: start;
}
.step { text-align: center; padding: 2rem 1.5rem; }
.step-number {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--charcoal); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: .95rem; font-weight: 800; margin: 0 auto .75rem;
}
.step-icon   { font-size: 2rem; height: 3rem; margin-bottom: 1rem; display: flex; align-items: center; justify-content: center; }
.step-icon img { height: 3rem; width: auto; }
.step h3     { margin-bottom: .5rem; }
.step p      { font-size: .9rem; color: var(--text-muted); }
.step-connector {
  display: flex; align-items: flex-start; justify-content: center;
  padding-top: 3.5rem; color: var(--border-dark); font-size: 1.5rem;
}
.step-connector::before { content: '→'; }

/* ── Report contents ────────────────────────────────────────────── */
.report-contents-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
}
.report-content-item {
  display: flex; align-items: flex-start; gap: 1rem;
  padding: 1.5rem; background: var(--bg-soft);
  border: 1px solid var(--border); border-radius: var(--radius);
}
.rc-icon { font-size: 1.5rem; flex-shrink: 0; }
.report-content-item strong { display: block; color: var(--charcoal); font-size: .95rem; margin-bottom: .35rem; }
.report-content-item p { font-size: .85rem; color: var(--text-muted); }

/* ── Trust grid ─────────────────────────────────────────────────── */
.trust-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.5rem;
  text-align: center;
}
.trust-grid .trust-item { }
.trust-grid .trust-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.trust-grid h3 { color: #fff; margin-bottom: .75rem; }
.trust-grid p  { color: rgba(255,255,255,.6); font-size: .9rem; line-height: 1.65; }

/* ── Article cards ──────────────────────────────────────────────── */
.articles-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem;
}
.articles-grid-full { grid-template-columns: repeat(2, 1fr); }

.article-card {
  background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.article-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.article-card-img {
  height: 180px; background-size: cover; background-position: center;
}
.article-card-img-placeholder {
  background: var(--bg-soft);
  display: flex; align-items: center; justify-content: center;
  font-size: 2.5rem;
}

.article-card-body { padding: 1.5rem; }
.article-card-h2 { font-size: 1.1rem; }
.article-date { font-size: .78rem; color: var(--text-light); margin-bottom: .5rem; }
.article-card-body h3 { margin-bottom: .5rem; }
.article-card-body h3 a, .article-card-h2 a { color: var(--charcoal); transition: color var(--transition); }
.article-card-body h3 a:hover, .article-card-h2 a:hover { color: var(--accent); }
.article-excerpt { font-size: .88rem; color: var(--text-muted); line-height: 1.55; margin-bottom: .75rem; }
.article-read-more { font-size: .85rem; font-weight: 600; color: var(--accent); }

/* ── Article page ───────────────────────────────────────────────── */
.article-page { padding-bottom: 4rem; }
.article-header { margin: 2rem 0 2.5rem; }
.article-header h1 { margin-bottom: 1rem; }
.article-lead { font-size: 1.1rem; color: var(--text-muted); line-height: 1.7; }
.article-hero-img { margin: 2rem 0; border-radius: var(--radius-lg); overflow: hidden; }
.article-hero-img img { width: 100%; height: 400px; object-fit: cover; }

.article-body { margin: 2.5rem 0; }
.article-body h2 { margin: 2.5rem 0 1rem; padding-bottom: .5rem; border-bottom: 2px solid var(--border); }
.article-body h3 { margin: 2rem 0 .75rem; color: var(--steel); }
.article-body p  { margin-bottom: 1.25rem; line-height: 1.8; color: var(--text); }
.article-body ul, .article-body ol { margin: 1rem 0 1.5rem 1.5rem; }
.article-body li { margin-bottom: .6rem; line-height: 1.7; }
.article-body strong { color: var(--charcoal); }
.article-body table { width: 100%; border-collapse: collapse; margin: 1.5rem 0; font-size: .9rem; }
.article-body th { background: var(--charcoal); color: #fff; padding: .75rem 1rem; text-align: left; font-weight: 600; }
.article-body td { padding: .7rem 1rem; border-bottom: 1px solid var(--border); }
.article-body tr:nth-child(even) td { background: var(--bg-soft); }
.article-body hr { border: none; border-top: 2px solid var(--border); margin: 2.5rem 0; }
.article-body blockquote {
  border-left: 4px solid var(--steel); padding: 1rem 1.5rem;
  background: var(--bg-soft); border-radius: 0 var(--radius) var(--radius) 0;
  margin: 1.5rem 0; color: var(--text-muted); font-style: italic;
}

.article-cta-box {
  display: flex; align-items: center; gap: 1.5rem;
  background: var(--charcoal);
  border-radius: var(--radius-lg); padding: 2rem 2.5rem; margin: 3rem 0;
  flex-wrap: wrap;
}
.article-cta-icon { font-size: 2rem; flex-shrink: 0; }
.article-cta-box strong { color: #fff; font-size: 1rem; display: block; margin-bottom: .35rem; }
.article-cta-box p { color: rgba(255,255,255,.7); font-size: .9rem; margin: 0; }

.related-heading { margin-bottom: 2rem; }

/* ── Page hero (non-hero pages) ─────────────────────────────────── */
.page-hero {
  background: var(--bg-muted);
  padding: 3.5rem 1.5rem 3rem; color: var(--charcoal);
  border-bottom: 1px solid var(--border);
}
.page-hero h1 { color: var(--charcoal); margin: .75rem 0 1rem; }
.page-hero-sub { color: var(--text-muted); max-width: 600px; font-size: 1.05rem; }
.page-hero .breadcrumb { color: var(--text-light); }
.page-hero .breadcrumb a { color: var(--text-muted); }

/* ── Empty state ────────────────────────────────────────────────── */
.empty-state { text-align: center; padding: 5rem 1.5rem; }
.empty-icon  { font-size: 3rem; margin-bottom: 1rem; }
.empty-state h2 { margin-bottom: .75rem; }
.empty-state p  { color: var(--text-muted); margin-bottom: 2rem; }

/* ── Form page (bericht intake) ─────────────────────────────────── */
.bericht-page { background: #fff; }
.bericht-page .nav { display: none; }
.bericht-page .footer { display: none; }

.form-page {
  display: grid; grid-template-columns: 400px 1fr;
  min-height: 100vh;
}
.form-page-centered {
  display: flex; align-items: center; justify-content: center;
  min-height: 100vh; background: var(--bg); padding: 2rem 1.5rem;
}

.form-page-left {
  background: var(--bg); color: var(--text);
  border-right: 1px solid var(--border);
  padding: 2.5rem 2.5rem 2.5rem;
  display: flex; flex-direction: column;
  position: sticky; top: 0; height: 100vh; overflow-y: auto;
}
.form-page-brand { margin-bottom: 2.5rem; }
.form-page-brand .nav-logo { color: var(--charcoal); }
.form-page-brand .nav-logo-img { height: 36px; }

.form-page-info h1 { color: var(--charcoal); font-size: clamp(1.5rem, 2.5vw, 2rem); margin-bottom: 1rem; }
.form-page-info p  { color: var(--text-muted); font-size: .92rem; line-height: 1.65; margin-bottom: 2rem; }

.form-page-steps {
  display: flex; flex-direction: column; gap: 0; margin-bottom: 2rem;
}
.form-step {
  display: flex; align-items: center; gap: .75rem;
  padding: .6rem 0; font-size: .88rem; color: var(--text-light);
}
.form-step-active { color: var(--charcoal); font-weight: 600; }
.form-step-done   { color: var(--text-muted); }
.form-step-dot {
  width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0;
  border: 2px solid var(--border-dark);
}
.form-step-active .form-step-dot { background: var(--accent); border-color: var(--accent); }
.form-step-done   .form-step-dot { background: var(--text-light); border-color: transparent; }
.form-step-line {
  width: 2px; height: 20px; background: var(--border);
  margin-left: 4px;
}
.form-step-line-done { background: var(--border-dark); }

.form-page-steps-center { flex-direction: row; align-items: center; justify-content: center; margin: 2rem 0; }
.form-page-steps-center .form-step { flex-direction: column; text-align: center; font-size: .78rem; gap: .35rem; }
.form-page-steps-center .form-step-line { width: 40px; height: 2px; margin: 0; margin-bottom: 1.1rem; }

.form-page-trust { display: flex; flex-direction: column; gap: .65rem; margin-top: auto; }
.trust-point { display: flex; align-items: flex-start; gap: .6rem; font-size: .85rem; color: var(--text-muted); }
.trust-check { color: var(--accent); font-weight: 700; flex-shrink: 0; }

.form-page-right {
  background: var(--bg); padding: 3rem 3rem 3rem;
  overflow-y: auto;
  display: flex; align-items: flex-start; justify-content: center;
}

.form-card {
  background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--radius-xl); padding: 2.5rem;
  box-shadow: var(--shadow-sm); width: 100%; max-width: 640px;
}
.form-card-narrow { max-width: 480px; width: 100%; text-align: center; }
.form-card h2    { margin-bottom: 1.75rem; }
.form-card-logo  { display: flex; justify-content: center; margin-bottom: 1.5rem; }
.form-card-title { font-size: 1.6rem; margin-bottom: .5rem; }
.form-card-sub   { color: var(--text-muted); margin-bottom: 1.5rem; font-size: .92rem; line-height: 1.6; }

/* intake form fields */
.intake-form .form-group { margin-bottom: 1.25rem; }
.intake-form label {
  display: block; font-size: .85rem; font-weight: 600;
  color: var(--charcoal); margin-bottom: .4rem;
}
.intake-form .req { color: var(--accent); margin-left: .15rem; }
.intake-form input,
.intake-form select,
.intake-form textarea {
  width: 100%; padding: .7rem 1rem;
  border: 1.5px solid var(--border); border-radius: var(--radius-sm);
  font-size: .93rem; background: var(--bg);
  transition: border-color var(--transition), box-shadow var(--transition);
  color: var(--text);
}
.intake-form input:focus,
.intake-form select:focus,
.intake-form textarea:focus {
  outline: none; border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(152,27,48,.08); background: var(--bg);
}
.intake-form select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2364748B' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 1rem center;
  padding-right: 2.5rem;
}
.form-hint { font-size: .78rem; color: var(--text-light); margin-top: .3rem; }
.form-row  { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.upload-zone {
  border: 2px dashed var(--border-dark); border-radius: var(--radius);
  background: var(--bg); cursor: pointer; position: relative;
  transition: border-color var(--transition), background var(--transition);
  overflow: hidden;
}
.upload-zone:hover, .upload-zone.drag-over { border-color: var(--accent); background: #F5EBDA; }
.upload-zone.has-files { border-color: var(--charcoal-mid); }
.upload-input {
  position: absolute; inset: 0; opacity: 0; cursor: pointer; width: 100%; height: 100%;
}
.upload-content { padding: 2rem; text-align: center; pointer-events: none; }
.upload-icon    { font-size: 2.5rem; margin-bottom: .5rem; }
.upload-text    { font-size: .92rem; color: var(--text-muted); margin-bottom: .4rem; }
.upload-browse  { color: var(--accent); font-weight: 600; }
.upload-hint    { font-size: .78rem; color: var(--text-light); }
.upload-file-list { padding: 0 1rem 1rem; pointer-events: none; }
.upload-file-item { font-size: .82rem; color: var(--charcoal); padding: .25rem 0; }

.form-disclaimer { font-size: .78rem; color: var(--text-light); line-height: 1.6; margin: 1rem 0; }
.form-disclaimer a { color: var(--accent); }

/* ── OTP page ───────────────────────────────────────────────────── */
.otp-icon { font-size: 3rem; margin-bottom: 1rem; }
.otp-digits {
  display: flex; gap: .65rem; justify-content: center; margin: 1.75rem 0 2rem;
}
.otp-hints { margin-top: 1.5rem; }
.otp-hints p { font-size: .82rem; color: var(--text-muted); margin-bottom: .35rem; }
.link-muted { font-size: .82rem; color: var(--text-muted); }
.link-muted:hover { color: var(--charcoal); }
.otp-generating { margin-top: 1.5rem; text-align: center; }
.otp-generating p { font-size: .88rem; color: var(--text-muted); margin-top: .75rem; }

.spinner {
  width: 28px; height: 28px; border-radius: 50%;
  border: 2px solid var(--border);
  border-top-color: var(--accent);
  animation: spin .8s linear infinite;
  margin: 0 auto;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ── Buyer page ─────────────────────────────────────────────────── */
.buyer-page .nav { background: rgba(28,28,30,.9); border-bottom-color: rgba(255,255,255,.08); }
.buyer-page .nav-links a  { color: rgba(255,255,255,.55); }
.buyer-page .nav-links a:hover { color: #fff; }
.buyer-page .nav-logo { color: #fff; }

.buyer-hero-inner {
  display: grid; grid-template-columns: 1fr 460px; gap: 4rem;
  align-items: center; max-width: var(--max-w); margin: 0 auto;
  position: relative;
}
.buyer-hero-text { }
.buyer-badge {
  display: inline-block; background: rgba(152,27,48,.08);
  border: 1px solid rgba(152,27,48,.2); color: var(--accent);
  padding: .35rem .9rem; border-radius: var(--radius-sm); font-size: .75rem;
  font-weight: 600; letter-spacing: .05em; text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.buyer-hero-highlight { color: var(--accent); }
.buyer-hero-sub { color: var(--text-muted); font-size: 1.05rem; line-height: 1.7; margin-bottom: 2rem; }
.buyer-hero-cta { display: flex; flex-wrap: wrap; gap: .75rem; }

/* Platform mockup card */
.platform-mockup {
  background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-xl);
}
.pm-header {
  background: var(--bg-muted); padding: .65rem 1rem;
  display: flex; align-items: center; gap: .5rem;
}

/* ── Mockup tooltips (JS-driven, see buyer page scripts) ─────────────── */
[data-tip] { cursor: help; }
.pm-dot { width: 10px; height: 10px; border-radius: 50%; }
.pm-dot-r { background: #981B30; }
.pm-dot-y { background: #C4860A; }
.pm-dot-g { background: #4A7C59; }
.pm-title { font-size: .75rem; color: var(--text-light); margin-left: auto; font-family: var(--font-mono, monospace); }
.pm-body  { padding: 1.25rem 1.25rem .75rem; display: flex; flex-direction: column; gap: .6rem; }

/* filter bar */
.pm-filters { display: flex; align-items: center; gap: .4rem; flex-wrap: wrap; margin-bottom: .2rem; }
.pm-filter-chip { font-size: .68rem; padding: .2rem .55rem; border-radius: 99px; border: 1px solid var(--border); color: var(--text-muted); background: var(--bg-muted); }
.pm-chip-active { background: rgba(152,27,48,.08); border-color: rgba(152,27,48,.3); color: var(--accent); font-weight: 600; }
.pm-results { font-size: .68rem; color: var(--text-light); margin-left: auto; white-space: nowrap; }

/* company entries */
.pm-entry { display: flex; align-items: flex-start; gap: .75rem; padding: .6rem .75rem; border-radius: 8px; background: var(--bg-muted); }
.pm-entry-highlight { background: rgba(152,27,48,.05); border: 1px solid rgba(152,27,48,.15); }
.pm-entry-score { font-size: 1.3rem; font-weight: 900; color: var(--accent); min-width: 2rem; text-align: center; line-height: 1.2; padding-top: .1rem; }
.pm-score-mid { color: #C4860A; }
.pm-entry-body { flex: 1; min-width: 0; }
.pm-entry-name { font-size: .82rem; font-weight: 700; color: var(--charcoal); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.pm-entry-meta { display: flex; gap: .35rem; margin: .2rem 0; flex-wrap: wrap; }
.pm-tag { font-size: .62rem; padding: .1rem .4rem; border-radius: 4px; background: var(--bg); border: 1px solid var(--border); color: var(--text-muted); }
.pm-tag-canton { background: rgba(152,27,48,.1); border-color: rgba(152,27,48,.25); color: var(--accent); font-weight: 700; }
.pm-entry-signal { font-size: .67rem; color: var(--accent); font-weight: 600; margin-top: .15rem; }

/* footer */
.pm-footer { display: flex; justify-content: space-between; align-items: center; padding: .5rem .25rem 0; border-top: 1px solid var(--border); margin-top: .2rem; }
.pm-csv   { font-size: .68rem; color: var(--accent); font-weight: 600; }
.pm-alert { font-size: .68rem; color: var(--text-muted); }

.buyer-stats { background: var(--bg-soft); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 2.5rem 1.5rem; }
.buyer-stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; text-align: center; max-width: var(--max-w); margin: 0 auto; }
.buyer-stat-num   { font-size: 2rem; font-weight: 800; color: var(--charcoal); }
.buyer-stat-label { font-size: .78rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: .05em; margin-top: .25rem; }

.buyer-features { background: var(--bg); padding: 5rem 1.5rem; }
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.feature-card {
  background: var(--bg-soft); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 2rem;
  transition: transform var(--transition), box-shadow var(--transition);
}
.feature-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); background: var(--bg); }
.feature-card-icon { font-size: 1.75rem; margin-bottom: 1rem; }
.feature-card h3 { color: var(--charcoal); font-size: 1rem; margin-bottom: .5rem; }
.feature-card p  { color: var(--text-muted); font-size: .88rem; }

.buyer-compare { background: var(--bg-soft); padding: 5rem 1.5rem; }
.compare-table-wrap { overflow-x: auto; }
.compare-table {
  width: 100%; border-collapse: collapse; font-size: .9rem; background: var(--bg);
  border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm);
}
.compare-table th, .compare-table td {
  padding: .85rem 1.25rem; text-align: left;
}
.compare-table th {
  background: var(--charcoal); color: rgba(255,255,255,.8);
  font-size: .8rem; font-weight: 600; text-transform: uppercase; letter-spacing: .06em;
}
.compare-table td { color: var(--text-muted); border-bottom: 1px solid var(--border); }
.compare-table tr:last-child td { border-bottom: none; }
.compare-kinar { color: var(--charcoal) !important; font-weight: 600 !important; }
.compare-table th.compare-kinar {
  background: var(--accent); color: #fff !important;
}

.cmp-yes, .cmp-no, .cmp-warn {
  display: inline-flex; align-items: center; justify-content: center;
  width: 18px; height: 18px; border-radius: 4px;
  font-size: .75rem; font-weight: 800; vertical-align: middle;
  margin-right: 3px; line-height: 1;
}
.cmp-yes  { background: #F5EBDA; color: #5A0F1C; }
.cmp-no   { background: rgba(152,27,48,.12); color: #981B30; }
.cmp-warn { background: #F5EBDA; color: #8B6040; opacity: .85; }

.buyer-waitlist { background: var(--bg); padding: 6rem 1.5rem; border-top: 1px solid var(--border); }
.waitlist-inner {
  display: grid; grid-template-columns: 1fr 480px; gap: 5rem;
  align-items: start; max-width: var(--max-w); margin: 0 auto;
}
.waitlist-form-wrap { padding-top: 3.5rem; }
.waitlist-text h2  { color: var(--charcoal); margin-bottom: 1rem; }
.waitlist-text p   { color: var(--text-muted); line-height: 1.7; margin-bottom: 1.5rem; }
.waitlist-perks    { display: flex; flex-direction: column; gap: .65rem; }
.waitlist-perks li { color: var(--text-muted); font-size: .92rem; }

.waitlist-form-card {
  background: var(--bg-soft); border: 1px solid var(--border);
  border-radius: var(--radius-xl); padding: 2.5rem;
}
.waitlist-form-card h3 { color: var(--charcoal); margin-bottom: 1.5rem; }
.waitlist-form label { display: block; font-size: .83rem; font-weight: 600; color: var(--charcoal); margin-bottom: .4rem; }
.waitlist-form .req  { color: var(--accent); }
.waitlist-form input,
.waitlist-form select {
  width: 100%; padding: .7rem 1rem;
  background: var(--bg); border: 1.5px solid var(--border);
  border-radius: var(--radius-sm); color: var(--text); font-size: .92rem; margin-bottom: 1.1rem;
  transition: border-color var(--transition), background var(--transition);
}
.waitlist-form input::placeholder { color: var(--text-light); }
.waitlist-form input:focus,
.waitlist-form select:focus {
  outline: none; border-color: var(--accent);
  background: var(--bg); box-shadow: 0 0 0 3px rgba(152,27,48,.08);
}
.waitlist-form select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2364748B' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 1rem center;
  padding-right: 2.5rem;
}
.waitlist-form select option { background: var(--bg); color: var(--text); }
.waitlist-disclaimer { font-size: .75rem; color: var(--text-light); text-align: center; margin-top: .75rem; }

/* Buyer hero short (danke page) */
.buyer-hero-short { padding: 5rem 1.5rem; min-height: 100vh; display: flex; align-items: center; }
.danke-inner { max-width: 640px; margin: 0 auto; text-align: center; position: relative; }
.danke-icon  { font-size: 4rem; margin-bottom: 1.5rem; }
.danke-inner h1 { color: #fff; margin-bottom: 1rem; }
.danke-sub  { color: rgba(255,255,255,.65); font-size: 1.05rem; line-height: 1.7; margin-bottom: 3rem; }
.danke-next { text-align: left; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08); border-radius: var(--radius-xl); padding: 2rem; margin-bottom: 2.5rem; }
.danke-next h2 { color: #fff; font-size: 1.25rem; margin-bottom: 1.5rem; }
.danke-steps { display: flex; flex-direction: column; gap: 1.25rem; }
.danke-steps li { display: flex; align-items: flex-start; gap: 1rem; }
.danke-step-num {
  width: 32px; height: 32px; border-radius: 50%; flex-shrink: 0;
  background: rgba(152,27,48,.25); color: #981B30;
  display: flex; align-items: center; justify-content: center;
  font-size: .85rem; font-weight: 800;
}
.danke-steps li strong { color: rgba(255,255,255,.9); display: block; margin-bottom: .25rem; font-size: .95rem; }
.danke-steps li p      { color: rgba(255,255,255,.5); font-size: .88rem; margin: 0; }
.danke-cta { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── Responsive: new components ─────────────────────────────────── */
@media (max-width: 1100px) {
  .split-inner { padding: 4rem 2.5rem; }
  .hero-inner  { grid-template-columns: 1fr; }
  .report-mockup { display: none; }
  .buyer-hero-inner { grid-template-columns: 1fr; }
  .platform-mockup  { display: none; }
  .waitlist-inner   { grid-template-columns: 1fr; }
}
@media (max-width: 900px) {
  .split-landing  { grid-template-columns: 1fr; }
  .split-inner    { max-width: 100%; padding: 3.5rem 2rem; }
  .proof-grid     { grid-template-columns: repeat(2, 1fr); }
  .lp-proof-grid  { grid-template-columns: repeat(2, 1fr); }
  .steps-grid     { grid-template-columns: 1fr; }
  .step-connector { display: none; }
  .report-contents-grid { grid-template-columns: 1fr 1fr; }
  .trust-grid     { grid-template-columns: 1fr; gap: 2rem; }
  .articles-grid  { grid-template-columns: 1fr 1fr; }
  .articles-grid-full { grid-template-columns: 1fr; }
  .form-page      { grid-template-columns: 1fr; }
  .form-page-left { position: static; height: auto; }
  .form-page-trust { display: none; }
  .buyer-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid  { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .split-inner    { padding: 2.5rem 1.25rem; }
  .proof-grid     { grid-template-columns: 1fr 1fr; }
  .report-contents-grid { grid-template-columns: 1fr; }
  .articles-grid  { grid-template-columns: 1fr; }
  .article-cta-box { flex-direction: column; text-align: center; padding: 1.5rem; }
  .form-page-right { padding: 1.5rem 1rem; }
  .form-card      { padding: 1.5rem; }
  .otp-digits     { gap: .4rem; }
  .otp-digit      { width: 40px; height: 52px; font-size: 1.4rem; }
  .buyer-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid  { grid-template-columns: 1fr; }
  .buyer-waitlist { padding: 3rem 1.5rem; }
  .danke-cta      { flex-direction: column; align-items: center; }
  .cta-inline     { flex-direction: column; }
  .form-row       { grid-template-columns: 1fr; }
}

/* ── Auth pages ──────────────────────────────────────────────────────────── */
.form-page-bg { background: var(--bg-soft); min-height: 100vh; }
.auth-wrap { display: flex; align-items: center; justify-content: center; min-height: calc(100vh - 64px); padding: 2rem 1rem; }
.auth-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 2.5rem 2rem; width: 100%; max-width: 420px; box-shadow: var(--shadow-sm); }
.auth-logo { display: flex; align-items: center; gap: .5rem; justify-content: center; margin-bottom: 1.75rem; }
.auth-logo-img { height: 32px; width: auto; }
.auth-logo-text { font-family: 'Josefin Sans', sans-serif; font-weight: 700; font-size: 1.05rem; letter-spacing: .12em; line-height: 1; margin-top: 9px; margin-left: -4px; color: var(--charcoal); }
.auth-title { font-size: 1.5rem; font-weight: 700; color: var(--charcoal); text-align: center; margin-bottom: .35rem; }
.auth-sub   { font-size: .88rem; color: var(--text-muted); text-align: center; margin-bottom: 1.75rem; }
.auth-form .form-group { margin-bottom: 1rem; }
.field-hint { display: block; font-size: .75rem; margin-top: .3rem; min-height: 1rem; }
.field-hint-error { color: var(--accent); }
.field-hint-ok    { color: #4A7C59; }
.input-error { border-color: var(--accent) !important; }
.auth-form label { display: block; font-size: .83rem; font-weight: 600; color: var(--charcoal); margin-bottom: .35rem; }
.auth-form input, .auth-form select {
  width: 100%; padding: .6rem .85rem; border: 1.5px solid var(--border-dark);
  border-radius: var(--radius); background: var(--bg); color: var(--charcoal);
  font-size: .92rem; transition: border-color var(--transition); box-sizing: border-box;
}
.auth-form input:focus, .auth-form select:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(152,27,48,.08); }
.auth-form .btn { margin-top: .5rem; }
.auth-row { display: flex; align-items: center; justify-content: space-between; margin-bottom: .75rem; font-size: .82rem; }
.auth-remember { display: inline-flex; align-items: center; gap: .6rem; color: var(--text-muted); cursor: pointer; line-height: 1; }
.auth-remember input[type="checkbox"] { margin: 0 .5rem 0 0; padding: 0; flex-shrink: 0; width: 13px; height: 13px; cursor: pointer; }
.auth-remember span { line-height: 1; }
.auth-link { color: var(--accent); text-decoration: none; font-weight: 600; }
.auth-link:hover { text-decoration: underline; }
.auth-switch { text-align: center; font-size: .84rem; color: var(--text-muted); margin-top: 1.25rem; }
.req { color: var(--accent); }

/* ── Legal pages ─────────────────────────────────────────────────────────── */
.legal-body { color: var(--text); line-height: 1.75; font-size: .95rem; }
.legal-body h2 { font-size: 1.1rem; font-weight: 700; color: var(--charcoal); margin: 2rem 0 .5rem; border-bottom: 1px solid var(--border); padding-bottom: .4rem; }
.legal-body h3 { font-size: .95rem; font-weight: 700; color: var(--charcoal); margin: 1.25rem 0 .35rem; }
.legal-body p { margin: 0 0 1rem; }
.legal-body ul { margin: 0 0 1rem 1.25rem; }
.legal-body ul li { margin-bottom: .35rem; }
.legal-body a { color: var(--accent); text-decoration: none; }
.legal-body a:hover { text-decoration: underline; }
.legal-updated { font-size: .8rem; color: var(--text-muted); margin-top: 2.5rem; padding-top: 1rem; border-top: 1px solid var(--border); }
.legal-table { width: 100%; border-collapse: collapse; margin: 1rem 0 1.5rem; font-size: .875rem; }
.legal-table th { background: var(--charcoal); color: #fff; padding: .6rem 1rem; text-align: left; font-weight: 600; }
.legal-table td { padding: .6rem 1rem; border-bottom: 1px solid var(--border); vertical-align: top; }
.legal-table tr:last-child td { border-bottom: none; }
