:root {
  --ink: #20201f;
  --ink-soft: #45423e;
  --muted: #77716a;
  --muted-2: #9b948c;
  --paper: #ffffff;
  --canvas: #fbfaf8;
  --sand: #f3f0eb;
  --sand-2: #ece7df;
  --line: #e4dfd7;
  --line-strong: #d4cdc4;
  --red: #e5484d;
  --red-dark: #c8343b;
  --red-soft: #fff0f0;
  --green: #287a5c;
  --shadow-sm: 0 1px 2px rgba(32,32,31,.04), 0 7px 22px rgba(32,32,31,.04);
  --shadow: 0 22px 70px rgba(32,32,31,.11);
  --radius: 16px;
  --max: 1440px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--canvas);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration: none; }
button, input { font: inherit; color: inherit; }
img { max-width: 100%; display: block; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: 74px;
  display: grid;
  grid-template-columns: 220px 1fr 220px;
  align-items: center;
  gap: 24px;
  padding: 0 clamp(20px, 4vw, 64px);
  border-bottom: 1px solid rgba(228,223,215,.88);
  background: rgba(251,250,248,.92);
  backdrop-filter: blur(18px);
}
.site-logo img { width: 177px; height: auto; }
.site-header nav { display: flex; justify-content: center; gap: 32px; color: var(--muted); font-size: 13px; }
.site-header nav a { position: relative; padding: 8px 0; }
.site-header nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 3px; height: 1px; background: var(--ink); transition: right .18s ease; }
.site-header nav a:hover { color: var(--ink); }
.site-header nav a:hover::after { right: 0; }
.site-actions { display: flex; align-items: center; justify-content: flex-end; gap: 17px; font-size: 13px; }
.marketing-menu { display: none; border: 0; background: transparent; font-size: 22px; }

.black-button, .white-button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 0 20px;
  border: 1px solid var(--ink);
  border-radius: 9px;
  color: #fff;
  background: var(--ink);
  font-size: 13px;
  font-weight: 650;
  letter-spacing: -.01em;
  box-shadow: 0 7px 20px rgba(32,32,31,.12);
  transition: transform .16s ease, background .16s ease, box-shadow .16s ease;
}
.black-button:hover { transform: translateY(-2px); background: #353330; box-shadow: 0 12px 30px rgba(32,32,31,.16); }
.black-button.small { min-height: 36px; padding: 0 14px; font-size: 12px; box-shadow: none; }
.white-button { color: var(--ink); background: #fff; border-color: #fff; }
.white-button:hover { transform: translateY(-2px); }
.text-button { display: inline-flex; align-items: center; gap: 15px; color: var(--ink); font-size: 13px; font-weight: 620; }
.text-button span { color: var(--red); }

.landing-hero {
  width: min(var(--max), 100%);
  min-height: 790px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(430px, .85fr) minmax(590px, 1.15fr);
  gap: clamp(42px, 6vw, 96px);
  align-items: center;
  padding: 80px clamp(24px, 5vw, 76px) 92px;
  overflow: hidden;
}
.hero-copy { max-width: 630px; }
.hero-kicker, .login-kicker {
  display: flex;
  align-items: center;
  gap: 11px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
}
.hero-kicker i, .login-kicker i { width: 28px; height: 2px; display: block; background: var(--red); }
.landing-hero h1 {
  margin: 25px 0 28px;
  font-size: clamp(68px, 7vw, 108px);
  line-height: .91;
  letter-spacing: -.068em;
  font-weight: 720;
}
.landing-hero h1 em, .login-editorial h1 em {
  color: var(--red);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -.055em;
}
.hero-copy > p { max-width: 575px; margin: 0; color: var(--ink-soft); font-size: 18px; line-height: 1.65; }
.hero-actions { display: flex; align-items: center; gap: 24px; margin-top: 34px; }
.hero-microcopy { display: flex; flex-wrap: wrap; gap: 17px; margin-top: 29px; color: var(--muted); font-size: 11px; }
.hero-microcopy span { display: inline-flex; align-items: center; gap: 6px; }
.hero-microcopy i { color: var(--green); font-style: normal; font-weight: 800; }

.hero-board {
  min-height: 635px;
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  grid-auto-rows: 155px;
  gap: 14px;
  align-content: center;
  transform: rotate(1deg);
}
.hero-board::before {
  content: "";
  position: absolute;
  width: 470px;
  height: 470px;
  right: -150px;
  top: -80px;
  border-radius: 50%;
  background: rgba(229,72,77,.07);
  filter: blur(2px);
}
.pin {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: var(--paper);
  box-shadow: var(--shadow-sm);
}
.pin-wide { grid-column: 1 / -1; }
.pin-tall { grid-row: span 2; }
.dashboard-pin { min-height: 302px; padding: 16px; transform: rotate(-1deg); box-shadow: var(--shadow); }
.pin-top { display: flex; align-items: center; gap: 8px; color: var(--muted); font-size: 9px; }
.pin-top img { width: 22px; height: 22px; }
.pin-top i { margin-left: auto; font-style: normal; letter-spacing: 2px; }
.pin-greeting { display: flex; align-items: flex-start; justify-content: space-between; margin: 18px 0 14px; }
.pin-greeting div { display: flex; flex-direction: column; gap: 4px; }
.pin-greeting small { color: var(--muted-2); font-size: 7px; letter-spacing: .1em; }
.pin-greeting strong { font-size: 17px; letter-spacing: -.03em; }
.pin-greeting button { padding: 7px 10px; border: 0; border-radius: 7px; color: #fff; background: var(--ink); font-size: 8px; }
.pin-metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.pin-metrics div { min-width: 0; padding: 10px; border: 1px solid var(--line); border-radius: 9px; background: #fff; }
.pin-metrics span, .pin-metrics small { display: block; color: var(--muted); font-size: 6.5px; }
.pin-metrics b { display: block; margin: 5px 0; font-size: 13px; }
.pin-metrics small { color: var(--green); }
.pin-metrics small.red { color: var(--red); }
.pin-chart { margin-top: 10px; padding: 10px; border: 1px solid var(--line); border-radius: 9px; }
.pin-chart span { display: block; margin-bottom: 4px; color: var(--muted); font-size: 7px; }
.pin-chart svg { width: 100%; height: 50px; }
.product-pin { display: flex; flex-direction: column; }
.product-pin > img { width: 100%; min-height: 105px; flex: 1; object-fit: cover; background: var(--sand); }
.product-pin > div { padding: 11px 12px; }
.product-pin span { color: var(--red-dark); font-size: 7px; text-transform: uppercase; letter-spacing: .08em; }
.product-pin b { display: block; margin: 4px 0 5px; font-size: 10px; line-height: 1.35; }
.product-pin small { color: var(--green); font-size: 7px; }
.note-pin, .ai-pin { padding: 18px; }
.note-pin { display: flex; flex-direction: column; justify-content: center; background: #f2eee8; }
.note-pin > span, .ai-pin > span { color: var(--muted); font-size: 8px; text-transform: uppercase; letter-spacing: .08em; }
.note-pin strong { max-width: 210px; margin: 8px 0 15px; font-family: Georgia, serif; font-size: 22px; font-weight: 400; line-height: 1.12; }
.note-pin div { display: flex; align-items: center; gap: 7px; color: var(--muted); font-size: 8px; }
.note-pin div i { width: 7px; height: 7px; border-radius: 50%; background: var(--red); }
.ai-pin { display: flex; flex-direction: column; justify-content: center; color: #fff; background: var(--ink); }
.ai-pin > i { width: 28px; height: 28px; display: grid; place-items: center; margin-bottom: 13px; border-radius: 8px; color: var(--ink); background: #fff; font-style: normal; }
.ai-pin > span { color: #aaa49d; }
.ai-pin strong { margin: 8px 0 7px; font-size: 12px; line-height: 1.45; }
.ai-pin small { color: #cbc6bf; font-size: 8px; line-height: 1.45; }

.proof-strip {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 4vw, 66px);
  padding: 22px 30px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
  overflow-x: auto;
}
.proof-strip span { color: var(--muted-2); font-size: 10px; text-transform: uppercase; letter-spacing: .12em; }
.proof-strip b { color: #57524c; font-size: 11px; letter-spacing: .11em; white-space: nowrap; }

.marketing-section {
  width: min(var(--max), 100%);
  margin: 0 auto;
  padding: 125px clamp(24px, 5vw, 76px);
}
.section-intro { max-width: 890px; margin-bottom: 58px; }
.section-intro.compact { max-width: 760px; }
.section-intro > span { color: var(--red-dark); font-size: 10px; font-weight: 750; letter-spacing: .12em; }
.section-intro h2 { margin: 18px 0 20px; font-size: clamp(50px, 5.6vw, 82px); line-height: .98; letter-spacing: -.06em; }
.section-intro p { max-width: 670px; margin: 0; color: var(--muted); font-size: 17px; line-height: 1.65; }

.product-section { padding-top: 140px; }
.product-window {
  min-height: 620px;
  display: grid;
  grid-template-columns: 185px 1fr;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--shadow);
}
.product-window > aside { display: flex; flex-direction: column; gap: 4px; padding: 18px 13px; border-right: 1px solid var(--line); background: #fdfcfa; }
.product-window > aside img { width: 135px; margin: 0 7px 25px; }
.product-window > aside a { padding: 9px 10px; border-radius: 7px; color: var(--muted); font-size: 10px; }
.product-window > aside a.active { color: var(--ink); background: var(--sand); font-weight: 650; }
.window-main { min-width: 0; }
.window-main > header { height: 57px; display: flex; align-items: center; justify-content: space-between; padding: 0 19px; border-bottom: 1px solid var(--line); }
.fake-search { width: min(390px, 70%); padding: 9px 12px; border: 1px solid var(--line); border-radius: 8px; color: var(--muted-2); font-size: 9px; }
.window-main > header > span { width: 28px; height: 28px; display: grid; place-items: center; border-radius: 50%; color: #fff; background: #7d6e5d; font-size: 8px; }
.window-content { padding: 35px; }
.window-content > small { color: var(--muted-2); font-size: 7px; letter-spacing: .1em; }
.window-content h3 { margin: 7px 0 5px; font-size: 25px; letter-spacing: -.04em; }
.window-content > p { margin: 0; color: var(--muted); font-size: 10px; }
.window-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin: 25px 0 12px; }
.window-stats > div { min-height: 96px; padding: 14px; border: 1px solid var(--line); border-radius: 10px; }
.window-stats span, .window-stats small { display: block; color: var(--muted); font-size: 7px; }
.window-stats b { display: block; margin: 11px 0 7px; font-size: 17px; }
.window-stats small { color: var(--green); }
.window-panels { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.window-panels article { min-height: 230px; padding: 15px; border: 1px solid var(--line); border-radius: 10px; }
.window-panels article > b { font-size: 9px; }
.window-panels p { display: flex; justify-content: space-between; gap: 10px; margin: 13px 0; padding-bottom: 11px; border-bottom: 1px solid var(--line); color: var(--muted); font-size: 7.5px; }
.window-panels p span { color: var(--red-dark); font-weight: 700; }
.window-panels p span.green { color: var(--green); }

.workflows { border-top: 1px solid var(--line); }
.workflow-grid { display: grid; grid-template-columns: 1.12fr .88fr; gap: 16px; }
.workflow-card { min-height: 380px; position: relative; overflow: hidden; padding: 33px; border: 1px solid var(--line); border-radius: 18px; background: #fff; }
.workflow-card.large { grid-row: span 2; min-height: 776px; }
.workflow-card.red-card { color: #fff; background: var(--red); border-color: var(--red); }
.workflow-card .number { display: block; margin-bottom: 78px; color: var(--muted-2); font-size: 10px; }
.workflow-card.red-card .number { color: rgba(255,255,255,.62); }
.workflow-card h3 { margin: 0; font-size: 32px; letter-spacing: -.045em; }
.workflow-card p { max-width: 470px; margin: 13px 0 0; color: var(--muted); font-size: 14px; line-height: 1.65; }
.workflow-card.red-card p { color: rgba(255,255,255,.82); }
.mini-masonry { position: absolute; left: 33px; right: 33px; bottom: 33px; display: grid; grid-template-columns: 1.2fr .8fr; grid-auto-rows: 170px; gap: 10px; }
.mini-masonry img { width: 100%; height: 100%; object-fit: cover; border-radius: 12px; background: var(--sand); }
.mini-masonry img:nth-child(1) { grid-row: span 2; }
.workflow-list, .exception-preview { margin-top: 65px; border: 1px solid var(--line); border-radius: 12px; background: #fff; }
.workflow-list div, .exception-preview div { min-height: 58px; display: grid; grid-template-columns: 28px 1fr auto; align-items: center; gap: 11px; padding: 12px; border-bottom: 1px solid var(--line); font-size: 10px; }
.workflow-list div:last-child, .exception-preview div:last-child { border-bottom: 0; }
.workflow-list i { width: 27px; height: 27px; display: grid; place-items: center; border-radius: 50%; color: var(--green); background: #edf7f2; font-style: normal; }
.workflow-list b { font-size: 10px; }
.exception-preview { border-color: rgba(255,255,255,.22); background: rgba(255,255,255,.12); }
.exception-preview div { border-color: rgba(255,255,255,.2); }
.exception-preview i { width: 27px; height: 27px; display: grid; place-items: center; border-radius: 50%; color: var(--red); background: #fff; font-style: normal; font-weight: 800; }
.exception-preview span { display: flex; flex-direction: column; gap: 3px; font-size: 8px; color: rgba(255,255,255,.76); }
.exception-preview span b { color: #fff; font-size: 10px; }
.exception-preview em { color: #fff; font-size: 9px; font-style: normal; }

.principles { border-top: 1px solid var(--line); }
.principle-list { border-top: 1px solid var(--ink); }
.principle-list article { display: grid; grid-template-columns: 90px minmax(0,1fr); gap: 24px; padding: 36px 0; border-bottom: 1px solid var(--line); }
.principle-list article > span { color: var(--red-dark); font-family: Georgia, serif; font-size: 24px; font-style: italic; }
.principle-list h3 { margin: 0 0 8px; font-size: 24px; letter-spacing: -.035em; }
.principle-list p { max-width: 760px; margin: 0; color: var(--muted); font-size: 14px; line-height: 1.65; }

.pricing { border-top: 1px solid var(--line); }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; align-items: stretch; }
.pricing-grid article { position: relative; min-height: 520px; padding: 31px; border: 1px solid var(--line); border-radius: 17px; background: #fff; }
.pricing-grid article.featured { color: #fff; background: var(--ink); border-color: var(--ink); box-shadow: var(--shadow); }
.pricing-grid article > span { color: var(--red-dark); font-size: 9px; font-weight: 750; letter-spacing: .12em; }
.pricing-grid article.featured > span { color: #ff8084; }
.pricing-grid h3 { margin: 38px 0 8px; font-size: 47px; letter-spacing: -.055em; }
.pricing-grid h3 small { color: var(--muted); font-size: 12px; letter-spacing: 0; }
.pricing-grid article.featured h3 small { color: #aaa49d; }
.pricing-grid p { margin: 0 0 33px; color: var(--muted); font-size: 13px; }
.pricing-grid article.featured p { color: #bdb8b1; }
.pricing-grid ul { min-height: 190px; margin: 0; padding: 0; list-style: none; }
.pricing-grid li { padding: 11px 0; border-bottom: 1px solid var(--line); color: var(--ink-soft); font-size: 12px; }
.pricing-grid li::before { content: "✓"; margin-right: 9px; color: var(--green); font-weight: 800; }
.pricing-grid article.featured li { color: #e3dfd9; border-color: #3f3d39; }
.pricing-grid article > a { display: inline-flex; margin-top: 23px; color: var(--red-dark); font-size: 12px; font-weight: 650; }
.pricing-grid article > a.black-button { display: flex; color: var(--ink); background: #fff; border-color: #fff; }
.recommended { position: absolute; right: 22px; top: 22px; padding: 6px 8px; border-radius: 99px; color: #fff; background: var(--red); font-size: 7px; font-weight: 750; letter-spacing: .08em; }

.marketing-cta {
  min-height: 615px;
  display: grid;
  place-content: center;
  justify-items: center;
  padding: 90px 25px;
  text-align: center;
  color: #fff;
  background: var(--ink);
}
.marketing-cta > img { width: 62px; margin-bottom: 35px; }
.marketing-cta > span { color: #aaa49d; font-size: 10px; letter-spacing: .15em; }
.marketing-cta h2 { margin: 20px 0 34px; font-size: clamp(54px, 6.4vw, 94px); line-height: .95; letter-spacing: -.065em; }
.site-footer { min-height: 100px; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 25px clamp(24px, 5vw, 76px); color: #b9b3ac; background: #171716; }
.site-footer img { width: 175px; }
.site-footer p { font-size: 10px; }
.site-footer div { display: flex; gap: 20px; font-size: 11px; }
.site-footer a:hover { color: #fff; }

/* Login */
.login-body { min-height: 100vh; background: var(--canvas); }
.login-header { height: 74px; display: flex; align-items: center; justify-content: space-between; padding: 0 clamp(24px, 4vw, 60px); border-bottom: 1px solid var(--line); }
.login-header img { width: 175px; }
.login-header span { color: var(--muted); font-size: 11px; }
.login-main { min-height: calc(100vh - 74px); display: grid; grid-template-columns: minmax(500px, 1.08fr) minmax(480px, .92fr); }
.login-editorial { position: relative; overflow: hidden; padding: clamp(60px, 8vw, 112px) clamp(40px, 7vw, 105px); border-right: 1px solid var(--line); }
.login-editorial h1 { margin: 24px 0 28px; font-size: clamp(60px, 6.3vw, 96px); line-height: .94; letter-spacing: -.068em; }
.login-editorial > p { max-width: 620px; margin: 0; color: var(--muted); font-size: 16px; line-height: 1.7; }
.login-preview-grid { width: min(590px, 100%); display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: 128px; gap: 11px; margin-top: 52px; transform: rotate(-1deg); }
.preview-note, .preview-image { overflow: hidden; border: 1px solid var(--line); border-radius: 14px; background: #fff; box-shadow: var(--shadow-sm); }
.preview-note { display: flex; flex-direction: column; justify-content: flex-end; padding: 18px; }
.preview-note > span { color: var(--muted); font-size: 8px; text-transform: uppercase; letter-spacing: .09em; }
.preview-note strong { margin: 7px 0 2px; font-size: 29px; letter-spacing: -.05em; }
.preview-note p { margin: 0; color: var(--muted); font-size: 8px; }
.preview-note.dark { color: #fff; background: var(--ink); }
.preview-note.dark > span, .preview-note.dark p { color: #aaa49d; }
.preview-image.tall { grid-row: span 2; }
.preview-image img { width: 100%; height: 100%; object-fit: cover; background: var(--sand); }
.login-form-section { display: grid; place-items: center; padding: 50px; background: #fff; }
.login-card { width: min(430px, 100%); }
.login-card-head { display: flex; align-items: center; gap: 10px; margin-bottom: 45px; color: var(--muted); font-size: 9px; font-weight: 750; letter-spacing: .12em; }
.login-card-head img { width: 36px; height: 36px; }
.login-card h2 { margin: 0; font-size: 35px; letter-spacing: -.045em; }
.login-card > p { margin: 12px 0 31px; color: var(--muted); font-size: 13px; line-height: 1.55; }
.login-card form > label { display: block; margin: 0 0 17px; font-size: 11px; font-weight: 650; }
.login-card input { width: 100%; height: 47px; margin-top: 8px; padding: 0 13px; border: 1px solid var(--line-strong); border-radius: 8px; outline: 0; background: #fff; font-size: 13px; }
.login-card input:focus { border-color: #918a82; box-shadow: 0 0 0 4px rgba(32,32,31,.05); }
.password-field { position: relative; }
.password-field input { padding-right: 65px; }
.password-field button { position: absolute; right: 8px; top: 15px; height: 33px; padding: 0 8px; border: 0; border-radius: 6px; color: var(--muted); background: transparent; font-size: 10px; }
.password-field button:hover { background: var(--sand); color: var(--ink); }
.form-error { margin: -4px 0 14px; padding: 10px 12px; border: 1px solid #f3c8ca; border-radius: 8px; color: var(--red-dark); background: var(--red-soft); font-size: 10px; line-height: 1.4; }
.login-submit { width: 100%; margin-top: 3px; }
.login-submit:disabled { opacity: .58; cursor: wait; transform: none; }
.demo-hint { display: grid; grid-template-columns: 24px 1fr; gap: 10px; margin-top: 19px; padding: 13px; border-radius: 9px; background: var(--sand); }
.demo-hint > i { width: 23px; height: 23px; display: grid; place-items: center; border-radius: 50%; color: var(--green); background: #fff; font-size: 9px; font-style: normal; font-weight: 800; }
.demo-hint span { color: var(--muted); font-size: 9px; line-height: 1.45; }
.demo-hint b { display: block; margin-bottom: 2px; color: var(--ink); }
.subtle-back { display: inline-block; margin-top: 25px; color: var(--muted); font-size: 10px; }
.subtle-back:hover { color: var(--ink); }

@media (max-width: 1120px) {
  .site-header { grid-template-columns: 190px 1fr 190px; }
  .landing-hero { grid-template-columns: 1fr; padding-top: 70px; }
  .hero-copy { max-width: 800px; }
  .hero-board { width: min(850px, 100%); min-height: 610px; }
  .workflow-grid { grid-template-columns: 1fr; }
  .workflow-card.large { min-height: 720px; grid-row: auto; }
  .login-main { grid-template-columns: 1fr 480px; }
  .login-editorial { padding: 70px 50px; }
}

@media (max-width: 840px) {
  .site-header { grid-template-columns: 1fr auto; padding: 0 18px; }
  .site-header nav, .site-actions > a:first-child { display: none; }
  .site-actions { grid-column: 2; }
  .site-logo img { width: 160px; }
  .landing-hero { display: block; min-height: auto; padding: 65px 20px 72px; }
  .landing-hero h1 { font-size: clamp(57px, 14vw, 84px); }
  .hero-copy > p { font-size: 16px; }
  .hero-board { margin-top: 58px; grid-template-columns: 1fr 1fr; grid-auto-rows: 145px; }
  .dashboard-pin { min-height: 290px; }
  .proof-strip { justify-content: flex-start; }
  .marketing-section { padding: 92px 20px; }
  .section-intro h2 { font-size: 48px; }
  .product-window { grid-template-columns: 1fr; min-height: 540px; }
  .product-window > aside { display: none; }
  .window-content { padding: 25px; }
  .window-stats { grid-template-columns: repeat(2, 1fr); }
  .window-panels { grid-template-columns: 1fr; }
  .window-panels article:nth-child(n+2) { display: none; }
  .workflow-card { min-height: 360px; padding: 25px; }
  .workflow-card.large { min-height: 640px; }
  .mini-masonry { left: 25px; right: 25px; bottom: 25px; }
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-grid article { min-height: auto; }
  .pricing-grid ul { min-height: auto; }
  .login-main { display: block; }
  .login-editorial { display: none; }
  .login-form-section { min-height: calc(100vh - 74px); padding: 35px 22px; }
}

@media (max-width: 520px) {
  .site-actions .black-button { min-height: 34px; padding: 0 10px; font-size: 10px; }
  .landing-hero h1 { letter-spacing: -.062em; }
  .hero-actions { align-items: stretch; flex-direction: column; gap: 16px; }
  .hero-actions .black-button { width: 100%; }
  .hero-microcopy { display: grid; gap: 8px; }
  .hero-board { min-height: 550px; grid-auto-rows: 125px; gap: 8px; }
  .dashboard-pin { min-height: 270px; padding: 12px; }
  .pin-greeting { margin: 13px 0 10px; }
  .pin-greeting strong { font-size: 13px; }
  .pin-metrics div { padding: 7px; }
  .pin-metrics b { font-size: 10px; }
  .pin-chart { margin-top: 7px; padding: 7px; }
  .product-pin > div { padding: 8px; }
  .note-pin, .ai-pin { padding: 12px; }
  .note-pin strong { font-size: 16px; }
  .ai-pin strong { font-size: 9px; }
  .section-intro h2 { font-size: 41px; }
  .section-intro p { font-size: 15px; }
  .workflow-card .number { margin-bottom: 45px; }
  .workflow-card h3 { font-size: 28px; }
  .workflow-card.large { min-height: 570px; }
  .mini-masonry { grid-auto-rows: 130px; }
  .principle-list article { grid-template-columns: 44px 1fr; gap: 15px; }
  .principle-list h3 { font-size: 20px; }
  .marketing-cta { min-height: 520px; }
  .marketing-cta h2 { font-size: 48px; }
  .site-footer { align-items: flex-start; flex-direction: column; }
  .login-header { padding: 0 18px; }
  .login-header span { display: none; }
  .login-card-head { margin-bottom: 34px; }
  .login-card h2 { font-size: 30px; }
}
