@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Sora:wght@600;700;800&display=swap");

:root {
  color-scheme: light;
  --font-sans: "Manrope", ui-sans-serif, system-ui, -apple-system,
    BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: "Sora", var(--font-sans);
  --bg: #f4f1ea;
  --bg-strong: #ebe6dc;
  --surface: #fffdf7;
  --surface-muted: #f6f3ec;
  --ink: #151719;
  --ink-soft: #343a40;
  --muted: #687078;
  --line: #ded8cc;
  --line-strong: #c9c1b3;
  --green: #2f7d63;
  --green-soft: #dceee6;
  --blue: #285f8f;
  --blue-soft: #deebf5;
  --clay: #b66d4d;
  --amber: #f1b85b;
  --shadow-sm: 0 12px 30px rgba(27, 31, 35, 0.08);
  --shadow-md: 0 28px 80px rgba(27, 31, 35, 0.14);
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 34px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    linear-gradient(180deg, rgba(255, 253, 247, 0.92), rgba(244, 241, 234, 0.9)),
    var(--bg);
  color: var(--ink);
  font-family: var(--font-sans);
  letter-spacing: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

p,
li {
  color: var(--muted);
  line-height: 1.65;
}

p,
h1,
h2,
h3 {
  overflow-wrap: break-word;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--font-sans);
  letter-spacing: 0;
}

h1 {
  max-width: 12ch;
  font-family: var(--font-display);
  font-size: clamp(3.15rem, 6.2vw, 6.45rem);
  font-weight: 800;
  line-height: 0.96;
  letter-spacing: -0.018em;
}

h2 {
  max-width: 13ch;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 4.2rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.014em;
}

h3 {
  font-size: 1.18rem;
  line-height: 1.15;
}

.launch-note {
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 9px 18px;
  background: #151719;
  color: #f7f1df;
  font-size: 0.86rem;
  font-weight: 650;
  text-align: center;
}

.launch-note span,
.todo-label {
  color: #ffd37a;
  font-weight: 800;
  text-transform: uppercase;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px max(22px, calc((100vw - var(--max)) / 2));
  background: rgba(244, 241, 234, 0.84);
  border-bottom: 1px solid rgba(222, 216, 204, 0.78);
  backdrop-filter: blur(22px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-width: max-content;
  color: var(--ink);
  font-family: var(--font-sans);
  font-weight: 800;
}

.brand-mark {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  background: var(--ink);
  border-radius: 13px;
  color: #fffdf7;
  font-size: 0.82rem;
  letter-spacing: 0.02em;
  box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.16);
}

.brand-name {
  font-size: 1rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 6px;
  background: rgba(255, 253, 247, 0.66);
  border: 1px solid rgba(222, 216, 204, 0.74);
  border-radius: 999px;
}

.site-nav a {
  padding: 9px 13px;
  border-radius: 999px;
  color: var(--muted);
  font-family: var(--font-sans);
  font-size: 0.92rem;
  font-weight: 720;
}

.site-nav a:hover {
  background: var(--surface);
  color: var(--ink);
}

.menu-button {
  display: none;
  width: 46px;
  height: 46px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  background: rgba(255, 253, 247, 0.78);
  border: 1px solid var(--line);
  border-radius: 50%;
  cursor: pointer;
  order: 4;
}

.menu-button span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--ink);
  border-radius: 999px;
}

body.menu-open .menu-button {
  background: var(--ink);
}

body.menu-open .menu-button span {
  background: var(--surface);
}

.menu-scrim {
  position: fixed;
  inset: 0;
  z-index: 28;
  background: rgba(21, 23, 25, 0);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

body.menu-open .menu-scrim {
  background: rgba(21, 23, 25, 0.22);
  opacity: 1;
  pointer-events: auto;
}

.menu-panel {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 32;
  display: grid;
  width: min(340px, calc(100vw - 28px));
  align-content: start;
  padding: 94px 16px 18px;
  background: rgba(255, 253, 247, 0.98);
  border-left: 1px solid var(--line);
  border-radius: 24px 0 0 24px;
  box-shadow: var(--shadow-md);
  transform: translateX(105%);
  transition: transform 220ms ease;
}

body.menu-open .menu-panel {
  transform: translateX(0);
}

.menu-panel nav {
  display: grid;
  gap: 4px;
}

.menu-panel a {
  padding: 15px 14px;
  border-radius: 14px;
  color: var(--ink);
  font-weight: 820;
}

.menu-panel a:hover {
  background: var(--surface-muted);
}

.menu-close {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  justify-self: end;
  margin-bottom: 18px;
  background: var(--ink);
  border-radius: 50%;
  color: var(--surface);
  cursor: pointer;
  font-size: 1.6rem;
  line-height: 1;
}

.button,
.header-cta {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 19px;
  border: 1px solid transparent;
  font-family: var(--font-sans);
  font-weight: 780;
  white-space: nowrap;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease;
}

.button:hover,
.header-cta:hover {
  transform: translateY(-1px);
}

.button-primary,
.header-cta {
  background: var(--ink);
  color: var(--surface);
  box-shadow: 0 12px 28px rgba(21, 23, 25, 0.18);
}

.button-primary:hover,
.header-cta:hover {
  background: #2a2e32;
}

.button-secondary,
.button-plan {
  background: rgba(255, 253, 247, 0.78);
  border-color: var(--line);
  color: var(--ink);
}

.button-secondary:hover,
.button-plan:hover {
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.todo-link::after {
  content: "TODO";
  margin-left: 8px;
  padding: 2px 5px;
  background: rgba(255, 211, 122, 0.16);
  border: 1px solid rgba(255, 211, 122, 0.32);
  border-radius: 999px;
  color: #8a5b09;
  font-size: 0.56rem;
  font-weight: 800;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.78fr);
  gap: clamp(34px, 5vw, 72px);
  align-items: center;
  width: min(var(--max), calc(100% - 44px));
  margin: 0 auto;
  padding: clamp(54px, 7vw, 86px) 0 clamp(58px, 7vw, 90px);
}

.hero::before {
  position: absolute;
  top: 24px;
  right: 28%;
  width: 420px;
  height: 420px;
  content: "";
  background: radial-gradient(circle, rgba(47, 125, 99, 0.16), transparent 68%);
  pointer-events: none;
}

.hero-copy,
.hero-visual {
  position: relative;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--green);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-lead {
  max-width: 610px;
  margin: 22px 0 0;
  color: var(--ink-soft);
  font-size: clamp(1.03rem, 1.28vw, 1.18rem);
  font-weight: 560;
  line-height: 1.58;
}

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

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 610px;
  margin: 34px 0 0;
}

.hero-metrics div {
  padding: 16px;
  background: rgba(255, 253, 247, 0.64);
  border: 1px solid rgba(222, 216, 204, 0.9);
  border-radius: var(--radius-sm);
}

.hero-metrics dt {
  margin-bottom: 5px;
  color: var(--ink);
  font-size: 1.04rem;
  font-weight: 800;
}

.hero-metrics dd {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 650;
}

.hero-visual {
  display: flex;
  min-width: 0;
  min-height: 545px;
  flex-direction: column;
  align-items: flex-end;
  gap: 14px;
}

.device-frame {
  position: relative;
  width: min(100%, 470px);
  padding: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.22)),
    rgba(255, 253, 247, 0.5);
  border: 1px solid rgba(222, 216, 204, 0.86);
  border-radius: 34px;
  box-shadow: var(--shadow-md);
  transform: rotate(1.2deg);
}

.app-window {
  overflow: hidden;
  min-height: 515px;
  padding: 18px;
  background: #111417;
  border-radius: 28px;
  color: white;
}

.app-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.app-title {
  color: #cbd3da;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.encrypted-pill {
  padding: 6px 9px;
  background: rgba(122, 222, 175, 0.12);
  border: 1px solid rgba(122, 222, 175, 0.22);
  border-radius: 999px;
  color: #bdebd6;
  font-size: 0.72rem;
  font-weight: 760;
}

.app-search {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 22px 0 18px;
  padding: 13px 15px;
  background: #23272d;
  border-radius: 22px;
}

.search-icon {
  position: relative;
  flex: 0 0 auto;
  width: 19px;
  height: 19px;
  border: 2px solid #8b949e;
  border-radius: 50%;
}

.search-icon::after {
  position: absolute;
  right: -5px;
  bottom: -4px;
  width: 8px;
  height: 2px;
  background: #8b949e;
  border-radius: 999px;
  content: "";
  transform: rotate(45deg);
  transform-origin: center;
}

.app-search p {
  margin: 0;
  color: #cbd3da;
  font-size: 0.92rem;
  font-weight: 680;
}

.notes-masonry {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.mock-note {
  min-height: 126px;
  padding: 16px;
  background: #252a30;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 18px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.mock-note-large {
  min-height: 218px;
}

.mock-note-accent {
  background: #1e4c46;
}

.note-label {
  margin-bottom: 10px;
  color: #f5f6f2;
  font-size: 0.96rem;
  font-weight: 800;
}

.mock-note p,
.mock-note ul,
.mock-note small {
  margin: 0;
  color: #cbd3da;
  font-size: 0.88rem;
  line-height: 1.48;
}

.mock-note ul {
  display: grid;
  gap: 7px;
  padding: 0;
  list-style: none;
}

.mock-note li::before {
  display: inline-grid;
  width: 18px;
  height: 18px;
  margin-right: 9px;
  place-items: center;
  border: 2px solid #77818a;
  border-radius: 6px;
  content: "";
  vertical-align: -4px;
}

.mock-note li.checked::before {
  background: #bdebd6;
  border-color: #bdebd6;
  content: "✓";
  color: #111417;
  font-size: 0.8rem;
  font-weight: 800;
}

.mock-note small {
  display: block;
  margin-top: 46px;
  font-size: 0.76rem;
}

.security-card {
  position: relative;
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 14px;
  width: min(100%, 470px);
  padding: 14px;
  background:
    linear-gradient(135deg, rgba(47, 125, 99, 0.08), rgba(255, 253, 247, 0.92)),
    var(--surface);
  border: 1px solid rgba(47, 125, 99, 0.18);
  border-radius: 18px;
  box-shadow: var(--shadow-sm);
}

.security-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  background: var(--green-soft);
  border-radius: 15px;
  color: var(--green);
  font-size: 0.82rem;
  font-weight: 800;
}

.security-card strong {
  display: block;
  margin-bottom: 4px;
}

.security-card p {
  margin: 0;
  font-size: 0.86rem;
  line-height: 1.45;
}

.proof-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(var(--max), calc(100% - 44px));
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--line);
  box-shadow: var(--shadow-sm);
}

.proof-row article {
  padding: 24px;
  background: rgba(255, 253, 247, 0.82);
}

.proof-row span,
.card-kicker,
.plan-top span {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--blue);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.proof-row strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1rem;
}

.proof-row p {
  margin: 0;
}

.section {
  width: min(var(--max), calc(100% - 44px));
  margin: 0 auto;
  padding: 96px 0;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(34px, 7vw, 88px);
  align-items: start;
}

.section-copy {
  position: sticky;
  top: 118px;
}

.section-copy p,
.section-heading p,
.workflow-panel p,
.closing-section p {
  max-width: 680px;
  font-size: 1.06rem;
}

.security-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.feature-card,
.price-card,
.workflow-panel,
.workflow-card {
  background: rgba(255, 253, 247, 0.82);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.8) inset;
}

.feature-card {
  min-height: 272px;
  padding: 28px;
}

.wide-card {
  grid-column: 1 / -1;
}

.feature-card p {
  margin-bottom: 0;
}

.workflow-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
  gap: 20px;
  align-items: stretch;
}

.workflow-panel {
  display: flex;
  min-height: 520px;
  flex-direction: column;
  justify-content: space-between;
  padding: 38px;
  background:
    linear-gradient(160deg, rgba(47, 125, 99, 0.16), rgba(255, 253, 247, 0.9)),
    var(--surface);
}

.workflow-mini-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 32px;
}

.workflow-mini-stats span {
  padding: 9px 11px;
  background: rgba(255, 253, 247, 0.78);
  border: 1px solid rgba(222, 216, 204, 0.84);
  border-radius: 999px;
  color: var(--ink-soft);
  font-size: 0.84rem;
  font-weight: 820;
}

.workflow-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.workflow-card {
  position: relative;
  display: flex;
  min-height: 252px;
  flex-direction: column;
  overflow: hidden;
  padding: 24px;
}

.workflow-card:first-child {
  grid-row: span 2;
  min-height: 520px;
}

.workflow-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 24px;
}

.workflow-number {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  background: var(--ink);
  border-radius: 14px;
  color: var(--surface);
  font-size: 0.84rem;
  font-weight: 800;
}

.workflow-type {
  color: var(--blue);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.workflow-card p {
  margin-bottom: 0;
}

.workflow-preview {
  position: relative;
  z-index: 1;
  margin-top: auto;
  padding: 16px;
  background: var(--surface-muted);
  border: 1px solid rgba(222, 216, 204, 0.72);
  border-radius: 18px;
}

.text-preview {
  display: grid;
  gap: 9px;
}

.text-preview strong {
  color: var(--ink);
}

.text-preview span,
.checklist-preview span,
.reminder-preview em {
  color: var(--muted);
  font-style: normal;
  font-weight: 650;
}

.checklist-preview {
  display: grid;
  gap: 10px;
}

.checklist-preview span {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
}

.checklist-preview span::before {
  display: inline-grid;
  width: 20px;
  height: 20px;
  margin-top: 2px;
  place-items: center;
  border: 2px solid #9aa3a9;
  border-radius: 7px;
  content: "";
}

.checklist-preview span.done::before {
  background: var(--green-soft);
  border-color: var(--green-soft);
  color: var(--green);
  content: "✓";
  font-size: 0.8rem;
  font-weight: 800;
}

.reminder-preview {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 6px 14px;
  align-items: center;
}

.reminder-preview span {
  grid-row: span 2;
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  background: var(--blue-soft);
  border-radius: 16px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 800;
}

.reminder-preview strong {
  color: var(--ink);
  font-size: 1.4rem;
}

.pricing-section {
  padding-top: 92px;
}

.section-heading {
  display: grid;
  justify-items: center;
  margin: 0 auto 34px;
  text-align: center;
}

.section-heading h2 {
  max-width: 13ch;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.price-card {
  position: relative;
  display: flex;
  min-height: 474px;
  flex-direction: column;
  padding: 30px;
}

.featured-plan {
  background: var(--surface);
  border-color: rgba(47, 125, 99, 0.42);
  box-shadow: var(--shadow-md);
  transform: translateY(-10px);
}

.plan-badge {
  align-self: flex-start;
  margin-bottom: 16px;
  padding: 8px 11px;
  background: var(--green-soft);
  border: 1px solid rgba(47, 125, 99, 0.18);
  border-radius: 999px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 800;
}

.plan-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.plan-top span {
  margin: 0;
  color: var(--muted);
}

.price {
  margin: 34px 0 6px;
  color: var(--ink);
  font-size: clamp(2.5rem, 4vw, 3.55rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.026em;
}

.price em {
  color: var(--muted);
  font-size: 1rem;
  font-style: normal;
  letter-spacing: 0;
}

.price-note {
  margin-top: 0;
}

.price-card ul {
  display: grid;
  gap: 12px;
  margin: 26px 0 30px;
  padding: 0;
  list-style: none;
}

.price-card li {
  color: var(--ink-soft);
  font-weight: 650;
}

.price-card li::before {
  display: inline-grid;
  width: 20px;
  height: 20px;
  margin-right: 10px;
  place-items: center;
  background: var(--green-soft);
  border-radius: 50%;
  color: var(--green);
  content: "✓";
  font-size: 0.78rem;
  font-weight: 800;
  vertical-align: -3px;
}

.price-card .button {
  margin-top: auto;
}

.closing-section {
  display: flex;
  gap: 30px;
  align-items: center;
  justify-content: space-between;
  padding: 66px;
  background:
    linear-gradient(135deg, rgba(40, 95, 143, 0.12), rgba(47, 125, 99, 0.12)),
    var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.closing-section h2 {
  max-width: 14ch;
}

.site-footer {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 30px;
  width: min(var(--max), calc(100% - 44px));
  margin: 0 auto;
  padding: 64px 0 42px;
  border-top: 1px solid var(--line);
}

.footer-brand {
  margin-bottom: 12px;
}

.site-footer p {
  margin: 0;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.site-footer nav a {
  padding: 9px 11px;
  border-radius: 999px;
  color: var(--muted);
  font-weight: 760;
}

.site-footer nav a:hover {
  background: var(--surface);
  color: var(--ink);
}

.legal-page {
  background: var(--bg);
}

.legal-hero {
  width: min(var(--max), calc(100% - 44px));
  margin: 0 auto;
  padding: 82px 0 46px;
}

.legal-hero h1 {
  max-width: 11ch;
}

.legal-hero p {
  max-width: 760px;
  font-size: 1.12rem;
}

.legal-shell {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 30px;
  width: min(var(--max), calc(100% - 44px));
  margin: 0 auto;
  padding: 0 0 100px;
}

.legal-aside,
.legal-content {
  background: rgba(255, 253, 247, 0.82);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.legal-aside {
  align-self: start;
  padding: 22px;
  position: sticky;
  top: 118px;
}

.legal-aside strong,
.legal-aside a {
  display: block;
}

.legal-aside strong {
  margin-bottom: 12px;
}

.legal-aside a {
  padding: 9px 0;
  color: var(--muted);
  font-weight: 720;
}

.legal-aside a:hover {
  color: var(--ink);
}

.legal-content {
  padding: clamp(26px, 5vw, 54px);
}

.legal-content section + section {
  margin-top: 44px;
  padding-top: 40px;
  border-top: 1px solid var(--line);
}

.legal-content h2 {
  max-width: none;
  margin-bottom: 16px;
  font-size: clamp(1.55rem, 3vw, 2.35rem);
  line-height: 1.05;
}

.legal-content p,
.legal-content li {
  font-size: 1.02rem;
}

.legal-content ul {
  padding-left: 1.2rem;
}

.placeholder-box {
  margin: 0 0 30px;
  padding: 18px 20px;
  background: #fff2cf;
  border: 1px solid #e8c66f;
  border-radius: var(--radius-sm);
  color: #5f4100;
  font-weight: 700;
}

.placeholder-box strong {
  display: block;
  margin-bottom: 6px;
  color: #3d2a00;
}

.data-table {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
}

.data-row {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 18px;
  padding: 16px;
  background: var(--surface);
}

.data-row + .data-row {
  border-top: 1px solid var(--line);
}

.data-row strong {
  color: var(--ink);
}

.data-row span {
  color: var(--muted);
}

@media (max-width: 1040px) {
  .site-nav {
    display: none;
  }

  .header-cta {
    margin-left: auto;
  }

  .menu-button {
    display: flex;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 38px;
  }

  .hero-metrics {
    max-width: none;
  }

  .hero-visual {
    min-height: auto;
  }

  .device-frame {
    position: relative;
    left: 0;
    right: auto;
    width: min(100%, 620px);
    margin: 0 auto;
  }

  .split-section,
  .workflow-section,
  .legal-shell {
    grid-template-columns: 1fr;
  }

  .workflow-panel {
    min-height: auto;
  }

  .workflow-cards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .workflow-card:first-child {
    grid-row: auto;
    min-height: 252px;
  }

  .section-copy,
  .legal-aside {
    position: static;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .featured-plan {
    transform: none;
  }
}

@media (max-width: 760px) {
  .launch-note {
    align-items: center;
    flex-direction: column;
    gap: 3px;
  }

  .site-header {
    padding-right: 18px;
    padding-left: 18px;
    gap: 10px;
  }

  .brand-name {
    display: none;
  }

  .hero,
  .section,
  .proof-row,
  .site-footer,
  .legal-hero,
  .legal-shell {
    width: min(100% - 32px, var(--max));
  }

  h1 {
    max-width: 12ch;
    font-size: clamp(2.95rem, 13.4vw, 4.25rem);
    line-height: 0.98;
  }

  h2 {
    font-size: clamp(1.95rem, 9.6vw, 3rem);
  }

  .hero-actions,
  .closing-section,
  .site-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .button,
  .header-cta {
    width: 100%;
  }

  .header-cta {
    width: auto;
  }

  .hero-metrics,
  .proof-row,
  .security-grid,
  .workflow-cards {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: auto;
  }

  .device-frame {
    width: 100%;
    transform: none;
  }

  .app-window {
    min-height: auto;
    padding: 16px;
  }

  .notes-masonry {
    gap: 10px;
  }

  .mock-note {
    min-height: 118px;
    padding: 14px;
    border-radius: 17px;
  }

  .mock-note-large {
    min-height: 180px;
  }

  .note-label {
    font-size: 0.96rem;
  }

  .mock-note p,
  .mock-note ul,
  .mock-note small {
    font-size: 0.86rem;
  }

  .security-card {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    margin: 12px auto 0;
  }

  .section {
    padding: 76px 0;
  }

  .workflow-card,
  .workflow-card:first-child {
    min-height: auto;
    padding: 24px;
  }

  .closing-section {
    padding: 30px;
  }

  .data-row {
    grid-template-columns: 1fr;
    gap: 6px;
  }
}

@media (max-width: 460px) {
  .header-cta {
    min-height: 42px;
    padding: 0 12px;
    font-size: 0.86rem;
  }

  .mobile-menu summary {
    width: 42px;
    height: 42px;
  }

  .todo-link::after {
    display: none;
  }

  .hero {
    padding-top: 48px;
  }

  .hero-visual {
    min-height: 470px;
  }

  .mock-note-list,
  .mock-note-accent {
    display: none;
  }

  .notes-masonry {
    grid-template-columns: 1fr;
  }

  .price-card,
  .feature-card,
  .workflow-panel {
    padding: 24px;
  }
}
