:root {
  --page: #f4f5f3;
  --surface: #ffffff;
  --surface-soft: #f8f9fa;
  --ink: #080b10;
  --ink-soft: #27313d;
  --muted: #667085;
  --line: #d9e0e7;
  --line-strong: #bec8d3;
  --navy: #172330;
  --navy-2: #223447;
  --green: #2f7d59;
  --green-soft: #e5f3eb;
  --amber: #b77a24;
  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 22px;
  --shadow: 0 22px 60px rgba(16, 24, 40, .09);
  --container: 1180px;
  --section-space: clamp(78px, 9vw, 132px);
  color: var(--ink);
  background: var(--page);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-synthesis: none;
  line-height: 1.5;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; overflow-x: hidden; background: var(--page); }
img { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; text-decoration: none; }
p, h1, h2, h3, ol, ul { margin-top: 0; }
button { border: 0; }

.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;
  top: 8px;
  left: 8px;
  z-index: 100;
  padding: 10px 14px;
  color: #fff;
  background: var(--navy);
  border-radius: var(--radius-sm);
  transform: translateY(-150%);
}
.skip-link:focus { transform: translateY(0); }

:focus-visible { outline: 3px solid #7ab6e8; outline-offset: 3px; }
.container { width: min(var(--container), calc(100% - 40px)); margin: 0 auto; }
.section { padding: var(--section-space) 0; }
.eyebrow,
.mini-label {
  color: var(--muted);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.eyebrow { margin-bottom: 16px; }
h1, h2, h3 { color: var(--ink); letter-spacing: -.035em; }
h1 { margin-bottom: 24px; font-size: clamp(46px, 6.3vw, 78px); font-weight: 690; line-height: .99; }
h2 { margin-bottom: 0; font-size: clamp(34px, 4.4vw, 56px); font-weight: 650; line-height: 1.02; }
h3 { font-size: 20px; line-height: 1.2; }

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 19px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 760;
  line-height: 1;
  cursor: pointer;
  transition: transform .18s ease, background-color .18s ease, border-color .18s ease;
}
.button:hover { transform: translateY(-1px); }
.button-primary { color: #fff; background: var(--navy); border-color: var(--navy); }
.button-primary:hover { background: #0e1721; }
.button-secondary { color: var(--ink); background: transparent; border-color: var(--line-strong); }
.button-secondary:hover { background: #fff; }
.button-light { color: var(--navy); background: #fff; border-color: #fff; }
.button-wide { width: 100%; min-height: 54px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(244, 245, 243, .91);
  border-bottom: 1px solid rgba(190, 200, 211, .7);
  backdrop-filter: blur(18px);
}
.header-inner { display: flex; min-height: 70px; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 11px; }
.brand-mark { display: grid; width: 34px; height: 34px; place-items: center; color: #fff; background: var(--navy); border-radius: 50%; font-size: 13px; font-weight: 850; }
.brand strong, .brand small { display: block; }
.brand strong { font-size: 14px; letter-spacing: .08em; }
.brand small { margin-top: 1px; color: var(--muted); font-size: 8px; letter-spacing: .06em; text-transform: uppercase; }
.primary-navigation { display: flex; align-items: center; gap: 20px; color: #424d59; font-size: 12px; font-weight: 650; }
.primary-navigation > a { padding: 9px 0; }
.primary-navigation > a:hover { color: var(--ink); }
.header-cta { min-height: 42px; margin-left: 4px; padding-inline: 15px; font-size: 11px; }
.menu-toggle { display: none; width: 44px; height: 44px; place-content: center; gap: 4px; background: transparent; cursor: pointer; }
.menu-toggle > span:not(.sr-only) { display: block; width: 20px; height: 2px; background: var(--navy); }

.hero { padding: clamp(64px, 7vw, 98px) 0 78px; }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.7fr) minmax(285px, .7fr); gap: 68px; align-items: end; }
.hero-copy { max-width: 815px; }
.hero-lead { max-width: 700px; margin-bottom: 26px; color: var(--ink-soft); font-size: clamp(17px, 1.55vw, 20px); line-height: 1.48; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.trust-line { margin: 20px 0 0; color: var(--muted); font-size: 12px; font-weight: 650; }
.trust-line span { margin: 0 5px; color: #a4adb7; }
.hero-proof { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 22px; }
.hero-proof span { padding: 7px 9px; color: #475467; background: rgba(255,255,255,.72); border: 1px solid var(--line); border-radius: 7px; font-size: 10px; font-weight: 650; }
.hero-questions { padding: 23px 0 0 26px; border-left: 1px solid var(--line-strong); }
.hero-questions ol { margin: 20px 0 0; padding: 0; list-style: none; }
.hero-questions li { display: grid; grid-template-columns: 27px 1fr; gap: 9px; padding: 14px 0; color: var(--ink-soft); border-top: 1px solid var(--line); font-size: 13px; line-height: 1.35; }
.hero-questions li span { color: var(--muted); font-size: 9px; font-weight: 800; letter-spacing: .1em; }
.hero-visual-wrap { margin-top: 50px; }

.product-frame { overflow: hidden; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); }
.product-frame-hero { box-shadow: 0 32px 90px rgba(16, 24, 40, .14); }
.frame-bar { display: flex; min-height: 39px; align-items: center; justify-content: space-between; gap: 16px; padding: 0 14px; color: #798391; background: #f7f8f9; border-bottom: 1px solid var(--line); font-size: 9px; font-weight: 750; letter-spacing: .08em; text-transform: uppercase; }
.product-frame img { width: 100%; height: auto; }

.section-heading { margin-bottom: 48px; }
.section-heading.narrow { max-width: 900px; }
.section-heading.split { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(300px, .7fr); gap: 72px; align-items: end; }
.section-heading.split > p, .section-heading.split > div + p, .section-heading.narrow + p { margin-bottom: 0; color: var(--muted); font-size: 16px; line-height: 1.6; }

.problem-section { background: #fff; border-block: 1px solid var(--line); }
.problem-list { border-top: 1px solid var(--line-strong); }
.problem-list article { display: grid; grid-template-columns: 60px minmax(0, 1fr); gap: 22px; padding: 27px 0; border-bottom: 1px solid var(--line); }
.problem-list article > span { color: var(--muted); font-size: 10px; font-weight: 800; letter-spacing: .1em; }
.problem-list h3 { margin: 0 0 6px; }
.problem-list p { max-width: 720px; margin: 0; color: var(--muted); font-size: 15px; }

.section-dark { color: #fff; background: var(--navy); }
.section-dark h2, .section-dark h3 { color: #fff; }
.section-dark .eyebrow, .section-dark .mini-label { color: #9fb0c1; }
.section-heading.inverse > p, .section-heading.inverse > div + p { color: #bec9d4; }
.showcase-tabs { display: flex; gap: 7px; padding-bottom: 18px; overflow-x: auto; scrollbar-width: thin; }
.showcase-tabs button { flex: 0 0 auto; padding: 10px 12px; color: #b9c5d0; background: transparent; border: 1px solid #405063; border-radius: 7px; font-size: 11px; font-weight: 700; cursor: pointer; }
.showcase-tabs button[aria-selected="true"] { color: var(--navy); background: #fff; border-color: #fff; }
.showcase-panel { display: grid; grid-template-columns: minmax(220px, .37fr) minmax(0, 1.63fr); gap: 28px; align-items: start; padding-top: 15px; }
.showcase-copy { padding-top: 30px; }
.showcase-copy h3 { margin: 12px 0; font-size: 27px; }
.showcase-copy > p:last-child { color: #bec9d4; font-size: 14px; line-height: 1.6; }
.excel-proof { margin-top: 22px; padding-top: 17px; border-top: 1px solid #405063; }
.excel-proof[hidden] { display: none; }
.excel-proof > p { margin: 0 0 10px; color: #9fb0c1; font-size: 9px; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
.excel-proof > div { display: flex; flex-wrap: wrap; gap: 6px; }
.excel-proof span { padding: 5px 7px; color: #d4dde5; border: 1px solid #405063; border-radius: 5px; font-size: 9px; }
.excel-proof code { display: block; margin-top: 12px; padding: 9px 10px; overflow-wrap: anywhere; color: #e6edf3; background: #101a25; border-radius: 6px; font-family: "SFMono-Regular", Consolas, monospace; font-size: 9px; line-height: 1.5; }
.showcase-panel .product-frame { background: #eef1f4; border-color: #405063; box-shadow: 0 28px 70px rgba(0,0,0,.22); }
.showcase-panel .product-frame img { transition: opacity .18s ease; }
.showcase-panel.is-excel .product-frame img { background: #fff; }
.showcase-panel.is-changing .product-frame img { opacity: .25; }

.logic-flow { display: flex; align-items: center; justify-content: space-between; gap: 8px; margin-bottom: 38px; padding: 16px 20px; color: var(--ink-soft); background: #fff; border: 1px solid var(--line); font-size: 11px; font-weight: 720; }
.logic-flow i { color: #8f99a5; font-style: normal; }
.insight-layout { display: grid; grid-template-columns: minmax(0, 1.45fr) minmax(300px, .55fr); gap: 24px; align-items: start; }
.insight-product-frame img { aspect-ratio: 1.52 / 1; object-fit: cover; object-position: top; }
.insight-examples { border-top: 1px solid var(--line-strong); }
.insight-examples article { padding: 20px 0; border-bottom: 1px solid var(--line); }
.insight-examples article > span { color: var(--green); font-size: 9px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.insight-examples h3 { margin: 8px 0 7px; font-size: 17px; }
.insight-examples p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.55; }
.insight-examples .quiet-note { margin-top: 18px; font-size: 10px; }

.included-section { background: #fff; border-block: 1px solid var(--line); }
.included-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); border-top: 1px solid var(--line-strong); border-left: 1px solid var(--line); }
.included-grid article { min-height: 245px; padding: 28px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.block-number { display: block; margin-bottom: 54px; color: var(--muted); font-size: 10px; font-weight: 800; letter-spacing: .12em; }
.included-grid h3 { margin-bottom: 10px; font-size: 24px; }
.included-grid p { max-width: 470px; margin: 0; color: var(--muted); font-size: 14px; line-height: 1.58; }

.steps { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); border-top: 1px solid var(--line-strong); }
.steps article { min-height: 238px; padding: 27px 27px 27px 0; border-right: 1px solid var(--line); }
.steps article + article { padding-left: 27px; }
.steps article:last-child { border-right: 0; }
.steps span { color: var(--amber); font-size: 11px; font-weight: 850; letter-spacing: .1em; }
.steps h3 { margin: 56px 0 9px; }
.steps p { margin: 0; color: var(--muted); font-size: 14px; }
.workflow-line { display: grid; grid-template-columns: auto 1fr auto 1fr auto; gap: 13px; align-items: center; margin-top: 28px; padding: 13px 16px; color: #465260; background: #fff; border: 1px solid var(--line); font-size: 10px; font-weight: 730; text-transform: uppercase; letter-spacing: .08em; }
.workflow-line i { height: 1px; background: var(--line-strong); }

.proof-strip { padding: 34px 0; color: #fff; background: var(--navy); }
.proof-grid { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); }
.proof-grid span { min-height: 64px; display: flex; align-items: center; padding: 0 14px; border-left: 1px solid #425265; font-size: 11px; font-weight: 650; line-height: 1.4; }
.proof-grid span:last-child { border-right: 1px solid #425265; }
.proof-strip > p { margin: 16px auto 0; color: #9fb0c1; font-size: 10px; text-align: center; }

.audience-grid { display: grid; grid-template-columns: 1fr 1fr; border: 1px solid var(--line); }
.audience-grid article { padding: 34px; background: #fff; }
.audience-grid article + article { border-left: 1px solid var(--line); }
.audience-grid .audience-muted { background: #eef1f3; }
.audience-grid h3 { max-width: 380px; margin: 15px 0 22px; font-size: 28px; }
.audience-grid ul { display: grid; gap: 10px; margin: 0; padding: 0; list-style: none; color: #4d5967; font-size: 13px; }
.audience-grid li { position: relative; padding-left: 16px; }
.audience-grid li::before { content: ""; position: absolute; left: 0; top: .62em; width: 6px; height: 1px; background: var(--green); }
.audience-muted li::before { background: #7e8995; }

.comparison-section { background: #fff; border-block: 1px solid var(--line); }
.comparison-wrap { overflow-x: auto; border: 1px solid var(--line); }
.comparison-wrap table { width: 100%; min-width: 620px; border-collapse: collapse; background: #fff; }
.comparison-wrap th, .comparison-wrap td { width: 50%; padding: 16px 20px; border-bottom: 1px solid var(--line); text-align: left; }
.comparison-wrap th { color: var(--muted); background: #f5f7f8; font-size: 10px; letter-spacing: .1em; text-transform: uppercase; }
.comparison-wrap th + th, .comparison-wrap td + td { color: var(--navy); background: #f8fbf9; border-left: 1px solid var(--line); font-weight: 720; }
.comparison-wrap tbody tr:last-child td { border-bottom: 0; }
.comparison-wrap td { color: #667085; font-size: 13px; }

.pricing-section { color: #fff; background: var(--navy); }
.pricing-layout { display: grid; grid-template-columns: minmax(270px, .62fr) minmax(0, 1.38fr); gap: 64px; align-items: start; }
.pricing-copy { position: sticky; top: 104px; }
.pricing-copy h2 { color: #fff; }
.pricing-copy > p:last-child { max-width: 400px; margin-top: 22px; color: #bdc8d3; }
.pricing-section .eyebrow { color: #9fb0c1; }
.pricing-card { padding: 34px; color: var(--ink); background: #fff; border-radius: var(--radius); box-shadow: 0 28px 70px rgba(0,0,0,.18); }
.pricing-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 24px; padding-bottom: 25px; border-bottom: 1px solid var(--line); }
.pricing-top h3 { margin: 9px 0 0; font-size: clamp(26px, 3vw, 38px); }
.pricing-top > span { flex: 0 0 auto; padding: 7px 9px; color: #3f4d5b; background: #f2f4f6; border-radius: 7px; font-size: 9px; font-weight: 750; text-transform: uppercase; }
.pricing-columns { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; padding: 26px 0; }
.pricing-columns ul { display: grid; gap: 10px; margin: 0; padding: 0; list-style: none; color: #475467; font-size: 12px; }
.pricing-columns li { position: relative; padding-left: 18px; }
.pricing-columns li::before { content: ""; position: absolute; left: 0; top: .48em; width: 8px; height: 8px; background: var(--green-soft); border: 2px solid var(--green); border-radius: 50%; }
.pricing-renewal { margin: 13px 0 0; color: var(--muted); font-size: 10px; text-align: center; }
.financial-note { grid-column: 2; margin: -42px 0 0; color: #93a5b6; font-size: 9px; line-height: 1.5; }

.license-timeline { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line-strong); }
.license-timeline li { min-height: 205px; padding: 25px 24px 20px 0; border-right: 1px solid var(--line); }
.license-timeline li + li { padding-left: 24px; }
.license-timeline li:last-child { border-right: 0; }
.license-timeline span { color: var(--muted); font-size: 9px; font-weight: 800; letter-spacing: .1em; }
.license-timeline strong, .license-timeline small { display: block; }
.license-timeline strong { margin-top: 51px; color: var(--ink); font-size: 16px; }
.license-timeline small { margin-top: 8px; color: var(--muted); font-size: 11px; line-height: 1.5; }
.license-facts { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; margin-top: 16px; background: var(--line); border: 1px solid var(--line); }
.license-facts p { margin: 0; padding: 17px; color: #4b5663; background: #fff; font-size: 11px; }

.faq-section { background: #fff; border-top: 1px solid var(--line); }
.faq-layout { display: grid; grid-template-columns: minmax(280px, .6fr) minmax(0, 1.4fr); gap: 72px; align-items: start; }
.faq-intro { position: sticky; top: 104px; }
.faq-intro > p:last-child { margin-top: 20px; color: var(--muted); font-size: 13px; }
.faq-list { border-top: 1px solid var(--line-strong); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { position: relative; padding: 19px 36px 19px 0; color: var(--ink); font-size: 14px; font-weight: 690; cursor: pointer; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; position: absolute; top: 17px; right: 3px; color: var(--muted); font-size: 20px; font-weight: 400; }
.faq-list details[open] summary::after { content: "−"; }
.faq-list details p { max-width: 750px; margin: -4px 40px 20px 0; color: var(--muted); font-size: 13px; line-height: 1.6; }

.final-cta { padding: 76px 0; color: #fff; background: #0e1721; }
.final-cta-inner { display: grid; grid-template-columns: minmax(0, 1.4fr) minmax(220px, .6fr); gap: 60px; align-items: end; }
.final-cta h2 { color: #fff; }
.final-cta .eyebrow { color: #91a4b7; }
.final-cta-inner > div:first-child > p:last-child { max-width: 720px; margin: 20px 0 0; color: #b7c3cf; }
.final-cta-inner > div:last-child { text-align: right; }
.final-cta-inner > div:last-child p { margin: 11px 0 0; color: #91a4b7; font-size: 10px; }

.site-footer { padding: 62px 0 25px; color: #b5c0cb; background: #111a24; border-top: 1px solid #304051; }
.footer-grid { display: grid; grid-template-columns: 1.4fr .75fr .75fr .9fr; gap: 50px; }
.footer-brand strong { color: #fff; }
.footer-brand small { color: #91a4b7; }
.footer-grid > div > p { max-width: 290px; margin: 18px 0 0; font-size: 11px; }
.footer-grid nav, .footer-grid > div:last-child { display: grid; align-content: start; gap: 9px; }
.footer-grid nav strong, .footer-grid > div:last-child > strong { margin-bottom: 4px; color: #fff; font-size: 11px; }
.footer-grid nav a, .footer-grid > div:last-child p { color: #9eacb9; font-size: 10px; }
.footer-grid nav a:hover { color: #fff; }
.footer-grid > div:last-child p { margin: 0; }
.footer-bottom { display: flex; justify-content: space-between; gap: 30px; margin-top: 52px; padding-top: 22px; border-top: 1px solid #304051; color: #7f909f; font-size: 9px; }
.footer-bottom p { max-width: 850px; margin: 0; }
.footer-bottom span { flex: 0 0 auto; }

.toast { position: fixed; right: 18px; bottom: 18px; z-index: 90; max-width: min(380px, calc(100% - 36px)); padding: 13px 16px; color: #fff; background: var(--navy); border-left: 3px solid var(--amber); border-radius: var(--radius-sm); box-shadow: var(--shadow); font-size: 12px; opacity: 0; pointer-events: none; transform: translateY(12px); transition: opacity .2s ease, transform .2s ease; }
.toast.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1080px) {
  .primary-navigation { gap: 13px; }
  .primary-navigation > a { font-size: 10px; }
  .hero-grid { grid-template-columns: minmax(0, 1.45fr) minmax(250px, .55fr); gap: 42px; }
  .proof-grid { grid-template-columns: repeat(3, 1fr); }
  .proof-grid span:nth-child(4) { border-left-color: transparent; }
}

@media (max-width: 900px) {
  .menu-toggle { display: grid; }
  .primary-navigation { position: absolute; top: 70px; right: 20px; left: 20px; display: none; align-items: stretch; gap: 0; padding: 12px; color: var(--ink); background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); }
  .primary-navigation.is-open { display: grid; }
  .primary-navigation > a { padding: 12px; border-bottom: 1px solid var(--line); font-size: 12px; }
  .header-cta { margin: 12px 0 0; }
  .hero-grid, .section-heading.split, .insight-layout, .pricing-layout, .faq-layout, .final-cta-inner { grid-template-columns: 1fr; }
  .hero-questions { max-width: 620px; padding-left: 0; border-left: 0; border-top: 1px solid var(--line-strong); }
  .showcase-panel { grid-template-columns: 1fr; }
  .showcase-copy { padding-top: 0; }
  .insight-product-frame img { aspect-ratio: auto; }
  .pricing-copy, .faq-intro { position: static; }
  .financial-note { grid-column: 1; margin-top: -45px; }
  .license-timeline { grid-template-columns: repeat(2, 1fr); }
  .license-timeline li:nth-child(2) { border-right: 0; }
  .license-timeline li:nth-child(n+3) { border-top: 1px solid var(--line); }
  .final-cta-inner > div:last-child { text-align: left; }
  .footer-grid { grid-template-columns: 1.3fr 1fr 1fr; }
  .footer-grid > div:last-child { grid-column: 1 / -1; }
}

@media (max-width: 720px) {
  .container { width: min(100% - 24px, var(--container)); }
  .section { padding: 74px 0; }
  h1 { font-size: clamp(42px, 13vw, 58px); }
  h2 { font-size: clamp(32px, 9vw, 44px); }
  .brand small { display: none; }
  .hero { padding-top: 60px; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .trust-line { line-height: 1.8; }
  .frame-bar { font-size: 7px; }
  .product-frame-hero { overflow-x: auto; }
  .product-frame-hero img { width: 920px; max-width: none; height: auto; object-fit: contain; object-position: top left; }
  .problem-list article { grid-template-columns: 34px 1fr; gap: 10px; }
  .logic-flow { align-items: stretch; flex-direction: column; }
  .logic-flow i { transform: rotate(90deg); text-align: center; }
  .included-grid, .steps, .audience-grid, .pricing-columns, .license-facts { grid-template-columns: 1fr; }
  .included-grid article { min-height: 215px; }
  .steps article, .steps article + article { min-height: 190px; padding: 24px 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .steps article:last-child { border-bottom: 0; }
  .steps h3 { margin-top: 36px; }
  .workflow-line { grid-template-columns: 1fr; text-align: center; }
  .workflow-line i { width: 1px; height: 20px; margin: 0 auto; }
  .proof-grid { grid-template-columns: repeat(2, 1fr); }
  .proof-grid span, .proof-grid span:nth-child(4) { border-left: 1px solid #425265; }
  .audience-grid article + article { border-top: 1px solid var(--line); border-left: 0; }
  .pricing-card { padding: 24px 18px; }
  .pricing-top { align-items: flex-start; flex-direction: column; }
  .license-timeline { grid-template-columns: 1fr; }
  .license-timeline li, .license-timeline li + li { min-height: 0; padding: 23px 0; border-right: 0; border-top: 1px solid var(--line); }
  .license-timeline li:first-child { border-top: 0; }
  .license-timeline strong { margin-top: 26px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px 22px; }
  .footer-grid > div:first-child, .footer-grid > div:last-child { grid-column: 1 / -1; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 420px) {
  .header-inner { min-height: 64px; }
  .primary-navigation { top: 64px; right: 12px; left: 12px; }
  .hero-proof { display: grid; }
  .showcase-tabs { margin-right: -12px; }
  .showcase-panel .product-frame img { width: 720px; max-width: none; height: 470px; object-fit: cover; object-position: top left; }
  .showcase-panel.is-current .product-frame img { object-position: 45% top; }
  .showcase-panel.is-excel .product-frame { overflow-x: auto; }
  .showcase-panel.is-excel .product-frame img { width: 720px; height: auto; object-fit: contain; }
  .proof-grid { grid-template-columns: 1fr; }
  .proof-grid span, .proof-grid span:nth-child(4), .proof-grid span:last-child { min-height: 50px; border-right: 1px solid #425265; border-bottom: 1px solid #425265; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-grid > div:first-child, .footer-grid > div:last-child { grid-column: 1; }
}

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