:root {
    --ebs-bg: #050816;
    --ebs-bg-soft: #0e1428;
    --ebs-surface: rgba(14, 20, 40, 0.78);
    --ebs-surface-strong: rgba(8, 13, 27, 0.92);
    --ebs-border: rgba(148, 163, 184, 0.18);
    --ebs-text: #eff6ff;
    --ebs-text-muted: #94a3b8;
    --ebs-cyan: #22d3ee;
    --ebs-indigo: #4f46e5;
    --ebs-violet: #a855f7;
    --ebs-warm: #f97316;
    --ebs-shadow: 0 30px 80px rgba(2, 6, 23, 0.45);
    --ebs-radius-lg: 28px;
    --ebs-radius-md: 18px;
    --ebs-radius-sm: 12px;
    --ebs-max: 1240px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background:
        radial-gradient(circle at top left, rgba(34, 211, 238, 0.12), transparent 26%),
        radial-gradient(circle at top right, rgba(168, 85, 247, 0.14), transparent 28%),
        linear-gradient(180deg, #040711 0%, #081020 45%, #050816 100%);
    color: var(--ebs-text);
    font-family: "Manrope", sans-serif;
}

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

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

.ebs-shell {
    min-height: 100vh;
}

.ebs-header,
.ebs-main,
.ebs-footer {
    width: min(calc(100% - 2rem), var(--ebs-max));
    margin: 0 auto;
}

.ebs-header {
    position: sticky;
    top: 0;
    z-index: 10;
    padding: 1rem 0;
    backdrop-filter: blur(18px);
}

.ebs-header__inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 1.5rem;
    align-items: center;
    background:
        radial-gradient(circle at top right, rgba(168, 85, 247, 0.22), transparent 24%),
        linear-gradient(90deg, rgba(5, 8, 22, 0.92), rgba(13, 23, 40, 0.9) 58%, rgba(23, 37, 84, 0.88));
    border: 1px solid rgba(148, 163, 184, 0.22);
    border-radius: 999px;
    padding: 0.85rem 1rem 0.85rem 1.25rem;
    box-shadow:
        var(--ebs-shadow),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.ebs-brand img {
    width: min(220px, 42vw);
    height: auto;
}

.ebs-nav {
    min-width: 0;
}

.ebs-nav .menu,
.ebs-nav__list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.65rem;
    list-style: none;
    margin: 0;
    padding: 0.35rem;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 999px;
    background:
        linear-gradient(135deg, rgba(34, 211, 238, 0.04), rgba(79, 70, 229, 0.08)),
        rgba(255, 255, 255, 0.025);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.ebs-nav .menu-item,
.ebs-nav__item {
    margin: 0;
}

.ebs-nav .menu-item > a,
.ebs-nav__item a {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2.5rem;
    padding: 0.72rem 0.98rem;
    border: 1px solid transparent;
    border-radius: 999px;
    color: var(--ebs-text-muted);
    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    transition: color 160ms ease, border-color 160ms ease, background 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.ebs-nav .menu-item > a::before,
.ebs-nav__item a::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(135deg, rgba(34, 211, 238, 0.08), rgba(79, 70, 229, 0.12));
    opacity: 0;
    transition: opacity 160ms ease;
    pointer-events: none;
}

.ebs-nav .menu-item > a:hover,
.ebs-nav .menu-item > a:focus,
.ebs-nav__item a:hover,
.ebs-nav__item a:focus {
    border-color: rgba(34, 211, 238, 0.16);
    color: var(--ebs-text);
    box-shadow: 0 10px 24px rgba(2, 6, 23, 0.22);
    transform: translateY(-1px);
}

.ebs-nav .menu-item > a:hover::before,
.ebs-nav .menu-item > a:focus::before,
.ebs-nav__item a:hover::before,
.ebs-nav__item a:focus::before {
    opacity: 1;
}

.ebs-nav .current-menu-item > a,
.ebs-nav .current-menu-ancestor > a {
    color: var(--ebs-text);
    border-color: rgba(34, 211, 238, 0.22);
    background: linear-gradient(135deg, rgba(34, 211, 238, 0.12), rgba(79, 70, 229, 0.18));
    box-shadow:
        0 12px 28px rgba(2, 6, 23, 0.24),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.ebs-header__actions {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

.ebs-header__auth-links {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.ebs-language-switch {
    display: inline-flex;
    padding: 0.25rem;
    border-radius: 999px;
    border: 1px solid var(--ebs-border);
    background: rgba(255, 255, 255, 0.03);
}

.ebs-language-switch a {
    padding: 0.45rem 0.75rem;
    border-radius: 999px;
    color: var(--ebs-text-muted);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.ebs-language-switch a.is-active {
    background: linear-gradient(90deg, rgba(34, 211, 238, 0.14), rgba(79, 70, 229, 0.24));
    color: var(--ebs-text);
}

.ebs-main {
    padding: 1.25rem 0 4.5rem;
}

.ebs-hero,
.ebs-section,
.ebs-page {
    position: relative;
    overflow: hidden;
    margin-top: 1.4rem;
    background: var(--ebs-surface);
    border: 1px solid var(--ebs-border);
    border-radius: var(--ebs-radius-lg);
    box-shadow:
        var(--ebs-shadow),
        inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.ebs-section::before,
.ebs-page::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background:
        radial-gradient(circle at top right, rgba(79, 70, 229, 0.08), transparent 26%),
        radial-gradient(circle at bottom left, rgba(34, 211, 238, 0.06), transparent 20%);
    pointer-events: none;
}

.ebs-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.12fr) minmax(300px, 0.78fr);
    gap: 1.4rem;
    align-items: start;
    padding: clamp(1.35rem, 2.5vw, 2.45rem);
    overflow: hidden;
    position: relative;
}

.ebs-hero::after {
    content: "";
    position: absolute;
    inset: auto -10% -35% auto;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(34, 211, 238, 0.16), transparent 70%);
    pointer-events: none;
}

.ebs-eyebrow,
.ebs-page__eyebrow {
    margin: 0 0 1rem;
    color: var(--ebs-cyan);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.ebs-hero h1,
.ebs-page__header h1,
.ebs-section__intro h2 {
    margin: 0;
    font-family: "Sora", sans-serif;
    line-height: 1.04;
}

.ebs-hero h1 {
    font-size: clamp(2.65rem, 4.8vw, 4.85rem);
    max-width: 10.5ch;
    letter-spacing: -0.04em;
}

.ebs-section__intro h2::before,
.ebs-page__content h2::before,
.ebs-wysiwyg h2::before {
    content: "";
    display: block;
    width: 3.6rem;
    height: 0.22rem;
    margin: 0 0 0.7rem;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--ebs-cyan), var(--ebs-indigo), var(--ebs-violet));
}

.ebs-hero__lead,
.ebs-page__lead,
.ebs-section__intro p,
.ebs-pillar-card p,
.ebs-proof-card span,
.ebs-page__content,
.ebs-footer p {
    color: var(--ebs-text-muted);
    line-height: 1.7;
}

.ebs-hero__lead {
    max-width: 56ch;
    margin: 1rem 0 0;
    font-size: 0.99rem;
    line-height: 1.78;
}

.ebs-hero__market-note {
    display: inline-flex;
    max-width: 58ch;
    margin: 0.9rem 0 0;
    padding: 0.7rem 0.95rem;
    border-radius: 16px;
    border: 1px solid rgba(34, 211, 238, 0.18);
    background: rgba(34, 211, 238, 0.07);
    color: #c9f9ff;
    font-size: 0.86rem;
    line-height: 1.6;
    font-weight: 600;
}

.ebs-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    margin-top: 1.35rem;
}

.ebs-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 999px;
    padding: 0.86rem 1.15rem;
    background: linear-gradient(135deg, var(--ebs-cyan), var(--ebs-indigo));
    color: #06111d;
    font-weight: 800;
    font-size: 0.92rem;
    cursor: not-allowed;
    opacity: 0.9;
}

.ebs-button--link {
    cursor: pointer;
}

.ebs-button--ghost {
    background: rgba(255, 255, 255, 0.04);
    color: var(--ebs-text);
    border: 1px solid var(--ebs-border);
}

.ebs-hero__panel {
    position: relative;
    align-self: start;
}

.ebs-proof-grid {
    display: grid;
    gap: 0.85rem;
    align-content: start;
}

.ebs-proof-card,
.ebs-pillar-card,
.ebs-membership-card,
.ebs-access-card,
.ebs-access-state {
    background: linear-gradient(180deg, rgba(13, 23, 40, 0.9), rgba(10, 18, 31, 0.78));
    border: 1px solid rgba(157, 178, 200, 0.16);
    border-radius: var(--ebs-radius-md);
    padding: 1.15rem;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03), 0 18px 36px rgba(2, 6, 23, 0.22);
}

.ebs-proof-card {
    min-height: 112px;
    display: grid;
    align-content: start;
    gap: 0.2rem;
}

.ebs-proof-card span {
    font-size: 0.9rem;
}

.ebs-proof-card strong {
    margin-top: 0.2rem;
    font-size: 1.36rem;
    line-height: 1.15;
}

.ebs-proof-card strong,
.ebs-pillar-card h3,
.ebs-membership-card h3,
.ebs-access-card h3,
.ebs-access-state h4 {
    display: block;
    margin-top: 0.55rem;
    font-family: "Sora", sans-serif;
}

.ebs-pillar-card h3::before,
.ebs-step-card h3::before,
.ebs-include-card h3::before,
.ebs-membership-card h3::before,
.ebs-access-card h3::before,
.ebs-access-state h4::before,
.ebs-founder__detail h3::before,
.ebs-contact-card h3::before,
.ebs-page__content h3::before,
.ebs-wysiwyg h3::before {
    content: "";
    display: inline-block;
    width: 0.72rem;
    height: 0.72rem;
    margin-right: 0.5rem;
    border-radius: 0.26rem;
    background: linear-gradient(135deg, rgba(34, 211, 238, 0.9), rgba(79, 70, 229, 0.85));
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.08), 0 0 18px rgba(79, 70, 229, 0.2);
    vertical-align: -0.08rem;
}

.ebs-section,
.ebs-page {
    padding: clamp(1.3rem, 2.4vw, 2rem);
}

.ebs-section__intro,
.ebs-page__header {
    max-width: 62rem;
    margin-bottom: 1.1rem;
}

.ebs-section__intro h2,
.ebs-page__header h1 {
    font-size: clamp(1.8rem, 3vw, 2.75rem);
}

.ebs-pillars,
.ebs-membership-grid,
.ebs-access-grid,
.ebs-access-states {
    display: grid;
    gap: 0.95rem;
}

.ebs-steps,
.ebs-include-grid {
    display: grid;
    gap: 0.95rem;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.ebs-step-card,
.ebs-include-card {
    min-height: 0;
    background: var(--ebs-surface-strong);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--ebs-radius-md);
    padding: 1.1rem;
}

.ebs-step-card h3,
.ebs-include-card h3 {
    margin: 0 0 0.45rem;
    font-family: "Sora", sans-serif;
    font-size: 1.08rem;
    line-height: 1.3;
}

.ebs-pillars,
.ebs-membership-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.ebs-membership-grid--count-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    align-items: stretch;
}

.ebs-membership-card {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 100%;
    padding-top: 1.4rem;
}

.ebs-membership-notice {
    display: grid;
    gap: 0.45rem;
    margin-bottom: 1rem;
    padding: 1rem 1.1rem;
    border: 1px solid rgba(249, 115, 22, 0.24);
    border-radius: var(--ebs-radius-md);
    background:
        linear-gradient(135deg, rgba(249, 115, 22, 0.14), rgba(79, 70, 229, 0.14)),
        rgba(8, 13, 27, 0.9);
    box-shadow: 0 20px 50px rgba(2, 6, 23, 0.28);
}

.ebs-membership-notice__eyebrow {
    color: #fdba74;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.ebs-membership-notice p {
    margin: 0;
    color: var(--ebs-text);
    font-size: 0.94rem;
    line-height: 1.5;
}

.ebs-membership-card.is-featured {
    border-color: rgba(34, 211, 238, 0.28);
    box-shadow: 0 0 0 1px rgba(34, 211, 238, 0.18) inset;
    transform: translateY(-10px);
    background: linear-gradient(180deg, rgba(17, 29, 55, 0.98), rgba(8, 13, 27, 0.98));
}

.ebs-membership-card__ribbon {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    display: inline-flex;
    padding: 0.5rem 0.95rem;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--ebs-warm), #fb7185);
    color: #fff7ed;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    box-shadow: 0 14px 30px rgba(249, 115, 22, 0.3);
}

.ebs-membership-card__badge {
    display: inline-flex;
    margin-bottom: 1rem;
    padding: 0.3rem 0.7rem;
    border-radius: 999px;
    background: rgba(249, 115, 22, 0.12);
    color: #fdba74;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.ebs-membership-card__topline {
    color: var(--ebs-text-muted);
    font-size: 0.84rem;
    font-weight: 700;
}

.ebs-membership-card__price-note {
    margin-top: 0.85rem;
    color: #fdba74;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.ebs-membership-card__price {
    position: relative;
    display: flex;
    align-items: flex-end;
    gap: 0.45rem;
    margin: 1rem 0;
}

.ebs-membership-card__price::after {
    content: "";
    position: absolute;
    inset: -0.15rem -0.35rem;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.12), rgba(34, 211, 238, 0.08));
    backdrop-filter: blur(5px);
    pointer-events: none;
}

.ebs-membership-card__price strong {
    position: relative;
    z-index: 1;
    font-size: 2.8rem;
    line-height: 1;
    filter: none;
    opacity: 1;
    letter-spacing: 0.02em;
}

.ebs-membership-card__price span {
    position: relative;
    z-index: 1;
    opacity: 0.92;
    filter: none;
}

.ebs-membership-card__meta {
    color: var(--ebs-text-muted);
    font-size: 0.92rem;
    min-height: 2.8rem;
}

.ebs-membership-card__facts {
    display: grid;
    gap: 0.75rem;
    margin: 1.1rem 0 0;
}

.ebs-membership-card__facts div {
    padding: 0.8rem 0.9rem;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.ebs-membership-card__facts dt {
    margin: 0 0 0.35rem;
    color: var(--ebs-cyan);
    font-size: 0.73rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.ebs-membership-card__facts dd {
    margin: 0;
    color: var(--ebs-text);
    font-size: 0.92rem;
    line-height: 1.45;
}

.ebs-membership-card ul,
.ebs-access-card ul {
    list-style: none;
    margin: 1rem 0 0;
    padding: 0;
}

.ebs-membership-card li,
.ebs-access-card li {
    position: relative;
    padding-left: 1.2rem;
    margin-top: 0.7rem;
    color: var(--ebs-text-muted);
}

.ebs-membership-card li::before,
.ebs-access-card li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.65rem;
    width: 0.45rem;
    height: 0.45rem;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--ebs-cyan), var(--ebs-violet));
}

.ebs-membership-card__actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
    margin-top: 1.4rem;
    margin-top: auto;
    padding-top: 1.4rem;
    align-items: stretch;
}

.ebs-membership-card__actions .ebs-button,
.ebs-membership-card__actions .ebs-button--ghost {
    width: auto;
    min-width: 0;
    text-align: center;
}

.ebs-membership-card__actions .ebs-button:disabled,
.ebs-membership-card__actions .ebs-button--ghost:disabled {
    cursor: not-allowed;
    opacity: 0.72;
    box-shadow: none;
}

.ebs-founder {
    position: relative;
    display: grid;
    grid-template-columns: minmax(220px, 320px) minmax(0, 1fr);
    gap: 1.25rem;
    padding: clamp(1.2rem, 2vw, 1.7rem);
    border-radius: calc(var(--ebs-radius-lg) + 2px);
    border: 1px solid rgba(34, 211, 238, 0.18);
    background:
        radial-gradient(circle at top left, rgba(249, 115, 22, 0.18), transparent 34%),
        radial-gradient(circle at top right, rgba(34, 211, 238, 0.16), transparent 30%),
        linear-gradient(160deg, rgba(7, 12, 24, 0.98), rgba(10, 18, 36, 0.96));
    box-shadow:
        0 32px 90px rgba(2, 6, 23, 0.42),
        0 0 0 1px rgba(255, 255, 255, 0.03) inset;
    overflow: hidden;
}

.ebs-founder::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(135deg, rgba(34, 211, 238, 0.45), rgba(249, 115, 22, 0.38), rgba(168, 85, 247, 0.34));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.ebs-founder.is-compact {
    grid-template-columns: minmax(200px, 260px) minmax(0, 1fr);
}

.ebs-founder__media {
    position: relative;
    display: flex;
    align-items: stretch;
    align-self: start;
    aspect-ratio: 4 / 5;
    min-height: 0;
    padding: 0.45rem;
    border-radius: calc(var(--ebs-radius-md) + 4px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
        linear-gradient(150deg, rgba(79, 70, 229, 0.28), rgba(8, 13, 27, 0.95) 62%);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.05),
        0 24px 48px rgba(2, 6, 23, 0.32);
    overflow: hidden;
}

.ebs-founder.is-compact .ebs-founder__media {
    min-height: 0;
}

.ebs-founder__media::before {
    content: "";
    position: absolute;
    inset: 0.45rem;
    z-index: 1;
    border-radius: calc(var(--ebs-radius-md) + 1px);
    background:
        linear-gradient(180deg, rgba(5, 8, 22, 0.02) 0%, rgba(5, 8, 22, 0.18) 72%, rgba(5, 8, 22, 0.38) 100%),
        linear-gradient(90deg, rgba(5, 8, 22, 0.03) 0%, rgba(5, 8, 22, 0) 58%, rgba(5, 8, 22, 0.22) 100%);
    pointer-events: none;
}

.ebs-founder__media::after {
    content: "";
    position: absolute;
    inset: auto -10% -12% auto;
    width: 210px;
    height: 210px;
    z-index: 2;
    border-radius: 999px;
    background:
        radial-gradient(circle, rgba(34, 211, 238, 0.16), transparent 62%),
        radial-gradient(circle at 35% 35%, rgba(249, 115, 22, 0.12), transparent 48%);
    pointer-events: none;
}

.ebs-founder__portrait {
    display: block;
    flex: 1 1 auto;
    width: 100%;
    height: 100%;
    min-height: 0;
    border-radius: calc(var(--ebs-radius-md) + 1px);
    object-fit: cover;
    object-position: center 18%;
    filter: contrast(1.05) saturate(0.9) brightness(0.97);
    transform: scale(1.015);
}

.ebs-founder__placeholder {
    display: grid;
    place-items: center;
    width: 100%;
    min-height: 100%;
    min-height: 320px;
    color: #ecfeff;
    font-family: "Sora", sans-serif;
    font-size: clamp(3.4rem, 7vw, 5.4rem);
    font-weight: 800;
    letter-spacing: -0.06em;
    background:
        radial-gradient(circle at 30% 20%, rgba(34, 211, 238, 0.34), transparent 30%),
        radial-gradient(circle at 76% 74%, rgba(249, 115, 22, 0.28), transparent 28%),
        linear-gradient(160deg, rgba(7, 12, 24, 0.4), rgba(8, 13, 27, 0.2));
}

.ebs-founder.is-compact .ebs-founder__portrait {
    object-position: center 12%;
}

.ebs-founder__content {
    position: relative;
    z-index: 1;
}

.ebs-founder__content h2 {
    margin: 0;
    font-size: clamp(2rem, 3.6vw, 3rem);
    letter-spacing: -0.04em;
}

.ebs-founder__role {
    display: inline-flex;
    margin: 0.75rem 0 0;
    padding: 0.42rem 0.8rem;
    border-radius: 999px;
    border: 1px solid rgba(249, 115, 22, 0.22);
    background: rgba(249, 115, 22, 0.12);
    color: #fdba74;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.ebs-founder__headline {
    margin: 1rem 0 0;
    max-width: 28ch;
    color: var(--ebs-text);
    font-family: "Sora", sans-serif;
    font-size: clamp(1.18rem, 2.1vw, 1.55rem);
    line-height: 1.4;
}

.ebs-founder__summary {
    margin: 1rem 0 0;
    max-width: 66ch;
    color: var(--ebs-text-muted);
    line-height: 1.8;
}

.ebs-founder__detail-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.95rem;
    margin-top: 1.2rem;
}

.ebs-founder__detail {
    padding: 1rem 1rem 1.05rem;
    border-radius: var(--ebs-radius-md);
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(255, 255, 255, 0.03);
    box-shadow: 0 16px 36px rgba(2, 6, 23, 0.24);
}

.ebs-founder__detail h3,
.ebs-contact-card h3 {
    margin: 0 0 0.55rem;
    font-family: "Sora", sans-serif;
    font-size: 1rem;
}

.ebs-founder__detail p,
.ebs-founder__detail li,
.ebs-contact-card__note {
    color: var(--ebs-text-muted);
    line-height: 1.7;
}

.ebs-founder__detail ul {
    list-style: none;
    margin: 0.8rem 0 0;
    padding: 0;
}

.ebs-founder__detail li {
    position: relative;
    padding-left: 1rem;
    margin-top: 0.7rem;
}

.ebs-founder__detail li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.75rem;
    width: 0.42rem;
    height: 0.42rem;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--ebs-cyan), var(--ebs-warm));
}

.ebs-contact-card {
    position: relative;
    margin-top: 1.15rem;
    padding: 1rem 1rem 1.1rem;
    border-radius: calc(var(--ebs-radius-md) + 2px);
    border: 1px solid rgba(34, 211, 238, 0.16);
    background:
        linear-gradient(135deg, rgba(34, 211, 238, 0.08), rgba(249, 115, 22, 0.08)),
        rgba(4, 9, 21, 0.82);
    box-shadow: 0 18px 40px rgba(2, 6, 23, 0.3);
}

.ebs-contact-card::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 4px;
    border-radius: inherit;
    background: linear-gradient(180deg, var(--ebs-warm), var(--ebs-cyan));
}

.ebs-contact-list {
    display: grid;
    gap: 0.8rem;
    margin: 0;
}

.ebs-contact-list__item {
    display: grid;
    gap: 0.25rem;
    padding: 0.8rem 0.9rem;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.ebs-contact-list__item dt {
    color: var(--ebs-cyan);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.ebs-contact-list__item dd {
    margin: 0;
    display: grid;
    gap: 0.3rem;
}

.ebs-contact-list__item a,
.ebs-contact-list__item span {
    color: var(--ebs-text);
    font-size: 1rem;
    line-height: 1.55;
    word-break: break-word;
}

.ebs-contact-list__item a:hover,
.ebs-contact-list__item a:focus {
    color: #c9f9ff;
}

.ebs-contact-list__aux {
    color: #fdba74;
    font-size: 0.88rem;
    font-weight: 700;
}

.ebs-contact-card .ebs-button {
    margin-top: 1rem;
}

.ebs-page__content > .ebs-contact-card {
    margin: 1.15rem 0 1.6rem;
}

.ebs-access-grid {
    grid-template-columns: 1.1fr 0.9fr;
}

.ebs-access-form {
    display: grid;
    gap: 0.9rem;
}

.ebs-access-form label {
    font-size: 0.88rem;
    color: var(--ebs-text-muted);
    font-weight: 700;
}

.ebs-access-form input {
    width: 100%;
    margin-top: 0.4rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 0.9rem 1rem;
    background: rgba(255, 255, 255, 0.03);
    color: var(--ebs-text-muted);
}

.ebs-access-form input[readonly] {
    cursor: text;
}

.ebs-access-form--status {
    margin-top: 1rem;
}

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

.ebs-access-state p,
.ebs-access-card p {
    color: var(--ebs-text-muted);
    margin-bottom: 0;
}

@media (max-width: 760px) {
    .ebs-membership-card__actions {
        grid-template-columns: 1fr;
    }
}

.ebs-page__content {
    margin-top: 2rem;
}

.ebs-page__content h2,
.ebs-wysiwyg h2,
.ebs-page__content h3,
.ebs-wysiwyg h3 {
    color: var(--ebs-text);
    font-family: "Sora", sans-serif;
    line-height: 1.14;
}

.ebs-page__content h2,
.ebs-wysiwyg h2 {
    font-size: clamp(1.55rem, 2.8vw, 2.15rem);
    letter-spacing: -0.02em;
}

.ebs-page__content h3,
.ebs-wysiwyg h3 {
    font-size: 1.04rem;
}

.ebs-page__content a,
.ebs-wysiwyg a {
    color: #67e8f9;
    font-weight: 700;
}

.ebs-page__content a:hover,
.ebs-page__content a:focus,
.ebs-wysiwyg a:hover,
.ebs-wysiwyg a:focus {
    color: #c9f9ff;
}

.ebs-plan-stage,
.ebs-access-stage {
    margin-top: 2rem;
}

.ebs-section__intro--compact {
    margin-bottom: 1.25rem;
}

.ebs-step-card p,
.ebs-include-card p,
.ebs-wysiwyg p,
.ebs-wysiwyg li {
    color: var(--ebs-text-muted);
    line-height: 1.75;
}

.ebs-cta-band {
    display: grid;
    grid-template-columns: 1.1fr auto;
    gap: 1.2rem;
    align-items: center;
}

.ebs-cta-band__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
}

.ebs-footer {
    padding: 0 0 2rem;
}

.ebs-footer__inner {
    display: flex;
    justify-content: center;
    gap: 1rem;
    align-items: center;
    padding: 1.4rem 1.6rem;
    border: 1px solid var(--ebs-border);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.03);
}

.ebs-footer__brand {
    display: grid;
    justify-items: center;
    gap: 0.55rem;
    text-align: center;
}

.ebs-footer__brand img {
    width: min(180px, 42vw);
    height: auto;
    opacity: 0.96;
}

.ebs-footer__brand p {
    margin: 0;
    max-width: 56ch;
}

@media (max-width: 1080px) {
    .ebs-hero {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 980px) {
    .ebs-access-grid,
    .ebs-cta-band,
    .ebs-footer__inner {
        grid-template-columns: 1fr;
        display: grid;
    }

    .ebs-header__inner {
        grid-template-columns: auto minmax(0, 1fr);
        grid-template-areas:
            "brand actions"
            "nav nav";
        align-items: center;
        border-radius: 32px;
    }

    .ebs-brand {
        grid-area: brand;
    }

    .ebs-nav {
        grid-area: nav;
        min-width: 0;
    }

    .ebs-header__actions {
        grid-area: actions;
        justify-content: flex-end;
        justify-self: end;
    }

    .ebs-nav__list {
        flex-wrap: nowrap;
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 0.25rem;
        scrollbar-width: thin;
    }

    .ebs-founder,
    .ebs-founder.is-compact {
        grid-template-columns: 1fr;
    }

    .ebs-pillars,
    .ebs-access-states {
        grid-template-columns: 1fr;
    }

    .ebs-steps,
    .ebs-include-grid,
    .ebs-membership-grid,
    .ebs-membership-grid--count-4 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .ebs-membership-card.is-featured {
        transform: none;
    }
}

@media (max-width: 720px) {
    .ebs-header,
    .ebs-main,
    .ebs-footer {
        width: min(calc(100% - 1rem), var(--ebs-max));
    }

    .ebs-header__inner {
        border-radius: 28px;
        padding: 1rem;
        grid-template-columns: 1fr;
        grid-template-areas:
            "brand"
            "nav"
            "actions";
    }

    .ebs-brand img {
        width: min(200px, 58vw);
    }

    .ebs-nav__list {
        justify-content: flex-start;
    }

    .ebs-nav .menu,
    .ebs-nav__list {
        padding: 0.25rem;
    }

    .ebs-nav .menu-item > a,
    .ebs-nav__item a {
        min-height: 2.3rem;
        padding: 0.62rem 0.88rem;
        font-size: 0.88rem;
        white-space: nowrap;
    }

    .ebs-header__actions {
        flex-wrap: wrap;
        justify-content: flex-start;
        justify-self: start;
    }

    .ebs-founder {
        padding: 1rem;
    }

    .ebs-founder__placeholder {
        min-height: 260px;
    }

    .ebs-founder__media,
    .ebs-founder.is-compact .ebs-founder__media {
        aspect-ratio: 4 / 5;
        min-height: 0;
    }

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

    .ebs-steps,
    .ebs-include-grid,
    .ebs-membership-grid,
    .ebs-membership-grid--count-4 {
        grid-template-columns: 1fr;
    }

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

    .ebs-hero h1 {
        font-size: clamp(2.25rem, 12vw, 3.55rem);
        max-width: 11ch;
    }

    .ebs-hero__lead {
        font-size: 0.96rem;
    }
}
