/*
Theme Name: jltoday Ultimate
Theme URI: https://jltoday.com/
Author: jltoday
Description: jltoday brand access hub layout.
Version: 5.0.0
Text Domain: jltoday
*/

:root {
    --bg: #020705;
    --bg-2: #06120c;
    --panel: #07140d;
    --panel-2: #0b2014;
    --card: rgba(8, 25, 15, .88);
    --card-2: rgba(5, 13, 9, .96);
    --text: #f8fff9;
    --muted: #b7c8bf;
    --soft: #7c9187;
    --green: #00d875;
    --green-2: #25f294;
    --gold: #e9c35d;
    --gold-2: #fff0a3;
    --line: rgba(255, 255, 255, .1);
    --line-2: rgba(233, 195, 93, .28);
    --shadow: 0 24px 70px rgba(0, 0, 0, .42);
    --radius: 8px;
    --container: 1180px;
}

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

html,
body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--text);
    background:
        radial-gradient(circle at 18% 4%, rgba(0, 216, 117, .16), transparent 30%),
        radial-gradient(circle at 88% 2%, rgba(233, 195, 93, .11), transparent 28%),
        linear-gradient(180deg, #04140b 0%, #020705 42%, #010302 100%);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    line-height: 1.68;
}

body.admin-bar .site-header {
    top: 32px;
}

img,
svg,
video,
iframe {
    max-width: 100%;
}

img {
    display: block;
    height: auto;
}

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

p {
    margin: 0 0 18px;
    color: var(--muted);
}

h1,
h2,
h3,
h4 {
    margin: 0 0 16px;
    color: var(--text);
    line-height: 1.12;
    letter-spacing: 0;
}

h1 {
    font-size: clamp(34px, 4.1vw, 60px);
}

h2 {
    font-size: clamp(24px, 2.2vw, 34px);
}

h3 {
    font-size: 21px;
}

.container {
    width: min(var(--container), calc(100% - 32px));
    margin-inline: auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    background: rgba(2, 7, 5, .94);
    backdrop-filter: blur(16px);
}

.site-header.is-scrolled {
    box-shadow: 0 16px 40px rgba(0, 0, 0, .34);
}

.header-inner {
    min-height: 78px;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 20px;
    align-items: center;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.brand-mark {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    overflow: hidden;
    border: 1px solid var(--line-2);
    border-radius: var(--radius);
    background:
        linear-gradient(145deg, rgba(0, 216, 117, .14), rgba(233, 195, 93, .1)),
        #07120d;
}

.brand-mark img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 4px;
}

.brand-copy {
    display: grid;
    min-width: 0;
}

.brand-copy strong {
    color: #fff;
    font-size: 22px;
    line-height: 1;
    text-transform: lowercase;
}

.brand-copy small {
    margin-top: 5px;
    color: var(--gold);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: lowercase;
}

.primary-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    min-width: 0;
}

.nav-link {
    padding: 10px 12px;
    border-radius: var(--radius);
    color: #dce7df;
    font-size: 14px;
    font-weight: 800;
    white-space: nowrap;
}

.nav-link:hover,
.nav-link.is-active {
    color: #06110c;
    background: linear-gradient(135deg, var(--gold-2), var(--gold));
}

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

.header-link,
.header-pill {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 900;
    white-space: nowrap;
}

.header-link {
    padding: 0 14px;
    border: 1px solid rgba(255, 255, 255, .14);
    color: #fff;
    background: rgba(255, 255, 255, .04);
}

.header-pill {
    padding: 0 18px;
    color: #031008;
    background: linear-gradient(135deg, var(--green-2), var(--green));
    box-shadow: 0 8px 28px rgba(0, 216, 117, .2);
}

.header-link svg,
.header-pill svg {
    width: 17px;
    height: 17px;
}

.header-link svg,
.header-pill svg,
.menu-toggle svg,
.mobile-bottom-bar svg,
.float-btn.top svg {
    fill: none;
    stroke: currentColor;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: var(--radius);
    color: #fff;
    background: rgba(255, 255, 255, .05);
    cursor: pointer;
}

.menu-toggle svg {
    width: 24px;
    height: 24px;
}

.page-shell {
    width: 100%;
    overflow: hidden;
}

.home-entry-hero,
.page-hero {
    position: relative;
    padding: 44px 0 42px;
    background:
        linear-gradient(180deg, rgba(0, 216, 117, .08), transparent),
        radial-gradient(circle at 18% 40%, rgba(0, 216, 117, .14), transparent 34%),
        radial-gradient(circle at 92% 12%, rgba(233, 195, 93, .08), transparent 26%);
}

.home-entry-hero::after,
.page-hero::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(233, 195, 93, .35), transparent);
}

.home-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 26px;
    align-items: stretch;
    margin-bottom: 28px;
}

.home-top {
    max-width: 900px;
}

.eyebrow,
.panel-kicker {
    display: inline-flex;
    margin-bottom: 12px;
    color: var(--gold);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.home-top h1,
.page-hero-copy h1 {
    max-width: 880px;
}

.home-top p,
.page-hero-copy p {
    max-width: 850px;
    color: #d6e4dc;
    font-size: 18px;
}

.home-summary {
    position: relative;
    min-width: 0;
    padding: 24px;
    border: 1px solid rgba(233, 195, 93, .22);
    border-radius: var(--radius);
    background:
        radial-gradient(circle at 20% 0%, rgba(233, 195, 93, .12), transparent 34%),
        linear-gradient(180deg, rgba(9, 28, 17, .94), rgba(3, 9, 6, .96));
    box-shadow: var(--shadow);
}

.home-summary h2 {
    font-size: 24px;
}

.summary-icon {
    margin-bottom: 18px;
}

.domain-lines {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.domain-line-card {
    position: relative;
    min-width: 0;
    min-height: 286px;
    display: flex;
    flex-direction: column;
    padding: 24px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .11);
    border-radius: var(--radius);
    background:
        linear-gradient(180deg, rgba(10, 30, 19, .95), rgba(3, 9, 6, .97));
    box-shadow: var(--shadow);
}

.domain-line-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 4px;
    background: linear-gradient(90deg, var(--green), var(--gold));
    opacity: .85;
}

.domain-line-card::after {
    content: "";
    position: absolute;
    right: 18px;
    bottom: 18px;
    width: 82px;
    height: 82px;
    border: 1px solid rgba(233, 195, 93, .12);
    border-radius: 22px;
    background: linear-gradient(135deg, rgba(233, 195, 93, .08), rgba(0, 216, 117, .06));
    opacity: .75;
}

.domain-line-card.primary-line {
    border-color: rgba(233, 195, 93, .52);
    background:
        radial-gradient(circle at 26% 12%, rgba(0, 216, 117, .22), transparent 34%),
        linear-gradient(180deg, rgba(10, 38, 22, .97), rgba(3, 9, 6, .97));
}

.line-head {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 18px;
}

.line-head span {
    color: var(--green-2);
    font-size: 13px;
    font-weight: 950;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.line-head strong {
    padding: 6px 10px;
    border: 1px solid rgba(233, 195, 93, .25);
    border-radius: 999px;
    color: var(--gold);
    font-size: 12px;
    background: rgba(255, 255, 255, .04);
}

.domain-line-card h2 {
    position: relative;
    z-index: 1;
    margin-bottom: 14px;
    color: #fff;
    font-size: clamp(24px, 2.05vw, 32px);
    overflow-wrap: anywhere;
}

.domain-line-card p {
    position: relative;
    z-index: 1;
    flex: 1;
    color: #c9d7cf;
    font-size: 16px;
}

.domain-line-card .btn {
    position: relative;
    z-index: 1;
    width: 100%;
}

.page-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(320px, .62fr);
    gap: 28px;
    align-items: stretch;
}

.page-hero-copy,
.hero-panel,
.content-card,
.side-stack,
.side-card,
.feature-card,
.link-card {
    min-width: 0;
    max-width: 100%;
}

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

.btn {
    min-height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 28px;
    border-radius: 999px;
    border: 1px solid transparent;
    font-size: 16px;
    font-weight: 950;
    text-align: center;
    white-space: normal;
}

.btn-primary {
    color: #031008;
    background: linear-gradient(135deg, var(--green-2), var(--green));
    border-color: rgba(233, 195, 93, .75);
    box-shadow: 0 12px 30px rgba(0, 216, 117, .18);
}

.btn-ghost {
    color: #fff;
    background: rgba(255, 255, 255, .045);
    border-color: rgba(255, 255, 255, .18);
}

.hero-panel,
.content-card,
.side-card,
.feature-card,
.link-card,
.faq-item,
.post-card {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: linear-gradient(180deg, rgba(10, 26, 18, .9), rgba(4, 11, 8, .95));
    box-shadow: var(--shadow);
}

.hero-panel {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 34px;
    border-color: rgba(233, 195, 93, .24);
}

.section-block {
    padding: 48px 0;
}

.content-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 26px;
    align-items: start;
}

.content-card {
    padding: 30px;
}

.content-card > h2:not(:first-child) {
    margin-top: 34px;
}

.content-card p,
.side-card p,
.hero-panel p,
.faq-item p,
.link-card span {
    overflow-wrap: break-word;
    word-break: normal;
}

.content-card h1,
.content-card h2,
.content-card h3,
.side-card h2,
.hero-panel h2,
.faq-item h2 {
    overflow-wrap: normal;
    word-break: normal;
}

.side-stack {
    display: grid;
    gap: 18px;
}

.side-card {
    padding: 24px;
}

.highlight-card {
    border-color: rgba(233, 195, 93, .3);
    background:
        radial-gradient(circle at 20% 0%, rgba(233, 195, 93, .09), transparent 32%),
        linear-gradient(180deg, rgba(11, 31, 18, .95), rgba(4, 11, 8, .96));
}

.feature-grid,
.link-card-grid,
.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin: 24px 0;
}

.link-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.feature-card,
.link-card {
    display: block;
    padding: 22px;
}

.premium-feature-card {
    position: relative;
    min-height: 226px;
    padding: 24px;
    overflow: hidden;
    border-color: rgba(233, 195, 93, .18);
    background:
        radial-gradient(circle at 20% 0%, rgba(233, 195, 93, .1), transparent 30%),
        linear-gradient(180deg, rgba(12, 32, 20, .94), rgba(4, 12, 8, .97));
}

.premium-feature-card::after {
    content: "";
    position: absolute;
    right: 18px;
    top: 18px;
    width: 58px;
    height: 58px;
    border-radius: 18px;
    border: 1px solid rgba(233, 195, 93, .12);
    background: linear-gradient(135deg, rgba(233, 195, 93, .08), rgba(0, 216, 117, .05));
    opacity: .65;
}

.premium-feature-card:hover,
.link-card:hover {
    border-color: rgba(233, 195, 93, .42);
    background:
        radial-gradient(circle at 20% 0%, rgba(233, 195, 93, .14), transparent 30%),
        linear-gradient(180deg, rgba(14, 40, 24, .96), rgba(4, 12, 8, .98));
}

.icon-badge {
    position: relative;
    z-index: 1;
    width: 64px;
    height: 64px;
    display: grid;
    place-items: center;
    margin-bottom: 18px;
    border: 1px solid rgba(233, 195, 93, .5);
    border-radius: 18px;
    color: var(--gold-2);
    background:
        radial-gradient(circle at 28% 20%, rgba(255, 240, 163, .18), transparent 34%),
        linear-gradient(145deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .02)),
        #07160e;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, .1),
        0 12px 28px rgba(0, 0, 0, .3);
}

.icon-badge::before {
    content: "";
    position: absolute;
    inset: 7px;
    border: 1px solid rgba(0, 216, 117, .24);
    border-radius: 14px;
}

.icon-badge svg {
    position: relative;
    z-index: 1;
    width: 34px;
    height: 34px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.4;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.feature-card strong,
.link-card strong {
    position: relative;
    z-index: 1;
    display: block;
    margin-bottom: 10px;
    color: #fff;
    font-size: 18px;
    line-height: 1.25;
}

.feature-card span,
.link-card span {
    position: relative;
    z-index: 1;
    display: block;
    color: var(--muted);
}

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

.info-item {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 14px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, .03);
}

.info-item > span {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    color: #031008;
    background: linear-gradient(135deg, var(--green-2), var(--green));
    font-weight: 950;
}

.check-list {
    display: grid;
    gap: 10px;
    margin: 16px 0 0;
    padding: 0;
    list-style: none;
}

.check-list li {
    position: relative;
    padding-left: 24px;
    color: var(--muted);
    overflow-wrap: break-word;
}

.check-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: .65em;
    width: 9px;
    height: 9px;
    border-radius: 99px;
    background: var(--green);
    box-shadow: 0 0 0 4px rgba(0, 216, 117, .12);
}

.faq-list {
    display: grid;
    gap: 16px;
    margin: 24px 0;
}

.faq-item {
    padding: 22px;
}

.faq-item h2 {
    font-size: 24px;
}

.post-list {
    display: grid;
    gap: 18px;
}

.post-card {
    padding: 22px;
}

.post-card-title {
    font-size: 24px;
}

.post-card-meta {
    margin-bottom: 12px;
    color: var(--gold);
    font-size: 13px;
    font-weight: 800;
}

.text-link {
    color: var(--gold);
    font-weight: 900;
}

.site-footer {
    padding: 48px 0 94px;
    border-top: 1px solid rgba(255, 255, 255, .08);
    background: #020504;
}

.footer-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) repeat(4, minmax(0, .7fr));
    gap: 24px;
}

.footer-brand p {
    max-width: 420px;
    margin-top: 18px;
}

.footer-column {
    display: grid;
    gap: 9px;
    align-content: start;
}

.footer-column h2 {
    margin-bottom: 6px;
    color: var(--gold);
    font-size: 16px;
}

.footer-column a {
    color: var(--muted);
    font-size: 14px;
}

.footer-column a:hover {
    color: #fff;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    margin-top: 34px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, .08);
}

.footer-bottom p {
    margin: 0;
    font-size: 14px;
}

.floating-social {
    position: fixed;
    right: 18px;
    bottom: 96px;
    z-index: 1100;
    display: grid;
    gap: 10px;
}

.float-btn {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 999px;
    color: #fff;
    background: rgba(5, 14, 9, .92);
    box-shadow: 0 12px 30px rgba(0, 0, 0, .35);
    cursor: pointer;
}

.float-btn svg {
    width: 22px;
    height: 22px;
}

.float-btn.tg {
    color: #34a9ff;
}

.float-btn.fb {
    color: #5596ff;
}

.float-btn.wa {
    color: #35e17e;
}

.float-btn.tg svg,
.float-btn.fb svg,
.float-btn.wa svg {
    fill: currentColor;
    stroke: none;
}

.float-btn.top {
    color: var(--gold);
}

.mobile-bottom-bar {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 12px;
    z-index: 1090;
    display: none;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding: 10px;
    border: 1px solid rgba(233, 195, 93, .2);
    border-radius: var(--radius);
    background: rgba(3, 8, 6, .94);
    box-shadow: 0 16px 40px rgba(0, 0, 0, .45);
    backdrop-filter: blur(16px);
}

.mobile-bottom-bar a {
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: var(--radius);
    color: #041008;
    background: linear-gradient(135deg, var(--green-2), var(--green));
    font-weight: 950;
}

.mobile-bottom-bar svg {
    width: 18px;
    height: 18px;
}

@media (max-width: 1120px) {
    .header-inner {
        grid-template-columns: auto auto;
    }

    .primary-nav {
        grid-column: 1 / -1;
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 8px;
        scrollbar-width: none;
    }

    .primary-nav::-webkit-scrollbar {
        display: none;
    }

    .header-actions {
        justify-self: end;
    }

    .home-layout,
    .page-hero-grid,
    .content-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .side-stack,
    .domain-lines,
    .feature-grid,
    .cards-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .footer-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 760px) {
    body {
        padding-bottom: 84px;
    }

    body.admin-bar .site-header {
        top: 0;
    }

    .container {
        width: min(100% - 22px, var(--container));
    }

    .header-inner {
        min-height: 68px;
        grid-template-columns: minmax(0, 1fr) 44px;
        gap: 12px;
    }

    .brand-mark {
        width: 46px;
        height: 46px;
    }

    .brand-copy strong {
        font-size: 20px;
    }

    .brand-copy small {
        font-size: 11px;
    }

    .menu-toggle {
        display: grid;
        place-items: center;
    }

    .header-actions {
        display: none;
    }

    .primary-nav {
        position: fixed;
        top: 76px;
        left: 11px;
        right: 11px;
        z-index: 1001;
        display: none;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
        max-height: calc(100vh - 150px);
        overflow-y: auto;
        padding: 12px;
        border: 1px solid rgba(233, 195, 93, .22);
        border-radius: var(--radius);
        background: rgba(3, 8, 6, .98);
        box-shadow: 0 18px 48px rgba(0, 0, 0, .5);
    }

    .primary-nav.is-open {
        display: grid;
    }

    .nav-link {
        width: 100%;
        padding: 13px 10px;
        text-align: center;
        background: rgba(255, 255, 255, .05);
        border: 1px solid rgba(255, 255, 255, .06);
    }

    .home-entry-hero,
    .page-hero {
        padding: 28px 0 24px;
    }

    .home-layout {
        gap: 18px;
        margin-bottom: 18px;
    }

    .home-top h1,
    .page-hero-copy h1 {
        font-size: 31px;
        line-height: 1.12;
    }

    .home-top p,
    .page-hero-copy p,
    .content-card p,
    .hero-panel p,
    .side-card p,
    .faq-item p {
        font-size: 15px;
        line-height: 1.72;
    }

    .domain-lines,
    .page-hero-grid,
    .content-grid,
    .side-stack,
    .feature-grid,
    .link-card-grid,
    .cards-grid,
    .footer-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .domain-line-card {
        min-height: auto;
        padding: 20px;
    }

    .domain-line-card h2 {
        font-size: 24px;
    }

    .hero-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .hero-panel,
    .content-card,
    .side-card,
    .feature-card,
    .link-card,
    .faq-item,
    .home-summary {
        padding: 18px;
    }

    .content-card > h2:not(:first-child) {
        margin-top: 28px;
    }

    .info-item {
        grid-template-columns: minmax(0, 1fr);
    }

    .content-card h2,
    .side-card h2,
    .faq-item h2 {
        font-size: 22px;
        line-height: 1.25;
    }

    .icon-badge {
        width: 58px;
        height: 58px;
    }

    .icon-badge svg {
        width: 30px;
        height: 30px;
    }

    .footer-bottom {
        display: grid;
        gap: 8px;
    }

    .floating-social {
        right: 12px;
        bottom: 94px;
    }

    .float-btn {
        width: 42px;
        height: 42px;
    }

    .mobile-bottom-bar {
        display: grid;
    }
}

@media (max-width: 420px) {
    .container {
        width: min(100% - 18px, var(--container));
    }

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

    .home-top h1,
    .page-hero-copy h1 {
        font-size: 28px;
    }

    .domain-line-card h2 {
        font-size: 22px;
    }
}
/* Final homepage polish: centered icons + first-screen line navigation */
.home-entry-hero {
    min-height: calc(100vh - 78px);
    display: flex;
    align-items: center;
    padding: 28px 0 34px;
}

.home-layout {
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 22px;
    margin-bottom: 22px;
}

.home-top h1 {
    font-size: clamp(34px, 3.6vw, 54px);
    max-width: 760px;
}

.home-top p {
    max-width: 760px;
    font-size: 17px;
    line-height: 1.62;
}

.home-summary {
    padding: 22px;
}

.home-summary .icon-badge {
    margin-left: auto;
    margin-right: auto;
}

.home-summary h2,
.home-summary p {
    text-align: center;
}

.domain-line-card {
    min-height: 238px;
    padding: 22px;
}

.domain-line-card h2 {
    font-size: clamp(22px, 1.8vw, 28px);
}

.domain-line-card p {
    font-size: 15px;
    line-height: 1.58;
}

.premium-feature-card {
    min-height: 205px;
    padding: 24px 22px;
    text-align: center;
}

.premium-feature-card::after {
    display: none;
}

.premium-feature-card .icon-badge,
.feature-card .icon-badge {
    margin-left: auto;
    margin-right: auto;
}

.icon-badge {
    width: 66px;
    height: 66px;
    margin-bottom: 18px;
    border-radius: 50%;
    background:
        radial-gradient(circle at 35% 22%, rgba(255, 240, 163, .24), transparent 34%),
        linear-gradient(145deg, rgba(15, 64, 36, .95), rgba(4, 18, 11, .98));
    box-shadow:
        inset 0 0 0 7px rgba(255,255,255,.035),
        0 0 0 1px rgba(233,195,93,.28),
        0 14px 28px rgba(0,0,0,.32);
}

.icon-badge::before {
    inset: 9px;
    border-radius: 50%;
    border-color: rgba(0, 216, 117, .26);
}

.icon-badge svg {
    width: 32px;
    height: 32px;
    stroke-width: 2.2;
}

.feature-card strong,
.feature-card span {
    text-align: center;
}

.feature-card strong {
    font-size: 20px;
    margin-bottom: 12px;
}

.feature-card span {
    font-size: 15.5px;
    line-height: 1.62;
}

.feature-grid {
    gap: 18px;
}

/* Make first viewport fit better on normal desktop screens */
@media (min-width: 1121px) and (max-height: 820px) {
    .home-entry-hero {
        align-items: flex-start;
        padding-top: 24px;
    }

    .home-top p {
        margin-bottom: 12px;
    }

    .domain-line-card {
        min-height: 220px;
    }

    .domain-line-card p {
        margin-bottom: 14px;
    }
}

@media (max-width: 1120px) {
    .home-entry-hero {
        min-height: auto;
        align-items: flex-start;
    }

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

    .domain-lines {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 860px) {
    .domain-lines {
        grid-template-columns: 1fr;
    }

    .domain-line-card {
        min-height: auto;
    }
}

@media (max-width: 760px) {
    .home-entry-hero {
        padding: 22px 0 26px;
    }

    .home-summary {
        display: none;
    }

    .home-top h1 {
        font-size: 28px;
    }

    .home-top p {
        font-size: 14.5px;
    }

    .domain-line-card {
        padding: 18px;
    }

    .premium-feature-card {
        min-height: auto;
    }
}
/* Mobile feature card center fix */
@media (max-width: 760px) {
    .content-card {
        overflow: hidden;
    }

    .premium-feature-grid,
    .feature-grid {
        width: 100%;
        max-width: 100%;
        display: grid;
        grid-template-columns: 1fr;
        gap: 16px;
        margin-left: 0;
        margin-right: 0;
    }

    .premium-feature-card,
    .feature-card {
        width: 100%;
        max-width: 100%;
        min-width: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding: 24px 18px;
        text-align: center;
        overflow: hidden;
    }

    .premium-feature-card .icon-badge,
    .feature-card .icon-badge,
    .icon-badge {
        flex: 0 0 auto;
        margin-left: auto;
        margin-right: auto;
    }

    .premium-feature-card strong,
    .premium-feature-card span,
    .feature-card strong,
    .feature-card span {
        width: 100%;
        max-width: 100%;
        display: block;
        text-align: center;
        overflow-wrap: break-word;
        word-break: normal;
        white-space: normal;
    }

    .premium-feature-card strong,
    .feature-card strong {
        font-size: 22px;
        line-height: 1.22;
    }

    .premium-feature-card span,
    .feature-card span {
        font-size: 16px;
        line-height: 1.65;
    }
}

@media (max-width: 420px) {
    .premium-feature-card,
    .feature-card {
        padding-left: 16px;
        padding-right: 16px;
    }

    .premium-feature-card span,
    .feature-card span {
        font-size: 15.5px;
    }
}
@media (max-width: 760px) {
    .premium-feature-card,
    .feature-card {
        min-height: auto;
    }

    .icon-badge {
        width: 58px;
        height: 58px;
    }

    .icon-badge svg {
        width: 29px;
        height: 29px;
    }
}
/* Fix icon badge being stretched by feature-card span rules */
.feature-card .icon-badge,
.premium-feature-card .icon-badge,
.home-summary .icon-badge {
    width: 62px !important;
    height: 62px !important;
    max-width: 62px !important;
    min-width: 62px !important;
    display: grid !important;
    place-items: center !important;
    margin: 0 auto 18px !important;
    border-radius: 16px !important;
    text-align: center !important;
}

.feature-card .icon-badge svg,
.premium-feature-card .icon-badge svg,
.home-summary .icon-badge svg {
    width: 30px !important;
    height: 30px !important;
    max-width: 30px !important;
    display: block !important;
}

.feature-card > span:not(.icon-badge),
.premium-feature-card > span:not(.icon-badge) {
    width: 100%;
    display: block;
    text-align: center;
}

.icon-badge {
    background:
        linear-gradient(145deg, rgba(255,255,255,.08), rgba(255,255,255,.02)),
        radial-gradient(circle at 35% 20%, rgba(0,216,117,.22), transparent 42%),
        #07150d !important;
    border: 1px solid rgba(233,195,93,.42) !important;
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.08),
        0 10px 22px rgba(0,0,0,.32) !important;
}

.icon-badge::before {
    inset: 7px !important;
    border-radius: 12px !important;
}
/* Premium footer redesign */
.site-footer {
    position: relative;
    padding: 54px 0 104px;
    overflow: hidden;
    border-top: 1px solid rgba(233, 195, 93, .18);
    background:
        radial-gradient(circle at 16% 0%, rgba(0, 216, 117, .12), transparent 34%),
        radial-gradient(circle at 86% 12%, rgba(233, 195, 93, .1), transparent 30%),
        linear-gradient(180deg, #06140c 0%, #020504 62%, #010201 100%);
}

.site-footer::before {
    content: "";
    position: absolute;
    left: 5%;
    right: 5%;
    top: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(233, 195, 93, .55), transparent);
}

.footer-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(280px, 1.35fr) repeat(4, minmax(150px, .75fr));
    gap: 18px;
    align-items: stretch;
}

.footer-brand,
.footer-column {
    min-width: 0;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 8px;
    background:
        linear-gradient(180deg, rgba(11, 31, 18, .78), rgba(4, 10, 7, .78));
    box-shadow: 0 18px 42px rgba(0,0,0,.24);
}

.footer-brand {
    padding: 22px;
}

.footer-brand .brand {
    margin-bottom: 18px;
}

.footer-brand p {
    max-width: 430px;
    margin: 0;
    color: #c8d8cf;
    font-size: 15px;
    line-height: 1.72;
}

.footer-column {
    display: grid;
    gap: 0;
    align-content: start;
    padding: 20px;
}

.footer-column h2 {
    margin: 0 0 14px;
    color: var(--gold);
    font-size: 15px;
    font-weight: 950;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.footer-column a {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 36px;
    padding: 8px 0 8px 16px;
    border-top: 1px solid rgba(255,255,255,.06);
    color: #b9c9c0;
    font-size: 14px;
    font-weight: 700;
}

.footer-column a::before {
    content: "";
    position: absolute;
    left: 0;
    width: 7px;
    height: 7px;
    border-radius: 99px;
    background: rgba(0,216,117,.65);
    box-shadow: 0 0 0 4px rgba(0,216,117,.08);
}

.footer-column a:hover {
    color: #fff;
    padding-left: 20px;
}

.footer-bottom {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    gap: 18px;
    margin-top: 20px;
    padding: 18px 20px;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 8px;
    background: rgba(255,255,255,.035);
}

.footer-bottom p {
    margin: 0;
    color: #9fb0a7;
    font-size: 14px;
}

.footer-bottom p:last-child {
    color: var(--gold);
    font-weight: 900;
    letter-spacing: .06em;
}

@media (max-width: 1120px) {
    .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .footer-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 760px) {
    .site-footer {
        padding: 36px 0 104px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .footer-brand,
    .footer-column {
        padding: 18px;
    }

    .footer-brand p {
        max-width: none;
        font-size: 14.5px;
    }

    .footer-bottom {
        display: grid;
        gap: 8px;
        padding: 16px 18px;
    }
}
/* Footer notice for access and network statement */
.footer-notice {
    position: relative;
    z-index: 1;
    margin-bottom: 18px;
    padding: 24px;
    border: 1px solid rgba(233,195,93,.22);
    border-radius: 8px;
    background:
        radial-gradient(circle at 10% 0%, rgba(233,195,93,.1), transparent 28%),
        linear-gradient(180deg, rgba(12,32,20,.92), rgba(4,11,8,.96));
    box-shadow: 0 18px 42px rgba(0,0,0,.24);
}

.footer-notice h2 {
    margin-bottom: 14px;
    color: var(--gold);
    font-size: 18px;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.footer-notice p {
    max-width: none;
    margin-bottom: 12px;
    color: #c5d5cc;
    font-size: 14.5px;
    line-height: 1.72;
}

.footer-notice p:last-child {
    margin-bottom: 0;
}

@media (max-width: 760px) {
    .footer-notice {
        padding: 18px;
        margin-bottom: 12px;
    }

    .footer-notice h2 {
        font-size: 16px;
    }

    .footer-notice p {
        font-size: 14px;
    }
}
/* Remove decorative blocks from homepage line cards */
.domain-line-card::after {
    display: none !important;
}

.domain-line-card {
    overflow: hidden;
}
.line-domain-link {
    color: #fff;
    text-decoration: none;
    overflow-wrap: anywhere;
}

.line-domain-link:hover {
    color: var(--gold);
}

.line-route-btn {
    width: 100%;
    white-space: nowrap;
}
.brand.logo-only {
    gap: 0;
}

.brand.logo-only .brand-mark {
    width: 150px;
    height: 56px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    overflow: visible;
}

.brand.logo-only .brand-mark img {
    width: 150px;
    height: auto;
    max-height: 56px;
    object-fit: contain;
    padding: 0;
}

.footer-brand .brand.logo-only .brand-mark {
    width: 170px;
    height: 64px;
}

.footer-brand .brand.logo-only .brand-mark img {
    width: 170px;
    max-height: 64px;
}

@media (max-width: 760px) {
    .brand.logo-only .brand-mark {
        width: 128px;
        height: 48px;
    }

    .brand.logo-only .brand-mark img {
        width: 128px;
        max-height: 48px;
    }

    .footer-brand .brand.logo-only .brand-mark {
        width: 150px;
        height: 56px;
        margin: 0 auto;
    }

    .footer-brand .brand.logo-only .brand-mark img {
        width: 150px;
        max-height: 56px;
    }
}
.jl-home-return {
  padding: 34px 0 52px;
}

.jl-home-return-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 207, 91, 0.28);
  border-radius: 18px;
  padding: 28px;
  background:
    radial-gradient(circle at top left, rgba(37, 255, 132, 0.14), transparent 34%),
    linear-gradient(135deg, rgba(10, 38, 24, 0.96), rgba(5, 15, 10, 0.98));
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.38);
}

.jl-home-return-card h2 {
  margin: 8px 0 10px;
  color: #ffe18a;
  font-size: clamp(24px, 3vw, 36px);
}

.jl-home-return-card p {
  max-width: 780px;
  margin: 0 0 20px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.75;
}

.jl-home-return-kicker {
  display: inline-flex;
  color: #20f078;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 13px;
}