:root {
    --blue: #7aafcb;
    --blue-dark: #36708f;
    --sand: #a19b7f;
    --sand-dark: #7c765a;
    --green: #6b837d;
    --red: #8d4e39;
    --ink: #203746;
    --ink-soft: #51636d;
    --cream: #f4f2ec;
    --paper: #fff;
    --line: rgba(32, 55, 70, .13);
    --radius: 8px;
    --shadow: 0 24px 70px rgba(32, 55, 70, .14);
    --shell: 1220px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--cream); font-family: Arial, Helvetica, sans-serif; line-height: 1.55; -webkit-font-smoothing: antialiased; }
body.menu-open { overflow: hidden; }
img { max-width: 100%; }
a { color: inherit; }
button, input { font: inherit; }
.shell { width: min(var(--shell), calc(100% - 40px)); margin-inline: auto; }
.section { padding: 120px 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; z-index: 999; top: 12px; left: 12px; padding: 10px 14px; border-radius: var(--radius); background: var(--ink); color: white; transform: translateY(-150%); }
.skip-link:focus { transform: none; }

.site-header { position: fixed; z-index: 100; top: 0; left: 0; width: 100%; transition: background .25s ease, box-shadow .25s ease; }
.site-header.scrolled { background: rgba(244, 242, 236, .92); box-shadow: 0 8px 30px rgba(32, 55, 70, .08); backdrop-filter: blur(16px); }
.header-inner { min-height: 88px; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; }
.brand-mark { width: 56px; height: 42px; overflow: hidden; border-radius: 6px; background: var(--blue); }
.brand-mark img { width: 210px; max-width: none; height: 42px; object-fit: cover; object-position: left center; }
.brand-name { color: var(--ink); font-size: 20px; font-weight: 800; letter-spacing: -.04em; }
.brand-name span { color: var(--blue-dark); }
.site-nav { display: flex; align-items: center; gap: 30px; }
.site-nav a { position: relative; color: var(--ink); font-size: 14px; font-weight: 700; text-decoration: none; }
.site-nav a:not(.nav-cta)::after { content: ""; position: absolute; left: 0; bottom: -6px; width: 100%; height: 2px; background: var(--blue-dark); transform: scaleX(0); transform-origin: right; transition: transform .2s ease; }
.site-nav a:hover::after { transform: scaleX(1); transform-origin: left; }
.site-nav .nav-cta { padding: 11px 17px; border-radius: var(--radius); background: var(--ink); color: #fff; }
.site-nav .nav-cta:hover { background: var(--blue-dark); }
.menu-toggle { display: none; width: 44px; height: 44px; padding: 10px; border: 0; border-radius: var(--radius); background: var(--ink); }
.menu-toggle>span:not(.sr-only) { display: block; width: 100%; height: 2px; margin: 4px 0; background: white; transition: .2s ease; }

.hero { position: relative; min-height: 890px; padding: 160px 0 90px; overflow: hidden; background: linear-gradient(130deg, #f4f2ec 0%, #f4f2ec 58%, #e5eef1 100%); }
.hero::after { content: ""; position: absolute; left: 0; bottom: 0; width: 35%; height: 8px; background: var(--sand); }
.hero-shape { position: absolute; border-radius: 50%; pointer-events: none; }
.hero-shape-one { width: 520px; height: 520px; top: -260px; right: -120px; border: 95px solid rgba(122, 175, 203, .16); }
.hero-shape-two { width: 260px; height: 260px; left: -145px; bottom: 70px; background: rgba(161, 155, 127, .13); }
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(0, .85fr) minmax(570px, 1.15fr); gap: 65px; align-items: center; }
.kicker { display: flex; align-items: center; gap: 10px; margin: 0 0 20px; color: var(--blue-dark); font-size: 12px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.kicker span { width: 34px; height: 2px; background: currentColor; }
.kicker.light { color: #dfeaed; }
.hero h1, .section-heading h2, .workflow h2, .toolbox h2, .contact h2 { margin: 0; font-size: clamp(52px, 6vw, 86px); line-height: .98; letter-spacing: -.065em; }
.hero h1 em, .section-heading h2 em { color: var(--blue-dark); font-family: Georgia, 'Times New Roman', serif; font-weight: 400; }
.hero-intro { max-width: 620px; margin: 28px 0; color: var(--ink-soft); font-size: 19px; }
.hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; margin-top: 32px; }
.button { display: inline-flex; min-height: 50px; align-items: center; justify-content: center; gap: 9px; padding: 12px 21px; border: 0; border-radius: var(--radius); font-size: 14px; font-weight: 800; text-decoration: none; transition: transform .2s ease, background .2s ease, color .2s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--blue-dark); color: white; }
.button-primary:hover { background: var(--ink); }
.button-quiet { color: var(--ink); }
.button-quiet:hover { background: white; }
.play-icon { display: grid; width: 27px; height: 27px; place-items: center; border-radius: 50%; background: var(--sand); color: white; font-size: 9px; }
.hero-facts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin: 55px 0 0; padding: 24px 0 0; border-top: 1px solid var(--line); list-style: none; }
.hero-facts li { display: grid; }
.hero-facts strong { font-size: 13px; }
.hero-facts span { color: var(--ink-soft); font-size: 11px; }

.product-stage { position: relative; perspective: 1600px; }
.browser-card { overflow: hidden; border: 8px solid rgba(255, 255, 255, .75); border-radius: 14px; background: white; box-shadow: var(--shadow); transform: rotateY(-4deg) rotateX(1deg); }
.browser-top { height: 48px; display: grid; grid-template-columns: 70px 1fr 28px; align-items: center; gap: 14px; padding: 0 15px; background: #f5f6f5; border-bottom: 1px solid #e3e6e4; }
.browser-dots { display: flex; gap: 5px; }
.browser-dots i { width: 8px; height: 8px; border-radius: 50%; background: #c7cdca; }
.browser-dots i:first-child { background: var(--red); }
.browser-dots i:nth-child(2) { background: var(--sand); }
.browser-dots i:nth-child(3) { background: var(--green); }
.browser-address { padding: 6px 13px; border-radius: 5px; background: white; color: #9aa3a5; font-size: 10px; text-align: center; }
.browser-avatar { display: grid; width: 24px; height: 24px; place-items: center; border-radius: 50%; background: var(--blue-dark); color: white; font-size: 10px; font-weight: 800; }
.cms-frame { min-height: 500px; display: grid; grid-template-columns: 132px minmax(0, 1fr); }
.cms-sidebar { display: flex; flex-direction: column; padding: 18px 10px 12px; background: var(--ink); color: white; }
.cms-logo { display: grid; gap: 5px; padding: 0 7px 22px; font-size: 12px; }
.cms-logo img { width: 80px; height: 16px; object-fit: cover; }
.cms-sidebar button { display: flex; align-items: center; gap: 8px; padding: 10px; border: 0; border-radius: 6px; background: transparent; color: #b9c4c9; font-size: 10px; font-weight: 700; text-align: left; cursor: pointer; }
.cms-sidebar button span { width: 18px; font-size: 15px; text-align: center; }
.cms-sidebar button:hover, .cms-sidebar button.active { background: var(--blue-dark); color: white; }
.cms-account { display: flex; align-items: center; gap: 7px; margin-top: auto; padding: 10px 6px 0; border-top: 1px solid rgba(255,255,255,.12); }
.cms-account span { display: grid; width: 26px; height: 26px; place-items: center; border-radius: 50%; background: var(--sand); font-size: 9px; font-weight: 800; }
.cms-account small { color: #c8d0d3; font-size: 8px; }
.cms-content { position: relative; min-width: 0; padding: 25px; background: #eef2f2; }
.demo-screen { display: none; }
.demo-screen.active { display: block; animation: demoIn .28s ease both; }
@keyframes demoIn { from { opacity: 0; transform: translateY(5px); } }
.cms-heading { display: flex; align-items: flex-end; justify-content: space-between; gap: 12px; margin-bottom: 18px; }
.cms-heading small { color: var(--sand-dark); font-size: 8px; text-transform: uppercase; letter-spacing: .12em; }
.cms-heading h2 { margin: 1px 0 0; font-size: 24px; letter-spacing: -.04em; }
.cms-heading button, .new-page-card button { padding: 8px 10px; border: 0; border-radius: 5px; background: var(--blue-dark); color: white; font-size: 8px; font-weight: 800; }
.cms-tabs { display: flex; gap: 5px; margin-bottom: 12px; }
.cms-tabs span, .cms-tabs b { flex: 1; padding: 7px; border-radius: 5px; background: #ddd9ca; font-size: 7px; text-align: center; }
.cms-tabs b { background: var(--blue-dark); color: white; }
.page-list { overflow: hidden; border-radius: 6px; background: white; }
.page-row { display: grid; grid-template-columns: 20px 20px minmax(80px, .8fr) minmax(100px, 1fr) 26px 20px; gap: 5px; align-items: center; min-height: 42px; padding: 7px 10px; border-bottom: 1px solid #ebeeec; font-size: 8px; }
.page-row:last-child { border-bottom: 0; }
.page-row.child strong { padding-left: 15px; }
.page-row i { color: #acb4b5; font-style: normal; }
.page-row .status { font-size: 15px; }
.status.public { color: var(--sand); }.status.hidden { color: #adb3b1; }.status.landing { color: var(--blue); }
.page-row small { overflow: hidden; color: #9aa3a5; text-overflow: ellipsis; white-space: nowrap; }
.page-row em { padding: 3px; border-radius: 3px; background: var(--cream); font-style: normal; text-align: center; }
.new-page-card { display: grid; grid-template-columns: 1fr 1.2fr 1.2fr auto; gap: 8px; align-items: center; margin-top: 14px; padding: 11px; border-radius: 6px; background: white; }
.new-page-card div { display: grid; font-size: 8px; }
.new-page-card small { color: var(--sand-dark); font-size: 6px; text-transform: uppercase; }
.new-page-card>span { padding: 8px; border: 1px solid #d9dfdd; border-radius: 4px; color: #9aa3a5; font-size: 7px; }
.floating-note { position: absolute; z-index: 3; display: flex; align-items: center; gap: 7px; padding: 10px 13px; border-radius: var(--radius); background: white; box-shadow: 0 12px 30px rgba(32,55,70,.16); font-size: 10px; font-weight: 800; }
.floating-note span { display: grid; width: 20px; height: 20px; place-items: center; border-radius: 50%; background: var(--green); color: white; font-size: 9px; }
.note-one { right: -28px; bottom: 65px; }.note-two { top: 76px; left: -42px; }.note-two span { background: var(--blue-dark); }
.upload-zone { display: grid; min-height: 180px; place-items: center; align-content: center; border: 2px dashed var(--blue); border-radius: 6px; background: #e1f0f5; text-align: center; }
.upload-zone span { color: var(--blue-dark); font-size: 34px; line-height: 1; }.upload-zone strong { font-size: 12px; }.upload-zone small { color: var(--ink-soft); font-size: 8px; }
.media-demo-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 7px; margin-top: 12px; }.media-demo-grid i { aspect-ratio: 1; border-radius: 5px; background: linear-gradient(145deg, var(--sand), #d7d1bc); }.media-demo-grid i:nth-child(2n) { background: linear-gradient(145deg, var(--blue), #d5e9f1); }
.score-card { display: flex; align-items: center; gap: 18px; padding: 25px; border-radius: 7px; background: white; }.score-ring { display: grid; width: 72px; height: 72px; place-items: center; border: 8px solid #d8e5e2; border-top-color: var(--green); border-radius: 50%; color: var(--green); font-size: 18px; font-weight: 800; }.score-card div:last-child { display: grid; }.score-card strong { font-size: 13px; }.score-card small { color: var(--ink-soft); font-size: 8px; }.seo-lines { display: grid; gap: 9px; margin-top: 15px; }.seo-lines span { height: 43px; border-radius: 6px; background: white; }.seo-lines span::before { content: ""; display: block; width: 45%; height: 7px; margin: 10px; border-radius: 10px; background: #d9dfdd; }
.extras-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }.extras-grid article { display: grid; min-height: 130px; align-content: center; justify-items: center; border-radius: 7px; background: white; }.extras-grid b { color: var(--blue-dark); font-size: 25px; }.extras-grid strong { font-size: 11px; }.extras-grid small { color: var(--sand-dark); font-size: 8px; }

.principles { padding: 28px 0; background: var(--ink); color: white; }
.principle-row { display: grid; grid-template-columns: repeat(3, 1fr); }
.principle-row p { margin: 0; padding: 0 30px; border-right: 1px solid rgba(255,255,255,.15); font-size: 13px; font-weight: 700; text-align: center; }
.principle-row p:last-child { border-right: 0; }.principle-row span { margin-right: 10px; color: var(--blue); font-size: 10px; }

.section-heading { max-width: 760px; margin-bottom: 55px; }
.section-heading h2, .toolbox h2 { font-size: clamp(42px, 5vw, 68px); }
.section-heading>p:last-child { max-width: 600px; margin-top: 25px; color: var(--ink-soft); font-size: 17px; }
.section-heading.centered { margin-inline: auto; text-align: center; }.section-heading.centered .kicker { justify-content: center; }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.feature-card { position: relative; min-height: 500px; padding: 35px; overflow: hidden; border-radius: var(--radius); }
.feature-card-blue { background: #dfeef4; }.feature-card-sand { background: #e6e2d5; }.feature-card-green { background: #dce7e4; }
.feature-card::after { content: ""; position: absolute; right: -60px; bottom: -70px; width: 190px; height: 190px; border: 35px solid rgba(255,255,255,.4); border-radius: 50%; }
.feature-icon { display: grid; width: 62px; height: 62px; place-items: center; border-radius: var(--radius); background: white; color: var(--blue-dark); font-size: 28px; box-shadow: 0 12px 25px rgba(32,55,70,.08); }
.card-number { position: absolute; top: 35px; right: 35px; margin: 0; color: rgba(32,55,70,.35); font-size: 11px; font-weight: 800; }
.feature-card h3 { max-width: 290px; margin: 55px 0 18px; font-size: 29px; line-height: 1.08; letter-spacing: -.04em; }
.feature-card>p:not(.card-number) { color: var(--ink-soft); font-size: 15px; }
.feature-card ul, .edition-card ul { position: relative; z-index: 2; display: grid; gap: 8px; margin: 28px 0 0; padding: 0; list-style: none; }
.feature-card li, .edition-card li { font-size: 13px; font-weight: 700; }.feature-card li::before, .edition-card li::before { content: "✓"; margin-right: 8px; color: var(--green); }

.workflow { background: var(--blue-dark); color: white; }
.workflow-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 100px; align-items: start; }
.workflow h2 { max-width: 500px; font-size: clamp(42px, 5vw, 67px); }
.workflow-copy>p:not(.kicker) { max-width: 500px; color: #d8e5e9; font-size: 17px; }
.text-link { display: inline-flex; align-items: center; gap: 9px; margin-top: 22px; padding-bottom: 4px; border-bottom: 1px solid rgba(255,255,255,.4); font-weight: 800; text-decoration: none; }.text-link span { font-size: 22px; }
.workflow-steps { margin: 0; padding: 0; list-style: none; }
.workflow-steps li { display: grid; grid-template-columns: 58px 1fr; gap: 23px; padding: 31px 0; border-top: 1px solid rgba(255,255,255,.18); }
.workflow-steps li:last-child { border-bottom: 1px solid rgba(255,255,255,.18); }
.workflow-steps>li>span { display: grid; width: 48px; height: 48px; place-items: center; border-radius: 50%; background: var(--sand); font-size: 14px; font-weight: 800; }
.workflow-steps h3 { margin: 0 0 7px; font-size: 22px; }.workflow-steps p { margin: 0; color: #d8e5e9; font-size: 14px; }

.toolbox { overflow: hidden; }
.toolbox-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 100px; align-items: center; }
.toolbox-visual { position: relative; min-height: 560px; }
.orbit { position: absolute; top: 50%; left: 50%; border: 1px solid rgba(54,112,143,.25); border-radius: 50%; transform: translate(-50%,-50%); }.orbit-one { width: 340px; height: 340px; }.orbit-two { width: 520px; height: 520px; border-color: rgba(161,155,127,.3); }
.tool-card { position: absolute; z-index: 2; display: grid; min-width: 145px; padding: 20px; border-radius: var(--radius); background: white; box-shadow: 0 18px 45px rgba(32,55,70,.12); }
.tool-card>span { color: var(--blue-dark); font-size: 26px; font-weight: 800; }.tool-card strong { font-size: 13px; }.tool-card small { color: var(--sand-dark); font-size: 10px; }
.tool-center { top: 50%; left: 50%; min-width: 190px; min-height: 150px; place-content: center; justify-items: center; transform: translate(-50%,-50%); }.tool-center img { width: 115px; margin-bottom: 14px; }.tool-center strong { font-size: 17px; }
.tool-a { top: 15%; left: 8%; }.tool-b { top: 12%; right: 0; }.tool-c { bottom: 11%; left: 3%; }.tool-d { right: 6%; bottom: 8%; }
.toolbox-copy>p:not(.kicker) { color: var(--ink-soft); font-size: 17px; }
.quote { margin-top: 35px; padding: 23px; border-radius: var(--radius); background: #e3ded0; }.quote p { margin: 0; color: var(--sand-dark); font-family: Georgia, 'Times New Roman', serif; font-size: 20px; font-style: italic; }

.editions { background: #e2edf0; }
.edition-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 470px)); gap: 20px; justify-content: center; align-items: stretch; }
.edition-card { display: flex; min-height: 540px; flex-direction: column; padding: 42px; border-radius: var(--radius); background: white; box-shadow: 0 18px 55px rgba(32,55,70,.08); }
.edition-card.featured { position: relative; background: var(--ink); color: white; transform: translateY(-15px); }
.popular { position: absolute; top: 18px; right: 18px; padding: 6px 9px; border-radius: 5px; background: var(--blue); color: var(--ink); font-size: 9px; font-weight: 800; text-transform: uppercase; }
.edition-top>span { color: var(--blue-dark); font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .12em; }.featured .edition-top>span { color: var(--blue); }
.edition-top h3 { margin: 5px 0 20px; font-size: 60px; letter-spacing: -.06em; }.edition-top p { min-height: 75px; color: var(--ink-soft); }.featured .edition-top p { color: #c7d2d6; }
.edition-card ul { gap: 13px; margin: 30px 0; }.edition-card.featured li::before { color: var(--blue); }
.edition-card .button { width: 100%; margin-top: auto; }.button-outline { border: 1px solid var(--blue-dark); color: var(--blue-dark); }.button-outline:hover { background: var(--blue-dark); color: white; }.button-light { background: white; color: var(--ink); }.button-light:hover { background: var(--blue); }

.audiences { background: white; }
.audience-grid { display: grid; grid-template-columns: repeat(3,1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.audience-grid article { min-height: 310px; padding: 40px; border-right: 1px solid var(--line); }.audience-grid article:last-child { border-right: 0; }
.audience-number { color: var(--sand); font-size: 11px; font-weight: 800; }.audience-grid h3 { margin: 70px 0 15px; font-size: 25px; letter-spacing: -.04em; }.audience-grid p { color: var(--ink-soft); font-size: 14px; }

.faq-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: 100px; }.faq .section-heading { position: sticky; top: 130px; align-self: start; }.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }.faq-list summary { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 25px 0; cursor: pointer; list-style: none; font-size: 18px; font-weight: 800; }.faq-list summary::-webkit-details-marker { display: none; }.faq-list summary span { color: var(--blue-dark); font-size: 25px; font-weight: 400; transition: transform .2s ease; }.faq-list details[open] summary span { transform: rotate(45deg); }.faq-list details p { margin: -8px 45px 25px 0; color: var(--ink-soft); }

.contact { padding: 40px 0 100px; }.contact-card { display: grid; grid-template-columns: 1.3fr .7fr; gap: 60px; align-items: center; padding: 65px; border-radius: var(--radius); background: var(--blue-dark); color: white; box-shadow: var(--shadow); }.contact h2 { max-width: 700px; font-size: clamp(40px,5vw,65px); }.contact-card>div>p:not(.kicker) { max-width: 660px; color: #dbe8ec; }.contact-actions { display: grid; gap: 12px; justify-items: stretch; }.contact-actions small { color: #dbe8ec; font-size: 11px; text-align: center; }

.site-footer { padding: 70px 0 25px; background: var(--ink); color: white; }.footer-grid { display: grid; grid-template-columns: 1.8fr .6fr .6fr; gap: 70px; padding-bottom: 60px; }.footer-brand .brand-name { color: white; }.footer-brand .brand-name span { color: var(--blue); }.footer-grid>div>p { max-width: 390px; color: #aebcc2; font-size: 13px; }.footer-grid nav { display: grid; align-content: start; gap: 9px; }.footer-grid nav strong { margin-bottom: 8px; color: var(--blue); font-size: 11px; text-transform: uppercase; letter-spacing: .12em; }.footer-grid nav a { color: #c9d2d6; font-size: 13px; text-decoration: none; }.footer-grid nav a:hover { color: white; }.footer-bottom { display: flex; justify-content: space-between; padding-top: 23px; border-top: 1px solid rgba(255,255,255,.13); color: #879aa2; font-size: 11px; }

[data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }.revealed { opacity: 1; transform: none; }

@media (max-width: 1080px) {
    .site-nav { gap: 18px; }
    .hero { min-height: auto; }
    .hero-grid { grid-template-columns: 1fr; }
    .hero-copy { max-width: 780px; }
    .product-stage { width: min(760px, 100%); margin-inline: auto; }
    .feature-card { padding: 27px; }
    .workflow-grid, .toolbox-grid { gap: 55px; }
    .toolbox-grid { grid-template-columns: 1fr; }.toolbox-visual { order: 2; max-width: 680px; width: 100%; margin-inline: auto; }.toolbox-copy { max-width: 700px; }
}

@media (max-width: 820px) {
    .section { padding: 85px 0; }
    .header-inner { min-height: 74px; }
    .menu-toggle { display: block; }
    .site-nav { position: fixed; inset: 74px 0 auto; display: grid; gap: 0; padding: 20px; background: var(--cream); box-shadow: 0 30px 50px rgba(32,55,70,.15); transform: translateY(-140%); transition: transform .3s ease; }
    .site-nav.open { transform: none; }.site-nav a { padding: 14px; border-bottom: 1px solid var(--line); font-size: 16px; }.site-nav .nav-cta { margin-top: 10px; text-align: center; }
    .menu-toggle[aria-expanded="true"]>span:first-child { transform: translateY(6px) rotate(45deg); }.menu-toggle[aria-expanded="true"]>span:nth-child(2) { opacity: 0; }.menu-toggle[aria-expanded="true"]>span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
    .hero { padding-top: 125px; }.hero-grid { gap: 50px; }.hero h1 { font-size: clamp(50px,13vw,78px); }
    .feature-grid, .audience-grid { grid-template-columns: 1fr; }.feature-card { min-height: auto; }.audience-grid article { min-height: auto; border-right: 0; border-bottom: 1px solid var(--line); }.audience-grid article:last-child { border-bottom: 0; }.audience-grid h3 { margin-top: 35px; }
    .workflow-grid, .faq-grid, .contact-card { grid-template-columns: 1fr; gap: 55px; }.faq .section-heading { position: static; }
    .edition-card.featured { transform: none; }
    .footer-grid { grid-template-columns: 1.5fr .75fr .75fr; gap: 35px; }
}

@media (max-width: 620px) {
    .shell { width: min(100% - 24px, var(--shell)); }
    .hero { padding-bottom: 65px; }.hero-intro { font-size: 17px; }.hero-actions .button { width: 100%; }
    .hero-facts { grid-template-columns: 1fr; gap: 12px; }.hero-facts li { grid-template-columns: 120px 1fr; }
    .browser-card { border-width: 5px; transform: none; }.browser-top { height: 38px; grid-template-columns: 55px 1fr 24px; padding: 0 8px; }.browser-address { font-size: 7px; }
    .cms-frame { min-height: 430px; grid-template-columns: 54px 1fr; }.cms-sidebar { padding: 10px 6px; }.cms-logo b, .cms-sidebar button:not(.active) { font-size: 0; }.cms-logo { padding: 0 0 15px; }.cms-logo img { width: 40px; height: 10px; }.cms-sidebar button { justify-content: center; padding: 9px 4px; font-size: 0; }.cms-sidebar button span { font-size: 16px; }.cms-account small { display: none; }.cms-content { padding: 15px; }.cms-heading h2 { font-size: 19px; }.cms-tabs span:nth-last-child(-n+2) { display: none; }.page-row { grid-template-columns: 15px 16px minmax(60px,1fr) 22px 16px; }.page-row small { display: none; }.new-page-card { grid-template-columns: 1fr auto; }.new-page-card>span { display: none; }
    .floating-note { display: none; }.principle-row { grid-template-columns: 1fr; gap: 12px; }.principle-row p { border-right: 0; text-align: left; }
    .section-heading { margin-bottom: 35px; }.section-heading h2, .workflow h2, .toolbox h2 { font-size: 43px; }
    .workflow-steps li { grid-template-columns: 45px 1fr; }.workflow-steps>li>span { width: 40px; height: 40px; }
    .toolbox-visual { min-height: 430px; transform: scale(.85); }.orbit-two { width: 440px; height: 440px; }.orbit-one { width: 290px; height: 290px; }.tool-card { min-width: 125px; padding: 14px; }.tool-center { min-width: 165px; }
    .edition-grid { grid-template-columns: 1fr; }.edition-card { min-height: 500px; padding: 30px; }
    .contact { padding-bottom: 55px; }.contact-card { padding: 35px 25px; }.contact-actions .button { width: 100%; }
    .footer-grid { grid-template-columns: 1fr 1fr; }.footer-grid>div { grid-column: 1/-1; }.footer-bottom { gap: 12px; flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
    [data-reveal] { opacity: 1; transform: none; }
}
