.ts {
--ts-paper:      #f7f5f0;
--ts-surface:    #ffffff;
--ts-ink:        #0a1628;
--ts-ink-2:      #46505e;
--ts-muted:      #67707e;
--ts-line:       #e7e2d8;
--ts-line-2:     #dcd6c9;
--ts-brand:      #0f4da8;
--ts-brand-dark: #0c3d86;
--ts-brand-tint: #eef3fb;
--ts-steel:      #35608f;
--ts-electric:   #6aa9ec;
--ts-soft:       #a9d0f8;
--ts-dark:       #0a1628; --ts-ice:        #8c95a2;
--ts-ice-dark:   #5c6778;
--ts-el-dark:    #4f93e0;
--ts-on-dark:    #e6ebf2;
--ts-on-dark-2:  rgba(226, 232, 240, 0.64);
--ts-dark-line:  rgba(255, 255, 255, 0.12);
--ts-ease:       cubic-bezier(0.22, 1, 0.36, 1);
--ts-font:       'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
--ts-max:        1200px;
--ts-sticky:     96px;
font-family: var(--ts-font);
color: var(--ts-ink);
background: var(--ts-paper);
line-height: 1.6;
font-feature-settings: 'cv11', 'ss01';
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
.ts *,
.ts *::before,
.ts *::after {
box-sizing: border-box;
}
.ts [hidden] {
display: none !important;
}
.ts h1,
.ts h2,
.ts h3 {
font-family: var(--ts-font);
letter-spacing: -0.02em;
text-wrap: balance;
margin: 0;
}
.ts p {
margin: 0;
}
.ts-wrap {
max-width: var(--ts-max);
margin: 0 auto;
padding-inline: 24px;
}
.ts-sr {
position: absolute !important;
width: 1px;
height: 1px;
overflow: hidden;
clip: rect(0 0 0 0);
clip-path: inset(50%);
white-space: nowrap;
}
.ts .nw-icon {
width: 18px;
height: 18px;
flex: 0 0 auto;
} .ts-hero {
background: var(--ts-dark);
color: #fff;
padding: clamp(72px, 9vw, 116px) 0 0;
}
.ts-eyebrow {
display: inline-flex;
align-items: center;
gap: 10px;
font-size: 0.72rem;
font-weight: 600;
letter-spacing: 0.24em;
color: var(--ts-electric);
margin-bottom: 22px;
}
.ts-eyebrow .nw-icon {
width: 15px;
height: 15px;
} .ts .ts-hero .ts-wrap h1.ts-hero__title {
font-size: clamp(2rem, 4.8vw, 3.4rem);
font-weight: 500;
line-height: 1.08;
letter-spacing: -0.034em;
color: #fff;
max-width: 15ch;
margin: 0;
}
.ts-hero__title::after {
content: '';
display: block;
width: 56px;
height: 2px;
background: var(--ts-electric);
margin-top: 26px;
}
.ts .ts-lede {
font-size: clamp(1.02rem, 1.5vw, 1.2rem);
color: var(--ts-soft);
margin-top: 22px;
}
.ts .ts-intro {
font-size: 1rem;
line-height: 1.85;
color: rgba(226, 232, 240, 0.76);
max-width: 64ch;
margin-top: 16px;
} .ts-live {
display: grid;
grid-template-columns: repeat(4, minmax(0, 1fr));
margin: clamp(40px, 5vw, 60px) 0 0;
border-top: 1px solid rgba(255, 255, 255, 0.14);
}
.ts-live__cell {
padding: 22px 24px 20px 0;
border-right: 1px solid rgba(255, 255, 255, 0.14);
min-width: 0;
}
.ts-live__cell + .ts-live__cell {
padding-left: 24px;
}
.ts-live__cell:last-child {
border-right: 0;
}
.ts-live dt {
font-size: 0.8rem;
font-weight: 500;
color: var(--ts-on-dark-2);
}
.ts-live dd {
display: flex;
align-items: baseline;
flex-wrap: wrap;
gap: 4px 8px;
margin: 8px 0 0;
}
.ts-live__val {
font-size: clamp(1.45rem, 2.5vw, 1.95rem);
font-weight: 500;
letter-spacing: -0.025em;
line-height: 1.1;
color: #fff;
min-width: 3ch;
}
.ts-live__unit {
font-size: 0.85rem;
color: var(--ts-on-dark-2);
}
.ts-live__spark {
display: inline-block;
width: 84px;
height: 24px;
align-self: center;
}
.ts-live__spark svg {
display: block;
width: 100%;
height: 100%;
overflow: visible;
}
.ts .ts-live__src {
display: flex;
align-items: center;
gap: 10px;
padding: 14px 0 26px;
font-size: 0.8rem;
color: rgba(226, 232, 240, 0.55);
border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.ts-dot {
width: 7px;
height: 7px;
border-radius: 50%;
background: var(--ts-electric);
flex: 0 0 auto;
}
.ts-dot.is-stale {
background: rgba(226, 232, 240, 0.35);
}
.ts-dot.is-fresh {
animation: ts-pulse 1.4s var(--ts-ease) 1;
}
@keyframes ts-pulse {
0%   { box-shadow: 0 0 0 0 rgba(106, 169, 236, 0.55); }
100% { box-shadow: 0 0 0 10px rgba(106, 169, 236, 0); }
} .ts-calc {
background: var(--ts-paper);
padding: clamp(40px, 5vw, 72px) 0 clamp(64px, 8vw, 104px);
}
.ts-calc__grid {
display: grid;
grid-template-columns: minmax(0, 1fr) minmax(320px, 384px);
gap: clamp(24px, 3.2vw, 48px);
align-items: start;
}
.ts-sheet {
background: var(--ts-surface);
border: 1px solid var(--ts-line);
border-radius: 4px;
margin: 0;
min-width: 0;
}
.ts-step {
padding: clamp(26px, 3.2vw, 38px) clamp(20px, 3.2vw, 40px) clamp(8px, 1.2vw, 14px);
}
.ts-step + .ts-step {
border-top: 1px solid var(--ts-line-2);
}
.ts-step__head {
display: flex;
align-items: baseline;
gap: 14px;
margin-bottom: 8px;
}
.ts-step__n {
font-size: 0.8rem;
font-weight: 600;
letter-spacing: 0.14em;
color: var(--ts-steel);
font-variant-numeric: tabular-nums;
}
.ts .ts-step__head h2 {
font-size: clamp(1.15rem, 1.6vw, 1.3rem);
font-weight: 600;
line-height: 1.3;
letter-spacing: -0.015em;
color: var(--ts-ink);
} .ts-field {
display: grid;
grid-template-columns: minmax(140px, 0.7fr) minmax(0, 1.6fr);
gap: 10px clamp(18px, 2.6vw, 32px);
padding: 18px 0;
border-top: 1px solid var(--ts-line);
}
.ts-step__head + .ts-field,
.ts-step__head + .ts-model {
border-top: 0;
}
.ts .ts-field__label {
display: block;
margin: 0;
padding-top: 8px;
font-size: 0.92rem;
font-weight: 550;
line-height: 1.4;
color: var(--ts-ink);
}
.ts-field__sub {
display: block;
margin-top: 2px;
font-size: 0.8rem;
font-weight: 400;
color: var(--ts-muted);
}
.ts-field__ctl {
min-width: 0;
}
.ts-field--stack {
grid-template-columns: minmax(0, 1fr);
}
.ts-field--stack .ts-field__label {
padding-top: 0;
}
.ts .ts-hint {
margin-top: 10px;
font-size: 0.84rem;
line-height: 1.6;
color: var(--ts-muted);
}
.ts-hint:empty {
display: none;
}
.ts-hint strong {
color: var(--ts-ink-2);
font-weight: 600;
} .ts-seg {
display: inline-flex;
max-width: 100%;
border: 1px solid var(--ts-line-2);
border-radius: 3px;
background: var(--ts-surface);
}
.ts .ts-seg label {
position: relative;
display: block;
flex: 1 1 auto;
margin: 0;
cursor: pointer;
}
.ts-seg label + label {
border-left: 1px solid var(--ts-line-2);
}
.ts .ts-seg input,
.ts .ts-pack input,
.ts .ts-ch input,
.ts .ts-cur input {
position: absolute;
inset: 0;
width: 100%;
height: 100%;
margin: 0;
padding: 0;
border: 0;
opacity: 0;
cursor: pointer;
}
.ts-seg span {
display: block;
padding: 8px 15px;
font-size: 0.9rem;
font-weight: 500;
line-height: 1.45;
color: var(--ts-ink-2);
text-align: center;
white-space: nowrap;
transition: background-color 0.25s var(--ts-ease), color 0.25s var(--ts-ease);
}
.ts-seg label:hover span {
color: var(--ts-ink);
background: var(--ts-paper);
}
.ts-seg input:checked + span {
color: #fff;
background: var(--ts-ink);
}
.ts-seg input:focus-visible + span {
position: relative;
z-index: 1;
outline: 2px solid var(--ts-brand);
outline-offset: 2px;
} .ts-seg--wrap {
display: flex;
flex-wrap: wrap;
gap: 6px;
border: 0;
background: transparent;
}
.ts .ts-seg--wrap label {
flex: 0 1 auto;
}
.ts-seg--wrap label + label {
border-left: 0;
}
.ts-seg--wrap span {
border: 1px solid var(--ts-line-2);
border-radius: 3px;
background: var(--ts-surface);
}
.ts-seg--wrap input:checked + span {
border-color: var(--ts-ink);
}
.ts-seg--kw {
display: flex;
}
.ts-seg--kw label.is-rec span {
box-shadow: inset 0 -2px 0 var(--ts-brand);
}
.ts-seg--kw label.is-rec input:checked + span {
box-shadow: inset 0 -2px 0 var(--ts-electric);
}
.ts-seg--mini span {
padding: 6px 12px;
} .ts-slide {
display: flex;
align-items: center;
gap: 16px;
}
.ts-switch + .ts-slide {
margin-top: 14px;
}
.ts .ts-slide__range {
-webkit-appearance: none;
appearance: none;
flex: 1 1 auto;
min-width: 0;
width: auto;
height: 30px;
margin: 0;
padding: 0;
border: 0;
background: transparent;
cursor: pointer;
--ts-fill: 50%;
}
.ts .ts-slide__range:focus {
outline: none;
}
.ts-slide__range::-webkit-slider-runnable-track {
height: 2px;
border-radius: 2px;
background: linear-gradient(to right, var(--ts-brand) 0 var(--ts-fill), var(--ts-line-2) var(--ts-fill) 100%);
}
.ts-slide__range::-webkit-slider-thumb {
-webkit-appearance: none;
width: 18px;
height: 18px;
margin-top: -8px;
border: 2px solid var(--ts-brand);
border-radius: 50%;
background: #fff;
box-shadow: 0 1px 2px rgba(10, 22, 40, 0.18);
transition: transform 0.2s var(--ts-ease), box-shadow 0.2s var(--ts-ease);
}
.ts-slide__range:active::-webkit-slider-thumb {
transform: scale(1.12);
}
.ts-slide__range:focus-visible::-webkit-slider-thumb {
box-shadow: 0 0 0 5px rgba(15, 77, 168, 0.22);
}
.ts-slide__range::-moz-range-track {
height: 2px;
border-radius: 2px;
background: var(--ts-line-2);
}
.ts-slide__range::-moz-range-progress {
height: 2px;
border-radius: 2px;
background: var(--ts-brand);
}
.ts-slide__range::-moz-range-thumb {
width: 14px;
height: 14px;
border: 2px solid var(--ts-brand);
border-radius: 50%;
background: #fff;
box-shadow: 0 1px 2px rgba(10, 22, 40, 0.18);
}
.ts-slide__range:focus-visible::-moz-range-thumb {
box-shadow: 0 0 0 5px rgba(15, 77, 168, 0.22);
} .ts-slide__num {
display: inline-flex;
align-items: baseline;
flex: 0 0 auto;
width: 128px;
padding-right: 10px;
border: 1px solid var(--ts-line-2);
border-radius: 3px;
background: #fff;
transition: border-color 0.2s var(--ts-ease), box-shadow 0.2s var(--ts-ease);
}
.ts-slide__num:focus-within {
border-color: var(--ts-brand);
box-shadow: 0 0 0 3px rgba(15, 77, 168, 0.14);
}
.ts .ts-slide__num input {
flex: 1 1 auto;
width: 100%;
min-width: 0;
margin: 0;
padding: 7px 4px 7px 10px;
border: 0;
border-radius: 0;
background: transparent;
font-family: var(--ts-font);
font-size: 0.95rem;
font-weight: 550;
color: var(--ts-ink);
text-align: right;
font-variant-numeric: tabular-nums;
-moz-appearance: textfield;
appearance: textfield;
}
.ts .ts-slide__num input:focus {
outline: none;
border-color: transparent;
}
.ts-slide__num input::-webkit-outer-spin-button,
.ts-slide__num input::-webkit-inner-spin-button {
-webkit-appearance: none;
margin: 0;
}
.ts-slide__num--wide {
width: 164px;
}
.ts-slide__unit {
flex: 0 0 auto;
padding-left: 3px;
font-size: 0.8rem;
color: var(--ts-muted);
white-space: nowrap;
}
.ts-slide__num.is-invalid {
border-color: var(--ts-ink);
box-shadow: inset 0 -2px 0 var(--ts-ink);
} .ts-price {
display: flex;
flex-wrap: wrap;
align-items: center;
gap: 10px 16px;
}
.ts-field__ctl .ts-seg + .ts-price {
margin-top: 12px;
}
.ts-badge {
display: inline-flex;
align-items: center;
gap: 7px;
font-size: 0.8rem;
line-height: 1.4;
color: var(--ts-muted);
}
.ts-badge:empty {
display: none;
}
.ts-badge::before {
content: '';
width: 6px;
height: 6px;
border-radius: 50%;
background: var(--ts-brand);
flex: 0 0 auto;
}
.ts-badge.is-manual::before {
background: transparent;
box-shadow: inset 0 0 0 1.5px var(--ts-muted);
}
.ts-badge.is-stale::before {
background: var(--ts-line-2);
}
.ts .ts-link,
.ts a.ts-link:link,
.ts a.ts-link:visited {
display: inline;
padding: 0;
margin: 0;
border: 0;
background: none;
font-family: var(--ts-font);
font-size: 0.84rem;
font-weight: 550;
letter-spacing: 0;
text-transform: none;
white-space: normal;
color: var(--ts-brand);
text-decoration: none;
cursor: pointer;
}
.ts .ts-link:hover,
.ts .ts-link:focus-visible {
color: var(--ts-brand-dark);
text-decoration: underline;
text-underline-offset: 3px;
}
.ts .ts-link:focus-visible {
outline: 2px solid var(--ts-brand);
outline-offset: 2px;
} .ts-select {
position: relative;
display: inline-flex;
align-items: center;
width: min(100%, 300px);
}
.ts .ts-select select {
-webkit-appearance: none;
appearance: none;
width: 100%;
margin: 0;
padding: 9px 40px 9px 12px;
border: 1px solid var(--ts-line-2);
border-radius: 3px;
background: #fff;
font-family: var(--ts-font);
font-size: 0.95rem;
color: var(--ts-ink);
cursor: pointer;
}
.ts .ts-select select:focus-visible {
outline: none;
border-color: var(--ts-brand);
box-shadow: 0 0 0 3px rgba(15, 77, 168, 0.14);
}
.ts-select .nw-icon {
position: absolute;
right: 12px;
width: 16px;
height: 16px;
color: var(--ts-muted);
pointer-events: none;
} .ts-trend {
margin: 16px 0 0;
padding-top: 14px;
border-top: 1px solid var(--ts-line);
}
.ts-trend__plot {
position: relative;
height: 64px;
}
.ts-trend__plot svg {
display: block;
width: 100%;
height: 100%;
overflow: visible;
}
.ts-trend .ts-hint {
margin-top: 8px;
} .ts-model {
display: flex;
flex-wrap: wrap;
align-items: flex-end;
justify-content: space-between;
gap: 12px 24px;
margin: 8px 0 10px;
padding: 18px 20px;
background: var(--ts-paper);
border: 1px solid var(--ts-line);
border-left: 3px solid var(--ts-brand);
border-radius: 3px;
}
.ts .ts-model__name {
font-size: 1.05rem;
font-weight: 600;
line-height: 1.35;
color: var(--ts-ink);
}
.ts-model__name small {
margin-left: 6px;
font-size: 0.8rem;
font-weight: 500;
color: var(--ts-muted);
letter-spacing: 0.04em;
}
.ts .ts-model__note {
margin-top: 4px;
font-size: 0.86rem;
line-height: 1.55;
color: var(--ts-ink-2);
}
.ts-model__links {
display: flex;
flex-wrap: wrap;
gap: 6px 18px;
} .ts-packs {
display: grid;
grid-template-columns: repeat(5, minmax(0, 1fr));
gap: 6px;
}
.ts .ts-pack {
position: relative;
display: block;
margin: 0;
cursor: pointer;
}
.ts-pack__body {
position: relative;
display: grid;
grid-template-columns: auto 1fr;
align-items: baseline;
column-gap: 4px;
padding: 10px 12px 12px;
border: 1px solid var(--ts-line-2);
border-radius: 3px;
background: #fff;
transition: border-color 0.25s var(--ts-ease), box-shadow 0.25s var(--ts-ease);
}
.ts-pack:hover .ts-pack__body {
border-color: var(--ts-ink-2);
}
.ts-pack__kwh {
font-size: 1.25rem;
font-weight: 550;
letter-spacing: -0.02em;
line-height: 1.1;
color: var(--ts-ink);
}
.ts-pack__unit {
font-size: 0.75rem;
color: var(--ts-muted);
}
.ts-pack__bar {
position: relative;
grid-column: 1 / -1;
height: 3px;
margin-top: 10px;
border-radius: 2px;
background: var(--ts-line);
overflow: hidden;
}
.ts-pack__bar::after {
content: '';
position: absolute;
inset: 0 auto 0 0;
width: var(--ts-w, 50%);
border-radius: 0 2px 2px 0;
background: var(--ts-ice);
transition: background-color 0.25s var(--ts-ease);
}
.ts-pack--16 { --ts-w: 16.67%; }
.ts-pack--24 { --ts-w: 25%; }
.ts-pack--48 { --ts-w: 50%; }
.ts-pack--72 { --ts-w: 75%; }
.ts-pack--96 { --ts-w: 100%; }
.ts-pack input:checked + .ts-pack__body {
border-color: var(--ts-ink);
box-shadow: inset 0 0 0 1px var(--ts-ink);
}
.ts-pack input:checked + .ts-pack__body .ts-pack__bar::after {
background: var(--ts-brand);
}
.ts-pack input:focus-visible + .ts-pack__body {
outline: 2px solid var(--ts-brand);
outline-offset: 2px;
} .ts-pack.is-suggest .ts-pack__body::before {
content: '';
position: absolute;
top: 9px;
right: 9px;
width: 6px;
height: 6px;
border-radius: 50%;
background: var(--ts-brand);
}
.ts-count {
display: flex;
align-items: center;
gap: 14px;
margin-top: 14px;
}
.ts-count__label {
font-size: 0.86rem;
color: var(--ts-ink-2);
}
.ts-stepper {
display: inline-flex;
align-items: stretch;
border: 1px solid var(--ts-line-2);
border-radius: 3px;
background: #fff;
}
.ts .ts-stepper button {
display: grid;
place-items: center;
width: 34px;
height: 34px;
margin: 0;
padding: 0;
border: 0;
background: transparent;
font-family: var(--ts-font);
font-size: 1.1rem;
font-weight: 500;
line-height: 1;
letter-spacing: 0;
text-transform: none;
color: var(--ts-ink);
cursor: pointer;
}
.ts .ts-stepper button:hover {
background: var(--ts-paper);
color: var(--ts-ink);
}
.ts .ts-stepper button:disabled {
opacity: 0.35;
cursor: default;
background: transparent;
}
.ts .ts-stepper button:focus-visible {
outline: 2px solid var(--ts-brand);
outline-offset: -2px;
}
.ts-stepper output {
min-width: 34px;
border-inline: 1px solid var(--ts-line);
font-weight: 600;
line-height: 34px;
text-align: center;
font-variant-numeric: tabular-nums;
} .ts-readout {
display: grid;
grid-template-columns: repeat(2, minmax(0, 1fr));
margin: 6px 0 20px;
border-top: 1px solid var(--ts-line-2);
}
.ts-readout > div {
padding: 14px 16px 12px 0;
min-width: 0;
}
.ts-readout > div + div {
padding-left: 16px;
border-left: 1px solid var(--ts-line);
}
.ts .ts-readout > .ts-readout__wide {
grid-column: 1 / -1;
padding-left: 0;
border-left: 0;
border-top: 1px solid var(--ts-line);
}
.ts-readout dt {
font-size: 0.8rem;
color: var(--ts-muted);
}
.ts-readout dd {
margin: 4px 0 0;
font-size: 0.98rem;
font-weight: 550;
line-height: 1.5;
color: var(--ts-ink);
}
.ts-readout dd .nw-icon {
width: 16px;
height: 16px;
margin-right: 6px;
vertical-align: -0.2em;
color: var(--ts-brand);
}
.ts-readout dd .is-no .nw-icon {
color: var(--ts-ink);
}
.ts-readout dd small {
display: block;
margin-top: 2px;
font-size: 0.84rem;
font-weight: 400;
color: var(--ts-ink-2);
} .ts-chargers {
margin-top: 6px;
border-top: 1px solid var(--ts-line-2);
}
.ts .ts-ch {
position: relative;
display: block;
margin: 0;
border-bottom: 1px solid var(--ts-line);
cursor: pointer;
}
.ts-ch__body {
position: relative;
display: grid;
grid-template-columns: 52px minmax(0, 1fr) auto;
align-items: center;
gap: 16px;
padding: 14px 14px 14px 14px;
transition: background-color 0.25s var(--ts-ease);
}
.ts-ch__body::before {
content: '';
position: absolute;
left: 0;
top: 10px;
bottom: 10px;
width: 2px;
background: transparent;
transition: background-color 0.25s var(--ts-ease);
}
.ts-ch:hover .ts-ch__body {
background: var(--ts-paper);
}
.ts-ch input:checked + .ts-ch__body {
background: var(--ts-brand-tint);
}
.ts-ch input:checked + .ts-ch__body::before {
background: var(--ts-brand);
}
.ts-ch input:focus-visible + .ts-ch__body {
outline: 2px solid var(--ts-brand);
outline-offset: -2px;
}
.ts-ch__wave {
width: 48px;
height: 20px;
fill: none;
stroke: var(--ts-steel);
stroke-width: 1.6;
stroke-linecap: round;
overflow: visible;
}
.ts-ch__wave--3 path:nth-child(2) {
stroke-opacity: 0.6;
}
.ts-ch__wave--3 path:nth-child(3) {
stroke-opacity: 0.35;
}
.ts-ch input:checked + .ts-ch__body .ts-ch__wave {
stroke: var(--ts-brand);
}
.ts-ch__main {
min-width: 0;
}
.ts-ch__title {
display: block;
font-size: 0.95rem;
font-weight: 600;
line-height: 1.35;
color: var(--ts-ink);
}
.ts-ch__desc {
display: block;
margin-top: 2px;
font-size: 0.84rem;
line-height: 1.45;
color: var(--ts-muted);
}
.ts-ch__spec {
display: grid;
justify-items: end;
gap: 1px;
font-size: 0.84rem;
line-height: 1.45;
color: var(--ts-ink);
font-variant-numeric: tabular-nums;
white-space: nowrap;
}
.ts-ch__spec span:first-child {
color: var(--ts-muted);
} .ts .ts-switch {
position: relative;
display: inline-flex;
align-items: center;
gap: 12px;
margin: 6px 0 0;
cursor: pointer;
}
.ts .ts-switch input {
position: absolute;
top: 0;
left: 0;
width: 40px;
height: 22px;
margin: 0;
padding: 0;
opacity: 0;
cursor: pointer;
}
.ts-switch__track {
position: relative;
width: 40px;
height: 22px;
flex: 0 0 auto;
border-radius: 3px;
background: var(--ts-line-2);
transition: background-color 0.25s var(--ts-ease);
}
.ts-switch__track::after {
content: '';
position: absolute;
top: 3px;
left: 3px;
width: 16px;
height: 16px;
border-radius: 2px;
background: #fff;
box-shadow: 0 1px 2px rgba(10, 22, 40, 0.25);
transition: transform 0.25s var(--ts-ease);
}
.ts-switch input:checked + .ts-switch__track {
background: var(--ts-brand);
}
.ts-switch input:checked + .ts-switch__track::after {
transform: translateX(18px);
}
.ts-switch input:focus-visible + .ts-switch__track {
outline: 2px solid var(--ts-brand);
outline-offset: 2px;
}
.ts-switch__text {
font-size: 0.92rem;
color: var(--ts-ink);
} .ts-more {
border-top: 1px solid var(--ts-line-2);
}
.ts-more summary {
display: flex;
align-items: center;
justify-content: space-between;
gap: 12px;
padding: 20px clamp(20px, 3.2vw, 40px);
list-style: none;
font-size: 0.98rem;
font-weight: 600;
color: var(--ts-ink);
cursor: pointer;
}
.ts-more summary::-webkit-details-marker {
display: none;
}
.ts-more summary:hover {
color: var(--ts-brand-dark);
}
.ts-more summary:focus-visible {
outline: 2px solid var(--ts-brand);
outline-offset: -4px;
}
.ts-more summary .nw-icon {
color: var(--ts-muted);
transition: transform 0.3s var(--ts-ease);
}
.ts-more[open] summary .nw-icon {
transform: rotate(180deg);
}
.ts-more__body {
padding: 0 clamp(20px, 3.2vw, 40px) 18px;
}
.ts-more__body .ts-field:first-child {
border-top: 1px solid var(--ts-line);
} .ts-panel {
position: sticky;
top: var(--ts-sticky);
min-width: 0;
}
.ts-panel__inner {
padding: clamp(22px, 2.4vw, 30px);
border-radius: 4px;
background: var(--ts-dark);
color: var(--ts-on-dark);
}
.ts-panel__top {
display: flex;
align-items: center;
justify-content: space-between;
gap: 12px;
}
.ts .ts-panel__title {
font-size: 0.92rem;
font-weight: 500;
line-height: 1.3;
letter-spacing: 0;
color: var(--ts-on-dark-2);
}
.ts-cur {
display: inline-flex;
border: 1px solid rgba(255, 255, 255, 0.18);
border-radius: 3px;
}
.ts .ts-cur label {
position: relative;
display: block;
margin: 0;
cursor: pointer;
}
.ts-cur label + label {
border-left: 1px solid rgba(255, 255, 255, 0.18);
}
.ts-cur span {
display: block;
min-width: 32px;
padding: 3px 10px;
font-size: 0.86rem;
text-align: center;
color: var(--ts-on-dark-2);
transition: background-color 0.25s var(--ts-ease), color 0.25s var(--ts-ease);
}
.ts-cur input:checked + span {
color: #fff;
background: rgba(255, 255, 255, 0.14);
}
.ts-cur input:focus-visible + span {
outline: 2px solid var(--ts-electric);
outline-offset: 2px;
}
.ts .ts-figure {
margin-top: 14px;
font-size: clamp(2.5rem, 4.2vw, 3.3rem);
font-weight: 500;
line-height: 1.04;
letter-spacing: -0.04em;
color: #fff;
overflow-wrap: anywhere;
}
.ts-figure .ts-figure__cur {
margin-right: 0.1em;
font-size: 0.55em;
font-weight: 400;
letter-spacing: 0;
color: var(--ts-on-dark-2);
}
.ts-figure .ts-figure__cur--after {
margin-right: 0;
margin-left: 0.18em;
}
.ts-figure.is-negative {
color: var(--ts-on-dark);
}
.ts .ts-panel__sub {
margin-top: 8px;
font-size: 0.92rem;
color: var(--ts-soft);
}
.ts-panel__sub:empty {
display: none;
}
.ts-bars {
display: grid;
gap: 14px;
margin-top: 22px;
padding-top: 20px;
border-top: 1px solid var(--ts-dark-line);
}
.ts-bar__row {
display: flex;
align-items: baseline;
justify-content: space-between;
gap: 12px;
font-size: 0.86rem;
}
.ts-bar__label {
color: var(--ts-on-dark);
}
.ts-bar__label small {
margin-left: 4px;
font-size: 0.86em;
color: var(--ts-on-dark-2);
}
.ts-bar__val {
font-weight: 550;
color: #fff;
font-variant-numeric: tabular-nums;
white-space: nowrap;
}
.ts-bar__track {
display: block;
height: 8px;
margin-top: 8px;
}
.ts-bar__fill {
display: block;
width: 0;
height: 100%;
min-width: 2px;
border-radius: 0 4px 4px 0;
transition: width 0.5s var(--ts-ease);
}
.ts-bar--ice .ts-bar__fill {
background: var(--ts-ice-dark);
}
.ts-bar--el .ts-bar__fill {
background: var(--ts-el-dark);
}
.ts-kpis {
display: grid;
grid-template-columns: repeat(2, minmax(0, 1fr));
margin: 22px 0 0;
border-top: 1px solid var(--ts-dark-line);
}
.ts-kpis > div {
min-width: 0;
padding: 14px 12px 12px 0;
border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.ts-kpis > div:nth-child(even) {
padding-left: 14px;
padding-right: 0;
border-left: 1px solid rgba(255, 255, 255, 0.07);
}
.ts-kpis dt {
font-size: 0.78rem;
color: var(--ts-on-dark-2);
}
.ts-kpis dd {
margin: 4px 0 0;
font-size: 1.02rem;
font-weight: 550;
line-height: 1.35;
color: #fff;
}
.ts-kpis dd small {
display: block;
font-size: 0.78rem;
font-weight: 400;
color: var(--ts-on-dark-2);
}
.ts .ts-kpis dd .ts-link {
color: var(--ts-electric);
font-size: 0.86rem;
}
.ts-alerts {
display: grid;
gap: 8px;
margin: 16px 0 0;
padding: 0;
list-style: none;
}
.ts-alerts:empty {
display: none;
}
.ts .ts-alerts li {
display: grid;
grid-template-columns: 16px minmax(0, 1fr);
gap: 10px;
margin: 0;
padding: 10px 12px;
list-style: none;
font-size: 0.84rem;
line-height: 1.55;
color: rgba(230, 235, 242, 0.88);
background: rgba(255, 255, 255, 0.04);
border-left: 2px solid var(--ts-electric);
}
.ts .ts-alerts li.is-strong {
color: #fff;
background: rgba(255, 255, 255, 0.08);
border-left-color: #fff;
}
.ts-alerts li .nw-icon {
width: 16px;
height: 16px;
margin-top: 2px;
color: var(--ts-electric);
}
.ts-alerts li.is-strong .nw-icon {
color: #fff;
}
.ts-alerts li strong {
font-weight: 600;
color: #fff;
}
.ts .ts-alerts .ts-link {
color: var(--ts-electric);
font-size: inherit;
}
.ts-btn,
.ts a.ts-btn:link,
.ts a.ts-btn:visited {
display: flex;
align-items: center;
justify-content: center;
gap: 10px;
margin-top: 22px;
padding: 15px 22px;
border-radius: 3px;
background: var(--ts-brand);
font-size: 0.94rem;
font-weight: 600;
letter-spacing: 0.02em;
color: #fff;
text-align: center;
text-decoration: none !important;
transition: background-color 0.35s var(--ts-ease), transform 0.35s var(--ts-ease);
}
.ts a.ts-btn:hover,
.ts a.ts-btn:focus-visible {
background: #1a5cc0;
color: #fff;
transform: translateY(-1px);
}
.ts a.ts-btn:focus-visible {
outline: 2px solid var(--ts-electric);
outline-offset: 3px;
}
.ts-panel__tools {
display: flex;
gap: 6px;
margin-top: 8px;
}
.ts .ts-tool {
display: inline-flex;
align-items: center;
justify-content: center;
flex: 1 1 0;
gap: 8px;
min-width: 0;
margin: 0;
padding: 10px 8px;
border: 1px solid rgba(255, 255, 255, 0.16);
border-radius: 3px;
background: transparent;
font-family: var(--ts-font);
font-size: 0.82rem;
font-weight: 500;
letter-spacing: 0;
text-transform: none;
white-space: nowrap;
color: rgba(230, 235, 242, 0.86);
cursor: pointer;
transition: border-color 0.25s var(--ts-ease), color 0.25s var(--ts-ease);
}
.ts .ts-tool:hover {
border-color: rgba(255, 255, 255, 0.4);
color: #fff;
}
.ts .ts-tool:focus-visible {
outline: 2px solid var(--ts-electric);
outline-offset: 2px;
}
.ts-tool .nw-icon {
width: 15px;
height: 15px;
}
.ts .ts-toast {
min-height: 1.3em;
margin-top: 8px;
font-size: 0.8rem;
text-align: center;
color: var(--ts-soft);
} .ts-panel.is-loading .ts-figure,
.ts-panel.is-loading .ts-bars {
opacity: 0.6;
transition: opacity 0.2s;
} .ts-section {
padding: clamp(64px, 8vw, 104px) 0;
background: var(--ts-paper);
}
.ts-section + .ts-section,
.ts-calc + .ts-section {
padding-top: 0;
}
.ts-head {
max-width: 68ch;
margin-bottom: clamp(30px, 4vw, 48px);
}
.ts .ts-head h2 {
font-size: clamp(1.6rem, 2.8vw, 2.15rem);
font-weight: 550;
line-height: 1.22;
letter-spacing: -0.025em;
color: var(--ts-ink);
}
.ts .ts-head p {
margin-top: 14px;
font-size: 1rem;
line-height: 1.8;
color: var(--ts-ink-2);
}
.ts .ts-breakdown h3,
.ts .ts-scenario h3,
.ts .ts-assume h3 {
margin-bottom: 12px;
font-size: 1rem;
font-weight: 600;
line-height: 1.4;
letter-spacing: -0.01em;
color: var(--ts-ink);
} .ts .ts-path {
display: grid;
grid-template-columns: repeat(4, minmax(0, 1fr));
margin: 0 0 clamp(36px, 4.5vw, 56px);
padding: 0;
list-style: none;
border-top: 1px solid var(--ts-line-2);
}
.ts .ts-path__node {
position: relative;
min-width: 0;
margin: 0;
padding: 24px 28px 6px 0;
list-style: none;
}
.ts .ts-path__node + .ts-path__node {
padding-left: 28px;
border-left: 1px solid var(--ts-line);
} .ts-path__node + .ts-path__node::before {
content: '';
position: absolute;
top: 30px;
left: -6px;
width: 11px;
height: 11px;
border-top: 1px solid var(--ts-ink-2);
border-right: 1px solid var(--ts-ink-2);
background: var(--ts-paper);
transform: rotate(45deg);
} .ts-path__node::after {
content: '';
position: absolute;
top: -1px;
left: 0;
width: 34px;
height: 2px;
background: var(--ts-ice);
}
.ts-path__node + .ts-path__node::after {
left: 28px;
}
.ts-path__node:nth-child(n+2)::after {
background: var(--ts-brand);
}
.ts-path__k {
display: block;
font-size: 0.82rem;
color: var(--ts-muted);
}
.ts-path__v {
display: block;
margin-top: 6px;
font-size: clamp(1.35rem, 2.2vw, 1.7rem);
font-weight: 500;
line-height: 1.15;
letter-spacing: -0.02em;
color: var(--ts-ink);
}
.ts-path__v small {
margin-left: 4px;
font-size: 0.55em;
font-weight: 400;
letter-spacing: 0;
color: var(--ts-muted);
}
.ts-path__d {
display: block;
margin-top: 6px;
font-size: 0.82rem;
line-height: 1.55;
color: var(--ts-ink-2);
} .ts-report__grid {
display: grid;
grid-template-columns: minmax(0, 1.45fr) minmax(0, 1fr);
gap: clamp(28px, 4vw, 56px);
align-items: start;
}
.ts-chart {
margin: 0;
padding: clamp(18px, 2.4vw, 28px);
background: #fff;
border: 1px solid var(--ts-line);
border-radius: 4px;
min-width: 0;
}
.ts-chart__cap {
display: flex;
flex-wrap: wrap;
align-items: baseline;
justify-content: space-between;
gap: 8px 20px;
margin-bottom: 12px;
}
.ts-chart__title {
font-size: 1rem;
font-weight: 600;
color: var(--ts-ink);
}
.ts .ts-legend {
display: flex;
flex-wrap: wrap;
gap: 6px 18px;
margin: 0;
padding: 0;
list-style: none;
font-size: 0.84rem;
color: var(--ts-ink-2);
}
.ts .ts-legend li {
display: inline-flex;
align-items: center;
gap: 8px;
margin: 0;
list-style: none;
}
.ts-key {
display: inline-block;
width: 16px;
height: 2px;
border-radius: 2px;
}
.ts-key--ice {
background: var(--ts-ice);
}
.ts-key--el {
background: var(--ts-brand);
}
.ts-chart__plot {
position: relative;
min-height: 240px;
}
.ts-chart__plot svg {
display: block;
width: 100%;
height: auto;
overflow: visible;
touch-action: pan-y;
}
.ts-chart__plot svg text {
font-family: var(--ts-font);
}
.ts-tip {
position: absolute;
top: 0;
left: 0;
z-index: 2;
min-width: 150px;
padding: 10px 12px;
border-radius: 3px;
background: var(--ts-ink);
color: #fff;
font-size: 0.8rem;
line-height: 1.5;
pointer-events: none;
box-shadow: 0 6px 20px rgba(10, 22, 40, 0.18);
opacity: 0;
transition: opacity 0.15s;
white-space: nowrap;
}
.ts-tip.is-on {
opacity: 1;
}
.ts-tip b {
display: block;
margin-bottom: 4px;
font-weight: 600;
}
.ts-tip i {
display: grid;
grid-template-columns: 12px auto auto;
align-items: center;
gap: 8px;
font-style: normal;
}
.ts-tip i::before {
content: '';
width: 12px;
height: 2px;
border-radius: 2px;
background: var(--ts-ice);
}
.ts-tip i.el::before {
background: var(--ts-electric);
}
.ts-tip i span:last-child {
justify-self: end;
font-weight: 600;
font-variant-numeric: tabular-nums;
}
.ts-tablewrap {
margin-top: 14px;
}
.ts-tablewrap summary {
font-size: 0.86rem;
font-weight: 550;
color: var(--ts-brand);
cursor: pointer;
}
.ts-tablewrap summary:focus-visible {
outline: 2px solid var(--ts-brand);
outline-offset: 2px;
}
.ts-scroll {
overflow-x: auto;
-webkit-overflow-scrolling: touch;
}
.ts .ts-table {
width: 100%;
margin: 8px 0 0;
border-collapse: collapse;
font-size: 0.88rem;
line-height: 1.5;
font-variant-numeric: tabular-nums;
}
.ts .ts-table th,
.ts .ts-table td {
padding: 10px 0 10px 16px;
border: 0;
border-top: 1px solid var(--ts-line);
background: transparent;
text-align: right;
vertical-align: baseline;
}
.ts .ts-table th:first-child,
.ts .ts-table td:first-child {
padding-left: 0;
text-align: left;
}
.ts .ts-table thead th {
padding-top: 0;
border-top: 0;
border-bottom: 1px solid var(--ts-line-2);
background: transparent;
font-size: 0.8rem;
font-weight: 600;
letter-spacing: 0;
text-transform: none;
color: var(--ts-muted);
}
.ts .ts-table tbody tr:nth-child(even),
.ts .ts-table tbody tr:hover {
background: transparent;
}
.ts .ts-table tbody th {
font-weight: 500;
color: var(--ts-ink-2);
}
.ts .ts-table tbody td {
color: var(--ts-ink);
}
.ts .ts-table tr.is-total th,
.ts .ts-table tr.is-total td {
border-top: 1px solid var(--ts-line-2);
font-weight: 650;
color: var(--ts-ink);
}
.ts .ts-table tr.is-sub th,
.ts .ts-table tr.is-sub td {
color: var(--ts-muted);
font-size: 0.84rem;
}
.ts-breakdown {
min-width: 0;
} .ts-scenario {
margin-top: clamp(32px, 4vw, 48px);
padding-top: 24px;
border-top: 1px solid var(--ts-line-2);
}
.ts-scenario dl {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
gap: 0 32px;
margin: 0;
}
.ts-scenario dl > div {
padding: 10px 0;
border-bottom: 1px solid var(--ts-line);
}
.ts-scenario dt {
font-size: 0.8rem;
color: var(--ts-muted);
}
.ts-scenario dd {
margin: 2px 0 0;
font-size: 0.92rem;
font-weight: 500;
color: var(--ts-ink);
} .ts .ts-steps {
display: grid;
grid-template-columns: repeat(4, minmax(0, 1fr));
margin: 0;
padding: 0;
list-style: none;
counter-reset: ts-step;
border-top: 1px solid var(--ts-line-2);
}
.ts .ts-steps li {
position: relative;
margin: 0;
padding: 26px 26px 8px 0;
list-style: none;
counter-increment: ts-step;
}
.ts .ts-steps li + li {
padding-left: 26px;
border-left: 1px solid var(--ts-line);
}
.ts-steps li::before {
content: counter(ts-step, decimal-leading-zero);
display: block;
margin-bottom: 12px;
font-size: 0.78rem;
font-weight: 600;
letter-spacing: 0.14em;
color: var(--ts-steel);
font-variant-numeric: tabular-nums;
}
.ts .ts-steps h3 {
margin-bottom: 10px;
font-size: 1.02rem;
font-weight: 600;
line-height: 1.4;
color: var(--ts-ink);
}
.ts .ts-steps p {
font-size: 0.92rem;
line-height: 1.75;
color: var(--ts-ink-2);
} .ts-typ__card {
padding: clamp(18px, 3vw, 32px);
background: var(--ts-surface);
border: 1px solid var(--ts-line);
border-radius: 3px;
}
.ts .ts-table--typ {
margin-top: 0;
min-width: 560px;
}
.ts .ts-table--typ td {
white-space: nowrap;
}
.ts .ts-typ__note {
max-width: 78ch;
margin: 18px 0 0;
font-size: 0.86rem;
line-height: 1.7;
color: var(--ts-muted);
}
.ts-assume {
margin-top: clamp(40px, 5vw, 64px);
}
.ts .ts-assume .ts-table th {
width: 28%;
padding-right: 16px;
text-align: left;
font-weight: 600;
color: var(--ts-ink);
vertical-align: top;
}
.ts .ts-assume .ts-table td {
text-align: left;
color: var(--ts-ink-2);
line-height: 1.65;
font-variant-numeric: normal;
}
.ts .ts-assume .ts-table tr:first-child th,
.ts .ts-assume .ts-table tr:first-child td {
border-top: 1px solid var(--ts-line-2);
}
.ts-scope {
display: grid;
grid-template-columns: 20px minmax(0, 1fr);
gap: 14px;
margin-top: 32px;
padding: 20px 24px;
background: #fff;
border: 1px solid var(--ts-line);
border-left: 3px solid var(--ts-brand);
border-radius: 3px;
}
.ts .ts-scope .nw-icon {
width: 20px;
height: 20px;
margin-top: 3px;
color: var(--ts-steel);
}
.ts .ts-scope p {
font-size: 0.94rem;
line-height: 1.75;
color: var(--ts-ink-2);
}
.ts-scope strong {
color: var(--ts-ink);
} .ts-faq {
display: grid;
grid-template-columns: repeat(2, minmax(0, 1fr));
column-gap: clamp(32px, 5vw, 72px);
border-top: 1px solid var(--ts-line-2);
}
.ts-faq__item {
padding: 26px 0;
border-bottom: 1px solid var(--ts-line);
}
.ts .ts-faq__item h3 {
margin-bottom: 10px;
font-size: 1.02rem;
font-weight: 600;
line-height: 1.45;
color: var(--ts-ink);
}
.ts .ts-faq__item p {
font-size: 0.95rem;
line-height: 1.78;
color: var(--ts-ink-2);
} .ts .ts-links {
margin: 0;
padding: 0;
list-style: none;
border-top: 1px solid var(--ts-line-2);
}
.ts .ts-links li {
margin: 0;
list-style: none;
border-bottom: 1px solid var(--ts-line);
}
.ts .ts-links a,
.ts .ts-links a:link,
.ts .ts-links a:visited {
display: flex;
align-items: center;
gap: 16px;
padding: 20px 4px;
font-size: 1.01rem;
font-weight: 500;
color: var(--ts-ink);
text-decoration: none;
transition: color 0.35s var(--ts-ease), padding-left 0.35s var(--ts-ease);
}
.ts .ts-links a:hover,
.ts .ts-links a:focus-visible {
padding-left: 10px;
color: var(--ts-brand-dark);
}
.ts-links__ic {
display: inline-flex;
color: var(--ts-steel);
}
.ts-links__ic .nw-icon {
width: 22px;
height: 22px;
}
.ts-links__go {
display: inline-flex;
margin-left: auto;
color: var(--ts-muted);
transition: transform 0.35s var(--ts-ease), color 0.35s var(--ts-ease);
}
.ts-links a:hover .ts-links__go,
.ts-links a:focus-visible .ts-links__go {
color: var(--ts-brand);
transform: translateX(4px);
} .ts-cta {
padding: clamp(44px, 6vw, 84px) clamp(26px, 5vw, 64px);
border-radius: 4px;
background: var(--ts-dark);
text-align: center;
}
.ts .ts-cta h2 {
font-size: clamp(1.45rem, 2.6vw, 2.05rem);
font-weight: 500;
line-height: 1.25;
color: #fff;
}
.ts .ts-cta p {
max-width: 58ch;
margin: 18px auto 0;
font-size: 1rem;
line-height: 1.8;
color: rgba(226, 232, 240, 0.78);
} .ts .ts-cta a.ts-btn,
.ts .ts-cta a.ts-btn:link,
.ts .ts-cta a.ts-btn:visited {
display: inline-flex;
margin-top: 30px;
padding-inline: 32px;
} .ts-dock {
position: fixed;
left: 50%;
bottom: 18px;
z-index: 90;
transform: translateX(-50%);
max-width: calc(100vw - 168px);
}
.ts .ts-dock__link,
.ts .ts-dock__link:link,
.ts .ts-dock__link:visited {
display: flex;
align-items: center;
gap: 10px;
padding: 11px 16px;
border-radius: 3px;
background: var(--ts-dark);
box-shadow: 0 10px 30px rgba(10, 22, 40, 0.28);
font-size: 0.86rem;
color: #fff;
text-decoration: none !important;
white-space: nowrap;
}
.ts-dock__label {
color: var(--ts-on-dark-2);
}
.ts-dock__val {
font-weight: 600;
font-variant-numeric: tabular-nums;
}
.ts-dock .nw-icon {
width: 14px;
height: 14px;
color: var(--ts-electric);
} @media (max-width: 1100px) {
.ts-calc__grid {
grid-template-columns: minmax(0, 1fr);
}
.ts-panel {
position: relative;
top: auto;
scroll-margin-top: 80px;
}
.ts-report__grid {
grid-template-columns: minmax(0, 1fr);
}
}
@media (min-width: 1101px) {
.ts-dock {
display: none !important;
}
}
@media (max-width: 900px) {
.ts-live {
grid-template-columns: repeat(2, minmax(0, 1fr));
}
.ts-live__cell:nth-child(2) {
border-right: 0;
}
.ts-live__cell:nth-child(3) {
padding-left: 0;
}
.ts-live__cell:nth-child(n+3) {
border-top: 1px solid rgba(255, 255, 255, 0.14);
}
.ts .ts-path,
.ts .ts-steps {
grid-template-columns: repeat(2, minmax(0, 1fr));
}
.ts .ts-path__node:nth-child(3),
.ts .ts-steps li:nth-child(3) {
padding-left: 0;
border-left: 0;
}
.ts .ts-path__node:nth-child(n+3),
.ts .ts-steps li:nth-child(n+3) {
border-top: 1px solid var(--ts-line);
}
.ts-path__node:nth-child(3)::before {
display: none;
}
.ts-path__node:nth-child(3)::after {
left: 0;
}
.ts-faq {
grid-template-columns: minmax(0, 1fr);
}
}
@media (max-width: 720px) {
.ts-wrap {
padding-inline: 18px;
}
.ts-field {
grid-template-columns: minmax(0, 1fr);
gap: 10px;
}
.ts .ts-field__label {
padding-top: 0;
} .ts .ts-seg {
display: flex;
flex-wrap: wrap;
gap: 6px;
border: 0;
background: transparent;
}
.ts .ts-seg label {
flex: 0 1 auto;
}
.ts .ts-seg label + label {
border-left: 0;
}
.ts .ts-seg span {
border: 1px solid var(--ts-line-2);
border-radius: 3px;
background: var(--ts-surface);
}
.ts .ts-seg input:checked + span {
border-color: var(--ts-ink);
}
.ts .ts-seg--kw {
display: grid;
grid-template-columns: repeat(5, minmax(0, 1fr));
}
.ts .ts-seg--kw span {
padding-inline: 4px;
} .ts .ts-slide__num input,
.ts .ts-select select {
font-size: 1rem;
}
.ts-packs {
grid-template-columns: repeat(3, minmax(0, 1fr));
}
.ts-ch__body {
grid-template-columns: 40px minmax(0, 1fr);
gap: 4px 12px;
}
.ts-ch__wave {
width: 36px;
grid-row: span 2;
}
.ts-ch__spec {
grid-column: 2;
justify-items: start;
grid-auto-flow: column;
gap: 12px;
}
.ts .ts-assume .ts-table th {
width: 36%;
}
}
@media (max-width: 560px) {
.ts-live {
grid-template-columns: minmax(0, 1fr);
}
.ts .ts-live__cell,
.ts .ts-live__cell + .ts-live__cell {
padding: 14px 0;
border-right: 0;
border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.ts-live__cell:first-child {
border-top: 0;
}
.ts .ts-path,
.ts .ts-steps {
grid-template-columns: minmax(0, 1fr);
}
.ts .ts-path__node,
.ts .ts-path__node + .ts-path__node,
.ts .ts-steps li,
.ts .ts-steps li + li {
padding-left: 0;
padding-right: 0;
border-left: 0;
}
.ts .ts-path__node + .ts-path__node,
.ts .ts-steps li + li {
border-top: 1px solid var(--ts-line);
}
.ts-path__node + .ts-path__node::before {
display: none;
}
.ts-path__node + .ts-path__node::after {
left: 0;
}
.ts-readout {
grid-template-columns: minmax(0, 1fr);
}
.ts .ts-readout > div + div {
padding-left: 0;
border-left: 0;
border-top: 1px solid var(--ts-line);
}
.ts-slide {
gap: 12px;
}
.ts-slide__num {
width: 112px;
}
.ts-dock {
max-width: calc(100vw - 150px);
}
.ts-dock__label {
display: none;
}
}
@media (prefers-reduced-motion: reduce) {
.ts *,
.ts *::before,
.ts *::after {
transition-duration: 0.01ms !important;
animation-duration: 0.01ms !important;
animation-iteration-count: 1 !important;
}
}
@media (forced-colors: active) {
.ts-bar__fill,
.ts-pack__bar::after {
forced-color-adjust: none;
}
.ts-seg input:checked + span,
.ts-pack input:checked + .ts-pack__body,
.ts-ch input:checked + .ts-ch__body {
outline: 2px solid CanvasText;
}
} .ts-print {
display: none;
}
@page {
size: A4;
margin: 15mm 15mm 17mm;
@bottom-left {
content: "nawismarine.com";
font: 500 7pt/1 'Inter', system-ui, sans-serif;
letter-spacing: 0.06em;
color: #67707e;
}
@bottom-right {
content: counter(page) " / " counter(pages);
font: 500 7pt/1 'Inter', system-ui, sans-serif;
color: #67707e;
}
}
@media print {
html,
body {
background: #fff !important;
margin: 0 !important;
padding: 0 !important;
} .nw-topbar,
#masthead,
.skip-link,
.footer-main,
.footer-bottom,
#side-nav,
.side-nav-overlay,
#inspiro-back-to-top,
#nama-chatbot-container,
.nw-search-overlay,
.nw-mobile-backdrop,
#ht-ctc-chat,
.ht-ctc,
.ht_ctc_chat_greetings_box,
.entry-content > :not(.ts),
.ts > :not(.ts-print) {
display: none !important;
}
#page,
.site-content-contain,
#content,
#main,
.builder-wrap,
article.page,
.entry-content,
.ts {
margin: 0 !important;
padding: 0 !important;
max-width: none !important;
width: auto !important;
background: #fff !important;
box-shadow: none !important;
transform: none !important;
}
.ts .ts-print {
display: block !important;
} .tp {
--tp-ink: #0a1628;
--tp-ink-2: #46505e;
--tp-muted: #67707e;
--tp-line: #e4dfd4;
--tp-line-2: #cfc8b9;
--tp-brand: #0f4da8;
--tp-tint: #eef3fb;
--tp-ice: #8c95a2;
--tp-electric: #6aa9ec;
color: var(--tp-ink);
font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
font-size: 8.6pt;
line-height: 1.5;
font-feature-settings: 'cv11', 'ss01', 'tnum';
-webkit-print-color-adjust: exact;
print-color-adjust: exact;
orphans: 3;
widows: 3;
}
.tp *,
.tp *::before,
.tp *::after {
box-sizing: border-box;
}
.tp h1,
.tp h2,
.tp p,
.tp dl,
.tp dd,
.tp ul,
.tp ol,
.tp figure {
margin: 0;
padding: 0;
}
.tp ul,
.tp ol,
.tp li {
list-style: none !important;
margin: 0 !important;
padding-left: 0;
}
.tp li::marker {
content: none;
}
.tp-block {
break-inside: avoid;
page-break-inside: avoid;
margin-top: 6mm;
}
.tp-h2 {
display: flex;
align-items: center;
gap: 2.4mm;
margin: 0 0 3mm !important;
font-size: 7pt !important;
font-weight: 600;
line-height: 1.2 !important;
letter-spacing: 0.14em !important;
text-transform: uppercase !important;
font-family: inherit !important;
color: var(--tp-ink) !important;
break-after: avoid;
}
.tp-h2::after {
content: "";
flex: 1;
height: 0;
border-top: 0.5pt solid var(--tp-line-2);
} .tp-head {
display: flex;
align-items: flex-end;
justify-content: space-between;
padding-bottom: 3.2mm;
border-bottom: 1.2pt solid var(--tp-ink);
}
.tp-brand {
font-size: 9.5pt;
font-weight: 700;
letter-spacing: 0.3em;
}
.tp-meta {
display: flex;
gap: 3mm;
font-size: 7.5pt;
color: var(--tp-muted);
}
.tp-meta b {
font-weight: 600;
letter-spacing: 0.14em;
text-transform: uppercase;
color: var(--tp-ink);
} .tp-intro {
margin-top: 7mm;
}
.tp-eyebrow {
font-size: 7pt;
font-weight: 600;
letter-spacing: 0.16em;
text-transform: uppercase;
color: var(--tp-brand);
}
.tp .tp-title {
margin: 2mm 0 0 !important;
font-size: 20pt !important;
font-weight: 600 !important;
line-height: 1.12 !important;
letter-spacing: -0.022em;
color: var(--tp-ink) !important;
}
.tp-lede {
max-width: 150mm;
margin-top: 3mm !important;
font-size: 9.5pt;
color: var(--tp-ink-2);
} .tp-hero {
display: grid;
grid-template-columns: 1fr 1.05fr;
gap: 8mm;
padding: 6mm 7mm;
border-radius: 1.2mm;
background: var(--tp-ink);
color: #fff;
}
.tp-hero__main {
display: flex;
flex-direction: column;
justify-content: center;
}
.tp-hero__k,
.tp-hero__kpis dt {
font-size: 6.5pt;
font-weight: 600;
letter-spacing: 0.08em;
text-transform: uppercase;
color: rgba(226, 232, 240, 0.66);
}
.tp-hero__v {
margin-top: 1.5mm;
font-size: 32pt;
font-weight: 600;
line-height: 1.05;
letter-spacing: -0.03em;
color: #fff;
}
.tp-hero__d {
margin-top: 2mm;
font-size: 9pt;
font-weight: 500;
color: var(--tp-electric);
}
.tp-hero.is-negative .tp-hero__d {
color: #e6ebf2;
}
.tp-hero__kpis {
display: grid;
grid-template-columns: 1fr 1fr;
border-left: 0.5pt solid rgba(255, 255, 255, 0.16);
}
.tp-hero__kpis > div {
padding: 2.2mm 0 2.2mm 5mm;
}
.tp-hero__kpis > div:nth-child(-n+2) {
border-bottom: 0.5pt solid rgba(255, 255, 255, 0.16);
}
.tp-hero__kpis dd {
margin-top: 1mm;
font-size: 11.5pt;
font-weight: 600;
line-height: 1.25;
color: #fff;
}
.tp-hero__kpis small {
display: block;
margin-top: 0.6mm;
font-size: 6.8pt;
font-weight: 400;
color: rgba(226, 232, 240, 0.66);
} .tp-bar {
display: grid;
grid-template-columns: minmax(40mm, auto) 1fr 28mm;
align-items: center;
gap: 5mm;
padding: 2mm 0;
}
.tp-bar + .tp-bar {
border-top: 0.5pt solid var(--tp-line);
}
.tp-bar__label {
font-size: 9pt;
font-weight: 600;
white-space: nowrap;
}
.tp-bar__label small {
margin-left: 1.5mm;
font-size: 7pt;
font-weight: 400;
color: var(--tp-muted);
}
.tp-bar__track {
display: block;
height: 2.6mm;
border-radius: 0.4mm;
background: #f1eee7;
overflow: hidden;
}
.tp-bar__fill {
display: block;
height: 100%;
background: var(--tp-ice);
}
.tp-bar--el .tp-bar__fill {
background: var(--tp-brand);
}
.tp-bar__val {
text-align: right;
font-size: 10pt;
font-weight: 600;
} .tp-cols {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 9mm;
align-items: start;
margin-top: 7mm;
}
.tp-cols > .tp-block {
margin-top: 0;
}
.tp-cols--tables {
grid-template-columns: 1fr 1.08fr;
} .tp-dl dl > div,
.tp-sources dl > div {
display: grid;
grid-template-columns: 27mm 1fr;
gap: 3mm;
padding: 1.25mm 0;
border-bottom: 0.5pt solid var(--tp-line);
}
.tp-dl dl > div:first-child,
.tp-sources dl > div:first-child {
border-top: 0.5pt solid var(--tp-line);
}
.tp-dl dt,
.tp-sources dt {
padding-top: 0.3mm;
font-size: 6.8pt;
font-weight: 600;
letter-spacing: 0.06em;
text-transform: uppercase;
color: var(--tp-muted);
}
.tp-dl dd,
.tp-sources dd {
font-size: 8.4pt;
color: var(--tp-ink);
}
.tp-dl dd small {
display: block;
margin-top: 0.4mm;
font-size: 7pt;
color: var(--tp-muted);
} .tp-notes ul {
display: grid;
gap: 1.6mm;
}
.tp-notes li {
padding: 2mm 3.5mm;
border-left: 1.4pt solid var(--tp-line-2);
background: #faf9f6;
font-size: 8pt;
color: var(--tp-ink-2);
break-inside: avoid;
}
.tp-notes li.is-strong {
border-left-color: var(--tp-brand);
}
.tp-notes li strong {
color: var(--tp-ink);
font-weight: 600;
}  .tp-page .tp-block,
.tp-page .tp-cols {
margin-top: 6mm;
}
.tp-page .tp-cols > .tp-block {
margin-top: 0;
}
.tp-path ol {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 4mm;
}
.tp-path li {
padding-top: 2.4mm;
border-top: 1.6pt solid var(--tp-brand);
}
.tp-path li.is-ice {
border-top-color: var(--tp-ice);
}
.tp-path__k {
display: block;
font-size: 6.8pt;
font-weight: 600;
letter-spacing: 0.06em;
text-transform: uppercase;
color: var(--tp-muted);
}
.tp-path__v {
display: block;
margin-top: 1mm;
font-size: 15pt;
font-weight: 600;
line-height: 1.15;
letter-spacing: -0.015em;
}
.tp-path__d {
display: block;
margin-top: 1mm;
font-size: 7pt;
line-height: 1.4;
color: var(--tp-muted);
}
.tp-legend {
display: flex;
gap: 6mm;
margin: -1mm 0 2mm;
font-size: 7.5pt;
color: var(--tp-ink-2);
}
.tp-legend li {
display: flex;
align-items: center;
gap: 1.8mm;
}
.tp-legend li::before {
content: "";
width: 5mm;
height: 0;
border-top: 1.6pt solid var(--tp-ice);
}
.tp-legend li.is-el::before {
border-top-color: var(--tp-brand);
}
.tp-legend li.is-note {
margin-left: auto;
font-weight: 600;
color: var(--tp-brand);
}
.tp-legend li.is-note::before {
display: none;
}
.tp-chart {
display: block;
width: 100%;
height: auto;
font-family: inherit;
} .tp-table {
width: 100%;
margin: 0 !important;
border-collapse: collapse;
border: 0 !important;
font-size: 7.8pt;
line-height: 1.3 !important;
}
.tp-table tr,
.tp-table tbody tr:nth-child(odd),
.tp-table tbody tr:nth-child(even) {
background: none !important;
}
.tp-table th,
.tp-table td {
padding: 0.9mm 0 0.9mm 2mm !important;
border: 0 !important;
border-bottom: 0.5pt solid var(--tp-line) !important;
background: none !important;
text-align: right;
font-weight: 400;
white-space: nowrap;
color: var(--tp-ink);
}
.tp-table .tp-l {
padding-left: 0 !important;
text-align: left;
white-space: normal;
}
.tp-table thead th {
padding-top: 0 !important;
border-bottom: 0.8pt solid var(--tp-ink) !important;
font-size: 6.6pt;
font-weight: 600;
letter-spacing: 0.06em;
text-transform: uppercase;
color: var(--tp-muted);
}
.tp-table tbody th {
font-weight: 500;
}
.tp-table tr.tp-sub th,
.tp-table tr.tp-sub td {
color: var(--tp-muted);
}
.tp-table tr.tp-total th,
.tp-table tr.tp-total td {
border-top: 0.8pt solid var(--tp-ink) !important;
font-weight: 600;
}
.tp-table--years td:last-child {
color: var(--tp-brand);
font-weight: 500;
}
.tp-table--years tr.tp-total td:last-child {
font-weight: 700;
} .tp-sources dl > div {
grid-template-columns: 30mm 1fr;
padding: 1mm 0;
}
.tp-sources dd {
font-size: 7.8pt;
color: var(--tp-ink-2);
}
.tp-disclaimer {
margin-top: 2.6mm !important;
font-size: 7pt;
line-height: 1.5;
color: var(--tp-muted);
}
.tp-closing > .tp-block {
margin-top: 0;
}
.tp-closing > .tp-cta {
margin-top: 5mm;
} .tp-cta {
display: grid;
grid-template-columns: 1fr auto;
gap: 2.4mm 8mm;
align-items: center;
padding: 4mm 5.5mm;
border-radius: 1.2mm;
background: var(--tp-tint);
}
.tp-cta__k {
display: block;
font-size: 6.8pt;
font-weight: 600;
letter-spacing: 0.14em;
text-transform: uppercase;
color: var(--tp-brand);
}
.tp-cta__t {
display: block;
margin-top: 1mm;
font-size: 10.5pt;
font-weight: 600;
line-height: 1.3;
}
.tp-cta ul {
display: flex;
gap: 5mm;
font-size: 8.4pt;
font-weight: 500;
white-space: nowrap;
}
.tp-cta__link {
grid-column: 1 / -1;
padding-top: 2mm;
border-top: 0.5pt solid rgba(15, 77, 168, 0.18);
font-size: 6.8pt;
color: var(--tp-muted);
}
.tp-cta__link span {
color: var(--tp-ink-2);
word-break: break-all;
}
}