﻿:root{
    --bg: #f7fdff;
    --text: #102033;
    --heading: #12384a;
    --muted: #607386;
    --brand: #0497c7;
    --brand2: #22c3df;
    --brand3: #0f6ea6;
    --line: #dceef5;
    --card: rgba(255,255,255,.74);
    --shadow: 0 24px 70px rgba(3,91,130,.13);
    --radius: 28px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Inter, "Noto Sans TC", "Microsoft JhengHei", system-ui, sans-serif;
    color: var(--text);
    background: linear-gradient(180deg, #f7fdff, #eefaff 48%, #fff);
    overflow-x: hidden;
}

body.is-loading {
    overflow: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    width: min(1180px, calc(100% - 44px));
    margin: auto;
}

h1 {
    /*font-size: clamp(44px,6.2vw,82px);
        line-height: 1.03;*/
    font-size: clamp(44px,6.2vw,62px);
    line-height: 1.1;
    margin: 22px 0 20px;
    letter-spacing: -.06em;
}

h3,
h4,
h5,
h6,
b,
strong {
    font-weight: 600;
}

    h1 span {
        color: transparent;
        background: linear-gradient(120deg, #01658d, #0ab5db 55%, #0d81c5);
        -webkit-background-clip: text;
        background-clip: text;
    }

section {
    padding: 95px 0 0;
}

footer {
    padding: 68px 0 0;
    color: #678090;
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: 1s ease;
}

    .reveal.show {
        opacity: 1;
        transform: none;
    }

@keyframes flowbar {
    0%,100% {
        width: 42%;
    }

    50% {
        width: 96%;
    }
}

@keyframes float {
    50% {
        transform: translateY(-16px);
    }
}

@keyframes softProgress {
    50% {
        width: 86%;
    }
}

@keyframes preloaderSvgWave {
    0% {
        transform: translate3d(-24px, 0, 0);
    }

    50% {
        transform: translate3d(0, 2px, 0);
    }

    100% {
        transform: translate3d(24px, 0, 0);
    }
}

@keyframes preloaderTitleLine {
    0% {
        width: 0;
        opacity: 0;
    }

    100% {
        width: 52%;
        opacity: 1;
    }
}
