/* =========================================================
   INTELLIGENCE — MAIN STYLES
   ========================================================= */

:root {
    --black: #111111;
    --black-soft: #1a1a1a;

    --white: #f4f3ef;
    --white-soft: #ebeae5;

    --gray: #777670;
    --gray-light: #aaa9a2;

    --border: rgba(17, 17, 17, 0.14);

    --max-width: 1240px;

    --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    background: var(--white);
    color: var(--black);

    font-family: Georgia, "Times New Roman", serif;

    line-height: 1.6;

    overflow-x: hidden;

    -webkit-font-smoothing: antialiased;
}

button,
input,
textarea {
    font: inherit;
}

button {
    cursor: pointer;
}

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


/* =========================================================
   HEADER
   ========================================================= */

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;

    background: rgba(244, 243, 239, 0.94);

    border-bottom: 1px solid var(--border);

    backdrop-filter: blur(14px);
}

.nav-container {
    width: min(100%, var(--max-width));

    height: 74px;

    margin: auto;

    padding: 0 28px;

    display: flex;
    align-items: center;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 12px;
    font-weight: 800;

    letter-spacing: 1.8px;
}

.logo-symbol {
    width: 28px;
    height: 28px;

    display: grid;
    place-items: center;

    border: 1px solid var(--black);

    font-family: Georgia, serif;

    font-size: 15px;
    font-weight: 400;

    transition: transform 0.5s var(--ease);
}

.logo:hover .logo-symbol {
    transform: rotate(90deg);
}

.desktop-nav {
    margin-left: auto;
    margin-right: 40px;

    display: flex;
    gap: 30px;
}

.nav-link {
    border: 0;
    background: transparent;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 12px;

    color: var(--gray);

    position: relative;

    transition: color 0.3s ease;
}

.desktop-nav .nav-link::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: -8px;

    width: 0;
    height: 1px;

    background: var(--black);

    transition: width 0.3s var(--ease);
}

.desktop-nav .nav-link:hover,
.desktop-nav .nav-link.active {
    color: var(--black);
}

.desktop-nav .nav-link:hover::after,
.desktop-nav .nav-link.active::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 14px;
}

.login-link {
    padding: 10px 5px;
}

.community-button {
    border: 1px solid var(--black);

    padding: 10px 17px;

    background: var(--black);
    color: var(--white);

    font-family: Arial, Helvetica, sans-serif;

    font-size: 11px;
    font-weight: 700;

    transition:
        transform 0.3s var(--ease),
        background 0.3s ease;
}

.community-button:hover {
    background: #303030;
    transform: translateY(-2px);
}


/* =========================================================
   MOBILE NAV
   ========================================================= */

.mobile-menu-button {
    display: none;

    width: 38px;
    height: 38px;

    border: 1px solid var(--border);

    background: transparent;
}

.mobile-menu-button span {
    display: block;

    width: 16px;
    height: 1px;

    margin: 5px auto;

    background: var(--black);
}

.mobile-nav {
    display: none;
}


/* =========================================================
   PAGE SYSTEM
   ========================================================= */

.page {
    display: none;

    min-height: calc(100vh - 74px);
}

.page.active-page {
    display: block;

    animation: pageIn 0.55s var(--ease);
}

@keyframes pageIn {
    from {
        opacity: 0;
        transform: translateY(12px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* =========================================================
   HERO
   ========================================================= */

.hero {
    width: min(100%, var(--max-width));

    min-height: calc(100vh - 74px);

    margin: auto;

    padding: 100px 28px;

    display: flex;
    align-items: center;

    position: relative;

    overflow: hidden;
}

.hero-content {
    position: relative;

    z-index: 2;

    max-width: 850px;
}

.eyebrow,
.section-label,
.card-category {
    font-family: Arial, Helvetica, sans-serif;

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 2px;

    text-transform: uppercase;

    color: var(--gray);
}

.eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;

    margin-bottom: 28px;
}

.live-dot {
    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: var(--black);

    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%,
    100% {
        opacity: 0.35;
        transform: scale(0.8);
    }

    50% {
        opacity: 1;
        transform: scale(1);
    }
}

.hero h1 {
    max-width: 900px;

    font-size: clamp(55px, 8vw, 105px);

    font-weight: 400;

    line-height: 0.94;

    letter-spacing: -5px;
}

.hero h1 em {
    display: block;

    color: var(--gray);

    font-style: italic;
}

.hero-text {
    max-width: 650px;

    margin-top: 38px;

    color: var(--gray);

    font-size: 18px;
}

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 14px;

    margin-top: 38px;
}

.primary-button,
.secondary-button,
.text-button,
.light-button {
    border: 0;

    transition:
        transform 0.3s var(--ease),
        background 0.3s ease;
}

.primary-button {
    display: inline-flex;
    align-items: center;
    gap: 18px;

    padding: 15px 20px;

    background: var(--black);
    color: var(--white);

    font-family: Arial, Helvetica, sans-serif;

    font-size: 11px;
    font-weight: 700;
}

.primary-button:hover {
    background: #303030;

    transform: translateY(-3px);
}

.primary-button span,
.text-button span {
    transition: transform 0.3s var(--ease);
}

.primary-button:hover span,
.text-button:hover span {
    transform: translateX(5px);
}

.secondary-button {
    padding: 14px 20px;

    border: 1px solid var(--border);

    background: transparent;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 11px;

    font-weight: 700;
}

.secondary-button:hover {
    background: var(--white-soft);

    transform: translateY(-3px);
}

.hero-note {
    display: flex;
    align-items: center;
    gap: 12px;

    margin-top: 42px;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 10px;

    text-transform: uppercase;

    letter-spacing: 1px;

    color: var(--gray);
}

.hero-note span {
    width: 32px;
    height: 1px;

    background: var(--black);
}


/* =========================================================
   HERO VISUAL
   ========================================================= */

.hero-visual {
    position: absolute;

    right: -20px;
    bottom: 80px;

    width: 390px;
    height: 390px;

    opacity: 0.65;

    pointer-events: none;

    flex-shrink: 0;
}

.visual-core {
    position: absolute;

    top: 50%;
    left: 50%;

    width: 70px;
    height: 70px;

    transform: translate(-50%, -50%);

    display: grid;
    place-items: center;

    border: 1px solid var(--black);

    background: var(--white);

    font-family: Arial, Helvetica, sans-serif;

    font-size: 11px;

    letter-spacing: 2px;

    z-index: 5;
}

.visual-ring {
    position: absolute;

    top: 50%;
    left: 50%;

    border: 1px solid var(--border);

    border-radius: 50%;

    transform-origin: center center;
}

.ring-one {
    width: 150px;
    height: 150px;

    transform: translate(-50%, -50%);

    animation: spin 13s linear infinite;
}

.ring-two {
    width: 250px;
    height: 120px;

    transform: translate(-50%, -50%) rotate(35deg);

    animation: spinReverse 17s linear infinite;
}

.ring-three {
    width: 330px;
    height: 230px;

    transform: translate(-50%, -50%) rotate(-30deg);

    animation: spin 24s linear infinite;
}

@keyframes spin {
    to {
        transform:
            translate(-50%, -50%)
            rotate(360deg);
    }
}

@keyframes spinReverse {
    to {
        transform:
            translate(-50%, -50%)
            rotate(-360deg);
    }
}

.visual-point {
    position: absolute;

    width: 5px;
    height: 5px;

    background: var(--black);

    border-radius: 50%;
}

.point-one {
    top: 38%;
    left: 17%;
}

.point-two {
    top: 74%;
    left: 76%;
}

.point-three {
    top: 19%;
    left: 70%;
}


/* =========================================================
   HOME SECTIONS
   ========================================================= */

.home-section {
    width: min(100%, var(--max-width));

    margin: auto;

    padding: 110px 28px;

    border-top: 1px solid var(--border);
}

.two-column {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 90px;

    margin-top: 30px;
}

.two-column h2,
.coverage-section > h2 {
    font-size: clamp(45px, 6vw, 75px);

    font-weight: 400;

    line-height: 0.98;

    letter-spacing: -3px;
}

.two-column h2 em,
.coverage-section > h2 em {
    color: var(--gray);

    font-style: italic;
}

.large-text {
    font-size: 20px;

    color: var(--gray);

    max-width: 550px;
}

.normal-text {
    margin-top: 18px;

    color: var(--gray);

    max-width: 520px;
}

.text-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;

    margin-top: 28px;

    padding: 0 0 6px;

    border-bottom: 1px solid var(--black);

    background: transparent;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 11px;
    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: 1px;
}

.benefit-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 30px;

    margin-top: 80px;

    border-top: 1px solid var(--border);
}

.benefit {
    padding-top: 24px;
}

.benefit small {
    font-family: Arial, Helvetica, sans-serif;

    font-size: 10px;

    color: var(--gray-light);
}

.benefit h3 {
    margin-top: 28px;

    font-size: 23px;

    font-weight: 400;
}

.benefit p {
    margin-top: 10px;

    max-width: 280px;

    color: var(--gray);

    font-family: Arial, Helvetica, sans-serif;

    font-size: 13px;
}


/* =========================================================
   COVERAGE
   ========================================================= */

.coverage-section {
    background: var(--white-soft);
}

.coverage-section > h2 {
    margin-top: 20px;

    margin-bottom: 70px;
}

.coverage-list {
    border-top: 1px solid var(--black);
}

.coverage-item {
    width: 100%;

    display: grid;

    grid-template-columns: 60px 1fr 40px;

    gap: 20px;

    align-items: center;

    padding: 30px 0;

    border: 0;

    border-bottom: 1px solid var(--border);

    background: transparent;

    text-align: left;

    transition:
        padding 0.35s var(--ease),
        background 0.35s ease;
}

.coverage-item:hover {
    padding-left: 15px;
    padding-right: 15px;

    background: rgba(255, 255, 255, 0.4);
}

.coverage-item .number {
    font-family: Arial, Helvetica, sans-serif;

    font-size: 10px;

    color: var(--gray-light);
}

.coverage-item h3 {
    font-size: 30px;

    font-weight: 400;
}

.coverage-item p {
    margin-top: 5px;

    color: var(--gray);

    font-family: Arial, Helvetica, sans-serif;

    font-size: 13px;
}

.arrow {
    font-size: 22px;

    transition: transform 0.3s var(--ease);
}

.coverage-item:hover .arrow {
    transform: translateX(6px);
}


/* =========================================================
   FINAL CTA
   ========================================================= */

.final-section {
    width: min(100%, var(--max-width));

    margin: auto;

    padding: 110px 28px;
}

.final-box {
    padding: 90px 30px;

    background: var(--black);

    color: var(--white);

    text-align: center;
}

.final-box h2 {
    max-width: 800px;

    margin: 25px auto;

    font-size: clamp(42px, 6vw, 72px);

    font-weight: 400;

    line-height: 1;

    letter-spacing: -3px;
}

.final-box p {
    color: #999;

    margin-bottom: 30px;

    font-size: 17px;
}

.light-button {
    padding: 15px 20px;

    background: var(--white);

    color: var(--black);

    font-family: Arial, Helvetica, sans-serif;

    font-size: 11px;

    font-weight: 700;
}

.light-button:hover {
    transform: translateY(-3px);
}


/* =========================================================
   INTERNAL PAGES
   ========================================================= */

.page-header {
    width: min(100%, var(--max-width));

    margin: auto;

    padding: 110px 28px 80px;

    border-bottom: 1px solid var(--border);
}

.page-header h1 {
    max-width: 900px;

    margin-top: 25px;

    font-size: clamp(55px, 8vw, 100px);

    font-weight: 400;

    line-height: 0.95;

    letter-spacing: -5px;
}

.page-header h1 em {
    color: var(--gray);

    font-style: italic;
}

.page-header p {
    max-width: 650px;

    margin-top: 30px;

    color: var(--gray);

    font-size: 18px;
}


/* =========================================================
   BLOG
   ========================================================= */

.content-grid {
    width: min(100%, var(--max-width));

    margin: auto;

    padding: 70px 28px 120px;

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 25px;
}

.content-card {
    min-height: 340px;

    padding: 32px;

    border: 1px solid var(--border);

    background: var(--white);

    transition:
        transform 0.35s var(--ease),
        background 0.35s ease;
}

.content-card:hover {
    transform: translateY(-5px);

    background: #faf9f5;
}

.featured-card {
    grid-column: span 2;

    min-height: 390px;

    background: var(--white-soft);
}

.card-category {
    display: block;

    margin-bottom: 25px;
}

.content-card h2 {
    max-width: 700px;

    font-size: 34px;

    font-weight: 400;

    line-height: 1.1;

    letter-spacing: -1px;
}

.content-card p {
    max-width: 600px;

    margin-top: 18px;

    color: var(--gray);

    font-size: 16px;
}

.read-button {
    margin-top: 30px;

    padding: 0 0 6px;

    border: 0;

    border-bottom: 1px solid var(--black);

    background: transparent;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 11px;

    font-weight: 700;

    text-transform: uppercase;
}


/* =========================================================
   NEWS
   ========================================================= */

.news-list {
    width: min(100%, var(--max-width));

    margin: auto;

    padding: 70px 28px 120px;
}

.news-item {
    display: grid;

    grid-template-columns: 60px 1fr 40px;

    gap: 20px;

    align-items: center;

    padding: 35px 0;

    border-top: 1px solid var(--border);

    transition:
        padding 0.35s var(--ease);
}

.news-item:last-child {
    border-bottom: 1px solid var(--border);
}

.news-item:hover {
    padding-left: 12px;
}

.news-date {
    font-family: Arial, Helvetica, sans-serif;

    color: var(--gray-light);

    font-size: 11px;
}

.news-item h2 {
    margin-top: 10px;

    font-size: 31px;

    font-weight: 400;

    line-height: 1.1;
}

.news-item p {
    max-width: 650px;

    margin-top: 8px;

    color: var(--gray);

    font-size: 15px;
}


/* =========================================================
   ARTICLES
   ========================================================= */

.article-layout {
    width: min(100%, var(--max-width));

    margin: auto;

    padding: 70px 28px 120px;
}

.long-article {
    display: grid;

    grid-template-columns: 80px 1fr;

    gap: 25px;

    padding: 45px 0;

    border-top: 1px solid var(--border);
}

.long-article:last-child {
    border-bottom: 1px solid var(--border);
}

.article-number {
    font-family: Arial, Helvetica, sans-serif;

    color: var(--gray-light);

    font-size: 11px;
}

.long-article h2 {
    max-width: 850px;

    margin-top: 12px;

    font-size: clamp(35px, 5vw, 58px);

    font-weight: 400;

    line-height: 1.03;

    letter-spacing: -2px;
}

.long-article p {
    max-width: 650px;

    margin-top: 20px;

    color: var(--gray);

    font-size: 17px;
}


/* =========================================================
   COMMUNITY / FORM
   ========================================================= */

.form-page {
    width: min(100%, var(--max-width));

    margin: auto;

    padding: 110px 28px 130px;

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 100px;

    align-items: center;
}

.form-introduction h1 {
    max-width: 650px;

    margin-top: 25px;

    font-size: clamp(52px, 7vw, 88px);

    font-weight: 400;

    line-height: 0.95;

    letter-spacing: -4px;
}

.form-introduction h1 em {
    display: block;

    color: var(--gray);

    font-style: italic;
}

.form-introduction p {
    max-width: 570px;

    margin-top: 30px;

    color: var(--gray);

    font-size: 18px;
}

.access-form {
    padding: 35px;

    border: 1px solid var(--border);

    background: var(--white-soft);
}

.form-field {
    margin-bottom: 22px;
}

.form-field label {
    display: block;

    margin-bottom: 8px;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 11px;

    font-weight: 700;
}

.form-field label span {
    color: var(--gray-light);

    font-weight: 400;
}

.form-field input,
.form-field textarea {
    width: 100%;

    padding: 14px 15px;

    border: 1px solid #cccac4;

    outline: none;

    background: var(--white);

    color: var(--black);

    font-family: Arial, Helvetica, sans-serif;

    font-size: 13px;

    transition:
        border 0.25s ease,
        background 0.25s ease;
}

.form-field textarea {
    min-height: 110px;

    resize: vertical;
}

.form-field input:focus,
.form-field textarea:focus {
    border-color: var(--black);

    background: #fff;
}

.submit-button {
    width: 100%;

    padding: 15px;

    border: 1px solid var(--black);

    background: var(--black);

    color: var(--white);

    font-family: Arial, Helvetica, sans-serif;

    font-size: 11px;

    font-weight: 700;

    transition:
        background 0.3s ease,
        transform 0.3s var(--ease);
}

.submit-button:hover {
    background: #303030;

    transform: translateY(-2px);
}

.submit-button span {
    margin-left: 10px;
}

.form-message {
    min-height: 20px;

    margin-top: 15px;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 12px;
}

.login-page {
    grid-template-columns: 1fr 0.8fr;
}

.login-box {
    padding: 45px;

    border: 1px solid var(--border);

    background: var(--white-soft);

    text-align: center;
}

.login-symbol {
    width: 55px;
    height: 55px;

    display: grid;
    place-items: center;

    margin: 0 auto 25px;

    border: 1px solid var(--black);

    font-size: 20px;
}

.login-box h2 {
    font-size: 28px;

    font-weight: 400;
}

.login-box p {
    margin: 12px auto 28px;

    max-width: 350px;

    color: var(--gray);

    font-size: 15px;
}


/* =========================================================
   FOOTER
   ========================================================= */

.site-footer {
    background: var(--black);

    color: var(--white);

    padding: 55px 0 25px;
}

.footer-container {
    width: min(100%, var(--max-width));

    margin: auto;

    padding: 0 28px;
}

.footer-container > div:first-child p {
    max-width: 300px;

    margin-top: 18px;

    color: #888;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 12px;
}

.footer-links {
    display: flex;

    gap: 25px;

    margin-top: 40px;
}

.footer-links button {
    border: 0;

    background: transparent;

    color: #999;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 11px;
}

.footer-links button:hover {
    color: #fff;
}

.footer-bottom {
    display: flex;

    justify-content: space-between;

    margin-top: 50px;

    padding-top: 20px;

    border-top: 1px solid #2d2d2d;

    color: #666;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 10px;
}


/* =========================================================
   RESPONSIVE — TABLET / SMALL LAPTOP
   ========================================================= */

@media (max-width: 1100px) {

    .hero {
        padding-left: 32px;
        padding-right: 32px;
    }

    .hero-content {
        max-width: 72%;
    }

    .hero-visual {
        width: 340px;
        height: 340px;

        right: -70px;
        bottom: 70px;
    }

    .ring-one {
        width: 135px;
        height: 135px;
    }

    .ring-two {
        width: 220px;
        height: 105px;
    }

    .ring-three {
        width: 290px;
        height: 200px;
    }

    .visual-core {
        width: 64px;
        height: 64px;
    }

    .two-column {
        gap: 55px;
    }

    .form-page {
        gap: 55px;
    }

}


/* =========================================================
   RESPONSIVE — TABLET
   ========================================================= */

@media (max-width: 900px) {

    .desktop-nav {
        gap: 18px;

        margin-right: 20px;
    }

    .hero {
        min-height: auto;

        padding-top: 85px;
        padding-bottom: 85px;
    }

    .hero-content {
        max-width: 68%;
    }

    .hero h1 {
        font-size: clamp(54px, 8vw, 78px);
        letter-spacing: -4px;
    }

    .hero-visual {
        width: 310px;
        height: 310px;

        right: -85px;
        bottom: 55px;

        opacity: 0.35;
    }

    .ring-one {
        width: 125px;
        height: 125px;
    }

    .ring-two {
        width: 205px;
        height: 100px;
    }

    .ring-three {
        width: 275px;
        height: 190px;
    }

    .visual-core {
        width: 60px;
        height: 60px;
    }

    .two-column,
    .form-page {
        grid-template-columns: 1fr;

        gap: 50px;
    }

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

    .benefit {
        padding: 25px 0;

        border-bottom: 1px solid var(--border);
    }

}


/* =========================================================
   RESPONSIVE — MOBILE
   ========================================================= */

@media (max-width: 700px) {

    /* ---------- HEADER ---------- */

    .nav-container {
        height: 68px;

        padding: 0 18px;
    }

    .logo {
        gap: 8px;

        font-size: 11px;

        letter-spacing: 1.5px;
    }

    .logo-symbol {
        width: 27px;
        height: 27px;
    }

    .desktop-nav,
    .login-link,
    .community-button {
        display: none;
    }

    .nav-actions {
        margin-left: auto;
    }

    .mobile-menu-button {
        display: block;

        width: 38px;
        height: 38px;

        flex-shrink: 0;
    }

    .mobile-nav {
        position: absolute;

        top: 68px;
        left: 0;

        width: 100%;

        padding: 15px 18px 25px;

        background: var(--white);

        border-bottom: 1px solid var(--border);

        display: flex;

        flex-direction: column;

        gap: 4px;

        transform: translateY(-120%);

        opacity: 0;

        pointer-events: none;

        transition:
            transform 0.35s var(--ease),
            opacity 0.35s ease;
    }

    .mobile-nav.open {
        transform: translateY(0);

        opacity: 1;

        pointer-events: auto;
    }

    .mobile-nav-link {
        width: 100%;

        padding: 14px;

        text-align: left;
    }

    .mobile-community-button {
        margin-top: 8px;

        padding: 14px;

        border: 0;

        background: var(--black);

        color: var(--white);

        font-family: Arial, Helvetica, sans-serif;

        font-size: 11px;

        font-weight: 700;
    }


    /* ---------- HERO ---------- */

    .hero {
        width: 100%;

        min-height: auto;

        padding:
            70px 18px
            65px;

        display: flex;

        flex-direction: column;

        align-items: stretch;

        overflow: hidden;
    }

    .hero-content {
        width: 100%;

        max-width: none;
    }

    .eyebrow {
        margin-bottom: 24px;

        font-size: 9px;

        letter-spacing: 1.6px;
    }

    .hero h1 {
        width: 100%;

        max-width: 100%;

        font-size: clamp(
            43px,
            13.5vw,
            68px
        );

        line-height: 0.96;

        letter-spacing: -2.5px;

        overflow-wrap: normal;

        word-break: normal;
    }

    .hero-text {
        width: 100%;

        max-width: 100%;

        margin-top: 30px;

        font-size: 16px;

        line-height: 1.55;
    }

    .hero-buttons {
        width: 100%;

        flex-direction: column;

        align-items: stretch;

        gap: 10px;

        margin-top: 30px;
    }

    .primary-button,
    .secondary-button {
        width: 100%;

        min-height: 48px;

        justify-content: center;
    }

    .hero-note {
        max-width: 100%;

        margin-top: 32px;

        font-size: 9px;

        line-height: 1.5;
    }

    .hero-note span {
        width: 25px;

        flex-shrink: 0;
    }


    /* ---------- MOBILE HERO RING ---------- */

    .hero-visual {
        position: relative;

        top: auto;
        right: auto;
        bottom: auto;
        left: auto;

        width: min(78vw, 290px);
        height: min(78vw, 290px);

        max-width: 290px;
        max-height: 290px;

        margin: 55px auto 0;

        opacity: 0.5;

        overflow: visible;

        flex-shrink: 0;
    }

    .visual-core {
        width: clamp(52px, 16vw, 64px);
        height: clamp(52px, 16vw, 64px);

        font-size: 10px;
    }

    .ring-one {
        width: 38%;
        height: 38%;
    }

    .ring-two {
        width: 68%;
        height: 33%;
    }

    .ring-three {
        width: 88%;
        height: 61%;
    }

    .visual-point {
        width: 4px;
        height: 4px;
    }


    /* ---------- HOME SECTIONS ---------- */

    .home-section,
    .final-section {
        width: 100%;

        padding:
            70px 18px;
    }

    .section-label {
        font-size: 9px;

        letter-spacing: 1.8px;
    }

    .two-column {
        grid-template-columns: 1fr;

        gap: 38px;

        margin-top: 25px;
    }

    .two-column h2,
    .coverage-section > h2 {
        width: 100%;

        font-size: clamp(
            40px,
            12vw,
            54px
        );

        line-height: 0.98;

        letter-spacing: -2px;
    }

    .large-text {
        width: 100%;

        max-width: 100%;

        font-size: 18px;
    }

    .normal-text {
        width: 100%;

        max-width: 100%;

        font-size: 15px;
    }

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

        gap: 0;

        margin-top: 55px;
    }

    .benefit {
        padding: 22px 0;
    }

    .benefit h3 {
        margin-top: 20px;

        font-size: 21px;
    }

    .benefit p {
        max-width: 100%;

        font-size: 13px;
    }


    /* ---------- COVERAGE ---------- */

    .coverage-section > h2 {
        margin-top: 18px;

        margin-bottom: 45px;
    }

    .coverage-item {
        grid-template-columns:
            28px minmax(0, 1fr) 22px;

        gap: 10px;

        padding: 24px 0;
    }

    .coverage-item:hover {
        padding-left: 5px;
        padding-right: 5px;
    }

    .coverage-item h3 {
        font-size: 22px;

        line-height: 1.15;
    }

    .coverage-item p {
        max-width: 100%;

        font-size: 12px;

        line-height: 1.5;
    }

    .arrow {
        font-size: 18px;
    }


    /* ---------- FINAL CTA ---------- */

    .final-section {
        padding-top: 70px;
        padding-bottom: 70px;
    }

    .final-box {
        width: 100%;

        padding:
            55px 18px;
    }

    .final-box h2 {
        width: 100%;

        font-size: clamp(
            36px,
            10.5vw,
            48px
        );

        line-height: 1.02;

        letter-spacing: -2px;
    }

    .final-box p {
        font-size: 15px;

        line-height: 1.5;
    }

    .light-button {
        width: 100%;

        min-height: 48px;
    }


    /* ---------- INTERNAL PAGE HEADER ---------- */

    .page-header {
        width: 100%;

        padding:
            70px 18px
            50px;
    }

    .page-header h1 {
        width: 100%;

        max-width: 100%;

        margin-top: 20px;

        font-size: clamp(
            45px,
            13vw,
            60px
        );

        line-height: 0.97;

        letter-spacing: -2.5px;
    }

    .page-header p {
        width: 100%;

        max-width: 100%;

        margin-top: 24px;

        font-size: 16px;

        line-height: 1.55;
    }


    /* ---------- BLOG ---------- */

    .content-grid {
        width: 100%;

        padding:
            50px 18px
            80px;

        grid-template-columns: 1fr;

        gap: 16px;
    }

    .content-card,
    .featured-card {
        grid-column: auto;

        width: 100%;

        min-height: auto;

        padding: 25px;
    }

    .featured-card {
        min-height: 330px;
    }

    .content-card h2 {
        max-width: 100%;

        font-size: 25px;

        line-height: 1.12;

        letter-spacing: -0.5px;
    }

    .content-card p {
        max-width: 100%;

        font-size: 15px;

        line-height: 1.55;
    }


    /* ---------- NEWS ---------- */

    .news-list {
        width: 100%;

        padding:
            50px 18px
            80px;
    }

    .news-item {
        grid-template-columns:
            27px minmax(0, 1fr) 18px;

        gap: 9px;

        padding: 28px 0;
    }

    .news-item:hover {
        padding-left: 5px;
    }

    .news-item h2 {
        font-size: 22px;

        line-height: 1.15;
    }

    .news-item p {
        max-width: 100%;

        font-size: 14px;

        line-height: 1.5;
    }

    .news-date {
        font-size: 10px;
    }


    /* ---------- ARTICLES ---------- */

    .article-layout {
        width: 100%;

        padding:
            50px 18px
            80px;
    }

    .long-article {
        grid-template-columns:
            27px minmax(0, 1fr);

        gap: 12px;

        padding: 35px 0;
    }

    .long-article h2 {
        max-width: 100%;

        font-size: clamp(
            30px,
            9vw,
            40px
        );

        line-height: 1.05;

        letter-spacing: -1.5px;
    }

    .long-article p {
        max-width: 100%;

        font-size: 15px;

        line-height: 1.55;
    }


    /* ---------- COMMUNITY / LOGIN ---------- */

    .form-page,
    .login-page {
        width: 100%;

        grid-template-columns: 1fr;

        gap: 40px;

        padding:
            70px 18px
            80px;
    }

    .form-introduction h1 {
        width: 100%;

        max-width: 100%;

        margin-top: 20px;

        font-size: clamp(
            43px,
            12.5vw,
            58px
        );

        line-height: 0.98;

        letter-spacing: -2.5px;
    }

    .form-introduction p {
        width: 100%;

        max-width: 100%;

        margin-top: 24px;

        font-size: 16px;

        line-height: 1.55;
    }

    .access-form {
        width: 100%;

        padding: 22px;
    }

    .form-field input,
    .form-field textarea {
        width: 100%;

        max-width: 100%;
    }

    .submit-button {
        min-height: 48px;
    }

    .login-box {
        width: 100%;

        padding: 35px 22px;
    }

    .login-box h2 {
        font-size: 25px;
    }

    .login-box p {
        max-width: 100%;

        font-size: 14px;
    }

    .login-box .primary-button {
        width: 100%;
    }


    /* ---------- FOOTER ---------- */

    .site-footer {
        padding:
            45px 0
            22px;
    }

    .footer-container {
        width: 100%;

        padding: 0 18px;
    }

    .footer-links {
        flex-wrap: wrap;

        gap: 15px 22px;

        margin-top: 32px;
    }

    .footer-bottom {
        flex-direction: column;

        gap: 8px;

        margin-top: 38px;
    }

}


/* =========================================================
   RESPONSIVE — VERY SMALL PHONES
   ========================================================= */

@media (max-width: 380px) {

    .nav-container {
        padding-left: 14px;
        padding-right: 14px;
    }

    .logo {
        font-size: 10px;

        letter-spacing: 1.2px;
    }

    .logo-symbol {
        width: 25px;
        height: 25px;
    }

    .hero,
    .home-section,
    .final-section,
    .page-header,
    .content-grid,
    .news-list,
    .article-layout,
    .form-page {
        padding-left: 14px;
        padding-right: 14px;
    }

    .hero {
        padding-top: 60px;
        padding-bottom: 55px;
    }

    .hero h1 {
        font-size: clamp(
            39px,
            12.5vw,
            48px
        );

        letter-spacing: -2px;
    }

    .hero-text {
        font-size: 15px;
    }

    .hero-note {
        font-size: 8px;

        letter-spacing: 0.7px;
    }

    .hero-visual {
        width: min(82vw, 270px);
        height: min(82vw, 270px);

        margin-top: 45px;
    }

    .two-column h2,
    .coverage-section > h2 {
        font-size: 40px;

        letter-spacing: -1.8px;
    }

    .coverage-item {
        grid-template-columns:
            23px minmax(0, 1fr) 17px;

        gap: 8px;
    }

    .coverage-item h3 {
        font-size: 20px;
    }

    .coverage-item p {
        font-size: 11px;
    }

    .final-box {
        padding-left: 15px;
        padding-right: 15px;
    }

    .final-box h2 {
        font-size: 36px;
    }

    .content-card,
    .featured-card {
        padding: 21px;
    }

    .access-form {
        padding: 18px;
    }

}