/* Epistles — Letterpress retint (variant 1: faithful) */

:root {
  --bg: #1B1814;
  --bg-elev: #25201A;
  --panel: #25201A;
  --panel-soft: #2A251D;
  --line: rgba(241, 233, 215, 0.08);
  --line-strong: rgba(241, 233, 215, 0.14);
  --text: #F1E9D7;
  --muted: #C9BFA8;
  --muted-2: #968D7B;
  --accent: #D27053;
  --accent-hover: #E78D70;
  --accent-soft: rgba(210, 112, 83, 0.18);
  --green: #5DD17B;
  --amber: #FFB84A;
  --danger: #FF6B5C;
  --font-sans: "Geist", system-ui, -apple-system, sans-serif;
  --font-display: "Bricolage Grotesque", var(--font-sans);
  --font-serif: "Instrument Serif", Georgia, serif;
  --font-mono: "Geist Mono", ui-monospace, monospace;
  --r-sm: 10px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-xl: 28px;
  --space: clamp(20px, 4vw, 48px);
  --container: 1312px;
  --mast-surface: #2A251D;
  --mast-border: rgba(241, 233, 215, 0.08);
  --mast-link: #C9BFA8;
  --mast-link-hover: #F1E9D7;
  --mast-cta: #D27053;
  --mast-cta-hover: #E78D70;
  --strip-from: #25201A;
  --strip-to: #2A251D;
  --download-from: #25201A;
  --download-to: #2A251D;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body.en-page {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.55;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

.en-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.en-skip {
  position: absolute;
  left: -9999px;
  top: 12px;
  z-index: 100;
  padding: 10px 16px;
  background: var(--accent);
  color: var(--bg);
  border-radius: var(--r-sm);
  font-weight: 600;
  text-decoration: none;
}

.en-skip:focus {
  left: 12px;
}

.en-container {
  width: min(var(--container), calc(100% - var(--space) * 2));
  margin-inline: auto;
}

/* Background */
.en-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.en-bg__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(241, 233, 215, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(241, 233, 215, 0.025) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, black 20%, transparent 70%);
}

.en-bg__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.3;
}

.en-bg__glow--a {
  width: 600px;
  height: 400px;
  top: -100px;
  right: -100px;
  background: rgba(210, 112, 83, 0.22);
}

.en-bg__glow--b {
  width: 500px;
  height: 350px;
  bottom: 20%;
  left: -150px;
  background: rgba(231, 141, 112, 0.10);
}

/* Masthead */
.en-mast {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--mast-border);
  background: color-mix(in srgb, var(--mast-surface) 88%, transparent);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

@supports not (background: color-mix(in srgb, black 50%, white)) {
  .en-mast {
    background: rgba(42, 37, 29, 0.92);
  }
}

.en-mast__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  padding-block: 14px;
  gap: 24px;
}

.en-brand {
  --en-brand-symbol: 48px;
  /* Downward shift for the wordmark, in “px at a 27px symbol” units (app Logo uses 9).
     Full 9/27 reads too low on this page; tune here if the mark or size changes. */
  --en-brand-wordmark-nudge: 5;
  display: inline-flex;
  /* Center in the row, then nudge the wordmark down slightly for the quill. */
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text);
  font-weight: 600;
  letter-spacing: -0.02em;
}

/* Same PNGs as the macOS app top bar; source art is dark — invert for dark UI chrome. */
.en-brand__symbol,
.en-brand__wordmark {
  display: block;
  flex-shrink: 0;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.94;
}

.en-brand__symbol {
  width: var(--en-brand-symbol);
  height: var(--en-brand-symbol);
}

.en-brand__wordmark {
  height: calc(var(--en-brand-symbol) * 21 / 27);
  width: calc(var(--en-brand-symbol) * 21 / 27 * 1416 / 415);
  transform: translateY(calc(var(--en-brand-symbol) * var(--en-brand-wordmark-nudge) / 27));
}

.en-brand:hover .en-brand__symbol,
.en-brand:hover .en-brand__wordmark {
  opacity: 1;
}

.en-nav {
  display: flex;
  align-items: center;
  gap: 12px;
}

.en-nav__cta {
  padding: 10px 20px;
  border-radius: 999px;
  background: var(--mast-cta);
  color: var(--bg);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  white-space: nowrap;
  transition: background 0.15s, transform 0.15s;
}

.en-nav__cta:hover {
  background: var(--mast-cta-hover);
}

/* Narrow viewports: shrink the brand + nav together so both pills
   stay on one row alongside the wordmark on a typical 360-414px
   phone. Without this the gap between brand and nav stays at the
   desktop budget (24px masthead gap + 12px nav gap + 18-20px
   horizontal padding per pill) and the nav overflows or wraps. */
@media (max-width: 640px) {
  .en-mast__inner {
    gap: 10px;
    padding-block: 10px;
    min-height: 56px;
  }
  .en-brand {
    --en-brand-symbol: 32px;
    gap: 6px;
  }
  .en-nav {
    gap: 8px;
  }
  .en-nav__cta {
    padding: 7px 12px;
    font-size: 0.78rem;
  }
}

main {
  position: relative;
  z-index: 1;
}

/* Hero */
.en-hero {
  padding: clamp(40px, 8vw, 80px) 0 clamp(48px, 6vw, 72px);
}

.en-hero__grid {
  display: grid;
  gap: clamp(32px, 5vw, 56px);
  align-items: start;
}

@media (min-width: 960px) {
  .en-hero__grid {
    grid-template-columns: 1fr min(420px, 38%);
    align-items: center;
  }
}

.en-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-hover);
  margin-bottom: 20px;
}

.en-eyebrow__line {
  width: 32px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--accent), transparent);
}

.en-display {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5vw, 3.25rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin: 0 0 12px;
}

.en-display-sub {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--muted);
  margin: 0 0 24px;
}

.en-lede {
  max-width: 52ch;
  color: var(--muted);
  font-size: 1.05rem;
  margin: 0 0 28px;
}

.en-hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.en-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: 999px;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.15s, color 0.15s, border-color 0.15s, transform 0.15s;
}

.en-btn--primary {
  background: var(--accent);
  color: var(--bg);
}

.en-btn--primary:hover {
  background: var(--accent-hover);
}

.en-btn--secondary {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--line-strong);
}

.en-btn--secondary:hover {
  border-color: rgba(241, 233, 215, 0.28);
  background: rgba(241, 233, 215, 0.04);
}

.en-btn--block {
  width: 100%;
}

/* ============================================================
   Hero device showcase — laptop hero with phone overlap.
   Replaces the old `.en-hero__panel` agenda card.
   All composition is pure CSS; the inner "screenshots" are
   HTML mocks (`.du` for desktop UI, `.mu` for mobile UI) so the
   page ships zero PNG assets.
   ============================================================ */
.en-devices {
  position: relative;
  width: 100%;
  aspect-ratio: 420 / 360;
  perspective: 1400px;
}

/* ---------- LAPTOP ---------- */
.en-devices__laptop {
  position: absolute;
  inset: 0 0 auto 0;
  width: 100%;
  transform: translateZ(0) rotateX(2deg);
  transform-origin: 50% 80%;
  filter: drop-shadow(0 40px 70px rgba(0, 0, 0, 0.55));
}
.en-devices__lid {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: 14px 14px 6px 6px;
  background: linear-gradient(180deg, #1a1814 0%, #14110e 100%);
  padding: 10px 10px 14px;
  box-shadow:
    inset 0 0 0 1px rgba(241, 233, 215, 0.10),
    inset 0 1px 0 rgba(241, 233, 215, 0.06),
    0 2px 0 rgba(0, 0, 0, 0.6);
}
.en-devices__lid::before {
  content: ""; position: absolute; top: 4px; left: 50%;
  transform: translateX(-50%);
  width: 5px; height: 5px; border-radius: 50%;
  background: rgba(241, 233, 215, 0.18);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.5);
}
.en-devices__screen {
  position: relative;
  width: 100%; height: 100%;
  border-radius: 6px;
  background: var(--bg);
  overflow: hidden;
  box-shadow:
    inset 0 0 0 1px rgba(0, 0, 0, 0.6),
    inset 0 0 30px rgba(0, 0, 0, 0.4);
}
.en-devices__hinge {
  position: relative;
  margin: 0 -3.5%;
  height: 14px;
  border-radius: 0 0 18px 18px;
  background: linear-gradient(180deg, #2a251f 0%, #1a1612 50%, #0d0a08 100%);
  box-shadow:
    0 1px 0 rgba(241, 233, 215, 0.06) inset,
    0 12px 24px rgba(0, 0, 0, 0.55);
}
.en-devices__hinge::before {
  content: ""; position: absolute; left: 50%; top: 0;
  transform: translateX(-50%);
  width: 22%; height: 4px;
  border-radius: 0 0 8px 8px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.15));
  box-shadow: inset 0 1px 0 rgba(0, 0, 0, 0.6);
}
.en-devices__hinge::after {
  content: ""; position: absolute; left: 0; right: 0; top: 1px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(241, 233, 215, 0.10) 20%, rgba(241, 233, 215, 0.10) 80%, transparent);
}

/* ---------- DESKTOP UI inside the laptop screen ---------- */
.du {
  display: grid;
  grid-template-columns: 22% 32% 1fr;
  height: 100%;
  font-size: 6px;
  line-height: 1.25;
}
.du__sidebar {
  background: #1f1b16;
  border-right: 1px solid var(--line);
  padding: 8px 6px;
  display: flex; flex-direction: column; gap: 6px;
}
.du__topdot { display: flex; align-items: center; gap: 4px; padding: 2px; }
.du__topdot i {
  width: 5px; height: 5px; border-radius: 50%; background: var(--accent);
  box-shadow: 0 0 4px var(--accent);
}
.du__topdot span {
  color: var(--muted-2);
  font-family: 'Geist Mono', monospace; font-size: 5px;
  letter-spacing: .08em; text-transform: uppercase;
}
.du__acct {
  display: flex; align-items: center; gap: 4px;
  padding: 4px; border-radius: 5px;
}
.du__acct.is-active { background: var(--accent-soft); }
.du__avatar {
  width: 14px; height: 14px; border-radius: 5px; flex: none;
  display: grid; place-items: center;
  color: #fff; font-weight: 700; font-size: 6px;
  font-family: 'Bricolage Grotesque', sans-serif;
}
.du__avatar.av-t  { background: #c8102e; }
.du__avatar.av-g  { background: #fff; color: #1a1814; }
.du__avatar.av-rs { background: #5a6470; }
.du__avatar.av-a  { background: #c89a3a; }
.du__avatar.av-s  { background: #635bff; }              /* Stripe blurple */
.du__avatar.av-gh { background: #1f1f1f; color: #e6e6e6; } /* GitHub */
.du__avatar.av-md { background: #3f5b3a; }              /* mossy green */
.du__acct-name { color: var(--text); font-weight: 600; font-size: 6px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.du__acct-mail { color: var(--muted-2); font-size: 5px; }
.du__acct-meta { display: flex; flex-direction: column; min-width: 0; gap: 1px; }
.du__sep { height: 1px; background: var(--line); margin: 4px 2px; }
.du__folder {
  display: flex; align-items: center; justify-content: space-between;
  padding: 3px 4px; color: var(--muted); font-size: 6px; border-radius: 4px;
}
.du__folder.is-on { background: rgba(241, 233, 215, 0.04); color: var(--text); }
.du__folder em { font-style: normal; color: var(--accent); font-family: 'Geist Mono', monospace; font-size: 5px; }

.du__list {
  border-right: 1px solid var(--line);
  padding: 8px 0 8px;
  overflow: hidden;
  background: #1d1914;
}
.du__list-head {
  padding: 0 8px 6px;
  display: flex; align-items: baseline; gap: 5px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 4px;
}
.du__list-title {
  font-family: 'Instrument Serif', serif; font-style: italic;
  font-size: 14px; color: var(--text); line-height: 1;
}
.du__list-title b { color: var(--accent); font-weight: 400; }
.du__list-meta { color: var(--muted-2); font-family: 'Archivo', sans-serif; font-size: 5px; letter-spacing: .12em; text-transform: uppercase; }

.du__row {
  display: grid; grid-template-columns: 16px 1fr auto;
  gap: 5px; padding: 5px 8px;
  border-bottom: 1px solid var(--line);
  align-items: flex-start;
}
.du__row.is-sel { background: linear-gradient(90deg, var(--accent-soft), transparent 80%); border-left: 2px solid var(--accent); padding-left: 6px; }
.du__row .du__avatar { width: 14px; height: 14px; }
.du__row-body { min-width: 0; }
.du__row-from { color: var(--text); font-weight: 600; font-size: 6px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.du__row-subj { font-family: 'Instrument Serif', serif; font-style: italic; color: var(--text); font-size: 7px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.du__row-snip { color: var(--muted-2); font-size: 5px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.du__row-date { color: var(--muted-2); font-family: 'Instrument Serif', serif; font-style: italic; font-size: 6px; white-space: nowrap; }

.du__read {
  background: #1B1814;
  padding: 8px 10px;
  display: flex; flex-direction: column; gap: 6px;
  overflow: hidden;
}
.du__read-bar {
  display: flex; align-items: center; justify-content: space-between;
  color: var(--muted-2); font-family: 'Geist Mono', monospace; font-size: 5px;
  letter-spacing: .08em; text-transform: uppercase;
}
.du__read-bar i { width: 5px; height: 5px; border-radius: 50%; background: var(--accent); display: inline-block; margin-right: 3px; }
.du__read-subj {
  font-family: 'Instrument Serif', serif; font-style: italic;
  color: var(--text); font-size: 11px; line-height: 1.1;
}
.du__read-from {
  display: flex; align-items: center; gap: 5px;
  padding-bottom: 5px; border-bottom: 1px solid var(--line);
}
.du__read-from .du__avatar { width: 12px; height: 12px; }
.du__read-from-name { font-size: 6px; color: var(--text); font-weight: 600; }
.du__read-from-mail { font-size: 5px; color: var(--muted-2); }
.du__paper {
  background: #F1E9D7; color: #1a1814;
  border-radius: 4px;
  padding: 8px 9px;
  flex: 1; min-height: 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  font-size: 5.5px; line-height: 1.5;
  overflow: hidden;
}
.du__paper p { margin: 0 0 4px; }
.du__paper p.lead { font-family: 'Instrument Serif', serif; font-style: italic; font-size: 7px; }
.du__paper .sig { color: rgba(26, 24, 20, 0.55); font-size: 5px; margin-top: 6px; }

/* ---------- PHONE ---------- */
.en-devices__phone {
  position: absolute;
  left: -10%;
  bottom: 4%;
  width: 38%;
  aspect-ratio: 9 / 19.5;
  border-radius: 22px;
  background: linear-gradient(180deg, #2a251f 0%, #15110d 100%);
  padding: 6px;
  box-shadow:
    inset 0 0 0 1px rgba(241, 233, 215, 0.10),
    0 30px 50px rgba(0, 0, 0, 0.6),
    0 6px 14px rgba(0, 0, 0, 0.5);
  transform: rotate(-4deg);
}
.en-devices__phone::before {
  content: ""; position: absolute; right: -1.5px; top: 22%;
  width: 2px; height: 10%;
  background: linear-gradient(180deg, #3a342c, #1a1612);
  border-radius: 1px 0 0 1px;
}
.en-devices__phone::after {
  content: ""; position: absolute; left: -1.5px; top: 18%;
  width: 2px; height: 14%;
  background: linear-gradient(180deg, #3a342c, #1a1612);
  border-radius: 0 1px 1px 0;
}
.en-devices__phone-screen {
  position: relative;
  width: 100%; height: 100%;
  border-radius: 17px;
  background: var(--bg);
  overflow: hidden;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.6);
}
.en-devices__phone-screen::before {
  content: ""; position: absolute; top: 5px; left: 50%;
  transform: translateX(-50%);
  width: 32%; height: 10px; border-radius: 6px;
  background: #0a0806;
  z-index: 2;
}

/* ---------- MOBILE UI inside phone ---------- */
.mu {
  height: 100%;
  display: flex; flex-direction: column;
  padding: 22px 8px 0;
  font-size: 5.5px;
  color: var(--text);
}
.mu__chip {
  display: flex; align-items: center; gap: 4px;
  background: var(--accent-soft);
  border: 1px solid rgba(210, 112, 83, 0.32);
  border-radius: 999px;
  padding: 3px 5px 3px 3px;
  margin-bottom: 8px;
}
.mu__chip .du__avatar { width: 10px; height: 10px; font-size: 5px; }
.mu__chip-mail { font-size: 5px; color: var(--text); flex: 1; min-width: 0; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.mu__chip-icons { color: var(--muted-2); font-family: 'Geist Mono', monospace; font-size: 6px; letter-spacing: .1em; }

.mu__title-row { display: flex; gap: 6px; align-items: flex-start; margin-bottom: 6px; }
.mu__rule { width: 2px; align-self: stretch; background: var(--accent); border-radius: 1px; }
.mu__title {
  font-family: 'Instrument Serif', serif; font-style: italic;
  font-size: 22px; line-height: 0.95; color: var(--text);
}
.mu__title b { color: var(--accent); font-weight: 400; }
.mu__meta {
  display: flex; flex-direction: column; gap: 1px;
  font-family: 'Archivo', sans-serif; font-size: 4.5px;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--muted-2);
  margin-left: auto; padding-top: 4px;
}
.mu__list { flex: 1; display: flex; flex-direction: column; gap: 5px; padding-top: 4px; overflow: hidden; }
.mu__row {
  display: grid; grid-template-columns: 18px 1fr auto;
  gap: 5px; align-items: flex-start;
  padding-bottom: 4px; border-bottom: 1px solid var(--line);
}
.mu__row .du__avatar { width: 18px; height: 18px; font-size: 7px; border-radius: 6px; }
.mu__row-body { min-width: 0; display: flex; flex-direction: column; gap: 0; }
.mu__row-from { font-weight: 700; font-size: 6px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.mu__row-subj { font-family: 'Instrument Serif', serif; font-style: italic; font-size: 6.5px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.mu__row-snip { color: var(--muted-2); font-size: 5px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.mu__row-date { font-family: 'Instrument Serif', serif; font-style: italic; color: var(--muted-2); font-size: 5.5px; }

.mu__tabs {
  margin: 4px -8px 0;
  padding: 5px 8px 6px;
  border-top: 1px solid var(--line);
  display: flex; justify-content: space-between;
  font-family: 'Archivo', sans-serif; font-size: 4.5px;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--muted-2);
}
.mu__tabs span { display: flex; flex-direction: column; align-items: center; gap: 2px; }
.mu__tabs span i { width: 8px; height: 8px; border: 1px solid currentColor; border-radius: 2px; display: block; }
.mu__tabs .is-on { color: var(--accent); }

/* Mobile strip */
.en-strip {
  padding: 40px 0 56px;
  background: linear-gradient(180deg, var(--strip-from), var(--strip-to));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.en-strip__k {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin: 0 auto 20px;
  text-align: center;
  max-width: 1000px;
}

.en-strip__cards {
  display: grid;
  gap: 16px;
  width: 100%;
  max-width: 1000px;
  margin-inline: auto;
  text-align: left;
}

@media (min-width: 900px) {
  .en-strip__cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

.en-strip__card {
  padding: 22px 20px;
  border-radius: var(--r-lg);
  background: var(--panel-soft);
  border: 1px solid var(--line);
  color: var(--text);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
  text-align: left;
}

.en-strip__card--accent {
  border-color: rgba(210, 112, 83, 0.35);
  box-shadow: 0 12px 40px rgba(210, 112, 83, 0.10);
}

.en-strip__label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-hover);
  margin: 0 0 10px;
}

.en-strip__label--muted {
  color: var(--muted);
}

.en-strip__body {
  margin: 0;
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.5;
}

/* Unify */
.en-unify {
  padding: clamp(64px, 10vw, 120px) 0;
}

.en-kicker {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-hover);
  margin: 0 0 16px;
}

.en-kicker--center {
  text-align: center;
}

.en-kicker--muted {
  color: var(--muted-2);
}

.en-kicker--dark {
  color: var(--accent);
}

.en-h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0 0 12px;
}

.en-h2 em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
}

.en-h2--tight {
  margin-top: -4px;
  margin-bottom: 24px;
}

.en-h2--center {
  text-align: center;
}

.en-h2--dark {
  color: var(--text);
}

.en-sub {
  max-width: 72ch;
  color: var(--muted);
  font-size: 1.05rem;
  margin: 0 0 48px;
}

.en-sub--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.en-sub--dark {
  color: var(--muted);
}

.en-unify__viz {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 24px;
  padding: clamp(24px, 4vw, 40px);
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
}

@media (min-width: 900px) {
  .en-unify__viz {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.en-unify__sources {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
  min-width: 0;
}

.en-src {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 14px;
  background: rgba(0, 0, 0, 0.22);
  border-radius: var(--r-md);
  border: 1px solid rgba(241, 233, 215, 0.05);
}

.en-src strong {
  display: block;
  font-size: 0.9rem;
}

.en-src small {
  display: block;
  font-size: 0.75rem;
  color: var(--muted-2);
  font-family: var(--font-mono);
}

.en-src__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}

.en-src__dot--a {
  /* family — terracotta-leaning */
  background: #E89B6A;
}

.en-src__dot--b {
  /* work — cream secondary */
  background: #C9BFA8;
}

.en-src__dot--c {
  /* travel — sage */
  background: #7AB89A;
}

.en-src__dot--d {
  /* urgent — bright accent */
  background: #E78D70;
}

.en-src__dot--e {
  /* default — muted */
  background: #968D7B;
}

.en-unify__arrow {
  font-size: 1.5rem;
  color: var(--muted-2);
  text-align: center;
  flex-shrink: 0;
}

@media (min-width: 900px) {
  .en-unify__arrow {
    transform: none;
  }
}

.en-unify__out {
  flex: 0 1 280px;
  text-align: center;
  padding: 24px;
  border-radius: var(--r-lg);
  background: linear-gradient(145deg, rgba(210, 112, 83, 0.12), rgba(0, 0, 0, 0.22));
  border: 1px solid rgba(210, 112, 83, 0.25);
}

.en-unify__logo {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--accent);
  color: var(--bg);
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.en-unify__name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  margin: 0 0 8px;
}

.en-unify__one {
  color: var(--accent-hover);
}

.en-unify__desc {
  margin: 0;
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.5;
}

/* Features bento */
.en-features {
  padding: clamp(48px, 8vw, 96px) 0;
}

.en-features__head {
  margin-bottom: 40px;
}

.en-bento {
  display: grid;
  gap: 16px;
}

@media (min-width: 900px) {
  .en-bento {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: minmax(120px, auto);
  }

  .en-card--wide {
    grid-column: span 2;
  }
}

.en-card {
  padding: 28px 24px;
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.en-card:hover {
  border-color: rgba(241, 233, 215, 0.16);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.en-card--accent {
  background: linear-gradient(160deg, rgba(210, 112, 83, 0.1), var(--bg-elev));
  border-color: rgba(210, 112, 83, 0.22);
}

.en-card__tag {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-hover);
  margin: 0 0 12px;
}

.en-card__title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 12px;
}

.en-card__body {
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

.en-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.en-chip {
  font-size: 0.72rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
}

.en-chip--a {
  /* family / personal — terracotta */
  border-color: rgba(232, 155, 106, 0.4);
  color: #E89B6A;
}

.en-chip--b {
  /* work — cream */
  border-color: rgba(201, 191, 168, 0.35);
  color: var(--muted);
}

.en-chip--c {
  /* university / travel — sage */
  border-color: rgba(122, 184, 154, 0.35);
  color: #7AB89A;
}

.en-chip--d {
  /* side project — accent deep */
  border-color: rgba(231, 141, 112, 0.35);
  color: var(--accent-hover);
}

.en-stack {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.en-stack li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 12px;
  background: rgba(0, 0, 0, 0.22);
  border-radius: var(--r-sm);
  font-size: 0.85rem;
  color: var(--muted);
}

.en-stack code {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--text);
}

.en-kbd {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.en-kbd span {
  display: inline-flex;
  gap: 4px;
}

.en-kbd kbd {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  padding: 6px 10px;
  border-radius: 8px;
  background: #2F2920;
  border: 1px solid #3A332A;
  color: var(--muted);
}

.en-sched {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.en-sched__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 14px;
  background: rgba(0, 0, 0, 0.22);
  border-radius: var(--r-sm);
  font-size: 0.88rem;
}

.en-sched__t {
  font-family: var(--font-mono);
  color: var(--muted);
}

.en-sched__l {
  color: var(--text);
}

.en-lock {
  margin: 0;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--green);
}

.en-plats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.en-plats span {
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--muted);
}

/* Protocols */
.en-protocols {
  padding: clamp(56px, 8vw, 96px) 0;
  border-top: 1px solid var(--line);
}

.en-protocols__inner {
  text-align: center;
}

.en-protocols__head {
  max-width: 900px;
  margin: 0 auto 40px;
}

.en-prov-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.en-prov {
  flex: 1 1 140px;
  max-width: 200px;
  padding: 24px 16px;
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  text-align: center;
}

.en-prov__logo {
  width: 48px;
  height: 48px;
  margin: 0 auto 14px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  background: #F1E9D7;
}

.en-prov__logo svg {
  width: 28px;
  height: 28px;
  display: block;
}

.en-prov__logo--imap {
  /* Generic — muted neutral, stroke picks up `color` via currentColor */
  background: #2F2920;
  color: var(--muted-2);
}

.en-prov__name {
  font-weight: 700;
  font-size: 0.95rem;
  margin: 0 0 6px;
}

.en-prov__proto {
  margin: 0;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent-hover);
  font-family: var(--font-mono);
}

/* Privacy */
.en-privacy {
  padding: clamp(56px, 8vw, 100px) 0;
  border-top: 1px solid var(--line);
}

.en-privacy__grid {
  display: grid;
  gap: 40px;
  align-items: start;
}

@media (min-width: 960px) {
  .en-privacy__grid {
    grid-template-columns: 1fr 1fr;
    gap: 56px;
  }
}

.en-privacy__body {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.6;
  margin: 0 0 24px;
}

.en-privacy__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.en-privacy__list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 12px;
  color: var(--text);
  font-size: 0.95rem;
}

.en-check {
  color: var(--green);
  font-weight: 700;
  flex-shrink: 0;
}

.en-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 12px;
}

.en-pill {
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  border: 1px solid var(--line);
  color: var(--muted);
  background: rgba(0, 0, 0, 0.18);
}

.en-pill--green {
  border-color: rgba(93, 209, 123, 0.35);
  color: var(--green);
}

/* Privacy aside: all capability pills use the same green treatment */
.en-privacy__aside .en-pill {
  color: var(--green);
  border-color: rgba(93, 209, 123, 0.45);
  background: rgba(93, 209, 123, 0.08);
}

.en-term {
  margin-top: 20px;
  padding: 20px;
  border-radius: var(--r-md);
  background: #15120F;
  border: 1px solid rgba(241, 233, 215, 0.06);
  font-family: var(--font-mono);
  font-size: 0.82rem;
  line-height: 1.65;
  color: var(--muted);
}

.en-term__dim {
  color: var(--muted-2);
}

.en-term__acc {
  color: var(--accent-hover);
}

/* Download */
.en-download {
  padding: clamp(64px, 10vw, 120px) 0;
  background: linear-gradient(180deg, var(--download-from), var(--download-to));
  border-top: 1px solid var(--line);
}

.en-download__wrap {
  max-width: 640px;
}

.en-download__form {
  margin-top: 32px;
}

.en-field input {
  width: 100%;
  padding: 16px 18px;
  border-radius: var(--r-md);
  border: 1px solid #3A332A;
  background: var(--panel);
  font-family: inherit;
  font-size: 1rem;
  color: var(--text);
  margin-bottom: 12px;
}

.en-field input::placeholder {
  color: var(--muted-2);
}

.en-field input:focus {
  outline: 2px solid rgba(210, 112, 83, 0.3);
  outline-offset: 2px;
  border-color: var(--accent);
}

.en-download__plats {
  list-style: none;
  margin: 40px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px 28px;
  color: var(--muted);
  font-size: 0.9rem;
}

.en-download__plats li {
  text-align: center;
}

.en-download__plats span {
  display: block;
  font-weight: 700;
  color: var(--text);
}

.en-download__plats small {
  font-size: 0.75rem;
  color: var(--muted-2);
}

/* Form states (matches script-new.js / script.js) */
.download__form.is-sent .en-field {
  opacity: 0.5;
  pointer-events: none;
}

/* Footer */
.en-foot {
  padding: 56px 0 32px;
  border-top: 1px solid var(--line);
  background: var(--bg);
}

.en-foot__top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 32px;
}

.en-foot__tag {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.en-foot__cols {
  display: grid;
  gap: 32px;
  grid-template-columns: repeat(2, 1fr);
  margin-bottom: 40px;
}

@media (min-width: 800px) {
  .en-foot__cols {
    grid-template-columns: repeat(4, 1fr);
  }
}

.en-foot__social {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  display: flex;
  justify-content: center;
  gap: 12px;
}

.en-foot__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: var(--muted-2);
  transition: color 0.15s, border-color 0.15s, background 0.15s, transform 0.15s;
}

.en-foot__social a:hover,
.en-foot__social a:focus-visible {
  color: var(--text);
  border-color: var(--accent);
  background: rgba(210, 112, 83, 0.08);
  outline: none;
  transform: translateY(-1px);
}

.en-foot__social svg {
  width: 16px;
  height: 16px;
  display: block;
}

.en-foot__h {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin: 0 0 14px;
}

.en-foot__cols ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.en-foot__cols li {
  margin-bottom: 10px;
  font-size: 0.92rem;
  color: var(--muted);
}

.en-foot__cols a {
  color: var(--text);
  text-decoration: none;
}

.en-foot__cols a:hover {
  color: var(--accent-hover);
}

.en-foot__status {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 8px;
  font-size: 0.92rem;
  color: var(--green);
}

.en-foot__pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 12px var(--green);
}

.en-foot__ver {
  margin: 0;
  font-size: 0.78rem;
  color: var(--muted-2);
  font-family: var(--font-mono);
}

.en-foot__bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  font-size: 0.85rem;
  color: var(--muted-2);
}

.en-foot__bar a {
  color: var(--accent-hover);
  text-decoration: none;
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal--2 {
  transition-delay: 0.08s;
}

.reveal.is-in {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  html {
    scroll-behavior: auto;
  }
}
/* Epistles — legal / support pages (Letterpress retint).
   Same selectors as legal-new.css; cool-blue + older callout RGBs swapped
   for Letterpress terracotta + brand-aligned amber/danger/green hexes. */

/* Main wrapper — narrower than marketing so text is readable. */
.en-legal {
  padding: clamp(48px, 8vw, 96px) 0 clamp(56px, 8vw, 96px);
  position: relative;
  z-index: 1;
}

.en-legal__inner {
  max-width: 760px;
  margin: 0 auto;
}

/* Effective-date banner at the top of terms / privacy. */
.en-legal__stamp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  margin-bottom: 28px;
  border-radius: 999px;
  background: rgba(210, 112, 83, 0.1);
  border: 1px solid rgba(210, 112, 83, 0.28);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.02em;
  color: var(--accent-hover);
}

.en-legal__stamp-label {
  color: var(--muted-2);
}

/* Title + lede under it. */
.en-legal__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin: 0 0 12px;
}

.en-legal__lede {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.6;
  margin: 0 0 40px;
  max-width: 56ch;
}

/* Section headings. */
.en-legal__inner h2 {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.5vw, 1.6rem);
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1.25;
  margin: 48px 0 14px;
  color: var(--text);
}

.en-legal__inner h2:first-of-type {
  margin-top: 0;
}

.en-legal__inner h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -0.005em;
  margin: 28px 0 10px;
  color: var(--text);
}

.en-legal__inner p {
  color: var(--muted);
  line-height: 1.7;
  margin: 0 0 16px;
}

.en-legal__inner ul,
.en-legal__inner ol {
  color: var(--muted);
  line-height: 1.7;
  padding-left: 22px;
  margin: 0 0 20px;
}

.en-legal__inner li {
  margin-bottom: 8px;
}

.en-legal__inner a {
  color: var(--accent-hover);
  text-decoration: none;
  border-bottom: 1px solid rgba(210, 112, 83, 0.3);
  transition: color 0.15s, border-color 0.15s;
}

.en-legal__inner a:hover {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

.en-legal__inner strong {
  color: var(--text);
  font-weight: 600;
}

/* Callout — neutral / warn / danger. */
.en-legal__callout {
  padding: 20px 22px;
  margin: 24px 0;
  border-radius: var(--r-lg);
  background: var(--bg-elev);
  border: 1px solid var(--line);
}

.en-legal__callout h3 {
  margin-top: 0;
  margin-bottom: 8px;
  color: var(--text);
}

.en-legal__callout p {
  margin-bottom: 0;
  color: var(--muted);
}

.en-legal__callout--warn {
  background: linear-gradient(160deg, rgba(255, 184, 74, 0.08), var(--bg-elev));
  border-color: rgba(255, 184, 74, 0.28);
}

.en-legal__callout--warn h3 {
  color: var(--amber);
}

.en-legal__callout--danger {
  background: linear-gradient(160deg, rgba(255, 107, 92, 0.08), var(--bg-elev));
  border-color: rgba(255, 107, 92, 0.28);
}

.en-legal__callout--danger h3 {
  color: var(--danger);
}

/* Contact block at the foot of the prose. */
.en-legal__contact {
  padding: 20px 22px;
  margin: 20px 0;
  border-radius: var(--r-lg);
  background: rgba(210, 112, 83, 0.06);
  border: 1px solid rgba(210, 112, 83, 0.22);
}

.en-legal__contact p {
  margin-bottom: 6px;
  color: var(--text);
}

.en-legal__contact p:last-child {
  margin-bottom: 0;
}

.en-legal__footnote {
  color: var(--muted-2);
  font-size: 0.88rem;
  line-height: 1.6;
  margin-top: 36px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

/* Support form. */
.en-support-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 8px;
}

.en-support-form__group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.en-support-form label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted-2);
}

.en-support-form input[type="text"],
.en-support-form input[type="email"],
.en-support-form textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: var(--r-md);
  border: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.25);
  font-family: inherit;
  font-size: 1rem;
  color: var(--text);
  transition: border-color 0.15s, background 0.15s;
}

.en-support-form input[type="text"]::placeholder,
.en-support-form input[type="email"]::placeholder,
.en-support-form textarea::placeholder {
  color: var(--muted-2);
}

.en-support-form input[type="text"]:focus,
.en-support-form input[type="email"]:focus,
.en-support-form textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(210, 112, 83, 0.08);
}

.en-support-form textarea {
  min-height: 160px;
  resize: vertical;
  font-family: inherit;
  line-height: 1.5;
}

.en-support-form button {
  align-self: flex-start;
  margin-top: 4px;
}

/* Result banner above the form. */
.en-support-banner {
  padding: 14px 16px;
  border-radius: var(--r-md);
  font-size: 0.95rem;
  line-height: 1.45;
  margin-bottom: 8px;
}

.en-support-banner--ok {
  background: rgba(93, 209, 123, 0.1);
  border: 1px solid rgba(93, 209, 123, 0.35);
  color: var(--green);
}

.en-support-banner--err {
  background: rgba(255, 107, 92, 0.1);
  border: 1px solid rgba(255, 107, 92, 0.35);
  color: var(--danger);
}

/* Security page — flow chart figure (inline SVG + caption). */
.en-flow {
  margin: 24px 0 36px;
  padding: 0;
}

.en-flow svg {
  display: block;
  width: 100%;
  height: auto;
  max-width: 1200px;
  margin: 0 auto;
}

.en-flow__cap {
  margin-top: 1.25rem;
  color: var(--muted);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  line-height: 1.55;
  max-width: 60ch;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.en-flow__cap p {
  margin: 0 0 0.75rem 0;
}

.en-flow__legend {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 1.5rem;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--muted-2);
}

.en-flow__legend > span {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.en-flow__swatch {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 2px;
  vertical-align: middle;
}

.en-flow__swatch--opaque  { background: var(--accent); }
.en-flow__swatch--meta    { background: var(--muted-2); }
.en-flow__swatch--content { background: var(--text); }

@media (max-width: 720px) {
  .en-flow__cap { font-size: 0.9rem; }
  .en-flow__legend { font-size: 0.72rem; gap: 0.5rem 1rem; }
}

/* Security page — "What our servers do see" definition list. */
.en-server-sees {
  margin: 0 0 24px;
  padding: 0;
}

.en-server-sees dt {
  margin: 24px 0 6px;
  color: var(--text);
  font-weight: 600;
  letter-spacing: -0.005em;
}

.en-server-sees dt:first-child {
  margin-top: 0;
}

.en-server-sees dd {
  margin: 0 0 4px;
  padding: 0;
  color: var(--muted);
  line-height: 1.7;
}


/* /security/ flow chart: hide the wide SVG on phones; surface the
 * <desc> as visible prose for the mobile path so the page doesn't
 * lose its centerpiece. The SVG remains in DOM so screen readers
 * still announce the title/desc; only the visual is hidden. */
@media (max-width: 720px) {
  .en-flow svg {
    display: none;
  }
  .en-flow::before {
    content: "The flow diagram is best read on a wider screen. The text below this section walks through the same flow.";
    display: block;
    padding: 16px 18px;
    margin: 0 0 16px;
    background: var(--bg-elev);
    border: 1px solid var(--line);
    border-radius: var(--r-md);
    color: var(--muted);
    font-size: 0.9rem;
    line-height: 1.5;
  }
}
