.page-hero {
    background: var(--dark-deep);
    padding: 96px 0 82px;
    position: relative;
    overflow: hidden;
}
.ph-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 760px 380px at 80% 10%, rgba(231,76,60,.16), transparent 62%),
        radial-gradient(ellipse 520px 320px at 0% 100%, rgba(255,255,255,.06), transparent 58%);
    pointer-events: none;
}
.ph-grid {
    position: absolute;
    inset: 0;
    opacity: .06;
    background-image:
        linear-gradient(rgba(255,255,255,.8) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.8) 1px, transparent 1px);
    background-size: 46px 46px;
}
.page-hero .container { position: relative; z-index: 2; }
.hero-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr);
    gap: 48px;
    align-items: end;
}
.hero-layout > *,
.mini-pole > div {
    min-width: 0;
}
.page-hero h1 {
    font-family: var(--font-display);
    font-size: 58px;
    font-weight: 800;
    letter-spacing: -0.055em;
    line-height: 1.04;
    color: var(--white);
    max-width: 15ch;
    margin: 16px 0 20px;
}
.page-hero h1 em { color: var(--red); font-style: normal; }
.page-hero .lead {
    font-size: 18px;
    color: rgba(255,255,255,.56);
    font-weight: 300;
    max-width: 58ch;
    line-height: 1.68;
    margin: 0 0 34px;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-panel-card {
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 18px;
    padding: 18px;
    backdrop-filter: blur(12px);
    max-width: 100%;
    overflow: hidden;
}
.mini-pole {
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 16px;
    padding: 18px;
    border-radius: 14px;
    background: rgba(255,255,255,.06);
}
.mini-pole + .mini-pole { margin-top: 10px; }
.mini-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--red);
    color: var(--white);
    font-weight: 800;
}
.mini-pole:nth-child(2) .mini-icon { background: var(--white); color: var(--red); }
.mini-pole h2 {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--white);
    margin: 0 0 4px;
}
.mini-pole p {
    font-size: 13.5px;
    color: rgba(255,255,255,.52);
    margin: 0;
    line-height: 1.55;
    font-weight: 300;
}

.split-section { background: var(--off-white); }
.pole-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}
.pole-detail {
    border: 1px solid var(--border);
    border-radius: 20px;
    overflow: hidden;
    background: var(--white);
    transition: box-shadow .2s, transform .2s;
}
.pole-detail:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); }
.pole-cover {
    position: relative;
    min-height: 260px;
    padding: 36px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}
.pole-cover-dark { background: var(--dark-deep); color: var(--white); }
.pole-cover-red { background: var(--red); color: var(--white); }
.pole-cover::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 460px 260px at 100% 0%, rgba(255,255,255,.15), transparent 60%);
    pointer-events: none;
}
.pole-cover h2 {
    position: relative;
    z-index: 1;
    font-family: var(--font-display);
    font-size: 34px;
    font-weight: 800;
    letter-spacing: -0.045em;
    line-height: 1.08;
    margin: 12px 0 12px;
    max-width: 11ch;
}
.pole-cover p {
    position: relative;
    z-index: 1;
    color: rgba(255,255,255,.68);
    font-size: 15px;
    line-height: 1.62;
    font-weight: 300;
    max-width: 48ch;
    margin: 0;
}
.pole-content { padding: 34px 36px 38px; }
.feature-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 28px;
}
.feature-row {
    display: grid;
    grid-template-columns: 8px 1fr;
    gap: 14px;
    align-items: start;
}
.feature-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--red);
    margin-top: 8px;
}
.pole-detail:first-child .feature-dot { background: var(--dark); }
.feature-row strong {
    display: block;
    color: var(--dark);
    font-size: 14.5px;
    font-weight: 650;
    margin-bottom: 3px;
}
.feature-row span {
    display: block;
    color: var(--muted);
    font-size: 13.5px;
    line-height: 1.55;
    font-weight: 300;
}

.bridge-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 56px;
    align-items: center;
}
.bridge-panel {
    background: var(--dark-deep);
    color: var(--white);
    border-radius: 20px;
    padding: 38px;
    position: relative;
    overflow: hidden;
}
.bridge-panel::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 420px 260px at 80% 20%, rgba(231,76,60,.18), transparent 62%);
}
.bridge-panel > * { position: relative; z-index: 1; }
.bridge-panel h2 {
    font-family: var(--font-display);
    font-size: 32px;
    line-height: 1.08;
    letter-spacing: -0.04em;
    margin: 0 0 14px;
}
.bridge-panel p {
    color: rgba(255,255,255,.54);
    font-size: 15px;
    line-height: 1.68;
    margin: 0;
    font-weight: 300;
}
.usecase-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}
.usecase {
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 22px;
    background: var(--white);
}
.usecase h3 {
    font-size: 15px;
    color: var(--dark);
    margin: 0 0 7px;
    font-weight: 650;
}
.usecase p {
    font-size: 13.5px;
    color: var(--muted);
    margin: 0;
    line-height: 1.58;
    font-weight: 300;
}

.proof-strip { background: var(--white); }
.proof-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}
.proof-card {
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 24px;
    background: var(--white);
}
.proof-card strong {
    display: block;
    font-family: var(--font-display);
    color: var(--red);
    font-size: 32px;
    line-height: 1;
    letter-spacing: -0.04em;
    margin-bottom: 9px;
}
.proof-card span {
    display: block;
    color: var(--muted);
    font-size: 13.5px;
    line-height: 1.5;
    font-weight: 300;
}

.cta-section {
    background: var(--red);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}
.cta-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 680px 360px at 80% 50%, rgba(255,255,255,.13), transparent 62%);
}
.cta-inner {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}
.cta-inner h2 {
    font-family: var(--font-display);
    color: var(--white);
    font-size: 40px;
    line-height: 1.08;
    letter-spacing: -0.045em;
    margin: 0;
    max-width: 18ch;
}
.cta-inner p {
    color: rgba(255,255,255,.74);
    margin: 10px 0 0;
    font-weight: 300;
}
.btn-white {
    background: var(--white);
    color: var(--red);
    border-radius: 999px;
    padding: 14px 28px;
    font-size: 14px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: transform .15s, box-shadow .15s;
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,.15); }

@media (max-width: 900px) {
    .hero-layout, .pole-detail-grid, .bridge-grid { grid-template-columns: minmax(0, 1fr); gap: 24px; }
    .page-hero h1 { font-size: 34px; }
    .page-hero .lead { font-size: 15px; }
    .proof-grid { grid-template-columns: 1fr 1fr; }
    .cta-inner { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 600px) {
    .page-hero { padding: 56px 0 48px; }
    .page-hero h1 { font-size: 27px; letter-spacing: -0.04em; }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { width: 100%; justify-content: center; white-space: normal; text-align: center; }
    .hero-panel-card, .pole-content, .pole-cover, .bridge-panel { padding: 22px; }
    .mini-pole { grid-template-columns: 44px minmax(0, 1fr); }
    .mini-pole h2, .mini-pole p { overflow-wrap: anywhere; }
    .pole-cover { min-height: 220px; }
    .pole-cover h2, .bridge-panel h2 { font-size: 24px; }
    .usecase-grid, .proof-grid { grid-template-columns: 1fr; }
    .cta-inner h2 { font-size: 24px; }
}
