:root {
    --ink: #10211c;
    --muted: #65726b;
    --paper: #f6f6f0;
    --line: #dce2da;
    --lime: #d9ef74;
    --orange: #f5a35c;
    --purple: #8062d9;
    --white: #fff
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: 'DM Sans', sans-serif;
    font-size: 16px
}

button,
input,
select {
    font: inherit
}

button {
    cursor: pointer
}

a {
    color: inherit;
    text-decoration: none
}

.site-header {
    height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1240px;
    margin: auto;
    padding: 0 34px;
    border-bottom: 1px solid var(--line)
}

.logo {
    font-weight: 700;
    letter-spacing: -.05em;
    font-size: 20px
}

.logo span:last-child {
    font-weight: 400;
    color: var(--muted)
}

.logo-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border: 2px solid var(--ink);
    border-radius: 50%;
    font-size: 17px;
    margin-right: 7px
}

.site-header nav {
    display: flex;
    gap: 34px;
    color: var(--muted);
    font-size: 14px
}

.site-header nav a:hover,
.text-button:hover {
    color: var(--ink)
}

.text-button {
    border: 0;
    background: none;
    color: var(--ink);
    font-weight: 600
}

.text-button span,
.button span {
    margin-left: 10px
}

.hero {
    max-width: 1240px;
    margin: auto;
    min-height: 672px;
    padding: 104px 34px 80px;
    display: grid;
    grid-template-columns: 46% 54%;
    align-items: center
}

.kicker {
    font: 500 11px 'DM Mono', monospace;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--muted);
    margin: 0 0 25px
}

.live-dot,
.green-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #65a879;
    margin-right: 8px
}

.hero h1 {
    font: 700 clamp(56px, 7vw, 92px)/.92 'Fraunces', serif;
    letter-spacing: -.065em;
    margin: 0 0 32px
}

.hero h1 em,
.why-section h2 em {
    font-style: normal;
    color: var(--purple)
}

.lede {
    max-width: 480px;
    color: #53625b;
    font-size: 19px;
    line-height: 1.55;
    margin: 0 0 30px
}

.hero-actions {
    display: flex;
    gap: 10px;
    align-items: center
}

.button {
    border: 0;
    border-radius: 7px;
    padding: 15px 21px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform .2s, box-shadow .2s
}

.button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 12px #10211c18
}

.button-dark {
    background: var(--ink);
    color: #fff
}

.button-light {
    background: #fff;
    border: 1px solid var(--line);
    color: var(--ink)
}

.button-accent {
    background: var(--lime);
    color: var(--ink)
}

.fine-print,
.form-hint {
    font-size: 12px;
    color: #88928c;
    margin-top: 16px
}

.hero-visual {
    height: 470px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center
}

.orbit {
    position: absolute;
    border: 1px solid #cdd6cd;
    border-radius: 50%;
    transform: rotate(-20deg)
}

.orbit-one {
    width: 500px;
    height: 250px
}

.orbit-two {
    width: 580px;
    height: 310px;
    transform: rotate(31deg);
    opacity: .7
}

.signal-card {
    position: relative;
    z-index: 2;
    width: min(100%, 490px);
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 15px;
    box-shadow: 0 25px 60px #203a2b1a;
    padding: 22px 24px
}

.card-top,
.card-footer,
.domain-row,
.result-status,
.result-cta {
    display: flex;
    align-items: center;
    justify-content: space-between
}

.card-top {
    font: 500 10px 'DM Mono', monospace;
    color: #849087;
    letter-spacing: .1em
}

.mini-logo {
    font-size: 21px;
    color: var(--purple);
    margin-right: 8px
}

.card-menu {
    margin-left: auto
}

.domain-row {
    padding: 39px 0 31px;
    border-bottom: 1px solid var(--line)
}

.mono-label {
    font: 500 10px 'DM Mono', monospace;
    letter-spacing: .11em;
    color: #8a948d
}

.domain-row h2 {
    font: 600 24px 'DM Mono', monospace;
    letter-spacing: -.06em;
    margin: 8px 0 0
}

.status-pill {
    font: 500 10px 'DM Mono', monospace;
    letter-spacing: .06em;
    padding: 7px 9px;
    border-radius: 4px
}

.status-yellow {
    background: #fff0db;
    color: #a46713
}

.status-green {
    background: #e4f2da;
    color: #397047
}

.timeline {
    height: 82px;
    position: relative;
    margin: 0 5px
}

.timeline-line {
    position: absolute;
    top: 29px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--orange) 43%, #dfe6df 43%)
}

.timeline-point {
    position: absolute;
    top: 23px;
    width: 13px;
    height: 13px;
    background: #fff;
    border: 3px solid #cbd5cc;
    border-radius: 50%
}

.point-now {
    left: 41%;
    border-color: var(--orange);
    background: var(--orange)
}

.point-next {
    left: 68%
}

.point-end {
    right: 0
}

.timeline-label {
    position: absolute;
    top: 50px;
    font: 500 9px 'DM Mono', monospace;
    color: #98a29b
}

.label-now {
    left: 39%
}

.label-next {
    left: 61%
}

.label-end {
    right: 0
}

.card-alert {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #f8f8f3;
    border-radius: 8px;
    padding: 14px
}

.alert-icon {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    background: var(--lime);
    border-radius: 50%;
    font-size: 18px
}

.card-alert strong {
    font-size: 13px
}

.card-alert p {
    color: var(--muted);
    margin: 4px 0 0;
    font-size: 12px
}

.arrow {
    margin-left: auto;
    font-size: 20px
}

.card-footer {
    font: 10px 'DM Mono', monospace;
    color: #8a948d;
    margin-top: 20px
}

.card-footer b {
    color: #4f995d;
    margin-left: 5px
}

.floating-note {
    position: absolute;
    z-index: 3;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 12px 15px;
    display: flex;
    gap: 10px;
    box-shadow: 0 10px 25px #203a2b12;
    font-size: 12px
}

.floating-note small {
    display: block;
    color: var(--muted);
    margin-top: 4px;
    font-size: 11px
}

.note-icon {
    width: 26px;
    height: 26px;
    display: grid;
    place-items: center;
    background: #eee9ff;
    color: var(--purple);
    border-radius: 50%;
    font-size: 16px
}

.note-one {
    top: 32px;
    right: 2%
}

.note-two {
    bottom: 37px;
    left: 2%
}

.try-section {
    background: #10211c;
    color: #fff;
    padding: 102px max(34px, calc((100vw - 1172px)/2)) 110px
}

.section-intro {
    display: grid;
    grid-template-columns: 1fr 1.4fr 1fr;
    align-items: end;
    gap: 35px;
    border-bottom: 1px solid #ffffff28;
    padding-bottom: 45px
}

.section-intro .kicker {
    color: #a8b8ac;
    margin: 0
}

.section-intro h2 {
    font: 600 46px/.98 'Fraunces', serif;
    letter-spacing: -.05em;
    margin: 0
}

.section-intro>p:last-child {
    color: #adbab1;
    line-height: 1.5;
    margin: 0
}

.domain-form {
    max-width: 930px;
    margin: 47px auto 0
}

.domain-form label,
.wishlist-form label {
    display: block;
    font: 500 11px 'DM Mono', monospace;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: #a8b8ac;
    margin-bottom: 12px
}

.input-wrap {
    height: 64px;
    background: #fff;
    border-radius: 7px;
    display: flex;
    align-items: center;
    color: #98a49b;
    padding-left: 19px;
    font: 14px 'DM Mono', monospace
}

.input-wrap input {
    border: 0;
    outline: 0;
    min-width: 0;
    flex: 1;
    padding: 0 12px;
    color: var(--ink);
    font: 16px 'DM Mono', monospace
}

.input-wrap button {
    height: 52px;
    margin-right: 6px;
    padding: 0 21px;
    background: var(--lime);
    border: 0;
    border-radius: 5px;
    color: var(--ink);
    font-weight: 700
}

.form-hint {
    color: #73847a
}

.result-card {
    max-width: 930px;
    margin: 36px auto 0;
    background: #fff;
    color: var(--ink);
    padding: 23px;
    border-radius: 8px
}

.result-status {
    padding-bottom: 20px;
    border-bottom: 1px solid var(--line)
}

.status-mark {
    display: grid;
    place-items: center;
    background: #e4f2da;
    color: #397047;
    width: 33px;
    height: 33px;
    border-radius: 50%;
    margin-right: 13px
}

.result-status>div {
    margin-right: auto
}

.result-status h3 {
    font: 500 17px 'DM Mono', monospace;
    margin: 6px 0 0
}

.result-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    padding: 24px 0;
    gap: 20px
}

.result-grid strong {
    display: block;
    font-size: 13px;
    margin-top: 8px
}

.result-cta {
    border-top: 1px solid var(--line);
    padding-top: 20px;
    color: var(--muted);
    font-size: 13px
}

.result-cta .button {
    padding: 11px 14px;
    font-size: 12px
}

.why-section {
    max-width: 1172px;
    margin: auto;
    padding: 125px 0;
    display: grid;
    grid-template-columns: 40% 60%;
    gap: 50px
}

.why-section h2,
.wishlist-strip h2 {
    font: 600 50px/.98 'Fraunces', serif;
    letter-spacing: -.05em;
    margin: 0
}

.reasons {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px
}

.reasons article {
    border-top: 2px solid var(--ink);
    padding-top: 17px
}

.reasons span {
    font: 500 11px 'DM Mono', monospace;
    color: var(--purple)
}

.reasons h3 {
    font-size: 17px;
    margin: 35px 0 12px
}

.reasons p {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.55;
    margin: 0
}

.wishlist-strip {
    max-width: 1172px;
    margin: 0 auto 100px;
    background: var(--purple);
    color: white;
    padding: 52px 58px;
    border-radius: 13px;
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 30px
}

.wishlist-strip .kicker {
    color: #ded6ff
}

.wishlist-strip h2 {
    font-size: 46px
}

.wishlist-strip p:last-child {
    color: #e3defb;
    max-width: 420px;
    line-height: 1.5;
    margin-bottom: 0
}

footer {
    border-top: 1px solid var(--line);
    max-width: 1240px;
    margin: auto;
    padding: 31px 34px 38px;
    display: flex;
    align-items: center;
    gap: 25px;
    color: var(--muted);
    font-size: 12px
}

footer .logo {
    color: var(--ink);
    margin-right: auto
}

footer p {
    margin: 0
}

.modal-backdrop {
    position: fixed;
    inset: 0;
    background: #10211ca8;
    z-index: 9
}

.modal-open {
    overflow: hidden
}

dialog {
    z-index: 10;
    border: 0;
    border-radius: 11px;
    width: min(90vw, 480px);
    padding: 39px;
    background: var(--paper);
    color: var(--ink);
    box-shadow: 0 30px 80px #0005
}

dialog::backdrop {
    background: transparent
}

.modal-close {
    position: absolute;
    right: 20px;
    top: 15px;
    border: 0;
    background: none;
    font-size: 26px;
    color: var(--muted)
}

dialog h2 {
    font: 600 44px/.95 'Fraunces', serif;
    letter-spacing: -.05em;
    margin: 0 0 15px
}

dialog>p:not(.kicker) {
    color: var(--muted);
    line-height: 1.5;
    margin-bottom: 28px
}

.wishlist-form label {
    color: var(--muted);
    margin-top: 16px
}

.wishlist-form input,
.wishlist-form select {
    width: 100%;
    border: 1px solid var(--line);
    background: #fff;
    border-radius: 5px;
    padding: 13px;
    color: var(--ink);
    outline-color: var(--purple)
}

.wishlist-form button {
    width: 100%;
    margin-top: 23px
}

.wishlist-form .form-hint {
    margin: 11px 0 0;
    text-align: center
}

.toast {
    position: fixed;
    bottom: 25px;
    left: 50%;
    transform: translate(-50%, 20px);
    opacity: 0;
    pointer-events: none;
    background: var(--lime);
    color: var(--ink);
    padding: 15px 21px;
    border-radius: 6px;
    font-weight: 600;
    z-index: 20;
    transition: .25s
}

.toast.is-visible {
    opacity: 1;
    transform: translate(-50%, 0)
}

.toast.is-error {
    background: #ffc1b6
}

@media(max-width:850px) {
    .site-header {
        padding: 0 20px
    }

    .site-header nav {
        display: none
    }

    .hero {
        display: block;
        padding: 75px 20px 50px
    }

    .hero h1 {
        text-align: center
    }

    .hero .lede {
        max-width: 100%
    }

    .hero-actions {
        justify-content: center
    }

    .hero .fine-print {
        text-align: center
    }

    .hero-visual {
        height: 405px;
        margin-top: 35px
    }

    .signal-card {
        max-width: 470px
    }

    .note-one {
        right: 0
    }

    .note-two {
        left: 0
    }

    .try-section {
        padding: 75px 20px
    }

    .section-intro {
        display: block
    }

    .section-intro h2 {
        margin: 15px 0
    }

    .section-intro>p:last-child {
        max-width: 420px
    }

    .why-section {
        display: block;
        padding: 85px 20px
    }

    .why-section h2 {
        margin-bottom: 55px
    }

    .wishlist-strip {
        margin: 0 20px 70px;
        padding: 36px 28px;
        display: block
    }

    .wishlist-strip .button {
        margin-top: 27px
    }

    .reasons {
        gap: 18px
    }

    .reasons h3 {
        margin-top: 22px
    }
}

@media(max-width:560px) {
    .site-header {
        height: 68px
    }

    .logo {
        font-size: 18px
    }

    .text-button {
        font-size: 12px
    }

    .hero h1 {
        font-size: 59px
    }

    .lede {
        font-size: 17px
    }

    .hero-actions {
        flex-wrap: wrap
    }

    .hero-visual {
        height: 350px
    }

    .signal-card {
        padding: 17px 15px;
        transform: scale(.9)
    }

    .floating-note {
        font-size: 10px;
        padding: 9px
    }

    .note-one {
        top: 15px
    }

    .note-two {
        bottom: 13px
    }

    .domain-row h2 {
        font-size: 18px
    }

    .input-wrap {
        height: auto;
        min-height: 58px;
        padding-left: 12px
    }

    .input-wrap span {
        font-size: 11px
    }

    .input-wrap button {
        height: 48px;
        padding: 0 12px;
        font-size: 12px
    }

    .result-grid {
        grid-template-columns: 1fr;
        gap: 17px
    }

    .result-cta {
        display: block
    }

    .result-cta .button {
        margin-top: 17px;
        width: 100%
    }

    .why-section h2,
    .wishlist-strip h2 {
        font-size: 41px
    }

    .reasons {
        grid-template-columns: 1fr;
        gap: 30px
    }

    .reasons h3 {
        margin: 13px 0 7px
    }

    footer {
        padding: 25px 20px;
        display: block
    }

    footer p {
        margin: 17px 0
    }

    footer span:last-child {
        font-size: 11px
    }
}

.dashboard-section {
    background: #fff;
    display: grid;
    grid-template-columns: 30% 70%;
    gap: 55px;
    align-items: center;
    padding: 110px max(34px, calc((100vw - 1172px)/2));
    overflow: hidden
}

.dashboard-copy .kicker {
    color: #6d7d9a
}

.dashboard-copy h2 {
    font: 600 52px/.98 'Fraunces', serif;
    letter-spacing: -.05em;
    color: #102448;
    margin: 0 0 25px
}

.dashboard-copy h2 em {
    font-style: normal;
    color: #1679ed
}

.dashboard-copy>p:not(.kicker) {
    color: #6b7890;
    line-height: 1.6;
    max-width: 290px;
    margin-bottom: 30px
}

.text-link {
    font-size: 13px;
    font-weight: 700;
    color: #1679ed
}

.text-link span {
    margin-left: 8px
}

.dashboard-window {
    background: #f6f9fe;
    border: 1px solid #d9e4f4;
    border-radius: 12px;
    box-shadow: 0 20px 55px #143f8117;
    display: grid;
    grid-template-columns: 156px 1fr;
    min-width: 720px;
    color: #172844;
    overflow: hidden
}

.dashboard-sidebar {
    background: #f1f6fd;
    border-right: 1px solid #dde7f4;
    padding: 20px 13px
}

.dashboard-logo {
    font-size: 14px;
    font-weight: 700;
    margin: 0 8px 33px;
    white-space: nowrap;
    color: #112548
}

.dashboard-logo span {
    color: #1679ed
}

.dashboard-logo span:first-child {
    color: #1679ed;
    font-size: 19px
}

.side-item {
    font-size: 11px;
    color: #60708b;
    padding: 10px 8px;
    margin: 2px 0;
    border-radius: 5px;
    display: flex;
    gap: 10px;
    align-items: center
}

.side-item.is-active {
    background: #dbeaff;
    color: #1669d2;
    font-weight: 700
}

.dashboard-main {
    padding: 19px 22px
}

.dashboard-toolbar {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin-bottom: 23px
}

.dashboard-page-title {
    font-size: 22px;
    font-weight: 700;
    line-height: 1.1;
    margin-right: auto
}

.dashboard-page-title small {
    display: block;
    color: #7b8ba5;
    font-weight: 400;
    font-size: 11px;
    margin-top: 5px
}

.dashboard-search {
    background: white;
    border: 1px solid #dce6f2;
    border-radius: 4px;
    color: #8b9ab1;
    font-size: 10px;
    padding: 9px 14px;
    width: 160px
}

.avatar {
    background: #d8e7ff;
    color: #2868bd;
    border-radius: 50%;
    width: 28px;
    height: 28px;
    display: grid;
    place-items: center;
    font-size: 10px;
    font-weight: 700
}

.dashboard-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 13px
}

.dashboard-stats>div {
    background: white;
    border: 1px solid #e0e8f3;
    border-radius: 5px;
    padding: 12px;
    font-size: 11px;
    position: relative;
    padding-left: 43px
}

.dashboard-stats b,
.dashboard-stats small {
    display: block
}

.dashboard-stats small {
    color: #73839d;
    font-size: 9px;
    margin-top: 4px
}

.stat-icon {
    position: absolute;
    left: 12px;
    top: 13px;
    width: 22px;
    height: 22px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    font-weight: 700;
    font-size: 14px
}

.stat-green {
    background: #d8f4e8;
    color: #15a264
}

.stat-blue {
    background: #deecff;
    color: #2478e4
}

.stat-purple {
    background: #e8e0ff;
    color: #7954d7
}

.domain-table {
    background: #fff;
    border: 1px solid #e0e8f3;
    border-radius: 5px;
    padding: 13px 12px
}

.table-heading {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    margin-bottom: 11px
}

.table-heading a {
    font-size: 9px;
    color: #1874e5
}

.table-row {
    display: grid;
    grid-template-columns: 1.35fr 1.35fr 1.25fr 1.1fr 1.15fr 1fr;
    gap: 8px;
    align-items: center;
    border-top: 1px solid #edf1f6;
    padding: 9px 0;
    font-size: 9px;
    color: #64738a;
    white-space: nowrap
}

.table-row strong {
    color: #1674e5
}

.table-label {
    border: 0;
    padding: 0 0 5px;
    font-size: 8px;
    color: #8b98ab
}

.uptime {
    color: #119d64
}

.tag {
    background: #f0f3f7;
    border-radius: 9px;
    padding: 3px 5px;
    width: max-content;
    font-size: 8px
}

.tag-green {
    background: #dbf4e7;
    color: #25925f
}

.tag-yellow {
    background: #fff0cf;
    color: #ae7610
}

.online {
    color: #159961;
    font-size: 8px
}

.dashboard-lower {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 10px;
    margin-top: 13px
}

.mini-panel {
    background: #fff;
    border: 1px solid #e0e8f3;
    border-radius: 5px;
    padding: 12px;
    font-size: 10px
}

.mini-panel>b {
    display: block;
    margin-bottom: 15px
}

.mini-panel>div:first-child {
    display: flex;
    justify-content: space-between
}

.mini-panel>div strong {
    color: #159961;
    font-size: 11px
}

.chart {
    height: 58px;
    background: linear-gradient(180deg, #d8f5e9, transparent);
    margin: 8px 0;
    border-bottom: 1px solid #acd8c3;
    display: flex;
    align-items: flex-end;
    gap: 7px;
    padding: 0 7px
}

.chart i {
    display: block;
    width: 8px;
    background: #23b979;
    border-radius: 5px 5px 0 0;
    height: 34px
}

.chart i:nth-child(2) {
    height: 29px
}

.chart i:nth-child(3) {
    height: 36px
}

.chart i:nth-child(4) {
    height: 27px
}

.chart i:nth-child(5) {
    height: 31px
}

.chart i:nth-child(6) {
    height: 25px
}

.chart i:nth-child(7) {
    height: 37px
}

.chart i:nth-child(8) {
    height: 33px
}

.chart i:nth-child(9) {
    height: 40px
}

.chart i:nth-child(10) {
    height: 36px
}

.mini-panel>small {
    color: #8e9aae;
    font-size: 8px
}

.expiry-panel span,
.activity-panel span {
    display: block;
    margin: 11px 0;
    font-size: 9px
}

.expiry-panel span {
    color: #199968
}

.expiry-panel span small,
.activity-panel small {
    float: right;
    color: #8693a6;
    font-size: 8px
}

.expiry-panel mark {
    float: right;
    background: #def5e9;
    color: #208d5d;
    border-radius: 8px;
    padding: 3px 5px;
    font-size: 8px
}

.activity-panel span {
    color: #344562
}

.activity-panel small {
    display: block;
    float: none;
    margin-top: 3px;
    margin-left: 22px
}

.try-section {
    background: #0c2550
}

.try-section .section-intro .kicker {
    color: #9db5d8
}

.button-dark {
    background: #1679ed
}

.button-accent {
    background: #1679ed;
    color: #fff
}

.hero {
    background: linear-gradient(125deg, #091d40 0%, #0d2c5d 65%, #102f68 100%);
    max-width: none;
    color: #fff;
    padding-left: max(34px, calc((100vw - 1172px)/2));
    padding-right: max(34px, calc((100vw - 1172px)/2))
}

.site-header {
    max-width: none;
    padding-left: max(34px, calc((100vw - 1172px)/2));
    padding-right: max(34px, calc((100vw - 1172px)/2));
    background: #091d40;
    color: #fff;
    border-bottom-color: #ffffff22
}

.site-header nav,
.text-button {
    color: #d8e4f7
}

.hero h1 em,
.why-section h2 em {
    color: #3c9bff
}

.hero .kicker,
.hero .fine-print {
    color: #a9bfdd
}

.hero .lede {
    color: #c6d5eb
}

.signal-card {
    border-color: #bfd3ee;
    box-shadow: 0 25px 60px #020c2080
}

.orbit {
    border-color: #5678a8
}

.floating-note {
    border-color: #cad9ed
}

.dashboard-section+.try-section {
    padding-top: 90px
}

@media(max-width:850px) {
    .dashboard-section {
        display: block;
        padding: 80px 20px
    }

    .dashboard-copy {
        margin-bottom: 48px
    }

    .dashboard-window {
        min-width: 690px;
        transform-origin: left top;
        transform: scale(.92);
        margin-bottom: -45px
    }

    .dashboard-section+.try-section {
        padding-top: 75px
    }
}

@media(max-width:560px) {
    .dashboard-window {
        min-width: 690px;
        transform: scale(.55);
        margin-right: -300px;
        margin-bottom: -210px
    }

    .dashboard-copy h2 {
        font-size: 43px
    }

    .detail-grid {
        grid-template-columns: 1fr
    }

    .dashboard-section {
        padding-bottom: 30px
    }
}

.dashboard-section {
    grid-template-columns: 28% minmax(0, 1fr)
}

.site-header .logo {
    color: #fff
}

.site-header .logo-mark {
    border-color: #fff
}

.site-header .logo span:last-child {
    color: #9db5d8
}

.dashboard-section {
    display: none !important
}

.hero-visual {
    overflow: visible
}

.hero-visual .signal-card,
.hero-visual .orbit,
.hero-visual .floating-note {
    display: none
}

.hero-dashboard {
    position: relative;
    z-index: 2;
    width: 760px;
    background: #f5f8fd;
    border: 4px solid #adc9ee;
    border-radius: 14px;
    color: #1b2d4a;
    box-shadow: 0 22px 60px #020c2080;
    transform: scale(.84);
    transform-origin: center
}

.hero-dashboard-bar {
    height: 48px;
    background: #fff;
    border-bottom: 1px solid #e0e8f3;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 0 15px
}

.hero-dashboard-bar strong {
    font-size: 13px;
    margin-right: auto
}

.hero-dashboard-bar strong span {
    color: #177bf0;
    font-size: 18px
}

.hero-search {
    border: 1px solid #dce6f2;
    border-radius: 4px;
    padding: 7px 12px;
    color: #8b9ab1;
    font-size: 9px;
    width: 160px
}

.hero-avatar {
    display: grid;
    place-items: center;
    width: 25px;
    height: 25px;
    background: #dbeaff;
    border-radius: 50%;
    color: #2868bd;
    font-size: 9px;
    font-weight: 700
}

.hero-dashboard-body {
    display: grid;
    grid-template-columns: 140px 1fr;
    min-height: 390px
}

.hero-dashboard-body aside {
    background: #f0f5fc;
    border-right: 1px solid #dfe8f4;
    padding: 15px 10px
}

.hero-dashboard-body aside>* {
    display: block;
    padding: 9px 8px;
    color: #687993;
    font-size: 10px;
    font-weight: 400
}

.hero-dashboard-body aside b {
    color: #1472df;
    background: #dbeaff;
    border-radius: 5px
}

.hero-dashboard-content {
    padding: 20px 18px
}

.hero-dashboard-content h3 {
    font-size: 22px;
    margin: 0 0 17px
}

.hero-dashboard-content h3 small {
    display: block;
    color: #7889a3;
    font-size: 10px;
    font-weight: 400;
    margin-top: 4px
}

.hero-stat-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-bottom: 12px
}

.hero-stat-row div {
    background: #fff;
    border: 1px solid #e0e8f3;
    border-radius: 5px;
    padding: 10px 9px 10px 34px;
    position: relative;
    font-size: 9px
}

.hero-stat-row b {
    position: absolute;
    left: 9px;
    top: 12px;
    color: #1681e9;
    font-size: 16px
}

.hero-stat-row strong,
.hero-stat-row small {
    display: block
}

.hero-stat-row small {
    color: #8291a7;
    font-size: 8px;
    margin-top: 3px
}

.hero-domain-table {
    background: #fff;
    border: 1px solid #e0e8f3;
    border-radius: 5px;
    padding: 12px
}

.hero-domain-table header {
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    margin-bottom: 9px
}

.hero-domain-table header a {
    color: #1472df;
    font-size: 9px
}

.hero-domain-row {
    display: grid;
    grid-template-columns: 1.3fr 1.2fr 1fr 1.1fr 1.15fr .9fr;
    align-items: center;
    gap: 7px;
    border-top: 1px solid #edf1f6;
    padding: 9px 0;
    font-size: 8px;
    color: #64738a;
    white-space: nowrap
}

.hero-domain-row strong {
    color: #1674e5
}

.hero-domain-row.label {
    border-top: 0;
    color: #8b98ab;
    font-size: 7px;
    padding-top: 0
}

.up {
    color: #159c65
}

.hero-dashboard-footer {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 12px
}

.hero-dashboard-footer>div {
    background: #fff;
    border: 1px solid #e0e8f3;
    border-radius: 5px;
    padding: 10px;
    font-size: 9px
}

.hero-dashboard-footer em {
    float: right;
    color: #159c65;
    font-style: normal
}

.hero-dashboard-footer p {
    margin: 9px 0 0;
    color: #50627d;
    font-size: 8px
}

.hero-chart {
    height: 37px;
    background: linear-gradient(180deg, #d9f5e9, transparent);
    border-bottom: 1px solid #a9dbc3;
    margin-top: 9px;
    display: flex;
    align-items: flex-end;
    gap: 5px;
    padding: 0 7px
}

.hero-chart i {
    width: 8px;
    height: 22px;
    background: #22b978;
    border-radius: 3px 3px 0 0
}

.hero-chart i:nth-child(2),
.hero-chart i:nth-child(5) {
    height: 16px
}

.hero-chart i:nth-child(3),
.hero-chart i:nth-child(7) {
    height: 27px
}

.site-header .text-button {
    background: #1479eb;
    color: #fff;
    border-radius: 6px;
    padding: 12px 17px
}

.site-header .text-button:hover {
    background: #3d9aff;
    color: #fff;
    box-shadow: 0 5px 15px #020c2055
}

.button-dark:hover {
    background: #3d9aff;
    color: #fff
}

.button-light:hover {
    background: #1479eb;
    border-color: #1479eb;
    color: #fff
}

.button-accent:hover {
    background: #3d9aff;
    color: #fff
}

.hero-dashboard> :not(.dashboard-reference-image) {
    display: none !important
}

.dashboard-reference-image {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 9px
}

.hero {
    grid-template-columns: 48% 52%
}

.hero-dashboard {
    transform: scale(.92);
    transform-origin: right center
}

.site-header nav a,
.text-link,
.hero-domain-table header a,
.technical-details summary,
.modal-close,
.input-wrap button {
    transition: color .2s, background-color .2s, border-color .2s, box-shadow .2s
}

.site-header nav a:hover {
    color: #7fc0ff
}

.text-link:hover,
.hero-domain-table header a:hover {
    color: #69b2ff
}

.input-wrap button:hover {
    background: #3d9aff;
    color: #fff;
    box-shadow: 0 4px 12px #020c2040
}

.technical-details summary {
    display: inline-block;
    padding-bottom: 14px
}

.technical-details summary:hover {
    color: #3d9aff
}

.modal-close:hover {
    color: #1479eb
}

.contact-section {
    max-width: 1172px;
    margin: 0 auto 100px;
    padding: 58px;
    background: #eaf2fd;
    border: 1px solid #d6e5f8;
    border-radius: 12px;
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 30px
}

.contact-section .kicker {
    color: #3c6da7
}

.contact-section h2 {
    font: 600 45px/.98 'Fraunces', serif;
    letter-spacing: -.05em;
    color: #102448;
    margin: 0 0 18px
}

.contact-section>div>p:last-child {
    color: #667994;
    line-height: 1.55;
    max-width: 420px;
    margin: 0
}

.contact-section .button-light {
    background: #fff;
    border-color: #bdd5f2;
    color: #126ed7
}

.contact-section .button-light:hover {
    background: #1479eb;
    border-color: #1479eb;
    color: #fff
}

.contact-form label {
    display: block;
    color: var(--muted);
    font: 500 11px 'DM Mono', monospace;
    letter-spacing: .1em;
    text-transform: uppercase;
    margin: 16px 0 9px
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    border: 1px solid var(--line);
    background: #fff;
    border-radius: 5px;
    padding: 13px;
    color: var(--ink);
    outline-color: #1479eb
}

.contact-form textarea {
    min-height: 120px;
    resize: vertical
}

.contact-form button {
    width: 100%;
    margin-top: 22px
}

.contact-form .form-hint {
    margin: 11px 0 0;
    text-align: center
}

@media(max-width:850px) {
    .contact-section {
        margin: 0 20px 70px;
        padding: 38px 28px;
        display: block
    }

    .contact-section .button {
        margin-top: 25px
    }
}

@media(max-width:850px) {
    .hero-dashboard {
        transform: scale(.68);
        transform-origin: top center;
        margin-bottom: -130px
    }

    .hero-visual {
        height: 350px
    }

    .site-header .text-button {
        padding: 9px 11px;
        font-size: 11px
    }
}

@media(max-width:560px) {
    .hero-dashboard {
        transform: scale(1);
        margin-bottom: 0;
    }

    .hero-visual {
        height: 270px
    }
}

.technical-details {
    border-top: 1px solid var(--line);
    padding-top: 16px;
    font-size: 13px
}

.technical-details summary {
    cursor: pointer;
    color: var(--purple);
    font-weight: 700
}

.detail-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 20px
}

.detail-grid strong {
    display: block;
    font-size: 12px;
    line-height: 1.45;
    margin-top: 7px;
    word-break: break-word
}

.site-header .header-icon {
    display: inline-block;
    width: 24px;
    height: 24px;
    object-fit: contain;
    vertical-align: -6px;
    margin-right: 7px
}

footer .logo {
    display: inline-flex;
    align-items: center
}

footer .footer-icon {
    display: block;
    width: 25px;
    height: 25px;
    object-fit: contain;
    opacity: 1;
    visibility: visible;
    filter: invert(1);
    flex: 0 0 auto;
    margin-right: 7px
}
