@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;650;700;750;800;850&display=swap");

:root {
    --blue: #0145f2;
    --cyan: #4debff;
    --bg: #edf1f5;
    --ink: #0f172a;
    --muted: #64748b;
    --line: #dbe3ef;
    --surface: #ffffff;
    --dark: #07111f;
    --dark-soft: #0d1b2e;
    --gold: #f5c451;
    --gold-soft: #ffe8a3;
    --gold-dark: #9a6b09;
    --shadow: 0 24px 70px rgba(15, 23, 42, 0.09);
    --shadow-strong: 0 34px 100px rgba(15, 23, 42, 0.16);
}

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

html {
    scroll-behavior: smooth;
}

body {
    min-width: 320px;
    overflow-x: hidden;
    background: var(--bg);
    color: var(--ink);
    font-family: "Inter", sans-serif;
    -webkit-font-smoothing: antialiased;
}

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

img {
    display: block;
    max-width: 100%;
}

.landing-container {
    width: min(1180px, calc(100% - 44px));
    margin-inline: auto;
}

.public-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 1000;
    border-bottom: 1px solid rgba(219, 227, 239, 0.78);
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(16px);
    transition: box-shadow 180ms ease, background 180ms ease;
}

.public-header.is-scrolled {
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 16px 38px rgba(15, 23, 42, 0.08);
}

.public-header-inner {
    display: flex;
    width: min(1240px, calc(100% - 40px));
    min-height: 72px;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-inline: auto;
}

.public-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--ink);
    font-weight: 850;
    letter-spacing: -0.04em;
}

.public-logo img {
    width: 190px;
    height: 58px;
    border-radius: 0;
    object-fit: contain;
    object-position: left center;
}

.public-nav,
.public-actions,
.hero-buttons,
.hero-signals,
.cta-actions {
    display: flex;
    align-items: center;
}

.public-nav {
    gap: 5px;
}

.public-nav a,
.ghost-link,
.primary-link {
    display: inline-flex;
    min-height: 38px;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 700;
    white-space: nowrap;
    transition: transform 160ms ease, background 160ms ease, color 160ms ease, box-shadow 160ms ease;
}

.public-nav a {
    padding: 0 11px;
    color: #475569;
}

.public-nav a:hover,
.public-nav a[aria-current="page"] {
    background: #f1f6ff;
    color: var(--blue);
}

.public-actions {
    gap: 8px;
}

.ghost-link {
    padding: 0 13px;
    color: #475569;
}

.ghost-link:hover {
    background: #f8fafc;
    color: var(--blue);
}

.primary-link {
    padding: 0 16px;
    border: 1px solid rgba(1, 69, 242, 0.16);
    background: linear-gradient(135deg, var(--blue), #2563eb 62%, #26c8e8);
    color: #ffffff;
    box-shadow: 0 12px 26px rgba(1, 69, 242, 0.20);
}

.primary-link:hover,
.hero-primary:hover,
.hero-secondary:hover {
    transform: translateY(-1px);
}

.hero-section {
    position: relative;
    min-height: 820px;
    overflow: hidden;
    padding: 145px 0 90px;
    background:
        radial-gradient(circle at 9% 20%, rgba(77, 235, 255, 0.34), transparent 31%),
        radial-gradient(circle at 82% 16%, rgba(1, 69, 242, 0.14), transparent 27%),
        linear-gradient(180deg, #f8fbff 0%, var(--bg) 100%);
}

.hero-orb {
    position: absolute;
    border-radius: 999px;
    filter: blur(8px);
    pointer-events: none;
}

.hero-orb.one {
    width: 260px;
    height: 260px;
    right: -90px;
    top: 150px;
    background: rgba(1, 69, 242, 0.13);
}

.hero-orb.two {
    width: 180px;
    height: 180px;
    left: -70px;
    bottom: 130px;
    background: rgba(77, 235, 255, 0.26);
}

.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(430px, 1fr);
    align-items: center;
    gap: 58px;
}

.eyebrow,
.section-kicker {
    display: inline-flex;
    align-items: center;
    width: max-content;
    margin-bottom: 16px;
    padding: 7px 10px;
    border: 1px solid rgba(1, 69, 242, 0.15);
    border-radius: 9px;
    background: #eff6ff;
    color: var(--blue);
    font-size: 11px;
    font-weight: 850;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.section-kicker.dark {
    border-color: rgba(77, 235, 255, 0.18);
    background: rgba(77, 235, 255, 0.08);
    color: #aaf6ff;
}

.section-kicker.gold {
    border-color: rgba(245, 196, 81, 0.34);
    background: rgba(245, 196, 81, 0.12);
    color: var(--gold-soft);
}

.hero-copy h1,
.about-hero h1 {
    max-width: 720px;
    margin: 0 0 20px;
    color: var(--ink);
    font-size: clamp(42px, 6vw, 76px);
    line-height: 0.96;
    letter-spacing: -0.075em;
}

.hero-copy p,
.about-hero p {
    max-width: 610px;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.75;
}

.hero-buttons {
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 30px;
}

.hero-primary,
.hero-secondary {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    border-radius: 13px;
    font-size: 14px;
    font-weight: 800;
    transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.hero-primary {
    border: 1px solid rgba(1, 69, 242, 0.18);
    background: linear-gradient(135deg, var(--blue), #2563eb 62%, var(--cyan));
    color: #ffffff;
    box-shadow: 0 18px 40px rgba(1, 69, 242, 0.23);
}

.hero-secondary {
    border: 1px solid var(--line);
    background: #ffffff;
    color: #334155;
}

.hero-secondary.dark {
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
}

.hero-signals {
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 26px;
}

.hero-signals span {
    padding: 7px 10px;
    border: 1px solid #dbeafe;
    border-radius: 999px;
    background: #ffffff;
    color: #475569;
    font-size: 12px;
    font-weight: 750;
}

.product-preview {
    overflow: hidden;
    border: 1px solid rgba(148, 163, 184, 0.26);
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: var(--shadow-strong);
    backdrop-filter: blur(14px);
}

.preview-top {
    display: flex;
    min-height: 54px;
    align-items: center;
    gap: 8px;
    padding: 0 18px;
    border-bottom: 1px solid #e2e8f0;
    background: #f8fafc;
}

.preview-top span {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: #cbd5e1;
}

.preview-top span:first-child { background: #fb7185; }
.preview-top span:nth-child(2) { background: #facc15; }
.preview-top span:nth-child(3) { background: #22c55e; }

.preview-top strong {
    margin-left: auto;
    color: #64748b;
    font-size: 12px;
}

.preview-body {
    display: grid;
    gap: 14px;
    padding: 18px;
}

.preview-main-card,
.preview-kpis article,
.preview-list article,
.resources-grid article,
.audience-grid article {
    border: 1px solid #e2e8f0;
    background: #ffffff;
    box-shadow: 0 16px 44px rgba(15, 23, 42, 0.06);
}

.preview-main-card {
    padding: 20px;
    border-radius: 18px;
    background: linear-gradient(135deg, #ffffff, #eff6ff);
}

.preview-main-card small,
.preview-kpis span {
    color: #64748b;
    font-size: 12px;
    font-weight: 800;
}

.preview-main-card strong {
    display: block;
    margin: 6px 0;
    color: var(--blue);
    font-size: 44px;
    letter-spacing: -0.06em;
}

.preview-main-card p {
    margin-top: 10px;
    color: #64748b;
    font-size: 13px;
    line-height: 1.55;
}

.progress-track {
    height: 8px;
    overflow: hidden;
    border-radius: 99px;
    background: #dbeafe;
}

.progress-track i {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--blue), var(--cyan));
}

.preview-kpis {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.preview-kpis article {
    padding: 15px;
    border-radius: 15px;
}

.preview-kpis strong {
    display: block;
    margin: 6px 0 2px;
    color: var(--ink);
    font-size: 24px;
}

.preview-kpis small,
.preview-list span {
    color: #94a3b8;
    font-size: 11px;
}

.preview-list {
    display: grid;
    gap: 9px;
}

.preview-list article {
    display: grid;
    grid-template-columns: 8px 1fr auto;
    align-items: center;
    gap: 11px;
    padding: 13px;
    border-radius: 14px;
}

.preview-list i {
    width: 8px;
    height: 36px;
    border-radius: 999px;
    background: var(--blue);
}

.preview-list i.cyan {
    background: var(--cyan);
}

.preview-list strong {
    display: block;
    color: #334155;
    font-size: 13px;
}

.preview-list b {
    color: #475569;
    font-size: 11px;
}

.trust-strip {
    position: relative;
    z-index: 2;
    margin-top: -38px;
    padding-bottom: 34px;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    overflow: hidden;
    border: 1px solid rgba(219, 227, 239, 0.82);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: var(--shadow);
    backdrop-filter: blur(14px);
}

.trust-grid span {
    display: grid;
    min-height: 72px;
    place-items: center;
    border-right: 1px solid #edf2f7;
    color: #475569;
    font-size: 13px;
    font-weight: 850;
}

.trust-grid span:last-child {
    border-right: 0;
}

.light-section,
.resources-section,
.limits-section,
.flow-section,
.principles-section {
    padding: 86px 0;
    background: var(--bg);
}

.split-section,
.narrative-grid,
.belief-grid,
.about-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 42px;
    align-items: start;
}

.split-section h2,
.dark-copy h2,
.section-heading h2,
.narrative-grid h2,
.belief-grid h2,
.limits-card h2,
.cta-card h2 {
    margin: 0;
    color: var(--ink);
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.03;
    letter-spacing: -0.065em;
}

.split-section p,
.dark-copy p,
.section-heading p,
.narrative-grid p,
.belief-grid p,
.limits-card p,
.cta-card p {
    color: var(--muted);
    font-size: 16px;
    line-height: 1.75;
}

.dark-section {
    padding: 98px 0;
    background:
        radial-gradient(circle at 82% 16%, rgba(77, 235, 255, 0.18), transparent 26%),
        linear-gradient(135deg, var(--dark), var(--dark-soft));
    color: #ffffff;
}

.dark-copy h2,
.belief-grid h2,
.cta-card h2 {
    color: #ffffff;
}

.dark-copy p,
.belief-grid p,
.cta-card p {
    color: rgba(226, 232, 240, 0.78);
}

.operation-cards {
    display: grid;
    gap: 13px;
}

.operation-cards article,
.belief-list article {
    position: relative;
    overflow: hidden;
    padding: 22px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
}

.operation-cards article::after,
.belief-list article::after {
    position: absolute;
    inset: auto 18px 0;
    height: 2px;
    border-radius: 99px;
    background: linear-gradient(90deg, transparent, rgba(77, 235, 255, 0.7), transparent);
    content: "";
}

.operation-cards article.gold-card {
    border-color: rgba(245, 196, 81, 0.38);
    background:
        radial-gradient(circle at 88% 18%, rgba(245, 196, 81, 0.18), transparent 30%),
        rgba(255, 255, 255, 0.07);
}

.operation-cards article.gold-card::after {
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.operation-cards article.gold-card strong,
.operation-cards article.gold-card h3 {
    color: var(--gold-soft);
}

.operation-cards strong,
.belief-list b {
    color: #7cf3ff;
    font-size: 12px;
    font-weight: 850;
}

.operation-cards h3 {
    margin: 9px 0 7px;
    font-size: 20px;
}

.operation-cards p {
    color: rgba(226, 232, 240, 0.74);
    font-size: 14px;
    line-height: 1.6;
}

.section-heading {
    max-width: 760px;
    margin-bottom: 34px;
}

.section-heading.centered {
    max-width: 780px;
    margin-inline: auto;
    text-align: center;
}

.section-heading.centered .section-kicker {
    margin-inline: auto;
}

.section-heading h2 {
    margin-bottom: 12px;
}

.flow-section {
    background:
        radial-gradient(circle at 12% 14%, rgba(1, 69, 242, 0.08), transparent 25%),
        #f8fafc;
}

.flow-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 30px;
}

.flow-grid article {
    position: relative;
    min-height: 220px;
    overflow: hidden;
    padding: 24px;
    border: 1px solid #dbe3ef;
    border-radius: 22px;
    background: #ffffff;
    box-shadow: var(--shadow);
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.flow-grid article::before {
    position: absolute;
    right: -35px;
    bottom: -45px;
    width: 130px;
    height: 130px;
    border-radius: 999px;
    background: rgba(77, 235, 255, 0.14);
    content: "";
}

.flow-grid span {
    display: inline-flex;
    margin-bottom: 42px;
    color: var(--blue);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.12em;
}

.flow-grid h3 {
    margin-bottom: 9px;
    color: #172033;
    font-size: 21px;
    letter-spacing: -0.04em;
}

.flow-grid p {
    color: #64748b;
    font-size: 14px;
    line-height: 1.65;
}

.resources-grid,
.audience-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.resources-grid article,
.audience-grid article {
    min-height: 205px;
    padding: 22px;
    border-radius: 20px;
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.resources-grid article:hover,
.audience-grid article:hover,
.flow-grid article:hover,
.narrative-grid article:hover {
    transform: translateY(-3px);
    border-color: rgba(1, 69, 242, 0.18);
    box-shadow: 0 24px 70px rgba(15, 23, 42, 0.1);
}

.resources-grid span {
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    margin-bottom: 18px;
    border-radius: 11px;
    background: #eff6ff;
    color: var(--blue);
    font-weight: 850;
}

.resources-grid article.resource-featured {
    border-color: rgba(245, 196, 81, 0.52);
    background: linear-gradient(180deg, #fffdf4, #ffffff);
}

.resources-grid article.resource-featured span {
    background: #fff6d8;
    color: var(--gold-dark);
}

.resources-grid h3,
.audience-grid h3 {
    margin-bottom: 9px;
    color: #172033;
    font-size: 18px;
    letter-spacing: -0.03em;
}

.resources-grid p,
.audience-grid p {
    color: #64748b;
    font-size: 14px;
    line-height: 1.65;
}

.cta-section {
    padding: 84px 0;
    background: var(--bg);
}

.compact-dark {
    padding: 82px 0;
}

.command-grid,
.about-premium-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.85fr);
    align-items: center;
    gap: 46px;
}

.command-grid h2,
.about-premium-grid h2 {
    max-width: 720px;
    margin: 0 0 14px;
    color: #ffffff;
    font-size: clamp(30px, 4vw, 50px);
    line-height: 1.03;
    letter-spacing: -0.065em;
}

.command-grid p,
.about-premium-grid p {
    max-width: 660px;
    color: rgba(226, 232, 240, 0.76);
    font-size: 16px;
    line-height: 1.75;
}

.command-panel {
    display: grid;
    gap: 12px;
    padding: 14px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 26px 80px rgba(0, 0, 0, 0.22);
}

.command-panel article {
    display: grid;
    grid-template-columns: 74px 1fr;
    gap: 4px 12px;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.06);
}

.command-panel small {
    grid-row: span 2;
    align-self: center;
    color: rgba(226, 232, 240, 0.62);
    font-size: 12px;
    font-weight: 850;
    text-transform: uppercase;
}

.command-panel strong {
    color: #ffffff;
    font-size: 28px;
    letter-spacing: -0.05em;
}

.command-panel span {
    color: rgba(226, 232, 240, 0.66);
    font-size: 13px;
}

.command-panel article.gold-mini {
    border-color: rgba(245, 196, 81, 0.38);
    background: rgba(245, 196, 81, 0.1);
}

.command-panel article.gold-mini strong,
.command-panel article.gold-mini small {
    color: var(--gold-soft);
}

.cta-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    padding: 44px;
    border: 1px solid rgba(245, 196, 81, 0.2);
    border-radius: 28px;
    background:
        radial-gradient(circle at 88% 22%, rgba(245, 196, 81, 0.16), transparent 26%),
        radial-gradient(circle at 18% 15%, rgba(77, 235, 255, 0.18), transparent 28%),
        linear-gradient(135deg, #07111f, #10213a);
    box-shadow: var(--shadow-strong);
}

.cta-card > div:first-child {
    max-width: 700px;
}

.cta-card h2 {
    margin-bottom: 12px;
}

.cta-actions {
    flex: 0 0 auto;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
}

.public-footer {
    padding: 28px 0;
    border-top: 1px solid #dbe3ef;
    background: #ffffff;
}

.footer-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    color: #64748b;
    font-size: 13px;
    font-weight: 700;
}

.footer-grid nav {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-grid a:hover {
    color: var(--blue);
}

.about-hero {
    padding: 150px 0 84px;
    background:
        radial-gradient(circle at 8% 14%, rgba(77, 235, 255, 0.32), transparent 26%),
        linear-gradient(180deg, #f8fbff 0%, var(--bg) 100%);
}

.about-statement {
    padding: 30px;
    border: 1px solid rgba(250, 204, 21, 0.42);
    border-radius: 24px;
    background:
        radial-gradient(circle at 92% 10%, rgba(250, 204, 21, 0.24), transparent 34%),
        linear-gradient(145deg, #101827 0%, #0b1220 58%, #101c32 100%);
    box-shadow: 0 24px 70px rgba(15, 23, 42, 0.24);
}

.about-statement strong {
    display: block;
    margin-bottom: 10px;
    color: #facc15;
    font-size: 24px;
    letter-spacing: -0.04em;
}

.about-statement p {
    color: #cbd5e1;
    font-size: 15px;
    line-height: 1.7;
}

.connect-invite-card {
    margin-top: 34px;
    padding: 24px;
    border: 1px solid rgba(191, 219, 254, 0.9);
    border-radius: 20px;
    background:
        radial-gradient(circle at 90% 4%, rgba(77, 235, 255, 0.36), transparent 34%),
        radial-gradient(circle at 4% 98%, rgba(1, 69, 242, 0.12), transparent 34%),
        linear-gradient(145deg, #ffffff 0%, #f8fbff 100%);
    box-shadow: 0 22px 55px rgba(1, 69, 242, 0.13);
    color: #0f172a;
}

.connect-invite-logo {
    width: 118px;
    height: auto;
    margin-bottom: 15px;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.connect-invite-logo img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}

.connect-invite-card span {
    display: inline-flex;
    margin-bottom: 10px;
    color: var(--blue);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.connect-invite-card h3 {
    margin: 0 0 8px;
    color: #0f172a;
    font-size: 22px;
    letter-spacing: -0.04em;
}

.connect-invite-card p {
    margin: 0;
    color: #64748b;
    font-size: 14px;
    line-height: 1.65;
}

.connect-invite-card a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    margin-top: 18px;
    padding: 0 16px;
    border: 1px solid rgba(1, 69, 242, 0.2);
    border-radius: 999px;
    background: linear-gradient(135deg, var(--blue), #35c8ff);
    color: #ffffff;
    font-size: 13px;
    font-weight: 900;
    text-decoration: none;
    box-shadow: 0 16px 34px rgba(1, 69, 242, 0.22);
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.connect-invite-card a:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 42px rgba(1, 69, 242, 0.28);
}

.narrative-grid article {
    padding: 28px;
    border: 1px solid #e2e8f0;
    border-radius: 22px;
    background: #ffffff;
    box-shadow: var(--shadow);
}

.narrative-grid h2 {
    margin-bottom: 12px;
    font-size: clamp(27px, 3.4vw, 39px);
}

.principles-section {
    background:
        radial-gradient(circle at 88% 18%, rgba(77, 235, 255, 0.12), transparent 24%),
        #f8fafc;
}

.principles-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    gap: 34px;
    align-items: start;
}

.principles-cards {
    display: grid;
    gap: 12px;
}

.principles-cards article {
    padding: 22px;
    border: 1px solid #dbe3ef;
    border-radius: 20px;
    background: #ffffff;
    box-shadow: var(--shadow);
}

.principles-cards span {
    display: inline-flex;
    margin-bottom: 8px;
    color: var(--blue);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.principles-cards p {
    color: #64748b;
    font-size: 14px;
    line-height: 1.65;
}

.belief-list {
    display: grid;
    gap: 11px;
}

.belief-list article {
    display: grid;
    grid-template-columns: 48px 1fr;
    align-items: center;
    gap: 12px;
}

.belief-list span {
    color: rgba(255, 255, 255, 0.84);
    font-size: 15px;
    line-height: 1.5;
}

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

.limits-card {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 28px;
    padding: 34px;
    border: 1px solid #dbe3ef;
    border-radius: 24px;
    background: #ffffff;
    box-shadow: var(--shadow);
}

.about-premium {
    padding: 86px 0;
}

.gold-statement-card {
    position: relative;
    overflow: hidden;
    padding: 30px;
    border: 1px solid rgba(245, 196, 81, 0.38);
    border-radius: 26px;
    background:
        radial-gradient(circle at 82% 12%, rgba(245, 196, 81, 0.22), transparent 35%),
        rgba(255, 255, 255, 0.06);
    box-shadow: 0 26px 80px rgba(0, 0, 0, 0.24);
}

.gold-statement-card::before {
    display: block;
    width: 48px;
    height: 3px;
    margin-bottom: 24px;
    border-radius: 99px;
    background: linear-gradient(90deg, var(--gold), var(--gold-soft));
    content: "";
}

.gold-statement-card strong {
    display: block;
    margin-bottom: 14px;
    color: var(--gold-soft);
    font-size: 28px;
    line-height: 1.08;
    letter-spacing: -0.055em;
}

.gold-statement-card span {
    color: rgba(226, 232, 240, 0.78);
    font-size: 15px;
    line-height: 1.7;
}

/* Superfícies públicas adaptadas aos temas escuros da Hubs. */
html[data-hubs-tone="dark"] body {
    background: var(--hubs-theme-body, var(--bg));
}

html[data-hubs-tone="dark"] .public-header,
html[data-hubs-tone="dark"] .public-header.is-scrolled {
    border-color: var(--border, var(--line));
    background: color-mix(in srgb, var(--hubs-theme-panel, var(--surface)) 88%, transparent);
    box-shadow: 0 16px 38px rgba(0, 0, 0, 0.28);
}

html[data-hubs-tone="dark"] .public-nav a,
html[data-hubs-tone="dark"] .ghost-link,
html[data-hubs-tone="dark"] .footer-grid {
    color: var(--muted);
}

html[data-hubs-tone="dark"] .public-nav a:hover,
html[data-hubs-tone="dark"] .public-nav a[aria-current="page"],
html[data-hubs-tone="dark"] .ghost-link:hover {
    background: var(--hubs-theme-field);
    color: var(--blue);
}

html[data-hubs-tone="dark"] .hero-section,
html[data-hubs-tone="dark"] .about-hero {
    background:
        radial-gradient(circle at 9% 20%, color-mix(in srgb, var(--cyan) 20%, transparent), transparent 31%),
        radial-gradient(circle at 82% 16%, color-mix(in srgb, var(--blue) 18%, transparent), transparent 27%),
        var(--hubs-theme-body, var(--bg));
}

html[data-hubs-tone="dark"] .hero-secondary,
html[data-hubs-tone="dark"] .hero-signals span,
html[data-hubs-tone="dark"] .eyebrow,
html[data-hubs-tone="dark"] .section-kicker,
html[data-hubs-tone="dark"] .flow-grid > article > span,
html[data-hubs-tone="dark"] .resources-grid span {
    border-color: var(--border, var(--line));
    background: var(--hubs-theme-field);
    color: var(--text, var(--ink));
}

html[data-hubs-tone="dark"] .section-kicker,
html[data-hubs-tone="dark"] .eyebrow,
html[data-hubs-tone="dark"] .flow-grid > article > span,
html[data-hubs-tone="dark"] .resources-grid span {
    color: var(--blue);
}

html[data-hubs-tone="dark"] .product-preview {
    border-color: var(--border, var(--line));
    background: color-mix(in srgb, var(--hubs-theme-panel) 88%, transparent);
}

html[data-hubs-tone="dark"] .preview-top {
    border-color: var(--border, var(--line));
    background: var(--hubs-theme-panel-soft);
}

html[data-hubs-tone="dark"] .preview-top strong,
html[data-hubs-tone="dark"] .preview-main-card small,
html[data-hubs-tone="dark"] .preview-main-card p,
html[data-hubs-tone="dark"] .preview-kpis span,
html[data-hubs-tone="dark"] .preview-kpis small,
html[data-hubs-tone="dark"] .preview-list span {
    color: var(--muted);
}

html[data-hubs-tone="dark"] .preview-main-card,
html[data-hubs-tone="dark"] .preview-kpis article,
html[data-hubs-tone="dark"] .preview-list article,
html[data-hubs-tone="dark"] .flow-grid article,
html[data-hubs-tone="dark"] .resources-grid article,
html[data-hubs-tone="dark"] .audience-grid article,
html[data-hubs-tone="dark"] .narrative-grid article,
html[data-hubs-tone="dark"] .principles-cards article,
html[data-hubs-tone="dark"] .limits-card,
html[data-hubs-tone="dark"] .connect-invite-card {
    border-color: var(--border, var(--line));
    background: var(--hubs-theme-panel, var(--surface));
    color: var(--text, var(--ink));
    box-shadow: var(--shadow);
}

html[data-hubs-tone="dark"] .preview-main-card {
    background:
        linear-gradient(
            135deg,
            var(--hubs-theme-panel),
            color-mix(in srgb, var(--blue) 10%, var(--hubs-theme-panel))
        );
}

html[data-hubs-tone="dark"] .progress-track,
html[data-hubs-tone="dark"] .preview-list article {
    background-color: var(--hubs-theme-field);
}

html[data-hubs-tone="dark"] .preview-kpis strong,
html[data-hubs-tone="dark"] .preview-list strong,
html[data-hubs-tone="dark"] .preview-list b,
html[data-hubs-tone="dark"] .flow-grid h3,
html[data-hubs-tone="dark"] .resources-grid h3,
html[data-hubs-tone="dark"] .audience-grid h3,
html[data-hubs-tone="dark"] .connect-invite-card h3 {
    color: var(--text, var(--ink));
}

html[data-hubs-tone="dark"] .trust-strip {
    border-color: var(--border, var(--line));
    background: var(--hubs-theme-panel-soft);
}

html[data-hubs-tone="dark"] .trust-grid {
    border-color: var(--border, var(--line));
    background: var(--hubs-theme-panel);
    color: var(--muted);
    box-shadow: var(--shadow);
}

html[data-hubs-tone="dark"] .trust-grid span {
    border-color: var(--border, var(--line));
}

html[data-hubs-tone="dark"] .light-section,
html[data-hubs-tone="dark"] .flow-section,
html[data-hubs-tone="dark"] .resources-section,
html[data-hubs-tone="dark"] .principles-section {
    background: var(--bg);
}

html[data-hubs-tone="dark"] .public-footer {
    border-color: var(--border, var(--line));
    background: var(--hubs-theme-panel-soft);
}

@media (max-width: 980px) {
    .public-nav {
        display: none;
    }

    .hero-grid,
    .split-section,
    .narrative-grid,
    .belief-grid,
    .about-hero-grid,
    .limits-card,
    .command-grid,
    .about-premium-grid,
    .principles-layout {
        grid-template-columns: 1fr;
    }

    .hero-grid {
        gap: 34px;
    }

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

    .cta-card {
        align-items: stretch;
        flex-direction: column;
    }

    .cta-actions {
        flex-direction: row;
        flex-wrap: wrap;
    }
}

@media (max-width: 640px) {
    .landing-container,
    .public-header-inner {
        width: min(100% - 28px, 1180px);
    }

    .public-header-inner {
        min-height: 66px;
    }

    .public-logo img {
        width: 154px;
        height: 50px;
        border-radius: 0;
    }

    .public-actions {
        gap: 5px;
    }

    .ghost-link,
    .primary-link {
        min-height: 36px;
        padding-inline: 10px;
        font-size: 12px;
    }

    .hero-section,
    .about-hero {
        min-height: auto;
        padding: 112px 0 58px;
    }

    .hero-copy h1,
    .about-hero h1 {
        font-size: 40px;
        line-height: 1;
    }

    .hero-copy p,
    .about-hero p,
    .split-section p,
    .dark-copy p,
    .section-heading p,
    .narrative-grid p,
    .belief-grid p,
    .limits-card p,
    .cta-card p {
        font-size: 14px;
    }

    .preview-kpis,
    .resources-grid,
    .audience-grid,
    .flow-grid,
    .trust-grid {
        grid-template-columns: 1fr;
    }

    .trust-strip {
        margin-top: -22px;
    }

    .trust-grid span {
        min-height: 50px;
        border-right: 0;
        border-bottom: 1px solid #edf2f7;
    }

    .trust-grid span:last-child {
        border-bottom: 0;
    }

    .product-preview {
        border-radius: 20px;
    }

    .preview-body {
        padding: 13px;
    }

    .light-section,
    .resources-section,
    .limits-section,
    .dark-section,
    .cta-section,
    .flow-section,
    .principles-section {
        padding: 58px 0;
    }

    .cta-card,
    .limits-card,
    .narrative-grid article,
    .about-statement,
    .gold-statement-card {
        padding: 23px;
        border-radius: 20px;
    }

    .footer-grid {
        align-items: flex-start;
        flex-direction: column;
    }
}
