/* ==========================================================================
   Plums ERP — marketing website
   Brand: plum (logo) + navy (product UI). Bootstrap 5.3.8 is the base layer.
   ========================================================================== */

:root {
    /* Brand — plum, taken from the Plums logo (brightened for the vibrant pass) */
    --plum-900: #4A0B26;
    --plum-800: #6E1245;
    --plum-700: #8E1B57;
    --plum-600: #B62A74;
    --plum-500: #D63B8A;
    --plum-100: #FDE7F3;
    --plum-050: #FFF4FA;

    /* Product — navy, taken from the Plums ERP application UI */
    --navy-950: #061633;
    --navy-900: #0A2148;
    --navy-800: #0F2D5E;
    --navy-700: #123B78;
    --navy-600: #1E5BC6;
    --navy-500: #2F6FE4;
    --navy-200: #C6D8F5;
    --navy-100: #E7EEFB;
    --navy-050: #F2F6FF;

    /* Vivid accent ramp — icon badges, hairlines, highlights.
       Deliberately blue -> indigo -> violet -> cyan -> teal: a card can have its
       own colour without ever going red. */
    --accent-blue: #2563EB;
    --accent-indigo: #4F46E5;
    --accent-violet: #7C3AED;
    --accent-cyan: #0891B2;
    --accent-teal: #0D9488;
    --accent-deep: #1D4ED8;

    /* Ink / surfaces */
    --ink: #0F172A;
    --body: #46556E;
    --muted: #6C7A93;
    --line: #E1E8F6;
    --surface: #FFFFFF;
    --surface-alt: #F1F6FF;

    --radius-sm: .5rem;
    --radius: .875rem;
    --radius-lg: 1.25rem;

    --shadow-sm: 0 1px 2px rgba(11, 36, 71, .06), 0 2px 8px rgba(11, 36, 71, .05);
    --shadow: 0 10px 30px rgba(11, 36, 71, .08);
    --shadow-lg: 0 24px 60px rgba(11, 36, 71, .16);

    --font: "Roboto", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
}

/* --------------------------------------------------------------------------
   Base
   -------------------------------------------------------------------------- */

* {
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body {
    font-family: var(--font);
    color: var(--body);
    background: var(--surface);
    font-size: 1rem;
    line-height: 1.65;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
    color: var(--navy-900);
    font-weight: 700;
    letter-spacing: -.015em;
    line-height: 1.2;
}

h1 { font-size: clamp(2.1rem, 4.4vw, 3.25rem); }
h2 { font-size: clamp(1.6rem, 2.8vw, 2.25rem); }
h3 { font-size: 1.2rem; }

p { margin-bottom: 0; }

a { color: var(--navy-600); text-decoration: none; }
a:hover { color: var(--plum-700); }

img { max-width: 100%; height: auto; }

::selection { background: var(--plum-100); color: var(--plum-900); }

.skip-link {
    position: absolute;
    left: -9999px;
    top: 0;
    z-index: 2000;
    background: var(--plum-700);
    color: #fff;
    padding: .6rem 1rem;
    border-radius: 0 0 var(--radius-sm) 0;
}

.skip-link:focus { left: 0; color: #fff; }

/* --------------------------------------------------------------------------
   Layout helpers
   -------------------------------------------------------------------------- */

.section { padding: 5.5rem 0; }
.section-sm { padding: 3.5rem 0; }
.section-alt { background: var(--surface-alt); }
.section-navy { background: var(--navy-900); color: rgba(255, 255, 255, .78); }
.section-navy h1, .section-navy h2, .section-navy h3 { color: #fff; }

/*
 * Below the xl breakpoint .container-xl is full-bleed with Bootstrap's 12px padding,
 * but the .row.g-5 grids used on this site have a 48px gutter -> -24px margins, so the
 * row box would stick out 12px on each side and give the page a horizontal scrollbar.
 * Widening the container padding to half the widest gutter keeps every row inside the page.
 */
@media (max-width: 1199.98px) {
    .container-xl {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}

.section-head { max-width: 46rem; margin: 0 auto 3rem; text-align: center; }
.section-head p { color: var(--body); font-size: 1.0625rem; }
.section-head--left { margin-left: 0; text-align: left; }

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--plum-700);
    margin-bottom: .85rem;
}

.eyebrow::before {
    content: "";
    width: 1.75rem;
    height: 2px;
    border-radius: 2px;
    background: var(--plum-600);
}

.section-navy .eyebrow { color: var(--plum-500); }
.section-navy .eyebrow::before { background: var(--plum-500); }

.lead-text { font-size: 1.0625rem; color: var(--body); }

.text-plum { color: var(--plum-700) !important; }
.text-navy { color: var(--navy-700) !important; }
.text-muted-2 { color: var(--muted) !important; }

.divider-soft { height: 1px; background: var(--line); border: 0; opacity: 1; }

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */

.btn {
    --bs-btn-focus-box-shadow: 0 0 0 .2rem rgba(122, 25, 70, .18);
    font-weight: 600;
    border-radius: var(--radius-sm);
    padding: .72rem 1.35rem;
    font-size: .95rem;
    transition: transform .15s ease, box-shadow .15s ease, background-color .15s ease,
        color .15s ease, border-color .15s ease;
}

.btn:active { transform: translateY(1px); }
.btn-lg { padding: .9rem 1.75rem; font-size: 1rem; }
.btn-sm { padding: .5rem 1rem; font-size: .875rem; }

.btn-plum {
    background: linear-gradient(135deg, var(--plum-700), var(--plum-800));
    border: 1px solid var(--plum-800);
    color: #fff;
    box-shadow: 0 8px 20px rgba(122, 25, 70, .22);
}

.btn-plum:hover, .btn-plum:focus {
    background: linear-gradient(135deg, var(--plum-600), var(--plum-700));
    border-color: var(--plum-700);
    color: #fff;
    box-shadow: 0 10px 26px rgba(122, 25, 70, .3);
}

.btn-outline-navy {
    border: 1px solid var(--navy-200);
    color: var(--navy-700);
    background: #fff;
}

.btn-outline-navy:hover, .btn-outline-navy:focus {
    border-color: var(--navy-600);
    background: var(--navy-050);
    color: var(--navy-700);
}

.btn-white {
    background: #fff;
    color: var(--navy-800);
    border: 1px solid #fff;
}

.btn-white:hover, .btn-white:focus { background: #EFF4FB; color: var(--navy-900); }

.btn-ghost-light {
    border: 1px solid rgba(255, 255, 255, .38);
    color: #fff;
    background: rgba(255, 255, 255, .04);
}

.btn-ghost-light:hover, .btn-ghost-light:focus {
    border-color: #fff;
    background: rgba(255, 255, 255, .12);
    color: #fff;
}

/* --------------------------------------------------------------------------
   Header / navigation
   -------------------------------------------------------------------------- */

.site-header {
    position: sticky;
    top: 0;
    z-index: 1030;
    background: rgba(255, 255, 255, .92);
    backdrop-filter: saturate(180%) blur(12px);
    border-bottom: 1px solid transparent;
    transition: border-color .2s ease, box-shadow .2s ease;
}

.site-header.is-scrolled {
    border-bottom-color: var(--line);
    box-shadow: 0 6px 24px rgba(11, 36, 71, .07);
}

.site-nav { padding: .7rem 0; }

.brand-logo { height: 2.5rem; width: auto; }

.site-nav .navbar-nav { gap: .15rem; }

.site-nav .nav-link {
    color: var(--navy-900);
    font-weight: 500;
    font-size: .95rem;
    padding: .5rem .8rem;
    border-radius: var(--radius-sm);
}

.site-nav .nav-link:hover { color: var(--plum-700); background: var(--plum-050); }

.site-nav .nav-link.active {
    color: var(--plum-700);
    font-weight: 600;
}

.site-nav .navbar-toggler {
    border: 1px solid var(--line);
    padding: .35rem .55rem;
    border-radius: var(--radius-sm);
}

.site-nav .navbar-toggler:focus { box-shadow: none; }

.nav-cta { display: flex; gap: .5rem; align-items: center; }

@media (max-width: 991.98px) {
    .nav-cta {
        flex-direction: column;
        align-items: stretch;
        margin-top: .75rem;
        padding-top: .85rem;
        border-top: 1px solid var(--line);
    }

    .nav-cta .btn { width: 100%; }
    .site-nav .navbar-collapse { padding-bottom: .75rem; }
}

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */

.hero {
    position: relative;
    background:
        radial-gradient(58rem 34rem at 82% -8%, rgba(150, 37, 90, .42), transparent 62%),
        radial-gradient(48rem 30rem at 4% 6%, rgba(44, 99, 184, .35), transparent 60%),
        linear-gradient(160deg, var(--navy-950) 0%, var(--navy-900) 42%, var(--navy-800) 100%);
    color: rgba(255, 255, 255, .8);
    overflow: hidden;
    padding: 5.5rem 0 5rem;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, .085) 1px, transparent 1px);
    background-size: 22px 22px;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, .9), transparent 78%);
    pointer-events: none;
}

.hero > .container-xl { position: relative; z-index: 1; }

.hero h1 { color: #fff; margin-bottom: 1.1rem; }
.hero .hero-sub { font-size: 1.1rem; max-width: 34rem; }
.hero .eyebrow { color: #F2C6D9; }
.hero .eyebrow::before { background: var(--plum-500); }

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: rgba(255, 255, 255, .09);
    border: 1px solid rgba(255, 255, 255, .16);
    color: #fff;
    font-size: .8125rem;
    font-weight: 500;
    padding: .4rem .85rem;
    border-radius: 999px;
    margin-bottom: 1.4rem;
}

.hero-badge .dot {
    width: .45rem;
    height: .45rem;
    border-radius: 50%;
    background: #48D08A;
    box-shadow: 0 0 0 3px rgba(72, 208, 138, .22);
}

.hero-actions { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 1.9rem; }

.hero-points {
    display: flex;
    flex-wrap: wrap;
    gap: .55rem 1.6rem;
    margin-top: 1.9rem;
    padding-top: 1.6rem;
    border-top: 1px solid rgba(255, 255, 255, .14);
    font-size: .9375rem;
}

.hero-points span { display: inline-flex; align-items: center; gap: .5rem; }

.hero-points svg { width: 1.05rem; height: 1.05rem; flex: 0 0 auto; color: #6FE0A8; }

.hero-visual { position: relative; }

.hero-glow {
    position: absolute;
    inset: -8% -6% -12%;
    background: radial-gradient(closest-side, rgba(150, 37, 90, .45), transparent 72%);
    filter: blur(12px);
    z-index: 0;
}

.hero-visual .browser-frame { position: relative; z-index: 1; }

/* --------------------------------------------------------------------------
   Page header (inner pages)
   -------------------------------------------------------------------------- */

.page-head {
    position: relative;
    background:
        radial-gradient(46rem 26rem at 88% -20%, rgba(150, 37, 90, .38), transparent 60%),
        linear-gradient(150deg, var(--navy-950), var(--navy-800));
    color: rgba(255, 255, 255, .78);
    padding: 4.25rem 0 3.75rem;
    overflow: hidden;
}

.page-head h1 { color: #fff; margin-bottom: .85rem; }
.page-head p { max-width: 44rem; font-size: 1.0625rem; }
.page-head .eyebrow { color: #F2C6D9; }
.page-head .eyebrow::before { background: var(--plum-500); }

.breadcrumb-nav {
    font-size: .8125rem;
    color: rgba(255, 255, 255, .6);
    margin-bottom: 1rem;
}

.breadcrumb-nav a { color: rgba(255, 255, 255, .82); }
.breadcrumb-nav a:hover { color: #fff; }
.breadcrumb-nav .sep { padding: 0 .4rem; opacity: .55; }

/* --------------------------------------------------------------------------
   Browser frame around screenshots
   -------------------------------------------------------------------------- */

.browser-frame {
    border-radius: var(--radius-lg);
    background: #fff;
    border: 1px solid rgba(11, 36, 71, .1);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.browser-frame__bar {
    display: flex;
    align-items: center;
    gap: .45rem;
    padding: .6rem .85rem;
    background: linear-gradient(180deg, #F4F7FB, #EAEFF7);
    border-bottom: 1px solid rgba(11, 36, 71, .08);
}

.browser-frame__bar i {
    width: .55rem;
    height: .55rem;
    border-radius: 50%;
    background: #C9D5E4;
    display: block;
}

.browser-frame__bar i:nth-child(1) { background: #E8A2AE; }
.browser-frame__bar i:nth-child(2) { background: #EFCF9B; }
.browser-frame__bar i:nth-child(3) { background: #A6D3B4; }

.browser-frame__url {
    flex: 1;
    margin-left: .6rem;
    font-size: .6875rem;
    color: var(--muted);
    background: #fff;
    border: 1px solid rgba(11, 36, 71, .07);
    border-radius: 999px;
    padding: .18rem .7rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.browser-frame img { display: block; width: 100%; }

.browser-frame--flat { box-shadow: var(--shadow); }

/* --------------------------------------------------------------------------
   Cards
   -------------------------------------------------------------------------- */

.module-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 1.5rem;
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.module-card:hover {
    transform: translateY(-4px);
    border-color: var(--navy-200);
    box-shadow: var(--shadow);
}

.module-card__icon {
    width: 2.75rem;
    height: 2.75rem;
    border-radius: .75rem;
    display: grid;
    place-items: center;
    background: var(--badge-bg, linear-gradient(135deg, var(--accent-a, var(--accent-blue)), var(--accent-b, #60A5FA)));
    color: #fff;
    box-shadow: 0 10px 20px -12px rgba(13, 40, 90, .6);
    margin-bottom: 1rem;
}

.module-card__icon svg { width: 1.4rem; height: 1.4rem; }
.module-card h3 { font-size: 1.0625rem; margin-bottom: .5rem; }
.module-card p { font-size: .9375rem; color: var(--body); }

.module-card__list {
    list-style: none;
    padding: 0;
    margin: .9rem 0 0;
    display: grid;
    gap: .3rem;
}

.module-card__list li {
    position: relative;
    padding-left: 1.1rem;
    font-size: .875rem;
    color: var(--body);
}

.module-card__list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: .55rem;
    width: .4rem;
    height: .4rem;
    border-radius: 50%;
    background: var(--plum-600);
    opacity: .75;
}

/* Flagged modules sit a little higher; the badge colour comes from the grid slot. */
.module-card--plum { box-shadow: 0 16px 34px -24px rgba(13, 40, 90, .55); }

.feature-row { align-items: center; }
.feature-row + .feature-row { margin-top: 4.5rem; }

.check-list {
    list-style: none;
    padding: 0;
    margin: 1.4rem 0 0;
    display: grid;
    gap: .6rem;
}

/* The tick is a CSS background image so the markup stays plain <li>text</li>. */
.check-list li {
    position: relative;
    padding-left: 1.75rem;
    font-size: .9375rem;
    color: var(--body);
}

.check-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: .18rem;
    width: 1.1rem;
    height: 1.1rem;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232563EB' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") no-repeat center / contain;
}

.check-list--light li { color: rgba(255, 255, 255, .82); }

.check-list--light li::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236FE0A8' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
}

.check-list--2col { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .6rem 1.5rem; }

@media (max-width: 767.98px) {
    .check-list--2col { grid-template-columns: 1fr; }
}

.stat-tile {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 1.35rem 1.1rem;
    text-align: center;
    height: 100%;
}

.stat-tile__value {
    font-size: 1.65rem;
    font-weight: 700;
    color: var(--navy-800);
    line-height: 1.1;
}

.stat-tile__label {
    font-size: .8125rem;
    color: var(--muted);
    margin-top: .35rem;
    letter-spacing: .01em;
}

.section-navy .stat-tile {
    background: rgba(255, 255, 255, .05);
    border-color: rgba(255, 255, 255, .12);
}

.section-navy .stat-tile__value { color: #fff; }
.section-navy .stat-tile__label { color: rgba(255, 255, 255, .62); }

.quote-card {
    background: #fff;
    border: 1px solid var(--line);
    border-left: 3px solid var(--plum-600);
    border-radius: var(--radius);
    padding: 1.5rem;
    height: 100%;
}

.quote-card p { font-size: .9375rem; color: var(--body); font-style: italic; }

.quote-card__who {
    display: flex;
    align-items: center;
    gap: .75rem;
    margin-top: 1.1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--line);
}

.avatar-initials {
    width: 2.4rem;
    height: 2.4rem;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: var(--navy-100);
    color: var(--navy-700);
    font-weight: 700;
    font-size: .8125rem;
    flex: 0 0 auto;
}

.quote-card__name { font-size: .9375rem; font-weight: 600; color: var(--navy-900); }
.quote-card__role { font-size: .8125rem; color: var(--muted); }

/* --------------------------------------------------------------------------
   Screenshot gallery (the .gallery-item figures on the Features page)
   -------------------------------------------------------------------------- */

.gallery-item figcaption {
    font-size: .8125rem;
    color: var(--muted);
    margin-top: .7rem;
    text-align: center;
}

/* --------------------------------------------------------------------------
   Screenshot zoom viewer (click any product screen to enlarge it)
   -------------------------------------------------------------------------- */

.browser-frame--zoomable {
    position: relative;
    cursor: zoom-in;
}

.browser-frame--zoomable:focus-visible {
    outline: 3px solid var(--plum-500);
    outline-offset: 3px;
}

.browser-frame__zoom {
    position: absolute;
    right: .75rem;
    bottom: .75rem;
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    padding: .3rem .75rem;
    border-radius: 999px;
    background: rgba(7, 26, 54, .78);
    color: #fff;
    font-size: .75rem;
    font-weight: 500;
    line-height: 1.6;
    opacity: 0;
    transform: translateY(.25rem);
    transition: opacity .18s ease, transform .18s ease;
    pointer-events: none;
}

/* Magnifier + plus, inline so the badge needs no extra markup. */
.browser-frame__zoom::before {
    content: "";
    width: .85rem;
    height: .85rem;
    flex: 0 0 auto;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2.2' stroke-linecap='round'%3E%3Ccircle cx='10.5' cy='10.5' r='6.5'/%3E%3Cline x1='15.4' y1='15.4' x2='21' y2='21'/%3E%3Cline x1='10.5' y1='7.8' x2='10.5' y2='13.2'/%3E%3Cline x1='7.8' y1='10.5' x2='13.2' y2='10.5'/%3E%3C/svg%3E") no-repeat center / contain;
}

.browser-frame--zoomable:hover .browser-frame__zoom,
.browser-frame--zoomable:focus-visible .browser-frame__zoom {
    opacity: 1;
    transform: none;
}

.shotviewer {
    position: fixed;
    inset: 0;
    z-index: 1080; /* above the sticky header (1030) and back-to-top (1040) */
    display: none;
    background: rgba(7, 26, 54, .95);
}

.shotviewer.is-open {
    display: block;
    animation: shotviewer-in .16s ease-out;
}

@keyframes shotviewer-in {
    from { opacity: 0; }
    to { opacity: 1; }
}

body.has-shotviewer-open { overflow: hidden; }

.shotviewer__bar {
    position: absolute;
    inset: 0 0 auto;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: .6rem .9rem;
    background: linear-gradient(rgba(7, 26, 54, .96), rgba(7, 26, 54, .72) 70%, transparent);
}

.shotviewer__title {
    margin: 0;
    font-size: .875rem;
    font-weight: 600;
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.shotviewer__tools {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: .4rem;
}

.shotviewer__btn {
    font: inherit;
    font-size: .8125rem;
    color: #fff;
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .26);
    border-radius: var(--radius-sm);
    padding: .35rem .65rem;
    line-height: 1.3;
    cursor: pointer;
    text-decoration: none;
    white-space: nowrap;
}

.shotviewer__btn:hover {
    background: rgba(255, 255, 255, .26);
    color: #fff;
}

.shotviewer__btn:focus-visible,
.shotviewer__nav:focus-visible {
    outline: 2px solid #8FB8FF;
    outline-offset: 2px;
}

.shotviewer__zoom {
    min-width: 3.2rem;
    text-align: center;
    font-size: .8125rem;
    color: rgba(255, 255, 255, .82);
    font-variant-numeric: tabular-nums;
}

.shotviewer__stage {
    position: absolute;
    inset: 0;
    overflow: hidden;
    cursor: grab;
    touch-action: none;
    -webkit-user-select: none;
    user-select: none;
}

.shotviewer__stage.is-dragging { cursor: grabbing; }

/* The image is anchored at the origin so translate() + scale() map straight to
   "top-left pixel position + zoom level" - see the viewer code in site.js. */
.shotviewer__stage img {
    position: absolute;
    left: 0;
    top: 0;
    transform-origin: 0 0;
    max-width: none;
    max-height: none;
    background: #fff;
    box-shadow: 0 18px 60px -12px rgba(0, 0, 0, .8);
}

.shotviewer__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    width: 2.6rem;
    height: 4rem;
    display: grid;
    place-items: center;
    font: inherit;
    font-size: 1.6rem;
    line-height: 1;
    color: #fff;
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: var(--radius-sm);
    cursor: pointer;
}

.shotviewer__nav:hover { background: rgba(255, 255, 255, .26); }
.shotviewer__nav[hidden] { display: none; }
.shotviewer__nav--prev { left: .75rem; }
.shotviewer__nav--next { right: .75rem; }

.shotviewer__hint {
    position: absolute;
    left: 50%;
    bottom: .7rem;
    transform: translateX(-50%);
    z-index: 3;
    margin: 0;
    padding: .35rem .9rem;
    border-radius: 999px;
    background: rgba(7, 26, 54, .78);
    color: rgba(255, 255, 255, .72);
    font-size: .75rem;
    white-space: nowrap;
}

.shotviewer__hint b { color: #fff; font-weight: 600; }

@media (max-width: 767.98px) {
    .shotviewer__hint,
    .shotviewer__zoom { display: none; }
    .shotviewer__nav { width: 2.1rem; height: 3.2rem; font-size: 1.35rem; }
}

@media (prefers-reduced-motion: reduce) {
    .shotviewer.is-open { animation: none; }
    .browser-frame__zoom { transition: none; }
}

/* --------------------------------------------------------------------------
   UAE strip
   -------------------------------------------------------------------------- */

.uae-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.25rem;
    border-radius: var(--radius);
    background: #fff;
    border: 1px solid var(--line);
    height: 100%;
}

.uae-item__icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: .7rem;
    display: grid;
    place-items: center;
    background: var(--badge-bg, linear-gradient(135deg, var(--accent-a, var(--accent-blue)), var(--accent-b, #60A5FA)));
    color: #fff;
    box-shadow: 0 10px 20px -12px rgba(13, 40, 90, .6);
    flex: 0 0 auto;
}

.uae-item__icon svg { width: 1.3rem; height: 1.3rem; }
.uae-item h3 { font-size: 1rem; margin-bottom: .35rem; }
.uae-item p { font-size: .9rem; color: var(--body); }

/* --------------------------------------------------------------------------
   CTA band
   -------------------------------------------------------------------------- */

.cta-band {
    position: relative;
    border-radius: var(--radius-lg);
    padding: 3.25rem 2.75rem;
    background:
        radial-gradient(34rem 20rem at 88% -30%, rgba(150, 37, 90, .5), transparent 62%),
        linear-gradient(140deg, var(--navy-950), var(--navy-800));
    color: rgba(255, 255, 255, .8);
    overflow: hidden;
}

.cta-band h2 { color: #fff; }
.cta-band .cta-actions { display: flex; flex-wrap: wrap; gap: .75rem; }

@media (min-width: 992px) {
    .cta-band .cta-actions { justify-content: flex-end; }
}

/* --------------------------------------------------------------------------
   Pricing
   -------------------------------------------------------------------------- */

.plan-card {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 2rem 1.75rem;
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.plan-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }

.plan-card--featured {
    border-color: var(--plum-600);
    box-shadow: 0 18px 44px rgba(122, 25, 70, .14);
}

.plan-card__tag {
    position: absolute;
    top: -0.75rem;
    left: 1.75rem;
    background: var(--plum-700);
    color: #fff;
    font-size: .6875rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: .3rem .7rem;
    border-radius: 999px;
}

.plan-card h3 { font-size: 1.25rem; margin-bottom: .35rem; }
.plan-card .plan-desc { font-size: .9375rem; color: var(--body); }

.plan-price {
    margin: 1.25rem 0 .25rem;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--navy-800);
    line-height: 1.1;
}

.plan-price small { display: block; font-size: .8125rem; font-weight: 400; color: var(--muted); margin-top: .35rem; }

.plan-card .check-list { margin-top: 1.25rem; margin-bottom: 1.75rem; }
.plan-card .check-list li { font-size: .9rem; }
/* Push the plan's buttons to the bottom edge of the card. */
.plan-card .btn { margin-top: auto; }

/* --------------------------------------------------------------------------
   FAQ
   -------------------------------------------------------------------------- */

.faq .accordion-item {
    border: 1px solid var(--line);
    border-radius: var(--radius) !important;
    margin-bottom: .75rem;
    overflow: hidden;
}

.faq .accordion-button {
    font-weight: 600;
    color: var(--navy-900);
    font-size: 1rem;
    padding: 1.1rem 1.25rem;
}

.faq .accordion-button:not(.collapsed) {
    background: var(--plum-050);
    color: var(--plum-800);
    box-shadow: none;
}

.faq .accordion-button:focus { box-shadow: none; border-color: var(--line); }

.faq .accordion-body { font-size: .9375rem; color: var(--body); padding-top: 0; }

/* --------------------------------------------------------------------------
   Contact
   -------------------------------------------------------------------------- */

.contact-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 1.5rem;
    height: 100%;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.contact-card__icon {
    width: 2.6rem;
    height: 2.6rem;
    border-radius: .7rem;
    display: grid;
    place-items: center;
    background: var(--badge-bg, linear-gradient(135deg, var(--accent-a, var(--accent-blue)), var(--accent-b, #60A5FA)));
    color: #fff;
    box-shadow: 0 10px 20px -12px rgba(13, 40, 90, .6);
    flex: 0 0 auto;
}

.contact-card__icon svg { width: 1.35rem; height: 1.35rem; }
.contact-card h3 { font-size: 1rem; margin-bottom: .3rem; }
.contact-card a { font-weight: 600; }

.info-panel {
    background: var(--navy-900);
    color: rgba(255, 255, 255, .76);
    border-radius: var(--radius-lg);
    padding: 2.25rem;
}

.info-panel h2, .info-panel h3 { color: #fff; }
.info-panel .eyebrow { color: var(--plum-500); }
.info-panel .eyebrow::before { background: var(--plum-500); }
.info-panel .check-list li { color: rgba(255, 255, 255, .82); }

.info-panel .check-list li::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236FE0A8' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */

.site-footer {
    background: var(--navy-950);
    color: rgba(255, 255, 255, .66);
    padding: 4rem 0 1.75rem;
    font-size: .9375rem;
}

.site-footer h4 {
    color: #fff;
    font-size: .8125rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    margin-bottom: 1.1rem;
}

.footer-logo { height: 2.75rem; width: auto; margin-bottom: 1.1rem; }

.site-footer .footer-about { max-width: 20rem; font-size: .9rem; }

.footer-links { list-style: none; padding: 0; margin: 0; display: grid; gap: .6rem; }
.footer-links a { color: rgba(255, 255, 255, .68); font-size: .9rem; }
.footer-links a:hover { color: #fff; }

.footer-contact { list-style: none; padding: 0; margin: 0; display: grid; gap: .75rem; }

.footer-contact li { display: flex; gap: .6rem; font-size: .9rem; }
.footer-contact svg { width: 1.05rem; height: 1.05rem; flex: 0 0 auto; margin-top: .2rem; color: var(--navy-200); }
.footer-contact a { color: rgba(255, 255, 255, .78); }
.footer-contact a:hover { color: #fff; }

.footer-bottom {
    margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, .1);
    display: flex;
    flex-wrap: wrap;
    gap: .75rem 1.5rem;
    justify-content: space-between;
    font-size: .85rem;
    color: rgba(255, 255, 255, .55);
}

.footer-bottom a { color: rgba(255, 255, 255, .7); }
.footer-bottom a:hover { color: #fff; }

/* --------------------------------------------------------------------------
   Back to top
   -------------------------------------------------------------------------- */

.back-to-top {
    position: fixed;
    right: 1.25rem;
    bottom: 1.25rem;
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 50%;
    border: none;
    background: var(--navy-800);
    color: #fff;
    display: grid;
    place-items: center;
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity .2s ease, transform .2s ease, visibility .2s ease, background-color .2s ease;
    z-index: 1040;
}

.back-to-top.is-visible { opacity: 1; visibility: visible; transform: none; }
.back-to-top:hover { background: var(--plum-700); }
.back-to-top svg { width: 1.2rem; height: 1.2rem; }

/* --------------------------------------------------------------------------
   Reveal on scroll
   -------------------------------------------------------------------------- */

.reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity .6s ease, transform .6s ease;
    will-change: opacity, transform;
}

.reveal.is-visible { opacity: 1; transform: none; }

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */

@media (max-width: 991.98px) {
    .section { padding: 3.75rem 0; }
    .hero { padding: 3.5rem 0 3.25rem; text-align: left; }
    .hero .hero-sub { font-size: 1rem; }
    .page-head { padding: 3rem 0 2.75rem; }
    .cta-band { padding: 2.25rem 1.5rem; }
    .feature-row + .feature-row { margin-top: 3.25rem; }
    .feature-row .order-lg-1, .feature-row .order-lg-2 { order: 0 !important; }
    .brand-logo { height: 2.15rem; }
}

@media (max-width: 575.98px) {
    h1 { font-size: 1.85rem; }
    .hero-actions .btn, .cta-band .cta-actions .btn { width: 100%; }
    .hero-points { gap: .5rem 1rem; font-size: .875rem; }
    .browser-frame__url { display: none; }
    .section-head { margin-bottom: 2.25rem; }
}

@media (prefers-reduced-motion: reduce) {
    .reveal { opacity: 1; transform: none; transition: none; }
    .btn, .module-card, .plan-card { transition: none; }
    html { scroll-behavior: auto !important; }
}

/* ==========================================================================
   Vibrancy layer (2026-09)
   Coloured icon badges, gradient hairlines, tinted section washes and gradient
   headlines. Everything here is additive — delete this block and the site drops
   straight back to the flat palette above.
   ========================================================================== */

/* ------------------------------- per-slot accent (badge + hairline + bullets) */

/* The accent pair lives on the grid column, so a card picks up the colour of
   its slot. Cool ramp on purpose: blue -> indigo -> violet -> cyan -> teal. */
.row > :nth-child(6n + 1) { --accent-a: var(--accent-blue);   --accent-b: #60A5FA; }
.row > :nth-child(6n + 2) { --accent-a: var(--accent-indigo); --accent-b: #8B9BFF; }
.row > :nth-child(6n + 3) { --accent-a: var(--accent-violet); --accent-b: #B98BFF; }
.row > :nth-child(6n + 4) { --accent-a: var(--accent-cyan);   --accent-b: #38D3F0; }
.row > :nth-child(6n + 5) { --accent-a: var(--accent-teal);   --accent-b: #2FD3BE; }
.row > :nth-child(6n)     { --accent-a: var(--accent-deep);   --accent-b: #7BA8FF; }

/* -------------------------------------------------------- card top hairlines */

.module-card,
.uae-item,
.contact-card,
.plan-card {
    border-top: 3px solid var(--accent-a, var(--navy-200));
}

.module-card:hover,
.uae-item:hover,
.contact-card:hover,
.plan-card:hover {
    border-color: var(--accent-a, var(--navy-200));
    box-shadow: 0 22px 46px -24px rgba(13, 40, 90, .5);
}

.module-card__list li::before { background: var(--accent-a, var(--plum-600)); opacity: 1; }

.quote-card { border-left-color: var(--accent-a, var(--accent-violet)); }

.avatar-initials {
    background: linear-gradient(135deg, var(--accent-a, var(--accent-blue)), var(--accent-b, #60A5FA));
    color: #fff;
}

/* ------------------------------------------------------------- stat tiles */

.stat-tile {
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #fff, var(--navy-050));
}

.stat-tile::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-a, var(--accent-blue)), var(--accent-b, #60A5FA));
}

.stat-tile__value {
    background-image: linear-gradient(135deg, var(--accent-a, var(--navy-800)), var(--accent-b, var(--navy-600)));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-navy .stat-tile::before { background: linear-gradient(90deg, #C4B5FD, #67E8F9); }

.section-navy .stat-tile__value {
    background-image: none;
    -webkit-text-fill-color: currentColor;
}

/* ------------------------------------------------------ gradient headlines */

@supports (-webkit-background-clip: text) or (background-clip: text) {
    main h1,
    main h2 {
        background-image: linear-gradient(100deg, var(--navy-900) 0%, var(--navy-600) 44%, var(--accent-violet) 100%);
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    /* Dark surfaces keep solid headings. */
    .hero h1, .hero h2,
    .page-head h1, .page-head h2,
    .section-navy h1, .section-navy h2, .section-navy h3,
    .cta-band h1, .cta-band h2,
    .info-panel h1, .info-panel h2 {
        background-image: none;
        -webkit-text-fill-color: currentColor;
    }
}

/* --------------------------------------------------------------- eyebrows */

.eyebrow { color: var(--accent-violet); }

.eyebrow::before { background: linear-gradient(90deg, var(--accent-violet), var(--accent-cyan)); }

.hero .eyebrow,
.page-head .eyebrow,
.section-navy .eyebrow,
.info-panel .eyebrow { color: #C4B5FD; }

.hero .eyebrow::before,
.page-head .eyebrow::before,
.section-navy .eyebrow::before,
.info-panel .eyebrow::before { background: linear-gradient(90deg, #C4B5FD, #67E8F9); }

/* ---------------------------------------------------------------- buttons */

.btn-plum {
    background: linear-gradient(135deg, var(--plum-600), var(--plum-800));
    border-color: transparent;
    box-shadow: 0 10px 24px -10px rgba(182, 42, 116, .7);
}

.btn-plum:hover, .btn-plum:focus {
    background: linear-gradient(135deg, var(--plum-500), var(--plum-700));
    border-color: transparent;
    box-shadow: 0 16px 32px -12px rgba(214, 59, 138, .75);
    transform: translateY(-1px);
}

.btn-outline-navy {
    color: var(--navy-600);
    background: linear-gradient(180deg, #fff, var(--navy-050));
}

.btn-outline-navy:hover, .btn-outline-navy:focus {
    border-color: var(--navy-500);
    color: var(--navy-700);
    background: linear-gradient(135deg, rgba(37, 99, 235, .12), rgba(124, 58, 237, .12));
    box-shadow: 0 12px 26px -14px rgba(37, 99, 235, .8);
    transform: translateY(-1px);
}

.btn-white { box-shadow: 0 12px 28px -12px rgba(2, 12, 32, .6); }

/* -------------------------------------------- header ribbon + nav underline */

.site-header::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 3px;
    background: linear-gradient(90deg, var(--plum-600), var(--accent-violet) 45%, var(--accent-cyan));
}

.site-header.is-scrolled { box-shadow: 0 6px 24px rgba(12, 40, 92, .12); }

.site-nav .nav-link { position: relative; }

.site-nav .nav-link::after {
    content: "";
    position: absolute;
    left: .8rem;
    right: .8rem;
    bottom: .32rem;
    height: 2px;
    border-radius: 2px;
    background: linear-gradient(90deg, var(--accent-violet), var(--accent-cyan));
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform .2s ease;
}

.site-nav .nav-link:hover::after,
.site-nav .nav-link.active::after { transform: scaleX(1); }

/* ------------------------------------------------------ section surfaces */

.section-alt {
    background:
        radial-gradient(52rem 28rem at 6% -12%, rgba(37, 99, 235, .12), transparent 62%),
        radial-gradient(46rem 26rem at 98% 112%, rgba(124, 58, 237, .12), transparent 64%),
        linear-gradient(180deg, #F4F8FF, #EDF4FF);
}

.section-navy {
    background:
        radial-gradient(50rem 30rem at 88% -14%, rgba(124, 58, 237, .40), transparent 62%),
        radial-gradient(46rem 28rem at 2% 110%, rgba(8, 145, 178, .32), transparent 64%),
        linear-gradient(160deg, var(--navy-950), var(--navy-800));
}

.hero {
    background:
        radial-gradient(58rem 34rem at 84% -10%, rgba(214, 59, 138, .50), transparent 62%),
        radial-gradient(46rem 30rem at 4% 4%, rgba(37, 99, 235, .45), transparent 60%),
        radial-gradient(42rem 28rem at 62% 122%, rgba(124, 58, 237, .38), transparent 62%),
        linear-gradient(160deg, var(--navy-950) 0%, var(--navy-900) 42%, var(--navy-800) 100%);
}

.hero-glow { background: radial-gradient(closest-side, rgba(214, 59, 138, .55), transparent 72%); }

.page-head {
    background:
        radial-gradient(46rem 26rem at 88% -20%, rgba(214, 59, 138, .45), transparent 60%),
        radial-gradient(34rem 22rem at 6% 120%, rgba(37, 99, 235, .35), transparent 62%),
        linear-gradient(150deg, var(--navy-950), var(--navy-800));
}

.cta-band {
    background:
        radial-gradient(34rem 20rem at 88% -30%, rgba(214, 59, 138, .55), transparent 62%),
        radial-gradient(30rem 20rem at 8% 130%, rgba(8, 145, 178, .40), transparent 62%),
        linear-gradient(140deg, var(--navy-950), var(--navy-800));
}

.info-panel {
    background:
        radial-gradient(30rem 18rem at 92% -20%, rgba(124, 58, 237, .45), transparent 62%),
        linear-gradient(150deg, var(--navy-950), var(--navy-900));
}

/* ------------------------------------------------------- pricing + FAQ */

.plan-card--featured {
    border-color: var(--plum-600);
    box-shadow: 0 26px 56px -22px rgba(182, 42, 116, .55);
}

.plan-card__tag { background: linear-gradient(135deg, var(--plum-600), var(--accent-violet)); }

.faq .accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, rgba(124, 58, 237, .12), rgba(8, 145, 178, .10));
    color: var(--accent-violet);
}

/* --------------------------------------------------------------- footer */

.site-footer { position: relative; }

.site-footer::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 3px;
    background: linear-gradient(90deg, var(--plum-600), var(--accent-violet) 45%, var(--accent-cyan));
}

.back-to-top { box-shadow: 0 12px 26px -12px rgba(8, 12, 30, .6); }

/* --------------------------------------------------------------------------
   Print
   -------------------------------------------------------------------------- */

@media print {
    .site-header, .site-footer, .back-to-top, .hero-visual { display: none !important; }
    .hero, .page-head, .section-navy, .cta-band { background: none !important; color: #000 !important; }
    .hero h1, .page-head h1, .section-navy h1, .section-navy h2, .cta-band h2 { color: #000 !important; }

    /* Gradient text and coloured badges must not print as blank boxes. */
    main h1, main h2 {
        color: #000 !important;
        background-image: none !important;
        -webkit-text-fill-color: #000 !important;
    }

    .module-card__icon, .uae-item__icon, .contact-card__icon, .avatar-initials,
    .stat-tile__value, .stat-tile::before, .site-header::before, .site-footer::before {
        background: none !important;
        box-shadow: none !important;
    }

    .module-card__icon, .uae-item__icon, .contact-card__icon { color: #000 !important; }

    .stat-tile__value, .avatar-initials { -webkit-text-fill-color: currentColor !important; }
}
