:root {
    --site-primary: #0f766e;
    --site-ink: #102033;
    --site-muted: #5f6f85;
    --site-soft: #f6f8fb;
    --site-line: #dfe7ef;
    --site-gold: #f4b740;
    --site-coral: #de6b48;
    --site-blue: #2563a8;
}

* {
    box-sizing: border-box;
}

.contact-honeypot {
    position: absolute !important;
    left: -10000px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}

body.public-site {
    margin: 0;
    color: var(--site-ink);
    background: #fff;
    font-family: "Inter", "Segoe UI", Arial, sans-serif;
    line-height: 1.6;
}

.site-topbar {
    background: #0b1524;
    color: #dce7f5;
    font-size: 13px;
}

.site-wrap {
    width: min(1160px, calc(100% - 32px));
    margin: 0 auto;
}

.site-topbar .site-wrap,
.site-header .site-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.site-topbar .site-wrap {
    min-height: 42px;
}

.topbar-contact {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}

.topbar-contact i {
    color: var(--site-gold);
    margin-right: 6px;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    background: rgba(255, 255, 255, .96);
    border-bottom: 1px solid rgba(16, 32, 51, .08);
    backdrop-filter: blur(14px);
    box-shadow: 0 10px 30px rgba(16, 32, 51, .04);
}

.site-header .site-wrap {
    min-height: 82px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--site-ink);
    text-decoration: none;
    font-weight: 800;
}

.brand img {
    max-height: 54px;
    max-width: 220px;
    object-fit: contain;
}

.brand-mark {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 8px;
    background: var(--site-primary);
    color: #fff;
    font-weight: 900;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-toggle {
    display: none;
    width: 46px;
    height: 44px;
    place-items: center;
    gap: 5px;
    border: 1px solid var(--site-line);
    border-radius: 8px;
    background: #fff;
    cursor: pointer;
    box-shadow: 0 10px 24px rgba(14, 32, 58, .08);
}

.nav-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    border-radius: 999px;
    background: var(--site-ink);
    transition: transform .22s ease, opacity .22s ease, background .22s ease;
}

.nav-toggle:hover span,
.nav-toggle.is-open span {
    background: var(--site-primary);
}

.nav-toggle.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.site-nav a {
    color: #24364d;
    padding: 10px 12px;
    border-radius: 7px;
    font-weight: 700;
    text-decoration: none;
    font-size: 14px;
    transition: color .2s ease, background .2s ease, transform .2s ease;
}

.site-nav a:hover,
.site-nav a.active {
    color: var(--site-primary);
    background: rgba(15, 118, 110, .08);
    transform: translateY(-1px);
}

.site-nav .nav-cta {
    color: #fff;
    background: var(--site-primary);
    margin-left: 8px;
}

.site-nav .nav-cta:hover {
    color: #fff;
    background: #0b5f59;
    box-shadow: 0 12px 24px rgba(15, 118, 110, .22);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 44px;
    padding: 10px 18px;
    border-radius: 7px;
    border: 1px solid transparent;
    font-weight: 800;
    text-decoration: none;
    cursor: pointer;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    background: var(--site-primary);
    color: #fff;
    box-shadow: 0 12px 26px rgba(15, 118, 110, .24);
}

.btn-secondary {
    color: var(--site-ink);
    background: #fff;
    border-color: var(--site-line);
}

.hero {
    position: relative;
    min-height: 690px;
    display: grid;
    align-items: stretch;
    color: #fff;
    overflow: hidden;
    background: #0b1524;
}

.hero::before {
    content: "";
    position: absolute;
    inset: auto -8% -24% 44%;
    z-index: 1;
    height: 360px;
    background: radial-gradient(circle at center, rgba(244, 183, 64, .28), rgba(244, 183, 64, 0) 66%);
    pointer-events: none;
    animation: heroGlow 8s ease-in-out infinite alternate;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(90deg, rgba(6, 14, 27, .95) 0%, rgba(6, 14, 27, .78) 43%, rgba(15, 118, 110, .58) 70%, rgba(222, 107, 72, .52) 100%),
        radial-gradient(circle at 82% 22%, rgba(244, 183, 64, .2), rgba(244, 183, 64, 0) 30%);
}

.hero-carousel,
.hero-slide {
    position: absolute;
    inset: 0;
}

.hero-carousel {
    z-index: 0;
}

.hero-slide {
    opacity: 0;
    background-position: center;
    background-size: cover;
    transform: scale(1.08);
    filter: saturate(1.05);
    transition: opacity .9s ease, transform 7s ease, filter .9s ease;
}

.hero-slide.is-active {
    opacity: 1;
    transform: scale(1.01);
}

.hero-layout {
    position: relative;
    z-index: 2;
    min-height: 690px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 370px;
    gap: 48px;
    align-items: center;
    padding: 92px 0 112px;
}

.hero-content {
    max-width: 790px;
    padding: 0;
    animation: heroCopyIn .7s ease both;
}

.eyebrow {
    color: var(--site-gold);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
}

.hero h1,
.page-hero h1 {
    margin: 14px 0 18px;
    font-size: 68px;
    line-height: 1.03;
    letter-spacing: 0;
}

.hero p,
.page-hero p {
    max-width: 680px;
    margin: 0 0 28px;
    color: rgba(255, 255, 255, .88);
    font-size: 18px;
}

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

.hero-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.hero-highlights span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 38px;
    padding: 8px 12px;
    border-radius: 8px;
    color: rgba(255, 255, 255, .92);
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .16);
    font-weight: 800;
    font-size: 13px;
    backdrop-filter: blur(10px);
}

.hero-highlights i {
    color: var(--site-gold);
}

.hero-controls {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-top: 28px;
    padding: 8px;
    border-radius: 8px;
    background: rgba(255, 255, 255, .13);
    border: 1px solid rgba(255, 255, 255, .18);
}

.hero-controls button {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border: 0;
    border-radius: 7px;
    color: #fff;
    background: rgba(255, 255, 255, .14);
    cursor: pointer;
    transition: transform .2s ease, background .2s ease, color .2s ease;
}

.hero-controls button:hover,
.hero-controls button.is-active {
    background: #fff;
    color: var(--site-primary);
    transform: translateY(-1px);
}

.hero-dots {
    display: flex;
    gap: 7px;
}

.hero-dots button {
    width: 9px;
    height: 9px;
    padding: 0;
    border-radius: 999px;
    transition: width .2s ease;
}

.hero-dots button.is-active {
    width: 24px;
}

.hero-aside {
    align-self: end;
    overflow: hidden;
    border-radius: 8px;
    background: rgba(255, 255, 255, .94);
    color: var(--site-ink);
    box-shadow: 0 26px 80px rgba(0, 0, 0, .22);
    animation: floatPanel 6s ease-in-out infinite;
}

.hero-aside-image img {
    width: 100%;
    height: 230px;
    display: block;
    object-fit: cover;
}

.hero-aside-body {
    padding: 24px;
}

.hero-aside-body .eyebrow {
    color: var(--site-coral);
}

.hero-aside-body h2 {
    margin: 8px 0 14px;
    font-size: 24px;
    line-height: 1.2;
}

.hero-metrics {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin: 18px 0;
}

.hero-metrics span {
    padding: 12px;
    border-radius: 8px;
    background: #f6f8fb;
    color: var(--site-muted);
    font-size: 13px;
    font-weight: 800;
}

.hero-metrics strong {
    display: block;
    color: var(--site-primary);
    font-size: 22px;
    line-height: 1;
}

.hero-aside-body a {
    color: var(--site-primary);
    font-weight: 900;
    text-decoration: none;
}

.quick-actions {
    position: relative;
    margin-top: -76px;
    z-index: 3;
}

.scroll-news-band + .quick-actions {
    margin-top: 0;
    padding-top: 22px;
}

.scroll-news-band {
    position: relative;
    z-index: 4;
    color: #fff;
    background: #0b1524;
    border-top: 1px solid rgba(255, 255, 255, .12);
    border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.scroll-news-wrap {
    min-height: 58px;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 16px;
    align-items: center;
    overflow: hidden;
}

.scroll-news-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 34px;
    padding: 7px 12px;
    border-radius: 8px;
    color: #0b1524;
    background: var(--site-gold);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
}

.scroll-news-track {
    min-width: 0;
    overflow: hidden;
    white-space: nowrap;
}

.scroll-news-track a {
    display: inline-flex;
    align-items: center;
    gap: 18px;
    min-width: 100%;
    color: #fff;
    text-decoration: none;
    animation: scrollNews 24s linear infinite;
    will-change: transform;
}

.scroll-news-track a:hover {
    animation-play-state: paused;
}

.scroll-news-track span {
    color: var(--site-gold);
    font-weight: 900;
}

.scroll-news-track strong {
    font-weight: 700;
}

.proof-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    overflow: hidden;
    margin-bottom: 14px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, .24);
    background: rgba(255, 255, 255, .22);
    box-shadow: 0 18px 54px rgba(14, 32, 58, .16);
}

.proof-strip div {
    min-height: 92px;
    padding: 18px 20px;
    background: rgba(255, 255, 255, .96);
    transition: transform .2s ease, background .2s ease;
}

.proof-strip div:hover {
    transform: translateY(-2px);
    background: #fff;
}

.proof-strip strong {
    display: block;
    color: var(--site-primary);
    font-size: 28px;
    line-height: 1;
}

.proof-strip span {
    display: block;
    margin-top: 8px;
    color: var(--site-muted);
    font-weight: 800;
    font-size: 13px;
}

.quick-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
    padding: 18px;
    background: #fff;
    border: 1px solid rgba(16, 32, 51, .08);
    border-radius: 8px;
    box-shadow: 0 22px 60px rgba(14, 32, 58, .13);
}

.quick-card,
.info-card,
.staff-card,
.post-card,
.award-card,
.testimonial-card {
    position: relative;
    border: 1px solid var(--site-line);
    border-radius: 8px;
    background: #fff;
}

.info-card::before,
.staff-card::before,
.post-card::before,
.award-card::before,
.testimonial-card::before,
.form-surface::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 4px;
    background: linear-gradient(90deg, var(--site-primary), var(--site-gold), var(--site-coral));
}

.quick-card {
    min-height: 116px;
    padding: 18px;
    color: var(--site-ink);
    text-decoration: none;
    display: grid;
    align-content: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
    transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease, background .22s ease;
}

.quick-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, .7) 45%, transparent 75%);
    transform: translateX(-120%);
    transition: transform .6s ease;
}

.quick-card i {
    color: var(--site-primary);
    font-size: 24px;
}

.quick-card:hover {
    transform: translateY(-5px);
    border-color: rgba(15, 118, 110, .3);
    box-shadow: 0 18px 38px rgba(14, 32, 58, .14);
    background: linear-gradient(180deg, #fff, #f9fcfb);
}

.quick-card:hover::after {
    transform: translateX(120%);
}

.quick-card strong {
    font-size: 15px;
}

.section {
    padding: 86px 0;
}

.section.compact {
    padding-top: 58px;
}

.section.soft {
    background: linear-gradient(180deg, #f7fafc 0%, #eef5f3 100%);
}

.section-head {
    max-width: 720px;
    margin-bottom: 34px;
}

.section-head-row {
    max-width: none;
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
}

.section-head h2 {
    margin: 6px 0 0;
    font-size: 42px;
    line-height: 1.12;
}

.split {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, .95fr);
    gap: 48px;
    align-items: center;
}

.align-start {
    align-items: start;
}

.prose {
    color: var(--site-muted);
    font-size: 16px;
}

.prose p {
    margin: 0 0 16px;
}

.media-frame {
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 22px 54px rgba(14, 32, 58, .12);
    background: #dfe7ef;
    transform: rotate(-1deg);
}

.media-frame img {
    display: block;
    width: 100%;
    height: 430px;
    object-fit: cover;
    transform: rotate(1deg) scale(1.04);
    transition: transform .55s ease;
}

.media-frame:hover img {
    transform: rotate(1deg) scale(1.09);
}

.media-stack {
    display: grid;
    gap: 14px;
}

.media-note {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px;
    border-left: 4px solid var(--site-coral);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 14px 34px rgba(14, 32, 58, .08);
    font-weight: 800;
    animation: notePulse 4.8s ease-in-out infinite;
}

.media-note i {
    color: var(--site-coral);
    font-size: 24px;
}

.application-band {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 22px 54px rgba(14, 32, 58, .1);
}

.apply-panel {
    position: relative;
    min-height: 260px;
    padding: 44px;
    color: #fff;
    background: linear-gradient(135deg, #0b1524, #2563a8);
    overflow: hidden;
}

.apply-panel::after {
    content: "";
    position: absolute;
    width: 190px;
    height: 190px;
    right: -70px;
    bottom: -70px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .16);
    transition: transform .35s ease;
}

.apply-panel:hover::after {
    transform: scale(1.18);
}

.apply-panel + .apply-panel {
    background: linear-gradient(135deg, var(--site-primary), var(--site-coral));
}

.apply-panel span {
    display: inline-grid;
    place-items: center;
    width: 44px;
    height: 44px;
    margin-bottom: 18px;
    border-radius: 8px;
    background: rgba(255, 255, 255, .16);
    font-weight: 900;
}

.apply-panel h2 {
    margin: 0 0 12px;
}

.feature-band {
    color: #fff;
    background: linear-gradient(120deg, rgba(8, 17, 31, .86), rgba(15, 118, 110, .8)), var(--feature-image);
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
}

.feature-list {
    display: grid;
    gap: 16px;
}

.feature-copy {
    max-width: 480px;
    color: rgba(255, 255, 255, .86);
}

.feature-item {
    display: flex;
    gap: 16px;
    padding: 20px;
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 8px;
    transition: transform .22s ease, background .22s ease;
}

.feature-item:hover {
    transform: translateX(6px);
    background: rgba(255, 255, 255, .15);
}

.pillar-card {
    min-height: 220px;
    padding: 28px;
    border: 1px solid var(--site-line);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 14px 38px rgba(14, 32, 58, .07);
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.pillar-card:hover {
    transform: translateY(-6px);
    border-color: rgba(15, 118, 110, .26);
    box-shadow: 0 22px 50px rgba(14, 32, 58, .12);
}

.pillar-card i {
    width: 50px;
    height: 50px;
    display: grid;
    place-items: center;
    margin-bottom: 20px;
    border-radius: 8px;
    color: #fff;
    background: linear-gradient(135deg, var(--site-primary), var(--site-blue));
    font-size: 22px;
}

.pillar-card h3 {
    margin: 0 0 10px;
    font-size: 22px;
}

.pillar-card p {
    margin: 0;
    color: var(--site-muted);
}

.grid-2,
.grid-3,
.grid-4 {
    display: grid;
    gap: 22px;
}

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

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

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

.carousel-controls {
    display: inline-flex;
    gap: 10px;
    align-items: center;
}

.carousel-controls button {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border: 1px solid var(--site-line);
    border-radius: 8px;
    color: var(--site-ink);
    background: #fff;
    cursor: pointer;
    box-shadow: 0 12px 28px rgba(14, 32, 58, .08);
    transition: transform .2s ease, color .2s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.carousel-controls button:hover {
    color: #fff;
    background: var(--site-primary);
    border-color: var(--site-primary);
    transform: translateY(-2px);
    box-shadow: 0 16px 34px rgba(15, 118, 110, .22);
}

.section-carousel {
    display: flex;
    gap: 22px;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 4px 4px 26px;
    margin: 0 -4px -16px;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
    scrollbar-color: rgba(15, 118, 110, .45) transparent;
}

.section-carousel::-webkit-scrollbar {
    height: 8px;
}

.section-carousel::-webkit-scrollbar-track {
    background: transparent;
}

.section-carousel::-webkit-scrollbar-thumb {
    border-radius: 999px;
    background: rgba(15, 118, 110, .38);
}

.section-carousel > .award-card,
.section-carousel > .testimonial-card {
    flex: 0 0 min(360px, calc(100vw - 64px));
    scroll-snap-align: start;
}

.section-carousel > .testimonial-card {
    min-height: 260px;
}

.section-carousel > .muted {
    flex: 0 0 100%;
}

.staff-card,
.post-card,
.award-card,
.testimonial-card,
.info-card {
    overflow: hidden;
    box-shadow: 0 16px 42px rgba(14, 32, 58, .08);
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.staff-card:hover,
.post-card:hover,
.award-card:hover,
.testimonial-card:hover {
    transform: translateY(-4px);
    border-color: rgba(15, 118, 110, .24);
    box-shadow: 0 24px 56px rgba(14, 32, 58, .14);
}

.staff-card img,
.post-card img,
.award-card img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    display: block;
    transition: transform .45s ease;
}

.staff-card:hover img,
.post-card:hover img,
.award-card:hover img {
    transform: scale(1.06);
}

.testimonial-card > img {
    width: 72px;
    height: 72px;
    object-fit: cover;
    border-radius: 50%;
    margin: 22px 0 0 22px;
}

.card-body {
    padding: 20px;
}

.card-body h3 {
    margin: 0 0 8px;
    font-size: 20px;
    line-height: 1.25;
}

.card-body a {
    color: var(--site-ink);
    text-decoration: none;
}

.card-body a:hover {
    color: var(--site-primary);
}

.muted {
    color: var(--site-muted);
}

.proprietor {
    display: grid;
    grid-template-columns: 1fr 180px;
    gap: 24px;
    align-items: center;
    padding: 30px;
    background: linear-gradient(135deg, #0b1524, #16375c);
    color: #fff;
    border-radius: 8px;
}

.proprietor img {
    width: 180px;
    height: 220px;
    object-fit: cover;
    border-radius: 8px;
}

.news-mini-grid {
    display: grid;
    gap: 12px;
    margin-top: 16px;
}

.news-mini {
    display: block;
    padding: 15px 16px;
    border: 1px solid var(--site-line);
    border-radius: 8px;
    color: var(--site-ink);
    background: #fff;
    text-decoration: none;
    transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease, color .2s ease;
}

.news-mini span {
    display: block;
    color: var(--site-muted);
    font-size: 12px;
    font-weight: 800;
    margin-bottom: 4px;
}

.news-mini strong {
    display: block;
    line-height: 1.35;
}

.news-mini:hover {
    color: var(--site-primary);
    border-color: rgba(15, 118, 110, .28);
    transform: translateX(4px);
    box-shadow: 0 12px 26px rgba(14, 32, 58, .08);
}

.page-hero {
    color: #fff;
    background: linear-gradient(120deg, rgba(8, 17, 31, .82), rgba(15, 118, 110, .7)), var(--page-image);
    background-position: center;
    background-size: cover;
}

.page-hero .site-wrap {
    padding: 108px 0 74px;
}

.form-surface {
    position: relative;
    overflow: hidden;
    padding: 30px;
    background: #fff;
    border: 1px solid var(--site-line);
    border-radius: 8px;
    box-shadow: 0 18px 48px rgba(14, 32, 58, .1);
}

.compact-form {
    max-width: 820px;
    margin: 0 auto;
}

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

.field.full {
    grid-column: 1 / -1;
}

.field label {
    display: block;
    margin-bottom: 7px;
    font-weight: 800;
    font-size: 14px;
}

.field input,
.field textarea {
    width: 100%;
    border: 1px solid var(--site-line);
    border-radius: 7px;
    padding: 13px 14px;
    font: inherit;
    color: var(--site-ink);
    background: #fff;
    transition: border-color .2s ease, box-shadow .2s ease;
}

.field input:focus,
.field textarea:focus {
    outline: 0;
    border-color: rgba(15, 118, 110, .55);
    box-shadow: 0 0 0 4px rgba(15, 118, 110, .1);
}

.field textarea {
    min-height: 150px;
    resize: vertical;
}

.alert {
    padding: 14px 16px;
    border-radius: 7px;
    margin-bottom: 18px;
    font-weight: 700;
}

.alert-success {
    background: #e8f8ef;
    color: #166534;
}

.alert-danger {
    background: #fff0f0;
    color: #b42318;
}

.blog-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 350px;
    gap: 34px;
    align-items: start;
}

.blog-main {
    min-width: 0;
}

.compact-head {
    margin-bottom: 22px;
}

.compact-head h2 {
    font-size: 34px;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.sidebar {
    display: grid;
    gap: 16px;
    align-content: start;
}

.sidebar-card {
    position: sticky;
    top: 106px;
}

.sidebar-title {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}

.sidebar-title span {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 8px;
    color: #fff;
    background: linear-gradient(135deg, var(--site-primary), var(--site-blue));
}

.sidebar-title h3 {
    margin: 0;
}

.mini-post {
    display: grid;
    grid-template-columns: 82px 1fr;
    gap: 12px;
    align-items: center;
    padding: 10px;
    margin: 0 -10px 6px;
    border-radius: 8px;
    color: var(--site-ink);
    text-decoration: none;
    transition: background .2s ease, transform .2s ease;
}

.mini-post:hover {
    background: #f6f8fb;
    transform: translateX(3px);
}

.mini-post img {
    width: 82px;
    height: 70px;
    object-fit: cover;
    border-radius: 7px;
}

.article-content img {
    max-width: 100%;
    border-radius: 8px;
}

.post-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 12px;
    color: var(--site-muted);
    font-size: 13px;
    font-weight: 800;
}

.post-meta i {
    color: var(--site-coral);
    margin-right: 6px;
}

.post-badge {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 5px 9px;
    border-radius: 8px;
    color: var(--site-primary);
    background: rgba(15, 118, 110, .09);
}

.read-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-top: 6px;
    color: var(--site-primary);
    font-weight: 900;
    text-decoration: none;
}

.read-link:hover {
    color: var(--site-coral);
}

.pagination {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
}

.page-link {
    display: block;
    padding: 9px 13px;
    border: 1px solid var(--site-line);
    border-radius: 7px;
    color: var(--site-ink);
    background: #fff;
    text-decoration: none;
    box-shadow: 0 10px 22px rgba(14, 32, 58, .06);
}

.page-item.active .page-link {
    color: #fff;
    background: var(--site-primary);
}

.site-footer {
    color: #dce7f5;
    background: #0b1524;
}

.site-footer .footer-grid {
    display: grid;
    grid-template-columns: 1.4fr .8fr 1fr;
    gap: 34px;
    padding: 58px 0;
}

.site-footer a {
    color: #dce7f5;
    text-decoration: none;
}

.footer-brand {
    color: #fff;
}

.footer-socials {
    display: flex;
    gap: 10px;
    margin-top: 18px;
}

.footer-socials a {
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    border-radius: 8px;
    background: rgba(255, 255, 255, .1);
}

.footer-links {
    display: grid;
    gap: 10px;
}

.copyright {
    border-top: 1px solid rgba(255, 255, 255, .12);
    padding: 18px 0;
    color: #9fb0c8;
    font-size: 14px;
}

.pagination-wrap {
    margin-top: 28px;
}

.pagination-wrap nav {
    display: block;
    padding: 18px;
    border: 1px solid rgba(16, 32, 51, .08);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 16px 42px rgba(14, 32, 58, .08);
}

.pagination-wrap nav > div:first-child {
    display: none;
}

.pagination-wrap nav > div:last-child {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.pagination-wrap nav > div:last-child > div:first-child p {
    margin: 0;
    color: var(--site-muted);
    font-size: 14px;
    font-weight: 800;
}

.pagination-wrap nav > div:last-child > div:first-child span {
    color: var(--site-ink);
}

.pagination-wrap nav > div:last-child > div:last-child > span {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.pagination-wrap a,
.pagination-wrap [aria-disabled] > span,
.pagination-wrap [aria-current] > span {
    min-width: 42px;
    min-height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 13px;
    border: 1px solid var(--site-line);
    border-radius: 8px;
    color: var(--site-ink);
    background: #fff;
    font-size: 14px;
    font-weight: 900;
    line-height: 1;
    text-decoration: none;
    box-shadow: 0 10px 22px rgba(14, 32, 58, .06);
    transition: transform .2s ease, border-color .2s ease, background .2s ease, color .2s ease, box-shadow .2s ease;
}

.pagination-wrap a:hover {
    color: #fff;
    border-color: var(--site-primary);
    background: var(--site-primary);
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(15, 118, 110, .22);
}

.pagination-wrap [aria-current] > span {
    color: #fff;
    border-color: var(--site-primary);
    background: var(--site-primary);
}

.pagination-wrap [aria-disabled] > span {
    color: #98a4b3;
    background: #f6f8fb;
    cursor: default;
    box-shadow: none;
}

.pagination-wrap svg {
    width: 18px;
    height: 18px;
    display: block;
}

.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity .55s ease, transform .55s ease;
    transition-delay: var(--reveal-delay, 0ms);
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes heroCopyIn {
    from {
        opacity: 0;
        transform: translateY(18px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes heroGlow {
    from {
        transform: translate3d(-20px, 8px, 0) scale(.96);
        opacity: .72;
    }
    to {
        transform: translate3d(16px, -10px, 0) scale(1.05);
        opacity: 1;
    }
}

@keyframes floatPanel {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes notePulse {
    0%,
    100% {
        box-shadow: 0 14px 34px rgba(14, 32, 58, .08);
    }
    50% {
        box-shadow: 0 18px 42px rgba(222, 107, 72, .14);
    }
}

@keyframes scrollNews {
    from {
        transform: translateX(100%);
    }
    to {
        transform: translateX(-100%);
    }
}

@media (max-width: 900px) {
    .site-topbar .site-wrap,
    .split,
    .blog-layout,
    .site-footer .footer-grid,
    .proprietor {
        grid-template-columns: 1fr;
    }

    .site-topbar .site-wrap {
        align-items: flex-start;
        flex-direction: column;
        padding: 14px 0;
    }

    .site-header .site-wrap {
        position: relative;
        flex-direction: row;
        flex-wrap: wrap;
        align-items: center;
        min-height: 72px;
        padding: 10px 0;
        gap: 14px;
    }

    .brand {
        min-width: 0;
        flex: 1 1 auto;
    }

    .brand img {
        max-width: min(210px, calc(100vw - 118px));
    }

    .brand span:last-child {
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .nav-toggle {
        display: grid;
        flex: 0 0 auto;
        margin-left: auto;
        order: 2;
    }

    .site-nav {
        order: 3;
        width: 100%;
        flex: 0 0 100%;
        display: grid;
        gap: 6px;
        max-height: 0;
        overflow: hidden;
        padding: 0;
        border: 0;
        border-radius: 8px;
        background: #fff;
        box-shadow: none;
        opacity: 0;
        transform: translateY(-8px);
        transition: max-height .28s ease, opacity .2s ease, transform .2s ease, padding .2s ease, border-color .2s ease, box-shadow .2s ease;
    }

    .site-nav.is-open {
        max-height: 440px;
        padding: 10px;
        border: 1px solid rgba(16, 32, 51, .08);
        box-shadow: 0 18px 44px rgba(14, 32, 58, .12);
        opacity: 1;
        transform: translateY(0);
    }

    .site-nav a {
        display: flex;
        align-items: center;
        min-height: 44px;
        padding: 11px 12px;
    }

    .site-nav .nav-cta {
        margin-left: 0;
        justify-content: center;
    }

    .quick-grid,
    .proof-strip,
    .grid-2,
    .blog-grid,
    .grid-3,
    .grid-4,
    .application-band,
    .form-grid {
        grid-template-columns: 1fr;
    }

    .scroll-news-wrap {
        grid-template-columns: 1fr;
        gap: 8px;
        padding: 12px 0;
    }

    .scroll-news-label {
        width: max-content;
    }

    .hero,
    .hero-layout {
        min-height: auto;
    }

    .hero-layout {
        grid-template-columns: 1fr;
        padding: 62px 0 112px;
    }

    .hero::after {
        background: linear-gradient(100deg, rgba(6, 14, 27, .93), rgba(15, 118, 110, .7));
    }

    .hero h1,
    .page-hero h1 {
        font-size: 44px;
    }

    .section-head h2 {
        font-size: 32px;
    }

    .section-head-row {
        display: block;
    }

    .carousel-controls {
        margin-top: 16px;
    }

    .media-frame img {
        height: 310px;
    }

    .hero-aside {
        display: none;
    }

    .feature-band {
        background-attachment: scroll;
    }

    .sidebar-card {
        position: static;
    }

    .pagination-wrap nav > div:last-child {
        align-items: flex-start;
        flex-direction: column;
    }

    .pagination-wrap nav > div:last-child > div:last-child > span {
        width: 100%;
    }
}

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

    .reveal {
        opacity: 1;
        transform: none;
    }

    .scroll-news-track a {
        animation: none;
        white-space: normal;
    }
}

/* Akara Insight master website landing page */
.master-site {
    --master-ink: #241725;
    --master-muted: #796475;
    --master-line: #f2d7cd;
    --master-soft: #fff6f2;
    --master-primary: #e85d3f;
    --master-primary-dark: #c74431;
    --master-gold: #f59e2f;
    --master-coral: #f06f8f;
    --master-blue: #8f3f71;
    background: #ffffff;
    color: var(--master-ink);
}

.master-site a {
    text-decoration: none;
}

.master-wrap {
    width: min(1180px, calc(100% - 36px));
    margin: 0 auto;
}

.master-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, .9);
    border-bottom: 1px solid rgba(16, 32, 51, .08);
    backdrop-filter: blur(16px);
    transition: box-shadow .22s ease, background .22s ease;
}

.master-header.is-scrolled {
    background: rgba(255, 255, 255, .96);
    box-shadow: 0 16px 42px rgba(16, 32, 51, .08);
}

.master-nav-wrap {
    min-height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.master-brand {
    display: inline-flex;
    align-items: center;
    min-width: 0;
}

.master-brand img {
    display: block;
    max-width: 220px;
    max-height: 54px;
    object-fit: contain;
}

.master-nav {
    display: flex;
    align-items: center;
    gap: 6px;
}

.master-nav a {
    color: #24364d;
    border-radius: 7px;
    padding: 10px 12px;
    font-size: 14px;
    font-weight: 850;
    transition: color .2s ease, background .2s ease, transform .2s ease, box-shadow .2s ease;
}

.master-nav a:hover {
    color: var(--master-primary);
    background: rgba(232, 93, 63, .1);
    transform: translateY(-1px);
}

.master-nav a.is-active {
    color: var(--master-primary);
    background: rgba(232, 93, 63, .1);
}

.master-nav .master-nav-cta {
    margin-left: 8px;
    color: #fff;
    background: var(--master-primary);
    box-shadow: 0 14px 28px rgba(232, 93, 63, .22);
}

.master-nav .master-nav-cta:hover {
    color: #fff;
    background: var(--master-primary-dark);
}

.master-nav-toggle {
    display: none;
    width: 46px;
    height: 44px;
    place-items: center;
    gap: 5px;
    border: 1px solid var(--master-line);
    border-radius: 8px;
    background: #fff;
    cursor: pointer;
}

.master-nav-toggle span {
    display: block;
    width: 21px;
    height: 2px;
    border-radius: 999px;
    background: var(--master-ink);
    transition: transform .22s ease, opacity .22s ease;
}

.master-nav-toggle.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.master-nav-toggle.is-open span:nth-child(2) {
    opacity: 0;
}

.master-nav-toggle.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.master-hero {
    position: relative;
    min-height: 720px;
    overflow: hidden;
    color: #fff;
    background:
        linear-gradient(115deg, rgba(36, 23, 37, .95) 0%, rgba(104, 44, 68, .86) 48%, rgba(232, 93, 63, .7) 100%),
        var(--master-hero-image);
    background-size: cover;
    background-position: center;
}

.master-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px);
    background-size: 56px 56px;
    mask-image: linear-gradient(90deg, #000, transparent 76%);
    opacity: .55;
}

.master-hero::after {
    content: "";
    position: absolute;
    width: 520px;
    height: 520px;
    right: -180px;
    top: 110px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(240, 111, 143, .34), rgba(245, 158, 47, 0) 68%);
    animation: masterGlow 8s ease-in-out infinite alternate;
}

.master-hero-grid {
    position: relative;
    z-index: 1;
    min-height: 720px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(390px, 470px);
    gap: 58px;
    align-items: center;
    padding: 92px 0 116px;
}

.master-kicker {
    color: var(--master-gold);
    font-size: 13px;
    font-weight: 950;
    letter-spacing: 0;
    text-transform: uppercase;
}

.master-hero h1 {
    max-width: 780px;
    margin: 16px 0 20px;
    font-size: 68px;
    line-height: 1.02;
    letter-spacing: 0;
}

.master-hero p {
    max-width: 690px;
    margin: 0 0 30px;
    color: rgba(255, 255, 255, .86);
    font-size: 18px;
}

.master-actions,
.master-trust-row,
.master-demo-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.master-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 11px 18px;
    border-radius: 8px;
    border: 1px solid transparent;
    font-weight: 900;
    transition: transform .22s ease, box-shadow .22s ease, background .22s ease, border-color .22s ease;
}

.master-btn:hover {
    transform: translateY(-2px);
}

.master-btn-primary {
    color: #fff;
    background: var(--master-primary);
    box-shadow: 0 18px 36px rgba(232, 93, 63, .3);
}

.master-btn-primary:hover {
    color: #fff;
    background: var(--master-primary-dark);
}

.master-btn-light {
    color: #fff;
    border-color: rgba(255, 255, 255, .28);
    background: rgba(255, 255, 255, .12);
}

.master-btn-light:hover {
    color: var(--master-ink);
    background: #fff;
}

.master-trust-row {
    margin-top: 22px;
}

.master-trust-row span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 38px;
    padding: 8px 12px;
    border-radius: 8px;
    color: rgba(255, 255, 255, .94);
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .16);
    font-size: 13px;
    font-weight: 850;
}

.master-trust-row i {
    color: var(--master-gold);
}

.master-product-stage {
    position: relative;
    min-height: 500px;
    animation: masterFloat 6s ease-in-out infinite;
}

.master-window {
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 10px;
    background: rgba(255, 255, 255, .96);
    box-shadow: 0 30px 80px rgba(0, 0, 0, .25);
}

.master-window-bar {
    min-height: 52px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 16px;
    color: #334155;
    background: #f8fafc;
    border-bottom: 1px solid var(--master-line);
}

.master-window-bar span {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: #ef4444;
}

.master-window-bar span:nth-child(2) {
    background: #f59e0b;
}

.master-window-bar span:nth-child(3) {
    background: #22c55e;
}

.master-window-bar strong {
    margin-left: 8px;
    font-size: 13px;
}

.master-window-body {
    display: grid;
    grid-template-columns: 78px 1fr;
    min-height: 390px;
    color: var(--master-ink);
}

.master-side-menu {
    display: grid;
    align-content: start;
    gap: 12px;
    padding: 24px 18px;
    background: #0d2238;
}

.master-side-menu span {
    height: 38px;
    border-radius: 8px;
    background: rgba(255, 255, 255, .14);
}

.master-side-menu .is-active {
    background: var(--master-gold);
}

.master-dashboard {
    padding: 24px;
}

.master-dashboard-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.master-dashboard-head small {
    display: block;
    color: var(--master-muted);
    font-weight: 800;
}

.master-dashboard-head strong {
    display: block;
    margin-top: 3px;
    font-size: 22px;
}

.master-dashboard-head em {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 6px 10px;
    border-radius: 8px;
    color: #166534;
    background: #dcfce7;
    font-style: normal;
    font-weight: 900;
}

.master-chart {
    height: 185px;
    display: flex;
    align-items: end;
    gap: 12px;
    margin: 28px 0;
    padding: 18px;
    border-radius: 8px;
    background: linear-gradient(180deg, #f8fafc, #eef5f7);
}

.master-chart span {
    flex: 1;
    min-width: 26px;
    border-radius: 8px 8px 3px 3px;
    background: linear-gradient(180deg, var(--master-primary), var(--master-blue));
    animation: masterBars 1.4s ease both;
}

.master-mini-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.master-mini-grid div {
    padding: 14px;
    border-radius: 8px;
    border: 1px solid var(--master-line);
    background: #fff;
}

.master-mini-grid strong {
    display: block;
    color: var(--master-primary);
    font-size: 24px;
    line-height: 1;
}

.master-mini-grid span {
    display: block;
    margin-top: 8px;
    color: var(--master-muted);
    font-size: 12px;
    font-weight: 800;
}

.master-floating-card {
    position: absolute;
    right: -10px;
    bottom: 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    max-width: 260px;
    padding: 16px;
    border-radius: 8px;
    color: var(--master-ink);
    background: #fff;
    box-shadow: 0 22px 48px rgba(0, 0, 0, .22);
}

.master-floating-card i {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border-radius: 8px;
    color: #fff;
    background: var(--master-coral);
}

.master-floating-card strong,
.master-floating-card span {
    display: block;
}

.master-floating-card span {
    color: var(--master-muted);
    font-size: 13px;
    font-weight: 800;
}

.master-products-section {
    position: relative;
    overflow: hidden;
    padding-top: 104px;
    background: linear-gradient(180deg, #fff 0%, #fff8f4 100%);
}

.master-products-section::before {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    top: -210px;
    left: -210px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(240, 111, 143, .16), rgba(240, 111, 143, 0) 70%);
}

.master-products-heading {
    max-width: 820px;
}

.master-product-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.master-product-card {
    overflow: hidden;
    border: 1px solid var(--master-line);
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 20px 52px rgba(36, 23, 37, .09);
    transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.master-product-card:hover {
    transform: translateY(-7px);
    border-color: rgba(232, 93, 63, .38);
    box-shadow: 0 30px 70px rgba(36, 23, 37, .14);
}

.master-product-visual {
    position: relative;
    display: block;
    overflow: hidden;
    aspect-ratio: 16 / 10;
    background: #f5ede9;
    border-bottom: 1px solid var(--master-line);
}

.master-product-visual img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform .55s ease;
}

.master-product-card:hover .master-product-visual img {
    transform: scale(1.035);
}

.master-product-open {
    position: absolute;
    right: 16px;
    bottom: 16px;
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .58);
    border-radius: 50%;
    color: #fff;
    background: rgba(36, 23, 37, .82);
    box-shadow: 0 12px 28px rgba(36, 23, 37, .2);
    backdrop-filter: blur(8px);
}

.master-product-open i {
    transform: rotate(45deg);
}

.master-product-copy {
    padding: 26px;
}

.master-product-copy > span {
    color: var(--master-primary);
    font-size: 12px;
    font-weight: 950;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.master-product-copy h3 {
    margin: 8px 0 10px;
    font-size: 24px;
    line-height: 1.18;
}

.master-product-copy p {
    min-height: 96px;
    margin: 0;
    color: var(--master-muted);
    font-size: 15px;
}

.master-product-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-top: 20px;
    color: var(--master-primary);
    font-weight: 950;
}

.master-product-link i {
    transition: transform .2s ease;
}

.master-product-link:hover i {
    transform: translateX(4px);
}

.master-logo-strip {
    border-bottom: 1px solid var(--master-line);
    background: #fff;
}

.master-client-showcase-section {
    padding: 88px 0;
    background: #f7fbfb;
}

.master-client-showcase-heading {
    max-width: 760px;
}

.master-client-showcase-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.master-client-showcase-card {
    display: grid;
    gap: 26px;
    min-width: 0;
    padding: 25px;
    border: 1px solid #dce7e6;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 15px 34px rgba(19, 58, 61, .07);
}

.master-client-showcase-card header {
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr);
    align-items: center;
    gap: 13px;
}

.master-client-logo {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    overflow: hidden;
    border: 1px solid #dce7e6;
    border-radius: 8px;
    color: var(--master-primary);
    background: #f5fbfa;
}

.master-client-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.master-client-showcase-card header strong,
.master-client-showcase-card header span {
    display: block;
}

.master-client-showcase-card header strong {
    font-size: 15px;
    line-height: 1.25;
}

.master-client-showcase-card header span {
    margin-top: 4px;
    color: var(--master-muted);
    font-size: 11px;
    font-weight: 800;
}

.master-client-showcase-card blockquote {
    margin: 0;
}

.master-client-showcase-card blockquote > i {
    color: var(--master-coral);
    font-size: 17px;
}

.master-client-showcase-card blockquote p {
    margin: 11px 0 0;
    color: #475569;
    font-size: 14px;
    line-height: 1.7;
}

.master-logo-strip .master-wrap {
    min-height: 82px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 22px;
    flex-wrap: wrap;
}

.master-logo-strip span {
    color: var(--master-muted);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
}

.master-logo-strip strong {
    color: #334155;
    font-weight: 900;
}

.master-section {
    padding: 92px 0;
}

.master-section-head {
    max-width: 760px;
    margin: 0 auto 38px;
    text-align: center;
}

.master-section-head h2,
.master-split h2,
.master-dark-section h2,
.master-faq-grid h2,
.master-demo-card h2 {
    margin: 8px 0 12px;
    font-size: 44px;
    line-height: 1.1;
    letter-spacing: 0;
}

.master-section-head p,
.master-split p,
.master-dark-section p,
.master-faq-grid p,
.master-demo-card p {
    color: var(--master-muted);
    font-size: 16px;
}

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

.master-feature-card {
    min-height: 250px;
    padding: 28px;
    border: 1px solid var(--master-line);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 16px 42px rgba(16, 32, 51, .07);
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.master-feature-card:hover {
    transform: translateY(-6px);
    border-color: rgba(232, 93, 63, .32);
    box-shadow: 0 26px 58px rgba(16, 32, 51, .12);
}

.master-feature-card i {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    margin-bottom: 22px;
    border-radius: 8px;
    color: #fff;
    background: linear-gradient(135deg, var(--master-primary), var(--master-coral));
    font-size: 22px;
}

.master-feature-card h3 {
    margin: 0 0 10px;
    font-size: 22px;
}

.master-feature-card p {
    margin: 0;
    color: var(--master-muted);
}

.master-split-section {
    background: linear-gradient(180deg, #fff9f5, #fff1ea);
}

.master-split {
    display: grid;
    grid-template-columns: minmax(320px, .92fr) minmax(0, 1fr);
    gap: 56px;
    align-items: center;
}

.master-image-panel {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    background: #f8ded6;
    box-shadow: 0 24px 64px rgba(16, 32, 51, .14);
}

.master-image-panel img {
    width: 100%;
    height: 520px;
    display: block;
    object-fit: cover;
    transition: transform .6s ease;
}

.master-image-panel:hover img {
    transform: scale(1.06);
}

.master-image-badge {
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 20px;
    padding: 18px;
    border-radius: 8px;
    color: #fff;
    background: rgba(11, 21, 36, .78);
    backdrop-filter: blur(12px);
}

.master-image-badge strong,
.master-image-badge span {
    display: block;
}

.master-image-badge span {
    color: rgba(255,255,255,.82);
    font-weight: 750;
}

.master-check-list {
    display: grid;
    gap: 12px;
    margin-top: 24px;
}

.master-check-list span {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 42px;
    padding: 10px 12px;
    border-radius: 8px;
    background: #fff;
    border: 1px solid var(--master-line);
    font-weight: 850;
}

.master-check-list i {
    color: var(--master-primary);
}

.master-connect-section {
    position: relative;
    overflow: hidden;
    background: #fff;
}

.master-connect-section::after {
    content: "";
    position: absolute;
    width: 520px;
    height: 520px;
    right: -260px;
    bottom: -270px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(245, 158, 47, .18), rgba(245, 158, 47, 0) 70%);
}

.master-connect-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(440px, 1.1fr);
    gap: 62px;
    align-items: center;
}

.master-connect-copy h2 {
    margin: 8px 0 14px;
    font-size: 44px;
    line-height: 1.08;
}

.master-connect-copy > p {
    margin: 0;
    color: var(--master-muted);
    font-size: 16px;
}

.master-connect-features {
    display: grid;
    gap: 12px;
    margin: 26px 0;
}

.master-connect-features article {
    display: grid;
    grid-template-columns: 46px minmax(0, 1fr);
    gap: 14px;
    align-items: start;
    padding: 15px;
    border: 1px solid var(--master-line);
    border-radius: 9px;
    background: #fffaf7;
}

.master-connect-features i {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border-radius: 9px;
    color: #fff;
    background: linear-gradient(135deg, var(--master-primary), var(--master-blue));
    font-size: 18px;
}

.master-connect-features strong,
.master-connect-features span {
    display: block;
}

.master-connect-features strong {
    margin-bottom: 4px;
    color: var(--master-ink);
}

.master-connect-features span {
    color: var(--master-muted);
    font-size: 14px;
}

.master-connect-cta {
    margin-top: 2px;
}

.master-connect-preview {
    position: relative;
    padding: 16px;
    border: 1px solid var(--master-line);
    border-radius: 14px;
    background: linear-gradient(145deg, #fff8f4, #f9e8ee);
    box-shadow: 0 30px 76px rgba(36, 23, 37, .14);
}

.master-connect-preview > img {
    width: 100%;
    display: block;
    border-radius: 9px;
    box-shadow: 0 15px 40px rgba(36, 23, 37, .13);
}

.master-connect-note {
    position: absolute;
    left: -24px;
    bottom: 30px;
    max-width: 290px;
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
    padding: 15px;
    border: 1px solid rgba(255,255,255,.72);
    border-radius: 10px;
    background: rgba(255,255,255,.94);
    box-shadow: 0 20px 44px rgba(36, 23, 37, .18);
    backdrop-filter: blur(12px);
}

.master-connect-note i {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border-radius: 9px;
    color: #fff;
    background: var(--master-primary);
}

.master-connect-note strong,
.master-connect-note span {
    display: block;
}

.master-connect-note strong {
    font-size: 14px;
}

.master-connect-note span {
    margin-top: 2px;
    color: var(--master-muted);
    font-size: 12px;
}

.master-dark-section {
    color: #fff;
    background: linear-gradient(135deg, rgba(36, 23, 37, .98), rgba(194, 68, 49, .92));
}

.master-dark-section p {
    color: rgba(255,255,255,.78);
}

.master-offline-grid {
    display: grid;
    grid-template-columns: minmax(0, .78fr) minmax(420px, 1fr);
    gap: 64px;
    align-items: center;
}

.master-offline-copy {
    max-width: 560px;
}

.master-offline-copy p {
    max-width: 520px;
}

.master-offline-highlights {
    display: grid;
    gap: 10px;
    margin-top: 26px;
}

.master-offline-highlights span {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 44px;
    padding: 10px 12px;
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 8px;
    color: rgba(255,255,255,.92);
    background: rgba(255,255,255,.08);
    font-weight: 850;
}

.master-offline-highlights i {
    width: 30px;
    height: 30px;
    display: grid;
    place-items: center;
    border-radius: 8px;
    color: #241725;
    background: var(--master-gold);
}

.master-offline-cta {
    margin-top: 22px;
}

.master-workflow {
    position: relative;
    display: grid;
    gap: 14px;
}

.master-workflow::before {
    content: "";
    position: absolute;
    top: 28px;
    bottom: 28px;
    left: 28px;
    width: 1px;
    background: linear-gradient(180deg, rgba(245, 158, 47, .75), rgba(240, 111, 143, .2));
}

.master-workflow article {
    position: relative;
    display: grid;
    grid-template-columns: 56px minmax(0, 1fr);
    gap: 18px;
    align-items: start;
    padding: 22px 24px;
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 8px;
    background: rgba(255,255,255,.1);
    backdrop-filter: blur(12px);
    box-shadow: 0 18px 42px rgba(36, 23, 37, .18);
}

.master-workflow span {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    border-radius: 8px;
    color: #241725;
    background: var(--master-gold);
    font-weight: 950;
    box-shadow: 0 10px 22px rgba(245, 158, 47, .24);
}

.master-workflow h3 {
    margin: 1px 0 7px;
    font-size: 21px;
    line-height: 1.2;
}

.master-workflow p {
    margin: 0;
    max-width: 560px;
}

.master-support-section {
    padding: 42px 0;
    background: #fff;
}

.master-support-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.master-support-grid article {
    display: grid;
    grid-template-columns: 58px 1fr;
    gap: 16px;
    align-items: center;
    padding: 22px;
    border: 1px solid var(--master-line);
    border-radius: 8px;
    box-shadow: 0 16px 38px rgba(16, 32, 51, .06);
}

.master-support-grid img {
    width: 52px;
    height: 52px;
    object-fit: contain;
}

.master-support-grid h3,
.master-support-grid p {
    margin: 0;
}

.master-support-grid p {
    color: var(--master-muted);
    font-size: 14px;
}

.master-pricing-section,
.master-faq-section {
    background: #fff7f3;
}

.master-price-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.master-price-grid article {
    min-height: 280px;
    padding: 30px;
    border: 1px solid var(--master-line);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 16px 42px rgba(16, 32, 51, .07);
}

.master-price-grid .is-featured {
    color: #fff;
    background: linear-gradient(135deg, var(--master-primary), var(--master-blue));
    border-color: transparent;
    transform: translateY(-10px);
}

.master-price-grid span {
    display: inline-flex;
    min-height: 30px;
    align-items: center;
    padding: 5px 10px;
    border-radius: 8px;
    color: var(--master-primary);
    background: rgba(232, 93, 63, .1);
    font-size: 12px;
    font-weight: 950;
    text-transform: uppercase;
}

.master-price-grid .is-featured span {
    color: #0b1524;
    background: var(--master-gold);
}

.master-price-grid h3 {
    margin: 20px 0 10px;
    font-size: 26px;
}

.master-price-grid p {
    color: var(--master-muted);
}

.master-price-grid .is-featured p {
    color: rgba(255,255,255,.8);
}

.master-price-grid a {
    display: inline-flex;
    margin-top: 12px;
    color: var(--master-primary);
    font-weight: 950;
}

.master-price-grid .is-featured a {
    color: var(--master-gold);
}

.master-faq-grid {
    display: grid;
    grid-template-columns: minmax(0, .86fr) minmax(420px, 1fr);
    gap: 54px;
    align-items: start;
}

.master-faq-list {
    display: grid;
    gap: 12px;
}

.master-faq-list details {
    border: 1px solid var(--master-line);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 12px 30px rgba(16, 32, 51, .05);
}

.master-faq-list summary {
    cursor: pointer;
    padding: 18px 20px;
    font-weight: 950;
}

.master-faq-list p {
    margin: 0;
    padding: 0 20px 20px;
}

.master-demo-section {
    padding: 64px 0 92px;
    background: #fff7f3;
}

.master-demo-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 28px;
    align-items: center;
    padding: 42px;
    border-radius: 10px;
    color: #fff;
    background: linear-gradient(135deg, #241725, var(--master-primary), var(--master-coral));
    box-shadow: 0 28px 70px rgba(16, 32, 51, .18);
}

.master-demo-card p {
    color: rgba(255,255,255,.78);
    margin-bottom: 0;
}

.master-footer {
    color: #dce7f5;
    background: #0b1524;
}

.master-footer-grid {
    display: grid;
    grid-template-columns: 1.35fr .75fr .75fr 1fr;
    gap: 36px;
    padding: 58px 0;
}

.master-footer h3 {
    margin: 0 0 16px;
    color: #fff;
}

.master-footer p {
    color: #9fb0c8;
}

.master-footer a {
    display: block;
    color: #dce7f5;
    margin-bottom: 10px;
}

.master-footer a:hover {
    color: var(--master-gold);
}

.master-footer-socials {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 14px;
}

.master-footer-socials a {
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    margin: 0;
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 7px;
}

.footer-logo img {
    max-height: 50px;
    margin-bottom: 16px;
}

.master-copyright {
    padding: 18px 0;
    border-top: 1px solid rgba(255,255,255,.12);
    color: #9fb0c8;
    font-size: 14px;
}

.master-reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .58s ease, transform .58s ease;
    transition-delay: var(--delay, 0ms);
}

.master-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes masterGlow {
    from {
        transform: translate3d(-20px, 10px, 0) scale(.94);
        opacity: .72;
    }
    to {
        transform: translate3d(20px, -12px, 0) scale(1.06);
        opacity: 1;
    }
}

@keyframes masterFloat {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-12px);
    }
}

@keyframes masterBars {
    from {
        transform: scaleY(.2);
        transform-origin: bottom;
    }
    to {
        transform: scaleY(1);
        transform-origin: bottom;
    }
}

@media (max-width: 980px) {
    .master-nav-wrap {
        min-height: 74px;
        flex-wrap: wrap;
    }

    .master-brand {
        flex: 1 1 auto;
    }

    .master-brand img {
        max-width: min(210px, calc(100vw - 116px));
    }

    .master-nav-toggle {
        display: grid;
    }

    .master-nav {
        width: 100%;
        display: grid;
        max-height: 0;
        overflow: hidden;
        padding: 0;
        border: 0;
        border-radius: 8px;
        background: #fff;
        opacity: 0;
        transform: translateY(-8px);
        transition: max-height .28s ease, opacity .2s ease, transform .2s ease, padding .2s ease, box-shadow .2s ease;
    }

    .master-nav.is-open {
        max-height: 520px;
        padding: 10px;
        opacity: 1;
        transform: translateY(0);
        box-shadow: 0 18px 44px rgba(16, 32, 51, .12);
    }

    .master-nav .master-nav-cta {
        margin-left: 0;
        justify-content: center;
    }

    .master-hero-grid,
    .master-product-grid,
    .master-client-showcase-grid,
    .master-feature-grid,
    .master-split,
    .master-connect-grid,
    .master-offline-grid,
    .master-support-grid,
    .master-price-grid,
    .master-faq-grid,
    .master-demo-card,
    .master-footer-grid {
        grid-template-columns: 1fr;
    }

    .master-hero,
    .master-hero-grid {
        min-height: auto;
    }

    .master-hero-grid {
        padding: 72px 0 86px;
    }

    .master-hero h1 {
        font-size: 44px;
    }

    .master-product-stage {
        min-height: auto;
        animation: none;
    }

    .master-floating-card {
        position: static;
        margin-top: 14px;
    }

    .master-section-head h2,
    .master-split h2,
    .master-connect-copy h2,
    .master-dark-section h2,
    .master-faq-grid h2,
    .master-demo-card h2 {
        font-size: 32px;
    }

    .master-image-panel img {
        height: 360px;
    }

    .master-product-copy p {
        min-height: auto;
    }

    .master-connect-grid {
        gap: 42px;
    }

    .master-connect-note {
        left: 30px;
    }

    .master-price-grid .is-featured {
        transform: none;
    }

    .master-offline-grid {
        gap: 34px;
    }

    .master-offline-copy {
        max-width: none;
    }

    .master-offline-highlights {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .master-demo-actions {
        justify-content: flex-start;
    }
}

@media (max-width: 620px) {
    .master-window-body,
    .master-mini-grid,
    .master-support-grid article {
        grid-template-columns: 1fr;
    }

    .master-offline-highlights,
    .master-workflow article {
        grid-template-columns: 1fr;
    }

    .master-workflow::before {
        display: none;
    }

    .master-workflow article {
        gap: 14px;
        padding: 20px;
    }

    .master-workflow span {
        width: 46px;
        height: 46px;
    }

    .master-side-menu {
        display: none;
    }

    .master-dashboard {
        padding: 18px;
    }

    .master-chart {
        gap: 8px;
        padding: 12px;
    }

    .master-demo-card,
    .master-price-grid article,
    .master-feature-card,
    .master-product-copy {
        padding: 24px;
    }

    .master-products-section {
        padding-top: 78px;
    }

    .master-connect-features article {
        grid-template-columns: 42px minmax(0, 1fr);
    }

    .master-connect-features i {
        width: 42px;
        height: 42px;
    }

    .master-connect-preview {
        padding: 9px;
    }

    .master-connect-note {
        position: static;
        max-width: none;
        margin-top: 10px;
    }
}

/* Akara Offline product page */
.offline-product-hero {
    overflow: hidden;
    color: #fff;
    background: #182a38;
}

.offline-hero-grid {
    min-height: 650px;
    display: grid;
    grid-template-columns: minmax(0, .88fr) minmax(480px, 1.12fr);
    gap: 58px;
    align-items: center;
    padding: 68px 0 78px;
}

.offline-hero-copy h1 {
    max-width: 690px;
    margin: 14px 0 20px;
    font-size: 58px;
    line-height: 1.03;
    letter-spacing: 0;
}

.offline-hero-copy > p {
    max-width: 650px;
    margin: 0 0 28px;
    color: #cfdae2;
    font-size: 17px;
}

.offline-btn-secondary {
    color: #fff;
    border-color: rgba(255, 255, 255, .3);
    background: transparent;
}

.offline-btn-secondary:hover {
    color: #182a38;
    background: #fff;
}

.offline-download-btn {
    gap: 9px;
    min-height: 52px;
    padding-inline: 22px;
    box-shadow: 0 18px 38px rgba(232, 93, 63, .36);
}

.offline-download-btn i {
    font-size: 17px;
}

.offline-hero-assurance {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 18px;
    margin-top: 24px;
}

.offline-hero-assurance span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #edf4f7;
    font-size: 13px;
    font-weight: 850;
}

.offline-hero-assurance i {
    color: #f6b93b;
}

.offline-hero-visual {
    position: relative;
    margin: 0;
}

.offline-hero-visual > img {
    width: 100%;
    display: block;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 8px;
    box-shadow: 0 34px 74px rgba(0, 0, 0, .28);
}

.offline-hero-visual figcaption {
    width: min(86%, 510px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin: -22px auto 0;
    padding: 15px 18px;
    border: 1px solid #dfe8eb;
    border-radius: 8px;
    color: #182a38;
    background: #fff;
    box-shadow: 0 18px 42px rgba(0, 0, 0, .22);
}

.offline-hero-visual figcaption span,
.offline-hero-visual figcaption strong {
    font-size: 12px;
}

.offline-hero-visual figcaption span {
    color: #237a59;
    font-weight: 900;
}

.offline-hero-visual figcaption span i {
    margin-right: 6px;
    font-size: 8px;
}

.offline-hero-visual figcaption strong {
    color: #526474;
    text-align: right;
}

.offline-scope-band {
    border-bottom: 1px solid #dfe8eb;
    background: #fff;
}

.offline-download-band {
    color: #fff;
    background: #e85d3f;
    box-shadow: 0 18px 44px rgba(24, 42, 56, .16);
}

.offline-download-band .master-wrap {
    min-height: 154px;
    display: grid;
    grid-template-columns: 62px minmax(0, 1fr) auto;
    gap: 20px;
    align-items: center;
    padding-top: 22px;
    padding-bottom: 22px;
}

.offline-download-icon {
    width: 62px;
    height: 62px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .28);
    border-radius: 8px;
    color: #182a38;
    background: #f6b93b;
    font-size: 28px;
}

.offline-download-copy small {
    display: block;
    color: #ffe9e2;
    font-size: 12px;
    font-weight: 950;
    text-transform: uppercase;
}

.offline-download-copy h2 {
    margin: 3px 0 4px;
    color: #fff;
    font-size: 24px;
    line-height: 1.2;
    letter-spacing: 0;
}

.offline-download-copy p {
    max-width: 760px;
    margin: 0;
    color: #fff4f0;
    font-size: 14px;
}

.offline-download-action {
    min-width: 220px;
    min-height: 66px;
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 10px;
    align-items: center;
    padding: 12px 18px;
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 8px;
    color: #fff;
    background: #182a38;
    box-shadow: 0 16px 32px rgba(24, 42, 56, .24);
    transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}

.offline-download-action:hover {
    color: #182a38;
    background: #f6b93b;
    box-shadow: 0 20px 40px rgba(24, 42, 56, .3);
    transform: translateY(-2px);
}

.offline-download-action > i {
    font-size: 22px;
    text-align: center;
}

.offline-download-action strong,
.offline-download-action small {
    display: block;
}

.offline-download-action strong {
    font-size: 15px;
}

.offline-download-action small {
    margin-top: 2px;
    color: #bfcbd3;
    font-size: 11px;
}

.offline-download-action:hover small {
    color: #465865;
}

.offline-scope-band .master-wrap {
    min-height: 108px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    align-items: center;
}

.offline-scope-band .master-wrap > div {
    min-width: 0;
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
    padding: 18px 22px;
    border-right: 1px solid #e7edef;
}

.offline-scope-band .master-wrap > div:first-child {
    padding-left: 0;
}

.offline-scope-band .master-wrap > div:last-child {
    padding-right: 0;
    border-right: 0;
}

.offline-scope-band i {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 8px;
    color: #fff;
    background: #237a59;
}

.offline-scope-band strong,
.offline-scope-band small {
    display: block;
}

.offline-scope-band strong {
    color: #182a38;
    font-size: 14px;
}

.offline-scope-band small {
    margin-top: 3px;
    color: #6b7d89;
    line-height: 1.35;
}

.offline-capabilities-section {
    background: #f6f8f7;
}

.offline-capability-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-top: 1px solid #dfe7e4;
    border-left: 1px solid #dfe7e4;
}

.offline-capability-grid article {
    min-height: 260px;
    padding: 30px;
    border-right: 1px solid #dfe7e4;
    border-bottom: 1px solid #dfe7e4;
    background: #fff;
}

.offline-capability-grid article > i {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 8px;
    color: #fff;
    background: #237a59;
    font-size: 19px;
}

.offline-capability-grid article:nth-child(3n + 2) > i {
    background: var(--master-primary);
}

.offline-capability-grid article:nth-child(3n + 3) > i {
    color: #182a38;
    background: #f6b93b;
}

.offline-capability-grid h3 {
    margin: 22px 0 9px;
    color: #182a38;
    font-size: 21px;
}

.offline-capability-grid p {
    margin: 0;
    color: #687984;
    font-size: 14px;
}

.offline-workspace-section {
    background: #fff;
}

.offline-workspace-grid {
    display: grid;
    grid-template-columns: minmax(420px, 1.08fr) minmax(0, .92fr);
    gap: 64px;
    align-items: center;
}

.offline-workspace-preview {
    padding: 14px;
    border: 1px solid #dfe8eb;
    border-radius: 8px;
    background: #eef3f1;
    box-shadow: 0 28px 68px rgba(24, 42, 56, .14);
}

.offline-workspace-preview img {
    width: 100%;
    display: block;
    border-radius: 6px;
}

.offline-workspace-copy h2,
.offline-sync-grid h2 {
    margin: 9px 0 14px;
    color: #182a38;
    font-size: 42px;
    line-height: 1.1;
    letter-spacing: 0;
}

.offline-workspace-copy > p {
    color: #687984;
}

.offline-role-list {
    display: grid;
    gap: 1px;
    margin-top: 26px;
    background: #dfe8eb;
    border: 1px solid #dfe8eb;
}

.offline-role-list > div {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 13px;
    align-items: center;
    padding: 15px;
    background: #fff;
}

.offline-role-list i {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 8px;
    color: #237a59;
    background: #eaf5f0;
}

.offline-role-list strong,
.offline-role-list small {
    display: block;
}

.offline-role-list small {
    margin-top: 3px;
    color: #687984;
    line-height: 1.4;
}

.offline-sync-section {
    padding: 76px 0;
    color: #fff;
    background: #243549;
}

.offline-sync-grid {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(500px, 1.1fr);
    gap: 64px;
    align-items: center;
}

.offline-sync-grid h2 {
    color: #fff;
}

.offline-sync-grid p {
    margin: 0;
    color: #cbd6df;
}

.offline-sync-flow {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    gap: 12px;
    align-items: center;
}

.offline-sync-flow span {
    min-height: 132px;
    display: grid;
    place-items: center;
    align-content: center;
    gap: 10px;
    padding: 18px 12px;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 8px;
    background: rgba(255, 255, 255, .08);
    text-align: center;
}

.offline-sync-flow span i {
    color: #f6b93b;
    font-size: 26px;
}

.offline-sync-flow span strong {
    font-size: 13px;
}

.offline-sync-flow > i {
    color: #f08a70;
}

.offline-deployment-section {
    background: #fff8f4;
}

.offline-step-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.offline-step-grid article {
    min-height: 240px;
    padding: 26px;
    border-top: 3px solid #237a59;
    background: #fff;
    box-shadow: 0 16px 40px rgba(24, 42, 56, .08);
}

.offline-step-grid article:nth-child(even) {
    border-top-color: var(--master-primary);
}

.offline-step-grid span {
    color: #237a59;
    font-size: 13px;
    font-weight: 950;
}

.offline-step-grid h3 {
    margin: 28px 0 9px;
    color: #182a38;
    font-size: 21px;
}

.offline-step-grid p {
    margin: 0;
    color: #687984;
    font-size: 14px;
}

.offline-product-cta {
    padding: 72px 0;
    color: #fff;
    background: #182a38;
}

.offline-product-cta .master-wrap {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 36px;
    align-items: center;
}

.offline-product-cta h2 {
    max-width: 720px;
    margin: 8px 0 10px;
    font-size: 40px;
    line-height: 1.1;
    letter-spacing: 0;
}

.offline-product-cta p {
    max-width: 730px;
    margin: 0;
    color: #cbd6df;
}

@media (max-width: 980px) {
    .offline-hero-grid,
    .offline-workspace-grid,
    .offline-sync-grid,
    .offline-product-cta .master-wrap {
        grid-template-columns: 1fr;
    }

    .offline-hero-grid {
        gap: 42px;
        padding: 58px 0 72px;
    }

    .offline-hero-copy h1 {
        font-size: 46px;
    }

    .offline-scope-band .master-wrap,
    .offline-capability-grid,
    .offline-step-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .offline-download-band .master-wrap {
        grid-template-columns: 62px minmax(0, 1fr);
    }

    .offline-download-action {
        grid-column: 2;
        justify-self: start;
    }

    .offline-scope-band .master-wrap > div:nth-child(2) {
        border-right: 0;
    }

    .offline-scope-band .master-wrap > div:nth-child(-n + 2) {
        border-bottom: 1px solid #e7edef;
    }

    .offline-scope-band .master-wrap > div:first-child,
    .offline-scope-band .master-wrap > div:last-child {
        padding: 18px 22px;
    }

    .offline-sync-grid {
        gap: 38px;
    }

    .offline-product-cta .master-actions {
        justify-content: flex-start;
    }
}

@media (max-width: 620px) {
    .offline-hero-grid {
        min-height: auto;
        padding: 46px 0 58px;
    }

    .offline-hero-copy h1 {
        font-size: 38px;
    }

    .offline-hero-copy > p {
        font-size: 15px;
    }

    .offline-hero-copy .master-actions,
    .offline-product-cta .master-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .offline-download-band .master-wrap {
        grid-template-columns: 48px minmax(0, 1fr);
        gap: 14px;
        padding-top: 24px;
        padding-bottom: 26px;
    }

    .offline-download-icon {
        width: 48px;
        height: 48px;
        font-size: 22px;
    }

    .offline-download-copy h2 {
        font-size: 20px;
    }

    .offline-download-copy p {
        margin-top: 8px;
        font-size: 13px;
    }

    .offline-download-action {
        width: 100%;
        grid-column: 1 / -1;
        justify-self: stretch;
    }

    .offline-hero-visual figcaption {
        width: calc(100% - 24px);
        align-items: flex-start;
        flex-direction: column;
        gap: 4px;
        margin-top: -12px;
    }

    .offline-hero-visual figcaption strong {
        text-align: left;
    }

    .offline-scope-band .master-wrap,
    .offline-capability-grid,
    .offline-step-grid,
    .offline-sync-flow {
        grid-template-columns: 1fr;
    }

    .offline-scope-band .master-wrap > div,
    .offline-scope-band .master-wrap > div:first-child,
    .offline-scope-band .master-wrap > div:last-child,
    .offline-scope-band .master-wrap > div:nth-child(2) {
        padding: 16px 0;
        border-right: 0;
        border-bottom: 1px solid #e7edef;
    }

    .offline-scope-band .master-wrap > div:last-child {
        border-bottom: 0;
    }

    .offline-capability-grid article {
        min-height: auto;
        padding: 24px;
    }

    .offline-workspace-grid {
        gap: 38px;
    }

    .offline-workspace-preview {
        padding: 8px;
    }

    .offline-workspace-copy h2,
    .offline-sync-grid h2,
    .offline-product-cta h2 {
        font-size: 31px;
    }

    .offline-sync-flow > i {
        transform: rotate(90deg);
        justify-self: center;
    }

    .offline-sync-flow span {
        min-height: 104px;
    }

    .offline-step-grid article {
        min-height: auto;
    }
}
