/* Dayfile website — shared stylesheet
   Source of truth: dayfile-brand-guidelines v2 / dayfile-vanta-style-homepage.html */

:root {
  --forest: #173f35;
  --forest-deep: #0b2923;
  --warm: #faf8f2;
  --paper: #fffdf8;
  --sage: #e7eee8;
  --sage-2: #d4e2d7;
  --peach: #f3e9df;
  --pale-green: #dce9df;
  --orange: #f15a24;
  --orange-soft: #ff9068;
  --orange-text: #c2421a; /* darker orange for small text — 4.5:1 on warm/paper */
  --ink: #1f2925;
  --muted: #5e6a64;
  --line: rgba(23,63,53,.22);
  --line-soft: rgba(23,63,53,.14);
  --shadow: 0 18px 50px rgba(13,44,38,.11);
  --serif: "Newsreader", Georgia, "Times New Roman", serif;
  --sans: "Inter", Arial, Helvetica, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--warm);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
img, svg { display: block; max-width: 100%; }
.shell { width: min(1268px, calc(100% - 64px)); margin-inline: auto; }
.serif { font-family: var(--serif); font-weight: 400; letter-spacing: -.02em; }
.eyebrow {
  margin: 0 0 28px;
  color: var(--orange-text);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.on-dark .eyebrow { color: var(--orange-soft); }
.section-head .eyebrow, .letter .eyebrow, .split-copy .eyebrow, .prose .eyebrow { color: var(--orange-text); font-family: var(--sans); font-size: 12px; line-height: 1.6; letter-spacing: .13em; }
.on-dark .section-head .eyebrow, .on-dark .split-copy .eyebrow { color: var(--orange-soft); }
/* Breathing room between the orange eyebrow and the big serif heading beneath it */
.hero .eyebrow, .section-head .eyebrow, .split-copy .eyebrow, .final-cta .eyebrow { margin-bottom: 32px; }
.letter .eyebrow, .prose .eyebrow { margin-bottom: 28px; }

/* Buttons */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 46px;
  padding: 9px 10px 9px 18px;
  border: 1px solid var(--forest);
  border-radius: 999px;
  background: var(--forest);
  color: var(--warm);
  font-weight: 600;
  cursor: pointer;
  transition: transform .2s ease, background-color .2s ease;
}
.button:hover { transform: translateY(-1px); background: var(--forest-deep); }
.button:focus-visible { outline: 3px solid var(--orange); outline-offset: 3px; }
.button .arrow {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--forest-deep);
  font-size: 20px;
  line-height: 1;
}
.button.secondary { background: transparent; color: var(--forest); padding-right: 18px; }
.button.secondary:hover { background: var(--sage); }
.button.inverse { background: var(--warm); border-color: var(--warm); color: var(--forest-deep); }
.button.inverse:hover { background: var(--sage); }
.text-link { color: var(--forest); font-size: 13px; font-weight: 600; }
.text-link:hover { text-decoration: underline; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(250,248,242,.95);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}
.nav {
  min-height: 72px;
  display: grid;
  grid-template-columns: 220px 1fr auto;
  align-items: center;
  gap: 28px;
}
.brand { display: inline-flex; align-items: center; width: fit-content; }
.brand img { height: 44px; width: auto; }
.nav-links { display: flex; align-items: center; justify-content: center; gap: clamp(18px, 3vw, 42px); }
.nav-links a { font-size: 15px; padding: 6px 0; border-bottom: 2px solid transparent; }
.nav-links a:hover, .nav-links a[aria-current="page"] { border-bottom-color: var(--orange); }
.nav-actions { display: flex; align-items: center; gap: 14px; }
.login { padding: 9px 4px; font-size: 15px; }
.nav .button { min-height: 43px; }
.menu-button { display: none; border: 0; background: transparent; color: var(--forest); font-size: 25px; cursor: pointer; padding: 6px 4px; }
.mobile-menu { display: none; border-top: 1px solid var(--line); background: var(--warm); }
.mobile-menu.open { display: block; }
.mobile-menu a { display: block; padding: 14px 0; border-bottom: 1px solid var(--line-soft); font-size: 17px; }
.mobile-menu a:last-child { border-bottom: 0; }

/* Announcement */
.announcement { background: var(--forest-deep); color: var(--warm); }
.announcement .shell {
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  text-align: center;
  font-size: 14px;
  flex-wrap: wrap;
}
.announcement-mark {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--forest-deep);
  display: grid;
  place-items: center;
  font-weight: 700;
  flex: none;
}
.announcement a { text-decoration: underline; text-underline-offset: 3px; }

/* Hero */
.hero {
  min-height: 720px;
  display: grid;
  place-items: center;
  text-align: center;
  background:
    radial-gradient(circle at 10% 100%, rgba(241,90,36,.14), transparent 30%),
    linear-gradient(135deg, var(--sage), var(--warm) 68%);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.hero.compact { min-height: 560px; }
.hero-inner { max-width: 1060px; padding: 112px 0 126px; }
.hero h1 {
  max-width: 1040px;
  margin: 0 auto 20px;
  color: var(--forest);
  font-size: clamp(52px, 6.4vw, 84px);
  line-height: 1.04;
}
.hero.compact h1 { font-size: clamp(44px, 5.4vw, 72px); }
.hero-copy {
  max-width: 690px;
  margin: 8px auto 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(22px, 2.3vw, 31px);
  line-height: 1.3;
  letter-spacing: -.02em;
}
.hero-form {
  max-width: 500px;
  margin: 38px auto 0;
  padding: 4px;
  display: grid;
  grid-template-columns: 1fr auto;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: 0 10px 30px rgba(23,63,53,.08);
}
.hero-form input {
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  padding: 10px 16px;
  color: var(--ink);
}
.hero-form input:focus-visible { box-shadow: inset 0 0 0 2px var(--orange); border-radius: 999px; }
.hero-form input::placeholder { color: #839089; }
.hero-note { margin: 13px 0 0; color: var(--muted); font-size: 12px; }
.hero-actions { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; margin-top: 38px; }

/* Self-select / sector strip */
.sector-strip { padding: 56px 0 72px; background: var(--paper); border-bottom: 1px solid var(--line); }
.sector-title { margin: 0 0 38px; color: var(--muted); text-align: center; font-size: 13px; letter-spacing: .04em; text-transform: uppercase; }
.select-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.select-card {
  display: flex; flex-direction: column; gap: 10px;
  padding: 26px 26px 22px;
  background: var(--warm);
  border: 1px solid var(--line);
  border-radius: 16px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.select-card:hover { transform: translateY(-2px); box-shadow: var(--shadow); border-color: var(--forest); }
.select-card h3 { margin: 0; color: var(--forest); font-family: var(--serif); font-size: 26px; font-weight: 400; line-height: 1.14; letter-spacing: -.02em; }
.select-card p { margin: 0; color: var(--muted); font-size: 13px; flex: 1; }
.select-card .go { color: var(--forest); font-size: 13px; font-weight: 600; }
.select-card .go::after { content: " →"; color: var(--orange-text); }
.select-grid.compact { grid-template-columns: repeat(5, 1fr); gap: 12px; }
.select-grid.compact .select-card { padding: 20px 20px 18px; gap: 14px; }
.select-grid.compact h3 { font-size: 21px; }
.select-other { margin: 22px 0 0; text-align: center; color: var(--muted); font-size: 14px; }
.select-other a { color: var(--forest); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }

/* Generic section */
.section { padding: 138px 0 150px; }
.section.tight { padding: 100px 0 110px; }
.section-head { max-width: 820px; margin: 0 auto 68px; text-align: center; }
.section-head.left { margin-inline: 0; text-align: left; }
.section-head h2 { margin: 0 0 22px; color: var(--forest); font-size: clamp(40px, 4.4vw, 62px); line-height: 1.1; }
.section-head p { max-width: 650px; margin: 0 auto; color: var(--muted); font-size: 18px; }
.section-head.left p { margin-inline: 0; }
.on-dark .section-head h2 { color: var(--warm); }
.on-dark .section-head p { color: rgba(250,248,242,.75); }
.bg-warm { background: var(--warm); }
.bg-paper { background: var(--paper); }
.bg-sage { background: var(--sage); }
.bg-forest { background: var(--forest); color: var(--warm); }
.bg-deep { background: var(--forest-deep); color: var(--warm); }
.bg-orange { background: var(--orange); color: var(--forest-deep); }

/* Feature cards */
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.feature-card {
  min-height: 410px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: var(--sage);
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
}
.feature-card:nth-child(3n+2) { background: var(--peach); }
.feature-card:nth-child(3n+3) { background: var(--pale-green); }
.feature-card h3 { margin: 0 0 10px; color: var(--forest); font-family: var(--serif); font-size: 32px; font-weight: 400; line-height: 1.12; letter-spacing: -.02em; }
.feature-card p { margin: 0; color: var(--muted); font-size: 14px; }
.mini-ui { margin-top: 42px; padding: 16px; background: var(--paper); border: 1px solid var(--line-soft); border-radius: 12px; box-shadow: var(--shadow); }
.mini-head { display: flex; justify-content: space-between; align-items: center; padding-bottom: 10px; margin-bottom: 4px; border-bottom: 1px solid rgba(23,63,53,.12); font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: .08em; }
.mini-head strong { color: var(--forest); font-size: 12px; letter-spacing: 0; text-transform: none; }
.mini-row { display: grid; grid-template-columns: 8px 1fr auto; align-items: center; gap: 10px; padding: 10px 2px; border-bottom: 1px solid rgba(23,63,53,.12); font-size: 12px; }
.mini-row:last-child { border-bottom: 0; }
.mini-row.folder { grid-template-columns: 16px 1fr auto; }
.mini-row .count { color: var(--muted); font-size: 11px; }
.dot { width: 8px; height: 8px; border-radius: 50%; background: var(--orange); }
.pill { padding: 3px 8px; border-radius: 999px; background: var(--sage); color: var(--forest); font-size: 10px; font-weight: 600; white-space: nowrap; }
.pill.wa { background: #dcf3e3; }
.pill.teams { background: #e4e1f5; }
.pill.mail { background: var(--peach); }
.pill.out { background: #f6dcd2; color: #8a2f12; }
.folder-icon { width: 16px; height: 12px; border-radius: 2px; background: var(--forest); position: relative; }
.folder-icon::before { content: ""; position: absolute; left: 0; top: -3px; width: 7px; height: 3px; border-radius: 2px 2px 0 0; background: var(--forest); }
.mini-summary { margin-top: 10px; padding: 10px 12px; border-radius: 8px; background: var(--sage); font-size: 11.5px; line-height: 1.5; color: var(--ink); }
.mini-summary strong { display: block; color: var(--forest); font-size: 10px; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 3px; }
.timeline { position: relative; margin: 44px 4px 6px; padding-left: 22px; }
.timeline::before { content: ""; position: absolute; inset: 3px auto 8px 5px; width: 1px; background: var(--forest); }
.timeline-item { position: relative; padding: 0 0 20px; font-size: 12px; color: var(--muted); }
.timeline-item::before { content: ""; position: absolute; left: -21px; top: 3px; width: 8px; height: 8px; border-radius: 50%; background: var(--orange); box-shadow: 0 0 0 4px var(--paper); }
.timeline-item strong { display: block; color: var(--ink); font-size: 13px; }
.timeline-item em { display: block; font-style: normal; color: var(--muted); font-size: 11px; margin-top: 2px; }
.timeline-gap { padding: 0 0 20px; font-size: 11px; color: var(--muted); font-style: italic; }

/* Two-column story sections (dark briefing pattern) */
.split { display: grid; grid-template-columns: .85fr 1.15fr; gap: 84px; align-items: center; }
.split.reverse { grid-template-columns: 1.15fr .85fr; }
.split h2 { margin: 0 0 24px; font-size: clamp(38px, 4.2vw, 58px); line-height: 1.1; }
.split-copy > p:not(.eyebrow) { max-width: 520px; margin: 0 0 22px; font-size: 18px; }
.on-dark .split-copy > p:not(.eyebrow) { color: rgba(250,248,242,.78); }
.split-copy ul { margin: 0 0 26px; padding-left: 18px; font-size: 16px; }
.split-copy li { margin: 6px 0; }
.on-dark .split-copy ul { color: rgba(250,248,242,.85); }
.ui-panel {
  position: relative;
  min-height: 460px;
  padding: 26px;
  background: var(--warm);
  color: var(--ink);
  border-radius: 18px;
  box-shadow: 0 30px 80px rgba(0,0,0,.25);
}
.bg-warm .ui-panel, .bg-sage .ui-panel, .bg-paper .ui-panel { background: var(--paper); box-shadow: var(--shadow); border: 1px solid var(--line-soft); }
.ui-panel:has(.floating-proof) { padding-bottom: 120px; }
.ui-bar { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding-bottom: 18px; border-bottom: 1px solid var(--line); }
.ui-title { font-weight: 600; color: var(--forest); }
.ui-date { font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: .08em; }
.brief-list { display: grid; gap: 12px; margin-top: 20px; }
.brief-item { display: grid; grid-template-columns: 36px 1fr auto; gap: 14px; align-items: start; padding: 16px; background: var(--paper); border: 1px solid var(--line-soft); border-radius: 11px; }
.bg-warm .brief-item, .bg-sage .brief-item, .bg-paper .brief-item { background: var(--warm); }
.brief-icon { width: 36px; height: 36px; display: grid; place-items: center; border-radius: 50%; background: var(--sage); color: var(--forest); font-weight: 600; }
.brief-icon.out { background: #f6dcd2; color: #8a2f12; }
.brief-item strong { display: block; margin-bottom: 2px; color: var(--ink); font-size: 13px; }
.brief-item p { margin: 0; color: var(--muted); font-size: 11.5px; line-height: 1.45; }
.brief-item p q { font-style: italic; }
.brief-tag { color: var(--orange-text); font-size: 10px; font-weight: 600; text-transform: uppercase; letter-spacing: .07em; white-space: nowrap; }
.floating-proof { position: absolute; right: -26px; bottom: 42px; width: 235px; padding: 16px; border-radius: 11px; background: var(--orange); color: var(--forest-deep); box-shadow: var(--shadow); }
.floating-proof span { display: block; font-size: 10px; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; }
.floating-proof strong { display: block; margin-top: 5px; font-family: var(--serif); font-size: 24px; font-weight: 500; line-height: 1.15; }

/* Vault panel */
.vault { display: grid; grid-template-columns: 190px 1fr; gap: 0; min-height: 420px; border: 1px solid var(--line-soft); border-radius: 14px; overflow: hidden; background: var(--paper); }
.vault-side { padding: 16px 14px; background: var(--sage); border-right: 1px solid var(--line-soft); font-size: 12px; }
.vault-side h4 { margin: 8px 0 6px; font-size: 10px; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); font-weight: 600; }
.vault-side a, .vault-side span.item { display: flex; justify-content: space-between; gap: 8px; padding: 6px 8px; border-radius: 6px; color: var(--ink); }
.vault-side .active { background: var(--paper); color: var(--forest); font-weight: 600; }
.vault-side small { color: var(--muted); }
.vault-main { padding: 16px 18px; }
.vault-main .mini-head { margin-bottom: 8px; }
.vault-doc { padding: 10px 0; border-bottom: 1px solid rgba(23,63,53,.12); font-size: 12px; display: grid; grid-template-columns: 1fr auto; gap: 10px; align-items: start; }
.vault-doc:last-child { border-bottom: 0; }
.vault-doc strong { display: block; color: var(--ink); font-size: 12.5px; }
.vault-doc span { color: var(--muted); font-size: 11.5px; }

/* Comparison */
.compare { display: grid; grid-template-columns: 1.2fr 1fr 1fr; border: 1px solid var(--line); border-radius: 18px; overflow: hidden; background: var(--paper); }
.compare > div { padding: 18px 22px; border-bottom: 1px solid var(--line-soft); font-size: 15px; }
.compare > div:nth-child(3n+1) { color: var(--ink); font-weight: 500; }
.compare > div:nth-child(3n+2) { color: var(--muted); border-left: 1px solid var(--line-soft); }
.compare > div:nth-child(3n+3) { color: var(--forest); background: var(--sage); border-left: 1px solid var(--line-soft); font-weight: 500; }
.compare > div.head { background: var(--forest); color: var(--warm) !important; font-family: var(--serif); font-size: 22px; font-weight: 400 !important; letter-spacing: -.02em; }
.compare > div.head.dim { background: var(--forest-deep); color: rgba(250,248,242,.8) !important; }
.compare > div:nth-last-child(-n+3) { border-bottom: 0; }
.tick::before { content: "✓  "; color: var(--orange-text); font-weight: 700; }
.cross::before { content: "—  "; color: var(--muted); }

/* Quote band */
.quote { padding: 145px 0; }
.quote blockquote { max-width: 1040px; margin: 0 auto; text-align: center; font-family: var(--serif); font-size: clamp(36px, 4.4vw, 60px); line-height: 1.12; letter-spacing: -.02em; }
.quote footer { margin-top: 35px; text-align: center; font-size: 13px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; }

/* Answer cards */
.answer-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.answer-card { min-height: 330px; padding: 26px; display: flex; flex-direction: column; background: var(--warm); border: 1px solid var(--line); border-radius: 16px; }
.bg-warm .answer-card { background: var(--paper); }
.answer-number { color: var(--orange-text); font-size: 12px; font-weight: 600; }
.answer-card h3 { margin: 0 0 12px; color: var(--forest); font-family: var(--serif); font-size: 29px; font-weight: 400; line-height: 1.12; letter-spacing: -.02em; }
.answer-card p { margin: 0 0 18px; color: var(--muted); font-size: 13px; }
.answer-card .example { margin: 0 0 14px; padding: 10px 12px; border-radius: 8px; background: var(--sage); color: var(--forest); font-size: 12px; font-style: italic; }

/* Benefits grid */
.benefit-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.benefit { padding: 28px; background: var(--paper); border: 1px solid var(--line); border-radius: 16px; }
.bg-paper .benefit { background: var(--warm); }
.benefit h3 { margin: 0 0 8px; color: var(--forest); font-family: var(--serif); font-size: 26px; font-weight: 400; line-height: 1.15; letter-spacing: -.02em; }
.benefit p { margin: 0; color: var(--muted); font-size: 14px; }

/* "Sound familiar" quotes */
.quote-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.quote-card { padding: 24px; background: var(--paper); border: 1px solid var(--line); border-radius: 14px; font-family: var(--serif); font-size: 22px; line-height: 1.25; letter-spacing: -.01em; color: var(--forest); }
.quote-card::before { content: "“"; color: var(--orange-text); }
.quote-card::after { content: "”"; color: var(--orange-text); }

/* Steps */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; counter-reset: step; }
.step { position: relative; padding: 30px 28px 28px; background: var(--paper); border: 1px solid var(--line); border-radius: 16px; }
.step::before { counter-increment: step; content: counter(step, decimal-leading-zero); display: block; color: var(--orange-text); font-size: 12px; font-weight: 600; margin-bottom: 14px; }
.step h3 { margin: 0 0 8px; color: var(--forest); font-family: var(--serif); font-size: 27px; font-weight: 400; line-height: 1.15; letter-spacing: -.02em; }
.step p { margin: 0; color: var(--muted); font-size: 14px; }

/* Letter */
.letter-wrap { display: grid; grid-template-columns: 300px 1fr; gap: 64px; align-items: start; }
.letter-aside { position: sticky; top: 100px; }
.letter-aside img { width: 220px; height: 220px; border-radius: 50%; object-fit: cover; border: 6px solid var(--paper); box-shadow: var(--shadow); }
.letter-aside .name { margin: 22px 0 2px; font-family: var(--serif); font-size: 28px; color: var(--forest); letter-spacing: -.01em; line-height: 1.15; }
.letter-aside .role { margin: 0; color: var(--muted); font-size: 13px; }
.letter { padding: 56px 60px 52px; background: var(--paper); border: 1px solid var(--line); border-radius: 18px; box-shadow: var(--shadow); }
.letter .eyebrow { margin-bottom: 28px; }
.letter p { margin: 0 0 20px; font-family: var(--serif); font-size: 21px; line-height: 1.45; letter-spacing: 0; color: var(--ink); }
.letter p.lead { font-size: 27px; color: var(--forest); }
.letter p strong { font-weight: 500; color: var(--forest); }
.letter .sign { margin-top: 34px; padding-top: 24px; border-top: 1px solid var(--line-soft); font-family: var(--sans); font-size: 14px; color: var(--muted); }
.letter .sign strong { display: block; color: var(--forest); font-family: var(--serif); font-size: 24px; letter-spacing: -.02em; }

/* Team */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.person { padding: 30px; background: var(--paper); border: 1px solid var(--line); border-radius: 18px; }
.person img { width: 132px; height: 132px; border-radius: 50%; object-fit: cover; margin-bottom: 20px; }
.person h3 { margin: 0; color: var(--forest); font-family: var(--serif); font-size: 29px; font-weight: 400; line-height: 1.12; letter-spacing: -.02em; }
.person .role { margin: 4px 0 14px; color: var(--orange-text); font-size: 12px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; }
.person p { margin: 0 0 10px; color: var(--muted); font-size: 14px; }
.person a { color: var(--forest); font-size: 13px; font-weight: 600; }
.person a.button { color: var(--warm); font-size: 16px; margin-top: 8px; }

/* Principles */
.principle-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.principle { padding: 28px 30px; border-radius: 16px; background: var(--paper); border: 1px solid var(--line); }
.principle h3 { margin: 0 0 8px; color: var(--forest); font-family: var(--serif); font-size: 27px; font-weight: 400; line-height: 1.15; letter-spacing: -.02em; }
.principle p { margin: 0; color: var(--muted); font-size: 14px; }

/* Trust strip */
.trust { padding: 64px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.trust-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 48px; align-items: center; }
.trust h2 { margin: 0 0 12px; color: var(--forest); font-family: var(--serif); font-size: 34px; font-weight: 400; letter-spacing: -.02em; line-height: 1.15; }
.trust p { margin: 0; color: var(--muted); font-size: 15px; max-width: 560px; }
.badges { display: flex; gap: 12px; flex-wrap: wrap; justify-content: flex-end; }
.badge { display: flex; align-items: center; gap: 12px; padding: 12px 16px 12px 12px; border-radius: 12px; background: var(--paper); border: 1px solid var(--line); color: var(--forest); font-size: 10.5px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; line-height: 1.3; text-align: left; }
.badge img { height: 40px; width: auto; flex: none; }
.badge img[src$="badge-gdpr.svg"] { height: 40px; }
.badge img[src$="badge-uk-hosted.svg"] { height: 40px; }
.badge img[src$="badge-microsoft.svg"] { height: 30px; }
.badge small { display: block; margin-top: 2px; font-size: 9px; font-weight: 600; letter-spacing: .06em; color: var(--muted); text-transform: none; }

/* Pricing */
.price-table { width: 100%; border-collapse: separate; border-spacing: 0; background: var(--paper); border: 1px solid var(--line); border-radius: 16px; overflow: hidden; font-size: 15px; }
.price-table th, .price-table td { padding: 14px 20px; text-align: left; border-bottom: 1px solid var(--line-soft); }
.price-table th { background: var(--forest); color: var(--warm); font-weight: 500; font-size: 13px; letter-spacing: .04em; text-transform: uppercase; }
.price-table td:nth-child(2), .price-table td:nth-child(3), .price-table th:nth-child(2), .price-table th:nth-child(3), .price-table td:nth-child(4), .price-table th:nth-child(4) { text-align: right; }
.price-table td strong { color: var(--forest); font-family: var(--serif); font-size: 22px; font-weight: 400; letter-spacing: -.02em; }
.price-table tr:last-child td { border-bottom: 0; }
.price-note { margin: 16px 0 0; color: var(--muted); font-size: 13px; }
.included-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.included { padding: 30px; background: var(--paper); border: 1px solid var(--line); border-radius: 18px; }
.included h3 { margin: 0 0 14px; color: var(--forest); font-family: var(--serif); font-size: 30px; font-weight: 400; letter-spacing: -.02em; line-height: 1.12; }
.included ul { margin: 0; padding-left: 0; list-style: none; }
.included li { position: relative; padding: 7px 0 7px 22px; border-bottom: 1px solid var(--line-soft); font-size: 14.5px; color: var(--ink); }
.included li:last-child { border-bottom: 0; }
.included li::before { content: "✓"; position: absolute; left: 0; color: var(--orange-text); font-weight: 700; }
.addon-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.addon { padding: 28px 30px; background: var(--sage); border: 1px solid var(--line); border-radius: 18px; }
.addon:nth-child(2) { background: var(--peach); }
.addon h3 { margin: 0 0 4px; color: var(--forest); font-family: var(--serif); font-size: 28px; font-weight: 400; letter-spacing: -.02em; line-height: 1.12; }
.addon .price { margin: 0 0 12px; color: var(--forest); font-weight: 600; font-size: 15px; }
.addon p { margin: 0; color: var(--muted); font-size: 14px; }

/* FAQ / numbered list */
.faq-group h2 { margin: 48px 0 18px; color: var(--forest); font-family: var(--serif); font-size: 34px; font-weight: 400; letter-spacing: -.02em; line-height: 1.12; }
.faq-group h2:first-child { margin-top: 0; }
details { border-top: 1px solid var(--line); }
details:last-of-type { border-bottom: 1px solid var(--line); }
summary { cursor: pointer; padding: 18px 0; list-style: none; display: flex; justify-content: space-between; gap: 20px; font-family: var(--serif); font-size: 23px; line-height: 1.25; color: var(--forest); letter-spacing: -.01em; }
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; color: var(--orange-text); font-size: 26px; line-height: 1; flex: none; }
details[open] summary::after { content: "–"; }
details p { margin: 0 0 20px; max-width: 760px; color: var(--muted); font-size: 15.5px; }
.numbered { display: grid; gap: 14px; }
.numbered-item { display: grid; grid-template-columns: 44px 1fr; gap: 20px; padding: 22px 26px; background: var(--paper); border: 1px solid var(--line); border-radius: 14px; }
.numbered-item .n { width: 36px; height: 36px; display: grid; place-items: center; border-radius: 50%; background: var(--orange); color: var(--forest-deep); font-weight: 700; font-size: 14px; }
.numbered-item h3 { margin: 4px 0 6px; color: var(--forest); font-family: var(--serif); font-size: 26px; font-weight: 400; letter-spacing: -.01em; line-height: 1.15; }
.numbered-item p { margin: 0; color: var(--muted); font-size: 14.5px; }

/* Prose */
.prose { max-width: 760px; }
.prose p { font-size: 18px; color: var(--ink); margin: 0 0 20px; }
.prose.legal h2.legal-h { margin: 36px 0 12px; color: var(--forest); font-family: var(--serif); font-size: 26px; font-weight: 400; letter-spacing: -.02em; line-height: 1.2; }
.prose.legal h2.legal-h:first-child { margin-top: 0; }
.prose.legal p { font-size: 16.5px; line-height: 1.6; }
.prose.legal ul { margin: 0 0 20px; padding-left: 22px; }
.prose.legal li { font-size: 16.5px; line-height: 1.6; margin: 0 0 8px; color: var(--ink); }
.prose p.big { font-family: var(--serif); font-size: 28px; line-height: 1.35; letter-spacing: -.01em; color: var(--forest); }

/* Final CTA */
.final-cta { padding: 140px 0; background: var(--forest); color: var(--warm); text-align: center; }
.final-cta h2 { max-width: 850px; margin: 0 auto 32px; font-size: clamp(44px, 5.4vw, 74px); line-height: 1.06; }
.final-cta p { max-width: 600px; margin: 0 auto 32px; color: rgba(250,248,242,.76); font-size: 18px; }
.final-cta .eyebrow { color: var(--orange-soft); }
.final-cta .cta-alt { margin: 22px auto 0; max-width: 700px; text-align: center; font-size: 15px; color: rgba(250,248,242,.72); }
.final-cta .cta-alt a { color: var(--warm); text-decoration: underline; text-underline-offset: 3px; }

/* Footer */
.site-footer { padding: 65px 0 32px; background: var(--warm); border-top: 1px solid var(--line); }
.footer-grid { display: grid; grid-template-columns: 1.7fr repeat(3, 1fr); gap: 45px; }
.footer-brand img { height: 40px; width: auto; }
.footer-brand p { max-width: 300px; color: var(--muted); font-size: 13px; }
.footer-col h3 { margin: 3px 0 15px; color: var(--forest); font-size: 13px; }
.footer-col a { display: block; margin: 8px 0; color: var(--muted); font-size: 13px; }
.footer-col a:hover { color: var(--forest); }
.footer-base { margin-top: 55px; padding-top: 22px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; gap: 25px; color: var(--muted); font-size: 11px; }


/* Example labels on illustrative panels */
.ui-panel, .product-panel { position: relative; }
.ui-panel::after, .product-panel::after { content: "Example"; position: absolute; top: 12px; right: 14px; padding: 2px 8px; border-radius: 999px; background: var(--sage); color: var(--muted); font-size: 10px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; pointer-events: none; }
.ui-panel .ui-bar, .product-panel .mini-head { padding-right: 84px; }

/* Nav dropdowns */
.has-menu { position: relative; }
.has-menu > a span { font-size: 12px; opacity: .7; }
.menu { display: none; position: absolute; top: calc(100% + 6px); left: -14px; min-width: 300px; padding: 8px; background: var(--paper); border: 1px solid var(--line); border-radius: 14px; box-shadow: var(--shadow); z-index: 30; }
.menu::before { content: ""; position: absolute; top: -8px; left: 0; right: 0; height: 8px; }
.menu a { display: block; padding: 10px 12px; border-radius: 8px; font-size: 14px; border-bottom: 0 !important; }
.menu a:hover { background: var(--sage); }
.has-menu:hover .menu, .has-menu:focus-within .menu { display: block; }
.mobile-menu .mm-head { display: block; margin: 18px 0 4px; color: var(--orange-text); font-size: 11px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; }
.mobile-menu a { padding: 10px 0; font-size: 16px; }

/* Product panel (homepage) */
.product-panel { display: grid; grid-template-columns: 230px 1fr 300px; min-height: 480px; background: var(--paper); border: 1px solid var(--line); border-radius: 18px; box-shadow: var(--shadow); overflow: hidden; }
.pp-side { padding: 20px 16px; background: var(--sage); border-right: 1px solid var(--line-soft); font-size: 13px; }
.pp-side h4 { margin: 12px 0 6px; font-size: 10px; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); font-weight: 600; }
.pp-side h4:first-child { margin-top: 0; }
.pp-side .item { display: flex; justify-content: space-between; gap: 8px; padding: 7px 10px; border-radius: 7px; color: var(--ink); }
.pp-side .item.active { background: var(--paper); color: var(--forest); font-weight: 600; }
.pp-side .item small { color: var(--muted); }
.pp-main { padding: 22px 24px; }
.pp-main .mini-head { margin-bottom: 10px; }
.pp-folder { display: grid; grid-template-columns: 18px 1fr auto auto; align-items: center; gap: 12px; padding: 12px 4px; border-bottom: 1px solid rgba(23,63,53,.12); font-size: 13.5px; }
.pp-folder:last-child { border-bottom: 0; }
.pp-folder .count { color: var(--muted); font-size: 12px; }
.pp-folder .new { padding: 2px 8px; border-radius: 999px; background: var(--peach); color: #8a2f12; font-size: 10px; font-weight: 600; }
.pp-right { padding: 22px 22px; background: var(--warm); border-left: 1px solid var(--line-soft); }
.pp-right h5 { margin: 0 0 6px; font-size: 10px; text-transform: uppercase; letter-spacing: .08em; color: var(--orange-text); font-weight: 600; }
.pp-right p { margin: 0 0 16px; font-size: 13px; line-height: 1.5; color: var(--ink); }
.pp-right .src { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 18px; }
.pp-right .ask { padding: 12px 14px; border-radius: 999px; border: 1px solid var(--line); background: var(--paper); font-size: 12.5px; color: var(--muted); font-style: italic; }
.claims { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 28px; }
.claim { padding: 26px 28px; background: var(--paper); border: 1px solid var(--line); border-radius: 16px; display: flex; flex-direction: column; }
.claim h3 { margin: 0 0 8px; color: var(--forest); font-family: var(--serif); font-size: 26px; font-weight: 400; line-height: 1.15; letter-spacing: -.02em; }
.claim p { margin: 0 0 14px; color: var(--muted); font-size: 14px; flex: 1; }
.chat-row { display: grid; grid-template-columns: 1fr; gap: 6px; padding: 8px 2px; border-bottom: 1px solid rgba(23,63,53,.12); font-size: 12px; }
.chat-row:last-child { border-bottom: 0; }
.chat-row .who { color: var(--muted); font-size: 10.5px; }
.chat-row .bubble { padding: 8px 10px; border-radius: 10px; background: #dcf3e3; color: var(--ink); width: fit-content; max-width: 100%; }
.chat-row .bubble.media { background: var(--sage); color: var(--forest); font-weight: 600; }
.transcript { font-size: 12px; }
.transcript div { padding: 7px 0; border-bottom: 1px solid rgba(23,63,53,.12); }
.transcript div:last-child { border-bottom: 0; }
.transcript .t { color: var(--muted); font-size: 10.5px; margin-right: 6px; }
.transcript strong { color: var(--forest); font-weight: 600; }
.transcript mark { background: #ffe0d3; color: var(--ink); padding: 0 2px; }
@media (max-width: 980px) {
  .product-panel { grid-template-columns: 1fr; }
  .pp-side { border-right: 0; border-bottom: 1px solid var(--line-soft); }
  .pp-right { border-left: 0; border-top: 1px solid var(--line-soft); }
  .claims { grid-template-columns: 1fr; }
}

/* Contact form */
.contact-wrap { display: grid; grid-template-columns: 1.4fr .8fr; gap: 48px; align-items: start; }
.contact-form { padding: 34px 36px 30px; background: var(--paper); border: 1px solid var(--line); border-radius: 18px; box-shadow: var(--shadow); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: block; margin-bottom: 16px; }
.field span { display: block; margin-bottom: 6px; font-size: 13px; font-weight: 600; color: var(--forest); }
.field span em { font-style: normal; font-weight: 400; color: var(--muted); }
.field input, .field select, .field textarea { width: 100%; padding: 11px 14px; border: 1px solid var(--line); border-radius: 10px; background: var(--warm); color: var(--ink); font-size: 15px; }
.field textarea { resize: vertical; min-height: 96px; }
.field input:focus-visible, .field select:focus-visible, .field textarea:focus-visible { outline: 2px solid var(--orange); outline-offset: 1px; border-color: var(--forest); }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-actions { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; margin-top: 6px; }
.form-note { color: var(--muted); font-size: 12.5px; max-width: 360px; }
.form-status { margin: 14px 0 0; min-height: 1.4em; color: var(--forest); font-size: 14px; font-weight: 500; }
.contact-aside h3 { margin: 0 0 8px; color: var(--forest); font-family: var(--serif); font-size: 24px; font-weight: 400; letter-spacing: -.02em; line-height: 1.15; }
.contact-aside p { margin: 0 0 26px; color: var(--muted); font-size: 14.5px; }
.contact-aside .text-link { font-size: 14.5px; }
@media (max-width: 980px) { .contact-wrap { grid-template-columns: 1fr; } }
@media (max-width: 640px) { .field-row { grid-template-columns: 1fr; gap: 0; } .contact-form { padding: 22px 18px; } }

/* Real product screenshots */
.shot { margin: 0; }
.shot img { width: 100%; height: auto; border-radius: 14px; border: 1px solid var(--line); box-shadow: 0 30px 80px rgba(13,44,38,.18); display: block; }
.on-dark .shot img { box-shadow: 0 30px 80px rgba(0,0,0,.35); border-color: rgba(255,255,255,.12); }
.shot figcaption { margin: 12px 4px 0; color: var(--muted); font-size: 12.5px; }
.on-dark .shot figcaption { color: rgba(250,248,242,.65); }
.shot.big { max-width: 1180px; margin: 0 auto; }
.shot-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
@media (max-width: 980px) { .shot-grid { grid-template-columns: 1fr; } }

/* Responsive */
@media (max-width: 980px) {
  .nav { grid-template-columns: 1fr auto; }
  .nav-links { display: none; }
  .menu-button { display: block; }
  .nav-actions .login { display: none; }
  .feature-grid, .benefit-grid, .team-grid, .steps, .included-grid, .addon-grid, .principle-grid { grid-template-columns: 1fr; }
  .feature-card { min-height: 330px; }
  .split, .split.reverse { grid-template-columns: 1fr; gap: 48px; }
  .answer-grid, .quote-grid, .select-grid, .select-grid.compact { grid-template-columns: repeat(2, 1fr); }
  .letter-wrap { grid-template-columns: 1fr; gap: 32px; }
  .letter-aside { position: static; display: flex; align-items: center; gap: 20px; }
  .letter-aside img { width: 110px; height: 110px; }
  .letter-aside .name { margin-top: 0; }
  .trust-grid { grid-template-columns: 1fr; }
  .badges { justify-content: flex-start; }
  .vault { grid-template-columns: 1fr; }
  .vault-side { border-right: 0; border-bottom: 1px solid var(--line-soft); }
  .compare { grid-template-columns: 1fr 1fr 1fr; font-size: 13px; }
  .compare > div { padding: 14px; font-size: 13px; }
  .footer-grid { grid-template-columns: 1.5fr repeat(3, 1fr); gap: 25px; }
}
@media (max-width: 640px) {
  .shell { width: min(100% - 36px, 1268px); }
  .nav { min-height: 64px; }
  .nav-actions .button { min-height: 38px; padding: 6px 6px 6px 14px; font-size: 13px; }
  .nav-actions .button .arrow { width: 26px; height: 26px; font-size: 16px; }
  .nav-actions { gap: 8px; }
  .brand img { height: 38px; }
  .announcement .shell { min-height: 48px; font-size: 12px; }
  .announcement-mark { display: none; }
  .hero { min-height: 620px; }
  .hero-inner { padding: 88px 0 98px; }
  .hero h1, .hero.compact h1 { font-size: 44px; }
  .hero-copy { font-size: 23px; }
  .hero-form { grid-template-columns: 1fr; border-radius: 18px; background: transparent; border: 0; box-shadow: none; gap: 10px; }
  .hero-form input { min-height: 48px; border: 1px solid var(--line); border-radius: 999px; background: var(--paper); }
  .hero-form .button { width: 100%; }
  .sector-strip { padding: 44px 0 54px; }
  .select-grid, .select-grid.compact, .answer-grid, .quote-grid { grid-template-columns: 1fr; }
  .section, .final-cta, .quote { padding: 92px 0; }
  .section.tight { padding: 72px 0; }
  .section-head { margin-bottom: 45px; }
  .feature-card { padding: 24px; }
  .ui-panel { min-height: 0; padding: 16px; }
  .brief-item { grid-template-columns: 32px 1fr; }
  .brief-tag { display: none; }
  .floating-proof { position: static; width: auto; margin-top: 16px; }
  .answer-card { min-height: 275px; }
  .quote blockquote { font-size: 32px; }
  .letter { padding: 30px 24px; }
  .letter p { font-size: 18px; }
  .letter p.lead { font-size: 22px; }
  .compare { grid-template-columns: 1fr; }
  .compare > div:nth-child(3n+2), .compare > div:nth-child(3n+3) { border-left: 0; }
  .compare > div.head { display: none; }
  .cross::before { content: "Others —  "; }
  .tick::before { content: "Dayfile ✓  "; }
  .price-table { font-size: 13px; }
  .price-table th, .price-table td { padding: 10px 12px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-base { flex-direction: column; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .button, .select-card { transition: none; }
}
