:root {
    --bg: #f6efe4;
    --surface: rgba(255, 255, 255, 0.68);
    --surface-strong: #ffffff;
    --ink: #102033;
    --muted: #5a6475;
    --border: rgba(16, 32, 51, 0.1);
    --brand: #0f766e;
    --brand-deep: #114b5f;
    --accent: #d97706;
    --glow: rgba(15, 118, 110, 0.16);
    --shadow: 0 24px 80px rgba(16, 32, 51, 0.12);
    --radius-xl: 28px;
    --radius-lg: 22px;
    --radius-md: 16px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    font-family: "Cairo", Tahoma, sans-serif;
    color: var(--ink);
    background:
        radial-gradient(circle at top left, rgba(15, 118, 110, 0.14), transparent 22rem),
        radial-gradient(circle at top right, rgba(217, 119, 6, 0.14), transparent 20rem),
        linear-gradient(180deg, #fbf6ee 0%, var(--bg) 100%);
}

body::before,
body::after {
    content: "";
    position: fixed;
    inset: auto;
    width: 22rem;
    height: 22rem;
    border-radius: 50%;
    filter: blur(28px);
    pointer-events: none;
    z-index: 0;
}

body::before {
    right: -7rem;
    top: 4rem;
    background: rgba(17, 75, 95, 0.1);
}

body::after {
    left: -8rem;
    bottom: -4rem;
    background: rgba(217, 119, 6, 0.1);
}

.page-shell {
    position: relative;
    z-index: 1;
    max-width: 1180px;
    margin: 0 auto;
    padding: 28px 20px 64px;
}

.topbar,
.hero,
.overview-grid,
.timeline,
.notice-strip {
    animation: rise-in 0.8s ease both;
}

.topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 28px;
}

.brand-lockup {
    display: flex;
    align-items: center;
    gap: 16px;
}

.brand-mark {
    width: 56px;
    height: 56px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
    padding: 8px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(15, 118, 110, 0.16), rgba(17, 75, 95, 0.24));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.55);
}

.brand-mark span {
    border-radius: 10px;
    background: linear-gradient(180deg, var(--brand), var(--brand-deep));
}

.brand-mark span:nth-child(2) {
    transform: translateY(8px);
}

.brand-mark span:nth-child(3) {
    grid-column: 1 / span 2;
    background: linear-gradient(90deg, var(--accent), #f4b464);
}

.eyebrow,
.card-kicker,
.panel-kicker {
    margin: 0;
    font-family: "Outfit", sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.brand-lockup .eyebrow {
    color: var(--brand);
    margin-bottom: 4px;
}

.brand-lockup h1,
.section-heading h3,
.timeline-step h4,
.info-card h3 {
    margin: 0;
}

.brand-lockup h1 {
    font-size: 1.3rem;
}

.ghost-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 18px;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.44);
    color: var(--ink);
    text-decoration: none;
    backdrop-filter: blur(18px);
}

.hero {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.9fr);
    gap: 28px;
    align-items: stretch;
    margin-bottom: 28px;
}

.hero-copy,
.hero-panel,
.info-card,
.timeline,
.notice-strip {
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
}

.hero-copy {
    padding: 36px;
    border-radius: var(--radius-xl);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(255, 250, 244, 0.72));
}

.status-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    margin-bottom: 18px;
    border-radius: 999px;
    background: rgba(15, 118, 110, 0.1);
    color: var(--brand-deep);
    font-weight: 800;
}

.status-pill::before {
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--brand);
    box-shadow: 0 0 0 8px rgba(15, 118, 110, 0.12);
}

.hero-copy h2 {
    margin: 0;
    max-width: 11ch;
    font-size: clamp(2.1rem, 5vw, 4.4rem);
    line-height: 1.08;
}

.hero-copy p {
    margin: 18px 0 0;
    max-width: 64ch;
    font-size: 1.04rem;
    line-height: 2;
    color: var(--muted);
}

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

.primary-action,
.secondary-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 0 22px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 800;
}

.primary-action {
    background: linear-gradient(135deg, var(--brand), var(--brand-deep));
    color: #fff;
    box-shadow: 0 18px 36px var(--glow);
}

.secondary-action {
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.7);
    color: var(--ink);
}

.hero-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin: 30px 0 0;
    padding: 0;
    list-style: none;
}

.hero-metrics li {
    padding: 18px;
    border-radius: 22px;
    background: rgba(16, 32, 51, 0.04);
    border: 1px solid rgba(16, 32, 51, 0.06);
}

.hero-metrics strong,
.panel-row strong {
    display: block;
    margin-bottom: 8px;
    font-size: 1rem;
}

.hero-metrics span,
.panel-row span,
.panel-note,
.timeline-step p,
.notice-strip p,
.info-card p {
    color: var(--muted);
    line-height: 1.9;
}

.hero-panel {
    display: grid;
    gap: 16px;
    padding: 18px;
    border-radius: var(--radius-xl);
    background: linear-gradient(160deg, rgba(17, 75, 95, 0.92), rgba(10, 17, 32, 0.94));
    color: #fff;
}

.panel-card {
    padding: 22px;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.pulse-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.07));
}

.glass-card {
    background: rgba(255, 255, 255, 0.07);
}

.panel-kicker {
    color: #bce8e1;
    margin-bottom: 14px;
}

.panel-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.panel-row:last-child {
    border-bottom: 0;
}

.panel-row span,
.panel-note {
    color: rgba(255, 255, 255, 0.76);
}

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

.info-card {
    padding: 26px;
    border-radius: var(--radius-lg);
    background: var(--surface);
}

.accent-sand {
    background:
        linear-gradient(140deg, rgba(255, 255, 255, 0.78), rgba(249, 236, 214, 0.95));
}

.accent-slate {
    background:
        linear-gradient(140deg, rgba(255, 255, 255, 0.82), rgba(224, 241, 244, 0.95));
}

.accent-mint {
    background:
        linear-gradient(140deg, rgba(255, 255, 255, 0.8), rgba(225, 244, 234, 0.95));
}

.card-kicker {
    margin-bottom: 12px;
    color: var(--brand);
}

.info-card h3 {
    font-size: 1.4rem;
    line-height: 1.45;
    margin-bottom: 12px;
}

.timeline {
    padding: 30px;
    border-radius: var(--radius-xl);
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.84), rgba(255, 255, 255, 0.62));
    margin-bottom: 22px;
}

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

.section-heading .eyebrow {
    color: var(--brand);
}

.section-heading h3 {
    font-size: clamp(1.6rem, 3vw, 2.4rem);
}

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

.timeline-step {
    position: relative;
    overflow: hidden;
    padding: 22px;
    border-radius: var(--radius-lg);
    background: var(--surface-strong);
    border: 1px solid rgba(16, 32, 51, 0.08);
}

.timeline-step::after {
    content: "";
    position: absolute;
    inset: auto 18px 0;
    height: 4px;
    border-radius: 999px 999px 0 0;
    background: rgba(16, 32, 51, 0.08);
}

.timeline-step.is-done::after {
    background: linear-gradient(90deg, var(--brand), #29b3a6);
}

.timeline-step.is-active::after {
    background: linear-gradient(90deg, var(--accent), #f1b65b);
}

.step-index {
    display: inline-flex;
    min-width: 52px;
    margin-bottom: 16px;
    font-family: "Outfit", sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--brand-deep);
}

.timeline-step h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.notice-strip {
    padding: 22px 26px;
    border-radius: 22px;
    background: linear-gradient(110deg, rgba(17, 75, 95, 0.08), rgba(217, 119, 6, 0.12));
}

.notice-strip p {
    margin: 0;
    font-weight: 700;
    color: var(--brand-deep);
}

@keyframes rise-in {
    from {
        opacity: 0;
        transform: translateY(18px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 1024px) {
    .hero,
    .overview-grid,
    .timeline-steps {
        grid-template-columns: 1fr;
    }

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

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

@media (max-width: 640px) {
    .page-shell {
        padding: 18px 14px 48px;
    }

    .topbar,
    .section-heading {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-copy,
    .hero-panel,
    .timeline,
    .info-card {
        padding: 22px;
    }

    .brand-lockup {
        align-items: flex-start;
    }

    .brand-mark {
        width: 48px;
        height: 48px;
    }

    .hero-copy h2 {
        font-size: 2.2rem;
    }

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