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

.eb-product-home {
    --eb-home-ink: #122033;
    --eb-home-muted: #5a6b7d;
    --eb-home-primary: #0b5ca9;
    --eb-home-primary-dark: #084b89;
    --eb-home-panel: #eef4fa;
    --eb-home-soft: #f3f7fb;
    --eb-home-display: "Manrope", "Avenir Next", "Segoe UI", sans-serif;
    color: var(--eb-home-ink);
}

.custom-container > .eb-product-home {
    width: 100vw;
    max-width: 100vw;
    margin-right: calc(50% - 50vw);
    margin-left: calc(50% - 50vw);
}

.eb-product-home h1,
.eb-product-home h2,
.eb-product-home h3,
.eb-product-home__eyebrow,
.eb-product-home__kicker {
    font-family: var(--eb-home-display);
}

/* —— Hero —— */
.eb-product-home__hero {
    position: relative;
    overflow: hidden;
    padding: 104px 0 88px;
    color: #fff;
    background:
        radial-gradient(ellipse at 78% 18%, rgba(56, 178, 222, .42), transparent 34%),
        radial-gradient(ellipse at 8% 92%, rgba(18, 96, 180, .4), transparent 40%),
        linear-gradient(128deg, #061525 0%, #0c3a66 52%, #0a5a9c 100%);
}

.eb-product-home__hero-copy,
.eb-product-home__hero-device {
    position: relative;
    z-index: 1;
}

.eb-product-home__eyebrow,
.eb-product-home__kicker {
    display: inline-block;
    margin-bottom: 14px;
    color: inherit;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.eb-product-home__hero h1 {
    max-width: 640px;
    margin: 0;
    color: #fff;
    font-size: clamp(36px, 4.8vw, 62px);
    font-weight: 800;
    letter-spacing: -.04em;
    line-height: 1.02;
}

.eb-product-home__lead {
    max-width: 520px;
    margin: 22px 0 30px;
    color: rgba(255, 255, 255, .88);
    font-size: 19px;
    line-height: 1.55;
}

.eb-product-home__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.eb-product-home .eb-home-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 11px 20px;
    border: 1px solid transparent;
    border-radius: 8px;
    font-family: var(--eb-home-display);
    font-weight: 700;
    text-decoration: none;
    transition: background .18s ease, border-color .18s ease, transform .18s ease, box-shadow .18s ease;
}

.eb-product-home .eb-home-button:hover,
.eb-product-home .eb-home-button:focus {
    text-decoration: none;
    transform: translateY(-1px);
}

.eb-product-home .eb-home-button--primary {
    background: #fff;
    color: #0d4d88;
    box-shadow: 0 10px 24px rgba(0, 0, 0, .16);
}

.eb-product-home .eb-home-button--secondary {
    border-color: rgba(255, 255, 255, .55);
    color: #fff;
}

.eb-product-home .eb-home-button--service {
    background: var(--eb-home-primary);
    color: #fff;
}

.eb-product-home .eb-home-button--service:hover,
.eb-product-home .eb-home-button--service:focus {
    background: var(--eb-home-primary-dark);
    color: #fff;
}

.eb-product-home__hero-device {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 420px;
    padding-top: 8px;
}

.eb-product-home__hero-glow {
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(120, 210, 255, .28), transparent 68%);
    filter: blur(4px);
    pointer-events: none;
}

.eb-product-home__hero-dashboard {
    position: relative;
    width: min(100%, 440px);
    padding: 14px;
    border: 8px solid #0f1a27;
    border-radius: 22px;
    background: #0f1a27;
    box-shadow: 0 34px 70px rgba(0, 0, 0, .38);
    animation: eb-home-float 5.5s ease-in-out infinite;
}

.eb-product-home__hero-dashboard > div:not(:last-child) { margin-bottom: 10px; }

.eb-product-home__hero-dashboard-top,
.eb-product-home__hero-dashboard-filter,
.eb-product-home__hero-dashboard-kpis,
.eb-product-home__hero-dashboard-event {
    border-radius: 10px;
    background: #f8fafc;
}

.eb-product-home__hero-dashboard-top {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 13px;
    color: #1e293b;
    font-size: 13px;
}

.eb-product-home__hero-dashboard-top span { color: #64748b; font-size: 10px; }
.eb-product-home__hero-dashboard-top b {
    margin-left: auto;
    padding: 3px 7px;
    border-radius: 10px;
    background: #e2f7eb;
    color: #187542;
    font-size: 9px;
}

.eb-product-home__hero-dashboard-filter {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3px;
    padding: 4px;
}

.eb-product-home__hero-dashboard-filter span {
    padding: 8px 4px;
    border-radius: 7px;
    color: #64748b;
    font-size: 9px;
    text-align: center;
}

.eb-product-home__hero-dashboard-filter .is-active {
    background: #fff;
    color: #1e293b;
    box-shadow: 0 1px 4px rgba(15, 23, 42, .12);
}

.eb-product-home__hero-dashboard-filter b { color: inherit; font-weight: 500; }

.eb-product-home__hero-dashboard-kpis {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 7px;
    padding: 9px;
}

.eb-product-home__hero-dashboard-kpis div {
    padding: 8px;
    border: 1px solid #e4ebf2;
    border-radius: 8px;
    background: #fff;
}

.eb-product-home__hero-dashboard-kpis small { display: block; color: #64748b; font-size: 9px; }
.eb-product-home__hero-dashboard-kpis b { display: block; margin-top: 4px; color: #213a59; font-size: 18px; }
.eb-product-home__hero-dashboard-kpis div:nth-child(2) b { color: #bd6c15; }
.eb-product-home__hero-dashboard-kpis div:nth-child(3) b { color: #167343; }
.eb-product-home__hero-dashboard-kpis div:nth-child(4) b { color: #2563eb; }

.eb-product-home__hero-dashboard-event {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px;
}

.eb-product-home__hero-dashboard-event-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 9px;
    background: #e8f3ff;
    color: #2563eb;
    font-size: 14px;
}

.eb-product-home__hero-dashboard-event strong,
.eb-product-home__hero-dashboard-event small { display: block; }
.eb-product-home__hero-dashboard-event strong { color: #25364d; font-size: 11px; }
.eb-product-home__hero-dashboard-event small { margin-top: 2px; color: #718096; font-size: 9px; }
.eb-product-home__hero-dashboard-event > b { margin-left: auto; color: #64748b; font-size: 20px; font-weight: 400; }

/* —— Sections —— */
.eb-product-home__section { padding: 88px 0; }
.eb-product-home__section--soft { background: var(--eb-home-soft); }
.eb-product-home__section--muted { background: var(--eb-home-panel); }

.eb-product-home__section-header {
    max-width: 720px;
    margin: 0 auto 48px;
    text-align: center;
}

.eb-product-home__section-header--left {
    margin-left: 0;
    margin-right: 0;
    text-align: left;
}

.eb-product-home__section-header h2,
.eb-product-home__app-copy h2,
.eb-product-home__monitor-copy h2,
.eb-product-home__service-copy h2,
.eb-product-home__event-site-copy h2,
.eb-product-home__related-heading h2 {
    margin: 0 0 14px;
    color: var(--eb-home-ink);
    font-size: clamp(28px, 3.3vw, 44px);
    font-weight: 800;
    letter-spacing: -.03em;
    line-height: 1.1;
}

.eb-product-home__section-header p,
.eb-product-home__app-copy p,
.eb-product-home__monitor-copy p,
.eb-product-home__service-copy p,
.eb-product-home__event-site-copy p {
    margin: 0;
    color: var(--eb-home-muted);
    font-size: 18px;
    line-height: 1.6;
}

/* Event homepage / subdomain */
.eb-product-home__event-site {
    padding: 88px 0;
    background: linear-gradient(180deg, #f7fafc 0%, #eef4fa 100%);
}

.eb-product-home__event-site-copy {
    max-width: 560px;
    padding: 8px 0;
}

.eb-product-home__event-site-copy p + p {
    margin-top: 16px;
}

.eb-product-home__event-site-benefits {
    display: grid;
    gap: 16px;
    margin: 28px 0 0;
    padding: 0;
    list-style: none;
}

.eb-product-home__event-site-benefits li {
    padding: 16px 18px;
    border: 1px solid #d5e2ef;
    border-radius: 12px;
    background: #fff;
}

.eb-product-home__event-site-benefits strong {
    display: block;
    margin-bottom: 4px;
    color: var(--eb-home-ink);
    font-family: var(--eb-home-display);
    font-size: 16px;
    font-weight: 800;
}

.eb-product-home__event-site-benefits span {
    color: var(--eb-home-muted);
    font-size: 14px;
    line-height: 1.5;
}

.eb-product-home__event-site-preview {
    position: relative;
    padding: 18px 0 8px;
}

.eb-product-home__event-site-preview::before {
    position: absolute;
    top: 8%;
    right: -8%;
    width: 58%;
    height: 70%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(11, 92, 169, .16), transparent 70%);
    content: "";
    pointer-events: none;
}

.eb-product-home__event-site-browser {
    position: relative;
    z-index: 1;
    overflow: hidden;
    border: 1px solid #c9d8e8;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 22px 48px rgba(15, 40, 70, .12);
    animation: eb-home-float 7s ease-in-out infinite;
}

.eb-product-home__event-site-browser-bar {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 12px 14px;
    background: #edf3f9;
    border-bottom: 1px solid #d7e3ef;
}

.eb-product-home__event-site-browser-bar span {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #c5d3e1;
}

.eb-product-home__event-site-browser-bar span:nth-child(1) { background: #f3a4a4; }
.eb-product-home__event-site-browser-bar span:nth-child(2) { background: #f0d18a; }
.eb-product-home__event-site-browser-bar span:nth-child(3) { background: #9ed6ad; }

.eb-product-home__event-site-browser-bar b {
    flex: 1;
    margin-left: 8px;
    padding: 7px 12px;
    border-radius: 8px;
    background: #fff;
    color: #45607a;
    font-family: var(--eb-home-display);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: -.01em;
}

.eb-product-home__event-site-browser-body {
    padding: 18px;
}

.eb-product-home__event-site-browser-hero {
    padding: 22px 20px;
    border-radius: 12px;
    color: #fff;
    background:
        radial-gradient(ellipse at 82% 20%, rgba(56, 178, 222, .35), transparent 40%),
        linear-gradient(128deg, #061525 0%, #0c3a66 55%, #0a5a9c 100%);
}

.eb-product-home__event-site-browser-hero small {
    display: inline-block;
    margin-bottom: 10px;
    color: rgba(255, 255, 255, .78);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.eb-product-home__event-site-browser-hero strong {
    display: block;
    font-family: var(--eb-home-display);
    font-size: 26px;
    font-weight: 800;
    letter-spacing: -.03em;
    line-height: 1.1;
}

.eb-product-home__event-site-browser-hero em {
    display: block;
    margin-top: 8px;
    color: rgba(255, 255, 255, .82);
    font-style: normal;
    font-size: 13px;
}

.eb-product-home__event-site-browser-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 12px;
}

.eb-product-home__event-site-browser-grid div {
    padding: 14px 12px;
    border: 1px solid #dce6f0;
    border-radius: 10px;
    background: #f7fafc;
}

.eb-product-home__event-site-browser-grid b {
    display: block;
    margin-bottom: 3px;
    color: var(--eb-home-ink);
    font-family: var(--eb-home-display);
    font-size: 14px;
    font-weight: 800;
}

.eb-product-home__event-site-browser-grid span {
    color: var(--eb-home-muted);
    font-size: 12px;
}

.eb-product-home__kicker { color: var(--eb-home-primary); }

/* Proof + feature cards */
.eb-product-home__proof-grid,
.eb-product-home__feature-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.eb-product-home__proof,
.eb-product-home__feature {
    min-height: 100%;
    padding: 25px;
    border: 1px solid #dce6f0;
    border-radius: 12px;
    background: #fff;
}

.eb-product-home__proof-icon,
.eb-product-home__feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    margin-bottom: 16px;
    border-radius: 12px;
    background: #e8f3ff;
    color: var(--eb-home-primary-dark);
    font-family: var(--eb-home-display);
    font-size: 20px;
    font-weight: 800;
}

.eb-product-home__proof h3,
.eb-product-home__feature h3 {
    margin: 0 0 8px;
    color: var(--eb-home-ink);
    font-size: 20px;
    font-weight: 800;
}

.eb-product-home__proof p,
.eb-product-home__feature p {
    margin: 0;
    color: var(--eb-home-muted);
    line-height: 1.55;
}

/* Feature list */
.eb-product-home__feature-list {
    display: grid;
    gap: 0;
}

.eb-product-home__feature-list article {
    padding: 22px 0;
    border-bottom: 1px solid #d7e3ef;
}

.eb-product-home__feature-list article:first-child { padding-top: 0; }
.eb-product-home__feature-list article:last-child { border-bottom: 0; padding-bottom: 0; }

.eb-product-home__feature-list h3 {
    margin: 0 0 8px;
    color: var(--eb-home-ink);
    font-size: 20px;
    font-weight: 800;
}

.eb-product-home__feature-list p {
    margin: 0;
    color: var(--eb-home-muted);
    line-height: 1.55;
}

/* Service */
.eb-product-home__service {
    padding: 88px 0 0;
    background: linear-gradient(180deg, #edf4fa 0%, #e4eef7 100%);
}

.eb-product-home__service-copy {
    max-width: 520px;
    padding: 12px 0 48px;
}

.eb-product-home__service-copy p { margin-bottom: 22px; }

.eb-product-home__service-quote {
    margin: 0 0 26px;
    padding: 0 0 0 16px;
    border-left: 3px solid #7ec8ef;
}

.eb-product-home__service-quote p {
    margin: 0;
    color: #27445f;
    font-family: var(--eb-home-display);
    font-size: 18px;
    font-weight: 600;
    font-style: italic;
    line-height: 1.45;
}

.eb-product-home__service-list {
    margin: 0 0 36px;
    padding: 0;
    list-style: none;
}

.eb-product-home__service-list li {
    padding: 20px 0;
    border-bottom: 1px solid #cfdceb;
}

.eb-product-home__service-list li:first-child { padding-top: 0; }

.eb-product-home__service-list strong {
    display: block;
    margin-bottom: 6px;
    color: var(--eb-home-ink);
    font-family: var(--eb-home-display);
    font-size: 17px;
    font-weight: 800;
}

.eb-product-home__service-list span {
    color: var(--eb-home-muted);
    font-size: 15px;
    line-height: 1.5;
}

.eb-product-home__experience {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    margin-top: 24px;
    background: #c7d8e6;
}

.eb-product-home__experience > div {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 24px 28px;
    background: #0d3152;
    color: #fff;
}

.eb-product-home__experience strong {
    color: #79d7ff;
    font-family: var(--eb-home-display);
    font-size: 34px;
    line-height: 1;
}

.eb-product-home__experience span {
    max-width: 190px;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.35;
}

/* App showcase */
.eb-product-home__app-showcase {
    position: relative;
    overflow: hidden;
    padding: 88px 0;
    background: #0a2139 !important;
    color: #fff !important;
}

.eb-product-home__app-showcase::before {
    position: absolute;
    top: -180px;
    left: -120px;
    width: 480px;
    height: 480px;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 50%;
    content: "";
}

.eb-product-home__app-copy {
    position: relative;
    z-index: 1;
    padding: 24px 0;
}

.eb-product-home__app-copy h2,
.eb-product-home__app-copy p,
.eb-product-home__app-copy .eb-product-home__kicker {
    color: #fff !important;
}

.eb-product-home__app-list {
    display: grid;
    gap: 13px;
    margin: 28px 0 0;
    padding: 0;
    list-style: none;
}

.eb-product-home__app-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, .9);
}

.eb-product-home__app-list i { color: #72d4ff; }

.eb-product-home__device-stage {
    position: relative;
    min-height: 560px;
    margin-top: 12px;
}

.eb-product-home__device-card {
    margin: 0;
}

.eb-product-home__device-card figcaption {
    margin-top: 10px;
    color: rgba(255, 255, 255, .72);
    font-family: var(--eb-home-display);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .04em;
    text-align: center;
    text-transform: uppercase;
}

.eb-product-home__device-card--mac {
    position: absolute;
    top: 0;
    right: 0;
    width: min(100%, 490px);
    animation: eb-home-rise .8s ease both;
}

.eb-product-home__device-card--ipad {
    position: absolute;
    z-index: 2;
    right: 0;
    bottom: 28px;
    width: 405px;
    animation: eb-home-rise .9s .12s ease both;
}

.eb-product-home__device-card--iphone {
    position: absolute;
    z-index: 3;
    bottom: 28px;
    left: 1%;
    width: 195px;
    animation: eb-home-rise 1s .2s ease both;
}

.eb-product-home__mac {
    padding: 11px 11px 0;
    border: 8px solid #111b29;
    border-bottom-width: 0;
    border-radius: 18px 18px 0 0;
    background: #111b29;
    box-shadow: 0 25px 48px rgba(0, 0, 0, .32);
}

.eb-product-home__mac-camera {
    width: 6px;
    height: 6px;
    margin: -4px auto 6px;
    border-radius: 50%;
    background: #536475;
}

.eb-product-home__mac-screen {
    min-height: 270px;
    overflow: hidden;
    background: #071d33;
    color: #fff;
}

.eb-product-home__mac-stand {
    width: 44%;
    height: 24px;
    margin: 0 auto;
    border-bottom: 6px solid #b5c1cb;
    border-radius: 0 0 9px 9px;
    background: linear-gradient(90deg, transparent 10%, #d1d9e1 10%, #d1d9e1 90%, transparent 90%);
}

.eb-product-home__monitor-brand {
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 12px 17px;
    background: #102c49;
}

.eb-product-home__monitor-brand strong { font-size: 13px; letter-spacing: -.02em; }
.eb-product-home__monitor-brand span {
    color: #a9c5dc;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .08em;
}

.eb-product-home__live-pulse {
    margin-left: auto;
    padding: 4px 8px;
    border-radius: 10px;
    background: #d9fbe7;
    color: #11653b;
    font-size: 9px;
    animation: eb-home-pulse 1.8s ease-in-out infinite;
}

.eb-product-home__monitor-event {
    display: flex;
    justify-content: space-between;
    padding: 15px 18px 10px;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
}

.eb-product-home__monitor-event span { color: #7ad9ff; font-size: 11px; }

.eb-product-home__monitor-table {
    display: grid;
    gap: 7px;
    padding: 3px 18px 16px;
}

.eb-product-home__monitor-table div {
    display: grid;
    grid-template-columns: 27px 1fr auto;
    gap: 10px;
    align-items: center;
    padding: 9px 10px;
    border: 1px solid rgba(129, 196, 236, .17);
    border-radius: 7px;
    background: rgba(75, 137, 179, .25);
    font-size: 12px;
}

.eb-product-home__monitor-table b { color: #8cdbff; }
.eb-product-home__monitor-table strong { color: #fff; font-family: monospace; }

.eb-product-home__ipad {
    padding: 11px;
    border: 8px solid #172230;
    border-radius: 22px;
    background: #172230;
    box-shadow: 0 26px 50px rgba(0, 0, 0, .35);
}

.eb-product-home__ipad-screen {
    min-height: 260px;
    padding: 16px;
    border-radius: 11px;
    background: #f8fafc;
    color: #1e293b;
}

.eb-product-home__dashboard-top,
.eb-product-home__dashboard-tabs,
.eb-product-home__dashboard-chart-head {
    display: flex;
    align-items: center;
}

.eb-product-home__dashboard-top { gap: 9px; font-size: 12px; }
.eb-product-home__dashboard-top strong { color: #162840; }
.eb-product-home__dashboard-top span { color: #64748b; font-size: 10px; }
.eb-product-home__dashboard-top b {
    margin-left: auto;
    padding: 3px 6px;
    border-radius: 10px;
    background: #e2f7eb;
    color: #187542;
    font-size: 9px;
}

.eb-product-home__dashboard-tabs {
    gap: 13px;
    margin: 14px 0 12px;
    border-bottom: 1px solid #e2e8f0;
    color: #64748b;
    font-size: 9px;
}

.eb-product-home__dashboard-tabs span { padding-bottom: 6px; }
.eb-product-home__dashboard-tabs .is-active {
    border-bottom: 2px solid #2563eb;
    color: #1d4ed8;
    font-weight: 700;
}

.eb-product-home__dashboard-kpis {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 7px;
}

.eb-product-home__dashboard-kpis div {
    padding: 9px;
    border: 1px solid #e3e9f0;
    border-radius: 8px;
    background: #fff;
}

.eb-product-home__dashboard-kpis small { display: block; color: #64748b; font-size: 8px; }
.eb-product-home__dashboard-kpis b { display: block; margin-top: 4px; color: #1e3a5f; font-size: 17px; }
.eb-product-home__dashboard-kpis div:nth-child(2) b { color: #197047; }
.eb-product-home__dashboard-kpis div:nth-child(3) b { color: #1d4ed8; }

.eb-product-home__dashboard-chart {
    margin-top: 12px;
    padding: 10px;
    border: 1px solid #e3e9f0;
    border-radius: 8px;
    background: #fff;
}

.eb-product-home__dashboard-chart-head {
    justify-content: space-between;
    color: #334155;
    font-size: 9px;
}

.eb-product-home__dashboard-chart-head span {
    padding: 3px 6px;
    border-radius: 9px;
    background: #eaf7ef;
    color: #167343;
    font-size: 8px;
    font-weight: 700;
}

.eb-product-home__dashboard-chart svg {
    display: block;
    width: 100%;
    height: 92px;
    margin-top: 4px;
}

.eb-product-home__iphone {
    padding: 8px;
    border: 7px solid #07121c;
    border-radius: 28px;
    background: #07121c;
    box-shadow: 0 24px 45px rgba(0, 0, 0, .43);
}

.eb-product-home__iphone-notch {
    width: 70px;
    height: 13px;
    margin: -4px auto 7px;
    border-radius: 0 0 10px 10px;
    background: #07121c;
}

.eb-product-home__iphone-screen {
    min-height: 327px;
    overflow: hidden;
    border-radius: 18px;
    background: radial-gradient(circle at 18% 8%, #155b58, #102725 54%, #0b1d21);
    color: #ecfdf8;
}

.eb-product-home__myrace-top { padding: 16px 14px 11px; }
.eb-product-home__myrace-top span {
    display: block;
    color: #5eead4;
    font-size: 8px;
    font-weight: 800;
    letter-spacing: .1em;
}
.eb-product-home__myrace-top strong { display: block; margin-top: 5px; font-size: 16px; }
.eb-product-home__myrace-top small { color: #b2d6cf; font-size: 9px; }

.eb-product-home__myrace-kpis {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 5px;
    padding: 0 10px;
}

.eb-product-home__myrace-kpis div {
    padding: 7px 3px;
    border: 1px solid rgba(150, 235, 218, .14);
    border-radius: 8px;
    background: rgba(255, 255, 255, .07);
    text-align: center;
}

.eb-product-home__myrace-kpis b {
    display: block;
    color: #f0fffb;
    font-family: monospace;
    font-size: 11px;
}

.eb-product-home__myrace-kpis small {
    display: block;
    margin-top: 3px;
    color: #9ec8c0;
    font-size: 7px;
}

.eb-product-home__myrace-chart {
    margin: 13px 10px 0;
    padding: 10px;
    border: 1px solid rgba(150, 235, 218, .13);
    border-radius: 10px;
    background: rgba(255, 255, 255, .06);
}

.eb-product-home__myrace-chart strong { color: #d8fff5; font-size: 10px; }
.eb-product-home__myrace-chart div {
    display: flex;
    align-items: end;
    gap: 5px;
    height: 70px;
    margin-top: 7px;
}

.eb-product-home__myrace-chart i {
    flex: 1;
    border-radius: 3px 3px 0 0;
    background: linear-gradient(#3dd3bc, #0d9488);
}

.eb-product-home__myrace-chart i:nth-child(2),
.eb-product-home__myrace-chart i:nth-child(5) {
    background: linear-gradient(#d7e664, #a3b52b);
}

.eb-product-home__myrace-chart i:nth-child(4) {
    background: linear-gradient(#f6be5f, #d78b2b);
}

.eb-product-home__myrace-chart span {
    display: flex;
    justify-content: space-between;
    color: #9ec8c0;
    font-size: 8px;
}

.eb-product-home__myrace-ring {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 66px;
    height: 66px;
    margin: 10px auto;
    border: 5px solid #24b89e;
    border-left-color: #174641;
    border-radius: 50%;
}

.eb-product-home__myrace-ring b { font-size: 14px; }
.eb-product-home__myrace-ring span { color: #9ec8c0; font-size: 7px; }

/* Live monitor (no duplicate ranking table) */
.eb-product-home__monitor {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 48px;
    align-items: center;
}

.eb-product-home__monitor-copy .eb-home-button { margin-top: 26px; }

.eb-product-home__monitor-stage {
    overflow: hidden;
    min-height: 280px;
    border-radius: 18px;
    background:
        radial-gradient(circle at 80% 20%, rgba(74, 190, 236, .35), transparent 35%),
        linear-gradient(145deg, #0b2138, #0e5f9d);
    box-shadow: 0 22px 44px rgba(18, 48, 78, .18);
}

.eb-product-home__monitor-stage-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 22px;
    background: rgba(8, 28, 48, .45);
    color: #fff;
    font-family: var(--eb-home-display);
    font-size: 14px;
    font-weight: 700;
}

.eb-product-home__monitor-stage-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 210px;
    padding: 28px 28px 36px;
    color: #fff;
}

.eb-product-home__monitor-stage-body small {
    color: #9fe4ff;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .12em;
}

.eb-product-home__monitor-stage-body strong {
    display: block;
    margin: 12px 0 10px;
    font-family: var(--eb-home-display);
    font-size: clamp(28px, 3vw, 38px);
    font-weight: 800;
    letter-spacing: -.03em;
    line-height: 1.1;
}

.eb-product-home__monitor-stage-body span {
    color: rgba(255, 255, 255, .78);
    font-size: 15px;
}

/* Related events heading + boxes polish */
.eb-product-home__related-heading {
    padding: 72px 0 28px;
    background: #fff;
}

.eb-product-home__related-heading .eb-product-home__section-header {
    margin-bottom: 0;
}

body:has(.eb-product-home__hero) .weitere-veranstaltungen-boxes {
    background: #fff;
    padding-bottom: 48px !important;
}

body:has(.eb-product-home__hero) .weitere-veranstaltungen-boxes .item-box-desc h3 {
    font-family: var(--eb-home-display);
    font-weight: 800;
    letter-spacing: -.02em;
}

body:has(.eb-product-home__hero) .weitere-veranstaltungen-boxes .item-box-desc a {
    color: var(--eb-home-primary);
    font-weight: 600;
}

/* Motion */
@keyframes eb-home-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

@keyframes eb-home-rise {
    from { opacity: 0; transform: translateY(18px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes eb-home-pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(217, 251, 231, .55); }
    50% { box-shadow: 0 0 0 6px rgba(217, 251, 231, 0); }
}

@media (prefers-reduced-motion: reduce) {
    .eb-product-home__hero-dashboard,
    .eb-product-home__device-card--mac,
    .eb-product-home__device-card--ipad,
    .eb-product-home__device-card--iphone,
    .eb-product-home__event-site-browser,
    .eb-product-home__live-pulse {
        animation: none !important;
    }
}

@media (max-width: 991px) {
    .eb-product-home__hero { padding: 78px 0 64px; }
    .eb-product-home__hero-device {
        min-height: 0;
        margin-top: 36px;
    }
    .eb-product-home__proof-grid,
    .eb-product-home__feature-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .eb-product-home__device-stage {
        display: flex;
        gap: 18px;
        align-items: flex-end;
        overflow-x: auto;
        min-height: 0;
        margin: 28px -12px 0;
        padding: 8px 12px 18px;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }
    .eb-product-home__device-card {
        position: relative !important;
        top: auto !important;
        right: auto !important;
        bottom: auto !important;
        left: auto !important;
        flex: 0 0 auto;
        scroll-snap-align: center;
        animation: none;
    }
    .eb-product-home__device-card--mac { width: 340px; }
    .eb-product-home__device-card--ipad { width: 300px; }
    .eb-product-home__device-card--iphone { width: 180px; }
    .eb-product-home__monitor { grid-template-columns: 1fr; gap: 28px; }
    .eb-product-home__event-site-preview { margin-top: 12px; }
    .eb-product-home__event-site-browser-hero strong { font-size: 22px; }
}

@media (max-width: 575px) {
    .eb-product-home__hero { padding: 56px 0 48px; }
    .eb-product-home__lead { font-size: 17px; }
    .eb-product-home__section,
    .eb-product-home__app-showcase,
    .eb-product-home__event-site { padding: 60px 0; }
    .eb-product-home__hero-device { min-height: 0; }
    .eb-product-home__hero-dashboard {
        width: min(100%, 340px);
        animation: none;
    }
    .eb-product-home__hero-glow { width: 280px; height: 280px; }
    .eb-product-home__proof-grid,
    .eb-product-home__feature-grid {
        grid-template-columns: 1fr;
    }
    .eb-product-home__service { padding-top: 60px; }
    .eb-product-home__service-copy { padding-bottom: 28px; }
    .eb-product-home__experience { grid-template-columns: 1fr; margin-top: 20px; }
    .eb-product-home__experience > div { padding: 18px 22px; }
    .eb-product-home__related-heading { padding: 52px 0 18px; }
}
