:root {
    --navy-950: #061d37;
    --navy-900: #08264a;
    --navy-800: #123d68;
    --blue-600: #315f8d;
    --blue-300: #9bc8e1;
    --blue-100: #e9f4fa;
    --green-600: #3f8730;
    --green-500: #4f9a38;
    --green-100: #edf7e9;
    --amber-500: #f4a51f;
    --amber-100: #fff7df;
    --ink: #16263a;
    --muted: #607084;
    --line: #dbe4eb;
    --paper: #ffffff;
    --warm: #f5f3ed;
    --shadow-sm: 0 12px 32px rgba(8, 38, 74, 0.08);
    --shadow-lg: 0 30px 80px rgba(8, 38, 74, 0.18);
    --radius-lg: 32px;
    --radius-md: 20px;
    --container: 1180px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    overflow-x: hidden;
    background: var(--paper);
    color: var(--ink);
    font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 16px;
    line-height: 1.6;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

body,
button,
a {
    -webkit-tap-highlight-color: transparent;
}

img,
svg {
    display: block;
}

a {
    color: inherit;
}

button,
a {
    font: inherit;
}

.container {
    width: min(calc(100% - 40px), var(--container));
    margin-inline: auto;
}

.skip-link {
    position: fixed;
    z-index: 999;
    top: 12px;
    left: 12px;
    padding: 10px 16px;
    border-radius: 8px;
    background: var(--paper);
    color: var(--navy-900);
    font-weight: 700;
    transform: translateY(-160%);
    transition: transform 160ms ease;
}

.skip-link:focus {
    transform: translateY(0);
}

:focus-visible {
    outline: 3px solid rgba(79, 154, 56, 0.55);
    outline-offset: 3px;
}

.site-header {
    position: fixed;
    z-index: 100;
    top: 0;
    right: 0;
    left: 0;
    border-bottom: 1px solid transparent;
    transition: background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
    border-color: rgba(8, 38, 74, 0.08);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 8px 24px rgba(8, 38, 74, 0.05);
    backdrop-filter: blur(16px);
}

.nav-wrap {
    display: flex;
    min-height: 82px;
    align-items: center;
    justify-content: space-between;
}

.brand {
    display: inline-flex;
    align-items: center;
    color: var(--navy-900);
    font-size: 23px;
    font-weight: 800;
    letter-spacing: -0.04em;
    text-decoration: none;
}

.brand img {
    margin-right: 9px;
    object-fit: contain;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.main-nav > a:not(.button) {
    position: relative;
    color: #35485e;
    font-size: 14px;
    font-weight: 650;
    text-decoration: none;
}

.main-nav > a:not(.button)::after {
    position: absolute;
    right: 0;
    bottom: -7px;
    left: 0;
    height: 2px;
    background: var(--green-500);
    content: "";
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 180ms ease;
}

.main-nav > a:not(.button):hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 12px;
    background: var(--blue-100);
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.nav-toggle span {
    width: 20px;
    height: 2px;
    border-radius: 2px;
    background: var(--navy-900);
    transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle.is-open span:first-child {
    transform: translateY(7px) rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.is-open span:last-child {
    transform: translateY(-7px) rotate(-45deg);
}

.button {
    display: inline-flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 24px;
    border: 1px solid transparent;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 750;
    text-decoration: none;
    transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.button:hover {
    transform: translateY(-2px);
}

.button-small {
    min-height: 42px;
    padding-inline: 18px;
    font-size: 14px;
}

.button-primary {
    background: var(--navy-900);
    box-shadow: 0 12px 28px rgba(8, 38, 74, 0.22);
    color: #fff;
}

.button-primary:hover {
    box-shadow: 0 16px 34px rgba(8, 38, 74, 0.28);
}

.button-outline {
    border-color: rgba(8, 38, 74, 0.18);
    background: rgba(255, 255, 255, 0.55);
    color: var(--navy-900);
}

.button-light {
    background: #fff;
    color: var(--navy-900);
}

.button-green {
    background: var(--green-500);
    box-shadow: 0 14px 30px rgba(46, 125, 50, 0.25);
    color: #fff;
    white-space: nowrap;
}

.hero {
    position: relative;
    min-height: 820px;
    overflow: hidden;
    padding: 168px 0 100px;
    background:
        linear-gradient(118deg, rgba(233, 244, 250, 0.98) 0%, rgba(245, 243, 237, 0.9) 54%, rgba(255, 255, 255, 1) 100%);
}

.hero::after {
    position: absolute;
    right: -10%;
    bottom: -240px;
    width: 720px;
    height: 420px;
    border-radius: 50%;
    background: rgba(79, 154, 56, 0.08);
    content: "";
    filter: blur(2px);
    transform: rotate(-12deg);
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(2px);
}

.hero-orb-one {
    top: 108px;
    left: -130px;
    width: 320px;
    height: 320px;
    background: rgba(155, 200, 225, 0.3);
}

.hero-orb-two {
    top: 230px;
    right: 6%;
    width: 170px;
    height: 170px;
    background: rgba(244, 165, 31, 0.12);
}

.hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    align-items: center;
    gap: 72px;
    grid-template-columns: minmax(0, 0.88fr) minmax(510px, 1.12fr);
}

.hero-copy {
    min-width: 0;
    width: 100%;
}

.eyebrow,
.section-kicker {
    color: var(--blue-600);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 22px;
}

.eyebrow span {
    width: 28px;
    height: 3px;
    border-radius: 4px;
    background: var(--green-500);
}

.hero h1 {
    max-width: 650px;
    margin: 0;
    color: var(--navy-950);
    font-size: clamp(48px, 5.6vw, 76px);
    font-weight: 820;
    letter-spacing: -0.062em;
    line-height: 0.98;
}

.hero h1 em {
    color: var(--green-600);
    font-style: normal;
}

.hero-lead {
    max-width: 620px;
    margin: 28px 0 0;
    color: #4d6075;
    font-size: 18px;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 26px;
    margin-top: 34px;
}

.text-link {
    color: var(--navy-900);
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
}

.text-link span {
    display: inline-block;
    margin-left: 4px;
    color: var(--green-600);
    transition: transform 180ms ease;
}

.text-link:hover span {
    transform: translateY(3px);
}

.hero-points {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 22px;
    margin: 34px 0 0;
    padding: 0;
    color: #526174;
    font-size: 13px;
    font-weight: 650;
    list-style: none;
}

.hero-points span {
    display: inline-grid;
    width: 20px;
    height: 20px;
    margin-right: 5px;
    border-radius: 50%;
    background: var(--green-100);
    color: var(--green-600);
    font-size: 12px;
    place-items: center;
}

.product-preview {
    position: relative;
    min-width: 0;
    padding: 26px 0 30px;
}

.preview-glow {
    position: absolute;
    inset: 8% -6% 0 12%;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(155, 200, 225, 0.6), rgba(79, 154, 56, 0.16));
    filter: blur(24px);
}

.app-window {
    position: relative;
    max-width: 100%;
    overflow: hidden;
    border: 1px solid rgba(8, 38, 74, 0.1);
    border-radius: 24px;
    background: #f7f9fb;
    box-shadow: var(--shadow-lg);
    transform: perspective(1200px) rotateY(-3deg) rotateX(1deg);
}

.window-bar {
    display: flex;
    min-height: 68px;
    align-items: center;
    justify-content: space-between;
    padding: 0 24px;
    background: linear-gradient(105deg, #b9dcef 0%, #8fbcd7 34%, #426d98 68%, #08264a 100%);
}

.window-brand {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--navy-900);
}

.window-brand img {
    object-fit: contain;
}

.avatar {
    display: grid;
    width: 34px;
    height: 34px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    background: var(--navy-900);
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    place-items: center;
}

.app-body {
    padding: 22px;
}

.summary-row {
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.summary-card {
    padding: 14px;
    border: 1px solid #dbe5ed;
    border-radius: 13px;
    background: #fff;
}

.summary-card span {
    display: block;
    margin-bottom: 5px;
    color: #778596;
    font-size: 10px;
}

.summary-card strong {
    color: var(--navy-900);
    font-size: 23px;
}

.summary-card small {
    font-size: 10px;
    font-weight: 600;
}

.summary-green {
    border-color: #d7ead0;
    background: #f1f8ee;
}

.summary-green strong {
    color: var(--green-600);
}

.summary-amber {
    border-color: #f0e0af;
    background: var(--amber-100);
}

.summary-amber strong {
    color: #a76d0c;
}

.calendar-card {
    margin-top: 14px;
    padding: 19px;
    border: 1px solid #dbe5ed;
    border-radius: 16px;
    background: #fff;
}

.calendar-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.calendar-head span,
.calendar-head strong {
    display: block;
}

.calendar-head span {
    color: #7b8998;
    font-size: 10px;
}

.calendar-head strong {
    margin-top: 2px;
    color: var(--navy-900);
    font-size: 14px;
}

.calendar-controls {
    display: flex;
    gap: 5px;
}

.calendar-controls > span {
    display: grid;
    width: 28px;
    height: 28px;
    padding: 0;
    border: 1px solid #dbe5ed;
    border-radius: 8px;
    background: #fff;
    color: var(--navy-900);
    place-items: center;
}

.calendar-grid {
    display: grid;
    gap: 4px;
    grid-template-columns: repeat(7, 1fr);
}

.calendar-days {
    margin-bottom: 6px;
    color: #8b97a5;
    font-size: 8px;
    font-weight: 750;
    text-align: center;
    text-transform: uppercase;
}

.calendar-dates span {
    display: grid;
    aspect-ratio: 1.25;
    border-radius: 6px;
    color: #435469;
    font-size: 9px;
    place-items: center;
}

.calendar-dates .muted {
    color: #c3cbd4;
}

.calendar-dates .weekend {
    background: #f5f6f7;
    color: #9aa5b1;
}

.calendar-dates .leave-day {
    background: #dff0d9;
    color: var(--green-600);
    font-weight: 800;
}

.calendar-dates .pending-day {
    background: #fff1c9;
    color: #a66c08;
    font-weight: 800;
}

.calendar-dates .today {
    box-shadow: inset 0 0 0 1.5px var(--blue-600);
    color: var(--blue-600);
    font-weight: 800;
}

.calendar-legend {
    display: flex;
    gap: 14px;
    margin-top: 13px;
    color: #7a8796;
    font-size: 8px;
}

.calendar-legend span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.calendar-legend i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
}

.legend-green {
    background: var(--green-500);
}

.legend-amber {
    background: var(--amber-500);
}

.floating-note {
    position: absolute;
    right: -18px;
    bottom: 0;
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 192px;
    padding: 12px 16px;
    border: 1px solid #d9e7d4;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow-sm);
}

.note-icon {
    display: grid;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--green-100);
    color: var(--green-600);
    font-weight: 800;
    place-items: center;
}

.floating-note small,
.floating-note strong {
    display: block;
}

.floating-note small {
    color: #758396;
    font-size: 9px;
}

.floating-note strong {
    color: var(--navy-900);
    font-size: 12px;
}

.section {
    padding: 112px 0;
}

.section-intro {
    background: #fff;
}

.section-heading {
    max-width: 760px;
    margin: 0 auto 58px;
    text-align: center;
}

.section-heading.compact {
    max-width: 700px;
    margin-bottom: 44px;
}

.section-heading h2,
.process-copy h2,
.cta-card h2 {
    margin: 14px 0 0;
    color: var(--navy-950);
    font-size: clamp(36px, 4vw, 54px);
    letter-spacing: -0.05em;
    line-height: 1.08;
}

.section-heading p {
    max-width: 620px;
    margin: 20px auto 0;
    color: var(--muted);
    font-size: 17px;
}

.feature-grid {
    display: grid;
    gap: 22px;
    grid-template-columns: repeat(3, 1fr);
}

.feature-card {
    position: relative;
    min-height: 330px;
    padding: 34px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: #fff;
    box-shadow: 0 1px 0 rgba(8, 38, 74, 0.02);
    transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.feature-card:hover {
    border-color: #c5d6e2;
    box-shadow: var(--shadow-sm);
    transform: translateY(-6px);
}

.feature-card::after {
    position: absolute;
    right: -50px;
    bottom: -70px;
    width: 170px;
    height: 170px;
    border-radius: 50%;
    background: var(--blue-100);
    content: "";
    opacity: 0.55;
}

.feature-icon {
    display: grid;
    width: 54px;
    height: 54px;
    border-radius: 15px;
    place-items: center;
}

.feature-icon svg {
    width: 26px;
}

.icon-blue {
    background: var(--blue-100);
    color: var(--blue-600);
}

.icon-green {
    background: var(--green-100);
    color: var(--green-600);
}

.icon-amber {
    background: var(--amber-100);
    color: #ae720d;
}

.feature-number {
    position: absolute;
    top: 33px;
    right: 30px;
    color: #dfe6ec;
    font-size: 13px;
    font-weight: 800;
}

.feature-card h3 {
    max-width: 250px;
    margin: 28px 0 12px;
    color: var(--navy-900);
    font-size: 21px;
    letter-spacing: -0.025em;
    line-height: 1.25;
}

.feature-card p {
    position: relative;
    z-index: 1;
    margin: 0;
    color: var(--muted);
    font-size: 14px;
}

.process-section {
    position: relative;
    overflow: hidden;
    background: var(--navy-900);
    color: #fff;
}

.process-section::before {
    position: absolute;
    top: -240px;
    right: -120px;
    width: 620px;
    height: 620px;
    border: 1px solid rgba(155, 200, 225, 0.14);
    border-radius: 50%;
    box-shadow: 0 0 0 90px rgba(155, 200, 225, 0.03), 0 0 0 180px rgba(155, 200, 225, 0.025);
    content: "";
}

.process-grid {
    position: relative;
    display: grid;
    align-items: center;
    gap: 100px;
    grid-template-columns: 0.85fr 1.15fr;
}

.section-kicker.light {
    color: var(--blue-300);
}

.process-copy h2,
.cta-card h2 {
    color: #fff;
}

.process-copy p {
    margin: 22px 0 30px;
    color: #b9c9d9;
    font-size: 17px;
}

.process-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.process-list li {
    display: grid;
    align-items: start;
    gap: 22px;
    padding: 26px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    grid-template-columns: 48px 1fr;
}

.process-list li:last-child {
    border-bottom: 0;
}

.process-list li > span {
    display: grid;
    width: 46px;
    height: 46px;
    border: 1px solid rgba(155, 200, 225, 0.35);
    border-radius: 50%;
    background: rgba(155, 200, 225, 0.08);
    color: var(--blue-300);
    font-size: 14px;
    font-weight: 800;
    place-items: center;
}

.process-list h3 {
    margin: 0 0 6px;
    font-size: 20px;
}

.process-list p {
    margin: 0;
    color: #afc0d1;
    font-size: 14px;
}

.audience-section {
    background: var(--warm);
}

.audience-grid {
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(2, 1fr);
}

.audience-card {
    position: relative;
    min-height: 400px;
    padding: 46px;
    overflow: hidden;
    border-radius: 28px;
}

.employee-card {
    border: 1px solid #cedde7;
    background: linear-gradient(145deg, #fff 0%, #e9f4fa 100%);
}

.manager-card {
    background: linear-gradient(145deg, #123d68 0%, #061d37 100%);
    color: #fff;
}

.audience-card::after {
    position: absolute;
    right: -110px;
    bottom: -110px;
    width: 280px;
    height: 280px;
    border: 54px solid rgba(79, 154, 56, 0.12);
    border-radius: 50%;
    content: "";
}

.audience-label {
    display: inline-flex;
    padding: 6px 11px;
    border-radius: 999px;
    background: rgba(49, 95, 141, 0.1);
    color: var(--blue-600);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.manager-card .audience-label {
    background: rgba(155, 200, 225, 0.12);
    color: var(--blue-300);
}

.audience-card h3 {
    position: relative;
    z-index: 1;
    max-width: 440px;
    margin: 24px 0 28px;
    color: var(--navy-900);
    font-size: clamp(28px, 3vw, 38px);
    letter-spacing: -0.045em;
    line-height: 1.13;
}

.manager-card h3 {
    color: #fff;
}

.audience-card ul {
    position: relative;
    z-index: 1;
    margin: 0;
    padding: 0;
    list-style: none;
}

.audience-card li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 12px;
    color: #526174;
    font-size: 14px;
}

.manager-card li {
    color: #c3d0dc;
}

.audience-card li span {
    display: grid;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--green-100);
    color: var(--green-600);
    font-size: 11px;
    font-weight: 900;
    place-items: center;
}

.manager-card li span {
    background: rgba(116, 182, 90, 0.16);
    color: #8fd16f;
}

.final-cta {
    padding: 88px 0;
    background: #fff;
}

.cta-card {
    display: grid;
    align-items: center;
    gap: 34px;
    padding: 46px 54px;
    overflow: hidden;
    border-radius: var(--radius-lg);
    background: linear-gradient(115deg, var(--navy-900) 0%, #164b78 62%, #236a58 130%);
    box-shadow: var(--shadow-lg);
    grid-template-columns: auto 1fr auto;
}

.cta-card > img {
    padding: 7px;
    border-radius: 26px;
    background: linear-gradient(135deg, #d7eef9, #a7cee4);
}

.cta-card h2 {
    max-width: 690px;
    margin-top: 10px;
    font-size: clamp(31px, 3.4vw, 46px);
}

.site-footer {
    padding: 30px 0;
    border-top: 1px solid var(--line);
    background: #fff;
}

.footer-grid {
    display: grid;
    align-items: center;
    gap: 28px;
    grid-template-columns: auto 1fr auto auto;
}

.footer-brand {
    font-size: 19px;
}

.site-footer p,
.site-footer small {
    margin: 0;
    color: #7a8796;
    font-size: 12px;
}

.site-footer nav {
    display: flex;
    gap: 20px;
}

.site-footer nav a {
    color: #526174;
    font-size: 12px;
    font-weight: 650;
    text-decoration: none;
}

.site-footer nav a:hover {
    color: var(--green-600);
}

.js .reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 600ms ease, transform 600ms ease;
}

.reveal-delay-short {
    transition-delay: 100ms;
}

.reveal-delay {
    transition-delay: 180ms;
}

.js .reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1020px) {
    .hero {
        padding-top: 140px;
    }

    .hero-grid {
        display: block;
        gap: 50px;
        grid-template-columns: minmax(0, 1fr);
    }

    .hero-copy {
        max-width: 780px;
        text-align: center;
        justify-self: center;
    }

    .eyebrow,
    .hero-actions,
    .hero-points {
        justify-content: center;
    }

    .product-preview {
        width: min(100%, 680px);
        margin: 50px auto 0;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }

    .feature-card {
        min-height: auto;
    }

    .process-grid {
        gap: 54px;
        grid-template-columns: 1fr;
    }

    .process-copy {
        max-width: 680px;
    }

    .cta-card {
        padding: 42px;
        grid-template-columns: auto 1fr;
    }

    .cta-card .button {
        grid-column: 2;
        justify-self: start;
    }
}

@media (max-width: 820px) {
    .nav-toggle {
        display: flex;
    }

    .main-nav {
        position: absolute;
        top: 72px;
        right: 20px;
        left: 20px;
        display: none;
        align-items: stretch;
        gap: 0;
        padding: 12px;
        border: 1px solid var(--line);
        border-radius: 16px;
        background: #fff;
        box-shadow: var(--shadow-lg);
        flex-direction: column;
    }

    .main-nav.is-open {
        display: flex;
    }

    .main-nav > a:not(.button) {
        padding: 12px 10px;
    }

    .main-nav > a:not(.button)::after {
        display: none;
    }

    .main-nav .button {
        margin-top: 6px;
    }

    .audience-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: auto 1fr auto;
    }

    .site-footer nav {
        order: 4;
        grid-column: 1 / -1;
    }
}

@media (max-width: 620px) {
    .container {
        width: min(calc(100% - 28px), var(--container));
    }

    .nav-wrap {
        min-height: 70px;
    }

    .brand img {
        width: 42px;
        height: 42px;
    }

    .hero {
        min-height: 0;
        padding: 120px 0 76px;
    }

    .hero-grid {
        gap: 34px;
    }

    .hero h1 {
        font-size: clamp(38px, 10vw, 50px);
    }

    .hero-lead {
        font-size: 16px;
    }

    .hero-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .hero-actions .button {
        width: 100%;
    }

    .product-preview {
        width: 100%;
        max-width: 100%;
        min-width: 0;
        padding-inline: 2px;
    }

    .hero-copy,
    .app-window,
    .summary-card {
        max-width: 100%;
        min-width: 0;
    }

    .app-window {
        border-radius: 18px;
        transform: none;
    }

    .window-bar {
        min-height: 58px;
        padding-inline: 16px;
    }

    .app-body {
        padding: 12px;
    }

    .summary-card {
        padding: 10px;
    }

    .summary-card span {
        font-size: 8px;
    }

    .summary-card strong {
        font-size: 18px;
    }

    .calendar-card {
        padding: 13px;
    }

    .floating-note {
        right: 8px;
        bottom: -22px;
    }

    .section {
        padding: 80px 0;
    }

    .section-heading {
        margin-bottom: 38px;
    }

    .section-heading h2,
    .process-copy h2 {
        font-size: 37px;
    }

    .feature-card,
    .audience-card {
        padding: 28px;
    }

    .audience-card {
        min-height: 0;
    }

    .process-list li {
        gap: 14px;
        grid-template-columns: 42px 1fr;
    }

    .process-list li > span {
        width: 40px;
        height: 40px;
    }

    .final-cta {
        padding: 64px 0;
    }

    .cta-card {
        justify-items: start;
        padding: 32px 26px;
        grid-template-columns: 1fr;
    }

    .cta-card > img {
        width: 84px;
        height: 84px;
    }

    .cta-card .button {
        width: 100%;
        grid-column: auto;
    }

    .footer-grid {
        gap: 16px;
        grid-template-columns: 1fr;
    }

    .site-footer nav {
        flex-wrap: wrap;
        grid-column: auto;
        order: initial;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }

    .js .reveal {
        opacity: 1;
        transform: none;
    }
}
