:root {
  --navy: #063b75;
  --navy-deep: #0f2540;
  --ink: #0f2540;
  --orange: #fd8915;
  --orange-soft: rgba(253, 137, 21, 0.14);
  --teal: #045b75;
  --sage: #c7e2d0;
  --sage-deep: #3e6b52;
  --paper: #f6f4ef;
  --white: #ffffff;
  --mist: #e8eef4;
  --line: #d5dde6;
  --muted: #5c6b7a;
  --body: #2c3a48;
  --good: #1f7a4d;
  --warn: #b45309;
  --bad: #b42318;
  --shadow: 0 24px 60px rgba(4, 36, 74, 0.18);
  --radius: 16px;
  --font-display: "Manrope", "Segoe UI", Helvetica, Arial, sans-serif;
  --font-body: "Zalando Sans", "Segoe UI", Helvetica, Arial, sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, Menlo, monospace;
  --font: var(--font-body);
  --mono: var(--font-mono);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 75px;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
}

img { max-width: 100%; display: block; }

a {
  color: inherit;
}

.skip {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--navy);
  color: #fff;
  padding: 8px 16px;
  z-index: 100;
}

.skip:focus { left: 8px; }

/* Nav */
.nav {
  position: sticky;
  top: 0;
  z-index: 40;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  column-gap: 24px;
  height: 75px;
  padding: 0 32px;
  background: var(--navy-deep);
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: min-content;
  justify-self: start;
}

.nav-aquascot {
  height: 36px;
  width: auto;
}

.nav-rule {
  display: block;
  width: 1px;
  height: 32px;
  background: rgba(255, 255, 255, 0.28);
}

.nav-meta {
  justify-self: end;
  min-width: max-content;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  white-space: nowrap;
}

.nav-agency {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #fff;
}

.nav-agency-mark {
  display: block;
  height: 34px;
  width: auto;
}


/* Hero */
.hero {
  position: relative;
  min-height: min(78vh, 720px);
  display: grid;
  align-items: end;
  color: #fff;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(15, 37, 64, 0.82) 0%, rgba(15, 37, 64, 0.45) 48%, rgba(15, 37, 64, 0.2) 100%),
    url("../assets/hero.jpg") center / cover no-repeat;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1240px;
  width: 100%;
  margin: 0 auto;
  padding: 72px 28px 56px;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.24em;
  line-height: 1.2;
  text-transform: uppercase;
  color: var(--orange);
  margin: 0 0 12px;
}

.kicker.dark { color: var(--orange); }
.kicker.ink { color: var(--teal); }

.hero h1 {
  font-size: clamp(28px, 3.4vw, 40px);
  line-height: 1.12;
  letter-spacing: -0.015em;
  font-weight: 600;
  margin: 0 0 14px;
  max-width: 11.5em;
}

.hero h1 .hl {
  color: var(--orange);
}

.hero .lede {
  font-size: 16px;
  line-height: 1.65;
  max-width: 52ch;
  color: rgba(255, 255, 255, 0.88);
  margin: 0 0 24px;
}

.hero-people {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}

.chip {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 13px;
  font-weight: 600;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 12px 22px;
  border-radius: 2px;
  font-family: var(--font-mono);
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease;
}

.btn:hover { transform: translateY(-1px); }
.btn:focus-visible { outline: 3px solid var(--orange); outline-offset: 2px; }

.btn-primary {
  background: var(--orange);
  color: #1a0d00;
}

.btn-ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.4);
}

.btn-navy {
  background: var(--navy);
  color: #fff;
}

.btn-sage {
  background: var(--sage-deep);
  color: #fff;
}

/* Sections */
.wrap {
  max-width: 1240px;
  margin: 0 auto;
  padding: 88px 28px;
}

.example-lead {
  padding-bottom: 28px;
}

.example {
  overflow: hidden;
}

.example-inner {
  display: grid;
  align-items: start;
  gap: 36px 48px;
  max-width: 1320px;
  margin: 0 auto;
  padding: 88px 28px 0;
}

.example-copy .section-head {
  max-width: 36em;
  margin-bottom: 20px;
}

.example-copy .section-head h2 {
  font-size: clamp(22px, 2.2vw, 28px);
}

.example-copy .section-head p:not(.kicker) {
  font-size: 15.5px;
  line-height: 1.7;
}

.example-copy .facts {
  grid-template-columns: 1fr;
  gap: 22px;
}

.example-dash {
  background: linear-gradient(180deg, var(--paper) 0%, var(--paper) 58%, #fff 100%);
  padding-bottom: 56px;
}

.example-dash .example-inner {
  grid-template-columns: minmax(300px, 1fr) minmax(0, 0.92fr);
}

.example-dash .example-visual {
  margin-right: -6vw;
  padding-bottom: 0;
}

.example-mail {
  background: #fff;
  padding-bottom: 56px;
}

.example-mail .example-inner {
  grid-template-columns: minmax(0, 1.35fr) minmax(250px, 0.72fr);
  padding-top: 96px;
}

.example-mail .example-visual {
  margin-left: -4vw;
}

.example-mail .device {
  max-width: none;
}

.example-visual {
  position: relative;
  min-width: 0;
}

.device {
  position: relative;
  background: #fff;
  border-radius: 18px;
  border: 1px solid rgba(15, 37, 64, 0.1);
  box-shadow: 0 28px 64px rgba(15, 37, 64, 0.14);
  overflow: hidden;
  mask-image: linear-gradient(to bottom, #000 0%, #000 84%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 84%, transparent 100%);
}

.device::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 14%;
  pointer-events: none;
  z-index: 2;
}

.example-dash .device::after {
  background: linear-gradient(180deg, rgba(246, 244, 239, 0) 0%, var(--paper) 48%, #fff 100%);
}

.example-mail .device::after {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.55) 48%, #fff 100%);
}

.example-visual .product-note {
  position: relative;
  z-index: 3;
  margin-top: 8px;
  max-width: 42em;
}

.example-dash .device {
  max-width: 680px;
  margin-left: auto;
  transform: perspective(1600px) rotateX(5deg) rotateY(-6deg);
  transform-origin: left center;
}

.device-chrome {
  display: flex;
  align-items: center;
  gap: 6px;
  height: 36px;
  padding: 0 14px;
  background: #f3f5f7;
  border-bottom: 1px solid #e6eaee;
}

.device-chrome span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #d5dde6;
}

.device-chrome span:first-child { background: #ff6b6b; }
.device-chrome span:nth-child(2) { background: #ffd166; }
.device-chrome span:nth-child(3) { background: #6fdf9c; }

.device-screen {
  position: relative;
  overflow: hidden;
  background: #f4f6f8;
  min-height: 180px;
}

.example-dash .device-screen {
  max-height: 340px;
}

.device-scale {
  width: 1180px;
  transform-origin: top left;
}

.example-mail .inbox-screen {
  max-height: 400px;
  background: #f4f6f8;
}

.example-mail .inbox-screen .device-scale {
  width: 1280px;
}

.example-mail .device .product {
  margin: 0;
  max-width: none;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.example-mail .mail {
  grid-template-columns: 248px 1fr;
  min-height: 480px;
}

#dashboard,
#inbox,
#note,
#next,
#approach,
#ninety {
  scroll-margin-top: 80px;
}

.section-head {
  max-width: 620px;
  margin-bottom: 32px;
}

.section-head h2 {
  font-size: clamp(24px, 2.6vw, 34px);
  line-height: 1.12;
  letter-spacing: -0.015em;
  margin: 0 0 12px;
}

.section-head p:not(.kicker) {
  margin: 0;
  color: var(--body);
  font-size: 15.5px;
  line-height: 1.7;
}

.section-head .kicker {
  margin-bottom: 16px;
}

.facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.fact {
  background: none;
  border-radius: 0;
  padding: 0;
}

.fact h3 {
  margin: 0 0 6px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--orange);
}

.fact p {
  margin: 0;
  color: var(--body);
  font-size: 14px;
  line-height: 1.65;
}

/* Product chrome */
.product {
  max-width: 1240px;
  margin: 0 auto;
  background: var(--white);
  border-radius: 18px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(6, 59, 117, 0.08);
  overflow: hidden;
}

.product-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 16px;
  background: var(--navy);
  color: #fff;
}

.product-bar-left {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 700;
}

.product-bar-left img {
  width: 22px;
  height: 22px;
}

.dots {
  display: flex;
  gap: 6px;
}

.dots span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
}

.dots span:first-child { background: #ff6b6b; }
.dots span:nth-child(2) { background: #ffd166; }
.dots span:nth-child(3) { background: #6fdf9c; }

.live {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sage);
}

.live::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #6fdf9c;
  box-shadow: 0 0 0 4px rgba(111, 223, 156, 0.2);
}

.product-note {
  font-size: 12px;
  line-height: 1.55;
  color: var(--muted);
  max-width: 42em;
  margin: 12px 0 0;
  padding: 0;
  background: none;
  border: 0;
  box-shadow: none;
  border-radius: 0;
}

/* Dashboard */
.dash {
  padding: 18px;
  background: #f4f7fb;
}

.ask {
  display: flex;
  gap: 8px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 8px;
  margin-bottom: 14px;
}

.ask input {
  flex: 1;
  border: 0;
  font: inherit;
  font-size: 15px;
  padding: 8px 10px;
  color: var(--ink);
  background: transparent;
}

.ask input:focus { outline: none; }

.ask-btn {
  background: var(--navy);
  color: #fff;
  border: 0;
  border-radius: 8px;
  padding: 8px 14px;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
}

.prompts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.prompt {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 999px;
  padding: 7px 12px;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  font-family: inherit;
}

.prompt[aria-pressed="true"],
.prompt:hover {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}

.answer {
  display: none;
  background: #fff;
  border-left: 3px solid var(--orange);
  border-radius: 10px;
  padding: 14px 16px;
  margin-bottom: 16px;
}

.answer.is-on { display: block; }

.answer strong { display: block; margin-bottom: 4px; }
.answer p { margin: 0; color: var(--body); font-size: 15px; }
.sources {
  margin-top: 8px;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--muted);
}

.kpis {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 14px;
}

.kpi {
  background: #fff;
  border-radius: 12px;
  padding: 14px 16px;
  border: 1px solid var(--line);
}

.kpi span {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}

.kpi b {
  font-size: 26px;
  letter-spacing: -0.03em;
  display: block;
  font-variant-numeric: tabular-nums;
}

.kpi em {
  font-style: normal;
  font-size: 13px;
  font-weight: 600;
  margin-top: 4px;
  display: block;
}

.up { color: var(--good); }
.down { color: var(--bad); }
.mid { color: var(--warn); }

.dash-grid {
  display: grid;
  grid-template-columns: 1.7fr 1fr;
  gap: 12px;
}

.panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 16px;
}

.panel h3 {
  margin: 0 0 4px;
  font-size: 15px;
}

.panel .sub {
  margin: 0 0 14px;
  font-size: 12px;
  color: var(--muted);
}

.chart-wrap {
  position: relative;
  height: 280px;
}

.legend-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 12px;
  color: var(--muted);
  margin-top: 8px;
}

.swatch {
  display: inline-block;
  width: 16px;
  height: 3px;
  vertical-align: middle;
  margin-right: 6px;
  background: var(--navy);
}

.swatch.forecast {
  background: var(--orange);
  background-image: repeating-linear-gradient(90deg, var(--orange) 0 6px, transparent 6px 10px);
}

.sites {
  display: grid;
  gap: 12px;
}

.site {
  display: grid;
  grid-template-columns: 88px 1fr auto;
  gap: 10px;
  align-items: center;
  font-size: 14px;
}

.bar {
  height: 10px;
  background: var(--mist);
  border-radius: 99px;
  overflow: hidden;
}

.bar > i {
  display: block;
  height: 100%;
  background: var(--navy);
  border-radius: inherit;
}

.bar.alt > i { background: var(--teal); }

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

.exceptions li {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  padding: 10px 0;
  border-top: 1px solid var(--line);
  font-size: 13px;
}

.exceptions li:first-child { border-top: 0; padding-top: 0; }

.tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 6px;
  background: var(--orange-soft);
  color: #8a4b00;
  white-space: nowrap;
}

.tag.green { background: #e4f4ea; color: var(--good); }
.tag.navy { background: var(--mist); color: var(--navy); }
.tag.red { background: #fde8e6; color: var(--bad); }

/* Mailbox */
.inbox-app {
  background: #f4f6f8;
}

.inbox-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 14px;
  background: #fff;
  border-bottom: 1px solid #eef1f4;
}

.inbox-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.inbox-brand img {
  width: 28px;
  height: 28px;
}

.inbox-brand strong {
  display: block;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
}

.inbox-brand small {
  display: block;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.inbox-search {
  border: 1px solid #e6eaee;
  background: #f6f7f9;
  border-radius: 999px;
  padding: 7px 12px;
  font-size: 12px;
  color: #8a96a3;
  margin: 0 4px 8px;
}

.mail {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 10px;
  min-height: 0;
  padding: 10px;
  background: transparent;
  align-items: stretch;
}

.mail-list {
  border-right: 0;
  background: #fff;
  padding: 10px 8px 12px;
  border-radius: 16px;
  box-shadow: 0 10px 28px rgba(15, 37, 64, 0.06);
}

.mail-list-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 2px 8px 10px;
}

.mail-list-head h3 {
  margin: 0;
  font-size: 14px;
  letter-spacing: 0;
  text-transform: none;
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 600;
}

.mail-list-head span {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.mail-item {
  width: 100%;
  display: grid;
  grid-template-columns: 32px 1fr auto;
  gap: 8px;
  align-items: start;
  text-align: left;
  border: 0;
  background: transparent;
  padding: 6px 8px;
  margin-bottom: 2px;
  border-radius: 12px;
  cursor: pointer;
  font-family: inherit;
}

.mail-item:hover,
.mail-item:focus-visible {
  background: #f4f7fb;
  outline: none;
}

.mail-item.is-on {
  background: #fff;
  box-shadow: 0 8px 22px rgba(15, 37, 64, 0.08);
}

.mail-item.is-on .mail-badge {
  visibility: hidden;
}

.mail-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  flex: none;
}

.mail-item[data-email="farm"] .mail-avatar { background: var(--teal); }
.mail-item[data-email="hotel"] .mail-avatar { background: #0a4f8c; }
.mail-item[data-email="invoice"] .mail-avatar { background: #3a4a5c; }

.mail-avatar.lg {
  width: 36px;
  height: 36px;
  font-size: 11px;
}

.mail-item-body {
  min-width: 0;
}

.mail-item-top {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  align-items: baseline;
}

.mail-item-top strong {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
}

.mail-item-top time {
  font-family: var(--font-mono);
  font-size: 10px;
  color: #8a96a3;
  white-space: nowrap;
}

.mail-item-sub {
  display: block;
  font-size: 12px;
  color: var(--navy);
  margin: 2px 0 3px;
}

.mail-item .preview {
  font-size: 12px;
  color: var(--muted);
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.mail-badge {
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 999px;
  background: var(--orange);
  color: #fff;
  font-size: 10px;
  font-weight: 600;
  display: grid;
  place-items: center;
  margin-top: 2px;
}

.mail-read {
  padding: 12px 16px 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 10px 28px rgba(15, 37, 64, 0.06);
  min-width: 0;
}

.mail-thread-head {
  display: grid;
  grid-template-columns: 36px 1fr auto;
  gap: 10px;
  align-items: center;
  padding-bottom: 10px;
  border-bottom: 1px solid #eef1f4;
}

.mail-thread-head h3 {
  margin: 0;
  font-size: 15px;
  font-family: var(--font-display);
}

.mail-thread-subject {
  margin: 0;
  font-size: 15px;
  letter-spacing: -0.02em;
  font-family: var(--font-display);
}

.mail-thread {
  display: grid;
  gap: 10px;
  flex: 1;
}

.bubble {
  max-width: 86%;
  border-radius: 16px;
  padding: 10px 12px;
}

.bubble-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 8px;
  color: var(--muted);
}

.bubble.inbound {
  justify-self: start;
  background: #f3f5f7;
  border-bottom-left-radius: 6px;
}

.bubble.draft {
  justify-self: end;
  background: #eef4fb;
  border-bottom-right-radius: 6px;
}

.bubble.draft .mail-body {
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
  white-space: normal;
}

.mail-meta {
  font-size: 12px;
  color: var(--muted);
  margin: 2px 0 0;
}

.mail-body {
  font-size: 14px;
  color: var(--body);
  margin: 0;
  white-space: pre-wrap;
  line-height: 1.5;
}

.mail-compose {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid #eef1f4;
}

.mail-compose p {
  margin: 0;
  font-size: 13px;
  color: var(--muted);
}

.draft-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

/* Max note */
.note-section {
  background: var(--paper);
  padding: 72px 28px 52px;
}

#ninety.wrap {
  padding-top: 68px;
}


.note {
  max-width: 1080px;
  margin: 0 auto;
  background: #fff;
  padding: 40px;
  border-radius: var(--radius);
}

.note > h2 {
  font-size: clamp(24px, 2.6vw, 34px);
  line-height: 1.12;
  letter-spacing: -0.015em;
  margin: 0 0 28px;
}

.note-grid {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 36px;
  align-items: start;
}

.note-grid img {
  width: 220px;
  height: 280px;
  object-fit: cover;
  border-radius: 12px;
  filter: grayscale(0.15);
}

.note-copy p {
  margin: 0 0 14px;
  font-size: 15.5px;
  line-height: 1.75;
  color: var(--body);
}

.signoff {
  margin-top: 24px;
}

.signoff strong { display: block; }
.signoff span { color: var(--muted); font-size: 14px; }

/* Approach */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.step {
  background: #fff;
  border-radius: 14px;
  padding: 22px;
  border-top: 3px solid var(--orange);
}

.step b {
  display: block;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 8px;
}

.step h3 { margin: 0 0 8px; font-size: 16px; }
.step p { margin: 0; color: var(--body); font-size: 14px; line-height: 1.65; }

.principles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 28px;
}

.principle {
  background: var(--mist);
  border-radius: 14px;
  padding: 20px 22px;
}

.principle h3 { margin: 0 0 8px; font-size: 16px; }
.principle p { margin: 0; color: var(--body); font-size: 14px; line-height: 1.65; }

/* 90 days */
.timeline {
  position: relative;
  padding-left: 28px;
}

.t-item {
  position: relative;
  padding: 0 0 32px;
}

.t-item:last-child {
  padding-bottom: 0;
}

.t-item::before {
  content: "";
  position: absolute;
  left: -28px;
  top: 6px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--orange);
  z-index: 1;
}

.t-item:not(:last-child)::after {
  content: "";
  position: absolute;
  left: -23px;
  top: 12px;
  bottom: -12px;
  width: 2px;
  background: var(--navy);
}

.t-item h3 { margin: 0 0 6px; font-size: 16px; }
.t-item p { margin: 0; color: var(--body); font-size: 14.5px; line-height: 1.7; }

/* Close */
.close {
  background: var(--navy-deep);
  color: #fff;
}

.close .kicker {
  color: var(--orange);
  font-size: 11px;
  letter-spacing: 0.24em;
  line-height: 1.2;
  max-width: none;
}
.close h2 {
  font-size: clamp(24px, 2.6vw, 34px);
  letter-spacing: -0.015em;
  margin: 0 0 12px;
}

.close p { color: rgba(255, 255, 255, 0.82); max-width: 52ch; font-size: 15.5px; line-height: 1.7; }

.close-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.contact-row {
  margin-top: 28px;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.75);
}

.contact-row a { color: #fff; }

footer {
  padding: 20px 28px 40px;
  background: var(--navy-deep);
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
}

/* Responsive */
@media (max-width: 980px) {
  .kpis,
  .dash-grid,
  .mail,
  .note-grid,
  .steps,
  .facts,
  .example-dash .example-inner,
  .example-mail .example-inner {
    grid-template-columns: 1fr;
  }

  .mail { min-height: 0; }
  .mail-list { box-shadow: 0 8px 20px rgba(15, 37, 64, 0.05); }
  .inbox-top { flex-wrap: wrap; }
  .inbox-search { max-width: none; }

  .example-dash .example-visual,
  .example-mail .example-visual {
    margin-left: 0;
    margin-right: 0;
    order: 2;
  }

  .example-copy { order: 1; }

  .example-dash .device {
    transform: none;
  }

  .example-inner {
    padding: 56px 20px 0;
  }

  .note {
    padding: 28px;
  }

  .note-grid img {
    width: 100%;
    height: auto;
    max-height: 320px;
  }
}

@media (max-width: 900px) {
  .nav {
    grid-template-columns: 1fr auto;
    column-gap: 12px;
    padding: 0 16px;
  }

  .nav-meta {
    font-size: 10px;
    letter-spacing: 0.04em;
  }
}

@media (max-width: 720px) {
  .nav { grid-template-columns: 1fr auto; }
}

@media (max-width: 640px) {
  .kpis { grid-template-columns: 1fr 1fr; }
  .hero-inner { padding: 56px 20px 40px; }
  .wrap { padding: 56px 20px; }
  .note-section { padding: 56px 20px 40px; }
  #ninety.wrap { padding-top: 44px; }
  .nav { padding: 0 16px; }
}

@media print {
  .nav, .hero-actions, .draft-actions, .ask-btn { display: none !important; }
  .hero { min-height: 320px; }
  .product, .device { box-shadow: none; break-inside: avoid; }
  body { background: #fff; }
}
