/* === Verhalen Fontain — B2B one-pager === */

:root {
  --bg-cream:     #F3E8D8;
  --bg-cream-2:   #EFE0CB;
  --bg-white:     #FFFFFF;
  --ink:          #1A1A1A;
  --ink-muted:    #5F6360;
  --accent-green: #3F7652;
  --accent-green-dark: #2E5A3E;
  --accent-copper:#E87C32;
  --accent-olive: #C0B17E;
  --line:         #E2E2E2;

  --font-display: 'Caudex', Georgia, 'Times New Roman', serif;
  --font-script:  'Amatic SC', 'Comic Sans MS', cursive;
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, 'Avenir Next', Helvetica, Arial, sans-serif;

  --max:          1120px;
  --radius:       18px;
  --radius-pill:  999px;
  --shadow-soft:  0 8px 28px rgba(60, 40, 20, 0.08);
  --shadow-md:    0 18px 48px rgba(60, 40, 20, 0.12);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg-cream);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent-green-dark); text-decoration: none; }
a:hover { text-decoration: underline; }

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

/* === Typography === */

h1, h2, h3 {
  font-family: var(--font-display);
  color: var(--ink);
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 0.4em;
  letter-spacing: -0.005em;
}
h1 { font-size: clamp(2.4rem, 5.4vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.4vw, 2.6rem); }
h3 { font-size: 1.18rem; }

h1 em, h2 em {
  font-style: italic;
  color: var(--accent-green);
}

p { margin: 0 0 1em; color: var(--ink); }
.lead { font-size: 1.1rem; color: var(--ink-muted); max-width: 60ch; margin-bottom: 1.6em; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-green);
  margin-bottom: 0.9em;
}

/* === Buttons === */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4em;
  padding: 0.85em 1.6em;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  line-height: 1;
  border: 1.5px solid transparent;
  transition: transform 0.15s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  cursor: pointer;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn-primary { background: var(--accent-green); color: #fff; }
.btn-primary:hover { background: var(--accent-green-dark); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-ghost:hover { background: var(--ink); color: var(--bg-cream); }
.btn-lg { padding: 1.05em 2em; font-size: 1.08rem; }

.cta-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 1.4em; }

/* === Topbar === */

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 28px;
  background: rgba(243, 232, 216, 0.92);
  backdrop-filter: saturate(140%) blur(8px);
  -webkit-backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid rgba(0,0,0,0.04);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
}
.brand img { width: 32px; height: 32px; object-fit: contain; }
.brand:hover { text-decoration: none; }
.topbar-cta {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--accent-green-dark);
}

/* === Hero === */

.hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
  max-width: var(--max);
  margin: 0 auto;
  padding: 84px 28px 72px;
}
.hero-copy h1 { margin-top: 0.2em; }
.hero-script {
  font-family: var(--font-script);
  font-size: 2.2rem;
  color: var(--accent-copper);
  margin: 0 0 0.5em;
  transform: rotate(-1.5deg) translateX(8px);
  display: inline-block;
}
.hero-lead {
  font-size: 1.15rem;
  color: var(--ink-muted);
  max-width: 52ch;
}

.hero-visual {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
}
.cover {
  position: absolute;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: #fff;
  width: 64%;
}
.cover img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; }
.cover-back {
  transform: rotate(-7deg) translate(-22%, -6%);
  width: 58%;
  filter: saturate(0.95);
}
.cover-front {
  transform: rotate(5deg) translate(18%, 8%);
  width: 64%;
  z-index: 2;
}

/* === Section base === */

section {
  padding: 88px 0;
  position: relative;
}
section.opportunity { background: var(--bg-cream-2); }
section.paths       { background: var(--bg-white); }
section.features    { background: var(--bg-cream); }
section.flow        { background: var(--bg-white); }
section.usecases    { background: var(--bg-cream-2); }
section.proof       { background: var(--bg-white); }
section.model       { background: var(--bg-cream); }
section.pilot       { background: var(--bg-white); }
section.finalcta    { background: var(--accent-green); color: var(--bg-cream); padding: 100px 0; text-align: center; }

/* === Opportunity === */

.chips { list-style: none; padding: 0; margin: 1.8em 0 0; display: flex; flex-wrap: wrap; gap: 12px; }
.chips li {
  background: var(--bg-white);
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  padding: 0.55em 1.1em;
  font-weight: 600;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.chips li span { color: var(--accent-green); font-weight: 700; }

/* === Paths === */

.path-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 2em;
}
.path-card {
  background: var(--bg-cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px 32px;
  position: relative;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.path-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-soft); }
.path-num {
  position: absolute;
  top: -18px; left: 28px;
  width: 44px; height: 44px;
  background: var(--accent-green);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
}
.path-tag {
  font-family: var(--font-script);
  font-size: 1.6rem;
  color: var(--accent-copper);
  margin: 0 0 0.4em;
  line-height: 1;
}
.ticks { list-style: none; padding: 0; margin: 1em 0 0; }
.ticks li {
  position: relative;
  padding: 0.35em 0 0.35em 1.6em;
  border-top: 1px dashed var(--line);
}
.ticks li:first-child { border-top: 0; }
.ticks li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent-green);
  font-weight: 700;
}

/* === Features === */

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 2em;
}
.feature {
  background: var(--bg-white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 24px;
}
.feature h3 { margin-bottom: 0.4em; }
.feature p { color: var(--ink-muted); margin: 0; font-size: 0.97rem; }

/* === Flow / steps === */

.steps {
  list-style: none; padding: 0; margin: 2em 0 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  counter-reset: step;
}
.steps li {
  background: var(--bg-cream);
  border-radius: var(--radius);
  padding: 26px 22px;
  position: relative;
}
.step-num {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.6rem;
  color: var(--accent-copper);
  margin-bottom: 8px;
  line-height: 1;
}
.steps h3 { margin-bottom: 0.3em; font-size: 1.05rem; }
.steps p { color: var(--ink-muted); font-size: 0.95rem; margin: 0; }
.flow-foot { margin-top: 2em; text-align: center; font-size: 1.1rem; }
.flow-foot em { font-family: var(--font-display); font-style: italic; color: var(--accent-green); }

/* === Use cases === */

.usecase-grid {
  list-style: none; padding: 0; margin: 1.8em 0 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}
.usecase-grid li {
  background: var(--bg-white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 18px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-height: 110px;
}
.usecase-grid strong {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--ink);
}
.usecase-grid span { color: var(--ink-muted); font-size: 0.9rem; }

/* === Proof / screenshots === */

.screenshots {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  grid-template-rows: auto auto;
  gap: 22px;
  margin-top: 2.2em;
}
.shot {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-cream);
  box-shadow: var(--shadow-soft);
}
.shot img { width: 100%; height: 100%; object-fit: cover; display: block; }
.shot figcaption {
  font-size: 0.85rem;
  color: var(--ink-muted);
  padding: 10px 14px;
  background: var(--bg-white);
}
.shot-feature {
  grid-row: span 2;
  display: flex;
  flex-direction: column;
}
.shot-feature img { aspect-ratio: 4 / 5; }
.shot-wide img { aspect-ratio: 16 / 10; }

/* === Model / pillars === */

.pillar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 2em;
}
.pillar {
  background: var(--bg-white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 26px;
  border-top: 4px solid var(--accent-green);
}
.pillar h3 { color: var(--accent-green); margin-bottom: 0.4em; }
.pillar p { color: var(--ink-muted); margin: 0; }
.model-foot {
  margin-top: 2em;
  text-align: center;
  font-size: 1.2rem;
}
.model-foot em {
  font-family: var(--font-script);
  font-style: normal;
  font-size: 2rem;
  color: var(--accent-copper);
}

/* === Pilot === */

.pilot-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-top: 2em;
}
.pilot-grid > div {
  border-left: 3px solid var(--accent-green);
  padding-left: 20px;
}
.pilot-grid h3 { margin-bottom: 0.3em; }
.pilot-grid p { color: var(--ink-muted); margin: 0; }

/* === Final CTA === */

.finalcta h2 { color: var(--bg-cream); }
.finalcta h2 em { color: #fff; font-family: var(--font-script); font-style: normal; font-size: 1.15em; }
.finalcta p { color: rgba(255,255,255,0.85); max-width: 50ch; margin: 0 auto 1.4em; }
.finalcta .btn-primary {
  background: var(--bg-cream);
  color: var(--accent-green-dark);
  border-color: transparent;
}
.finalcta .btn-primary:hover { background: #fff; }
.email-fallback { margin-top: 1.4em; font-size: 0.95rem; }
.email-fallback a { color: #fff; text-decoration: underline; }

/* === Footer === */

.footer {
  background: var(--ink);
  color: rgba(255,255,255,0.7);
  padding: 32px 0;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}
.footer .brand { color: #fff; }
.footer .brand img { filter: brightness(1.4); }
.footer nav { display: flex; gap: 22px; }
.footer nav a { color: rgba(255,255,255,0.8); font-size: 0.95rem; }
.footer nav a:hover { color: #fff; }
.footer small { font-size: 0.85rem; }

/* === Responsive === */

@media (max-width: 960px) {
  .hero { grid-template-columns: 1fr; gap: 36px; padding: 56px 28px; text-align: left; }
  .hero-visual { max-width: 380px; margin: 0 auto; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .usecase-grid { grid-template-columns: repeat(2, 1fr); }
  .pillar-grid { grid-template-columns: 1fr; }
  .pilot-grid { grid-template-columns: 1fr; }
  .screenshots { grid-template-columns: 1fr 1fr; }
  .shot-feature { grid-row: auto; grid-column: span 2; }
  .shot-feature img { aspect-ratio: 16 / 9; }
}

@media (max-width: 600px) {
  body { font-size: 16px; }
  section { padding: 64px 0; }
  .container { padding: 0 20px; }
  .topbar { padding: 12px 20px; }
  .hero { padding: 40px 20px 48px; }
  .hero-script { font-size: 1.8rem; }
  .path-grid { grid-template-columns: 1fr; gap: 36px; }
  .feature-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .usecase-grid { grid-template-columns: 1fr; }
  .screenshots { grid-template-columns: 1fr; }
  .shot-feature { grid-column: auto; }
  .shot-feature img { aspect-ratio: 4 / 5; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
}

/* === Print (save-as-PDF for mail attachment) === */

@media print {
  :root { --bg-cream: #fff; --bg-cream-2: #fff; }
  body { background: #fff; font-size: 11pt; }
  .topbar, .footer { display: none; }
  section { padding: 24px 0; break-inside: avoid; }
  .hero { padding: 24px 0; grid-template-columns: 1.4fr 1fr; gap: 28px; }
  .hero-visual { max-width: 260px; }
  .btn { border: 1px solid #000 !important; background: transparent !important; color: #000 !important; }
  .finalcta { background: #fff !important; color: #000 !important; padding: 24px 0; }
  .finalcta h2, .finalcta p, .finalcta .email-fallback a { color: #000 !important; }
  .path-card, .feature, .pillar, .steps li, .usecase-grid li, .shot { box-shadow: none !important; }
  a { color: #000 !important; }
  h1 { font-size: 24pt; }
  h2 { font-size: 16pt; }
  h3 { font-size: 12pt; }
}
