@font-face { font-family: "Poppins"; src: url("/assets/fonts/Poppins-Regular.ttf") format("truetype"); font-style: normal; font-weight: 400; font-display: swap; }
@font-face { font-family: "Poppins"; src: url("/assets/fonts/Poppins-Medium.ttf") format("truetype"); font-style: normal; font-weight: 500; font-display: swap; }
@font-face { font-family: "Poppins"; src: url("/assets/fonts/Poppins-SemiBold.ttf") format("truetype"); font-style: normal; font-weight: 600; font-display: swap; }
@font-face { font-family: "Poppins"; src: url("/assets/fonts/Poppins-Bold.ttf") format("truetype"); font-style: normal; font-weight: 700; font-display: swap; }
@font-face { font-family: "Poppins"; src: url("/assets/fonts/Poppins-ExtraBold.ttf") format("truetype"); font-style: normal; font-weight: 800; font-display: swap; }

:root {
  --canvas: #f7f7ff;
  --canvas-deep: #f0f0f8;
  --surface: #ffffff;
  --surface-soft: #f2f3f5;
  --ink: #202124;
  --ink-2: #292a2d;
  --muted: #777882;
  --line: #e7e7ef;
  --line-strong: #d8d9e2;
  --yellow: #f3bc35;
  --yellow-soft: #fff1c9;
  --cyan: #18d8d0;
  --cyan-soft: #dcfbf8;
  --pink: #ff496d;
  --pink-soft: #ffe1e9;
  --blue: #39bdf7;
  --blue-soft: #e2f4ff;
  --mint: #55d891;
  --mint-soft: #e3f8ec;
  --lilac: #b38cff;
  --lilac-soft: #efe8ff;
  --shadow: 0 18px 40px rgb(32 33 36 / 9%);
  --shadow-small: 0 8px 20px rgb(32 33 36 / 8%);
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 112px; }
body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--canvas);
  color: var(--ink);
  font-family: "Poppins", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
}
body.menu-open { overflow: hidden; }
img, video, iframe { display: block; max-width: 100%; }
a { color: inherit; text-underline-offset: 4px; }
button, input { font: inherit; letter-spacing: 0; }
button, a { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 3px solid var(--pink); outline-offset: 4px; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { line-height: 1.08; letter-spacing: 0; }
h1 { margin-bottom: 24px; font-size: 66px; font-weight: 800; }
h2 { margin-bottom: 16px; font-size: 40px; font-weight: 800; }
h3 { margin-bottom: 10px; font-size: 20px; font-weight: 800; }
p { margin-bottom: 18px; }
.container { width: min(calc(100% - 48px), var(--container)); margin-inline: auto; }
.section { padding: 96px 0; }
.section-soft { background: var(--canvas-deep); }
.section-ink { background: var(--ink); color: #fff; }
.section-ink p { color: #c9c9cf; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; z-index: 300; top: 12px; left: 12px; padding: 12px 18px; transform: translateY(-160%); border-radius: 14px; background: var(--ink); color: #fff; font-weight: 700; }
.skip-link:focus { transform: translateY(0); }

.site-header { position: sticky; z-index: 100; top: 0; background: rgb(247 247 255 / 94%); backdrop-filter: blur(18px); }
.site-header.is-scrolled { box-shadow: var(--shadow-small); }
.header-inner { display: flex; min-height: 94px; align-items: center; gap: 28px; }
.brand { display: inline-flex; flex: 0 0 auto; align-items: center; gap: 10px; color: var(--ink); font-size: 26px; font-weight: 800; text-decoration: none; }
.brand img { width: 38px; height: 38px; object-fit: contain; }
.primary-nav { display: flex; flex: 1; align-items: center; justify-content: flex-end; gap: 20px; }
.primary-nav-links { display: flex; align-items: center; gap: 6px; }
.primary-nav-links a { padding: 11px 15px; border-radius: 14px; color: var(--muted); font-size: 14px; font-weight: 700; text-decoration: none; }
.primary-nav-links a:hover, .primary-nav-links a[aria-current="page"] { background: var(--surface); color: var(--ink); box-shadow: var(--shadow-small); }
.menu-button { display: none; width: 54px; height: 54px; align-items: center; justify-content: center; border: 0; border-radius: 18px; background: transparent; color: var(--ink); box-shadow: var(--shadow-small); cursor: pointer; }
.menu-button-lines { display: grid; width: 22px; gap: 5px; }
.menu-button-lines i { display: block; height: 3px; border-radius: 4px; background: currentColor; transition: transform 180ms ease, opacity 180ms ease; }
.header-app-button { display: none; min-height: 48px; align-items: center; padding: 12px 16px; border-radius: 16px; background: var(--ink); color: #fff; font-size: 12px; font-weight: 800; text-decoration: none; }

.button { display: inline-flex; min-height: 54px; align-items: center; justify-content: center; gap: 9px; padding: 14px 22px; border: 2px solid var(--ink); border-radius: 18px; background: var(--ink); color: #fff; font-size: 14px; font-weight: 800; line-height: 1.15; text-align: center; text-decoration: none; transition: transform 180ms ease, box-shadow 180ms ease; }
.button:hover { transform: translateY(-2px); box-shadow: var(--shadow-small); }
.button-secondary { border-color: var(--line-strong); background: var(--surface); color: var(--ink); }
.button-quiet { border-color: rgb(255 255 255 / 26%); background: transparent; color: #fff; }
.button-row { display: flex; flex-wrap: wrap; gap: 12px; }
.text-link { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 800; text-decoration: none; }
.text-link span { transition: transform 180ms ease; }
.text-link:hover span { transform: translateX(4px); }
.eyebrow { margin-bottom: 12px; color: var(--pink); font-size: 12px; font-weight: 800; text-transform: uppercase; }
.section-heading { max-width: 760px; margin-bottom: 40px; }
.section-heading p:last-child { max-width: 680px; color: var(--muted); font-size: 17px; }
.section-heading-center { margin-inline: auto; text-align: center; }
.section-title-row, .section-heading-row { display: flex; align-items: end; justify-content: space-between; gap: 36px; margin-bottom: 42px; }
.section-title-row .section-heading, .section-heading-row .section-heading { margin-bottom: 0; }
.evidence-note { flex: 0 0 auto; margin: 0; color: var(--muted); font-size: 12px; font-weight: 700; text-align: right; }

.app-hero { padding: 34px 0 50px; }
.hero-shell { position: relative; display: grid; min-height: 550px; grid-template-columns: minmax(0, 1fr) 490px; overflow: hidden; align-items: center; border-radius: 30px; background: var(--surface); box-shadow: var(--shadow); }
.hero-shell::before { position: absolute; right: 0; bottom: 0; width: 42%; height: 100%; background: var(--canvas-deep); content: ""; }
.hero-copy { position: relative; z-index: 2; padding: 66px 30px 66px 62px; }
.hero-copy > p:not(.eyebrow) { max-width: 650px; color: var(--muted); font-size: 19px; }
.hero-copy .button-row { margin-top: 30px; }
.hero-proof { display: flex; flex-direction: column; margin-top: 44px; padding-top: 20px; border-top: 1px solid var(--line); color: var(--muted); font-size: 12px; }
.hero-proof strong { color: var(--ink); font-size: 14px; }
.hero-stage { position: relative; z-index: 1; width: 100%; height: 100%; align-self: stretch; object-fit: cover; object-position: center top; }

.quick-launch { padding: 10px 0 54px; }
.quick-launch h2 { margin-bottom: 20px; font-size: 26px; }
.quick-launch ul { display: grid; grid-template-columns: repeat(5, 1fr); margin: 0; padding: 0; gap: 14px; list-style: none; }
.quick-launch a { display: flex; min-height: 116px; align-items: center; gap: 16px; padding: 16px; border-radius: 24px; background: var(--surface); box-shadow: var(--shadow-small); text-decoration: none; }
.quick-launch a:hover { transform: translateY(-2px); }
.quick-icon { display: grid; width: 64px; height: 64px; flex: 0 0 auto; place-items: center; border-radius: 50%; color: var(--ink); font-size: 12px; font-weight: 800; }
.quick-icon-yellow { background: var(--yellow-soft); }
.quick-icon-mint { background: var(--mint-soft); }
.quick-icon-blue { background: var(--blue-soft); }
.quick-icon-pink { background: var(--pink-soft); }
.quick-icon-lilac { background: var(--lilac-soft); }
.quick-launch strong { font-size: 14px; }

.command-section { background: var(--canvas-deep); }
.command-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.command-card { position: relative; display: grid; min-height: 175px; grid-template-columns: 54px 1fr auto; overflow: hidden; align-items: center; gap: 20px; padding: 28px; border-radius: 26px; background: rgba(1, 0, 3, 0.91); color: #fff; text-decoration: none; }
.command-card::after { position: absolute; right: -142px; bottom: 48px; width: 150px; height: 150px; border: 80px solid currentColor; border-radius: 50%; content: ""; opacity: 0.12; }
.command-card > span { display: grid; width: 48px; height: 48px; place-items: center; border: 2px solid currentColor; border-radius: 50%; font-size: 12px; font-weight: 800; }
.command-card h3 { margin-bottom: 7px; color: #fff; }
.command-card p { max-width: 430px; margin-bottom: 0; color: #bdbdc5; font-size: 13px; }
.command-card > i { font-style: normal; font-weight: 800; }
.command-card-yellow { color: var(--yellow); }
.command-card-cyan { color: var(--cyan); }
.command-card-pink { color: var(--pink); }
.command-card-blue { color: var(--blue); }
.command-card-mint { color: var(--mint); }
.command-card-lilac { color: var(--lilac); }
.command-card h3, .command-card p { color: inherit; }
.command-card h3 { color: #fff; }
.command-card p { color: #bdbdc5; }

.product-section { background: var(--canvas); }
.screenshot-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; }
.product-shot { margin: 0; overflow: hidden; border-radius: 28px; background: var(--surface); box-shadow: var(--shadow); }
.product-shot-bar { display: flex; height: 58px; align-items: center; padding: 0 22px; gap: 8px; background: var(--ink); color: #fff; }
.product-shot-bar span { margin-right: auto; font-size: 12px; font-weight: 800; }
.product-shot-bar i { width: 9px; height: 9px; border-radius: 50%; background: var(--line-strong); }
.product-shot-yellow .product-shot-bar i:first-of-type { background: var(--yellow); }
.product-shot-cyan .product-shot-bar i:first-of-type { background: var(--cyan); }
.product-shot-media { display: grid; height: 590px; place-items: start center; overflow: hidden; padding: 24px 24px 0; background: var(--canvas-deep); }
.product-shot-media img { width: min(100%, 330px); height: auto; border-radius: 20px 20px 0 0; box-shadow: 0 24px 50px rgb(32 33 36 / 18%); }
.product-shot figcaption { display: flex; justify-content: space-between; gap: 24px; padding: 24px; border-top: 1px solid var(--line); }
.product-shot figcaption strong { font-size: 16px; }
.product-shot figcaption span { max-width: 330px; color: var(--muted); font-size: 12px; text-align: right; }

.workflow-section { background: var(--surface); }
.workflow-list { display: grid; grid-template-columns: repeat(3, 1fr); margin: 0; padding: 0; gap: 14px; list-style: none; }
.workflow-list li { min-height: 230px; padding: 26px; border-radius: 24px; background: var(--canvas); }
.workflow-list li:nth-child(1) span { color: #a87800; background: var(--yellow-soft); }
.workflow-list li:nth-child(2) span { color: #007b77; background: var(--cyan-soft); }
.workflow-list li:nth-child(3) span { color: #c81f45; background: var(--pink-soft); }
.workflow-list li:nth-child(4) span { color: #147dac; background: var(--blue-soft); }
.workflow-list li:nth-child(5) span { color: #168b4e; background: var(--mint-soft); }
.workflow-list li:nth-child(6) span { color: #7654c2; background: var(--lilac-soft); }
.workflow-list span { display: grid; width: 42px; height: 42px; place-items: center; margin-bottom: 44px; border-radius: 50%; font-size: 11px; font-weight: 800; }
.workflow-list p { margin-bottom: 0; color: var(--muted); font-size: 13px; }

.discovery-section { background: var(--canvas-deep); }
.discovery-panel { display: grid; grid-template-columns: 0.9fr 1.1fr; overflow: hidden; border-radius: 30px; background: var(--surface); box-shadow: var(--shadow); }
.discovery-panel > div { padding: 52px; }
.discovery-panel > div > p:not(.eyebrow) { color: var(--muted); }
.discovery-panel ul { display: grid; grid-template-columns: repeat(2, 1fr); margin: 0; padding: 0; border-left: 1px solid var(--line); list-style: none; }
.discovery-panel li { display: flex; align-items: center; gap: 14px; padding: 18px 22px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); font-size: 13px; font-weight: 700; }
.discovery-panel li span { color: var(--muted); font-size: 10px; }

.tutorial-preview { background: var(--canvas); }
.tutorial-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.tutorial-card { overflow: hidden; border-radius: 24px; background: var(--surface); box-shadow: var(--shadow-small); }
.tutorial-card[hidden] { display: none; }
.tutorial-card-media { position: relative; display: block; overflow: hidden; height: 240px; background: var(--canvas-deep); }
.tutorial-card-media img { width: 100%; height: 100%; object-fit: cover; object-position: center 8%; transition: transform 220ms ease; }
.tutorial-card:hover .tutorial-card-media img { transform: scale(1.025); }
.tutorial-duration { position: absolute; right: 12px; bottom: 12px; padding: 7px 10px; border-radius: 12px; background: var(--ink); color: #fff; font-size: 10px; font-weight: 800; }
.tutorial-card-copy { display: flex; min-height: 250px; flex-direction: column; align-items: flex-start; padding: 26px; }
.tutorial-card-copy h3 a { text-decoration: none; }
.tutorial-card-copy p:not(.eyebrow) { color: var(--muted); font-size: 13px; }
.tutorial-card-copy .text-link { margin-top: auto; font-size: 12px; }

.faq-section { background: var(--surface); }
.faq-layout { display: grid; grid-template-columns: 0.72fr 1.28fr; align-items: start; gap: 70px; }
.faq-list { border-top: 2px solid var(--ink); }
.faq-list details { border-bottom: 1px solid var(--line-strong); }
.faq-list summary { position: relative; padding: 24px 54px 24px 0; cursor: pointer; font-weight: 800; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { position: absolute; top: 20px; right: 0; display: grid; width: 34px; height: 34px; place-items: center; border-radius: 12px; background: var(--canvas); content: "+"; font-size: 20px; }
.faq-list details[open] summary::after { background: var(--ink); color: #fff; content: "−"; }
.faq-list details p { max-width: 680px; padding-right: 54px; color: var(--muted); }

.final-cta { padding: 28px 0 70px; background: var(--canvas); }
.final-cta-panel, .final-cta-inner { display: flex; min-height: 270px; align-items: end; justify-content: space-between; gap: 50px; padding: 48px; border-radius: 30px; background: var(--ink); color: #fff; }
.final-cta-panel .eyebrow, .final-cta-inner .eyebrow { color: var(--yellow); }
.final-cta-panel p:not(.eyebrow), .final-cta-inner p:not(.eyebrow) { margin-bottom: 0; color: #bdbdc5; }
.final-cta-panel .button-secondary, .final-cta-inner .button-secondary { border-color: #fff; background: #fff; color: var(--ink); }

.page-hero, .article-hero { padding: 34px 0 64px; }
.page-hero-panel, .article-hero-panel { padding: 64px; border-radius: 30px; background: var(--ink); color: #fff; }
.page-hero-panel h1, .article-hero-panel h1 { max-width: 800px; }
.app-hero h1,
.page-hero h1,
.article-hero h1,
.mobile-app-hero h1 {
  font-size: 30px;
}
.page-hero-panel > p:not(.eyebrow), .article-hero-panel > p:not(.eyebrow, .legal-date) { max-width: 760px; color: #bdbdc5; font-size: 18px; }
.page-hero-panel .eyebrow, .article-hero-panel .eyebrow { color: var(--yellow); }
.page-hero-panel .button-row { margin-top: 30px; }
.page-hero-panel .button-secondary { border-color: #fff; background: #fff; color: var(--ink); }
.section-nav { position: sticky; z-index: 80; top: 94px; border-bottom: 1px solid var(--line); background: rgb(247 247 255 / 95%); backdrop-filter: blur(16px); }
.section-nav .container { display: flex; gap: 8px; overflow-x: auto; padding-block: 12px; }
.section-nav a { flex: 0 0 auto; padding: 10px 14px; border-radius: 14px; background: var(--surface); color: var(--muted); font-size: 11px; font-weight: 800; text-decoration: none; }

.feature-command { background: var(--canvas); }
.feature-command-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; }
.feature-command-card { display: flex; min-height: 310px; flex-direction: column; align-items: start; padding: 28px; border-radius: 26px; background: var(--ink); color: #fff; text-decoration: none; }
.feature-command-card > span { display: grid; width: 44px; height: 44px; place-items: center; margin-bottom: 48px; border: 2px solid currentColor; border-radius: 50%; font-size: 11px; font-weight: 800; }
.feature-command-card h2 { font-size: 25px; }
.feature-command-card p { color: #bdbdc5; font-size: 13px; }
.feature-command-card i { margin-top: auto; align-self: flex-end; font-style: normal; font-weight: 800; }
.feature-command-yellow { color: var(--yellow); }
.feature-command-cyan { color: var(--cyan); }
.feature-command-pink { color: var(--pink); }
.feature-command-blue { color: var(--blue); }
.feature-command-mint { color: var(--mint); }
.feature-command-lilac { color: var(--lilac); }
.feature-command-card h2 { color: #fff; }
.feature-list-section { background: var(--canvas-deep); }
.feature-list { display: grid; gap: 16px; }
.feature-row { position: relative; display: grid; min-height: 280px; grid-template-columns: 80px 1.25fr 0.9fr auto; align-items: center; gap: 32px; padding: 34px; overflow: hidden; border-radius: 28px; background: var(--surface); box-shadow: var(--shadow-small); }
.feature-row::before { position: absolute; inset: 0 auto 0 0; width: 7px; background: currentColor; content: ""; }
.feature-row-yellow { color: var(--yellow); }
.feature-row-cyan { color: var(--cyan); }
.feature-row-pink { color: var(--pink); }
.feature-row-blue { color: var(--blue); }
.feature-row-mint { color: var(--mint); }
.feature-row-lilac { color: var(--lilac); }
.feature-row-number { display: grid; width: 62px; height: 62px; place-items: center; border: 2px solid currentColor; border-radius: 50%; color: var(--ink); font-size: 13px; font-weight: 800; }
.feature-row-copy .eyebrow { color: currentColor; }
.feature-row-copy h2 { color: var(--ink); font-size: 29px; }
.feature-row-copy p { margin-bottom: 0; color: var(--muted); font-size: 14px; }
.feature-row ul { margin: 0; padding: 0; list-style: none; }
.feature-row li { position: relative; padding: 6px 0 6px 21px; color: var(--ink); font-size: 12px; font-weight: 700; }
.feature-row li::before { position: absolute; top: 12px; left: 0; width: 8px; height: 8px; border-radius: 50%; background: currentColor; content: ""; }

.split-feature { display: grid; grid-template-columns: 1.1fr 0.9fr; align-items: center; gap: 60px; }
.featured-tutorial { background: var(--surface); }
.featured-tutorial-image { position: relative; display: block; overflow: hidden; height: 500px; border-radius: 28px; background: var(--canvas-deep); }
.featured-tutorial-image img { width: 100%; height: 100%; object-fit: cover; object-position: center 12%; }
.featured-tutorial-image span { position: absolute; bottom: 16px; left: 16px; padding: 8px 11px; border-radius: 12px; background: var(--ink); color: #fff; font-size: 11px; font-weight: 800; }
.tutorial-library { background: var(--canvas-deep); }
.library-heading { display: flex; align-items: end; justify-content: space-between; gap: 28px; margin-bottom: 28px; }
.library-heading h2 { margin-bottom: 0; }
.search-field { display: block; width: min(100%, 360px); }
.search-field input { width: 100%; min-height: 56px; padding: 14px 18px; border: 2px solid transparent; border-radius: 20px; background: var(--surface); color: var(--ink); box-shadow: var(--shadow-small); }
.search-field input:focus { border-color: var(--ink); outline: none; }
.filter-row { display: flex; margin-bottom: 30px; padding-bottom: 4px; gap: 8px; overflow-x: auto; }
.filter-button { flex: 0 0 auto; min-height: 44px; padding: 9px 16px; border: 0; border-radius: 16px; background: var(--surface); color: var(--muted); cursor: pointer; font-size: 12px; font-weight: 800; }
.filter-button:hover, .filter-button.is-active { background: var(--ink); color: #fff; }
.empty-state { padding: 56px 20px; border-radius: 24px; background: var(--surface); text-align: center; }
.empty-state p { margin-bottom: 0; color: var(--muted); }
.breadcrumbs { display: flex; margin-bottom: 30px; gap: 10px; color: #bdbdc5; font-size: 12px; }
.tutorial-meta { display: flex; flex-wrap: wrap; gap: 10px 22px; color: #bdbdc5; font-size: 11px; font-weight: 700; }
.article-layout { display: grid; grid-template-columns: minmax(0, 1fr) 320px; align-items: start; gap: 50px; }
.tutorial-aside { position: sticky; top: 116px; padding: 28px; border-radius: 24px; background: var(--surface); box-shadow: var(--shadow-small); }
.tutorial-aside h2 { font-size: 25px; }
.tutorial-aside p:not(.eyebrow) { color: var(--muted); font-size: 13px; }
.video-pending { display: grid; min-height: 440px; place-items: center; padding: 48px; border-radius: 28px; background: var(--ink); color: #fff; text-align: center; }
.video-pending-icon { display: grid; width: 82px; height: 82px; place-items: center; margin: 0 auto 28px; border-radius: 50%; background: var(--yellow); color: var(--ink); font-size: 26px; }
.video-pending .eyebrow { color: var(--yellow); }
.video-pending p:not(.eyebrow) { margin-bottom: 0; color: #bdbdc5; }
.video-frame { overflow: hidden; aspect-ratio: 16 / 9; border-radius: 28px; background: #000; }
.video-frame iframe { width: 100%; height: 100%; border: 0; }
.tutorial-video { width: 100%; border-radius: 28px; background: #000; }
.written-guide { padding-top: 48px; }
.written-guide ol { margin: 28px 0 0; padding: 0; list-style: none; counter-reset: steps; }
.written-guide li { position: relative; min-height: 78px; padding: 22px 18px 22px 70px; border-bottom: 1px solid var(--line); counter-increment: steps; }
.written-guide li::before { position: absolute; top: 18px; left: 0; display: grid; width: 44px; height: 44px; place-items: center; border-radius: 50%; background: var(--ink); color: #fff; content: counter(steps, decimal-leading-zero); font-size: 10px; font-weight: 800; }

.prose-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 80px; }
.prose-grid .section-heading { margin-bottom: 0; }
.prose-grid > div:last-child { color: var(--muted); font-size: 17px; }
.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.value-grid article { min-height: 280px; padding: 28px; border-radius: 26px; background: #292a2d; }
.value-grid span { display: block; margin-bottom: 52px; color: var(--yellow); font-size: 12px; font-weight: 800; }
.value-grid h2 { font-size: 26px; }
.support-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.support-grid article { display: flex; min-height: 350px; flex-direction: column; align-items: start; padding: 28px; border-radius: 26px; background: var(--surface); box-shadow: var(--shadow-small); }
.support-grid article:nth-child(1) { border-top: 7px solid var(--blue); }
.support-grid article:nth-child(2) { border-top: 7px solid var(--pink); }
.support-grid article:nth-child(3) { border-top: 7px solid var(--mint); }
.support-grid p:not(.eyebrow) { color: var(--muted); }
.support-grid .button { margin-top: auto; }
.about-product-image { justify-self: center; width: min(100%, 330px); border: 8px solid var(--surface); border-radius: 34px; box-shadow: var(--shadow); }
.legal-date { color: #bdbdc5; font-size: 12px; font-weight: 700; }
.legal-layout { display: grid; grid-template-columns: minmax(0, 760px) 300px; align-items: start; justify-content: space-between; gap: 70px; }
.legal-layout article section { margin-bottom: 40px; padding: 28px; border-radius: 22px; background: var(--surface); }
.legal-layout article h2 { font-size: 26px; }
.legal-layout article p { margin-bottom: 0; color: var(--muted); }
.legal-layout aside { padding: 24px; border-radius: 22px; background: var(--yellow-soft); font-size: 13px; }
.legal-layout aside p { margin-bottom: 0; }
.not-found { display: grid; min-height: 72vh; place-items: center; padding: 90px 0; text-align: center; }
.not-found .container { max-width: 680px; }
.not-found-code { margin-bottom: 20px; color: var(--pink); font-size: 78px; font-weight: 800; line-height: 1; }
.not-found .button-row { justify-content: center; margin-top: 30px; }

.store-downloads { display: flex; flex-wrap: wrap; gap: 12px; }
.store-badge { display: inline-flex; width: 198px; min-height: 62px; align-items: center; gap: 12px; padding: 9px 16px; border: 1px solid #4d4e54; border-radius: 10px; background: #101113; color: #fff; line-height: 1; text-decoration: none; transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease; }
.store-badge:hover { transform: translateY(-2px); border-color: #81828a; box-shadow: var(--shadow-small); }
.store-badge-icon { width: 30px; height: 30px; flex: 0 0 auto; }
.store-badge-apple { width: 31px; height: 31px; }
.store-badge span { display: flex; min-width: 0; flex-direction: column; align-items: start; gap: 3px; }
.store-badge small { font-size: 9px; font-weight: 500; line-height: 1; }
.store-badge strong { white-space: nowrap; font-size: 19px; font-weight: 600; line-height: 1; }
.store-downloads-compact .store-badge { width: 184px; min-height: 57px; padding: 8px 13px; }
.store-downloads-compact .store-badge-icon { width: 27px; height: 27px; }
.store-downloads-compact .store-badge strong { font-size: 17px; }

.mobile-app-hero { overflow: hidden; padding: 34px 0 72px; background: var(--surface); }
.mobile-app-hero-grid { display: grid; min-height: 640px; grid-template-columns: minmax(0, 0.92fr) minmax(460px, 1.08fr); align-items: center; gap: 54px; }
.mobile-app-hero-copy { padding: 54px 0; }
.mobile-app-hero-copy h1 { max-width: 670px; }
.mobile-app-hero-copy > p:not(.eyebrow) { max-width: 610px; margin-bottom: 30px; color: var(--muted); font-size: 19px; }
.mobile-app-hero-copy .store-downloads { margin-bottom: 28px; }
.mobile-web-link { color: var(--muted); }
.mobile-app-stage { position: relative; min-height: 610px; overflow: hidden; border-radius: 30px; background: var(--ink); box-shadow: var(--shadow); }
.mobile-app-stage::before { position: absolute; right: -60px; bottom: 125px; width: 230px; height: 230px; border: 82px solid transparent; border-radius: 50%; content: ""; opacity: 0.9; }
.mobile-app-identity { position: absolute; z-index: 3; top: 30px; left: 30px; display: flex; align-items: center; gap: 12px; color: #fff; }
.mobile-app-identity img { width: 58px; height: 58px; border-radius: 14px; box-shadow: 0 12px 30px rgb(0 0 0 / 26%); }
.mobile-app-identity span { display: flex; flex-direction: column; }
.mobile-app-identity strong { font-size: 17px; }
.mobile-app-identity small { color: #bdbdc5; font-size: 10px; }
.mobile-phone { position: absolute; width: 255px; height: auto; border: 7px solid #fff; border-radius: 34px; box-shadow: 0 28px 65px rgb(0 0 0 / 42%); }
.mobile-phone-front { z-index: 2; right: 54px; bottom: -125px; }
.mobile-phone-back { z-index: 1; right: 245px; bottom: -210px; transform: rotate(-7deg); opacity: 0.82; }
.mobile-highlights { background: var(--canvas); }
.mobile-highlight-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.mobile-highlight-grid article { min-height: 265px; padding: 30px; border-radius: 24px; background: var(--surface); box-shadow: var(--shadow-small); }
.mobile-highlight-grid article > span { display: grid; width: 48px; height: 48px; place-items: center; margin-bottom: 54px; border-radius: 50%; background: var(--yellow-soft); color: #9a6b00; font-size: 11px; font-weight: 800; }
.mobile-highlight-grid article:nth-child(2) > span { background: var(--cyan-soft); color: #007b77; }
.mobile-highlight-grid article:nth-child(3) > span { background: var(--pink-soft); color: #c81f45; }
.mobile-highlight-grid h2 { font-size: 23px; }
.mobile-highlight-grid p { margin-bottom: 0; color: var(--muted); font-size: 13px; }
.mobile-preview-section { background: var(--canvas-deep); }
.mobile-preview-layout { display: grid; grid-template-columns: minmax(0, 0.8fr) minmax(520px, 1.2fr); align-items: center; gap: 64px; }
.mobile-preview-copy > p:not(.eyebrow) { color: var(--muted); }
.mobile-preview-copy .button-row { margin-top: 28px; }
.mobile-preview-rail { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); align-items: end; gap: 18px; }
.mobile-preview-rail figure { margin: 0; overflow: hidden; border-radius: 26px; background: var(--surface); box-shadow: var(--shadow); }
.mobile-preview-rail figure:nth-child(2) { transform: translateY(34px); }
.mobile-preview-rail img { width: 100%; height: 560px; object-fit: cover; object-position: top center; }
.mobile-preview-rail figcaption { padding: 17px 20px; border-top: 1px solid var(--line); font-size: 12px; font-weight: 800; }
.mobile-download-callout { padding: 96px 0; background: var(--canvas); }
.mobile-download-inner { display: flex; min-height: 270px; align-items: center; justify-content: space-between; gap: 54px; padding: 48px; border-radius: 30px; background: var(--ink); color: #fff; }
.mobile-download-inner > div:first-child { max-width: 570px; }
.mobile-download-inner p:not(.eyebrow) { margin-bottom: 0; color: #bdbdc5; }
.mobile-download-inner .store-downloads { flex: 0 0 auto; flex-direction: column; }

.site-footer { padding: 30px 0 24px; background: var(--canvas); }
.footer-panel { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; padding: 48px; border-radius: 30px; background: var(--ink); color: #fff; }
.footer-intro .brand { margin-bottom: 32px; color: #fff; }
.footer-intro h2 { max-width: 500px; font-size: 32px; }
.footer-intro p { color: #bdbdc5; }
.footer-intro .button { margin-top: 12px; border-color: #fff; background: #fff; color: var(--ink); }
.footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.footer-links div { display: flex; flex-direction: column; align-items: start; gap: 11px; }
.footer-links h3 { margin-bottom: 12px; font-size: 13px; }
.footer-links a { color: #bdbdc5; font-size: 12px; text-decoration: none; }
.footer-links a:hover { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding-top: 20px; }
.footer-bottom p { margin-bottom: 0; color: var(--muted); font-size: 11px; }
.media-error { position: absolute; inset: 0; display: grid; place-items: center; background: var(--canvas-deep); color: var(--muted); font-size: 12px; font-weight: 800; }

@media (max-width: 1080px) {
  h1 { font-size: 56px; }
  h2 { font-size: 36px; }
  .hero-shell { grid-template-columns: minmax(0, 1fr) 420px; }
  .hero-copy { padding-left: 46px; }
  .hero-stage { object-position: center top; }
  .quick-launch ul { grid-template-columns: repeat(5, minmax(150px, 1fr)); overflow-x: auto; padding-bottom: 8px; }
  .quick-launch li { min-width: 170px; }
  .tutorial-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-row { grid-template-columns: 70px 1.2fr 0.9fr; }
  .feature-row-action { grid-column: 2 / -1; }
  .mobile-app-hero-grid { grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr); gap: 34px; }
  .mobile-phone-front { right: 20px; }
  .mobile-phone-back { right: 190px; }
  .mobile-preview-layout { grid-template-columns: 0.75fr 1.25fr; gap: 40px; }
}

@media (max-width: 840px) {
  .container { width: min(calc(100% - 34px), var(--container)); }
  .section { padding: 76px 0; }
  .header-inner { min-height: 84px; }
  .menu-button { display: inline-flex; }
  .brand { font-size: 24px; }
  .brand img { width: 36px; height: 36px; }
  .header-app-button { display: inline-flex; margin-left: auto; }
  .primary-nav { position: fixed; top: 84px; right: 0; left: 0; display: none; max-height: calc(100vh - 84px); overflow-y: auto; flex-direction: column; align-items: stretch; padding: 20px 17px calc(24px + env(safe-area-inset-bottom, 0px)); background: var(--canvas); box-shadow: var(--shadow); }
  .primary-nav.is-open { display: flex; }
  .primary-nav-links { flex-direction: column; align-items: stretch; }
  .primary-nav-links a { padding: 16px; border-radius: 16px; background: var(--surface); color: var(--ink); }
  .primary-nav .button { width: 100%; }
  .menu-button[aria-expanded="true"] .menu-button-lines i:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .menu-button[aria-expanded="true"] .menu-button-lines i:nth-child(2) { opacity: 0; }
  .menu-button[aria-expanded="true"] .menu-button-lines i:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
  .hero-shell { grid-template-columns: 1fr; }
  .hero-shell::before { right: 0; bottom: 0; width: 100%; height: 46%; }
  .hero-copy { padding: 54px 42px 30px; }
  .hero-stage { min-height: 580px; object-position: center top; }
  .command-grid, .screenshot-grid { grid-template-columns: 1fr; }
  .product-shot-media { height: 690px; }
  .workflow-list { grid-template-columns: repeat(2, 1fr); }
  .discovery-panel { grid-template-columns: 1fr; }
  .discovery-panel ul { border-top: 1px solid var(--line); border-left: 0; }
  .faq-layout, .prose-grid, .article-layout, .legal-layout { grid-template-columns: 1fr; }
  .feature-command-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-row { grid-template-columns: 70px 1fr; }
  .feature-row ul, .feature-row-action { grid-column: 2; }
  .split-feature { grid-template-columns: 1fr; }
  .tutorial-aside { position: static; }
  .value-grid, .support-grid { grid-template-columns: 1fr; }
  .mobile-app-hero-grid { min-height: auto; grid-template-columns: 1fr; }
  .mobile-app-hero-copy { padding-bottom: 8px; }
  .mobile-app-stage { min-height: 560px; }
  .mobile-phone-front { right: 11%; }
  .mobile-phone-back { right: 43%; }
  .mobile-highlight-grid { grid-template-columns: 1fr; }
  .mobile-preview-layout { grid-template-columns: 1fr; }
  .mobile-preview-rail { width: min(100%, 620px); margin-inline: auto; }
  .mobile-download-inner { align-items: start; flex-direction: column; }
  .mobile-download-inner .store-downloads { flex-direction: row; }
  .footer-panel { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  body { font-size: 15px; }
  h1 { font-size: 42px; }
  h2 { font-size: 31px; }
  .container { width: min(calc(100% - 26px), var(--container)); }
  .section { padding: 64px 0; }
  .header-inner { min-height: 78px; gap: 12px; }
  .menu-button { width: 50px; height: 50px; border-radius: 17px; }
  .brand { gap: 7px; font-size: 22px; }
  .brand img { width: 32px; height: 32px; }
  .header-app-button { min-height: 46px; padding: 10px 13px; }
  .primary-nav { top: 78px; max-height: calc(100vh - 78px); }
  .app-hero { padding-top: 16px; }
  .hero-shell { border-radius: 26px; }
  .hero-copy { padding: 44px 24px 28px; }
  .hero-copy > p:not(.eyebrow) { font-size: 16px; }
  .hero-copy .button-row { flex-wrap: nowrap; }
  .hero-copy .button-row .button { min-width: 0; flex: 1; padding-inline: 10px; }
  .hero-proof { display: none; }
  .hero-stage { min-height: 210px; object-position: center top; }
  .quick-launch { padding-bottom: 38px; }
  .quick-launch ul { display: flex; gap: 12px; }
  .quick-launch li { min-width: 105px; }
  .quick-launch a { min-height: 126px; flex-direction: column; justify-content: center; gap: 10px; padding: 12px; }
  .quick-icon { width: 62px; height: 62px; }
  .command-grid { gap: 12px; }
  .command-card { min-height: 160px; grid-template-columns: 44px 1fr; padding: 22px; border-radius: 22px; }
  .command-card > span { width: 42px; height: 42px; }
  .command-card > i { position: absolute; top: 22px; right: 22px; }
  .section-title-row, .section-heading-row, .library-heading { align-items: start; flex-direction: column; }
  .evidence-note { text-align: left; }
  .product-shot { border-radius: 24px; }
  .product-shot-media { height: 570px; padding-inline: 16px; }
  .product-shot-media img { width: 300px; }
  .product-shot figcaption { flex-direction: column; gap: 5px; }
  .product-shot figcaption span { text-align: left; }
  .workflow-list { grid-template-columns: 1fr; }
  .workflow-list li { min-height: 200px; }
  .workflow-list span { margin-bottom: 36px; }
  .discovery-panel { border-radius: 24px; }
  .discovery-panel > div { padding: 28px; }
  .discovery-panel ul { grid-template-columns: 1fr; }
  .tutorial-grid { grid-template-columns: 1fr; }
  .tutorial-card-media { height: 270px; }
  .faq-layout { gap: 16px; }
  .faq-layout .section-heading { margin-bottom: 0; }
  .final-cta-panel, .final-cta-inner { min-height: 330px; flex-direction: column; align-items: stretch; justify-content: space-between; padding: 30px; border-radius: 26px; }
  .page-hero, .article-hero { padding-top: 16px; }
  .page-hero-panel, .article-hero-panel { padding: 42px 24px; border-radius: 26px; }
  .page-hero-panel > p:not(.eyebrow), .article-hero-panel > p:not(.eyebrow, .legal-date) { font-size: 16px; }
  .section-nav { top: 78px; }
  .feature-command-grid { grid-template-columns: 1fr; }
  .feature-command-card { min-height: 270px; }
  .feature-row { grid-template-columns: 1fr; gap: 20px; padding: 28px; }
  .feature-row-number { width: 52px; height: 52px; }
  .feature-row ul, .feature-row-action { grid-column: 1; }
  .featured-tutorial-image { height: 430px; }
  .search-field { width: 100%; }
  .video-pending { min-height: 390px; padding: 30px; }
  .about-product-image { width: 280px; }
  .store-downloads { width: 100%; }
  .store-badge { width: min(100%, 220px); }
  .mobile-app-hero { padding-top: 8px; }
  .mobile-app-hero-copy { padding-top: 42px; }
  .mobile-app-hero-copy > p:not(.eyebrow) { font-size: 16px; }
  .mobile-app-stage { min-height: 390px; border-radius: 26px; }
  .mobile-app-identity { top: 22px; left: 22px; }
  .mobile-app-identity img { width: 50px; height: 50px; border-radius: 12px; }
  .mobile-phone { width: 184px; border-width: 5px; border-radius: 26px; }
  .mobile-phone-front { right: 18px; bottom: -82px; }
  .mobile-phone-back { right: 145px; bottom: -128px; }
  .mobile-highlight-grid article { min-height: 230px; padding: 26px; }
  .mobile-highlight-grid article > span { margin-bottom: 40px; }
  .mobile-preview-rail { gap: 10px; }
  .mobile-preview-rail figure { border-radius: 18px; }
  .mobile-preview-rail figure:nth-child(2) { transform: translateY(22px); }
  .mobile-preview-rail img { height: 350px; }
  .mobile-preview-rail figcaption { padding: 13px; font-size: 10px; }
  .mobile-download-callout { padding: 64px 0; }
  .mobile-download-inner { min-height: 0; padding: 30px; border-radius: 26px; }
  .mobile-download-inner .store-downloads { flex-direction: column; }
  .footer-panel { padding: 30px; border-radius: 26px; }
  .footer-links { grid-template-columns: repeat(2, 1fr); row-gap: 36px; }
  .footer-bottom { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: 0.01ms !important; }
}

@media (forced-colors: active) {
  .button, .filter-button, .menu-button, .header-app-button, .store-badge { border: 1px solid ButtonText; }
}

/* Immersive product carousels */
/* Premium motion, title cursors, and product tours */
.site-header::after {
  position: absolute;
  right: auto;
  bottom: 0;
  left: 0;
  width: var(--page-progress, 0%);
  height: 3px;
  border-radius: 0 999px 999px 0;
  background: linear-gradient(90deg, var(--yellow), var(--pink), var(--cyan));
  content: "";
  transition: width 80ms linear;
}

.typewriter-title {
  position: relative;
}
.typewriter-title::after {
  display: inline-block;
  width: 0.105em;
  min-width: 3px;
  height: 0.88em;
  margin-right: -0.22em;
  margin-left: 0.12em;
  border-radius: 999px;
  background: var(--typewriter-cursor, var(--pink));
  content: "";
  opacity: 0;
  vertical-align: -0.075em;
}
.typewriter-title.is-typewriter-ready::after,
.typewriter-title.is-typing::after,
.typewriter-title.is-typed::after {
  opacity: 1;
  animation: title-cursor-flicker 0.82s steps(1, end) infinite;
}
.page-hero-panel,
.article-hero-panel,
.section-ink,
.final-cta-panel,
.final-cta-inner,
.footer-panel,
.video-pending {
  --typewriter-cursor: var(--yellow);
}
.command-card-yellow,
.feature-command-yellow { --typewriter-cursor: var(--yellow); }
.command-card-cyan,
.feature-command-cyan { --typewriter-cursor: var(--cyan); }
.command-card-pink,
.feature-command-pink { --typewriter-cursor: var(--pink); }
.command-card-blue,
.feature-command-blue { --typewriter-cursor: var(--blue); }
.command-card-mint,
.feature-command-mint { --typewriter-cursor: var(--mint); }
.command-card-lilac,
.feature-command-lilac { --typewriter-cursor: var(--lilac); }
.workflow-list li:nth-child(1) { --typewriter-cursor: var(--yellow); }
.workflow-list li:nth-child(2) { --typewriter-cursor: var(--cyan); }
.workflow-list li:nth-child(3) { --typewriter-cursor: var(--pink); }
.workflow-list li:nth-child(4) { --typewriter-cursor: var(--blue); }
.workflow-list li:nth-child(5) { --typewriter-cursor: var(--mint); }
.workflow-list li:nth-child(6) { --typewriter-cursor: var(--lilac); }

@keyframes title-cursor-flicker {
  0%, 44% { opacity: 1; }
  45%, 72% { opacity: 0.12; }
  73%, 100% { opacity: 1; }
}

.command-card,
.tutorial-card,
.workflow-list li,
.support-grid article,
.value-grid article,
.mobile-highlight-grid article,
.product-shot {
  transition: transform 220ms ease, box-shadow 220ms ease;
}
.section-nav a { transition: background-color 180ms ease, color 180ms ease, transform 180ms ease; }
.section-nav a:hover { background: var(--ink); color: #fff; transform: translateY(-1px); }

.hero-with-preview .page-hero-panel,
.hero-with-preview .article-hero-panel {
  display: grid;
  min-height: 570px;
  grid-template-columns: minmax(0, 0.96fr) minmax(390px, 0.82fr);
  align-items: center;
  gap: 44px;
  overflow: hidden;
  padding-block: 46px;
  background: var(--ink);
  color: #fff;
}
.hero-copy { position: relative; z-index: 2; }
.hero-with-preview .hero-copy > p:not(.eyebrow, .legal-date) { max-width: 780px; color: #c7c7cf; font-size: 18px; }
.hero-with-preview .legal-date { color: #bdbdc5; font-size: 12px; font-weight: 700; }
.feature-gallery-hero .button-quiet { border-color: #fff; background: #fff; color: var(--ink); }
.hero-preview-stage {
  min-height: 478px;
  align-self: stretch;
  overflow: visible;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}
.hero-preview-stage::before { display: none; }
.hero-preview-stage .mobile-app-identity { top: 4px; left: 0; }
.hero-preview-stage .mobile-phone { width: 232px; }
.hero-preview-stage .mobile-phone-front { right: 8px; bottom: -78px; }
.hero-preview-stage .mobile-phone-back { right: 184px; bottom: -154px; }
.anchor-target { position: absolute; width: 1px; height: 1px; overflow: hidden; }

.feature-showcase {
  --showcase-accent: var(--yellow);
  --showcase-accent-soft: var(--yellow-soft);
  --showcase-accent-text: #8b6500;
  position: relative;
  overflow: hidden;
  padding: 104px 0;
  background: var(--canvas);
  color: var(--ink);
}
.feature-showcase::before {
  position: absolute;
  top: 50%;
  right: -190px;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: var(--showcase-accent);
  content: "";
  opacity: 0.08;
  transform: translateY(-50%);
}
.feature-showcase-blue {
  --showcase-accent: var(--blue);
  --showcase-accent-soft: var(--blue-soft);
  --showcase-accent-text: #147dac;
}
.feature-showcase-pink {
  --showcase-accent: var(--pink);
  --showcase-accent-soft: var(--pink-soft);
  --showcase-accent-text: #b91d43;
}
.feature-showcase-mint {
  --showcase-accent: var(--mint);
  --showcase-accent-soft: var(--mint-soft);
  --showcase-accent-text: #168b4e;
}
.feature-showcase-lilac {
  --showcase-accent: var(--lilac);
  --showcase-accent-soft: var(--lilac-soft);
  --showcase-accent-text: #7654c2;
}
.feature-showcase-cyan {
  --showcase-accent: var(--cyan);
  --showcase-accent-soft: var(--cyan-soft);
  --showcase-accent-text: #007b77;
}
.feature-showcase-dark { background: var(--canvas-deep); }
.feature-showcase-home { margin: 0; }
.feature-showcase .container { position: relative; z-index: 1; }
.feature-showcase-shell {
  position: relative;
  overflow: hidden;
  padding: 52px;
  border: 1px solid var(--line);
  border-radius: 34px;
  background: var(--surface);
  box-shadow: var(--shadow);
}
.feature-showcase-shell::before {
  position: absolute;
  top: -34px;
  right: -24px;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: var(--showcase-accent);
  content: "";
  opacity: 0.13;
}
.feature-showcase-shell::after {
  position: absolute;
  top: 30px;
  right: 30px;
  width: 150px;
  height: 150px;
  background-image: radial-gradient(circle, var(--showcase-accent) 1.5px, transparent 1.6px);
  background-size: 18px 18px;
  content: "";
  opacity: 0.18;
}
.feature-showcase-dark .feature-showcase-shell {
  border-color: rgb(255 255 255 / 8%);
  background: var(--ink);
  color: #fff;
  box-shadow: 0 26px 64px rgb(32 33 36 / 22%);
}
.feature-showcase-heading {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(260px, 0.75fr);
  grid-template-rows: auto 1fr;
  align-items: end;
  gap: 16px 48px;
  margin-bottom: 42px;
}
.feature-showcase-heading .eyebrow {
  align-self: start;
  justify-self: start;
  margin: 0;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--showcase-accent-soft);
  color: var(--showcase-accent-text);
}
.feature-showcase-dark .feature-showcase-heading .eyebrow {
  background: var(--showcase-accent);
  color: var(--ink);
}
.feature-showcase-heading h2 {
  max-width: 780px;
  margin: 0;
  font-family: "Poppins", Arial, sans-serif;
  font-size: 48px;
  font-weight: 800;
  line-height: 1.08;
}
.feature-showcase-heading > p:last-child {
  grid-column: 2;
  grid-row: 1 / span 2;
  max-width: 430px;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.68;
}
.feature-showcase-dark .feature-showcase-heading > p:last-child { color: #bdbdc5; }
.feature-showcase-heading h2 { --typewriter-cursor: var(--showcase-accent); }

.product-carousel {
  --typewriter-cursor: var(--showcase-accent);
  position: relative;
  z-index: 1;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: var(--canvas-deep);
  box-shadow: 0 16px 36px rgb(32 33 36 / 10%);
}
.feature-showcase-dark .product-carousel {
  border-color: rgb(255 255 255 / 10%);
  background: var(--ink-2);
  box-shadow: 0 18px 40px rgb(0 0 0 / 18%);
}
.product-carousel-toolbar {
  position: relative;
  z-index: 6;
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 17px 24px;
  border-bottom: 1px solid var(--line);
  background: rgb(255 255 255 / 88%);
  backdrop-filter: blur(18px);
}
.feature-showcase-dark .product-carousel-toolbar {
  border-color: rgb(255 255 255 / 9%);
  background: rgb(41 42 45 / 88%);
}
.product-carousel-toolbar-copy { display: flex; min-width: 0; align-items: center; gap: 12px; }
.product-carousel-toolbar-copy > span {
  width: 12px;
  height: 12px;
  flex: 0 0 auto;
  border: 3px solid var(--surface);
  border-radius: 50%;
  background: var(--showcase-accent);
  box-shadow: 0 0 0 1px var(--showcase-accent);
}
.feature-showcase-dark .product-carousel-toolbar-copy > span { border-color: var(--ink-2); }
.product-carousel-toolbar-copy p {
  margin: 0 0 1px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.product-carousel-toolbar-copy strong {
  display: block;
  overflow: hidden;
  font-size: 13px;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.feature-showcase-dark .product-carousel-toolbar-copy p { color: #9d9ea6; }
.product-carousel-count { display: flex; flex: 0 0 auto; align-items: center; gap: 9px; margin: 0; font-size: 12px; font-weight: 800; }
.product-carousel-count i { width: 34px; height: 2px; border-radius: 999px; background: var(--showcase-accent); }
.product-carousel-count span:last-child { color: var(--muted); }
.feature-showcase-dark .product-carousel-count span:last-child { color: #9d9ea6; }

.product-carousel-stage {
  position: relative;
  min-height: 540px;
  overflow: hidden;
  background: var(--canvas);
  cursor: grab;
  isolation: isolate;
  outline: none;
  touch-action: pan-y;
}
.product-carousel-stage::before,
.product-carousel-stage::after { display: none; }
.feature-showcase-dark .product-carousel-stage { background: #242529; }
.product-carousel-stage:focus-visible { box-shadow: inset 0 0 0 3px var(--showcase-accent); }
.product-carousel-stage.is-dragging { cursor: grabbing; }
.product-carousel-item {
  position: absolute;
  z-index: 0;
  inset: 0;
  margin: 0;
  opacity: 0;
  pointer-events: none;
  transform: scale(0.985);
  transition: opacity 420ms ease, transform 480ms cubic-bezier(0.2, 0.78, 0.2, 1);
}
.product-carousel-item.is-active {
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(300px, 0.86fr) minmax(360px, 1fr);
  align-items: center;
  gap: 42px;
  padding: 38px 7%;
  opacity: 1;
  pointer-events: auto;
  transform: scale(1);
}
.product-carousel-visual {
  position: relative;
  display: grid;
  min-height: 440px;
  overflow: hidden;
  place-items: center;
  border: 1px solid rgb(32 33 36 / 7%);
  border-radius: 22px;
  background: var(--surface);
  box-shadow: 0 14px 30px rgb(32 33 36 / 7%);
}
.product-carousel-visual::before,
.product-carousel-visual::after { display: none; }
.feature-showcase-dark .product-carousel-visual {
  border-color: rgb(255 255 255 / 7%);
  background: rgb(255 255 255 / 5%);
  box-shadow: inset 0 1px 0 rgb(255 255 255 / 6%), 0 22px 52px rgb(0 0 0 / 22%);
}
.phone-shot {
  position: relative;
  z-index: 2;
  width: 196px;
  overflow: hidden;
  aspect-ratio: 9 / 20;
  border: 7px solid var(--ink);
  border-radius: 31px;
  background: var(--surface-soft);
  box-shadow: 0 28px 58px rgb(32 33 36 / 26%);
}
.feature-showcase-dark .product-carousel-item.is-active .phone-shot { border-color: #fff; }
.phone-shot img { width: 100%; height: 100%; object-fit: cover; }
.product-carousel-copy {
  position: relative;
  display: grid;
  align-items: start;
  gap: 22px;
  padding: 30px;
  overflow: hidden;
  border-radius: 22px;
  background: transparent;
  
}
.product-carousel-copy::after { display: none; }
.feature-showcase-dark .product-carousel-copy {
  border-color: rgb(255 255 255 / 8%);
  background: #2d2e32;
  box-shadow: 0 20px 44px rgb(0 0 0 / 20%);
}
.product-carousel-copy > span {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 50%;
  background: var(--showcase-accent-soft);
  color: var(--showcase-accent-text);
  font-size: 12px;
  font-weight: 800;
}
.feature-showcase-dark .product-carousel-copy > span { background: var(--showcase-accent); color: var(--ink); }
.product-carousel-copy div { position: relative; z-index: 1; }
.product-carousel-copy div > p:first-child {
  margin: 3px 0 12px;
  color: var(--showcase-accent-text);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.feature-showcase-dark .product-carousel-copy div > p:first-child { color: var(--showcase-accent); }
.product-carousel-copy h3 {
  margin: 0 0 17px;
  color: var(--ink);
  font-family: "Poppins", Arial, sans-serif;
  font-size: 30px;
  font-weight: 800;
  line-height: 1.12;
}
.feature-showcase-dark .product-carousel-copy h3 { color: #fff; }
.product-carousel-copy div > p:last-child { max-width: 470px; margin: 0; color: var(--muted); font-size: 15px; line-height: 1.7; }
.feature-showcase-dark .product-carousel-copy div > p:last-child { color: #bdbdc5; }

.product-carousel-item.is-previous,
.product-carousel-item.is-next {
  z-index: 1;
  display: block;
  opacity: 0.18;
  transform: scale(1);
}
.product-carousel-item.is-previous .product-carousel-copy,
.product-carousel-item.is-next .product-carousel-copy { display: none; }
.product-carousel-item.is-previous .product-carousel-visual,
.product-carousel-item.is-next .product-carousel-visual {
  position: absolute;
  top: 50%;
  width: 205px;
  min-height: 430px;
  border-radius: 25px;
  filter: saturate(0.72);
}
.product-carousel-item.is-previous .product-carousel-visual {
  left: -74px;
  transform: translateY(-50%) rotate(-4deg) scale(0.9);
}
.product-carousel-item.is-next .product-carousel-visual {
  right: -74px;
  transform: translateY(-50%) rotate(4deg) scale(0.9);
}
.product-carousel-item.is-previous .phone-shot,
.product-carousel-item.is-next .phone-shot { width: 166px; border-width: 5px; border-radius: 25px; }

.carousel-arrow {
  position: absolute;
  z-index: 5;
  top: 50%;
  display: grid;
  width: 52px;
  height: 52px;
  padding: 0;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 18px;
  background: rgb(255 255 255 / 94%);
  color: var(--ink);
  box-shadow: var(--shadow-small);
  cursor: pointer;
  transform: translateY(-50%);
  transition: border-color 180ms ease, color 180ms ease, transform 180ms ease;
}
.carousel-arrow svg { width: 22px; height: 22px; }
.carousel-arrow:hover { border-color: var(--showcase-accent); color: var(--showcase-accent-text); transform: translateY(-50%) scale(1.04); }
.carousel-arrow-previous { left: 18px; }
.carousel-arrow-next { right: 18px; }

.product-carousel-footer {
  position: relative;
  z-index: 6;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: center;
  gap: 0;
  padding: 12px 22px;
  border-top: 1px solid var(--line);
  background: var(--surface);
}
.feature-showcase-dark .product-carousel-footer { border-color: rgb(255 255 255 / 9%); background: var(--ink-2); }
.product-carousel-navigation { min-width: 0; }
.product-carousel-progress { height: 4px; overflow: hidden; border-radius: 999px; background: var(--line); }
.feature-showcase-dark .product-carousel-progress { background: rgb(255 255 255 / 12%); }
.product-carousel-progress span {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: var(--showcase-accent);
  transition: width 380ms cubic-bezier(0.2, 0.78, 0.2, 1);
}
.product-carousel-dots {
  display: none;
  align-items: center;
  justify-content: flex-start;
  gap: 7px;
  overflow: visible;
  padding: 13px 2px 2px;
}
.product-carousel-dots button {
  width: 18px;
  height: 6px;
  flex: 0 0 auto;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: var(--line-strong);
  cursor: pointer;
  transition: width 220ms ease, background-color 220ms ease, opacity 220ms ease;
}
.feature-showcase-dark .product-carousel-dots button { background: rgb(255 255 255 / 18%); }
.product-carousel-dots button:hover { opacity: 0.7; }
.product-carousel-dots button[aria-current="true"] { width: 42px; background: var(--showcase-accent); }
.product-carousel-actions { display: none; align-items: center; justify-content: flex-end; gap: 14px; }
.product-carousel-hint { color: var(--muted); font-size: 10px; font-weight: 700; white-space: nowrap; }
.feature-showcase-dark .product-carousel-hint { color: #9d9ea6; }
.carousel-toggle {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  gap: 8px;
  padding: 9px 13px;
  border: 1px solid var(--line-strong);
  border-radius: 15px;
  background: var(--surface);
  color: var(--ink);
  cursor: pointer;
  font-size: 10px;
  font-weight: 800;
}
.feature-showcase-dark .carousel-toggle { border-color: rgb(255 255 255 / 14%); background: #34353a; color: #fff; }
.carousel-toggle:hover { border-color: var(--showcase-accent); }
.carousel-toggle-icon { position: relative; display: inline-block; width: 12px; height: 12px; flex: 0 0 auto; }
.carousel-toggle[aria-pressed="false"] .carousel-toggle-icon::before,
.carousel-toggle[aria-pressed="false"] .carousel-toggle-icon::after {
  position: absolute;
  top: 1px;
  width: 3px;
  height: 10px;
  border-radius: 2px;
  background: currentColor;
  content: "";
}
.carousel-toggle[aria-pressed="false"] .carousel-toggle-icon::before { left: 1px; }
.carousel-toggle[aria-pressed="false"] .carousel-toggle-icon::after { right: 1px; }
.carousel-toggle[aria-pressed="true"] .carousel-toggle-icon::before {
  position: absolute;
  inset: 1px 0 1px 2px;
  background: currentColor;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  content: "";
}

@keyframes carousel-active-forward {
  from { opacity: 0.42; transform: translateX(22px) scale(0.985); }
  to { opacity: 1; transform: translateX(0) scale(1); }
}
@keyframes carousel-active-backward {
  from { opacity: 0.42; transform: translateX(-22px) scale(0.985); }
  to { opacity: 1; transform: translateX(0) scale(1); }
}
@keyframes carousel-copy-in {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}
.product-carousel.is-moving-forward .product-carousel-item.is-active .product-carousel-visual { animation: carousel-active-forward 480ms cubic-bezier(0.2, 0.78, 0.2, 1); }
.product-carousel.is-moving-backward .product-carousel-item.is-active .product-carousel-visual { animation: carousel-active-backward 480ms cubic-bezier(0.2, 0.78, 0.2, 1); }
.product-carousel.is-moving-forward .product-carousel-item.is-active .product-carousel-copy,
.product-carousel.is-moving-backward .product-carousel-item.is-active .product-carousel-copy { animation: carousel-copy-in 520ms 70ms both cubic-bezier(0.2, 0.78, 0.2, 1); }

@media (hover: hover) {
  .command-card:hover,
  .tutorial-card:hover,
  .workflow-list li:hover,
  .support-grid article:hover,
  .value-grid article:hover,
  .mobile-highlight-grid article:hover,
  .product-shot:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 46px rgb(32 33 36 / 13%);
  }
}

@media (max-width: 1080px) {
  .hero-with-preview .page-hero-panel,
  .hero-with-preview .article-hero-panel {
    grid-template-columns: minmax(0, 0.9fr) minmax(330px, 0.7fr);
    gap: 30px;
  }
  .hero-preview-stage { min-height: 438px; }
  .hero-preview-stage .mobile-phone { width: 208px; }
  .hero-preview-stage .mobile-phone-front { right: -4px; bottom: -72px; }
  .hero-preview-stage .mobile-phone-back { right: 148px; bottom: -138px; }
  .feature-showcase-shell { padding: 42px; }
  .feature-showcase-heading h2 { font-size: 42px; }
  .product-carousel-item.is-active { grid-template-columns: minmax(260px, 0.76fr) minmax(320px, 1fr); gap: 30px; padding: 36px 6.5%; }
  .product-carousel-visual { min-height: 430px; }
  .phone-shot { width: 190px; }
  .product-carousel-copy { padding: 28px; }
  .product-carousel-copy h3 { font-size: 28px; }
}

@media (max-width: 899px) {
  .hero-with-preview .page-hero-panel,
  .hero-with-preview .article-hero-panel {
    grid-template-columns: 1fr;
    gap: 30px;
    min-height: 0;
    padding-bottom: 0;
  }
  .hero-copy { max-width: 720px; }
  .hero-preview-stage {
    width: min(100%, 560px);
    min-height: 430px;
    justify-self: center;
  }
  .hero-preview-stage .mobile-app-identity { top: 0; left: 10px; }
  .hero-preview-stage .mobile-phone-front { right: 40px; bottom: -96px; }
  .hero-preview-stage .mobile-phone-back { right: 210px; bottom: -154px; }
  .feature-showcase { padding: 84px 0; }
  .feature-showcase-shell { padding: 34px; border-radius: 30px; }
  .feature-showcase-heading { grid-template-columns: 1fr; grid-template-rows: auto; gap: 14px; }
  .feature-showcase-heading h2 { font-size: 40px; }
  .feature-showcase-heading > p:last-child { grid-column: 1; grid-row: auto; max-width: 680px; margin-top: 4px; }
  .product-carousel-stage { min-height: 560px; }
  .product-carousel-item.is-active { grid-template-columns: minmax(220px, 0.68fr) minmax(280px, 1fr); gap: 22px; padding: 34px 6%; }
  .product-carousel-visual { min-height: 430px; }
  .phone-shot { width: 196px; border-width: 6px; border-radius: 29px; }
  .product-carousel-copy { grid-template-columns: 46px 1fr; gap: 17px; padding: 28px; }
  .product-carousel-copy > span { width: 44px; height: 44px; }
  .product-carousel-copy h3 { font-size: 28px; }
  .product-carousel-item.is-previous,
  .product-carousel-item.is-next { opacity: 0; }
  .product-carousel-footer { grid-template-columns: 1fr; gap: 12px; }
  .product-carousel-actions { justify-content: space-between; }
}

@media (max-width: 620px) {
  .hero-with-preview .page-hero-panel,
  .hero-with-preview .article-hero-panel {
    min-height: 0;
    gap: 22px;
    padding-bottom: 0;
  }
  .hero-preview-stage {
    min-height: 338px;
    margin-inline: -4px;
  }
  .hero-preview-stage .mobile-app-identity { top: 0; left: 4px; }
  .hero-preview-stage .mobile-phone { width: 164px; }
  .hero-preview-stage .mobile-phone-front { right: 6px; bottom: -70px; }
  .hero-preview-stage .mobile-phone-back { right: 132px; bottom: -108px; }
  .feature-showcase { padding: 68px 0; }
  .feature-showcase::before { right: -230px; }
  .feature-showcase-shell { padding: 22px; border-radius: 27px; }
  .feature-showcase-shell::before { width: 140px; height: 140px; }
  .feature-showcase-shell::after { top: 22px; right: 18px; width: 110px; height: 110px; background-size: 15px 15px; }
  .feature-showcase-heading { margin-bottom: 30px; }
  .feature-showcase-heading .eyebrow { padding: 7px 10px; }
  .feature-showcase-heading h2 { max-width: 100%; font-size: 34px; line-height: 1.1; }
  .feature-showcase-heading > p:last-child { font-size: 14px; line-height: 1.62; }
  .product-carousel { border-radius: 25px; }
  .product-carousel-toolbar { min-height: 68px; gap: 12px; padding: 14px 16px; }
  .product-carousel-toolbar-copy { gap: 9px; }
  .product-carousel-toolbar-copy > span { width: 10px; height: 10px; border-width: 2px; }
  .product-carousel-toolbar-copy p { font-size: 8px; }
  .product-carousel-toolbar-copy strong { max-width: 190px; font-size: 11px; }
  .product-carousel-count { gap: 6px; font-size: 10px; }
  .product-carousel-count i { width: 22px; }
  .product-carousel-stage { min-height: 470px; }
  .product-carousel-item.is-active { display: flex; flex-direction: column; justify-content: center; gap: 14px; padding: 18px 16px 20px; }
  .product-carousel-visual { width: 100%; min-height: 305px; flex: 0 0 auto; border-radius: 18px; }
  .phone-shot { width: 146px; border-width: 5px; border-radius: 23px; }
  .product-carousel-copy { display: block; width: 100%; padding: 0 4px; border: 0; border-radius: 0; background: transparent; box-shadow: none; }
  .product-carousel-copy > span { display: none; }
  .product-carousel-copy div > p:first-child,
  .product-carousel-copy h3 { display: none; }
  .product-carousel-copy div > p:last-child { max-width: none; color: var(--muted); font-size: 13px; line-height: 1.55; text-align: center; }
  .feature-showcase-dark .product-carousel-copy div > p:last-child { color: #bdbdc5; }
  .carousel-arrow { top: 174px; width: 40px; height: 40px; border-radius: 14px; }
  .carousel-arrow svg { width: 19px; height: 19px; }
  .carousel-arrow-previous { left: 10px; }
  .carousel-arrow-next { right: 10px; }
  .product-carousel-footer { display: grid; gap: 0; padding: 10px 16px; }
  .product-carousel-dots { justify-content: center; gap: 7px; padding-top: 11px; }
  .product-carousel-dots button { width: 18px; height: 6px; }
  .product-carousel-dots button[aria-current="true"] { width: 34px; }
  .product-carousel-hint { display: none; }
  .product-carousel-actions { justify-content: flex-end; }
  .carousel-toggle { min-height: 40px; }
}

@media (prefers-reduced-motion: reduce) {
  .typewriter-title::after { animation: none !important; opacity: 0.68; }
  .product-carousel-progress span { transition: none; }
  .product-carousel.is-moving-forward .product-carousel-item.is-active .product-carousel-visual,
  .product-carousel.is-moving-backward .product-carousel-item.is-active .product-carousel-visual,
  .product-carousel.is-moving-forward .product-carousel-item.is-active .product-carousel-copy,
  .product-carousel.is-moving-backward .product-carousel-item.is-active .product-carousel-copy { animation: none; }
}

@media (forced-colors: active) {
  .carousel-arrow,
  .carousel-toggle,
  .product-carousel-dots button { border: 1px solid ButtonText; }
}


/* 2026-07 Paddle review and legal-page overhaul */
.business-model-section { padding: 24px 0 72px; background: var(--canvas); }
.business-model-card { display: grid; grid-template-columns: .9fr 1.1fr; gap: 48px; align-items: start; padding: 42px; border: 1px solid rgb(255 255 255 / 10%); border-radius: 30px; background: var(--ink); color: #fff; box-shadow: var(--shadow); }
.business-model-card h2 { max-width: 520px; margin-bottom: 0; font-size: 34px; }
.business-model-card .eyebrow { color: var(--yellow); }
.business-model-copy p { color: #c9c9cf; }
.business-model-copy p:last-of-type { margin-bottom: 22px; }
.business-model-copy .text-link { color: #fff; }
.business-model-card-light { background: var(--surface); color: var(--ink); border-color: var(--line); }
.business-model-card-light .eyebrow { color: var(--pink); }
.business-model-card-light .business-model-copy p { color: var(--muted); }
.business-model-card-light .text-link { color: var(--ink); }
.pricing-model-note { padding-top: 0; padding-bottom: 32px; }
.pricing-section { background: var(--canvas); }
.pricing-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.pricing-card { display: flex; min-height: 570px; flex-direction: column; padding: 30px; border: 1px solid var(--line); border-radius: 28px; background: var(--surface); box-shadow: var(--shadow-small); }
.pricing-card-featured { border-color: var(--ink); box-shadow: var(--shadow); }
.pricing-card h3 { margin-bottom: 2px; font-size: 42px; }
.pricing-card > p:not(.eyebrow, .pricing-period) { color: var(--muted); font-size: 14px; }
.pricing-period { margin-bottom: 26px; color: var(--muted); font-size: 12px; font-weight: 700; }
.pricing-card ul { display: grid; gap: 13px; margin: 16px 0 28px; padding: 0; list-style: none; }
.pricing-card li { position: relative; padding-left: 24px; color: var(--muted); font-size: 13px; }
.pricing-card li::before { position: absolute; top: .2em; left: 0; width: 16px; height: 16px; border-radius: 50%; background: var(--mint-soft); color: #168b4e; content: "✓"; font-size: 10px; font-weight: 800; text-align: center; line-height: 16px; }
.pricing-card .button { width: 100%; margin-top: auto; }
.credit-panel { display: grid; grid-template-columns: .9fr 1.1fr; gap: 48px; align-items: center; padding: 42px; border-radius: 30px; background: var(--surface); box-shadow: var(--shadow-small); }
.credit-panel > div > p:not(.eyebrow) { color: var(--muted); }
.credit-panel ul { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; margin: 0; padding: 0; list-style: none; }
.credit-panel li { display: flex; justify-content: space-between; gap: 18px; padding: 18px; border-radius: 18px; background: var(--canvas); font-size: 13px; }
.credit-panel li span { color: var(--muted); font-weight: 800; }
.legal-layout article { min-width: 0; }
.legal-layout article section { scroll-margin-top: 120px; }
.legal-layout article p + p { margin-top: 16px; }
.legal-layout article ul { display: grid; gap: 10px; margin: 18px 0 0; padding-left: 22px; color: var(--muted); }
.legal-layout article li { padding-left: 4px; }
.legal-layout article a { font-weight: 700; }
.legal-summary { border: 1px solid #f0d58d; background: var(--yellow-soft) !important; }
.legal-summary p { color: #544517 !important; }
.legal-toc { position: sticky; top: 118px; display: flex; flex-direction: column; gap: 10px; padding: 26px !important; border: 1px solid var(--line); background: var(--surface) !important; box-shadow: var(--shadow-small); }
.legal-toc strong { font-size: 16px; }
.legal-toc p { color: var(--muted); }
.legal-toc a { padding: 10px 12px; border-radius: 12px; background: var(--canvas); color: var(--ink); font-size: 12px; font-weight: 700; text-decoration: none; }
.legal-toc a:hover { background: var(--ink); color: #fff; }
.checkout-disclosure { max-width: 620px; margin: 28px auto 0; padding: 20px; border-radius: 18px; background: var(--yellow-soft); text-align: left; }
.checkout-disclosure strong { display: block; margin-bottom: 8px; }
.checkout-disclosure p { margin-bottom: 8px !important; color: #544517 !important; font-size: 12px; }
.checkout-disclosure p:last-child { margin-bottom: 0 !important; }
.checkout-disclosure a { font-weight: 800; }
@media (max-width: 980px) {
  .pricing-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .business-model-card, .credit-panel { grid-template-columns: 1fr; gap: 24px; }
  .legal-toc { position: static; }
}
@media (max-width: 640px) {
  .business-model-section { padding-bottom: 48px; }
  .business-model-card, .credit-panel { padding: 28px; border-radius: 24px; }
  .business-model-card h2 { font-size: 28px; }
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card { min-height: 0; }
  .credit-panel ul { grid-template-columns: 1fr; }
  .legal-layout article section { padding: 24px; }
}

/* Institution Workspace and premium motion revamp */
.audience-spectrum { background: var(--surface); }
.audience-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.audience-card { position: relative; min-height: 330px; overflow: hidden; padding: 32px; border: 1px solid var(--line); border-radius: 28px; background: var(--canvas); box-shadow: var(--shadow-small); }
.audience-card::after { position: absolute; right: -66px; bottom: -82px; width: 190px; height: 190px; border-radius: 50%; background: currentColor; content: ""; opacity: 0.09; }
.audience-card > span { display: grid; width: 48px; height: 48px; place-items: center; margin-bottom: 54px; border: 2px solid currentColor; border-radius: 50%; font-size: 11px; font-weight: 800; }
.audience-card .eyebrow { color: currentColor; }
.audience-card p:not(.eyebrow) { color: var(--muted); font-size: 14px; }
.audience-card-yellow { color: #a87800; }
.audience-card-cyan { color: #007b77; }
.audience-card-lilac { color: #7654c2; }
.audience-card-featured { border-color: rgb(179 140 255 / 36%); background: linear-gradient(145deg, var(--surface) 0%, var(--lilac-soft) 130%); }
.audience-card .text-link { position: relative; z-index: 1; margin-top: 10px; color: var(--ink); }

.institution-workspace-section { position: relative; overflow: hidden; background: var(--canvas-deep); }
.institution-workspace-section::before { position: absolute; top: 80px; left: -140px; width: 280px; height: 280px; border-radius: 50%; background: var(--lilac); content: ""; opacity: 0.08; }
.institution-workspace-shell { position: relative; overflow: hidden; padding: 54px; border: 1px solid var(--line); border-radius: 36px; background: var(--ink); color: #fff; box-shadow: 0 30px 80px rgb(32 33 36 / 18%); }
.institution-workspace-shell::after { position: absolute; top: -80px; right: -60px; width: 280px; height: 280px; border: 92px solid var(--lilac); border-radius: 50%; content: ""; opacity: 0.13; }
.institution-workspace-copy { position: relative; z-index: 2; max-width: 800px; margin-bottom: 46px; }
.institution-workspace-copy .eyebrow { color: var(--lilac); }
.institution-workspace-copy > p:not(.eyebrow) { max-width: 760px; color: #c9c9cf; font-size: 17px; }
.institution-workspace-copy .button { border-color: #fff; background: #fff; color: var(--ink); }
.institution-workspace-copy .button-secondary { border-color: rgb(255 255 255 / 18%); background: transparent; color: #fff; }
.institution-flow { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(0, 1fr) 190px minmax(0, 1fr); align-items: center; gap: 30px; margin-bottom: 42px; padding: 34px; border: 1px solid rgb(255 255 255 / 8%); border-radius: 28px; background: #292a2e; box-shadow: inset 0 1px 0 rgb(255 255 255 / 5%); }
.institution-flow::before, .institution-flow::after { position: absolute; top: 50%; width: 16%; height: 2px; background: linear-gradient(90deg, transparent, var(--lilac), transparent); content: ""; opacity: 0.55; }
.institution-flow::before { left: 27%; }
.institution-flow::after { right: 27%; }
.institution-flow-column { display: grid; gap: 10px; }
.source-pill, .institution-outcome { display: flex; min-height: 46px; align-items: center; padding: 10px 14px; border-radius: 15px; background: rgb(255 255 255 / 6%); color: #d4d4dc; font-size: 12px; font-weight: 700; }
.source-pill::before { width: 8px; height: 8px; margin-right: 10px; border-radius: 50%; background: var(--cyan); content: ""; box-shadow: 0 0 0 5px rgb(24 216 208 / 8%); }
.institution-outcome::before { width: 8px; height: 8px; margin-right: 10px; border-radius: 3px; background: var(--lilac); content: ""; box-shadow: 0 0 0 5px rgb(179 140 255 / 8%); }
.institution-flow-core { position: relative; display: grid; width: 164px; height: 164px; place-items: center; justify-self: center; align-content: center; border: 1px solid rgb(255 255 255 / 12%); border-radius: 50%; background: #202124; text-align: center; box-shadow: 0 20px 44px rgb(0 0 0 / 30%); }
.institution-flow-core img { position: relative; z-index: 2; width: 42px; height: 42px; margin-bottom: 8px; }
.institution-flow-core strong, .institution-flow-core small { position: relative; z-index: 2; }
.institution-flow-core strong { font-size: 17px; }
.institution-flow-core small { margin-top: 4px; color: #9fa0a8; font-size: 8px; }
.institution-pulse { position: absolute; inset: 13px; border: 1px solid rgb(179 140 255 / 34%); border-radius: 50%; }
.institution-capability-grid { position: relative; z-index: 2; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; }
.institution-capability { min-height: 220px; padding: 26px; border: 1px solid rgb(255 255 255 / 7%); border-radius: 22px; background: rgb(255 255 255 / 5%); }
.institution-capability > span { display: inline-grid; width: 38px; height: 38px; place-items: center; margin-bottom: 38px; border-radius: 13px; background: var(--lilac); color: var(--ink); font-size: 10px; font-weight: 800; }
.institution-capability h3 { color: #fff; font-size: 18px; }
.institution-capability p { margin-bottom: 0; color: #b8b9c0; font-size: 12px; }
.institution-capability-grid-compact { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.institution-capability-grid-compact .institution-capability { min-height: 190px; }

.institution-page-hero { padding: 34px 0 72px; }
.institution-hero-panel { position: relative; display: grid; min-height: 660px; grid-template-columns: minmax(0, 0.88fr) minmax(500px, 1.12fr); align-items: center; gap: 50px; overflow: hidden; padding: 60px; border-radius: 36px; background: var(--ink); color: #fff; box-shadow: var(--shadow); }
.institution-hero-panel::before { position: absolute; top: -180px; right: -80px; width: 480px; height: 480px; border: 120px solid var(--lilac); border-radius: 50%; content: ""; opacity: 0.08; }
.institution-hero-copy { position: relative; z-index: 2; }
.institution-hero-copy .eyebrow { color: var(--lilac); }
.institution-hero-copy h1 { max-width: 660px; font-size: clamp(40px, 5vw, 64px); }
.institution-hero-copy > p:not(.eyebrow) { max-width: 650px; color: #c7c7cf; font-size: 18px; }
.institution-hero-copy .button-row { margin-top: 30px; }
.institution-hero-copy .button-secondary { border-color: #fff; background: #fff; color: var(--ink); }
.institution-hero-proof { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 34px; }
.institution-hero-proof span { padding: 8px 11px; border: 1px solid rgb(255 255 255 / 10%); border-radius: 999px; background: rgb(255 255 255 / 5%); color: #c9c9d0; font-size: 10px; font-weight: 700; }
.institution-console { position: relative; z-index: 2; overflow: hidden; min-height: 510px; border: 1px solid rgb(255 255 255 / 10%); border-radius: 28px; background: #f8f8ff; color: var(--ink); box-shadow: 0 34px 90px rgb(0 0 0 / 40%); transform-style: preserve-3d; }
.institution-console-top { display: flex; height: 68px; align-items: center; justify-content: space-between; padding: 0 22px; border-bottom: 1px solid var(--line); background: #fff; }
.institution-console-brand { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 800; }
.institution-console-brand img { width: 28px; height: 28px; }
.institution-console-badge { padding: 7px 10px; border-radius: 999px; background: var(--lilac-soft); color: #7654c2; font-size: 9px; font-weight: 800; }
.institution-console-grid { display: grid; min-height: 442px; grid-template-columns: 128px minmax(0, 1fr); }
.institution-console-grid aside { display: flex; flex-direction: column; gap: 6px; padding: 18px 12px; border-right: 1px solid var(--line); background: #f1f2f8; }
.institution-console-grid aside span { padding: 9px 10px; border-radius: 10px; color: var(--muted); font-size: 9px; font-weight: 700; }
.institution-console-grid aside .console-nav-active { background: var(--ink); color: #fff; }
.institution-console-main { padding: 24px; }
.console-welcome { display: flex; flex-direction: column; margin-bottom: 20px; }
.console-welcome small { color: var(--muted); font-size: 9px; }
.console-welcome strong { margin-top: 3px; font-size: 18px; }
.console-stat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 9px; margin-bottom: 16px; }
.console-stat-grid div { padding: 15px; border-radius: 16px; background: #fff; box-shadow: 0 5px 16px rgb(32 33 36 / 6%); }
.console-stat-grid small { display: block; margin-bottom: 5px; color: var(--muted); font-size: 8px; }
.console-stat-grid strong { font-size: 17px; }
.console-panels { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 10px; }
.console-structure, .console-assessment { display: flex; min-height: 225px; flex-direction: column; align-items: flex-start; padding: 18px; border-radius: 18px; background: #fff; box-shadow: 0 5px 16px rgb(32 33 36 / 6%); }
.console-structure small, .console-assessment small { margin-bottom: 10px; color: var(--muted); font-size: 8px; }
.console-structure strong, .console-assessment strong { margin-bottom: 12px; font-size: 13px; }
.console-structure span, .console-assessment span { width: 100%; margin-top: 5px; padding: 7px 9px; border-radius: 9px; background: var(--canvas); color: var(--muted); font-size: 8px; }
.console-structure .console-structure-active { background: var(--lilac-soft); color: #7654c2; font-weight: 800; }
.console-assessment em { margin-top: auto; padding: 7px 9px; border-radius: 9px; background: var(--mint-soft); color: #168b4e; font-size: 8px; font-style: normal; font-weight: 800; }

.institution-source-section { background: var(--surface); }
.institution-source-grid { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 12px; }
.institution-source-grid article { min-height: 270px; padding: 26px; border: 1px solid var(--line); border-radius: 24px; background: var(--canvas); }
.institution-source-grid article > span { display: grid; width: 42px; height: 42px; place-items: center; margin-bottom: 48px; border-radius: 14px; background: var(--cyan-soft); color: #007b77; font-size: 10px; font-weight: 800; }
.institution-source-grid article:nth-child(2) > span { background: var(--yellow-soft); color: #8b6500; }
.institution-source-grid article:nth-child(3) > span { background: var(--pink-soft); color: #b91d43; }
.institution-source-grid article:nth-child(4) > span { background: var(--blue-soft); color: #147dac; }
.institution-source-grid article:nth-child(5) > span { background: var(--lilac-soft); color: #7654c2; }
.institution-source-grid h3 { font-size: 17px; }
.institution-source-grid p { margin-bottom: 0; color: var(--muted); font-size: 12px; }

.institution-workflow-section { background: var(--canvas-deep); }
.institution-workflow-list { display: grid; margin: 0; padding: 0; gap: 12px; list-style: none; }
.institution-workflow-list li { display: grid; min-height: 150px; grid-template-columns: 70px 1fr; align-items: center; gap: 26px; padding: 28px 34px; border: 1px solid var(--line); border-radius: 26px; background: var(--surface); box-shadow: var(--shadow-small); }
.institution-workflow-list li > span { display: grid; width: 58px; height: 58px; place-items: center; border: 2px solid var(--lilac); border-radius: 50%; color: #7654c2; font-size: 11px; font-weight: 800; }
.institution-workflow-list h3 { margin-bottom: 6px; }
.institution-workflow-list p { max-width: 850px; margin-bottom: 0; color: var(--muted); font-size: 13px; }

.institution-module-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; }
.institution-module-grid article { min-height: 270px; padding: 28px; border: 1px solid var(--line); border-radius: 26px; background: var(--surface); box-shadow: var(--shadow-small); }
.institution-module-grid article > span { display: grid; width: 44px; height: 44px; place-items: center; margin-bottom: 48px; border-radius: 14px; background: var(--lilac-soft); color: #7654c2; font-size: 10px; font-weight: 800; }
.institution-module-grid article:nth-child(3n+2) > span { background: var(--cyan-soft); color: #007b77; }
.institution-module-grid article:nth-child(3n) > span { background: var(--yellow-soft); color: #8b6500; }
.institution-module-grid h3 { font-size: 18px; }
.institution-module-grid p { margin-bottom: 0; color: var(--muted); font-size: 12px; }

.institution-continuity-section { background: var(--surface); }
.institution-continuity-panel { display: grid; grid-template-columns: minmax(0, 0.9fr) minmax(520px, 1.1fr); align-items: center; gap: 60px; padding: 52px; border-radius: 32px; background: var(--ink); color: #fff; }
.institution-continuity-panel .eyebrow { color: var(--mint); }
.institution-continuity-panel p:not(.eyebrow) { margin-bottom: 0; color: #bdbdc5; }
.continuity-track { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 9px; }
.continuity-track span { padding: 12px 14px; border-radius: 14px; background: rgb(255 255 255 / 7%); color: #fff; font-size: 10px; font-weight: 800; }
.continuity-track i { color: var(--mint); font-style: normal; font-weight: 800; }

.institution-pricing-section { background: var(--canvas-deep); }
.institution-pricing-panel { display: grid; grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr); gap: 42px; padding: 48px; border-radius: 32px; background: var(--ink); color: #fff; }
.institution-pricing-panel > div:first-child p:not(.eyebrow) { color: #bdbdc5; }
.institution-pricing-panel .eyebrow { color: var(--lilac); }
.institution-pricing-factors { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.institution-pricing-factors article { display: grid; min-height: 130px; align-content: center; padding: 20px; border-radius: 20px; background: rgb(255 255 255 / 6%); }
.institution-pricing-factors span { color: var(--lilac); font-size: 9px; font-weight: 800; }
.institution-pricing-factors strong { margin-top: 8px; font-size: 16px; }
.institution-pricing-factors small { margin-top: 4px; color: #aeb0b8; font-size: 9px; }
.institution-pricing-action { grid-column: 1 / -1; display: flex; align-items: center; justify-content: space-between; gap: 26px; padding-top: 26px; border-top: 1px solid rgb(255 255 255 / 10%); }
.institution-pricing-action p { max-width: 760px; margin: 0; color: #bdbdc5; font-size: 13px; }
.institution-pricing-action .button { border-color: #fff; background: #fff; color: var(--ink); }

/* Premium entrance motion. Motion is enabled by JS so no-JS pages remain visible. */
html.motion-enhanced .hero-copy,
html.motion-enhanced .mobile-app-hero-copy,
html.motion-enhanced .institution-hero-copy { opacity: 0; transform: translateY(22px); transition: opacity 700ms ease, transform 820ms cubic-bezier(0.16, 1, 0.3, 1); }
html.motion-enhanced .hero-motion-ready .hero-copy,
html.motion-enhanced .mobile-app-hero.hero-motion-ready .mobile-app-hero-copy,
html.motion-enhanced .institution-page-hero.hero-motion-ready .institution-hero-copy,
html.motion-enhanced .app-hero.hero-motion-ready .hero-copy,
html.motion-enhanced .page-hero.hero-motion-ready .hero-copy { opacity: 1; transform: translateY(0); }
html.motion-enhanced .app-hero .mobile-phone-front,
html.motion-enhanced .mobile-app-hero .mobile-phone-front,
html.motion-enhanced .hero-with-preview .mobile-phone-front { opacity: 0; transform: translateY(190px) rotate(5deg) scale(0.94); transition: opacity 760ms 220ms ease, transform 980ms 220ms cubic-bezier(0.16, 1, 0.3, 1); }
html.motion-enhanced .app-hero .mobile-phone-back,
html.motion-enhanced .mobile-app-hero .mobile-phone-back,
html.motion-enhanced .hero-with-preview .mobile-phone-back { opacity: 0; transform: translateY(220px) rotate(-13deg) scale(0.92); transition: opacity 760ms 380ms ease, transform 1050ms 380ms cubic-bezier(0.16, 1, 0.3, 1); }
html.motion-enhanced .app-hero.hero-motion-ready .mobile-phone-front,
html.motion-enhanced .mobile-app-hero.hero-motion-ready .mobile-phone-front,
html.motion-enhanced .hero-with-preview.hero-motion-ready .mobile-phone-front { opacity: 1; transform: translateY(0) rotate(1.5deg) scale(1); }
html.motion-enhanced .app-hero.hero-motion-ready .mobile-phone-back,
html.motion-enhanced .mobile-app-hero.hero-motion-ready .mobile-phone-back,
html.motion-enhanced .hero-with-preview.hero-motion-ready .mobile-phone-back { opacity: 0.82; transform: translateY(0) rotate(-7deg) scale(1); }
html.motion-enhanced .app-hero .mobile-app-identity,
html.motion-enhanced .mobile-app-hero .mobile-app-identity,
html.motion-enhanced .hero-with-preview .mobile-app-identity { opacity: 0; transform: translateY(14px); transition: opacity 600ms 620ms ease, transform 760ms 620ms cubic-bezier(0.16, 1, 0.3, 1); }
html.motion-enhanced .app-hero.hero-motion-ready .mobile-app-identity,
html.motion-enhanced .mobile-app-hero.hero-motion-ready .mobile-app-identity,
html.motion-enhanced .hero-with-preview.hero-motion-ready .mobile-app-identity { opacity: 1; transform: translateY(0); }

html.motion-enhanced .motion-section { opacity: 0; transform: translateY(34px) scale(0.992); transition: opacity 700ms ease, transform 820ms cubic-bezier(0.16, 1, 0.3, 1); }
html.motion-enhanced .motion-section.is-visible { opacity: 1; transform: translateY(0) scale(1); }
html.motion-enhanced .motion-item { opacity: 0; transform: translateY(24px); transition: opacity 620ms var(--motion-delay, 0ms) ease, transform 760ms var(--motion-delay, 0ms) cubic-bezier(0.16, 1, 0.3, 1); }
html.motion-enhanced .motion-item.is-visible { opacity: 1; transform: translateY(0); }
html.motion-enhanced .institution-console { opacity: 0; transform: translateY(80px) scale(0.965); transition: opacity 780ms 180ms ease, transform 1050ms 180ms cubic-bezier(0.16, 1, 0.3, 1); }
html.motion-enhanced .institution-page-hero.hero-motion-ready .institution-console { opacity: 1; transform: translateY(0) scale(1); }

.institution-pulse { animation: institution-pulse 2.8s ease-out infinite; }
@keyframes institution-pulse { 0% { transform: scale(0.82); opacity: 0.75; } 72%, 100% { transform: scale(1.16); opacity: 0; } }
html.motion-enhanced .institution-flow.is-visible .source-pill,
html.motion-enhanced .institution-flow.is-visible .institution-outcome { animation: institution-chip-in 560ms both cubic-bezier(0.16, 1, 0.3, 1); }
html.motion-enhanced .institution-flow.is-visible .source-pill:nth-child(2), html.motion-enhanced .institution-flow.is-visible .institution-outcome:nth-child(2) { animation-delay: 70ms; }
html.motion-enhanced .institution-flow.is-visible .source-pill:nth-child(3), html.motion-enhanced .institution-flow.is-visible .institution-outcome:nth-child(3) { animation-delay: 140ms; }
html.motion-enhanced .institution-flow.is-visible .source-pill:nth-child(4), html.motion-enhanced .institution-flow.is-visible .institution-outcome:nth-child(4) { animation-delay: 210ms; }
html.motion-enhanced .institution-flow.is-visible .source-pill:nth-child(5), html.motion-enhanced .institution-flow.is-visible .institution-outcome:nth-child(5) { animation-delay: 280ms; }
@keyframes institution-chip-in { from { opacity: 0; transform: translateX(-12px); } to { opacity: 1; transform: translateX(0); } }

.button { position: relative; overflow: hidden; }
.button::after { position: absolute; top: -80%; left: -60%; width: 42%; height: 260%; background: linear-gradient(90deg, transparent, rgb(255 255 255 / 20%), transparent); content: ""; pointer-events: none; transform: rotate(18deg) translateX(-220%); transition: transform 620ms cubic-bezier(0.16, 1, 0.3, 1); }
.button:hover::after { transform: rotate(18deg) translateX(620%); }
.command-card:hover, .audience-card:hover, .institution-capability:hover, .institution-module-grid article:hover, .institution-source-grid article:hover { transform: translateY(-5px); box-shadow: 0 18px 38px rgb(32 33 36 / 12%); }
.institution-capability, .institution-module-grid article, .institution-source-grid article, .audience-card { transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease; }

@media (max-width: 1080px) {
  .institution-capability-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .institution-capability-grid-compact { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .institution-hero-panel { grid-template-columns: 1fr; }
  .institution-console { min-height: 500px; }
  .institution-source-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .institution-module-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .institution-continuity-panel { grid-template-columns: 1fr; }
}

@media (max-width: 820px) {
  .audience-grid { grid-template-columns: 1fr; }
  .audience-card { min-height: 0; }
  .institution-workspace-shell { padding: 34px; border-radius: 28px; }
  .institution-flow { grid-template-columns: 1fr; }
  .institution-flow::before, .institution-flow::after { display: none; }
  .institution-flow-column { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .institution-flow-core { margin: 8px 0; }
  .institution-hero-panel { min-height: 0; padding: 40px 28px; border-radius: 28px; }
  .institution-console-grid { grid-template-columns: 100px minmax(0, 1fr); }
  .console-panels { grid-template-columns: 1fr; }
  .console-structure, .console-assessment { min-height: 180px; }
  .institution-source-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .institution-pricing-panel { grid-template-columns: 1fr; padding: 34px; }
  .institution-pricing-action { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 600px) {
  .institution-workspace-shell { padding: 28px 20px; }
  .institution-capability-grid, .institution-capability-grid-compact { grid-template-columns: 1fr; }
  .institution-capability { min-height: 0; }
  .institution-flow { padding: 22px; }
  .institution-flow-column { grid-template-columns: 1fr; }
  .institution-page-hero { padding-top: 16px; }
  .institution-hero-panel { padding: 34px 22px 22px; }
  .institution-hero-copy h1 { font-size: 38px; }
  .institution-console { min-height: 430px; border-radius: 22px; }
  .institution-console-grid { grid-template-columns: 74px minmax(0, 1fr); min-height: 362px; }
  .institution-console-grid aside { padding: 12px 7px; }
  .institution-console-grid aside span { padding: 7px 6px; font-size: 7px; }
  .institution-console-main { padding: 14px; }
  .console-stat-grid { grid-template-columns: 1fr; }
  .console-stat-grid div:nth-child(n+2) { display: none; }
  .console-panels { grid-template-columns: 1fr; }
  .console-assessment { display: none; }
  .institution-source-grid, .institution-module-grid { grid-template-columns: 1fr; }
  .institution-source-grid article, .institution-module-grid article { min-height: 0; }
  .institution-workflow-list li { grid-template-columns: 1fr; padding: 26px; }
  .institution-continuity-panel { padding: 32px 24px; border-radius: 26px; }
  .continuity-track { justify-content: flex-start; }
  .institution-pricing-factors { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  .institution-pulse { animation: none !important; opacity: 0.4; }
  html.motion-enhanced .hero-copy,
  html.motion-enhanced .mobile-app-hero-copy,
  html.motion-enhanced .institution-hero-copy,
  html.motion-enhanced .app-hero .mobile-phone-front,
  html.motion-enhanced .mobile-app-hero .mobile-phone-front,
  html.motion-enhanced .hero-with-preview .mobile-phone-front,
  html.motion-enhanced .app-hero .mobile-phone-back,
  html.motion-enhanced .mobile-app-hero .mobile-phone-back,
  html.motion-enhanced .hero-with-preview .mobile-phone-back,
  html.motion-enhanced .app-hero .mobile-app-identity,
  html.motion-enhanced .mobile-app-hero .mobile-app-identity,
  html.motion-enhanced .hero-with-preview .mobile-app-identity,
  html.motion-enhanced .motion-section,
  html.motion-enhanced .motion-item,
  html.motion-enhanced .institution-console { opacity: 1 !important; transform: none !important; transition: none !important; }
  .button::after { display: none; }
}
