:root {
  --ink: #121212;
  --muted: #6f6d69;
  --soft-muted: #97938c;
  --line: #e8e5df;
  --paper: #ffffff;
  --canvas: #fbfaf8;
  --lavender: #f2f0ff;
  --peach: #fff2e5;
  --blue: #eaf5ff;
  --mint: #e9f8ef;
  --yellow: #fff8d8;
  --accent: #2383e2;
  --radius-lg: 24px;
  --radius-md: 16px;
  --shadow: 0 18px 45px rgba(23, 20, 15, 0.08);
  --max: 1180px;
}

* { 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", sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
img { display: block; max-width: 100%; }

.site-header {
  position: sticky;
  z-index: 10;
  top: 0;
  background: rgba(251, 250, 248, 0.9);
  border-bottom: 1px solid rgba(232, 229, 223, 0.85);
  backdrop-filter: blur(14px);
}
.nav-wrap {
  width: min(var(--max), calc(100% - 48px));
  min-height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  flex-shrink: 0;
  font-size: 19px;
  font-weight: 760;
  letter-spacing: -0.045em;
}
.brand-mark {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #fff;
}
.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.brand-name { white-space: nowrap; }
}
.nav-links {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  gap: 0;
  color: #4d4a46;
  font-size: 14px;
  white-space: nowrap;
}
.nav-links a { margin: 0 12px; padding: 7px 4px; }
.nav-links a:hover, .text-link:hover { color: var(--accent); }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.menu-button { display: none; }

.button {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 17px;
  border: 1px solid transparent;
  border-radius: 9px;
  color: #fff;
  background: var(--ink);
  font-size: 14px;
  font-weight: 650;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}
.button:hover { transform: translateY(-1px); box-shadow: 0 7px 14px rgba(0,0,0,.12); }
.button.secondary { color: var(--ink); background: #fff; border-color: var(--line); }
.button.blue { background: var(--accent); }
.button.text { min-height: 0; padding: 0; color: var(--ink); background: transparent; border: 0; }
.button.small { min-height: 36px; padding: 0 13px; font-size: 13px; }

.announcement {
  border-bottom: 1px solid var(--line);
  background: #fff;
  color: #57534d;
  text-align: center;
  font-size: 13px;
}
.announcement a { display: block; padding: 10px 20px; }
.announcement a:hover { color: var(--accent); }
.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 9px;
  border-radius: 999px;
  background: var(--mint);
  color: #2e6b45;
  font-size: 12px;
  font-weight: 700;
}
.pill.dark { color: #fff; background: var(--ink); }
.pill.lavender { color: #655ac0; background: #eae6ff; }
.pill.peach { color: #a25d26; background: #ffe8cc; }

.container { width: min(var(--max), calc(100% - 48px)); margin: 0 auto; }
.hero { position: relative; padding: 92px 0 76px; overflow: hidden; }
.hero::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  right: -230px;
  top: -165px;
  border-radius: 50%;
  background: radial-gradient(circle, #f0edff 0 28%, transparent 68%);
  pointer-events: none;
}
.hero-grid { position: relative; display: grid; grid-template-columns: .9fr 1.1fr; gap: 70px; align-items: center; }
.eyebrow {
  margin: 0 0 17px;
  color: var(--soft-muted);
  font-size: 11px;
  font-weight: 760;
  letter-spacing: .17em;
  text-transform: uppercase;
}
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { letter-spacing: -0.055em; line-height: 1.03; }
h1 { max-width: 650px; margin-bottom: 22px; font-size: clamp(46px, 6vw, 79px); font-weight: 760; }
h2 { margin-bottom: 15px; font-size: clamp(31px, 4vw, 48px); font-weight: 730; }
h3 { margin-bottom: 9px; font-size: 22px; font-weight: 710; }
.lede { max-width: 570px; color: #5f5c57; font-size: 19px; line-height: 1.55; }
.hero-copy .button-row { margin-top: 28px; }
.button-row { display: flex; flex-wrap: wrap; align-items: center; gap: 11px; }
.subtle-note { color: var(--soft-muted); font-size: 12px; }

.composer {
  position: relative;
  min-height: 455px;
  padding: 18px;
  border: 1px solid #dedbd4;
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow);
}
.composer::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 13px -13px -13px 13px;
  border-radius: inherit;
  background: var(--lavender);
  border: 1px solid #dedaf8;
}
.window-bar { display: flex; align-items: center; justify-content: space-between; margin-bottom: 15px; color: var(--soft-muted); font-size: 12px; }
.dots { display: flex; gap: 5px; }
.dots i { width: 7px; height: 7px; display: block; border-radius: 50%; background: #d9d5ce; }
.composer-panel { padding: 20px; border: 1px solid var(--line); border-radius: 14px; background: #fcfbfa; }
.composer-title { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-bottom: 22px; }
.composer-title strong { font-size: 16px; letter-spacing: -0.025em; }
.composer-title span { color: var(--soft-muted); font-size: 12px; }
.prompt-box { min-height: 91px; padding: 15px; border: 1px solid #dcd9d2; border-radius: 12px; background: #fff; }
.prompt-box label { display: block; margin-bottom: 7px; color: var(--soft-muted); font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.prompt-box input { width: 100%; padding: 0; border: 0; outline: 0; color: var(--ink); background: transparent; font-size: 16px; }
.prompt-box input::placeholder { color: #aaa6a0; }
.composer-tools { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-top: 14px; }
.tool-set { display: flex; flex-wrap: wrap; gap: 7px; }
.tool-chip { padding: 6px 9px; border: 1px solid var(--line); border-radius: 7px; color: #6f6b65; background: #fff; font-size: 11px; }
.upload-button { cursor: pointer; }
.upload-button input { position: absolute; width: 1px; height: 1px; opacity: 0; }
.preview-strip { display: grid; grid-template-columns: 1.15fr .85fr .85fr; gap: 9px; margin-top: 20px; }
.preview-card { position: relative; min-height: 137px; overflow: hidden; padding: 11px; border-radius: 12px; }
.preview-card strong { position: relative; z-index: 1; display: block; margin-top: 75px; font-size: 12px; letter-spacing: -.02em; }
.preview-card small { position: relative; z-index: 1; color: #6c6861; font-size: 10px; }
.preview-icon { position: absolute; width: 48px; height: 48px; left: 13px; top: 14px; padding: 8px; border: 1px solid rgba(18,18,18,.14); border-radius: 11px; background: rgba(255,255,255,.48); }
.preview-card:first-child { background: var(--peach); }
.preview-card:nth-child(2) { background: var(--blue); }
.preview-card:nth-child(3) { background: var(--mint); }
.status-line { min-height: 19px; margin: 12px 2px 0; color: var(--soft-muted); font-size: 11px; }
.hero-doodle { position: absolute; z-index: -1; width: 180px; right: 3%; bottom: -38px; transform: rotate(5deg); opacity: .95; }

.signal-row { padding: 22px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: #fff; }
.signal-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.signal { display: flex; gap: 10px; align-items: flex-start; color: #5c5852; font-size: 13px; }
.signal-icon { flex: 0 0 32px; width: 32px; height: 32px; object-fit: contain; }
.signal strong { display: block; margin-bottom: 2px; color: var(--ink); font-size: 14px; }

.section { padding: 104px 0; }
.section-head { max-width: 645px; margin-bottom: 36px; }
.section-head p { color: var(--muted); font-size: 17px; }
.section-head.center { margin-right: auto; margin-left: auto; text-align: center; }
.section-head.center p { margin-right: auto; margin-left: auto; }
.cards-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.use-card { min-height: 350px; display: flex; flex-direction: column; padding: 25px; border: 1px solid var(--line); border-radius: var(--radius-md); transition: transform 180ms ease, box-shadow 180ms ease; }
.use-card:hover { transform: translateY(-3px); box-shadow: 0 14px 30px rgba(0,0,0,.06); }
.use-card.lavender { background: var(--lavender); }
.use-card.peach { background: var(--peach); }
.use-card.blue { background: var(--blue); }
.card-meta { display: flex; align-items: center; justify-content: space-between; gap: 8px; margin-bottom: 25px; }
.card-arrow { width: 29px; height: 29px; object-fit: contain; opacity: .72; }
.use-card p { color: #68635d; font-size: 14px; }
.doodle { width: 165px; height: 118px; margin: auto auto -4px; object-fit: contain; object-position: center; }
.card-link { display: inline-flex; align-items: center; gap: 6px; margin-top: 13px; color: #4e4a45; font-size: 13px; font-weight: 700; }
.card-link::after { content: "↗"; font-size: 16px; }

.split { display: grid; grid-template-columns: .85fr 1.15fr; gap: 68px; align-items: center; }
.split.reverse { grid-template-columns: 1.15fr .85fr; }
.split.reverse .split-copy { order: 2; }
.split.reverse .workflow-board { order: 1; }
.workflow-board { padding: 19px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: #fff; box-shadow: var(--shadow); }
.board-top { display: flex; align-items: center; justify-content: space-between; padding-bottom: 15px; border-bottom: 1px solid var(--line); color: var(--soft-muted); font-size: 12px; }
.board-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding-top: 16px; }
.board-step { min-height: 165px; padding: 16px; border-radius: 13px; background: var(--canvas); }
.board-step:nth-child(2) { background: var(--lavender); }
.board-step:nth-child(3) { background: var(--peach); }
.board-step:nth-child(4) { background: var(--blue); }
.step-num { display: grid; place-items: center; width: 27px; height: 27px; margin-bottom: 35px; border-radius: 8px; color: #fff; background: var(--ink); font-size: 12px; font-weight: 700; }
.board-step h3 { margin-bottom: 5px; font-size: 17px; }
.board-step p { margin-bottom: 0; color: #716d66; font-size: 12px; line-height: 1.4; }
.check-list { margin: 24px 0 0; padding: 0; list-style: none; }
.check-list li { display: flex; gap: 9px; margin: 11px 0; color: #5e5a54; font-size: 14px; }
.check-list li::before { content: "✓"; color: #328b57; font-weight: 800; }

.format-section { background: #fff; }
.format-grid { display: grid; grid-template-columns: 1.15fr .85fr .85fr; gap: 15px; }
.format-tile { position: relative; min-height: 220px; overflow: hidden; padding: 23px; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--canvas); }
.format-tile.tall { grid-row: span 2; min-height: 455px; background: var(--ink); color: #fff; }
.format-tile h3 { position: relative; z-index: 1; font-size: 20px; }
.format-tile p { position: relative; z-index: 1; max-width: 220px; color: #74706a; font-size: 13px; }
.format-tile.tall p { color: #c3c0ba; }
.format-icon-wrap { position: absolute; right: 22px; bottom: 19px; width: 88px; height: 88px; display: grid; place-items: center; border: 1px solid rgba(18,18,18,.12); border-radius: 17px; background: rgba(255,255,255,.55); box-shadow: 8px 8px 0 rgba(18,18,18,.06); transform: rotate(-4deg); }
.format-icon { width: 52px; height: 52px; object-fit: contain; }
.format-tile.tall .format-icon-wrap { right: 42px; bottom: 40px; width: 144px; height: 144px; border-color: rgba(255,255,255,.22); background: rgba(255,255,255,.2); box-shadow: 11px 11px 0 rgba(255,255,255,.1); }
.format-tile.tall .format-icon { width: 84px; height: 84px; filter: brightness(0) invert(1); }
.format-tile.blue { background: var(--blue); }
.format-tile.mint { background: var(--mint); }
.format-tile.yellow { background: var(--yellow); }

.compare-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius-md); background: #fff; }
.compare { width: 100%; min-width: 690px; border-collapse: collapse; text-align: left; }
.compare th, .compare td { padding: 16px 18px; border-bottom: 1px solid var(--line); vertical-align: top; }
.compare th { color: var(--soft-muted); font-size: 11px; font-weight: 750; letter-spacing: .12em; text-transform: uppercase; }
.compare td { color: #625e57; font-size: 14px; }
.compare tr:last-child td { border-bottom: 0; }
.compare td:first-child { color: var(--ink); font-weight: 700; }
.compare .tiny-pill { display: inline-flex; margin-top: 5px; padding: 3px 7px; border-radius: 5px; background: var(--canvas); color: #7b756d; font-size: 11px; }

.learn-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.learn-card { display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; min-height: 160px; padding: 24px; border: 1px solid var(--line); border-radius: var(--radius-md); background: #fff; }
.learn-card p { margin-bottom: 10px; color: var(--muted); font-size: 14px; }
.learn-card .icon { width: 54px; height: 54px; object-fit: contain; }
.learn-card .card-link { margin-top: 0; }

.faq { max-width: 820px; margin: 0 auto; border-top: 1px solid var(--line); }
details { border-bottom: 1px solid var(--line); }
summary { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 20px 0; cursor: pointer; list-style: none; font-weight: 680; }
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; color: var(--soft-muted); font-size: 22px; font-weight: 400; }
details[open] summary::after { content: "–"; }
details p { max-width: 720px; margin: -5px 35px 20px 0; color: var(--muted); font-size: 14px; }

.cta-band { padding: 72px 0; background: var(--ink); color: #fff; }
.cta-band .split { grid-template-columns: 1fr auto; gap: 40px; }
.cta-band h2 { max-width: 650px; margin-bottom: 12px; }
.cta-band p { max-width: 570px; margin-bottom: 0; color: #bebbb4; font-size: 16px; }
.cta-band .button { color: var(--ink); background: #fff; }

.site-footer { padding: 53px 0 28px; border-top: 1px solid var(--line); background: #fff; }
.footer-grid { display: grid; grid-template-columns: 1.8fr repeat(3, 1fr); gap: 35px; }
.footer-brand p { max-width: 250px; color: var(--muted); font-size: 13px; }
.footer-col strong { display: block; margin-bottom: 12px; font-size: 12px; }
.footer-col a { display: block; margin: 7px 0; color: var(--muted); font-size: 13px; }
.footer-col a:hover { color: var(--accent); }
.footer-bottom { display: flex; justify-content: space-between; gap: 16px; margin-top: 46px; padding-top: 18px; border-top: 1px solid var(--line); color: var(--soft-muted); font-size: 12px; }

/* Inner page styles */
.inner-hero { padding: 70px 0 60px; border-bottom: 1px solid var(--line); background: #fff; }
.crumbs { margin-bottom: 42px; color: var(--soft-muted); font-size: 12px; }
.crumbs a:hover { color: var(--accent); }
.inner-hero-grid { display: grid; grid-template-columns: 1fr .72fr; gap: 65px; align-items: end; }
.inner-hero h1 { max-width: 700px; margin-bottom: 17px; font-size: clamp(45px, 6vw, 72px); }
.inner-hero .lede { max-width: 660px; }
.hero-note { padding: 21px; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--canvas); }
.hero-note-visual { display: flex; align-items: flex-end; justify-content: space-between; min-height: 128px; margin: -2px -2px 20px; padding: 14px 16px 8px; overflow: hidden; border: 1px solid var(--line); border-radius: 13px; background: #fff; }
.hero-note-visual .hero-note-icon { width: 64px; height: 64px; padding: 12px; border: 1px solid rgba(18,18,18,.12); border-radius: 14px; background: var(--lavender); }
.hero-note-visual .hero-note-doodle { width: 116px; height: 106px; object-fit: contain; object-position: center bottom; }
.utility-visual { display: flex; align-items: center; gap: 18px; margin: 25px 0 27px; padding: 17px 19px; border: 1px solid var(--line); border-radius: 14px; background: var(--canvas); }
.utility-visual img { width: 58px; height: 58px; padding: 11px; border: 1px solid rgba(18,18,18,.12); border-radius: 14px; background: #fff; }
.utility-visual .utility-doodle { width: 104px; height: 78px; padding: 0; border: 0; background: transparent; object-fit: contain; }
.hero-note strong { display: block; margin-bottom: 13px; font-size: 14px; }
.hero-note ul { margin: 0; padding: 0; list-style: none; }
.hero-note li { display: flex; gap: 8px; margin: 10px 0; color: var(--muted); font-size: 13px; }
.hero-note li::before { content: "↳"; color: var(--accent); font-weight: 800; }
.prose-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 17px; }
.info-card { padding: 25px; border: 1px solid var(--line); border-radius: var(--radius-md); background: #fff; }
.info-card .icon { width: 56px !important; height: 56px !important; padding: 9px; border: 1px solid rgba(18,18,18,.1); border-radius: 13px; background: rgba(255,255,255,.52); }
.info-card.tint-lavender { background: var(--lavender); }
.info-card.tint-peach { background: var(--peach); }
.info-card.tint-blue { background: var(--blue); }
.info-card.tint-mint { background: var(--mint); }
.info-card p, .info-card li { color: var(--muted); font-size: 14px; }
.info-card ul { margin: 13px 0 0; padding-left: 20px; }
.wide-card { grid-column: 1 / -1; }
.process { counter-reset: process; display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; }
.process-card { position: relative; min-height: 220px; padding: 23px; border: 1px solid var(--line); border-radius: var(--radius-md); background: #fff; }
.process-card::before { counter-increment: process; content: "0" counter(process); display: grid; place-items: center; width: 34px; height: 34px; margin-bottom: 45px; border-radius: 10px; color: #fff; background: var(--ink); font-size: 12px; font-weight: 720; }
.process-card p { color: var(--muted); font-size: 14px; }
.article { max-width: 850px; }
.article h2 { margin-top: 58px; font-size: 33px; }
.article h3 { margin-top: 30px; }
.article p, .article li { color: #5e5a54; font-size: 16px; }
.article ol, .article ul { padding-left: 22px; }
.article li { margin: 9px 0; }
.callout { margin: 27px 0; padding: 20px 22px; border-left: 4px solid var(--accent); border-radius: 0 12px 12px 0; background: var(--blue); color: #4b5968; }
.table-card { overflow-x: auto; margin-top: 28px; border: 1px solid var(--line); border-radius: var(--radius-md); background: #fff; }

/* Caption landing page */
.caption-hero { background: #fffdfb; }
.caption-upload-card { padding: 18px; border: 1px solid #dedbd4; border-radius: var(--radius-lg); background: #fff; box-shadow: var(--shadow); }
.caption-upload-card .window-bar { margin-bottom: 13px; }
.caption-dropzone { display: flex; min-height: 238px; flex-direction: column; align-items: center; justify-content: center; gap: 10px; padding: 25px; border: 1px dashed #b9b4ab; border-radius: 15px; background: var(--canvas); text-align: center; cursor: pointer; }
.caption-dropzone:hover, .caption-dropzone:focus-within { border-color: var(--accent); background: var(--blue); }
.caption-dropzone img { width: 64px; height: 64px; padding: 12px; border: 1px solid rgba(18,18,18,.12); border-radius: 15px; background: var(--lavender); }
.caption-dropzone strong { font-size: 15px; }
.caption-dropzone span { color: var(--muted); font-size: 12px; }
.caption-dropzone input { position: absolute; width: 1px; height: 1px; overflow: hidden; opacity: 0; }
.caption-status { min-height: 19px; margin: 12px 2px 14px; color: var(--soft-muted); font-size: 11px; }
.caption-upload-card .button { width: 100%; }
.caption-direct-link { display: block; margin-top: 12px; color: var(--accent); font-size: 12px; font-weight: 700; text-align: center; }
.caption-direct-link:hover { text-decoration: underline; }
.caption-disclosure { margin: 13px 1px 0; color: var(--soft-muted); font-size: 11px; line-height: 1.45; }
.caption-process { grid-template-columns: repeat(4, 1fr); }
.caption-process .process-card { min-height: 250px; }
.caption-process .process-card p { margin-bottom: 0; }
.keyword-ribbon { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; }
.keyword-ribbon span { padding: 7px 10px; border: 1px solid var(--line); border-radius: 999px; color: #716d66; background: #fff; font-size: 12px; }
.caption-cta-note { display: flex; align-items: center; gap: 14px; max-width: 500px; margin-top: 25px; color: #5f5b55; font-size: 13px; }
.caption-cta-note img { width: 43px; height: 43px; padding: 8px; border-radius: 11px; background: var(--yellow); }

@media (max-width: 900px) {
  .nav-links { display: none; position: absolute; top: 72px; right: 24px; left: 24px; padding: 15px; border: 1px solid var(--line); border-radius: 14px; background: #fff; box-shadow: var(--shadow); }
  .nav-links.open { display: grid; gap: 4px; }
  .nav-links a { margin: 0; padding: 12px 9px; border-bottom: 1px solid var(--line); }
  .nav-links a:last-child { border-bottom: 0; }
  .menu-button { display: inline-flex; min-width: 42px; padding: 0; color: var(--ink); background: #fff; border-color: var(--line); }
  .nav-actions .button.secondary { display: none; }
  .hero-grid, .inner-hero-grid, .split, .split.reverse { grid-template-columns: 1fr; gap: 45px; }
  .caption-process { grid-template-columns: 1fr 1fr; }
  .split.reverse .split-copy, .split.reverse .workflow-board { order: initial; }
  .hero-copy { max-width: 750px; }
  .hero-doodle { right: 1%; bottom: -30px; }
  .cta-band .split { grid-template-columns: 1fr; gap: 25px; }
  .inner-hero-grid { align-items: start; }
}
@media (max-width: 680px) {
  .nav-wrap, .container { width: min(var(--max), calc(100% - 32px)); }
  .nav-wrap { min-height: 64px; }
  .nav-links { top: 64px; right: 16px; left: 16px; }
  .nav-actions .button { display: none; }
  .nav-actions .menu-button { display: inline-flex; }
  .hero { padding: 65px 0 55px; }
  h1, .inner-hero h1 { font-size: clamp(42px, 13vw, 61px); }
  .lede { font-size: 17px; }
  .composer { min-height: 0; padding: 11px; }
  .composer-panel { padding: 15px; }
  .composer-tools { align-items: flex-start; flex-direction: column; }
  .signal-list, .cards-3, .format-grid, .learn-grid, .prose-grid, .process, .caption-process { grid-template-columns: 1fr; }
  .section { padding: 72px 0; }
  .use-card { min-height: 300px; }
  .format-tile.tall { grid-row: auto; min-height: 300px; }
  .format-tile.tall .format-icon-wrap { width: 100px; height: 100px; right: 30px; bottom: 24px; }
  .format-tile.tall .format-icon { width: 60px; height: 60px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 25px 18px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; margin-top: 30px; }
  .hero-note { max-width: 520px; }
  .hero-note-visual { min-height: 112px; }
  .hero-note-visual .hero-note-icon { width: 56px; height: 56px; padding: 10px; }
  .hero-note-visual .hero-note-doodle { width: 100px; height: 92px; }
  .inner-hero { padding: 50px 0 48px; }
  .crumbs { margin-bottom: 30px; }
}
