*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --tvl-lagoon: #123f4d;
    --tvl-tide: #1f6a7d;
    --tvl-berry: #c8385c;
    --tvl-mark: #0f2129;
    --tvl-drift: #5c7580;
    --tvl-thread: #dee7ea;
    --tvl-clear: #fafdfd;
    --tvl-shoal: #e9f1f3;
    --tvl-tile: #ffffff;
    --tvl-abyss: #08161c;
    --tvl-cut-ui: "Gill Sans MT", "Gill Sans", Tahoma, sans-serif;
    --tvl-cut-serif: "Century Schoolbook", Century, "Times New Roman", serif;
    --tvl-curl-s: 7px;
    --tvl-curl-m: 13px;
    --tvl-curl-l: 23px;
    --tvl-mist-1: 0 8px 21px rgba(15, 33, 41, .08);
    --tvl-mist-2: 0 16px 41px rgba(15, 33, 41, .14);
    --tvl-mist-3: 0 27px 62px rgba(8, 22, 28, .21);
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--tvl-cut-serif);
    background:
        radial-gradient(circle at 78% 82%, rgba(200, 56, 92, .11), transparent 31%),
        linear-gradient(180deg, #fafdfd 0%, #e9f1f3 100%);
    color: var(--tvl-mark);
    line-height: 1.74;
    font-size: 16px;
}

a {
    color: var(--tvl-lagoon);
    text-decoration: none;
    transition: color .2s ease;
}
a:hover { color: var(--tvl-berry); }

.tvl-tip {
    position: sticky;
    top: 0;
    z-index: 20;
    padding: 18px 20px;
    background: rgba(250, 253, 253, .92);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(18, 63, 77, .17);
}
.tvl-tip__hold {
    max-width: 1160px;
    margin: 0 auto;
    text-align: center;
}
.tvl-tip__name {
    font-family: var(--tvl-cut-ui);
    font-size: 21px;
    letter-spacing: .21em;
    text-transform: uppercase;
    font-weight: 900;
    color: var(--tvl-lagoon);
}

.tvl-front {
    padding: 74px 20px 46px;
    text-align: center;
}
.tvl-front__ribbon {
    display: inline-block;
    padding: 6px 20px;
    border-radius: 999px;
    background: linear-gradient(135deg, #c8385c, #9c2745);
    color: #fff2f5;
    font-family: var(--tvl-cut-ui);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .17em;
    text-transform: uppercase;
    margin-bottom: 18px;
}
.tvl-front__title {
    max-width: 830px;
    margin: 0 auto 14px;
    font-size: clamp(28px, 5vw, 51px);
    line-height: 1.12;
    color: var(--tvl-lagoon);
}
.tvl-front__lead {
    max-width: 650px;
    margin: 0 auto;
    color: var(--tvl-drift);
    font-size: 17px;
    line-height: 1.8;
}

.tvl-hold {
    max-width: 985px;
    margin: 0 auto;
    padding: 0 20px 86px;
}
.tvl-note {
    background: linear-gradient(180deg, rgba(255,255,255,.97), rgba(250,253,253,.99));
    border: 1px solid rgba(18, 63, 77, .13);
    border-radius: var(--tvl-curl-l);
    box-shadow: var(--tvl-mist-2);
    padding: 52px 56px;
}
@media (max-width: 740px) {
    .tvl-note { padding: 30px 22px; border-radius: 17px; }
    .tvl-front { padding-top: 56px; }
}

.tvl-note h2 {
    font-size: clamp(21px, 3vw, 30px);
    line-height: 1.2;
    color: var(--tvl-lagoon);
    margin: 36px 0 14px;
}
.tvl-note h2::after {
    content: "";
    display: block;
    width: 44px;
    height: 3px;
    margin-top: 9px;
    border-radius: 2px;
    background: var(--tvl-berry);
}
.tvl-note h2:first-child { margin-top: 0; }
.tvl-note h3 {
    font-family: var(--tvl-cut-ui);
    font-size: 16px;
    letter-spacing: .04em;
    line-height: 1.4;
    color: var(--tvl-mark);
    margin: 22px 0 10px;
}
.tvl-note p {
    color: var(--tvl-drift);
    margin-bottom: 15px;
}
.tvl-note ul,
.tvl-note ol {
    padding-left: 22px;
    margin: 0 0 16px;
    color: var(--tvl-drift);
}
.tvl-note li { margin-bottom: 7px; }
.tvl-note strong { color: var(--tvl-mark); }

.tvl-cardline {
    margin: 0 0 30px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.tvl-cardline__chip {
    flex: 1 1 210px;
    padding: 16px 18px;
    background: var(--tvl-shoal);
    border-radius: 999px 14px 14px 999px;
    border: 1px solid var(--tvl-thread);
}
.tvl-cardline__key {
    font-family: var(--tvl-cut-ui);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--tvl-berry);
    margin-bottom: 5px;
}
.tvl-cardline__val {
    font-size: 14px;
    line-height: 1.62;
    color: var(--tvl-drift);
}

.tvl-remark {
    margin: 26px 0;
    padding: 20px 24px;
    border-radius: var(--tvl-curl-m);
    background: #fdeef2;
    border-left: 4px solid var(--tvl-berry);
}
.tvl-remark p { margin: 0; color: var(--tvl-mark); }

.tvl-sheettable {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin: 20px 0 26px;
    border: 1px solid var(--tvl-thread);
    border-radius: var(--tvl-curl-m);
    overflow: hidden;
    background: var(--tvl-tile);
}
.tvl-sheettable th {
    background: linear-gradient(135deg, var(--tvl-lagoon), var(--tvl-tide));
    color: #eaf6f8;
    text-align: left;
    padding: 14px 16px;
    font-family: var(--tvl-cut-ui);
    font-size: 13px;
    letter-spacing: .06em;
    text-transform: uppercase;
}
.tvl-sheettable td {
    padding: 13px 16px;
    border-bottom: 1px solid var(--tvl-thread);
    color: var(--tvl-drift);
}
.tvl-sheettable tr:nth-child(even) td { background: #f4f9fa; }
.tvl-sheettable tr:last-child td { border-bottom: none; }

.tvl-route {
    margin: 26px 0;
    display: grid;
    gap: 0;
}
.tvl-route__stop {
    display: grid;
    grid-template-columns: 20px 1fr;
    gap: 18px;
    padding: 0 0 22px;
    position: relative;
}
.tvl-route__stop:last-child { padding-bottom: 0; }
.tvl-route__bead {
    position: relative;
    width: 20px;
}
.tvl-route__bead::before {
    content: "";
    position: absolute;
    top: 5px;
    left: 3px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--tvl-berry);
    box-shadow: 0 0 0 4px rgba(200, 56, 92, .16);
}
.tvl-route__bead::after {
    content: "";
    position: absolute;
    top: 24px;
    bottom: -4px;
    left: 9px;
    width: 2px;
    background: var(--tvl-thread);
}
.tvl-route__stop:last-child .tvl-route__bead::after { display: none; }
.tvl-route__head {
    font-family: var(--tvl-cut-ui);
    font-size: 15px;
    font-weight: 900;
    color: var(--tvl-mark);
    margin-bottom: 4px;
}
.tvl-route__text {
    font-size: 15px;
    color: var(--tvl-drift);
}

.tvl-fan {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(205px, 1fr));
    gap: 14px;
    margin: 26px 0;
}
.tvl-fan__leaf {
    padding: 20px 18px;
    background: var(--tvl-tile);
    border: 1px solid var(--tvl-thread);
    border-radius: var(--tvl-curl-m);
    box-shadow: var(--tvl-mist-1);
}
.tvl-fan__head {
    font-family: var(--tvl-cut-ui);
    font-size: 14px;
    font-weight: 900;
    color: var(--tvl-lagoon);
    margin-bottom: 6px;
}
.tvl-fan__text {
    font-size: 14px;
    line-height: 1.68;
    color: var(--tvl-drift);
}

.tvl-under {
    margin-top: 40px;
    background: var(--tvl-shoal);
    color: var(--tvl-drift);
    padding: 20px 20px 16px;
    font-family: var(--tvl-cut-ui);
    text-align: center;
    border-top: 1px solid var(--tvl-thread);
}
.tvl-under__hold {
    max-width: 900px;
    margin: 0 auto;
}
.tvl-under__row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px 20px;
    margin-bottom: 10px;
}
.tvl-under__row a {
    color: var(--tvl-tide);
    font-size: 11px;
}
.tvl-under__row a:hover { color: var(--tvl-berry); }
.tvl-under__seal {
    font-size: 11px;
    color: var(--tvl-drift);
}
