:root {
    --navy-950: #061526;
    --navy-900: #071b31;
    --navy-850: #0a2440;
    --navy-800: #0b2d4f;
    --blue-700: #0d4f7a;
    --blue-600: #146995;
    --blue-500: #1686b8;
    --cyan-400: #36b6d9;
    --cyan-300: #70d3e9;
    --gold-500: #d5a53f;
    --gold-400: #e6bf66;
    --gold-300: #f0d491;
    --green-600: #17875f;
    --red-600: #b63838;
    --ink-950: #0b1521;
    --ink-800: #263746;
    --ink-700: #405364;
    --ink-600: #5f7181;
    --line: #dbe4eb;
    --line-dark: rgba(255, 255, 255, 0.14);
    --soft: #f3f7fa;
    --soft-blue: #eaf4f8;
    --white: #ffffff;
    --shadow: 0 24px 60px rgba(5, 27, 49, 0.13);
    --shadow-soft: 0 14px 36px rgba(5, 27, 49, 0.08);
    --radius-xl: 28px;
    --radius-lg: 20px;
    --radius-md: 14px;
    --radius-sm: 10px;
    --shell: 1240px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--white);
    color: var(--ink-950);
    font-family:
        Inter,
        ui-sans-serif,
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;
    font-size: 16px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

body.nav-open {
    overflow: hidden;
}

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

img {
    display: block;
    max-width: 100%;
}

button,
input,
select,
textarea {
    font: inherit;
}

button {
    cursor: pointer;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1,
h2,
h3 {
    color: inherit;
    line-height: 1.13;
    letter-spacing: -0.025em;
}

h1 {
    font-size: clamp(2.7rem, 5.2vw, 5.3rem);
}

h2 {
    font-size: clamp(2rem, 3.2vw, 3.25rem);
}

h3 {
    font-size: 1.25rem;
}

p {
    color: var(--ink-700);
}

.site-shell {
    width: min(calc(100% - 40px), var(--shell));
    margin: 0 auto;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.skip-link {
    position: fixed;
    z-index: 9999;
    top: 12px;
    left: 12px;
    padding: 10px 14px;
    transform: translateY(-160%);
    border-radius: 8px;
    background: var(--white);
    color: var(--navy-900);
    box-shadow: var(--shadow-soft);
}

.skip-link:focus {
    transform: translateY(0);
}

/* Header */

.site-header {
    position: sticky;
    z-index: 1000;
    top: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(6, 21, 38, 0.95);
    color: var(--white);
    backdrop-filter: blur(18px);
}

.site-header.is-scrolled {
    box-shadow: 0 12px 32px rgba(4, 18, 32, 0.25);
}

.header-inner {
    display: flex;
    min-height: 78px;
    align-items: center;
    justify-content: space-between;
    gap: 26px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    flex: 0 0 auto;
}

.brand-mark {
    position: relative;
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    overflow: hidden;
    border: 1px solid rgba(112, 211, 233, 0.45);
    border-radius: 50%;
    background:
        radial-gradient(circle at 35% 30%, rgba(112, 211, 233, 0.36), transparent 35%),
        linear-gradient(145deg, var(--blue-500), var(--navy-900));
}

.brand-core {
    position: relative;
    z-index: 2;
    color: var(--white);
    font-size: 1.25rem;
    font-weight: 900;
    line-height: 1;
}

.brand-wing {
    position: absolute;
    top: 20px;
    width: 14px;
    height: 2px;
    background: rgba(255, 255, 255, 0.72);
}

.brand-wing-left {
    left: 2px;
    transform: rotate(-11deg);
}

.brand-wing-right {
    right: 2px;
    transform: rotate(11deg);
}

.brand-copy {
    display: flex;
    flex-direction: column;
    line-height: 1.02;
}

.brand-copy strong {
    letter-spacing: 0.15em;
    font-size: 1rem;
}

.brand-copy small {
    margin-top: 4px;
    color: var(--cyan-300);
    font-size: 0.65rem;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.primary-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 23px;
    color: rgba(255, 255, 255, 0.83);
    font-size: 0.88rem;
    font-weight: 650;
}

.primary-nav > a {
    transition: color 160ms ease;
}

.primary-nav > a:hover,
.primary-nav > a:focus {
    color: var(--white);
}

.primary-nav .nav-market {
    color: var(--gold-400);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: 4px;
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 42px;
    padding: 9px;
    border: 1px solid rgba(255, 255, 255, 0.19);
    border-radius: 10px;
    background: transparent;
}

.nav-toggle > span:not(.sr-only) {
    display: block;
    width: 100%;
    height: 2px;
    margin: 4px 0;
    background: var(--white);
}

/* Buttons */

.button {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.15rem;
    border: 1px solid transparent;
    border-radius: 999px;
    font-weight: 750;
    line-height: 1.2;
    text-align: center;
    transition:
        transform 160ms ease,
        box-shadow 160ms ease,
        background 160ms ease,
        border-color 160ms ease;
}

.button:hover,
.button:focus {
    transform: translateY(-2px);
}

.button-small {
    min-height: 40px;
    padding: 0.65rem 1rem;
    font-size: 0.84rem;
}

.button-large {
    min-height: 52px;
    padding: 0.92rem 1.45rem;
}

.button-primary {
    background: linear-gradient(135deg, var(--blue-500), var(--blue-700));
    color: var(--white);
    box-shadow: 0 12px 28px rgba(22, 134, 184, 0.25);
}

.button-primary:hover {
    box-shadow: 0 16px 34px rgba(22, 134, 184, 0.34);
}

.button-quiet {
    color: var(--white);
}

.button-glass {
    border-color: rgba(255, 255, 255, 0.28);
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
    backdrop-filter: blur(8px);
}

.button-white {
    background: var(--white);
    color: var(--navy-900);
    box-shadow: 0 14px 30px rgba(4, 18, 32, 0.2);
}

.button-outline {
    border-color: var(--blue-600);
    background: transparent;
    color: var(--blue-700);
}

.button-outline-light {
    border-color: rgba(255, 255, 255, 0.45);
    color: var(--white);
}

.button-gold {
    background: linear-gradient(135deg, var(--gold-300), var(--gold-500));
    color: #342406;
    box-shadow: 0 14px 30px rgba(213, 165, 63, 0.27);
}

.button-gold-dark {
    background: var(--navy-900);
    color: var(--gold-300);
}

.full-width {
    width: 100%;
}

/* General sections */

.section {
    padding: 96px 0;
}

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

.section-dark {
    overflow: hidden;
    background:
        radial-gradient(circle at 82% 10%, rgba(54, 182, 217, 0.18), transparent 28%),
        linear-gradient(145deg, var(--navy-950), var(--navy-800));
    color: var(--white);
}

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

.section-gold-soft {
    background:
        radial-gradient(circle at 95% 10%, rgba(213, 165, 63, 0.2), transparent 26%),
        #fffaf0;
}

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

.section-heading h2 {
    max-width: 760px;
    margin-bottom: 0;
}

.section-heading p {
    max-width: 720px;
    margin: 15px auto 0;
    font-size: 1.07rem;
}

.section-heading.centred {
    display: block;
    text-align: center;
}

.narrow {
    max-width: 850px;
    margin-right: auto;
    margin-left: auto;
}

.centred {
    text-align: center;
}

.eyebrow {
    margin-bottom: 14px;
    color: var(--blue-600);
    font-size: 0.74rem;
    font-weight: 850;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.eyebrow-light {
    color: var(--cyan-300);
}

.eyebrow-gold {
    color: var(--gold-300);
}

.eyebrow-gold-dark {
    color: #966c13;
}

.section-lead {
    max-width: 700px;
    font-size: 1.1rem;
}

.section-lead-light {
    color: rgba(255, 255, 255, 0.72) !important;
}

.action-margin {
    margin-top: 34px;
}

.text-link {
    display: inline-flex;
    margin-top: 26px;
    color: var(--blue-600);
    font-weight: 800;
}

.text-link::after {
    content: "→";
    margin-left: 9px;
}

.text-link-light {
    color: var(--cyan-300);
}

/* Hero */

.hero {
    position: relative;
    min-height: 690px;
    overflow: hidden;
    background:
        radial-gradient(circle at 80% 22%, rgba(54, 182, 217, 0.22), transparent 27%),
        radial-gradient(circle at 16% 75%, rgba(22, 134, 184, 0.15), transparent 32%),
        linear-gradient(135deg, var(--navy-950), var(--navy-800));
    color: var(--white);
}

.hero-grid-overlay,
.marketplace-grid-overlay {
    position: absolute;
    inset: 0;
    opacity: 0.18;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: linear-gradient(to right, transparent, black 34%, black);
}

.hero-layout {
    position: relative;
    z-index: 2;
    display: grid;
    min-height: 690px;
    align-items: center;
    grid-template-columns: minmax(0, 1.06fr) minmax(420px, 0.94fr);
    gap: 50px;
    padding-top: 62px;
    padding-bottom: 74px;
}

.hero-copy h1 {
    max-width: 760px;
    margin-bottom: 24px;
}

.hero-copy h1 span {
    display: block;
    color: var(--cyan-300);
}

.hero-lead {
    max-width: 690px;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.74);
    font-size: 1.15rem;
}

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

.hero-proof {
    display: grid;
    max-width: 720px;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    margin-top: 50px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.12);
}

.hero-proof > div {
    min-height: 92px;
    padding: 20px;
    background: rgba(6, 21, 38, 0.72);
}

.hero-proof strong,
.hero-proof span {
    display: block;
}

.hero-proof strong {
    margin-bottom: 4px;
    font-size: 0.91rem;
}

.hero-proof span {
    color: rgba(255, 255, 255, 0.56);
    font-size: 0.75rem;
}

.hero-visual {
    display: grid;
    min-height: 530px;
    place-items: center;
}

.platform-orbit {
    position: relative;
    width: 500px;
    height: 500px;
}

.orbit-ring {
    position: absolute;
    border: 1px solid rgba(112, 211, 233, 0.22);
    border-radius: 50%;
}

.orbit-ring-one {
    inset: 64px;
}

.orbit-ring-two {
    inset: 12px;
    border-style: dashed;
}

.platform-centre {
    position: absolute;
    inset: 50%;
    display: flex;
    width: 180px;
    height: 180px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    transform: translate(-50%, -50%);
    border: 1px solid rgba(112, 211, 233, 0.34);
    border-radius: 50%;
    background:
        radial-gradient(circle at 35% 28%, rgba(112, 211, 233, 0.25), transparent 32%),
        linear-gradient(145deg, rgba(18, 92, 133, 0.94), rgba(6, 21, 38, 0.97));
    box-shadow:
        0 0 0 18px rgba(54, 182, 217, 0.035),
        0 24px 60px rgba(0, 0, 0, 0.32);
}

.platform-centre-mark {
    display: grid;
    width: 56px;
    height: 56px;
    margin-bottom: 12px;
    place-items: center;
    border-radius: 50%;
    background: var(--white);
    color: var(--blue-700);
    font-size: 1.65rem;
    font-weight: 900;
}

.platform-centre strong {
    letter-spacing: 0.14em;
}

.platform-centre small {
    margin-top: 5px;
    color: var(--cyan-300);
    font-size: 0.68rem;
}

.orbit-card {
    position: absolute;
    width: 180px;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: var(--radius-md);
    background: rgba(7, 27, 49, 0.88);
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.22);
    backdrop-filter: blur(12px);
}

.orbit-card span,
.orbit-card strong,
.orbit-card small {
    display: block;
}

.orbit-card span {
    color: var(--cyan-300);
    font-size: 0.68rem;
    font-weight: 800;
}

.orbit-card strong {
    margin: 4px 0;
    font-size: 1.08rem;
}

.orbit-card small {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.72rem;
}

.orbit-manage {
    top: 16px;
    left: 158px;
}

.orbit-comply {
    top: 194px;
    right: -10px;
}

.orbit-train {
    bottom: 16px;
    left: 158px;
}

.orbit-market {
    top: 194px;
    left: -10px;
}

.orbit-market span {
    color: var(--gold-400);
}

/* Pillars */

.pillar-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.pillar-card {
    position: relative;
    min-height: 340px;
    overflow: hidden;
    padding: 30px;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: var(--white);
    box-shadow: var(--shadow-soft);
}

.pillar-card::after {
    position: absolute;
    right: -38px;
    bottom: -56px;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: var(--soft-blue);
    content: "";
}

.pillar-number {
    color: var(--ink-600);
    font-size: 0.72rem;
    font-weight: 800;
}

.pillar-icon {
    display: grid;
    width: 48px;
    height: 48px;
    margin: 34px 0 20px;
    place-items: center;
    border-radius: 14px;
    background: var(--navy-900);
    color: var(--white);
    font-weight: 900;
}

.pillar-card h3 {
    font-size: 1.55rem;
}

.pillar-card p {
    position: relative;
    z-index: 2;
    font-size: 0.93rem;
}

.pillar-card a {
    position: absolute;
    z-index: 3;
    bottom: 28px;
    color: var(--blue-600);
    font-size: 0.85rem;
    font-weight: 800;
}

.pillar-card a::after {
    content: " →";
}

.pillar-market .pillar-icon {
    background: var(--gold-500);
    color: #382708;
}

.pillar-market a {
    color: #966c13;
}

/* Split and concept */

.split-layout {
    display: grid;
    align-items: center;
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    gap: 74px;
}

.split-layout-light {
    color: var(--ink-950);
}

.check-list {
    display: grid;
    gap: 13px;
    margin-top: 28px;
}

.check-list > div {
    position: relative;
    padding-left: 30px;
    color: var(--ink-800);
    font-weight: 650;
}

.check-list > div::before {
    position: absolute;
    top: 0.32rem;
    left: 0;
    display: grid;
    width: 18px;
    height: 18px;
    place-items: center;
    border-radius: 50%;
    background: var(--blue-500);
    color: var(--white);
    content: "✓";
    font-size: 0.65rem;
}

.check-list-light > div {
    color: rgba(255, 255, 255, 0.8);
}

.dashboard-concept {
    perspective: 1100px;
}

.concept-window {
    overflow: hidden;
    transform: rotateY(-4deg) rotateX(2deg);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 20px;
    background: #f7fafc;
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.4);
}

.concept-toolbar {
    display: flex;
    height: 48px;
    align-items: center;
    gap: 7px;
    padding: 0 16px;
    background: var(--navy-900);
}

.concept-toolbar span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
}

.concept-toolbar small {
    margin-left: auto;
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.65rem;
    letter-spacing: 0.1em;
}

.concept-body {
    display: grid;
    min-height: 390px;
    grid-template-columns: 62px 1fr;
}

.concept-sidebar {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 20px;
    padding-top: 28px;
    background: #0d304f;
}

.concept-sidebar span {
    width: 24px;
    height: 24px;
    border-radius: 7px;
    background: rgba(255, 255, 255, 0.12);
}

.concept-sidebar span.active {
    background: var(--cyan-400);
}

.concept-content {
    padding: 28px;
    color: var(--ink-950);
}

.concept-topline {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.concept-topline small,
.concept-topline strong {
    display: block;
}

.concept-topline small {
    color: var(--ink-600);
    font-size: 0.72rem;
}

.concept-topline strong {
    font-size: 1.35rem;
}

.concept-status {
    padding: 7px 11px;
    border-radius: 999px;
    background: #dff5ed;
    color: var(--green-600);
    font-size: 0.7rem;
    font-weight: 800;
}

.concept-kpis {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin: 24px 0;
}

.concept-kpis div {
    padding: 17px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: var(--white);
}

.concept-kpis strong,
.concept-kpis small {
    display: block;
}

.concept-kpis strong {
    font-size: 1.35rem;
}

.concept-kpis small {
    color: var(--ink-600);
    font-size: 0.68rem;
}

.concept-chart {
    display: flex;
    height: 150px;
    align-items: end;
    gap: 10px;
    padding: 20px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: var(--white);
}

.concept-chart span {
    flex: 1;
    min-height: 10px;
    border-radius: 6px 6px 2px 2px;
    background: linear-gradient(to top, var(--blue-700), var(--cyan-400));
}

.concept-row {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 0.6fr;
    gap: 10px;
    margin-top: 14px;
}

.concept-row span {
    height: 12px;
    border-radius: 4px;
    background: #dce6ed;
}

.concept-row.short {
    width: 82%;
}

/* Modules */

.module-preview-grid,
.full-module-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.module-preview-grid article,
.full-module-grid article {
    padding: 27px;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: var(--white);
    transition:
        transform 160ms ease,
        box-shadow 160ms ease,
        border-color 160ms ease;
}

.module-preview-grid article:hover,
.full-module-grid article:hover {
    transform: translateY(-4px);
    border-color: rgba(22, 134, 184, 0.35);
    box-shadow: var(--shadow-soft);
}

.module-preview-grid span {
    display: inline-grid;
    min-width: 44px;
    min-height: 28px;
    margin-bottom: 20px;
    place-items: center;
    border-radius: 999px;
    background: var(--soft-blue);
    color: var(--blue-700);
    font-size: 0.68rem;
    font-weight: 900;
}

.module-preview-grid h3,
.full-module-grid h3 {
    margin-bottom: 9px;
}

.module-preview-grid p,
.full-module-grid p {
    margin-bottom: 0;
    font-size: 0.88rem;
}

.module-category + .module-category {
    margin-top: 86px;
}

.module-category-heading {
    display: flex;
    align-items: start;
    gap: 24px;
    margin-bottom: 34px;
}

.module-category-heading > span {
    display: grid;
    width: 52px;
    height: 52px;
    flex: 0 0 auto;
    place-items: center;
    border-radius: 50%;
    background: var(--navy-900);
    color: var(--cyan-300);
    font-size: 0.8rem;
    font-weight: 900;
}

.module-category-heading h2 {
    margin-bottom: 0;
    font-size: clamp(1.8rem, 2.8vw, 2.7rem);
}

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

.full-module-grid article {
    min-height: 190px;
}

/* Industry */

.industry-strip {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 11px;
}

.industry-strip span,
.future-tags span {
    padding: 11px 16px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: var(--white);
    color: var(--ink-800);
    font-size: 0.84rem;
    font-weight: 700;
}

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

.industry-grid article {
    position: relative;
    min-height: 320px;
    padding: 38px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: var(--white);
    box-shadow: var(--shadow-soft);
}

.industry-grid article > span {
    color: var(--blue-500);
    font-size: 0.75rem;
    font-weight: 900;
}

.industry-grid h2 {
    margin: 24px 0 15px;
    font-size: 1.8rem;
}

.industry-grid ul {
    display: grid;
    gap: 7px;
    padding-left: 19px;
    color: var(--ink-700);
    font-size: 0.88rem;
}

/* Marketplace banner and aircraft */

.marketplace-banner-section {
    padding-top: 58px;
}

.marketplace-banner {
    position: relative;
    min-height: 420px;
    overflow: hidden;
    padding: 64px;
    border-radius: var(--radius-xl);
    background:
        radial-gradient(circle at 85% 20%, rgba(213, 165, 63, 0.22), transparent 28%),
        linear-gradient(135deg, var(--navy-950), #17344c);
    color: var(--white);
    box-shadow: var(--shadow);
}

.marketplace-banner-copy {
    position: relative;
    z-index: 3;
    max-width: 650px;
}

.marketplace-banner h2 {
    margin-bottom: 18px;
}

.marketplace-banner p {
    max-width: 600px;
    color: rgba(255, 255, 255, 0.68);
    font-size: 1.05rem;
}

.marketplace-banner-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.marketplace-aircraft,
.listing-aircraft {
    position: absolute;
    right: 60px;
    bottom: 76px;
    width: 360px;
    height: 170px;
    transform: rotate(-5deg);
    opacity: 0.85;
}

.aircraft-body {
    position: absolute;
    top: 70px;
    left: 70px;
    width: 245px;
    height: 28px;
    transform: skewX(-16deg);
    border-radius: 60% 40% 45% 45%;
    background: linear-gradient(to bottom, #f4f8fa, #9fb3c2);
}

.aircraft-nose {
    position: absolute;
    top: 71px;
    right: 12px;
    width: 76px;
    height: 25px;
    transform: skewX(-24deg);
    border-radius: 0 100% 100% 0;
    background: #d7e2e8;
}

.aircraft-tail {
    position: absolute;
    top: 21px;
    left: 61px;
    width: 44px;
    height: 65px;
    transform: skewX(-12deg);
    border-radius: 70% 0 0 0;
    background: linear-gradient(135deg, var(--gold-400), #9c6f13);
}

.aircraft-wing {
    position: absolute;
    z-index: 2;
    top: 81px;
    left: 158px;
    width: 122px;
    height: 18px;
    border-radius: 80%;
    background: #e8eef2;
}

.aircraft-wing-left {
    transform: rotate(21deg);
}

.aircraft-wing-right {
    transform: rotate(-31deg);
    transform-origin: left center;
}

/* CTA */

.section-cta {
    padding: 0 0 96px;
}

.cta-panel {
    display: flex;
    min-height: 300px;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 54px 60px;
    border-radius: var(--radius-xl);
    background:
        radial-gradient(circle at 75% 20%, rgba(112, 211, 233, 0.2), transparent 25%),
        linear-gradient(135deg, var(--blue-700), var(--navy-900));
    color: var(--white);
    box-shadow: var(--shadow);
}

.cta-panel h2 {
    max-width: 740px;
    margin-bottom: 13px;
}

.cta-panel p {
    max-width: 680px;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.68);
}

.cta-actions {
    display: flex;
    flex: 0 0 auto;
    flex-direction: column;
    gap: 10px;
}

/* Page hero */

.page-hero {
    position: relative;
    overflow: hidden;
    padding: 104px 0 92px;
    background:
        radial-gradient(circle at 82% 18%, rgba(54, 182, 217, 0.21), transparent 28%),
        linear-gradient(135deg, var(--navy-950), var(--navy-800));
    color: var(--white);
}

.page-hero::after {
    position: absolute;
    right: -120px;
    bottom: -240px;
    width: 560px;
    height: 560px;
    border: 1px solid rgba(112, 211, 233, 0.12);
    border-radius: 50%;
    content: "";
}

.page-hero-compact {
    padding-top: 82px;
    padding-bottom: 76px;
}

.page-hero-layout {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 40px;
}

.page-hero h1 {
    max-width: 900px;
    margin-bottom: 20px;
    font-size: clamp(2.6rem, 4.7vw, 4.5rem);
}

.page-hero p {
    max-width: 760px;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.69);
    font-size: 1.12rem;
}

.page-hero-badge {
    display: flex;
    min-width: 250px;
    padding: 24px;
    align-items: center;
    flex-direction: column;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.06);
    text-align: center;
}

.page-hero-badge strong {
    letter-spacing: 0.15em;
}

.page-hero-badge span {
    margin-top: 6px;
    color: var(--cyan-300);
    font-size: 0.72rem;
}

/* Platform details */

.pillar-detail {
    display: grid;
    grid-template-columns: 80px minmax(260px, 0.65fr) minmax(0, 1.35fr);
    gap: 40px;
}

.pillar-detail-number {
    color: var(--blue-500);
    font-size: 1rem;
    font-weight: 900;
}

.pillar-detail-heading h2 {
    font-size: clamp(2rem, 3vw, 3.1rem);
}

.pillar-detail-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.pillar-detail-grid article {
    padding: 25px;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: var(--white);
}

.pillar-detail-grid article p {
    margin-bottom: 0;
    font-size: 0.88rem;
}

.pillar-detail-grid-dark article {
    border-color: var(--line-dark);
    background: rgba(255, 255, 255, 0.055);
}

.pillar-detail-grid-dark article p {
    color: rgba(255, 255, 255, 0.62);
}

/* Features */

.feature-grid,
.resource-grid,
.value-grid,
.marketplace-step-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 17px;
}

.feature-grid article,
.resource-grid article,
.value-grid article,
.marketplace-step-grid article {
    min-height: 245px;
    padding: 31px;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: var(--white);
}

.feature-grid article > span,
.resource-grid article > span,
.value-grid article > span,
.marketplace-step-grid article > span {
    color: var(--blue-500);
    font-size: 0.73rem;
    font-weight: 900;
}

.feature-grid h2,
.resource-grid h2,
.value-grid h2 {
    margin-top: 38px;
    font-size: 1.38rem;
}

.feature-grid p,
.resource-grid p,
.value-grid p,
.marketplace-step-grid p {
    margin-bottom: 0;
    font-size: 0.9rem;
}

.workflow-stack {
    display: grid;
    gap: 11px;
}

.workflow-stack > div {
    display: grid;
    min-height: 82px;
    align-items: center;
    grid-template-columns: 48px 150px 1fr;
    padding: 16px 20px;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.055);
}

.workflow-stack span {
    color: var(--cyan-300);
    font-size: 0.72rem;
    font-weight: 900;
}

.workflow-stack small {
    color: rgba(255, 255, 255, 0.55);
}

/* Pricing */

.pricing-grid {
    display: grid;
    align-items: stretch;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.pricing-grid article {
    display: flex;
    min-height: 560px;
    padding: 36px;
    flex-direction: column;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: var(--white);
    box-shadow: var(--shadow-soft);
}

.pricing-grid article.pricing-featured {
    transform: translateY(-14px);
    border-color: rgba(22, 134, 184, 0.42);
    box-shadow: var(--shadow);
}

.pricing-label {
    align-self: start;
    padding: 7px 11px;
    border-radius: 999px;
    background: var(--soft-blue);
    color: var(--blue-700);
    font-size: 0.68rem;
    font-weight: 900;
    text-transform: uppercase;
}

.pricing-grid h2 {
    margin: 28px 0 14px;
    font-size: 2rem;
}

.pricing-grid ul {
    display: grid;
    gap: 12px;
    margin: 24px 0 34px;
    padding-left: 20px;
    color: var(--ink-700);
}

.pricing-grid .button {
    margin-top: auto;
}

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

.factor-grid article {
    padding: 25px;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: var(--white);
}

.factor-grid strong {
    font-size: 1.08rem;
}

.factor-grid p {
    margin: 8px 0 0;
    font-size: 0.88rem;
}

/* Marketplace */

.marketplace-hero {
    position: relative;
    min-height: 650px;
    overflow: hidden;
    background:
        radial-gradient(circle at 76% 22%, rgba(213, 165, 63, 0.24), transparent 26%),
        linear-gradient(135deg, var(--navy-950), #183850);
    color: var(--white);
}

.marketplace-hero-layout {
    position: relative;
    z-index: 3;
    display: grid;
    min-height: 650px;
    align-items: center;
    grid-template-columns: 1fr 0.88fr;
    gap: 70px;
    padding-top: 70px;
    padding-bottom: 80px;
}

.marketplace-hero h1 {
    font-size: clamp(2.8rem, 4.7vw, 4.8rem);
}

.marketplace-hero p {
    max-width: 680px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.12rem;
}

.marketplace-status {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-top: 34px;
    color: rgba(255, 255, 255, 0.67);
    font-size: 0.8rem;
}

.marketplace-status span {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--gold-400);
    box-shadow: 0 0 0 6px rgba(230, 191, 102, 0.12);
}

.listing-concept {
    overflow: hidden;
    transform: rotate(2deg);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 22px;
    background: var(--white);
    box-shadow: 0 34px 80px rgba(0, 0, 0, 0.38);
}

.listing-concept-image {
    position: relative;
    height: 300px;
    overflow: hidden;
    background:
        linear-gradient(to bottom, #9dc9db 0%, #dfeef3 58%, #8fa78f 59%, #536d56 100%);
}

.listing-aircraft {
    right: 35px;
    bottom: 48px;
    transform: rotate(-4deg) scale(1.08);
    opacity: 1;
}

.listing-tag {
    position: absolute;
    top: 18px;
    left: 18px;
    padding: 8px 11px;
    border-radius: 999px;
    background: var(--gold-400);
    color: #382708;
    font-size: 0.72rem;
    font-weight: 900;
}

.listing-concept-copy {
    padding: 28px;
    color: var(--ink-950);
}

.listing-concept-copy small {
    color: var(--blue-600);
    font-weight: 800;
}

.listing-concept-copy h2 {
    margin: 7px 0 19px;
    font-size: 1.5rem;
}

.listing-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.listing-specs span {
    padding: 7px 10px;
    border-radius: 999px;
    background: var(--soft);
    color: var(--ink-700);
    font-size: 0.7rem;
    font-weight: 700;
}

.marketplace-step-grid article > span {
    color: #9a7019;
}

.marketplace-step-grid h3 {
    margin-top: 35px;
}

.future-grid {
    display: grid;
    align-items: center;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 70px;
}

.future-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.marketplace-cta .cta-panel {
    background:
        radial-gradient(circle at 75% 20%, rgba(230, 191, 102, 0.22), transparent 26%),
        linear-gradient(135deg, #64470e, var(--navy-900));
}

/* About */

.about-layout,
.vision-panel {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 80px;
}

.about-statement h2 {
    max-width: 500px;
}

.about-copy p,
.vision-panel p {
    font-size: 1.06rem;
}

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

.value-grid article {
    min-height: 300px;
}

/* Resources */

.resource-grid article {
    min-height: 290px;
}

.resource-grid small {
    display: block;
    margin-top: 22px;
    color: var(--blue-600);
    font-size: 0.76rem;
    font-weight: 800;
}

.resource-actions {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
}

/* Contact and forms */

.contact-layout {
    display: grid;
    align-items: start;
    grid-template-columns: 0.75fr 1.25fr;
    gap: 70px;
}

.contact-intro {
    position: sticky;
    top: 120px;
}

.contact-topic-list {
    display: grid;
    gap: 10px;
    margin-top: 35px;
}

.contact-topic-list > div {
    display: grid;
    align-items: center;
    grid-template-columns: 38px 1fr;
    padding: 13px 0;
    border-bottom: 1px solid var(--line);
}

.contact-topic-list span {
    color: var(--blue-500);
    font-size: 0.72rem;
    font-weight: 900;
}

.contact-topic-list p {
    margin: 0;
    color: var(--ink-800);
    font-weight: 700;
}

.public-form-card {
    padding: 40px;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: var(--white);
    box-shadow: var(--shadow-soft);
}

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

.form-field {
    display: grid;
    gap: 7px;
}

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

.form-field label {
    color: var(--ink-800);
    font-size: 0.82rem;
    font-weight: 800;
}

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    border: 1px solid #cbd8e1;
    border-radius: 11px;
    outline: none;
    background: #fbfdfe;
    color: var(--ink-950);
    transition:
        border-color 160ms ease,
        box-shadow 160ms ease;
}

.form-field input,
.form-field select {
    min-height: 49px;
    padding: 0 13px;
}

.form-field textarea {
    padding: 13px;
    resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    border-color: var(--blue-500);
    box-shadow: 0 0 0 4px rgba(22, 134, 184, 0.11);
}

.form-message {
    margin-bottom: 24px;
    padding: 15px 17px;
    border-radius: 11px;
    font-weight: 700;
}

.form-message-success {
    border: 1px solid #a8dcc9;
    background: #e8f7f1;
    color: #126949;
}

.form-message-error {
    border: 1px solid #e4b2b2;
    background: #fff0f0;
    color: #9c2929;
}

/* Legal */

.legal-content {
    max-width: 870px;
}

.legal-content h2 {
    margin-top: 40px;
    font-size: 1.55rem;
}

.legal-content h2:first-child {
    margin-top: 0;
}

/* Footer */

.site-footer {
    padding: 70px 0 28px;
    background: var(--navy-950);
    color: var(--white);
}

.footer-primary {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 80px;
    padding-bottom: 54px;
}

.footer-brand p {
    max-width: 430px;
    margin: 24px 0;
    color: rgba(255, 255, 255, 0.57);
}

.brand-footer .brand-mark {
    width: 46px;
    height: 46px;
}

.footer-pillar-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.footer-pillar-row span {
    padding: 7px 10px;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.69);
    font-size: 0.7rem;
    font-weight: 700;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.footer-links h2 {
    margin-bottom: 17px;
    color: var(--white);
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.footer-links a {
    display: block;
    margin: 10px 0;
    color: rgba(255, 255, 255, 0.57);
    font-size: 0.83rem;
}

.footer-links a:hover {
    color: var(--cyan-300);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.42);
    font-size: 0.75rem;
}

/* Responsive */

@media (max-width: 1120px) {
    .primary-nav {
        gap: 15px;
        font-size: 0.8rem;
    }

    .hero-layout {
        grid-template-columns: 1fr 420px;
        gap: 26px;
    }

    .platform-orbit {
        transform: scale(0.84);
    }

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

    .full-module-grid,
    .feature-grid,
    .resource-grid,
    .marketplace-step-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .pillar-detail {
        grid-template-columns: 60px 0.72fr 1.28fr;
    }
}

@media (max-width: 920px) {
    .header-inner {
        min-height: 70px;
    }

    .nav-toggle {
        display: block;
    }

    .primary-nav {
        position: fixed;
        top: 70px;
        right: 0;
        bottom: 0;
        left: 0;
        display: none;
        align-items: stretch;
        justify-content: flex-start;
        padding: 28px 20px 40px;
        overflow-y: auto;
        flex-direction: column;
        gap: 0;
        background: var(--navy-950);
        font-size: 1rem;
    }

    .primary-nav.is-open {
        display: flex;
    }

    .primary-nav > a {
        padding: 14px 4px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.09);
    }

    .nav-actions {
        align-items: stretch;
        margin: 24px 0 0;
        flex-direction: column;
    }

    .hero-layout,
    .marketplace-hero-layout {
        grid-template-columns: 1fr;
    }

    .hero-layout {
        padding-top: 90px;
    }

    .hero-visual {
        min-height: 460px;
    }

    .split-layout,
    .future-grid,
    .about-layout,
    .vision-panel,
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .contact-intro {
        position: static;
    }

    .pillar-detail {
        grid-template-columns: 50px 1fr;
    }

    .pillar-detail-grid {
        grid-column: 2;
    }

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

    .pricing-grid article.pricing-featured {
        transform: none;
    }

    .industry-grid {
        grid-template-columns: 1fr;
    }

    .cta-panel {
        align-items: flex-start;
        flex-direction: column;
    }

    .cta-actions {
        width: 100%;
        flex-direction: row;
    }

    .footer-primary {
        grid-template-columns: 1fr;
        gap: 44px;
    }

    .marketplace-aircraft {
        right: -80px;
        opacity: 0.35;
    }

    .listing-concept {
        max-width: 620px;
        margin: auto;
    }
}

@media (max-width: 680px) {
    .site-shell {
        width: min(calc(100% - 28px), var(--shell));
    }

    .section {
        padding: 72px 0;
    }

    .section-cta {
        padding-bottom: 72px;
    }

    h1 {
        font-size: 2.65rem;
    }

    h2 {
        font-size: 2rem;
    }

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

    .hero-layout {
        padding-top: 72px;
        padding-bottom: 66px;
    }

    .hero-proof {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        display: none;
    }

    .pillar-grid,
    .module-preview-grid,
    .full-module-grid,
    .feature-grid,
    .resource-grid,
    .value-grid,
    .marketplace-step-grid,
    .factor-grid {
        grid-template-columns: 1fr;
    }

    .section-heading {
        display: block;
    }

    .section-heading .button {
        margin-top: 24px;
    }

    .page-hero {
        padding: 76px 0 66px;
    }

    .page-hero-layout {
        align-items: flex-start;
        flex-direction: column;
    }

    .page-hero-badge {
        width: 100%;
    }

    .pillar-detail {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .pillar-detail-grid {
        grid-column: auto;
        grid-template-columns: 1fr;
    }

    .pillar-detail-number {
        display: none;
    }

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

    .form-field-full {
        grid-column: auto;
    }

    .public-form-card {
        padding: 25px;
    }

    .marketplace-banner {
        min-height: 470px;
        padding: 38px 27px;
    }

    .marketplace-aircraft {
        right: -115px;
        bottom: 20px;
        transform: rotate(-5deg) scale(0.72);
    }

    .listing-concept-image {
        height: 240px;
    }

    .listing-aircraft {
        right: -20px;
        bottom: 28px;
        transform: rotate(-4deg) scale(0.8);
    }

    .cta-panel {
        min-height: 0;
        padding: 40px 28px;
    }

    .cta-actions,
    .resource-actions {
        width: 100%;
        align-items: stretch;
        flex-direction: column;
    }

    .footer-links {
        grid-template-columns: 1fr 1fr;
    }

    .footer-bottom {
        flex-direction: column;
    }
}


/* ACEFLYT OFFICIAL PUBLIC BRAND RESTORE V1 */
.aceflyt-official-brand,
.site-brand,
.public-brand {
    display: inline-flex;
    min-width: 0;
    align-items: center;
    flex: 0 0 auto;
    text-decoration: none;
}

.aceflyt-official-brand-logo {
    display: block;
    width: auto;
    max-width: min(285px, 34vw);
    height: 48px;
    object-fit: contain;
    object-position: left center;
}

.public-header,
.site-header,
.website-header {
    min-height: 80px;
}

.public-header .site-shell,
.site-header .site-shell,
.website-header .site-shell {
    min-height: 80px;
    align-items: center;
}

.public-main,
.site-main {
    overflow-x: clip;
}

.home-hero,
.public-hero,
.platform-hero {
    min-height: auto;
}

.home-hero .site-shell,
.public-hero .site-shell,
.platform-hero .site-shell {
    padding-top: clamp(72px, 9vw, 122px);
    padding-bottom: clamp(76px, 10vw, 138px);
}

.home-hero h1,
.public-hero h1,
.platform-hero h1 {
    margin-top: 22px;
    margin-bottom: 24px;
    line-height: .98;
}

@media (max-width: 900px) {
    .aceflyt-official-brand-logo {
        max-width: min(245px, 48vw);
        height: 43px;
    }
}

@media (max-width: 620px) {
    .public-header,
    .site-header,
    .website-header,
    .public-header .site-shell,
    .site-header .site-shell,
    .website-header .site-shell {
        min-height: 70px;
    }

    .aceflyt-official-brand-logo {
        max-width: 205px;
        height: 38px;
    }

    .home-hero .site-shell,
    .public-hero .site-shell,
    .platform-hero .site-shell {
        padding-top: 58px;
        padding-bottom: 74px;
    }

    .home-hero h1,
    .public-hero h1,
    .platform-hero h1 {
        line-height: 1.01;
    }
}
/* ACEFLYT OFFICIAL PUBLIC BRAND RESTORE V1: END */


/* ACEFLYT OFFICIAL LOGO PROPORTION REPAIR V1 */

/*
 * The historic logo image contains a wider artwork canvas.
 * These high-specificity rules prevent earlier generic brand-image
 * declarations from expanding the public navigation bar.
 */

.public-header,
.site-header,
.website-header {
    height: 88px !important;
    min-height: 88px !important;
    max-height: 88px !important;
    overflow: visible;
}

.public-header .site-shell,
.site-header .site-shell,
.website-header .site-shell,
.public-header .header-inner,
.site-header .header-inner,
.website-header .header-inner {
    height: 88px !important;
    min-height: 88px !important;
    max-height: 88px !important;
    align-items: center !important;
}

.public-header .aceflyt-official-brand,
.site-header .aceflyt-official-brand,
.website-header .aceflyt-official-brand,
.public-header .site-brand,
.site-header .site-brand,
.website-header .site-brand {
    display: inline-flex !important;
    width: 220px !important;
    min-width: 220px !important;
    max-width: 220px !important;
    height: 70px !important;
    min-height: 70px !important;
    max-height: 70px !important;
    align-items: center !important;
    justify-content: flex-start !important;
    overflow: hidden !important;
    flex: 0 0 220px !important;
}

.public-header img.aceflyt-official-brand-logo,
.site-header img.aceflyt-official-brand-logo,
.website-header img.aceflyt-official-brand-logo,
a.aceflyt-official-brand img.aceflyt-official-brand-logo,
.site-brand img.aceflyt-official-brand-logo {
    display: block !important;
    width: 220px !important;
    min-width: 220px !important;
    max-width: 220px !important;
    height: 70px !important;
    min-height: 70px !important;
    max-height: 70px !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    object-fit: contain !important;
    object-position: left center !important;
    transform: none !important;
}

.public-header nav,
.site-header nav,
.website-header nav,
.public-header .site-navigation,
.site-header .site-navigation,
.website-header .site-navigation {
    min-width: 0;
    align-items: center;
}

@media (max-width: 1100px) {
    .public-header .aceflyt-official-brand,
    .site-header .aceflyt-official-brand,
    .website-header .aceflyt-official-brand,
    .public-header .site-brand,
    .site-header .site-brand,
    .website-header .site-brand {
        width: 185px !important;
        min-width: 185px !important;
        max-width: 185px !important;
        flex-basis: 185px !important;
    }

    .public-header img.aceflyt-official-brand-logo,
    .site-header img.aceflyt-official-brand-logo,
    .website-header img.aceflyt-official-brand-logo,
    a.aceflyt-official-brand img.aceflyt-official-brand-logo,
    .site-brand img.aceflyt-official-brand-logo {
        width: 185px !important;
        min-width: 185px !important;
        max-width: 185px !important;
    }
}

@media (max-width: 760px) {
    .public-header,
    .site-header,
    .website-header,
    .public-header .site-shell,
    .site-header .site-shell,
    .website-header .site-shell,
    .public-header .header-inner,
    .site-header .header-inner,
    .website-header .header-inner {
        height: 74px !important;
        min-height: 74px !important;
        max-height: 74px !important;
    }

    .public-header .aceflyt-official-brand,
    .site-header .aceflyt-official-brand,
    .website-header .aceflyt-official-brand,
    .public-header .site-brand,
    .site-header .site-brand,
    .website-header .site-brand {
        width: 165px !important;
        min-width: 165px !important;
        max-width: 165px !important;
        height: 58px !important;
        min-height: 58px !important;
        max-height: 58px !important;
        flex-basis: 165px !important;
    }

    .public-header img.aceflyt-official-brand-logo,
    .site-header img.aceflyt-official-brand-logo,
    .website-header img.aceflyt-official-brand-logo,
    a.aceflyt-official-brand img.aceflyt-official-brand-logo,
    .site-brand img.aceflyt-official-brand-logo {
        width: 165px !important;
        min-width: 165px !important;
        max-width: 165px !important;
        height: 58px !important;
        min-height: 58px !important;
        max-height: 58px !important;
    }
}

@media (max-width: 420px) {
    .public-header .aceflyt-official-brand,
    .site-header .aceflyt-official-brand,
    .website-header .aceflyt-official-brand,
    .public-header .site-brand,
    .site-header .site-brand,
    .website-header .site-brand {
        width: 145px !important;
        min-width: 145px !important;
        max-width: 145px !important;
        flex-basis: 145px !important;
    }

    .public-header img.aceflyt-official-brand-logo,
    .site-header img.aceflyt-official-brand-logo,
    .website-header img.aceflyt-official-brand-logo,
    a.aceflyt-official-brand img.aceflyt-official-brand-logo,
    .site-brand img.aceflyt-official-brand-logo {
        width: 145px !important;
        min-width: 145px !important;
        max-width: 145px !important;
    }
}

/* ACEFLYT OFFICIAL LOGO PROPORTION REPAIR V1: END */


/* =============================================================================
   ACEFLYT FLYT WEBSITE REFRESH - PHASE 1
   Homepage + product-family refinement
   ============================================================================= */

.flyt-family-section {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 92% 8%, rgba(54, 182, 217, 0.10), transparent 22%),
        linear-gradient(to bottom, #ffffff 0%, #f8fbfd 100%);
}

.flyt-family-heading p {
    max-width: 720px;
    margin-top: 15px;
    margin-bottom: 0;
}

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

.flyt-product-card {
    position: relative;
    min-height: 310px;
    padding: 31px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,1),
            rgba(243,247,250,0.76)
        );
    box-shadow: var(--shadow-soft);
    transition:
        transform 180ms ease,
        box-shadow 180ms ease,
        border-color 180ms ease;
}

.flyt-product-card::after {
    position: absolute;
    right: -50px;
    bottom: -65px;
    width: 170px;
    height: 170px;
    border-radius: 50%;
    background:
        radial-gradient(
            circle,
            rgba(54,182,217,0.12),
            rgba(54,182,217,0.02) 62%,
            transparent 64%
        );
    content: "";
}

.flyt-product-card:hover {
    transform: translateY(-5px);
    border-color: rgba(22, 134, 184, 0.32);
    box-shadow: var(--shadow);
}

.flyt-product-code {
    display: inline-flex;
    min-height: 28px;
    align-items: center;
    padding: 5px 10px;
    border-radius: 999px;
    background: var(--soft-blue);
    color: var(--blue-700);
    font-size: 0.66rem;
    font-weight: 900;
    letter-spacing: 0.08em;
}

.flyt-product-card h3 {
    margin: 28px 0 5px;
    color: var(--navy-900);
    font-size: 1.7rem;
}

.flyt-product-card strong {
    display: block;
    margin-bottom: 14px;
    color: var(--blue-600);
    font-size: 0.85rem;
}

.flyt-product-card p {
    position: relative;
    z-index: 2;
    margin: 0;
    font-size: 0.9rem;
}


.product-showcase-section {
    background: #ffffff;
}

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

.product-showcase-card {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: var(--white);
    box-shadow: var(--shadow-soft);
    transition:
        transform 180ms ease,
        box-shadow 180ms ease;
}

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

.product-showcase-image {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: var(--soft);
}

.product-showcase-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top left;
    transition: transform 260ms ease;
}

.product-showcase-card:hover .product-showcase-image img {
    transform: scale(1.018);
}

.product-showcase-copy {
    padding: 27px 28px 31px;
}

.product-showcase-copy > span {
    display: block;
    margin-bottom: 10px;
    color: var(--blue-600);
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.product-showcase-copy h3 {
    margin-bottom: 11px;
    font-size: 1.42rem;
}

.product-showcase-copy p {
    margin-bottom: 0;
    font-size: 0.9rem;
}


.platform-trust-section {
    background:
        radial-gradient(circle at 7% 10%, rgba(22,134,184,0.08), transparent 22%),
        #f8fafc;
}

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

.platform-trust-grid article {
    padding: 26px;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: rgba(255,255,255,0.86);
}

.platform-trust-grid strong {
    display: block;
    margin-bottom: 8px;
    color: var(--navy-900);
    font-size: 1.04rem;
}

.platform-trust-grid p {
    margin: 0;
    font-size: 0.87rem;
}


/* Make major homepage sections feel less mechanically separated. */
.section-intro {
    padding-bottom: 82px;
}

.flyt-family-section {
    padding-top: 88px;
}

.product-showcase-section {
    padding-top: 88px;
    padding-bottom: 90px;
}

.marketplace-banner-section {
    padding-top: 70px;
    padding-bottom: 90px;
}


/* Softer product-family emphasis without creating separate product logos. */
.flyt-product-card:nth-child(2) .flyt-product-code,
.flyt-product-card:nth-child(5) .flyt-product-code {
    background: #eef1ff;
    color: #3744a4;
}

.flyt-product-card:nth-child(3) .flyt-product-code {
    background: #eef8f3;
    color: #177052;
}

.flyt-product-card:nth-child(4) .flyt-product-code {
    background: #fff6e3;
    color: #8e6514;
}

.flyt-product-card:nth-child(6) .flyt-product-code {
    background: #f3f1f8;
    color: #675384;
}


@media (max-width: 1050px) {
    .flyt-product-grid,
    .product-showcase-grid,
    .platform-trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


@media (max-width: 680px) {
    .flyt-product-grid,
    .product-showcase-grid,
    .platform-trust-grid {
        grid-template-columns: 1fr;
    }

    .flyt-product-card {
        min-height: auto;
    }

    .product-showcase-copy {
        padding: 23px;
    }
}

/* ACEFLYT FLYT WEBSITE REFRESH - PHASE 1: END */
