﻿:root {
    --ink: #111826;
    --navy: #12304a;
    --blue: #0f6380;
    --teal: #126a61;
    --copper: #b46d32;
    --paper: #fbfbf7;
    --mist: #edf2f1;
    --line: rgba(17, 24, 38, 0.14);
    --white: #ffffff;
    --shadow: 0 24px 70px rgba(17, 24, 38, 0.14);
    --market-height: 48px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
}

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

a {
    color: inherit;
}

.market-tape {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 32;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    height: var(--market-height);
    min-height: var(--market-height);
    padding: 0 clamp(18px, 4vw, 58px);
    color: rgba(255, 255, 255, 0.84);
    background: linear-gradient(90deg, #0b111d 0%, #12304a 48%, #0f3d4a 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.market-label {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 230px;
    padding-right: 18px;
    border-right: 1px solid rgba(255, 255, 255, 0.16);
}

.market-label span {
    color: var(--copper);
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
}

.market-label strong {
    color: var(--white);
    font-size: 13px;
    letter-spacing: 0;
    white-space: nowrap;
}

.market-widget {
    position: relative;
    min-width: 0;
    height: var(--market-height);
    min-height: var(--market-height);
    overflow: hidden;
}

.market-widget .tradingview-widget-container,
.market-widget .tradingview-widget-container__widget {
    height: var(--market-height) !important;
    min-height: var(--market-height) !important;
}

.market-widget iframe {
    display: block !important;
    width: 100% !important;
    height: var(--market-height) !important;
    min-height: var(--market-height) !important;
    border: 0 !important;
}

.market-widget .tradingview-widget-container {
    position: absolute;
    inset: 0;
    z-index: 2;
    opacity: 0;
    overflow: hidden;
    transition: opacity 0.24s ease;
}

.market-fallback {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: flex;
    align-items: center;
    padding-left: 18px;
    color: rgba(255, 255, 255, 0.76);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    white-space: nowrap;
}

.market-widget.market-loaded .tradingview-widget-container {
    opacity: 1;
}

.market-widget.market-loaded .market-fallback {
    opacity: 0;
    pointer-events: none;
}

.market-source {
    min-width: 112px;
    padding-left: 18px;
    color: rgba(255, 255, 255, 0.72);
    border-left: 1px solid rgba(255, 255, 255, 0.16);
    font-size: 12px;
    font-weight: 800;
    text-align: right;
    text-decoration: none;
}

.market-source:hover {
    color: var(--white);
}

.site-header {
    position: fixed;
    top: var(--market-height);
    left: 0;
    right: 0;
    z-index: 30;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    min-height: 76px;
    padding: 14px clamp(18px, 4vw, 58px);
    color: var(--white);
    transition: background 0.25s ease, box-shadow 0.25s ease, color 0.25s ease;
}

.site-header.is-scrolled,
.site-header.is-open {
    color: var(--ink);
    background: rgba(251, 251, 247, 0.96);
    box-shadow: 0 12px 36px rgba(17, 24, 38, 0.08);
    backdrop-filter: blur(14px);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    min-width: 332px;
}

.brand-logo-frame {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 204px;
    height: 48px;
    padding: 9px 12px;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.36);
    box-shadow: 0 12px 24px rgba(8, 17, 31, 0.14);
}

.brand-logo-frame img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.brand-meta strong,
.brand-meta small {
    display: block;
}

.brand-meta strong {
    font-size: 13px;
    letter-spacing: 0;
    text-transform: uppercase;
}

.brand-meta small {
    font-size: 12px;
    opacity: 0.78;
}

.site-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: clamp(12px, 1.45vw, 22px);
    font-size: 13px;
    font-weight: 700;
}

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

.site-nav a:hover {
    color: var(--copper);
}

.site-nav a.active {
    color: var(--copper);
}

.nav-cta {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 0 16px;
    color: var(--white) !important;
    background: var(--teal);
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid currentColor;
    background: transparent;
    color: inherit;
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 5px auto;
    background: currentColor;
}

.hero {
    position: relative;
    min-height: 92vh;
    display: grid;
    align-items: end;
    padding: 170px clamp(20px, 6vw, 76px) 62px;
    color: var(--white);
    overflow: hidden;
}

.hero-media,
.hero-shade {
    position: absolute;
    inset: 0;
}

.hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-shade {
    background:
        linear-gradient(90deg, rgba(8, 17, 31, 0.92) 0%, rgba(8, 17, 31, 0.62) 48%, rgba(8, 17, 31, 0.2) 100%),
        linear-gradient(0deg, rgba(8, 17, 31, 0.76) 0%, rgba(8, 17, 31, 0.1) 42%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 980px;
}

.eyebrow {
    margin: 0 0 14px;
    color: var(--copper);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
}

.hero h1 {
    margin: 0;
    font-size: clamp(52px, 9.2vw, 118px);
    line-height: 0.96;
    letter-spacing: 0;
}

.hero-lead {
    max-width: 760px;
    margin: 26px 0 0;
    font-size: clamp(18px, 2.3vw, 26px);
    line-height: 1.35;
    color: rgba(255, 255, 255, 0.88);
}

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

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 0 22px;
    border: 1px solid transparent;
    text-decoration: none;
    font-weight: 800;
}

.button.primary {
    color: var(--white);
    background: var(--copper);
}

.button.secondary {
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.52);
    background: rgba(255, 255, 255, 0.08);
}

.market-card {
    position: absolute;
    right: clamp(20px, 5vw, 72px);
    bottom: 46px;
    z-index: 3;
    width: min(350px, calc(100% - 40px));
    padding: 24px;
    color: var(--ink);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: var(--shadow);
}

.market-card span {
    color: var(--blue);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.market-card strong {
    display: block;
    margin: 8px 0;
    font-size: 23px;
    line-height: 1.15;
}

.market-card p {
    margin: 0;
    color: rgba(17, 24, 38, 0.72);
}

.signal-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-bottom: 1px solid var(--line);
    background: var(--white);
}

.signal-strip div {
    min-height: 132px;
    padding: 28px clamp(20px, 4vw, 46px);
    border-right: 1px solid var(--line);
}

.signal-strip div:last-child {
    border-right: 0;
}

.signal-strip strong {
    display: block;
    color: var(--navy);
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1;
}

.signal-strip span {
    display: block;
    max-width: 210px;
    margin-top: 10px;
    color: rgba(17, 24, 38, 0.68);
    font-weight: 700;
}

.section {
    padding: clamp(70px, 9vw, 126px) clamp(20px, 6vw, 76px);
}

.section-heading {
    max-width: 820px;
}

.section-heading.wide {
    max-width: 1050px;
}

.section h2,
.contact-band h2 {
    margin: 0;
    color: var(--ink);
    font-size: clamp(34px, 5vw, 72px);
    line-height: 1.02;
    letter-spacing: 0;
}

.section-heading p:not(.eyebrow) {
    max-width: 720px;
    margin: 22px 0 0;
    color: rgba(17, 24, 38, 0.7);
    font-size: 18px;
}

.intro {
    background: var(--paper);
}

.intro-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.7fr);
    gap: clamp(28px, 6vw, 86px);
    margin-top: 50px;
    align-items: start;
}

.intro-copy {
    max-width: 780px;
    color: rgba(17, 24, 38, 0.76);
    font-size: clamp(18px, 2vw, 23px);
}

.intro-copy p:first-child {
    margin-top: 0;
}

.capability-panel {
    padding: 30px;
    background: var(--mist);
    border-left: 6px solid var(--teal);
}

.capability-panel h3 {
    margin: 0 0 18px;
    font-size: 25px;
}

.capability-panel ul {
    display: grid;
    gap: 14px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.capability-panel li {
    padding-bottom: 14px;
    border-bottom: 1px solid var(--line);
    font-weight: 700;
}

.capability-panel li:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.brand-signature {
    display: grid;
    grid-template-columns: minmax(180px, 300px) minmax(0, 1fr);
    gap: clamp(28px, 6vw, 86px);
    align-items: center;
    padding: clamp(48px, 7vw, 86px) clamp(20px, 6vw, 76px);
    background: linear-gradient(90deg, #f6fbff 0%, #ffffff 58%, #edf7f8 100%);
    border-top: 1px solid rgba(15, 99, 128, 0.12);
    border-bottom: 1px solid rgba(15, 99, 128, 0.12);
}

.signature-emblem {
    width: min(280px, 100%);
    margin: 0 auto;
    filter: drop-shadow(0 22px 30px rgba(15, 99, 128, 0.18));
}

.signature-copy {
    max-width: 900px;
}

.signature-slogan {
    width: min(620px, 100%);
    margin: 0 0 22px;
}

.signature-copy p:not(.eyebrow) {
    max-width: 780px;
    margin: 0;
    color: rgba(17, 24, 38, 0.72);
    font-size: clamp(18px, 2vw, 22px);
}

.visual-proof {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.85fr);
    gap: 0;
    padding: 0;
    background: var(--navy);
    color: var(--white);
}

.proof-image {
    min-height: 560px;
}

.proof-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.proof-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(48px, 7vw, 90px);
}

.proof-content h2 {
    color: var(--white);
    font-size: clamp(34px, 4vw, 52px);
}

.proof-content p:not(.eyebrow) {
    color: rgba(255, 255, 255, 0.78);
    font-size: 18px;
}

.proof-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 26px;
}

.proof-list span {
    padding: 14px 16px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    color: rgba(255, 255, 255, 0.9);
    font-weight: 800;
}

.projects {
    background: var(--white);
}

.project-feature {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
    gap: 0;
    margin-top: 52px;
    border: 1px solid var(--line);
}

.project-feature img {
    width: 100%;
    height: 100%;
    min-height: 420px;
    object-fit: cover;
}

.project-feature div {
    padding: clamp(34px, 5vw, 58px);
    background: var(--paper);
}

.project-feature span {
    color: var(--teal);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.project-feature h3 {
    margin: 12px 0 16px;
    font-size: clamp(32px, 4vw, 56px);
    line-height: 1.02;
}

.project-feature p {
    color: rgba(17, 24, 38, 0.72);
    font-size: 18px;
}

.project-feature a,
.news-card a,
.text-link {
    color: var(--teal);
    font-weight: 900;
    text-decoration: none;
}

.section-link {
    display: inline-flex;
    margin-top: 24px;
}

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

.project-grid article {
    background: var(--white);
    border: 1px solid var(--line);
}

.project-grid img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.project-grid h3,
.project-grid p {
    margin-left: 22px;
    margin-right: 22px;
}

.project-grid h3 {
    margin-top: 22px;
    margin-bottom: 10px;
    font-size: 23px;
    line-height: 1.18;
}

.project-grid p {
    margin-top: 0;
    margin-bottom: 26px;
    color: rgba(17, 24, 38, 0.68);
}

.governance {
    background: var(--mist);
}

.governance-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-top: 50px;
}

.governance-grid article {
    min-height: 310px;
    padding: 30px;
    background: var(--white);
    border-top: 6px solid var(--copper);
}

.governance-grid span {
    color: var(--blue);
    font-weight: 900;
}

.governance-grid h3 {
    margin: 28px 0 14px;
    font-size: 27px;
}

.governance-grid p {
    color: rgba(17, 24, 38, 0.7);
}

.investors {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 430px);
    gap: clamp(30px, 6vw, 74px);
    align-items: center;
    background: var(--ink);
    color: var(--white);
}

.investor-copy h2 {
    color: var(--white);
}

.investor-copy p:not(.eyebrow) {
    max-width: 880px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 19px;
}

.investor-aside {
    padding: 32px;
    background: var(--white);
    color: var(--ink);
}

.investor-aside span {
    color: var(--copper);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.investor-aside strong {
    display: block;
    margin: 16px 0;
    font-size: 31px;
    line-height: 1.08;
}

.press {
    background: var(--paper);
}

.news-grid {
    display: grid;
    grid-template-columns: 1.25fr 1fr 1fr;
    gap: 18px;
    margin: 48px 0 26px;
}

.news-card {
    min-height: 330px;
    padding: 28px;
    background: var(--white);
    border: 1px solid var(--line);
}

.news-card.featured {
    background: var(--navy);
    color: var(--white);
}

.news-card span {
    color: var(--copper);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.news-card h3 {
    margin: 20px 0 14px;
    font-size: clamp(24px, 3vw, 38px);
    line-height: 1.08;
}

.news-card p {
    color: rgba(17, 24, 38, 0.68);
}

.news-card.featured p {
    color: rgba(255, 255, 255, 0.76);
}

.news-card.featured a {
    color: var(--white);
}

.contact-band {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 500px);
    gap: 28px;
    align-items: end;
    padding: clamp(60px, 8vw, 96px) clamp(20px, 6vw, 76px);
    background: var(--teal);
    color: var(--white);
}

.contact-band h2 {
    color: var(--white);
    max-width: 980px;
}

.contact-band .eyebrow {
    color: rgba(255, 255, 255, 0.76);
}

.contact-band address {
    display: grid;
    gap: 12px;
    margin: 0;
    font-style: normal;
    font-size: 18px;
}

.contact-band a {
    color: var(--white);
    font-weight: 900;
}

.site-footer {
    display: grid;
    grid-template-columns: minmax(220px, 1fr) minmax(280px, 1fr) auto;
    gap: 28px;
    padding: 42px clamp(20px, 6vw, 76px);
    color: rgba(255, 255, 255, 0.72);
    background: #0d1118;
}

.site-footer strong {
    color: var(--white);
}

.site-footer p {
    margin: 8px 0 0;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 20px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
}

.copyright {
    text-align: right;
}

.cookie-banner {
    position: fixed;
    right: auto;
    bottom: 20px;
    left: 20px;
    z-index: 40;
    display: none;
    align-items: center;
    gap: 16px;
    width: min(540px, calc(100% - 40px));
    padding: 14px 16px;
    color: var(--ink);
    background: var(--white);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}

.cookie-banner.is-visible {
    display: flex;
}

.cookie-banner p {
    margin: 0;
    font-size: 14px;
    line-height: 1.35;
}

.cookie-banner p:first-child {
    display: none;
}

.cookie-banner div {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
    margin-top: 0;
}

.cookie-banner button {
    min-height: 40px;
    padding: 0 16px;
    border: 0;
    color: var(--white);
    background: var(--teal);
    font-weight: 800;
    cursor: pointer;
}

.cookie-banner a {
    color: var(--teal);
    font-weight: 800;
    text-decoration: none;
}

.page-hero {
    padding: 190px clamp(20px, 6vw, 76px) 76px;
    color: var(--white);
    background:
        linear-gradient(90deg, rgba(8, 17, 31, 0.92), rgba(8, 17, 31, 0.62)),
        url("../img/puerto%20de%20cartagena.JPG") center / cover;
}

.page-hero h1 {
    max-width: 980px;
    margin: 0;
    font-size: clamp(48px, 8vw, 104px);
    line-height: 0.96;
}

.page-hero p:not(.eyebrow) {
    max-width: 760px;
    margin: 24px 0 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: clamp(18px, 2vw, 24px);
}

.news-page {
    background: var(--paper);
}

.news-list {
    display: grid;
    gap: 18px;
}

.news-item {
    display: grid;
    grid-template-columns: 220px minmax(0, 1fr) auto;
    gap: 28px;
    align-items: start;
    padding: 30px;
    background: var(--white);
    border: 1px solid var(--line);
}

.news-date {
    color: var(--blue);
    font-weight: 900;
}

.news-item h2 {
    margin: 0 0 12px;
    font-size: clamp(25px, 3vw, 42px);
    line-height: 1.08;
}

.news-item p {
    margin: 0;
    color: rgba(17, 24, 38, 0.7);
}

.news-item a {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    padding: 0 16px;
    color: var(--white);
    background: var(--teal);
    font-weight: 900;
    text-decoration: none;
    white-space: nowrap;
}

.cookie-page {
    max-width: 980px;
    margin: 0 auto;
    padding: 172px 20px 80px;
}

.cookie-page a {
    color: var(--teal);
    font-weight: 800;
}

.cookie-page h1 {
    margin: 18px 0 30px;
    font-size: clamp(40px, 6vw, 72px);
    line-height: 1;
}

.cookie-page h2 {
    margin-top: 34px;
}

.compact-hero {
    background:
        linear-gradient(90deg, rgba(8, 17, 31, 0.92), rgba(8, 17, 31, 0.58)),
        url("../img/puerto%20de%20cartagena.JPG") center / cover;
}

.investor-hero {
    background:
        linear-gradient(90deg, rgba(8, 17, 31, 0.92), rgba(18, 106, 97, 0.56)),
        url("../img/equipo%20trabajando%20para%20entregar%20el%20proyecto%20a%20tiempo.jpg") center / cover;
}

.governance-hero {
    background:
        linear-gradient(90deg, rgba(8, 17, 31, 0.9), rgba(180, 109, 50, 0.34)),
        url("../img/industria.JPG") center / cover;
}

.projects-hero {
    background:
        linear-gradient(90deg, rgba(8, 17, 31, 0.92), rgba(15, 99, 128, 0.5)),
        url("../img/service-3.jpeg") center / cover;
}

.page-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.82fr) minmax(320px, 1fr);
    gap: clamp(32px, 6vw, 86px);
    align-items: start;
}

.info-stack,
.document-list {
    display: grid;
    gap: 16px;
}

.info-stack article,
.document-list article,
.calendar-grid article,
.roadmap-grid article {
    padding: 26px;
    background: var(--white);
    border: 1px solid var(--line);
}

.info-stack span,
.document-list span,
.calendar-grid span,
.roadmap-grid span,
.investor-dashboard span,
.project-index-feature span,
.contact-command span {
    color: var(--copper);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.info-stack strong,
.document-list strong,
.calendar-grid strong,
.roadmap-grid strong {
    display: block;
    margin-top: 10px;
    color: var(--navy);
    font-size: clamp(22px, 2.4vw, 31px);
    line-height: 1.12;
}

.info-stack p,
.document-list p,
.roadmap-grid p {
    margin: 14px 0 0;
    color: rgba(17, 24, 38, 0.68);
}

.info-stack a,
.document-list a,
.investor-dashboard a {
    color: var(--teal);
    font-weight: 900;
    text-decoration: none;
}

.investor-dashboard {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1px;
    padding-top: 0;
    padding-bottom: 0;
    background: var(--ink);
}

.investor-dashboard article {
    min-width: 0;
    min-height: 260px;
    padding: 30px;
    color: var(--white);
    background: var(--ink);
    border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.investor-dashboard article:first-child {
    border-left: 0;
}

.investor-dashboard strong {
    display: block;
    margin: 18px 0 12px;
    font-size: clamp(23px, 2vw, 30px);
    line-height: 1.08;
}

.investor-dashboard p {
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
}

.calendar-section {
    background: var(--mist);
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-top: 42px;
}

.governance-manifesto {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    background: var(--line);
}

.governance-manifesto article {
    min-width: 0;
    min-height: 300px;
    padding: 34px;
    background: var(--white);
}

.governance-manifesto h2 {
    display: block;
    margin: 10px 0 18px;
    color: var(--navy);
    font-size: clamp(30px, 3vw, 40px);
    line-height: 1.03;
}

.governance-manifesto p {
    margin: 0;
    color: rgba(17, 24, 38, 0.68);
}

.project-index {
    background: var(--white);
}

.project-index-feature {
    display: grid;
    grid-template-columns: minmax(0, 1.16fr) minmax(320px, 0.84fr);
    border: 1px solid var(--line);
}

.project-index-feature img {
    width: 100%;
    height: 100%;
    min-height: 500px;
    object-fit: cover;
}

.project-index-feature div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(34px, 5vw, 64px);
    background: var(--paper);
}

.project-index-feature h2 {
    margin: 14px 0 18px;
}

.project-index-feature p {
    color: rgba(17, 24, 38, 0.7);
    font-size: 18px;
}

.project-index-feature a {
    color: var(--teal);
    font-weight: 900;
    text-decoration: none;
}

.project-index-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-top: 18px;
}

.project-index-grid article {
    background: var(--white);
    border: 1px solid var(--line);
}

.project-index-grid img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.project-index-grid h3,
.project-index-grid p {
    margin-left: 22px;
    margin-right: 22px;
}

.project-index-grid h3 {
    margin-top: 22px;
    margin-bottom: 10px;
    font-size: 24px;
    line-height: 1.14;
}

.project-index-grid p {
    margin-top: 0;
    margin-bottom: 26px;
    color: rgba(17, 24, 38, 0.68);
}

.project-hero-detail {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
    min-height: 92vh;
    padding-top: calc(var(--market-height) + 76px);
    background: var(--ink);
    color: var(--white);
}

.project-hero-detail img {
    width: 100%;
    height: 100%;
    min-height: 520px;
    object-fit: cover;
}

.project-hero-detail div {
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(48px, 7vw, 92px);
}

.project-hero-detail h1 {
    margin: 0;
    font-size: clamp(52px, 6.6vw, 88px);
    line-height: 0.94;
}

.project-hero-detail p:not(.eyebrow) {
    max-width: 680px;
    margin: 24px 0 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: clamp(18px, 2vw, 24px);
}

.project-roadmap {
    background: var(--mist);
}

.roadmap-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    margin-top: 42px;
}

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

.roadmap-grid span {
    color: var(--teal);
    font-size: 16px;
}

.newsroom-section {
    background: var(--paper);
}

.newsroom-intro {
    max-width: 860px;
    margin: 0 0 44px;
    color: rgba(17, 24, 38, 0.72);
    font-size: 19px;
}

.contact-command {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1px;
    background: var(--line);
}

.contact-command article {
    min-height: 420px;
    padding: clamp(44px, 6vw, 78px);
    background: var(--ink);
    color: var(--white);
}

.contact-command article:nth-child(2) {
    background: var(--navy);
}

.contact-command h2 {
    max-width: 620px;
    margin: 16px 0;
    font-size: clamp(34px, 4vw, 58px);
    line-height: 1.02;
}

.contact-command p {
    max-width: 620px;
    color: rgba(255, 255, 255, 0.74);
}

.contact-command a {
    display: inline-flex;
    align-items: center;
    min-height: 48px;
    margin-top: 18px;
    padding: 0 20px;
    color: var(--white);
    background: var(--copper);
    font-weight: 900;
    text-decoration: none;
}

.leadership-hero {
    background:
        linear-gradient(90deg, rgba(8, 17, 31, 0.92), rgba(18, 106, 97, 0.48)),
        url("../img/team-2.jpg") center / cover;
}

.press-hero {
    background:
        linear-gradient(90deg, rgba(8, 17, 31, 0.92), rgba(180, 109, 50, 0.42)),
        url("../img/puerto%20de%20cartagena.JPG") center / cover;
}

.legal-hero {
    background:
        linear-gradient(90deg, rgba(8, 17, 31, 0.92), rgba(17, 24, 38, 0.58)),
        url("../img/industria.JPG") center / cover;
}

.leadership-section {
    background: var(--paper);
}

.leadership-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-top: 46px;
}

.leadership-grid article {
    background: var(--white);
    border: 1px solid var(--line);
}

.leadership-grid img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.leadership-grid span,
.advisor-list span,
.download-card span,
.project-status span,
.legal-content h2 {
    color: var(--copper);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.leadership-grid span {
    display: block;
    margin: 24px 24px 0;
}

.leadership-grid h3,
.leadership-grid p {
    margin-left: 24px;
    margin-right: 24px;
}

.leadership-grid h3 {
    margin-top: 12px;
    margin-bottom: 12px;
    color: var(--navy);
    font-size: 26px;
    line-height: 1.08;
}

.leadership-grid p {
    margin-top: 0;
    margin-bottom: 28px;
    color: rgba(17, 24, 38, 0.68);
}

.advisor-panel {
    display: grid;
    grid-template-columns: minmax(0, 0.82fr) minmax(320px, 1fr);
    gap: clamp(32px, 6vw, 86px);
    background: var(--ink);
    color: var(--white);
}

.advisor-panel h2 {
    color: var(--white);
}

.advisor-list {
    display: grid;
    gap: 14px;
}

.advisor-list article {
    padding: 24px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
}

.advisor-list strong {
    display: block;
    margin-top: 10px;
    font-size: 23px;
    line-height: 1.12;
}

.press-kit-section {
    background: var(--white);
}

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

.download-card {
    min-height: 340px;
    padding: 28px;
    background: var(--paper);
    border: 1px solid var(--line);
}

.download-card h2 {
    margin: 18px 0 14px;
    font-size: clamp(28px, 3vw, 42px);
    line-height: 1.04;
}

.download-card p {
    color: rgba(17, 24, 38, 0.68);
}

.download-card a {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    margin-top: 14px;
    padding: 0 16px;
    color: var(--white);
    background: var(--teal);
    font-weight: 900;
    text-decoration: none;
}

.brand-download img {
    width: min(260px, 100%);
    margin: 22px 0;
    padding: 14px;
    background: var(--white);
    border: 1px solid var(--line);
}

.project-status {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1px;
    background: var(--line);
}

.project-status article {
    min-height: 220px;
    padding: 28px;
    background: var(--white);
}

.project-status strong {
    display: block;
    margin: 12px 0;
    color: var(--navy);
    font-size: clamp(23px, 2.2vw, 32px);
    line-height: 1.08;
}

.project-status p {
    margin: 0;
    color: rgba(17, 24, 38, 0.68);
}

.status-pill {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0 11px;
    color: var(--white) !important;
    background: var(--teal);
    font-size: 11px !important;
    letter-spacing: 0;
}

.project-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-top: 42px;
}

.project-metrics article {
    padding: 28px;
    color: var(--white);
    background: var(--navy);
}

.project-metrics span {
    color: var(--copper);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.project-metrics strong {
    display: block;
    margin-top: 12px;
    font-size: 29px;
    line-height: 1.08;
}

.disclaimer-band {
    padding: 24px clamp(20px, 6vw, 76px);
    color: rgba(17, 24, 38, 0.74);
    background: #f3eee8;
    border-top: 1px solid rgba(180, 109, 50, 0.2);
    border-bottom: 1px solid rgba(180, 109, 50, 0.2);
}

.disclaimer-band strong {
    color: var(--ink);
}

.disclaimer-band a {
    color: var(--teal);
    font-weight: 900;
    text-decoration: none;
}

.growth-thesis {
    background: var(--white);
}

.growth-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-top: 44px;
}

.growth-grid article {
    min-height: 300px;
    padding: 30px;
    color: var(--white);
    background: var(--ink);
    border-top: 6px solid var(--copper);
}

.growth-grid article:nth-child(2) {
    background: var(--navy);
}

.growth-grid article:nth-child(3) {
    background: var(--teal);
}

.growth-grid span {
    color: var(--copper);
    font-size: 13px;
    font-weight: 900;
}

.growth-grid strong {
    display: block;
    margin: 22px 0 14px;
    font-size: clamp(28px, 3vw, 42px);
    line-height: 1.03;
}

.growth-grid p {
    margin: 0;
    color: rgba(255, 255, 255, 0.76);
}

.legal-content {
    display: grid;
    gap: 18px;
    max-width: 1040px;
    margin: 0 auto;
}

.legal-content article {
    padding: 30px;
    background: var(--white);
    border: 1px solid var(--line);
}

.legal-content h2 {
    margin: 0 0 12px;
    color: var(--copper);
    font-size: 13px;
}

.legal-content p {
    margin: 0;
    color: rgba(17, 24, 38, 0.72);
    font-size: 18px;
}

.legal-content a {
    color: var(--teal);
    font-weight: 900;
    text-decoration: none;
}

.error-page {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 150px 20px 70px;
    color: var(--white);
    background:
        linear-gradient(90deg, rgba(8, 17, 31, 0.94), rgba(8, 17, 31, 0.54)),
        url("../img/puerto%20de%20cartagena.JPG") center / cover;
}

.error-panel {
    max-width: 760px;
}

.error-panel h1 {
    margin: 0;
    font-size: clamp(70px, 13vw, 150px);
    line-height: 0.9;
}

.error-panel p {
    color: rgba(255, 255, 255, 0.82);
    font-size: 20px;
}

.error-panel a {
    display: inline-flex;
    align-items: center;
    min-height: 48px;
    margin-top: 18px;
    padding: 0 20px;
    color: var(--white);
    background: var(--copper);
    font-weight: 900;
    text-decoration: none;
}

@media (max-width: 1080px) {
    .site-nav {
        position: fixed;
        top: calc(var(--market-height) + 76px);
        left: 0;
        right: 0;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 10px 20px 24px;
        color: var(--ink);
        background: rgba(251, 251, 247, 0.98);
        box-shadow: 0 24px 40px rgba(17, 24, 38, 0.12);
    }

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

    .site-nav a {
        padding: 14px 0;
        border-bottom: 1px solid var(--line);
    }

    .nav-cta {
        justify-content: center;
        margin-top: 14px;
        border-bottom: 0 !important;
    }

    .nav-toggle {
        display: block;
    }

    .market-card {
        position: relative;
        right: auto;
        bottom: auto;
        margin-top: 36px;
    }

    .hero {
        align-items: center;
        min-height: 100vh;
    }

    .signal-strip,
    .project-grid,
    .governance-grid,
    .news-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .intro-grid,
    .brand-signature,
    .visual-proof,
    .project-feature,
    .investors,
    .contact-band,
    .site-footer,
    .news-item {
        grid-template-columns: 1fr;
    }

    .copyright {
        text-align: left;
    }
}

@media (max-width: 680px) {
    :root {
        --market-height: 42px;
    }

    .market-tape {
        grid-template-columns: auto minmax(0, 1fr);
        padding: 0 12px;
    }

    .market-label {
        min-width: 92px;
        gap: 0;
        padding-right: 10px;
    }

    .market-label strong {
        display: none;
    }

    .market-source {
        display: none;
    }

    .site-header {
        min-height: 70px;
        padding: 12px 16px;
    }

    .brand {
        min-width: 0;
    }

    .brand-logo-frame {
        width: 174px;
        height: 42px;
        padding: 8px 10px;
    }

    .brand-meta {
        display: none;
    }

    .site-nav {
        top: calc(var(--market-height) + 70px);
    }

    .hero {
        padding: 148px 18px 44px;
    }

    .hero h1 {
        font-size: 54px;
    }

    .page-hero h1 {
        font-size: 42px;
        line-height: 1.02;
    }

    .button {
        width: 100%;
    }

    .signal-strip,
    .project-grid,
    .governance-grid,
    .news-grid,
    .proof-list {
        grid-template-columns: 1fr;
    }

    .signal-strip div {
        min-height: 108px;
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .section {
        padding: 58px 18px;
    }

    .proof-image {
        min-height: 360px;
    }

    .brand-signature {
        padding: 46px 18px;
    }

    .signature-emblem {
        width: 190px;
    }

    .project-feature img {
        min-height: 300px;
    }

    .news-item {
        gap: 18px;
        padding: 22px;
    }

    .news-item a {
        justify-content: center;
        width: 100%;
    }

    .contact-band {
        padding: 54px 18px;
    }

    .cookie-banner {
        top: auto;
        right: 16px;
        bottom: 16px;
        left: 16px;
        width: auto;
        padding: 20px;
    }

    .cookie-banner.is-visible {
        display: block;
    }

    .cookie-banner p {
        margin: 0 0 10px;
        font-size: 16px;
    }

    .cookie-banner p:first-child {
        display: block;
    }

    .cookie-banner div {
        margin-top: 16px;
    }
}

@media (max-width: 1080px) {
    .page-grid,
    .project-index-feature,
    .project-hero-detail,
    .contact-command {
        grid-template-columns: 1fr;
    }

    .investor-dashboard,
    .calendar-grid,
    .governance-manifesto,
    .project-index-grid,
    .roadmap-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .project-hero-detail {
        min-height: auto;
    }

    .project-hero-detail img {
        min-height: 420px;
    }
}

@media (max-width: 680px) {
    .market-fallback {
        padding-left: 10px;
        font-size: 10px;
    }

    .investor-dashboard,
    .calendar-grid,
    .governance-manifesto,
    .project-index-grid,
    .roadmap-grid {
        grid-template-columns: 1fr;
    }

    .investor-dashboard {
        padding: 0;
    }

    .investor-dashboard article,
    .contact-command article {
        min-height: auto;
        padding: 30px 22px;
    }

    .project-index-feature img,
    .project-hero-detail img {
        min-height: 320px;
    }

    .project-hero-detail {
        padding-top: calc(var(--market-height) + 70px);
    }

    .project-hero-detail div {
        padding: 42px 22px;
    }

    .project-hero-detail h1 {
        font-size: 54px;
    }
}

@media (max-width: 1080px) {
    .leadership-grid,
    .press-kit-grid,
    .project-status,
    .project-metrics,
    .growth-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

@media (max-width: 680px) {
    .leadership-grid,
    .press-kit-grid,
    .project-status,
    .project-metrics,
    .growth-grid {
        grid-template-columns: 1fr;
    }

    .download-card,
    .project-status article,
    .growth-grid article,
    .legal-content article {
        min-height: auto;
        padding: 24px;
    }
}

