/* ============================================================
   Innoware 25 — anniversary landing
   Brand: navy base · cyan / orange / gold (from the 25 logo)
   ============================================================ */

:root {
    --navy: #18233f;
    --navy-2: #0f1830;
    --navy-3: #243156;
    --cyan: #29b4d6;
    --cyan-lt: #7fd4e8;
    --orange: #f0772f;
    --gold: #d3b58a;
    --charcoal: #463f3a;
    --ink: #1b2440;
    --muted: #69728c;
    --paper: #ffffff;
    --mist: #f4f7fb;
    --mist-2: #eaf0f7;
    --line: #e4eaf2;

    --maxw: 1200px;
    --display: "Montserrat", system-ui, sans-serif;
    --body: "Manrope", system-ui, sans-serif;

    --shadow-sm: 0 2px 10px rgba(24, 35, 63, 0.06);
    --shadow-md: 0 14px 40px rgba(24, 35, 63, 0.1);
    --shadow-lg: 0 30px 70px rgba(15, 24, 48, 0.22);

    --accent: var(--cyan);
}

* {
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    margin: 0;
    font-family: var(--body);
    color: var(--ink);
    background: var(--paper);
    -webkit-font-smoothing: antialiased;
    font-size: 18px;
    line-height: 1.6;
}
img {
    display: block;
    max-width: 100%;
}
a {
    color: inherit;
}
h1,
h2,
h3,
h4 {
    font-family: var(--display);
    font-weight: 800;
    line-height: 1.08;
    margin: 0;
    letter-spacing: -0.01em;
}
.wrap {
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 0 32px;
}
.eyebrow {
    font-family: var(--display);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--cyan);
}

/* ── NAV ─────────────────────────────────────────────── */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 32px;
    transition: 0.3s ease;
}
.nav.scrolled {
    backdrop-filter: blur(16px);
    background: #00000082;
    box-shadow:
        0 1px 0 #000000,
        0 8px 30px rgba(24, 35, 63, 0.06);
}
.nav__logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}
.nav__logo img {
    height: 125px;
    width: auto;
    transition: 0.3s;
}
.nav__links {
    display: flex;
    gap: 30px;
    align-items: center;
}
.nav__links a {
    text-decoration: none;
    font-weight: 900;
    font-size: 19px;
    color: #fff;
    opacity: 0.78;
    transition: 0.2s;
    position: relative;
    padding: 4px 0;
}
.nav.is-light .nav__links a,
.nav.is-light .nav__cta--ghost {
    color: #fff;
}
.nav__links a:hover {
    opacity: 1;
}
.nav__links a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -2px;
    height: 2px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: 0.25s;
}
.nav__links a:hover::after {
    transform: scaleX(1);
}
.nav__cta {
    font-family: var(--display);
    font-weight: 700;
    font-size: 19px;
    text-decoration: none;
    padding: 11px 50px;
    border-radius: 100px;
    background: var(--orange);
    color: #fff;
    transition: 0.2s;
    box-shadow: 0 8px 22px rgba(240, 119, 47, 0.32);
}
.nav__cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(240, 119, 47, 0.42);
}
.nav__burger {
    display: none;
}

/* ── HERO ────────────────────────────────────────────── */
.hero {
    position: relative;
    min-height: 100svh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: radial-gradient(
        130% 120% at 80% -10%,
        #20305c 0%,
        var(--navy) 42%,
        var(--navy-2) 100%
    );
    color: #fff;
}
.hero__grid {
    position: absolute;
    inset: 0;
    opacity: 0.5;
    background-image:
        linear-gradient(rgba(127, 212, 232, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(127, 212, 232, 0.06) 1px, transparent 1px);
    background-size: 64px 64px;
    -webkit-mask-image: radial-gradient(
        120% 90% at 70% 30%,
        #000,
        transparent 75%
    );
    mask-image: radial-gradient(120% 90% at 70% 30%, #000, transparent 75%);
}
.hero__inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 48px;
    align-items: center;
    width: 100%;
}
.hero__kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    border-radius: 100px;
    border: 1px solid rgba(127, 212, 232, 0.4);
    color: var(--cyan-lt);
    font-weight: 700;
    font-family: var(--display);
    font-size: 13px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    margin-bottom: 26px;
}
.hero__kicker .dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--orange);
}
.hero h1 {
    font-size: clamp(46px, 6.6vw, 92px);
    letter-spacing: -0.02em;
}
.hero h1 .grad {
    background: linear-gradient(
        95deg,
        var(--cyan) 0%,
        var(--cyan-lt) 35%,
        var(--gold) 70%,
        var(--orange) 100%
    );
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.hero__sub {
    margin: 26px 0 0;
    font-size: clamp(18px, 1.5vw, 22px);
    color: #c7d2e8;
    max-width: 30ch;
    line-height: 1.55;
}
.hero__since {
    margin-top: 14px;
    font-weight: 700;
    color: var(--gold);
    font-family: var(--display);
    letter-spacing: 0.04em;
}
.hero__cta {
    display: flex;
    gap: 16px;
    margin-top: 38px;
    flex-wrap: wrap;
}
.btn {
    font-family: var(--display);
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 100px;
    transition: 0.2s;
    cursor: pointer;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}
.btn--primary {
    background: var(--orange);
    color: #fff;
    box-shadow: 0 12px 30px rgba(240, 119, 47, 0.36);
}
.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 38px rgba(240, 119, 47, 0.48);
}
.btn--ghost {
    background: transparent;
    color: #fff;
    border: 1.5px solid rgba(255, 255, 255, 0.35);
}
.btn--ghost:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.08);
}

.hero__logo {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}
.hero__logo img {
    width: min(440px, 90%);
    filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.4));
    animation: floaty 7s ease-in-out infinite;
}
@keyframes floaty {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-16px);
    }
}
.hero__halo {
    position: absolute;
    width: 120%;
    aspect-ratio: 1;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(41, 180, 214, 0.28),
        transparent 60%
    );
    filter: blur(20px);
    animation: pulse 6s ease-in-out infinite;
}
@keyframes pulse {
    0%,
    100% {
        transform: scale(0.95);
        opacity: 0.7;
    }
    50% {
        transform: scale(1.05);
        opacity: 1;
    }
}

.scrolldown {
    position: absolute;
    left: 50%;
    bottom: 26px;
    transform: translateX(-50%);
    z-index: 3;
    color: #9fb0d0;
    font-size: 12px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 700;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}
.scrolldown span {
    width: 1px;
    height: 34px;
    background: linear-gradient(var(--cyan), transparent);
    animation: drop 1.8s ease-in-out infinite;
}
@keyframes drop {
    0% {
        transform: scaleY(0);
        transform-origin: top;
    }
    50% {
        transform: scaleY(1);
        transform-origin: top;
    }
    51% {
        transform-origin: bottom;
    }
    100% {
        transform: scaleY(0);
        transform-origin: bottom;
    }
}

/* ── STATS ───────────────────────────────────────────── */
.stats {
    background: var(--navy-2);
    color: #fff;
    padding: 54px 0;
}
.stats__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.stat {
    text-align: center;
    padding: 8px 12px;
    position: relative;
}
.stat:not(:last-child)::after {
    content: "";
    position: absolute;
    right: -10px;
    top: 14%;
    height: 72%;
    width: 1px;
    background: rgba(255, 255, 255, 0.12);
}
.stat__num {
    font-family: var(--display);
    font-weight: 800;
    font-size: clamp(34px, 4vw, 40px);
    background: linear-gradient(
        120deg,
        var(--cyan-lt),
        var(--cyan) 60%,
        var(--gold)
    );
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1;
}
.stat__label {
    margin-top: 10px;
    font-weight: 600;
    color: #cdd7ec;
    font-size: 15px;
}
.stat__note {
    margin-top: 4px;
    font-size: 12.5px;
    color: #8493b5;
}

/* ── SECTION HEADERS ─────────────────────────────────── */
.section {
    padding: 110px 0;
}
.section__head {
    max-width: 750px;
    margin: 0 auto 64px;
    text-align: center;
}
.section__head h2 {
    font-size: clamp(32px, 4.2vw, 52px);
    margin-top: 14px;
    color: var(--ink);
}
.section__head p {
    color: var(--muted);
    font-size: 19px;
    margin-top: 18px;
}

/* ── TIMELINE ────────────────────────────────────────── */
.timeline-section {
    position: relative;
    color: #fff;
    overflow: hidden;
}
.timeline-section .tl-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}
.timeline-section .tl-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(15, 24, 48, 0.93),
        rgba(18, 27, 52, 0.88) 40%,
        rgba(15, 24, 48, 0.95)
    );
}
.timeline-section .wrap {
    position: relative;
    z-index: 2;
}
.timeline-section .section__head h2 {
    color: #fff;
}
.timeline-section .section__head p {
    color: #b9c5dd;
}

.tl {
    position: relative;
    max-width: 980px;
    margin: 0 auto;
    padding: 20px 0;
}
.tl__spine {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    transform: translateX(-50%);
    background: linear-gradient(var(--cyan), var(--gold) 50%, var(--orange));
    opacity: 0.5;
}
.tl__progress {
    position: absolute;
    left: 50%;
    top: 0;
    width: 3px;
    transform: translateX(-50%);
    background: linear-gradient(var(--cyan), var(--cyan-lt));
    height: 0;
    box-shadow: 0 0 16px rgba(41, 180, 214, 0.7);
    border-radius: 3px;
}

.tl-item {
    position: relative;
    width: 50%;
    padding: 18px 48px;
    opacity: 0;
    transform: translateY(28px);
    transition: 0.6s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.tl-item.in {
    opacity: 1;
    transform: none;
}
.tl-item--left {
    left: 0;
    text-align: right;
}
.tl-item--right {
    left: 50%;
    text-align: left;
}
.tl-node {
    position: absolute;
    top: 30px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--navy);
    border: 3px solid var(--cyan);
    z-index: 3;
    box-shadow: 0 0 0 5px rgba(41, 180, 214, 0.16);
}
.tl-item--left .tl-node {
    right: -9px;
}
.tl-item--right .tl-node {
    left: -9px;
}

.tl-card {
    display: inline-block;
    text-align: left;
    background: rgba(255, 255, 255, 0.055);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 18px;
    padding: 22px 24px;
    backdrop-filter: blur(8px);
    transition: 0.3s;
    max-width: 420px;
}
.tl-card:hover {
    background: rgba(255, 255, 255, 0.09);
    border-color: rgba(127, 212, 232, 0.5);
    transform: translateY(-3px);
}
.tl-year {
    font-family: var(--display);
    font-weight: 800;
    font-size: 30px;
    line-height: 1;
    background: linear-gradient(120deg, var(--cyan-lt), var(--gold));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 12px;
}
.tl-events {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.tl-events li {
    position: relative;
    padding-left: 20px;
    font-size: 15.5px;
    color: #dce4f2;
    line-height: 1.5;
}
.tl-events li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 9px;
    width: 7px;
    height: 7px;
    border-radius: 2px;
    background: var(--orange);
    transform: rotate(45deg);
}

/* milestone (2026) */
.tl-item--milestone {
    width: 100%;
    left: 0 !important;
    text-align: center;
    padding: 30px 0 10px;
}
.tl-item--milestone .tl-node {
    left: 50%;
    transform: translateX(-50%);
    width: 26px;
    height: 26px;
    border-color: var(--orange);
    background: var(--orange);
    box-shadow: 0 0 0 7px rgba(240, 119, 47, 0.22);
}
.tl-mile {
    display: inline-block;
    margin-top: 36px;
    padding: 30px 46px;
    border-radius: 24px;
    background: linear-gradient(
        120deg,
        rgba(41, 180, 214, 0.18),
        rgba(240, 119, 47, 0.18)
    );
    border: 1px solid rgba(255, 255, 255, 0.2);
}
.tl-mile .tl-year {
    font-size: 56px;
    margin-bottom: 6px;
}
.tl-mile p {
    margin: 0;
    font-family: var(--display);
    font-weight: 700;
    font-size: 22px;
    color: #fff;
}

/* ── GREETINGS ───────────────────────────────────────── */
.greet-section {
    background: var(--mist);
}
.tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: -26px 0 50px;
}
.tab {
    font-family: var(--display);
    font-weight: 700;
    font-size: 15px;
    padding: 12px 26px;
    border-radius: 100px;
    border: 1.5px solid var(--line);
    background: #fff;
    color: var(--ink);
    cursor: pointer;
    transition: 0.2s;
}
.tab:hover {
    border-color: var(--cyan);
}
.tab.active {
    background: #f0772f;
    color: #fff;
    border-color: #f3debb;
    box-shadow: var(--shadow-md);
}

.greet-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 26px;
}
.greet-grid.single {
    grid-template-columns: repeat(3, 1fr);
}
.gcard {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 28px;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: 0.3s;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(22px);
}
.gcard.in {
    opacity: 1;
    transform: none;
}
.gcard:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
    border-color: #d4def0;
}
.gcard::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 5px;
    background: linear-gradient(var(--cyan), var(--orange));
    opacity: 0;
    transition: 0.3s;
}
.gcard:hover::before {
    opacity: 1;
}
.gcard__quote {
    font-size: 38px;
    font-family: var(--display);
    font-weight: 800;
    color: var(--cyan);
    line-height: 0.6;
    height: 18px;
    opacity: 0.5;
}
.gcard__title {
    font-family: var(--display);
    font-weight: 800;
    font-size: 20px;
    color: var(--ink);
}
.gcard__text {
    font-size: 16px;
    color: #48506a;
    line-height: 1.6;
    flex: 1;
}
.gcard__person {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 16px;
    border-top: 1px solid var(--line);
}
.gcard__avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 2px solid #fff;
    box-shadow: 0 0 0 2px var(--cyan-lt);
    background: var(--mist-2);
}
.gcard__avatar--initials {
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--display);
    font-weight: 800;
    font-size: 20px;
    color: #fff;
    background: linear-gradient(135deg, var(--cyan), var(--navy-3));
}
.gcard__name {
    font-family: var(--display);
    font-weight: 700;
    font-size: 17px;
    color: var(--ink);
}
.gcard__name a {
    color: var(--cyan);
    text-decoration: none;
}
.gcard__name a:hover {
    text-decoration: underline;
}
.gcard__role {
    font-size: 13.5px;
    color: var(--muted);
    margin-top: 2px;
}

/* video card */
.gcard--video .gvideo {
    position: relative;
    border-radius: 14px;
    aspect-ratio: 16/10;
    overflow: hidden;
    background: linear-gradient(135deg, var(--navy), var(--navy-3));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 14px;
    border: 1px dashed rgba(255, 255, 255, 0.25);
}
.gvideo__play {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.14);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.25s;
}
.gcard--video:hover .gvideo__play {
    background: var(--orange);
    transform: scale(1.08);
}
.gvideo__play svg {
    width: 24px;
    height: 24px;
    fill: #fff;
    margin-left: 3px;
}
.gvideo__hint {
    color: #9fb0d0;
    font-size: 12.5px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 700;
}

/* ── CLOSING ─────────────────────────────────────────── */
.closing {
    position: relative;
    background: radial-gradient(
        120% 120% at 50% -20%,
        #21305b,
        var(--navy) 55%,
        var(--navy-2)
    );
    color: #fff;
    text-align: center;
    overflow: hidden;
    padding: 120px 0;
}
.closing__logo {
    width: 160px;
    margin: 0 auto 30px;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.4));
}
.closing h2 {
    font-size: clamp(32px, 4.6vw, 58px);
}
.closing h2 .grad {
    background: linear-gradient(
        95deg,
        var(--cyan),
        var(--gold) 60%,
        var(--orange)
    );
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.closing p {
    max-width: 54ch;
    margin: 22px auto 0;
    color: #c7d2e8;
    font-size: 19px;
}
.closing .btn {
    margin-top: 38px;
}
.closing__arc {
    position: absolute;
    border-radius: 50%;
    border-style: solid;
    border-color: transparent;
    opacity: 0.5;
}
.arc1 {
    width: 680px;
    height: 680px;
    border-width: 3px;
    border-top-color: var(--cyan);
    border-right-color: var(--cyan);
    left: -200px;
    top: -260px;
}
.arc2 {
    width: 520px;
    height: 520px;
    border-width: 3px;
    border-bottom-color: var(--orange);
    border-left-color: var(--orange);
    right: -160px;
    bottom: -200px;
}

/* ── FOOTER ──────────────────────────────────────────── */
.footer {
    background: var(--navy-2);
    color: #8c98b8;
    padding: 34px 0;
    font-size: 14px;
}
.footer .wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}
.footer a {
    color: var(--cyan-lt);
    text-decoration: none;
}
.footer img {
    height: 40px;
}

/* ── RESPONSIVE ──────────────────────────────────────── */
@media (max-width: 900px) {
    .nav__logo img {
        height: 80px;
    }

    .hero {
        min-height: auto;
        align-items: flex-start;
        padding: 120px 0 56px;
    }
    .scrolldown {
        display: none;
    }
    .hero__inner {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 24px;
    }
    .hero__logo {
        order: -1;
    }
    .hero__logo img {
        width: min(260px, 62%);
    }
    .hero h1 {
        font-size: clamp(38px, 10vw, 60px);
    }
    .hero__sub,
    .hero__kicker {
        margin-left: auto;
        margin-right: auto;
    }
    .hero__cta {
        justify-content: center;
    }
    .stats__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px 12px;
    }
    .stat:nth-child(2)::after {
        display: none;
    }
    .nav__links {
        display: none;
    }
    .greet-grid,
    .greet-grid.single {
        grid-template-columns: 1fr;
    }
    .tl__spine,
    .tl__progress {
        left: 22px;
    }
    .tl-item,
    .tl-item--left,
    .tl-item--right {
        width: 100%;
        left: 0 !important;
        text-align: left;
        padding: 14px 0 14px 52px;
    }
    .tl-item--left .tl-node,
    .tl-item--right .tl-node {
        left: 14px;
        right: auto;
    }
    .tl-card {
        max-width: none;
    }

    /* milestone (2026) aligned to the left spine like the other years */
    .tl-item--milestone {
        text-align: left;
        padding: 14px 0 14px 52px;
    }
    .tl-item--milestone .tl-node {
        left: 9px;
        right: auto;
        transform: none;
        top: 56px;
    }
    .tl-mile {
        display: block;
        margin-top: 0;
        padding: 24px 26px;
    }
    .tl-mile .tl-year {
        font-size: 40px;
    }
    .tl-mile p {
        font-size: 18px;
    }
}
@media (max-width: 560px) {
    body {
        font-size: 16px;
    }
    .wrap {
        padding: 0 20px;
    }
    .section {
        padding: 72px 0;
    }
    .nav__cta {
        padding: 9px 16px;
        font-size: 13px;
    }
}
