* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: #f7f7f5;
    color: #181818;
    font-family:
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Helvetica,
        Arial,
        sans-serif;
    -webkit-font-smoothing: antialiased;
}

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

.container {
    width: min(1120px, calc(100% - 40px));
    margin: 0 auto;
}

header {
    height: 72px;
    border-bottom: 1px solid #e5e5e1;
    background: rgba(247,247,245,.94);
    backdrop-filter: blur(16px);
    position: sticky;
    top: 0;
    z-index: 20;
}

.nav {
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 11px;
    font-size: 15px;
    font-weight: 650;
    white-space: nowrap;
}

.logo {
    width: 30px;
    height: 30px;
    border-radius: 9px;
    background: linear-gradient(145deg, #171717, #555);
    position: relative;
}

.logo::after {
    content: "";
    position: absolute;
    inset: 8px;
    border: 2px solid #fff;
    border-radius: 3px;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 25px;
}

.navlinks {
    display: flex;
    align-items: center;
    gap: 25px;
    color: #6b6b66;
    font-size: 14px;
}

.navlinks a:hover,
.navlinks a.active {
    color: #111;
}

.lang {
    display: flex;
    padding: 3px;
    background: #eaeaE6;
    border-radius: 9px;
}

.lang button {
    border: 0;
    background: transparent;
    padding: 7px 10px;
    border-radius: 7px;
    cursor: pointer;
    color: #686863;
    font-size: 12px;
    font-weight: 650;
}

.lang button.active {
    background: #fff;
    color: #161616;
    box-shadow: 0 1px 4px rgba(0,0,0,.08);
}

.hero {
    padding: 105px 0 92px;
}

.eyebrow {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 24px;
    color: #656560;
    font-size: 13px;
    font-weight: 600;
}

.dot {
    width: 7px;
    height: 7px;
    background: #45a15a;
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(69,161,90,.10);
}

h1 {
    max-width: 850px;
    margin: 0;
    font-size: clamp(46px, 7vw, 82px);
    line-height: .99;
    letter-spacing: -.055em;
    font-weight: 650;
}

.hero-text {
    max-width: 660px;
    margin-top: 30px;
    color: #686863;
    font-size: 19px;
    line-height: 1.62;
}

.actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 36px;
}

.button {
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    border-radius: 10px;
    border: 1px solid #deded9;
    background: #fff;
    font-size: 14px;
    font-weight: 600;
}

.button.primary {
    background: #1c1c1e;
    border-color: #1c1c1e;
    color: #fff;
}

.section {
    padding: 40px 0 96px;
}

.section-title {
    max-width: 700px;
    margin-bottom: 34px;
}

.section-title h2 {
    margin: 0 0 15px;
    font-size: 34px;
    letter-spacing: -.04em;
}

.section-title p {
    margin: 0;
    color: #72726d;
    line-height: 1.65;
}

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

.card {
    min-height: 245px;
    padding: 28px;
    background: #fff;
    border: 1px solid #e3e3de;
    border-radius: 18px;
}

.card-number {
    color: #999993;
    font-size: 12px;
    letter-spacing: .08em;
    font-weight: 650;
}

.card h3 {
    margin: 70px 0 12px;
    font-size: 21px;
    letter-spacing: -.03em;
}

.card p {
    margin: 0;
    color: #74746e;
    line-height: 1.65;
    font-size: 14px;
}

.page-head {
    padding: 100px 0 70px;
}

.page-head h1 {
    font-size: clamp(42px, 6vw, 68px);
}

.page-head p {
    max-width: 650px;
    color: #6d6d68;
    font-size: 18px;
    line-height: 1.65;
    margin-top: 24px;
}

.info-list {
    display: grid;
    gap: 14px;
}

.info-row {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 30px;
    padding: 24px 0;
    border-top: 1px solid #dfdfda;
}

.info-row strong {
    font-size: 14px;
}

.info-row p {
    margin: 0;
    color: #6e6e69;
    line-height: 1.65;
}

.status-box {
    background: #fff;
    border: 1px solid #e0e0db;
    border-radius: 18px;
    padding: 30px;
}

.status-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 0;
    border-bottom: 1px solid #ecece8;
}

.status-line:last-child {
    border-bottom: 0;
}

.status-ok {
    display: flex;
    gap: 8px;
    align-items: center;
    color: #3e7d4d;
    font-size: 14px;
    font-weight: 600;
}

footer {
    border-top: 1px solid #e3e3df;
    padding: 34px 0 42px;
    color: #81817b;
    font-size: 13px;
}

.footer-row {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

@media (max-width: 760px) {
    .navlinks {
        display: none;
    }

    .nav-right {
        gap: 10px;
    }

    .hero {
        padding: 72px 0 65px;
    }

    .page-head {
        padding: 70px 0 45px;
    }

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

    .info-row {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .footer-row {
        flex-direction: column;
    }

    .brand span:last-child {
        display: none;
    }
}


/* FHN BETA / UPDATES */

.beta-section {
    padding: 0 0 92px;
}

.beta-panel {
    padding: 34px;
    background:
        radial-gradient(circle at 90% 0%, rgba(0,0,0,.035), transparent 34%),
        #fff;
    border: 1px solid #e2e2dd;
    border-radius: 22px;
}

.beta-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 26px;
}

.beta-badge {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 11px;
    border-radius: 999px;
    background: #1d1d1f;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.beta-date {
    color: #8a8a84;
    font-size: 13px;
}

.beta-panel h2 {
    max-width: 690px;
    margin: 0;
    font-size: clamp(28px, 4vw, 42px);
    line-height: 1.08;
    letter-spacing: -.045em;
}

.beta-description {
    max-width: 650px;
    margin: 18px 0 32px;
    color: #70706b;
    font-size: 15px;
    line-height: 1.7;
}

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

.roadmap-step {
    padding: 20px;
    background: #f7f7f5;
    border: 1px solid #e6e6e1;
    border-radius: 14px;
}

.roadmap-head {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 18px;
}

.roadmap-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #c1c1bb;
}

.roadmap-step.done .roadmap-dot {
    background: #4b9e60;
}

.roadmap-step.active .roadmap-dot {
    background: #1d1d1f;
    box-shadow: 0 0 0 4px rgba(29,29,31,.08);
}

.roadmap-step strong {
    display: block;
    font-size: 14px;
}

.roadmap-state {
    display: block;
    margin-top: 7px;
    color: #85857f;
    font-size: 12px;
}

.beta-link {
    display: inline-flex;
    margin-top: 25px;
    font-size: 14px;
    font-weight: 650;
}

.beta-link:hover {
    opacity: .6;
}

.update-list {
    display: grid;
    gap: 14px;
}

.update-card {
    padding: 28px 30px;
    background: #fff;
    border: 1px solid #e2e2dd;
    border-radius: 18px;
}

.update-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 17px;
    color: #85857f;
    font-size: 12px;
}

.update-tag {
    padding: 5px 8px;
    background: #f0f0ec;
    border-radius: 7px;
    color: #5f5f5a;
    font-weight: 650;
}

.update-card h2 {
    margin: 0 0 12px;
    font-size: 22px;
    letter-spacing: -.03em;
}

.update-card p {
    max-width: 720px;
    margin: 0;
    color: #70706b;
    font-size: 14px;
    line-height: 1.7;
}

@media (max-width: 760px) {
    .beta-panel {
        padding: 25px;
    }

    .beta-top {
        align-items: flex-start;
        flex-direction: column;
    }

    .roadmap {
        grid-template-columns: 1fr;
    }
}
