:root {
    color-scheme: dark;
    --bg: #070a12;
    --bg-soft: #0b1020;
    --panel: rgba(15, 21, 38, 0.82);
    --panel-strong: #11182a;
    --panel-hover: #151f35;
    --border: rgba(151, 172, 217, 0.13);
    --border-strong: rgba(92, 145, 255, 0.35);
    --text: #f4f7ff;
    --muted: #8f9bb6;
    --subtle: #5f6c89;
    --blue: #4f8cff;
    --blue-strong: #2c6ff0;
    --cyan: #56d9ff;
    --purple: #8b6bff;
    --green: #4bd69f;
    --orange: #ffb15c;
    --danger: #ff667e;
    --shadow: 0 26px 80px rgba(0, 0, 0, 0.35);
    --radius-lg: 28px;
    --radius-md: 18px;
    --radius-sm: 12px;
    --max: 1240px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-width: 320px;
    background:
        radial-gradient(circle at 12% -8%, rgba(64, 118, 255, 0.22), transparent 31rem),
        radial-gradient(circle at 88% 6%, rgba(111, 77, 255, 0.13), transparent 28rem),
        linear-gradient(180deg, #080b14 0%, var(--bg) 32%, #070912 100%);
    color: var(--text);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.6;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    opacity: 0.22;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.022) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.022) 1px, transparent 1px);
    background-size: 42px 42px;
    mask-image: linear-gradient(to bottom, black, transparent 75%);
}

a {
    color: inherit;
    text-decoration: none;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

.site-shell {
    position: relative;
    overflow: hidden;
}

.section-wrap,
.site-header {
    width: min(calc(100% - 40px), var(--max));
    margin-inline: auto;
}

.site-header {
    height: 92px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    border-bottom: 1px solid var(--border);
    position: relative;
    z-index: 20;
}

.brand,
.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.brand-mark {
    width: 43px;
    height: 43px;
    display: inline-grid;
    place-items: center;
    border-radius: 12px;
    background: linear-gradient(145deg, #5a93ff, #2965e2 70%);
    box-shadow: 0 8px 28px rgba(60, 119, 255, 0.32), inset 0 1px rgba(255,255,255,.26);
    font-size: 14px;
    font-weight: 900;
    letter-spacing: -0.04em;
}

.brand-copy,
.footer-brand div {
    display: grid;
    line-height: 1.15;
}

.brand-copy strong,
.footer-brand strong {
    font-size: 16px;
    letter-spacing: -0.02em;
}

.brand-copy small,
.footer-brand small {
    margin-top: 4px;
    color: var(--subtle);
    font-size: 10px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 28px;
    margin-left: auto;
}

.desktop-nav a,
.footer-links a {
    color: var(--muted);
    font-size: 13px;
    font-weight: 650;
    transition: color 160ms ease;
}

.desktop-nav a:hover,
.footer-links a:hover {
    color: var(--text);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.service-state {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--muted);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.state-dot {
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: var(--danger);
    box-shadow: 0 0 0 4px rgba(255,102,126,.08);
}

.service-state.is-online .state-dot {
    background: var(--green);
    box-shadow: 0 0 0 4px rgba(75,214,159,.08), 0 0 14px rgba(75,214,159,.45);
}

.button {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 18px;
    border-radius: 11px;
    border: 1px solid transparent;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: -0.01em;
    transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.button:hover {
    transform: translateY(-1px);
}

.button-primary {
    background: linear-gradient(135deg, var(--blue), var(--blue-strong));
    box-shadow: 0 13px 36px rgba(49, 107, 237, 0.26);
}

.button-secondary,
.button-ghost {
    border-color: var(--border);
    background: rgba(255,255,255,.035);
}

.button-secondary:hover,
.button-ghost:hover {
    border-color: rgba(123, 158, 230, 0.28);
    background: rgba(255,255,255,.055);
}

.hero {
    min-height: 660px;
    padding: 84px 0 72px;
    display: grid;
    grid-template-columns: minmax(0, 0.93fr) minmax(560px, 1.07fr);
    align-items: center;
    gap: 70px;
    position: relative;
}

.hero::after {
    content: "";
    position: absolute;
    width: 520px;
    height: 520px;
    right: -120px;
    top: 40px;
    border-radius: 50%;
    background: rgba(67, 115, 255, 0.09);
    filter: blur(90px);
    z-index: -1;
}

.eyebrow,
.section-kicker {
    color: #79a6ff;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 18px;
}

.eyebrow span {
    width: 27px;
    height: 1px;
    background: var(--blue);
}

.hero h1 {
    margin: 0;
    max-width: 650px;
    font-size: clamp(3.1rem, 5.6vw, 5.25rem);
    line-height: 0.99;
    letter-spacing: -0.065em;
    font-weight: 850;
}

.hero h1 em {
    display: block;
    font-style: normal;
    color: transparent;
    background: linear-gradient(100deg, #7ba7ff 0%, #4f8cff 45%, #7a6cff 100%);
    -webkit-background-clip: text;
    background-clip: text;
}

.hero-lead {
    max-width: 660px;
    margin: 28px 0 0;
    color: var(--muted);
    font-size: 16px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 26px;
    color: var(--subtle);
    font-size: 11px;
    font-weight: 650;
}

.app-preview {
    border-radius: 23px;
    border: 1px solid rgba(112, 145, 214, 0.2);
    background: #0b0f1a;
    box-shadow: var(--shadow), 0 0 0 1px rgba(0,0,0,.28);
    transform: perspective(1100px) rotateY(-3deg) rotateX(1deg);
    overflow: hidden;
}

.preview-topbar {
    height: 46px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: 0 15px;
    border-bottom: 1px solid rgba(255,255,255,.055);
    background: #0d121f;
}

.window-dots {
    display: flex;
    gap: 6px;
}

.window-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #3a4357;
}

.preview-title {
    color: #7d89a4;
    font-size: 10px;
    font-weight: 700;
}

.preview-status {
    justify-self: end;
    display: flex;
    align-items: center;
    gap: 6px;
    color: #6f7d99;
    font-size: 9px;
}

.preview-status span {
    width: 6px;
    height: 6px;
    background: var(--green);
    border-radius: 50%;
}

.preview-body {
    min-height: 400px;
    display: grid;
    grid-template-columns: 104px 1fr;
}

.preview-sidebar {
    padding: 20px 12px;
    border-right: 1px solid rgba(255,255,255,.05);
    background: #090d17;
}

.preview-logo {
    width: 32px;
    height: 32px;
    display: grid;
    place-items: center;
    margin-bottom: 30px;
    border-radius: 9px;
    background: #3978f0;
    font-size: 10px;
    font-weight: 900;
}

.preview-nav {
    height: 32px;
    display: flex;
    align-items: center;
    padding: 0 9px;
    margin-bottom: 7px;
    border-radius: 8px;
    color: #56627a;
    font-size: 8px;
    font-weight: 700;
}

.preview-nav.active {
    color: #dce6ff;
    background: rgba(62, 119, 240, 0.14);
}

.preview-content {
    padding: 26px 24px;
    background:
        radial-gradient(circle at 82% 0, rgba(69, 113, 225, .1), transparent 15rem),
        #0d121e;
}

.preview-headline {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.preview-headline div:first-child {
    display: grid;
}

.preview-headline small {
    color: #4e5d7b;
    font-size: 7px;
    font-weight: 900;
    letter-spacing: .12em;
}

.preview-headline strong {
    margin-top: 3px;
    font-size: 18px;
    letter-spacing: -.03em;
}

.avatar {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border: 1px solid #32415e;
    border-radius: 50%;
    color: #7ea6f8;
    font-size: 8px;
    font-weight: 900;
    background: #121a2c;
}

.preview-search {
    height: 38px;
    display: flex;
    align-items: center;
    margin: 22px 0 18px;
    padding: 0 13px;
    border: 1px solid rgba(255,255,255,.055);
    border-radius: 9px;
    color: #4f5a70;
    background: #101725;
    font-size: 8px;
}

.preview-cards {
    display: grid;
    grid-template-columns: 1.12fr 1fr;
    gap: 11px;
}

.preview-card {
    min-height: 108px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 15px;
    border: 1px solid rgba(255,255,255,.055);
    border-radius: 12px;
    background: linear-gradient(150deg, #131b2b, #101622);
}

.preview-card.featured {
    grid-row: span 2;
    min-height: 226px;
    justify-content: flex-end;
    background:
        linear-gradient(180deg, transparent 25%, rgba(9,15,28,.9) 100%),
        radial-gradient(circle at 75% 15%, rgba(66,126,255,.38), transparent 10rem),
        #131b2b;
}

.preview-card strong {
    margin-top: 10px;
    font-size: 11px;
}

.preview-card small {
    margin-top: 5px;
    color: #66738d;
    font-size: 7px;
}

.mini-badge {
    padding: 4px 6px;
    border-radius: 5px;
    background: rgba(65,123,246,.15);
    color: #71a0ff;
    font-size: 6px;
    font-weight: 900;
    letter-spacing: .09em;
}

.mini-badge.premium {
    color: #a894ff;
    background: rgba(139,107,255,.13);
}

.mini-badge.tool {
    color: #63dcaf;
    background: rgba(75,214,159,.1);
}

.mini-progress {
    width: 100%;
    height: 4px;
    margin-top: 16px;
    overflow: hidden;
    border-radius: 10px;
    background: #222b3e;
}

.mini-progress span {
    display: block;
    width: 67%;
    height: 100%;
    background: #4f8cff;
}

.mini-button {
    margin-top: auto;
    padding: 5px 8px;
    border-radius: 6px;
    color: #88aefe;
    background: rgba(67,122,240,.1);
    font-size: 6px;
    font-weight: 800;
}

.stats-strip {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: rgba(13,18,31,.72);
    box-shadow: 0 16px 44px rgba(0,0,0,.18);
    overflow: hidden;
}

.stat-card {
    min-height: 118px;
    padding: 22px;
    border-right: 1px solid var(--border);
    position: relative;
}

.stat-card:last-child {
    border-right: 0;
}

.stat-icon {
    position: absolute;
    top: 18px;
    right: 18px;
    color: rgba(107,145,223,.3);
    font-size: 10px;
    font-weight: 900;
}

.stat-card strong {
    display: block;
    margin-top: 10px;
    font-size: 27px;
    line-height: 1;
    letter-spacing: -.05em;
}

.stat-card small {
    display: block;
    margin-top: 10px;
    color: var(--subtle);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.content-section {
    padding-top: 112px;
}

.section-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 50px;
    margin-bottom: 38px;
}

.section-heading h2,
.access-copy h2,
.final-cta h2 {
    max-width: 730px;
    margin: 8px 0 0;
    font-size: clamp(2rem, 3.4vw, 3.1rem);
    line-height: 1.06;
    letter-spacing: -.05em;
}

.section-heading > p,
.section-heading.centered p {
    max-width: 500px;
    margin: 0;
    color: var(--muted);
    font-size: 14px;
}

.section-heading.centered {
    display: grid;
    justify-items: center;
    text-align: center;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.feature-card {
    min-height: 260px;
    padding: 28px;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: linear-gradient(145deg, rgba(18,26,45,.82), rgba(11,16,29,.82));
    position: relative;
    overflow: hidden;
    transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.feature-card:hover {
    transform: translateY(-3px);
    border-color: rgba(91,139,239,.25);
    background: linear-gradient(145deg, rgba(21,31,52,.94), rgba(12,18,32,.94));
}

.feature-card.feature-large {
    grid-column: span 2;
}

.feature-card.feature-wide {
    grid-column: span 2;
}

.feature-number {
    position: absolute;
    top: 24px;
    right: 25px;
    color: rgba(115,142,195,.26);
    font-size: 11px;
    font-weight: 900;
}

.feature-icon {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(85,135,239,.22);
    border-radius: 13px;
    background: rgba(55,111,235,.09);
    color: #79a5ff;
    font-size: 14px;
    font-weight: 900;
}

.feature-card h3 {
    margin: 28px 0 9px;
    font-size: 19px;
    letter-spacing: -.03em;
}

.feature-card p {
    max-width: 570px;
    margin: 0;
    color: var(--muted);
    font-size: 13px;
}

.feature-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: 24px;
}

.feature-tags span {
    padding: 5px 8px;
    border: 1px solid rgba(255,255,255,.055);
    border-radius: 7px;
    background: rgba(255,255,255,.025);
    color: #72809d;
    font-size: 9px;
    font-weight: 750;
}

.workflow-section {
    position: relative;
}

.workflow-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    background: rgba(11,16,29,.72);
    overflow: hidden;
}

.workflow-grid article {
    min-height: 230px;
    padding: 28px;
    border-right: 1px solid var(--border);
    position: relative;
}

.workflow-grid article:last-child {
    border-right: 0;
}

.workflow-number {
    display: inline-grid;
    place-items: center;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(70,125,245,.11);
    color: #77a2ff;
    font-size: 10px;
    font-weight: 900;
}

.workflow-grid h3 {
    margin: 35px 0 10px;
    font-size: 17px;
    letter-spacing: -.03em;
}

.workflow-grid p {
    margin: 0;
    color: var(--muted);
    font-size: 12px;
}

.release-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.release-card {
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: rgba(13,19,33,.82);
    overflow: hidden;
    transition: transform 180ms ease, border-color 180ms ease;
}

.release-card:hover {
    transform: translateY(-3px);
    border-color: rgba(92,139,237,.25);
}

.release-art {
    min-height: 175px;
    padding: 17px;
    display: flex;
    justify-content: flex-end;
    background-size: cover;
    background-position: center;
    position: relative;
}

.release-art::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(7,10,18,.04), rgba(8,12,22,.54));
}

.release-art.no-image {
    justify-content: space-between;
    background:
        linear-gradient(140deg, rgba(42,89,186,.4), transparent 55%),
        radial-gradient(circle at 70% 30%, rgba(83,130,246,.28), transparent 9rem),
        #10182a;
}

.release-monogram {
    align-self: center;
    margin-right: auto;
    color: rgba(151,180,242,.14);
    font-size: 64px;
    font-weight: 950;
    letter-spacing: -.08em;
}

.access-pill {
    height: fit-content;
    padding: 5px 8px;
    border-radius: 7px;
    color: #8bb0ff;
    background: rgba(56,115,237,.18);
    font-size: 8px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
    position: relative;
    z-index: 2;
}

.access-premium {
    color: #ad9cff;
    background: rgba(139,107,255,.18);
}

.access-developer {
    color: #63dfb1;
    background: rgba(75,214,159,.14);
}

.access-admin {
    color: #ffb56c;
    background: rgba(255,177,92,.13);
}

.release-content {
    padding: 22px;
}

.release-meta,
.release-footer {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    color: var(--subtle);
    font-size: 9px;
    font-weight: 750;
    text-transform: uppercase;
    letter-spacing: .06em;
}

.release-content h3 {
    margin: 10px 0 7px;
    font-size: 18px;
    letter-spacing: -.035em;
}

.release-content > p {
    min-height: 59px;
    margin: 0;
    color: var(--muted);
    font-size: 12px;
}

.release-specs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin: 19px 0;
}

.release-specs span {
    padding: 9px;
    border: 1px solid rgba(255,255,255,.05);
    border-radius: 9px;
    color: #cbd5eb;
    font-size: 10px;
    font-weight: 750;
    background: rgba(255,255,255,.018);
}

.release-specs small {
    display: block;
    margin-bottom: 3px;
    color: var(--subtle);
    font-size: 7px;
    text-transform: uppercase;
}

.release-footer {
    padding-top: 15px;
    border-top: 1px solid var(--border);
    text-transform: none;
    letter-spacing: 0;
}

.empty-state {
    padding: 70px 30px;
    border: 1px dashed rgba(116,145,205,.2);
    border-radius: var(--radius-lg);
    text-align: center;
    background: rgba(12,17,29,.55);
}

.empty-state > span {
    display: inline-grid;
    place-items: center;
    width: 58px;
    height: 58px;
    border-radius: 16px;
    background: rgba(59,117,238,.12);
    color: #6e9dfd;
    font-weight: 900;
}

.empty-state h3 {
    margin: 18px 0 6px;
}

.empty-state p {
    margin: 0;
    color: var(--muted);
}

.access-panel {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 44px;
    padding: 50px;
    border: 1px solid rgba(112,137,210,.17);
    border-radius: var(--radius-lg);
    background:
        radial-gradient(circle at 90% 20%, rgba(114,79,241,.16), transparent 20rem),
        linear-gradient(135deg, rgba(16,24,43,.96), rgba(10,15,28,.96));
    box-shadow: var(--shadow);
}

.access-copy p {
    max-width: 620px;
    margin: 20px 0;
    color: var(--muted);
    font-size: 14px;
}

.access-points {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.access-points span {
    padding: 10px 12px;
    border-radius: 9px;
    background: rgba(255,255,255,.025);
    color: #8794af;
    font-size: 10px;
}

.premium-card {
    align-self: center;
    padding: 30px;
    border: 1px solid rgba(148,115,255,.22);
    border-radius: 20px;
    background: linear-gradient(150deg, rgba(118,82,238,.12), rgba(17,20,37,.75));
}

.premium-label {
    display: inline-block;
    padding: 5px 8px;
    border-radius: 7px;
    color: #aa98ff;
    background: rgba(139,107,255,.13);
    font-size: 8px;
    font-weight: 900;
    letter-spacing: .11em;
}

.premium-card strong {
    display: block;
    margin-top: 18px;
    font-size: 23px;
    letter-spacing: -.04em;
}

.premium-card p {
    color: var(--muted);
    font-size: 12px;
}

.licence-demo {
    display: flex;
    gap: 8px;
    margin: 22px 0 12px;
}

.licence-demo span {
    min-height: 42px;
    flex: 1;
    display: flex;
    align-items: center;
    padding: 0 12px;
    border: 1px solid rgba(255,255,255,.07);
    border-radius: 9px;
    color: #687691;
    background: rgba(7,10,18,.45);
    font-size: 9px;
    letter-spacing: .04em;
}

.licence-demo button {
    padding: 0 13px;
    border: 0;
    border-radius: 9px;
    background: #4f7df0;
    color: white;
    font: inherit;
    font-size: 9px;
    font-weight: 800;
    opacity: .65;
}

.premium-card > small {
    color: var(--subtle);
    font-size: 9px;
}

.final-cta {
    padding-bottom: 110px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.final-cta p {
    max-width: 650px;
    margin: 16px 0 0;
    color: var(--muted);
    font-size: 13px;
}

.site-footer {
    min-height: 145px;
    display: grid;
    grid-template-columns: 1fr 1.4fr 1fr;
    align-items: center;
    gap: 28px;
    border-top: 1px solid var(--border);
}

.site-footer p {
    margin: 0;
    color: var(--subtle);
    font-size: 10px;
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: flex-end;
    gap: 20px;
}

@media (max-width: 1100px) {
    .desktop-nav,
    .service-state {
        display: none;
    }

    .hero {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .hero-copy {
        max-width: 760px;
    }

    .app-preview {
        max-width: 760px;
        transform: none;
    }

    .stats-strip {
        grid-template-columns: repeat(3, 1fr);
    }

    .stat-card:nth-child(3) {
        border-right: 0;
    }

    .stat-card:nth-child(-n+3) {
        border-bottom: 1px solid var(--border);
    }

    .feature-grid,
    .release-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .feature-card.feature-large,
    .feature-card.feature-wide {
        grid-column: auto;
    }

    .workflow-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .workflow-grid article:nth-child(2) {
        border-right: 0;
    }

    .workflow-grid article:nth-child(-n+2) {
        border-bottom: 1px solid var(--border);
    }

    .access-panel {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 760px) {
    .section-wrap,
    .site-header {
        width: min(calc(100% - 28px), var(--max));
    }

    .site-header {
        height: 76px;
    }

    .brand-copy small,
    .button-ghost {
        display: none;
    }

    .hero {
        min-height: auto;
        padding: 62px 0 48px;
    }

    .hero h1 {
        font-size: clamp(2.7rem, 14vw, 4.2rem);
    }

    .hero-lead {
        font-size: 14px;
    }

    .app-preview {
        border-radius: 16px;
    }

    .preview-body {
        grid-template-columns: 72px 1fr;
    }

    .preview-sidebar {
        padding-inline: 8px;
    }

    .preview-nav {
        font-size: 0;
        width: 32px;
    }

    .preview-content {
        padding: 18px 14px;
    }

    .preview-cards {
        grid-template-columns: 1fr;
    }

    .preview-card.featured {
        grid-row: auto;
        min-height: 140px;
    }

    .stats-strip,
    .feature-grid,
    .release-grid,
    .workflow-grid,
    .access-points {
        grid-template-columns: 1fr;
    }

    .stat-card,
    .stat-card:nth-child(3) {
        border-right: 0;
        border-bottom: 1px solid var(--border);
    }

    .stat-card:last-child {
        border-bottom: 0;
    }

    .content-section {
        padding-top: 82px;
    }

    .section-heading {
        display: grid;
        gap: 15px;
        align-items: start;
    }

    .workflow-grid article,
    .workflow-grid article:nth-child(2) {
        border-right: 0;
        border-bottom: 1px solid var(--border);
    }

    .workflow-grid article:last-child {
        border-bottom: 0;
    }

    .access-panel {
        padding: 28px 22px;
    }

    .licence-demo {
        display: grid;
    }

    .licence-demo button {
        min-height: 40px;
    }

    .final-cta {
        display: grid;
        justify-items: start;
        padding-bottom: 80px;
    }

    .site-footer {
        padding: 32px 0;
        grid-template-columns: 1fr;
        justify-items: start;
    }

    .site-footer p {
        text-align: left;
    }

    .footer-links {
        justify-content: flex-start;
    }
}
