/* Dialo landing page - design tokens & base
   Adapted from Claude Design handoff (Dialo Landing Page) */

:root {
  --accent: oklch(0.72 0.18 50);
  --accent-strong: oklch(0.65 0.2 45);
  --accent-soft: oklch(0.94 0.05 60);
  --accent-ink: oklch(0.32 0.12 45);

  --ink: oklch(0.18 0.012 60);
  --ink-2: oklch(0.32 0.01 60);
  --ink-3: oklch(0.5 0.008 60);
  --ink-4: oklch(0.68 0.006 60);

  --paper: oklch(0.985 0.004 70);
  --paper-2: oklch(0.965 0.008 70);
  --paper-3: oklch(0.93 0.012 65);
  --line: oklch(0.88 0.008 65);
  --line-strong: oklch(0.78 0.01 65);

  --dark: oklch(0.18 0.012 60);
  --dark-2: oklch(0.22 0.014 55);
  --dark-3: oklch(0.28 0.014 55);
  --dark-line: oklch(0.32 0.012 55);
  --dark-ink: oklch(0.78 0.01 65);

  --radius-sm: 6px;
  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  --shadow-sm: 0 1px 2px rgb(20 16 12 / 0.04), 0 1px 1px rgb(20 16 12 / 0.03);
  --shadow: 0 4px 12px rgb(20 16 12 / 0.06), 0 2px 4px rgb(20 16 12 / 0.04);
  --shadow-lg: 0 24px 48px -12px rgb(20 16 12 / 0.18), 0 8px 16px -8px rgb(20 16 12 / 0.08);

  --display: "Space Grotesk", system-ui, sans-serif;
  --body: "Inter", system-ui, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, monospace;
}

.landing, .landing * { box-sizing: border-box; }

html, body.landing {
  margin: 0;
  padding: 0;
  width: 100%;
}

.landing {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: -0.005em;
  overflow-x: hidden;
}

.landing button { font-family: inherit; cursor: pointer; }
.landing a { color: inherit; text-decoration: none; }
.landing img { display: block; max-width: 100%; }

/* Containers */
.landing .wrap {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 48px;
}

/* Section markers */
.landing .section-tag {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-3);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.landing .section-tag::before {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--ink-4);
}
.landing .section-tag.on-dark { color: var(--dark-ink); }
.landing .section-tag.on-dark::before { background: var(--dark-line); }

/* Buttons */
.landing .btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.01em;
  border: 1px solid transparent;
  transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
  white-space: nowrap;
}
.landing .btn:hover { transform: translateY(-1px); }
.landing .btn:active { transform: translateY(0); }

.landing .btn-primary {
  background: var(--accent);
  color: oklch(0.18 0.02 45);
  border-color: var(--accent);
}
.landing .btn-primary:hover { background: var(--accent-strong); border-color: var(--accent-strong); }

.landing .btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-strong);
}
.landing .btn-ghost:hover { border-color: var(--ink); }

.landing .btn-ghost-dark {
  background: transparent;
  color: oklch(0.95 0.005 70);
  border-color: var(--dark-line);
}
.landing .btn-ghost-dark:hover { border-color: var(--dark-ink); }

.landing .btn-sm { padding: 10px 16px; font-size: 14px; }

/* Headings */
.landing h1, .landing h2, .landing h3, .landing h4 {
  font-family: var(--display);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.05;
  margin: 0;
}
.landing h2 { font-size: clamp(30px, 3vw, 46px); }
.landing h3 { font-size: clamp(20px, 1.6vw, 24px); letter-spacing: -0.015em; line-height: 1.2; }

.landing p { margin: 0; }

/* Section base */
.landing section {
  padding: 88px 0;
  position: relative;
}
.landing section.tight { padding: 72px 0; }

.landing .eyebrow {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 40px;
}
.landing .eyebrow h2 { max-width: 22ch; }
.landing .eyebrow .sub {
  font-size: 17px;
  color: var(--ink-2);
  max-width: 60ch;
  line-height: 1.5;
}
.landing .eyebrow.on-dark h2 { color: oklch(0.97 0.005 70); }
.landing .eyebrow.on-dark .sub { color: var(--dark-ink); }

/* Sticky header */
.landing .header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in oklch, var(--dark) 88%, transparent);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.landing .header.scrolled {
  background: color-mix(in oklch, var(--paper) 92%, transparent);
  border-bottom-color: var(--line);
}
.landing .header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.landing .brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--display);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.03em;
  color: oklch(0.97 0.005 70);
}
.landing .header.scrolled .brand { color: var(--ink); }
.landing .brand-dot {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: var(--accent);
  display: grid;
  place-items: center;
  color: oklch(0.18 0.02 45);
  font-size: 16px;
  font-weight: 800;
}
.landing .nav {
  display: flex;
  gap: 32px;
  font-size: 14px;
  color: var(--dark-ink);
  font-weight: 500;
}
.landing .header.scrolled .nav { color: var(--ink-2); }
.landing .nav a:hover { color: var(--accent); }
.landing .header-cta { display: flex; gap: 12px; align-items: center; }

/* Hero */
.landing .hero {
  background: var(--dark);
  color: oklch(0.96 0.005 70);
  padding: 96px 0 112px;
  position: relative;
  overflow: hidden;
}
.landing .hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 800px 400px at 80% 10%, color-mix(in oklch, var(--accent) 18%, transparent), transparent 60%),
    radial-gradient(ellipse 600px 300px at 10% 90%, color-mix(in oklch, var(--accent) 8%, transparent), transparent 70%);
  pointer-events: none;
}
.landing .hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, oklch(1 0 0 / 0.03) 1px, transparent 1px),
    linear-gradient(to bottom, oklch(1 0 0 / 0.03) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 1000px 600px at 50% 40%, black 30%, transparent 80%);
  pointer-events: none;
}
.landing .hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
  gap: 64px;
  align-items: center;
}
.landing .hero h1 {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(40px, 4.4vw, 64px);
  line-height: 1.02;
  letter-spacing: -0.03em;
  max-width: 16ch;
  margin: 0;
}
.landing .hero h1 em {
  font-style: normal;
  color: var(--accent);
}
.landing .hero-sub {
  font-size: 18px;
  line-height: 1.5;
  color: var(--dark-ink);
  max-width: 56ch;
  margin-top: 24px;
}
.landing .hero-actions {
  display: flex;
  gap: 14px;
  margin-top: 32px;
  flex-wrap: wrap;
}
.landing .hero-meta {
  display: flex;
  gap: 22px;
  margin-top: 24px;
  color: var(--dark-ink);
  font-size: 13px;
  flex-wrap: wrap;
}
.landing .hero-meta span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.landing .hero-meta .dot {
  width: 6px; height: 6px; border-radius: 999px; background: var(--accent);
}

/* Chat preview in hero (right column) */
.landing .chat-stage {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 8px 0;
}
.landing .bubble {
  position: relative;
  padding: 14px 20px;
  border-radius: 18px;
  font-size: 15px;
  line-height: 1.4;
  font-weight: 500;
  max-width: 320px;
  opacity: 0;
  animation: bubbleIn 0.7s ease forwards;
  white-space: normal;
  letter-spacing: -0.01em;
  backdrop-filter: blur(8px);
  box-shadow: 0 8px 24px -8px rgb(0 0 0 / 0.4);
}
.landing .bubble.user {
  align-self: flex-start;
  background: oklch(1 0 0 / 0.06);
  color: oklch(0.95 0.005 70);
  border: 1px solid oklch(1 0 0 / 0.1);
  border-bottom-right-radius: 6px;
}
.landing .bubble.bot {
  align-self: flex-end;
  background: var(--accent);
  color: oklch(0.2 0.02 45);
  border-bottom-left-radius: 6px;
}
.landing .bubble small {
  display: block;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.55;
  margin-bottom: 4px;
  font-weight: 600;
}
@keyframes bubbleIn {
  from { opacity: 0; transform: translateY(20px) scale(0.95); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes bubbleFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* Section 2: Provoking questions */
.landing .questions {
  background: var(--paper);
  position: relative;
}
.landing .questions-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--line);
}
.landing .q-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px;
  padding: 36px 0;
  border-bottom: 1px solid var(--line);
  align-items: baseline;
  transition: opacity 0.2s ease;
}
.landing .q-num {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--ink-3);
  letter-spacing: 0.05em;
}
.landing .q-text {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(18px, 1.6vw, 24px);
  letter-spacing: -0.015em;
  line-height: 1.25;
  color: var(--ink);
  max-width: 32ch;
}
.landing .q-closer {
  margin-top: 48px;
  padding: 32px;
  background: var(--ink);
  color: oklch(0.97 0.005 70);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.landing .q-closer p {
  font-family: var(--display);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 1.35;
  max-width: 50ch;
}

/* Section 003: Barrier - skjult efterspørgsel */
.landing .barrier {
  background: var(--paper);
  border-top: 1px solid var(--line);
}
.landing .barrier-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.landing .barrier-stat {
  padding: 28px 32px;
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  gap: 16px;
  position: relative;
}
.landing .barrier-stat::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--accent);
  flex-shrink: 0;
}
.landing .barrier-text {
  font-family: var(--display);
  font-weight: 500;
  font-size: 17px;
  line-height: 1.4;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.landing .barrier-text sup {
  color: var(--accent-ink);
  font-weight: 600;
}
.landing .barrier-footnote {
  margin-top: 16px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--ink-3);
  text-align: right;
}

/* Single-face team layout */
.landing .faces-single {
  grid-template-columns: minmax(0, 280px);
  justify-content: flex-start;
}
.landing .face-wide {
  text-align: left;
}
.landing .face-wide .face-photo {
  width: 96px;
  height: 96px;
  margin: 0 0 16px;
  font-size: 28px;
  aspect-ratio: 1;
}

/* Section 3: How it works */
.landing .how {
  background: var(--paper-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.landing .steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
}
.landing .steps::before {
  content: "";
  position: absolute;
  top: 56px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: repeating-linear-gradient(to right, var(--line-strong) 0 6px, transparent 6px 12px);
  z-index: 0;
}
.landing .step {
  position: relative;
  padding: 32px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  z-index: 1;
}
.landing .step-num {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--ink);
  color: var(--paper);
  display: grid;
  place-items: center;
  font-family: var(--display);
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 24px;
}
.landing .step h3 { margin-bottom: 12px; }
.landing .step p { color: var(--ink-2); font-size: 16px; line-height: 1.55; }
.landing .step-icon {
  margin-top: 24px;
  height: 120px;
  border-radius: 12px;
  background: var(--paper-2);
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  overflow: hidden;
  position: relative;
}

/* Section 4: Insights */
.landing .insights {
  background: var(--paper);
}
.landing .insights-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: start;
}
.landing .insights-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.landing .feat {
  padding: 24px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: border-color 0.2s ease;
}
.landing .feat:hover { border-color: var(--accent); }
.landing .feat-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--accent-soft);
  color: var(--accent-ink);
  display: grid;
  place-items: center;
  margin-bottom: 16px;
}
.landing .feat h4 {
  font-family: var(--display);
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}
.landing .feat p { font-size: 14px; color: var(--ink-2); line-height: 1.5; }

.landing .dashboard-mock {
  background: var(--ink);
  border-radius: var(--radius-lg);
  padding: 24px;
  color: oklch(0.95 0.005 70);
  position: sticky;
  top: 100px;
  box-shadow: var(--shadow-lg);
}
.landing .dash-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--dark-line);
  margin-bottom: 20px;
}
.landing .dash-title {
  font-family: var(--display);
  font-weight: 600;
  font-size: 16px;
}
.landing .dash-meta {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--dark-ink);
  letter-spacing: 0.08em;
}
.landing .dash-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--dark-line);
  font-size: 14px;
}
.landing .dash-row:last-child { border-bottom: none; }
.landing .dash-label {
  color: oklch(0.92 0.005 70);
  font-weight: 500;
  flex: 1;
}
.landing .dash-count {
  color: var(--accent);
  font-family: var(--mono);
  font-weight: 600;
  font-size: 13px;
}
.landing .dash-bar {
  width: 80px;
  height: 4px;
  background: var(--dark-line);
  border-radius: 999px;
  overflow: hidden;
  margin-left: 16px;
}
.landing .dash-bar > div {
  height: 100%;
  background: var(--accent);
  border-radius: 999px;
}
.landing .dash-stat {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 20px;
}
.landing .dash-stat-card {
  padding: 16px;
  background: var(--dark-2);
  border-radius: 12px;
  border: 1px solid var(--dark-line);
}
.landing .dash-stat-num {
  font-family: var(--display);
  font-weight: 600;
  font-size: 24px;
  color: oklch(0.97 0.005 70);
  letter-spacing: -0.02em;
}
.landing .dash-stat-label {
  font-size: 11px;
  color: var(--dark-ink);
  margin-top: 4px;
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.landing .dash-rows-tag {
  font-size: 12px;
  color: var(--dark-ink);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-family: var(--mono);
  margin-bottom: 12px;
}

/* Section 5: Knowledge base */
.landing .kb {
  background: var(--paper-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.landing .kb-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}
.landing .kb-text p {
  color: var(--ink-2);
  font-size: 18px;
  line-height: 1.55;
  max-width: 48ch;
}
.landing .kb-flow {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.landing .flow-step {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 22px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-size: 15px;
  position: relative;
}
.landing .flow-step .num {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--ink-3);
  letter-spacing: 0.1em;
  width: 24px;
}
.landing .flow-step .label {
  flex: 1;
  font-weight: 500;
}
.landing .flow-step .flow-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.landing .flow-step .flow-title {
  font-weight: 500;
  font-size: 15px;
  line-height: 1.3;
  letter-spacing: -0.005em;
}
.landing .flow-step .flow-desc {
  font-size: 12px;
  font-family: var(--mono);
  letter-spacing: 0.01em;
  color: var(--ink-3);
  line-height: 1.4;
}
.landing .flow-step.highlight .flow-desc { color: var(--dark-ink); }
.landing .flow-step .glyph {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: var(--accent-soft);
  color: var(--accent-ink);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.landing .flow-step.highlight {
  background: var(--ink);
  color: oklch(0.97 0.005 70);
  border-color: var(--ink);
}
.landing .flow-step.highlight .num { color: var(--dark-ink); }
.landing .flow-step.highlight .glyph { background: var(--accent); color: oklch(0.18 0.02 45); }
.landing .flow-arrow {
  width: 1px;
  height: 16px;
  background: var(--line-strong);
  margin-left: 36px;
}

/* Section 6: Integrations */
.landing .integrations { background: var(--paper); }
.landing .logo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 32px;
}
.landing .logo-cell {
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
  transition: background 0.2s ease, color 0.2s ease;
  color: var(--ink-3);
}
.landing .logo-cell:hover { background: var(--paper-2); color: var(--ink); }
.landing .logo-cell:nth-child(4n) { border-right: none; }
.landing .logo-cell:nth-last-child(-n+4) { border-bottom: none; }
.landing .logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 32px;
  width: 100%;
}
.landing .logo-mark svg {
  height: 100%;
  width: auto;
  max-width: 80px;
  fill: currentColor;
  display: block;
}
.landing .logo-name {
  font-family: var(--display);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: -0.01em;
  color: var(--ink-3);
  transition: color 0.2s ease;
}
.landing .logo-cell:hover .logo-name { color: var(--ink); }

.landing .examples {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.landing .example {
  padding: 24px;
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 16px;
  font-weight: 500;
  color: var(--ink);
}
.landing .example .check {
  width: 32px; height: 32px;
  border-radius: 999px;
  background: var(--accent);
  color: oklch(0.18 0.02 45);
  display: grid; place-items: center;
  flex-shrink: 0;
}

/* Section 7: Social proof */
.landing .proof {
  background: var(--ink);
  color: oklch(0.95 0.005 70);
}
.landing .proof .eyebrow h2 { color: oklch(0.97 0.005 70); }
.landing .testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 64px;
}
.landing .testimonial {
  padding: 32px;
  background: var(--dark-2);
  border: 1px solid var(--dark-line);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.landing .testimonial blockquote {
  margin: 0;
  font-family: var(--display);
  font-weight: 500;
  font-size: 16px;
  line-height: 1.45;
  letter-spacing: -0.015em;
  color: oklch(0.96 0.005 70);
  flex: 1;
}
.landing .testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid var(--dark-line);
}
.landing .avatar {
  width: 40px; height: 40px;
  border-radius: 999px;
  background: var(--accent);
  color: oklch(0.18 0.02 45);
  display: grid; place-items: center;
  font-family: var(--display);
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
}
.landing .avatar.alt { background: oklch(0.78 0.04 60); }
.landing .avatar.alt2 { background: oklch(0.6 0.04 240); color: oklch(0.96 0.005 70); }
.landing .author-name { font-weight: 600; font-size: 14px; color: oklch(0.96 0.005 70); }
.landing .author-title { font-size: 13px; color: var(--dark-ink); }

.landing .stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--dark-line);
  padding-top: 48px;
}
.landing .stat-item { padding-right: 32px; }
.landing .stat-num {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(40px, 3.4vw, 56px);
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--accent);
}
.landing .stat-label {
  font-size: 14px;
  color: var(--dark-ink);
  margin-top: 12px;
  max-width: 28ch;
  line-height: 1.4;
}

/* Section 8: Pricing */
.landing .pricing { background: var(--paper); }
.landing .tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}
.landing .tier {
  padding: 36px 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--paper);
  display: flex;
  flex-direction: column;
}
.landing .tier.featured {
  background: var(--ink);
  color: oklch(0.95 0.005 70);
  border-color: var(--ink);
  position: relative;
}
.landing .tier-badge {
  position: absolute;
  top: -12px;
  left: 28px;
  background: var(--accent);
  color: oklch(0.18 0.02 45);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 999px;
}
.landing .tier-name {
  font-family: var(--display);
  font-weight: 600;
  font-size: 22px;
  letter-spacing: -0.015em;
}
.landing .tier-price {
  font-family: var(--display);
  font-weight: 600;
  font-size: 38px;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-top: 14px;
}
.landing .tier-price small {
  font-size: 16px;
  color: var(--ink-3);
  font-weight: 500;
  letter-spacing: 0;
}
.landing .tier.featured .tier-price small { color: var(--dark-ink); }
.landing .tier-desc {
  font-size: 14px;
  color: var(--ink-2);
  margin-top: 8px;
  margin-bottom: 24px;
  line-height: 1.5;
}
.landing .tier.featured .tier-desc { color: var(--dark-ink); }
.landing .tier-features {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 14px;
  flex: 1;
  border-top: 1px solid var(--line);
  padding-top: 24px;
}
.landing .tier.featured .tier-features { border-top-color: var(--dark-line); }
.landing .tier-features li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  line-height: 1.4;
}
.landing .tier-features li::before {
  content: "\2713";
  color: var(--accent);
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
}
.landing .tier .btn { justify-content: center; width: 100%; }

.landing .tier-note {
  margin-top: 24px;
  padding: 24px;
  background: var(--accent-soft);
  border-radius: var(--radius);
  font-size: 15px;
  color: var(--accent-ink);
  display: flex;
  gap: 16px;
  align-items: center;
}
.landing .tier-note strong { color: var(--ink); font-weight: 700; }

/* Section 9: Team */
.landing .team {
  background: var(--paper-2);
  border-top: 1px solid var(--line);
}
.landing .team-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}
.landing .team-text p {
  color: var(--ink-2);
  font-size: 18px;
  line-height: 1.55;
  max-width: 44ch;
  margin-bottom: 32px;
}
.landing .badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.landing .badge {
  padding: 8px 14px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-2);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.landing .badge .dot { width: 6px; height: 6px; border-radius: 999px; background: var(--accent); }

.landing .faces {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.landing .face {
  padding: 24px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  text-align: center;
}
.landing .face-photo {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 999px;
  margin: 0 auto 16px;
  background: var(--accent-soft);
  display: grid;
  place-items: center;
  font-family: var(--display);
  font-weight: 700;
  font-size: 36px;
  color: var(--accent-ink);
  letter-spacing: -0.02em;
  position: relative;
  overflow: hidden;
  object-fit: cover;
}
.landing img.face-photo { display: block; }
.landing .face-photo--placeholder {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-ink);
  opacity: 0.55;
}
.landing .face-photo.tone2 { background: oklch(0.85 0.03 60); color: oklch(0.32 0.05 45); }
.landing .face-photo.tone3 { background: oklch(0.82 0.04 240); color: oklch(0.32 0.08 240); }
.landing .face-name {
  font-family: var(--display);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: -0.01em;
}
.landing .face-title { font-size: 13px; color: var(--ink-3); margin-top: 4px; }
.landing .face-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-3);
  transition: color 0.15s ease;
}
.landing .face-link:hover { color: var(--accent-ink); }
.landing .face-link svg { display: block; flex-shrink: 0; }

/* Section 10: FAQ */
.landing .faq { background: var(--paper); }
.landing .faq-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  align-items: start;
}
.landing .faq-list {
  border-top: 1px solid var(--line);
}
.landing .faq-item {
  border-bottom: 1px solid var(--line);
}
.landing .faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  font-family: var(--display);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: -0.015em;
  color: var(--ink);
  cursor: pointer;
}
.landing .faq-q:hover { color: var(--accent-ink); }
.landing .faq-toggle {
  width: 32px; height: 32px;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  display: grid; place-items: center;
  flex-shrink: 0;
  font-size: 16px;
  color: var(--ink-2);
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}
.landing .faq-item.open .faq-toggle {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
  transform: rotate(45deg);
}
.landing .faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: var(--ink-2);
  font-size: 16px;
  line-height: 1.6;
}
.landing .faq-item.open .faq-a {
  max-height: 400px;
  padding: 0 0 28px;
}

/* Section 11: Final CTA */
.landing .final-cta {
  background: var(--ink);
  color: oklch(0.95 0.005 70);
  position: relative;
  overflow: hidden;
}
.landing .final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 600px 400px at 70% 50%, color-mix(in oklch, var(--accent) 20%, transparent), transparent 70%);
  pointer-events: none;
}
.landing .final-cta-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  padding: 80px 0;
}
.landing .final-cta h2 {
  font-size: clamp(36px, 3.8vw, 56px);
  max-width: 22ch;
  letter-spacing: -0.03em;
  color: oklch(0.97 0.005 70);
}
.landing .final-cta h2 em { font-style: normal; color: var(--accent); }
.landing .final-cta p {
  font-size: 20px;
  color: var(--dark-ink);
  max-width: 50ch;
}
.landing .final-cta .actions { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; }

/* Footer */
.landing .footer {
  background: var(--ink);
  color: var(--dark-ink);
  padding: 48px 0 32px;
  border-top: 1px solid var(--dark-line);
  font-size: 13px;
}
.landing .footer-inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
}
.landing .footer-cols { display: flex; gap: 32px; flex-wrap: wrap; }
.landing .footer-cols a:hover { color: var(--accent); }

/* Mobile breakpoint - tighten layout */
@media (max-width: 900px) {
  .landing .wrap { padding: 0 24px; }
  .landing section { padding: 80px 0; }
  .landing .hero { padding: 100px 0 120px; }
  .landing .hero h1 { font-size: clamp(40px, 9vw, 64px); max-width: 100%; }
  .landing .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .landing .chat-stage { display: none; }
  .landing .nav { display: none; }
  .landing .insights-grid,
  .landing .kb-grid,
  .landing .team-grid,
  .landing .faq-grid { grid-template-columns: 1fr; gap: 48px; }
  .landing .insights-features { grid-template-columns: 1fr; }
  .landing .steps,
  .landing .tiers,
  .landing .testimonials,
  .landing .stats,
  .landing .faces,
  .landing .examples,
  .landing .barrier-stats { grid-template-columns: 1fr; }
  .landing .steps::before { display: none; }
  .landing .logo-grid { grid-template-columns: repeat(2, 1fr); }
  .landing .logo-cell:nth-child(4n) { border-right: 1px solid var(--line); }
  .landing .logo-cell:nth-child(2n) { border-right: none; }
  .landing .logo-cell:nth-last-child(-n+4) { border-bottom: 1px solid var(--line); }
  .landing .logo-cell:nth-last-child(-n+2) { border-bottom: none; }
  .landing .dashboard-mock { position: static; }
  .landing .stat-item { padding-right: 0; padding-bottom: 24px; }
  .landing .persona-grid { grid-template-columns: 1fr; gap: 32px; }
  .landing .scan-row { flex-direction: column; align-items: stretch; }
  .landing .scan-row .scan-prefix { display: none; }
  .landing .scan-input { border-radius: 12px; }
  .landing .scan-btn { width: 100%; }
  .landing .contact-grid { grid-template-columns: 1fr; }
  .landing .demo-modal-card { max-width: 92vw; padding: 28px; }
}

/* === Scan-form i hero (Trin 1: URL-input → Demo modal) === */
.landing .scan-form {
  margin-top: 32px;
  max-width: 560px;
}
.landing .scan-row {
  display: flex;
  align-items: stretch;
  gap: 8px;
  background: oklch(1 0 0 / 0.05);
  border: 1px solid oklch(1 0 0 / 0.18);
  border-radius: 999px;
  padding: 6px;
  transition: border-color 0.15s ease, background 0.15s ease;
}
.landing .scan-row:focus-within {
  border-color: var(--accent);
  background: oklch(1 0 0 / 0.08);
}
.landing .scan-prefix {
  display: inline-flex;
  align-items: center;
  padding: 0 16px 0 18px;
  font-family: var(--mono);
  font-size: 14px;
  color: var(--dark-ink);
  user-select: none;
}
.landing .scan-input {
  flex: 1;
  min-width: 0;
  background: transparent;
  border: none;
  outline: none;
  color: oklch(0.97 0.005 70);
  font-family: var(--body);
  font-size: 16px;
  letter-spacing: -0.01em;
  padding: 12px 4px;
}
.landing .scan-input::placeholder { color: oklch(0.6 0.005 70); }
.landing .scan-btn {
  flex-shrink: 0;
}
.landing .scan-hint {
  margin-top: 10px;
  font-size: 13px;
  color: var(--dark-ink);
  letter-spacing: -0.005em;
}

/* === 005 Personalisering === */
.landing .persona {
  background: var(--paper);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.landing .persona-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.landing .persona-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow);
}
.landing .persona-card-head {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--display);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: -0.015em;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}
.landing .persona-icon {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: var(--accent-soft);
  color: var(--accent-ink);
  font-size: 14px;
}
.landing .persona-field {
  margin-bottom: 18px;
}
.landing .persona-field:last-child { margin-bottom: 0; }
.landing .persona-field label {
  display: block;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 8px;
}
.landing .persona-input {
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--paper-2);
  font-family: var(--display);
  font-weight: 500;
  font-size: 15px;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.landing .persona-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.landing .persona-pill {
  padding: 7px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper);
  font-family: inherit;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-2);
  letter-spacing: -0.005em;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.landing .persona-pill:hover {
  border-color: var(--ink-3);
  color: var(--ink);
}
.landing .persona-pill.active {
  background: var(--ink);
  color: oklch(0.97 0.005 70);
  border-color: var(--ink);
}
.landing .persona-pill.active:hover {
  background: var(--ink);
  color: oklch(0.97 0.005 70);
}

.landing .persona-preview {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.landing .persona-preview-card {
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 20px;
}
.landing .persona-preview-tag {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 14px;
}
.landing .persona-msg {
  padding: 12px 16px;
  border-radius: 14px;
  font-size: 14px;
  line-height: 1.45;
  margin-bottom: 8px;
  max-width: 85%;
  letter-spacing: -0.005em;
}
.landing .persona-msg:last-child { margin-bottom: 0; }
.landing .persona-msg small {
  display: block;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.55;
  margin-bottom: 3px;
  font-weight: 600;
}
.landing .persona-msg.user {
  background: var(--paper);
  border: 1px solid var(--line);
  color: var(--ink);
  border-bottom-right-radius: 5px;
  margin-left: 0;
}
.landing .persona-msg.bot {
  background: var(--accent);
  color: oklch(0.2 0.02 45);
  border-bottom-left-radius: 5px;
  margin-left: auto;
}

/* === Pricing fineprint (under tier-note) === */
.landing .tier-fineprint {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 13px;
  color: var(--ink-3);
  line-height: 1.5;
  padding: 0 4px;
}
.landing .tier-fineprint p { margin: 0; }
.landing .tier-fineprint strong { color: var(--ink); font-weight: 600; }

/* === Team: par af ansigter === */
.landing .faces-pair {
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  max-width: 480px;
}

/* === Final-cta paragraph link === */
.landing .final-cta-mail {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.landing .final-cta-mail:hover { color: oklch(0.78 0.18 50); }

/* === Kontakt-formular i 013 === */
.landing .contact-wrap {
  margin-top: 48px;
  padding: 32px;
  background: oklch(1 0 0 / 0.04);
  border: 1px solid var(--dark-line);
  border-radius: var(--radius-lg);
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}
.landing .contact-form h3 {
  font-family: var(--display);
  font-weight: 600;
  font-size: 22px;
  letter-spacing: -0.015em;
  margin: 0 0 20px;
  color: oklch(0.97 0.005 70);
}
.landing .contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.landing .contact-grid label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--dark-ink);
}
.landing .contact-grid label.contact-full { grid-column: 1 / -1; }
.landing .contact-grid label em {
  font-style: normal;
  text-transform: none;
  letter-spacing: 0.04em;
  color: oklch(0.55 0.005 70);
}
.landing .contact-grid input,
.landing .contact-grid textarea {
  background: oklch(1 0 0 / 0.05);
  border: 1px solid var(--dark-line);
  color: oklch(0.97 0.005 70);
  font-family: var(--body);
  font-size: 15px;
  padding: 10px 14px;
  border-radius: 10px;
  outline: none;
  letter-spacing: -0.005em;
  resize: vertical;
}
.landing .contact-grid input:focus,
.landing .contact-grid textarea:focus {
  border-color: var(--accent);
  background: oklch(1 0 0 / 0.08);
}
.landing .contact-actions {
  margin-top: 18px;
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.landing .contact-status {
  font-size: 13px;
  letter-spacing: -0.005em;
}
.landing .contact-status.success { color: var(--accent); }
.landing .contact-status.error { color: oklch(0.7 0.18 25); }

/* === Demo-modal === */
.landing .demo-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
}
.landing .demo-modal.open { display: flex; }
.landing .demo-modal-backdrop {
  position: absolute;
  inset: 0;
  background: oklch(0.18 0.012 60 / 0.6);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.landing .demo-modal-card {
  position: relative;
  width: 480px;
  max-width: 92vw;
  max-height: 90vh;
  overflow-y: auto;
  background: var(--paper);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-lg);
  animation: demoIn 0.25s ease-out;
}
@keyframes demoIn {
  from { opacity: 0; transform: translateY(12px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.landing .demo-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink-2);
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
}
.landing .demo-modal-close:hover { color: var(--ink); border-color: var(--ink-3); }
.landing .demo-modal-body h3 {
  font-family: var(--display);
  font-weight: 600;
  font-size: 24px;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin: 0 0 8px;
}
.landing .demo-modal-body > p {
  color: var(--ink-2);
  font-size: 15px;
  line-height: 1.5;
  margin: 0 0 24px;
}
.landing .demo-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.landing .demo-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.landing .demo-field input {
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 11px 14px;
  font-family: var(--body);
  font-size: 15px;
  color: var(--ink);
  outline: none;
  letter-spacing: -0.005em;
}
.landing .demo-field input:focus {
  border-color: var(--accent);
  background: var(--paper);
}
.landing .demo-submit {
  width: 100%;
  justify-content: center;
  margin-top: 6px;
}
.landing .demo-note {
  font-size: 12px;
  color: var(--ink-3);
  text-align: center;
  margin: 4px 0 0;
  letter-spacing: -0.005em;
}
.landing .demo-status {
  text-align: center;
  font-size: 13px;
  font-family: var(--body);
  text-transform: none;
  letter-spacing: -0.005em;
  margin: 0;
  min-height: 1.4em;
}
.landing .demo-status.success { color: var(--accent-ink); }
.landing .demo-status.error { color: oklch(0.55 0.18 25); }

