@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@600;700;800&family=Nunito:wght@400;600;700;800;900&display=swap');

:root {
    --navy: #132A4B;
    --yellow: #FFD230;
    --bg: #f7f9fc;
    --text: #162033;
    --muted: #667085;
    --white: #ffffff;
    --border: #e7ecf3;
    --soft: #eef3f9;
    --light-feature-box: #eaf2fb;
    --light-feature-border: #d6e3f2;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Nunito', sans-serif;
    background: var(--bg);
    color: var(--text);
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

.site-shell {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.site-main {
    flex: 1 0 auto;
}

/* Wider global wrappers */
.shell-wrap {
    width: 100%;
    max-width: 1760px;
    margin: 0 auto;
    padding-left: clamp(18px, 3vw, 84px);
    padding-right: clamp(18px, 3vw, 84px);
}

.container {
    width: min(1580px, calc(100% - 72px));
    margin: 0 auto;
}

/* Header */
.site-header {
    background: rgba(255, 255, 255, 0.78);
    border-bottom: 1px solid rgba(231, 236, 243, 0.75);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    transition:
        transform 0.38s cubic-bezier(0.22, 1, 0.36, 1),
        background 0.28s ease,
        border-color 0.28s ease,
        box-shadow 0.28s ease;
    will-change: transform;
}

.site-header.is-scrolled {
    background: rgba(255, 255, 255, 0.92);
    border-bottom-color: rgba(231, 236, 243, 0.95);
    box-shadow: 0 12px 34px rgba(16, 24, 40, 0.07);
}

.site-header.header-hidden {
    transform: translateY(calc(-100% - 8px));
}

.header-shell {
    min-height: 88px;
    display: flex;
    align-items: center;
}

.header-desktop {
    width: 100%;
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 40px;
}

.header-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 20px;
    min-width: 0;
}

.logo-link {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    line-height: 0;
    flex-shrink: 0;
}

.site-logo {
    display: block;
    width: auto;
    height: 54px;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 18px;
    min-width: 0;
    flex-wrap: nowrap;
}

.nav a {
    text-decoration: none;
    color: var(--navy);
    font-weight: 800;
    font-size: 0.98rem;
    position: relative;
    padding: 6px 2px;
    transition: color 0.2s ease, opacity 0.2s ease;
    white-space: nowrap;
}

.nav a:hover {
    color: #1b3b68;
    opacity: 1;
}

.nav a.active::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 100%;
    height: 3px;
    background: var(--yellow);
    border-radius: 999px;
}

.header-actions {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.nav-cta {
    box-shadow: 0 10px 24px rgba(16, 24, 40, 0.06);
}

/* Mobile header */
.header-mobile {
    display: none;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.mobile-logo {
    height: 44px;
    width: auto;
}

.mobile-menu-toggle,
.mobile-menu-close {
    appearance: none;
    border: 1px solid var(--border);
    background: var(--white);
    color: var(--navy);
    cursor: pointer;
}

.mobile-menu-toggle {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    box-shadow: 0 8px 20px rgba(16, 24, 40, 0.05);
}

.mobile-menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    border-radius: 999px;
    background: var(--navy);
}

.mobile-nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(10, 18, 31, 0.42);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease;
    z-index: 1001;
}

.mobile-nav-overlay.is-open {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: min(92vw, 380px);
    height: 100vh;
    background: var(--white);
    box-shadow: -10px 0 40px rgba(16, 24, 40, 0.14);
    transform: translateX(104%);
    transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1);
    z-index: 1002;
    display: flex;
    flex-direction: column;
    padding: 22px;
}

.mobile-nav-drawer.is-open {
    transform: translateX(0);
}

.mobile-nav-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--border);
    margin-bottom: 18px;
}

.mobile-drawer-logo {
    height: 42px;
}

.mobile-menu-close {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    font-size: 1.7rem;
    line-height: 1;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mobile-nav a {
    text-decoration: none;
    color: var(--navy);
    font-weight: 800;
    font-size: 1.1rem;
    padding: 14px;
    border-radius: 16px;
    transition: background 0.2s ease, color 0.2s ease;
}

.mobile-nav a:hover,
.mobile-nav a.active {
    background: #eef4fb;
    color: var(--navy);
}

.mobile-nav-actions {
    margin-top: auto;
    padding-top: 18px;
}

.mobile-nav-cta {
    width: 100%;
}

/* Typography + sections */
.eyebrow,
.section-label {
    color: var(--navy);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.84rem;
}

.hero h1,
.section h2,
.page-hero h1 {
    margin: 12px 0 18px;
    color: var(--navy);
    line-height: 0.97;
    letter-spacing: -0.035em;
}

.hero h1,
.page-hero h1 {
    font-size: clamp(3rem, 5vw, 5.6rem);
}

.section h2,
.page-hero h2 {
    font-size: clamp(2rem, 3vw, 3.35rem);
    line-height: 1.06;
    letter-spacing: -0.03em;
}

.hero-text,
.section p,
.feature-card p,
.pricing-card p,
.trust-item p,
.bullet-card li,
.page-hero p,
.showcase-copy p,
.feature-showcase-copy p,
.pricing-lead,
.pricing-note,
.footer-text,
.overview-video-body p {
    color: var(--muted);
    font-size: 1.08rem;
    line-height: 1.8;
}

.section {
    padding: 88px 0;
}

.alt-section {
    background: var(--soft);
}

.page-hero {
    padding: 88px 0 30px;
}

.page-hero-inner {
    max-width: 920px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    padding: 14px 22px;
    text-decoration: none;
    font-weight: 900;
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        border-color 0.2s ease,
        background 0.2s ease;
}

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

.btn-primary {
    background: var(--yellow);
    color: var(--navy);
    box-shadow: 0 14px 28px rgba(255, 210, 48, 0.25);
}

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

.btn-outline {
    background: var(--white);
    color: var(--navy);
    border: 1px solid var(--border);
    box-shadow: 0 8px 20px rgba(16, 24, 40, 0.05);
}

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

.center-actions {
    justify-content: center;
}

/* Homepage hero */
.hero {
    padding: 110px 0 78px;
}

.home-premium-hero {
    padding-top: 118px;
    padding-bottom: 50px;
}

.hero-grid,
.premium-hero-grid {
    display: grid;
    align-items: center;
}

.hero-grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(560px, 0.95fr);
    gap: 82px;
}

.premium-hero-grid {
    grid-template-columns: minmax(0, 1.02fr) minmax(560px, 0.98fr);
    gap: 76px;
}

.premium-hero-copy {
    max-width: 860px;
}

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

.hero-mini-points {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
}

.hero-mini-points span {
    display: inline-flex;
    align-items: center;
    padding: 8px 12px;
    border-radius: 999px;
    background: #eef4fb;
    color: var(--navy);
    font-size: 0.84rem;
    font-weight: 800;
}

.home-hero-panel,
.page-hero-panel {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 18px 45px rgba(16, 24, 40, 0.05);
}

.home-hero-panel {
    min-height: 430px;
}

.page-hero-panel-top,
.visual-window-top,
.overview-video-top {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 16px;
    border-bottom: 1px solid var(--border);
    background: #f9fbfd;
}

.panel-dot,
.visual-window-top span,
.overview-video-top span {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: #d6dee8;
    display: inline-block;
}

.page-hero-panel-body {
    padding: 18px;
}

.hero-preview-layout {
    display: grid;
    grid-template-columns: 88px 1fr;
    gap: 16px;
    margin-top: 18px;
}

.hero-preview-sidebar {
    display: grid;
    gap: 10px;
    align-content: start;
}

.hero-preview-nav {
    height: 40px;
    border-radius: 14px;
    background: #eef3f9;
    border: 1px solid #e2eaf3;
}

.hero-preview-nav.active {
    background: linear-gradient(145deg, #132A4B, #1b3b68);
    border-color: transparent;
}

.hero-preview-main {
    display: grid;
    gap: 14px;
}

.hero-preview-header {
    height: 46px;
    border-radius: 16px;
    background: #f3f7fb;
    border: 1px solid #e5edf5;
}

.hero-preview-cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.hero-preview-card {
    height: 90px;
    border-radius: 18px;
    background: linear-gradient(180deg, #f8fbff 0%, #eef3f9 100%);
    border: 1px solid #e3ebf4;
}

.hero-preview-table {
    display: grid;
    gap: 10px;
}

.hero-preview-row {
    height: 44px;
    border-radius: 14px;
    background: #f6f9fc;
    border: 1px solid #e6edf5;
}

/* FEATURES HERO FIX */
.features-hero {
    padding-top: 96px;
    padding-bottom: 64px;
    background: #ffffff;
}

.features-hero-inner {
    max-width: 1320px;
}

.features-hero h1 {
    max-width: 11.5ch;
    margin: 10px 0 20px;
    font-family: 'Manrope', sans-serif;
    font-size: clamp(3.4rem, 6vw, 6.2rem);
    line-height: 0.96;
    letter-spacing: -0.05em;
    color: var(--navy);
}

.features-hero-text {
    max-width: 68ch;
    font-size: 1.1rem;
    line-height: 1.85;
    color: var(--muted);
}

/* LAUNCH HOMEPAGE */
.launch-home-hero {
    padding-top: 88px;
    padding-bottom: 72px;
    background: #132A4B;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.launch-home-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top left, rgba(255,255,255,.08), transparent 26%),
        radial-gradient(circle at bottom right, rgba(255,210,48,.08), transparent 20%);
    pointer-events: none;
}

.launch-home-hero .container {
    position: relative;
    z-index: 2;
}

.launch-hero-wrap {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(420px, 0.92fr);
    gap: 34px;
    align-items: center;
}

.launch-hero-copy {
    max-width: 900px;
}

.launch-main-heading {
    margin: 0 0 28px;
    max-width: 980px;
    color: #ffffff;
}

.launch-heading-line {
    display: block;
    font-family: 'Manrope', sans-serif;
    font-size: clamp(2.85rem, 4vw, 4.55rem);
    line-height: 1.04;
    letter-spacing: -0.05em;
    font-weight: 700;
    color: #ffffff;
}

.launch-hero-text {
    margin: 0;
    max-width: 54ch;
    font-size: 1.08rem;
    line-height: 1.85;
    color: rgba(255,255,255,.82);
}

.launch-home-hero .hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 32px;
}

.launch-home-hero .btn-primary {
    background: var(--yellow);
    color: var(--navy);
    box-shadow: 0 14px 28px rgba(255, 210, 48, 0.22);
}

.launch-home-hero .btn-secondary {
    background: transparent;
    border: 1px solid rgba(255,255,255,.22);
    color: #fff;
}

.launch-home-hero .btn-secondary:hover {
    background: rgba(255,255,255,.06);
}

.launch-hero-panel {
    border-radius: 28px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.14);
    background: rgba(255,255,255,.06);
    box-shadow: 0 24px 60px rgba(0,0,0,.18);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.launch-panel-top {
    height: 40px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 16px;
    border-bottom: 1px solid rgba(255,255,255,.10);
    background: rgba(255,255,255,.04);
}

.launch-panel-top span {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: rgba(255,255,255,.28);
}

.launch-panel-body {
    padding: 22px;
}

.launch-stat-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.launch-stat-card {
    min-height: 116px;
    padding: 18px;
    border-radius: 20px;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.10);
}

.launch-stat-card strong {
    display: block;
    color: #fff;
    font-size: 1.05rem;
    margin-bottom: 8px;
}

.launch-stat-card span {
    color: rgba(255,255,255,.78);
    line-height: 1.65;
    font-size: .96rem;
}

/* LAUNCH STRIP */
.launch-statement-section {
    background: linear-gradient(180deg, #ffffff 0%, #f7f9fc 100%);
    padding-top: 112px;
    padding-bottom: 112px;
    border-top: 1px solid rgba(19,42,75,.08);
    border-bottom: 1px solid rgba(19,42,75,.08);
}

.launch-statement-wrap {
    max-width: 1380px;
    margin: 0 auto;
    text-align: center;
}

.launch-statement-section .launch-statement-title {
    margin: 0 0 34px;
    display: block;
    font-family: 'Manrope', sans-serif;
    font-size: clamp(2.8rem, 6vw, 5.2rem);
    line-height: 1;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 800;
    color: var(--navy);
    white-space: nowrap;
}

.launch-statement-copy-wrap {
    max-width: 1280px;
    margin: 0 auto;
}

.launch-statement-section .launch-statement-copy {
    margin: 0 auto;
    max-width: 1000px;
    font-size: clamp(1.18rem, 1.7vw, 1.5rem);
    line-height: 1.85;
    color: var(--muted);
}

.launch-statement-copy strong {
    color: var(--navy);
    font-weight: 900;
}

.launch-statement-actions {
    display: flex;
    justify-content: center;
    margin-top: 38px;
}

.launch-statement-btn {
    min-width: 240px;
    padding: 18px 32px;
    border: 1px solid rgba(19,42,75,.16);
    background: #ffffff;
    color: var(--navy);
    font-size: 1.04rem;
    font-weight: 900;
    box-shadow: 0 14px 34px rgba(16, 24, 40, 0.05);
}

.launch-statement-btn:hover {
    background: #f8fbff;
    border-color: rgba(19,42,75,.24);
}

.launch-intro-section {
    background: #132A4B;
    border-top: 1px solid rgba(255,255,255,.10);
    border-bottom: 1px solid rgba(255,255,255,.10);
}

.launch-intro-section .section-label,
.launch-intro-section h2 {
    color: #ffffff;
}

.launch-intro-section .launch-intro-copy p {
    color: rgba(255,255,255,.80);
}

.launch-intro-grid {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 44px;
    align-items: start;
}

.launch-intro-copy h2,
.launch-updates-copy h2 {
    margin: 0 0 16px;
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1.03;
    letter-spacing: -0.04em;
}

.launch-intro-copy p,
.launch-updates-copy p {
    line-height: 1.85;
    font-size: 1.04rem;
}

.launch-intro-points {
    display: grid;
    gap: 18px;
}

.launch-point-card {
    padding: 24px;
    border-radius: 24px;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.12);
}

.launch-point-card h3 {
    margin: 0 0 8px;
    color: #ffffff;
    font-size: 1.18rem;
}

.launch-point-card p {
    margin: 0;
    color: rgba(255,255,255,.78);
    line-height: 1.75;
}

.launch-updates-section {
    background: #ffffff;
    padding-top: 88px;
    padding-bottom: 88px;
}

.launch-updates-grid {
    display: grid;
    grid-template-columns: 1fr .95fr;
    gap: 42px;
    align-items: center;
}

.launch-form-card-wrap {
    display: block;
}

.launch-updates-form,
.launch-updates-form-panel {
    margin: 0;
    padding: 30px;
    border-radius: 28px;
}

.launch-updates-form-panel {
    width: 100%;
    background: #243e63;
    border: 1px solid rgba(255,255,255,.08);
    box-shadow: 0 24px 60px rgba(10, 28, 56, 0.16);
}

.launch-form-panel-inner {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.launch-form-panel-body {
    display: grid;
    gap: 16px;
}

.launch-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.launch-updates-form-panel input,
.launch-form-grid input {
    min-height: 56px;
    padding: 0 16px;
    border-radius: 14px;
    font: inherit;
}

.launch-updates-form-panel input {
    background: #334d73;
    color: #ffffff;
    border: 1px solid rgba(255,255,255,.10);
}

.launch-updates-form-panel input::placeholder {
    color: rgba(255,255,255,.72);
}

.launch-form-grid .full-width {
    grid-column: 1 / -1;
}

.launch-form-actions {
    margin: 0;
}

.launch-updates-form-panel .btn.btn-primary {
    box-shadow: 0 12px 26px rgba(255, 210, 48, 0.22);
}

.launch-form-panel-footer {
    margin: 0;
}

.launch-form-note {
    margin: 0;
    line-height: 1.7;
    font-size: .95rem;
}

.launch-updates-form-panel .launch-form-note {
    color: rgba(255,255,255,.78);
}

/* Shared cards */
.trust-strip {
    padding-top: 22px;
}

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

.cards-grid {
    margin-top: 32px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.split-section {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.9fr);
    gap: 32px;
    align-items: center;
}

.trust-item,
.feature-card,
.pricing-card,
.bullet-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 28px;
    box-shadow: 0 10px 30px rgba(16, 24, 40, 0.04);
}

.trust-item h3,
.feature-card h3 {
    margin-top: 0;
    margin-bottom: 10px;
    color: var(--navy);
    font-size: 1.35rem;
}

.bullet-card ul {
    margin: 0;
    padding-left: 20px;
    line-height: 2;
}

/* Feature showcase */
.feature-showcase-grid {
    margin-top: 36px;
    display: grid;
    gap: 28px;
}

.feature-showcase-card {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px;
    align-items: center;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 30px;
    padding: 34px;
    box-shadow: 0 14px 40px rgba(16, 24, 40, 0.05);
}

.reverse-layout .feature-showcase-copy {
    order: 2;
}

.reverse-layout .feature-visual-card {
    order: 1;
}

.feature-kicker {
    margin: 0 0 8px;
    color: var(--navy);
    font-size: 0.82rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.feature-showcase-copy h3 {
    margin: 0 0 12px;
    color: var(--navy);
    font-size: 2rem;
    line-height: 1.12;
}

.feature-points {
    margin: 18px 0 0;
    padding-left: 18px;
    color: var(--muted);
    line-height: 1.9;
}

.feature-visual-card {
    min-height: 340px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 14px 40px rgba(16, 24, 40, 0.06);
}

.visual-profile-layout {
    display: grid;
    grid-template-columns: 74px 1fr;
    gap: 16px;
    padding: 18px;
    align-items: center;
}

.visual-avatar {
    width: 74px;
    height: 74px;
    border-radius: 20px;
    background: linear-gradient(145deg, #dfeaf8, #eff5fb);
}

.visual-profile-lines {
    display: grid;
    gap: 10px;
}

.visual-line {
    height: 12px;
    border-radius: 999px;
    background: #e8eef6;
}

.line-lg {
    width: 78%;
}

.line-sm {
    width: 46%;
}

.visual-tag-row {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    padding: 0 18px 16px;
}

.visual-tag {
    display: inline-flex;
    align-items: center;
    padding: 7px 12px;
    border-radius: 999px;
    background: #eef4fb;
    color: var(--navy);
    font-size: 0.82rem;
    font-weight: 800;
}

.visual-table {
    display: grid;
    gap: 10px;
    padding: 0 18px 18px;
}

.visual-table-row {
    height: 42px;
    border-radius: 14px;
    background: #f4f7fb;
    border: 1px solid #e6edf5;
}

.compliance-list {
    display: grid;
    gap: 12px;
    padding: 18px;
}

.compliance-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    min-height: 52px;
    padding: 0 14px;
    border-radius: 16px;
    background: #f8fbff;
    border: 1px solid #e7edf5;
    color: var(--navy);
    font-weight: 700;
}

.status-pill {
    display: inline-flex;
    align-items: center;
    padding: 7px 12px;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 800;
}

.status-pill.complete {
    background: #eafaf0;
    color: #18794e;
}

.status-pill.progress {
    background: #fff6df;
    color: #9a6700;
}

.status-pill.missing {
    background: #fdecec;
    color: #b42318;
}

.booking-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    padding: 18px;
}

.booking-cell {
    height: 62px;
    border-radius: 18px;
    background: #edf3f9;
    border: 1px solid #e1eaf3;
}

.booking-cell.active {
    background: linear-gradient(145deg, #132A4B, #1b3b68);
    border-color: transparent;
}

.pipeline-columns {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    padding: 18px;
}

.pipeline-col {
    background: #f8fbff;
    border: 1px solid #e6edf5;
    border-radius: 18px;
    padding: 12px;
}

.pipeline-col strong {
    display: block;
    color: var(--navy);
    font-size: 0.88rem;
    margin-bottom: 10px;
}

.pipeline-card {
    height: 56px;
    border-radius: 14px;
    background: #e7eef7;
    margin-bottom: 10px;
}

.pipeline-card:last-child {
    margin-bottom: 0;
}

.pipeline-card.placed {
    background: linear-gradient(145deg, #dff5e8, #edf9f1);
}

/* Pricing */
.pricing-wrap,
.contact-wrap {
    text-align: center;
}

.pricing-card-large {
    max-width: 760px;
    margin: 0 auto;
}

.pricing-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.18fr) minmax(340px, 0.82fr);
    gap: 28px;
    align-items: stretch;
}

.pricing-main-card,
.pricing-side-card,
.pricing-includes-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 30px;
    box-shadow: 0 18px 45px rgba(16, 24, 40, 0.05);
}

.pricing-main-card {
    position: relative;
    padding: 40px;
    overflow: hidden;
}

.pricing-main-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 5px;
    background: linear-gradient(90deg, #ffd230 0%, #f3c318 100%);
}

.pricing-side-card {
    padding: 34px 32px;
}

.pricing-badge {
    display: inline-flex;
    align-items: center;
    padding: 9px 15px;
    border-radius: 999px;
    background: #eef4fb;
    color: var(--navy);
    font-size: 0.82rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 18px;
}

.pricing-main-card h2 {
    margin: 0 0 12px;
    color: var(--navy);
    font-size: 2rem;
}

.pricing-side-card h3 {
    margin-top: 0;
    margin-bottom: 18px;
    color: var(--navy);
    font-size: 1.45rem;
}

.pricing-feature-list li + li {
    margin-top: 2px;
}

.pricing-note {
    margin-top: 20px;
    font-size: 0.96rem;
}

.pricing-includes-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    padding: 30px;
    align-items: center;
}

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

.pricing-mini-box {
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-radius: 18px;
    background: linear-gradient(180deg, #f8fbff 0%, #eef3f9 100%);
    border: 1px solid var(--border);
    color: var(--navy);
    font-weight: 800;
    padding: 14px;
}

.pricing-table-wrap {
    margin-top: 32px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(231, 236, 243, 0.95);
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(16, 24, 40, 0.06);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
}

.pricing-table thead th {
    background: #f9fbfd;
    color: var(--navy);
    font-size: 0.95rem;
    font-weight: 900;
    text-align: left;
    padding: 28px 32px;
    border-bottom: 1px solid var(--border);
}

.pricing-table thead th:nth-child(2),
.pricing-table thead th:nth-child(3) {
    text-align: center;
}

.pricing-table tbody tr {
    transition: background 0.2s ease;
}

.pricing-table tbody tr:hover {
    background: rgba(248, 251, 255, 0.7);
}

.pricing-table tbody td {
    padding: 24px 32px;
    border-bottom: 1px solid rgba(231, 236, 243, 0.9);
    vertical-align: middle;
    color: var(--navy);
    font-weight: 700;
    line-height: 1.5;
}

.pricing-table tbody tr:last-child td {
    border-bottom: 0;
}

.pricing-table tbody td:first-child {
    font-size: 1rem;
    font-weight: 800;
}

.pricing-table tbody td:nth-child(2),
.pricing-table tbody td:nth-child(3) {
    width: 22%;
    text-align: center;
}

.comparison-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 10px 16px;
    border-radius: 999px;
    font-size: 0.95rem;
    font-weight: 800;
    line-height: 1.3;
    width: 100%;
    max-width: 260px;
}

.comparison-pill-yes {
    background: #eaf7ef;
    color: #157347;
}

.comparison-pill-muted {
    background: #f2f5fa;
    color: #5f6f87;
}

/* Overview video */
.overview-video-section {
    padding-top: 26px;
}

.overview-video-header {
    max-width: 1180px;
    margin-bottom: 34px;
}

.overview-video-wrap {
    width: 100%;
}

.overview-video-player {
    width: 100%;
    min-height: 760px;
    border-radius: 32px;
    overflow: hidden;
}

.overview-video-body {
    min-height: 700px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px;
    text-align: center;
    background: linear-gradient(180deg, #f8fbff 0%, #eef3f9 100%);
}

.overview-video-body h3 {
    margin: 22px 0 10px;
    font-size: 2.3rem;
    color: var(--navy);
}

.video-play-button {
    width: 118px;
    height: 118px;
    border-radius: 999px;
    background: linear-gradient(145deg, #132A4B, #1b3b68);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 18px 40px rgba(19, 42, 75, 0.2);
}

.video-play-icon {
    width: 0;
    height: 0;
    margin-left: 6px;
    border-top: 18px solid transparent;
    border-bottom: 18px solid transparent;
    border-left: 28px solid #ffffff;
}

/* Footer */
.site-footer {
    background: var(--navy);
    color: white;
    padding: 56px 0 28px;
    margin-top: 0;
}

.footer-shell {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) repeat(3, minmax(160px, 220px));
    gap: 42px;
    align-items: start;
}

.footer-brand-column {
    max-width: 460px;
}

.footer-text {
    margin: 0 0 12px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 1.08rem;
    line-height: 1.8;
    font-weight: 700;
}

.footer-small {
    margin: 0;
    color: rgba(255, 255, 255, 0.64);
    line-height: 1.8;
    font-size: 0.97rem;
}

.footer-links-column h4 {
    margin: 0 0 14px;
    color: #ffffff;
    font-size: 0.88rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.78);
    text-decoration: none;
    font-weight: 700;
    transition: color 0.2s ease, opacity 0.2s ease;
}

.footer-links a:hover {
    color: #ffffff;
    opacity: 1;
}

.footer-bottom {
    margin-top: 34px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    flex-wrap: wrap;
}

.footer-copy {
    margin: 0;
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.95rem;
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.72);
    text-decoration: none;
    font-weight: 700;
    transition: color 0.2s ease;
}

.footer-bottom-links a:hover {
    color: #ffffff;
}

/* Responsive */
@media (max-width: 1280px) {
    .container {
        width: min(100%, calc(100% - 52px));
    }

    .hero-grid {
        grid-template-columns: minmax(0, 1fr) minmax(460px, 0.9fr);
        gap: 52px;
    }

    .premium-hero-grid {
        grid-template-columns: minmax(0, 1fr) minmax(460px, 0.95fr);
        gap: 50px;
    }

    .overview-video-player {
        min-height: 660px;
    }

    .overview-video-body {
        min-height: 600px;
    }
}

@media (max-width: 1180px) {
    .header-desktop {
        display: none;
    }

    .header-mobile {
        display: flex;
    }

    .container {
        width: min(100%, calc(100% - 40px));
    }

    .hero-grid,
    .cards-grid,
    .trust-grid,
    .split-section,
    .premium-hero-grid,
    .feature-showcase-card,
    .pricing-layout,
    .pricing-includes-card,
    .hero-preview-layout,
    .hero-preview-cards,
    .launch-hero-wrap,
    .launch-intro-grid,
    .launch-updates-grid {
        grid-template-columns: 1fr;
    }

    .reverse-layout .feature-showcase-copy,
    .reverse-layout .feature-visual-card {
        order: unset;
    }

    .mini-stat-grid,
    .pipeline-columns,
    .launch-stat-grid {
        grid-template-columns: 1fr;
    }

    .hero h1,
    .page-hero h1 {
        font-size: clamp(2.6rem, 7vw, 4rem);
        max-width: none;
    }

    .features-hero-inner {
        max-width: 100%;
    }

    .features-hero h1 {
        max-width: 12ch;
        font-size: clamp(3rem, 7vw, 4.8rem);
    }

    .overview-video-player {
        min-height: 500px;
    }

    .overview-video-body {
        min-height: 430px;
        padding: 36px 28px;
    }

    .pricing-table,
    .pricing-table thead,
    .pricing-table tbody,
    .pricing-table th,
    .pricing-table td,
    .pricing-table tr {
        display: block;
        width: 100%;
    }

    .pricing-table thead {
        display: none;
    }

    .pricing-table tbody tr {
        padding: 18px 20px;
        border-bottom: 1px solid var(--border);
    }

    .pricing-table tbody tr:last-child {
        border-bottom: 0;
    }

    .pricing-table tbody td {
        border-bottom: 0;
        padding: 8px 0;
        text-align: left !important;
        width: 100% !important;
    }

    .pricing-table tbody td:first-child {
        font-weight: 900;
        margin-bottom: 6px;
    }

    .comparison-pill {
        max-width: none;
        justify-content: flex-start;
    }

    .launch-hero-wrap,
    .launch-intro-grid,
    .launch-updates-grid {
        grid-template-columns: 1fr;
    }

    .launch-hero-copy {
        max-width: none;
    }

    .launch-main-heading {
        max-width: none;
    }

    .launch-heading-line {
        font-family: 'Manrope', sans-serif;
        font-size: clamp(2.3rem, 6.2vw, 3.5rem);
        line-height: 1.06;
        letter-spacing: -0.04em;
    }

    .launch-stat-grid {
        grid-template-columns: 1fr;
    }

    .launch-statement-section {
        padding-top: 92px;
        padding-bottom: 92px;
    }

    .launch-statement-section .launch-statement-title {
        font-size: clamp(2.6rem, 5.4vw, 4.6rem);
        line-height: 1;
        letter-spacing: 0.07em;
        white-space: nowrap;
    }

    .launch-statement-section .launch-statement-copy {
        font-size: clamp(1.08rem, 2.6vw, 1.34rem);
        max-width: 100%;
    }

    .footer-shell {
        grid-template-columns: 1fr 1fr;
        gap: 28px;
    }
}

@media (max-width: 767px) {
    .container {
        width: min(100%, calc(100% - 28px));
    }

    .site-logo {
        height: 40px;
    }

    .hero {
        padding-top: 52px;
        padding-bottom: 42px;
    }

    .home-premium-hero {
        padding-top: 64px;
    }

    .launch-home-hero {
        padding-top: 64px;
        padding-bottom: 56px;
    }

    .features-hero {
        padding-top: 68px;
        padding-bottom: 36px;
    }

    .features-hero h1 {
        max-width: none;
        font-size: clamp(2.5rem, 10vw, 3.6rem);
        line-height: 1;
        letter-spacing: -0.045em;
    }

    .features-hero-text {
        max-width: 100%;
        font-size: 1.02rem;
        line-height: 1.8;
    }

    .section {
        padding: 68px 0;
    }

    .footer-shell,
    .footer-bottom {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    .cta-band {
        padding: 32px 22px;
    }

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

    .feature-showcase-card,
    .pricing-main-card,
    .pricing-side-card,
    .pricing-includes-card,
    .trust-item,
    .feature-card,
    .bullet-card,
    .launch-updates-form,
    .launch-point-card {
        padding: 22px;
    }

    .feature-showcase-copy h3,
    .pricing-main-card h2 {
        font-size: 1.65rem;
    }

    .price {
        font-size: 2rem;
    }

    .pricing-includes-grid {
        grid-template-columns: 1fr;
    }

    .hero-mini-points {
        gap: 8px;
    }

    .hero-mini-points span {
        width: 100%;
        justify-content: center;
    }

    .overview-video-body {
        padding: 28px 20px;
        min-height: 320px;
    }

    .overview-video-body h3 {
        font-size: 1.5rem;
    }

    .overview-video-player {
        min-height: 380px;
        border-radius: 22px;
    }

    .video-play-button {
        width: 84px;
        height: 84px;
    }

    .video-play-icon {
        border-top-width: 14px;
        border-bottom-width: 14px;
        border-left-width: 22px;
    }

    .launch-home-hero .hero-actions {
        flex-direction: column;
    }

    .launch-home-hero .hero-actions .btn {
        width: 100%;
    }

    .launch-heading-line {
        font-family: 'Manrope', sans-serif;
        font-size: clamp(1.95rem, 8vw, 2.6rem);
        line-height: 1.08;
        letter-spacing: -0.03em;
    }

    .launch-statement-section {
        padding-top: 76px;
        padding-bottom: 76px;
    }

    .launch-statement-section .launch-statement-title {
        font-size: clamp(2rem, 9vw, 3.2rem);
        line-height: 1;
        letter-spacing: 0.05em;
        margin-bottom: 22px;
        white-space: nowrap;
    }

    .launch-statement-section .launch-statement-copy {
        font-size: 1.02rem;
        line-height: 1.8;
    }

    .launch-statement-btn {
        width: 100%;
        max-width: 280px;
    }

    .launch-form-grid {
        grid-template-columns: 1fr;
    }

    .launch-form-grid .full-width {
        grid-column: auto;
    }
}