/* Prompt Domains homepage v2 — intentionally scoped to .pd-v2. */

.pd-v2 {
    --pd-bg: #020207;
    --pd-bg-soft: #070713;
    --pd-panel: rgba(13, 13, 28, 0.78);
    --pd-panel-solid: #0c0c19;
    --pd-line: rgba(255, 255, 255, 0.09);
    --pd-line-bright: rgba(255, 255, 255, 0.16);
    --pd-text: #f7f7fb;
    --pd-muted: #9a9aaa;
    --pd-cyan: #19e7ff;
    --pd-blue: #3155ff;
    --pd-violet: #7629ff;
    --pd-magenta: #e01cff;
    --pd-coral: #ff7849;
    position: relative;
    overflow: hidden;
    background: var(--pd-bg);
    color: var(--pd-text);
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

.pd-v2 a {
    text-decoration: none;
}

.pd-v2-wrap {
    width: min(1180px, calc(100% - 48px));
    margin-inline: auto;
}

.pd-v2-section {
    position: relative;
    padding: 128px 0;
}

.pd-v2-reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 700ms cubic-bezier(.2,.8,.2,1), transform 700ms cubic-bezier(.2,.8,.2,1);
}

.pd-v2-reveal.is-visible {
    opacity: 1;
    transform: none;
}

.pd-v2-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    color: #80f2ff;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .18em;
    line-height: 1.4;
    text-transform: uppercase;
}

.pd-v2-eyebrow::before {
    width: 24px;
    height: 1px;
    background: linear-gradient(90deg, var(--pd-cyan), var(--pd-violet));
    content: '';
}

.pd-v2-section-heading {
    max-width: 780px;
    margin: 0 auto 64px;
    text-align: center;
}

.pd-v2-section-heading h2,
.pd-v2-showcase__copy h2,
.pd-v2-faq__intro h2,
.pd-v2-status-panel h2,
.pd-v2-final h2 {
    margin: 0;
    color: var(--pd-text);
    font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
    font-size: clamp(2.35rem, 4.8vw, 4.3rem);
    font-weight: 700;
    letter-spacing: -.055em;
    line-height: 1.02;
    text-wrap: balance;
}

.pd-v2-section-heading > p,
.pd-v2-showcase__copy > p,
.pd-v2-faq__intro > p {
    max-width: 650px;
    margin: 24px auto 0;
    color: var(--pd-muted);
    font-size: 18px;
    line-height: 1.75;
}

.pd-v2-section-heading--split {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(260px, .65fr);
    align-items: end;
    gap: 72px;
    max-width: none;
    text-align: left;
}

.pd-v2-section-heading--split > p {
    margin: 0 0 5px;
    font-size: 16px;
    line-height: 1.75;
}

/* Hero */
.pd-v2-hero {
    position: relative;
    min-height: 900px;
    padding: 200px 0 0;
    overflow: hidden;
    border-bottom: 1px solid var(--pd-line);
    background:
        radial-gradient(circle at 76% 34%, rgba(118, 41, 255, .14), transparent 25%),
        radial-gradient(circle at 89% 24%, rgba(25, 231, 255, .08), transparent 20%),
        linear-gradient(180deg, #030309 0%, #05050d 78%, #080814 100%);
}

.pd-v2-ambient {
    position: absolute;
    pointer-events: none;
}

.pd-v2-ambient--hero {
    top: 60px;
    right: -180px;
    width: 720px;
    height: 720px;
    border-radius: 50%;
    background: conic-gradient(from 90deg, rgba(25,231,255,.11), rgba(49,85,255,.22), rgba(224,28,255,.17), rgba(255,120,73,.09), rgba(25,231,255,.11));
    filter: blur(90px);
    opacity: .62;
}

.pd-v2-grid {
    position: absolute;
    inset: 0;
    opacity: .32;
    background-image: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: linear-gradient(to bottom, #000 0%, transparent 82%);
    -webkit-mask-image: linear-gradient(to bottom, #000 0%, transparent 82%);
    pointer-events: none;
}

.pd-v2-hero__inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1.03fr) minmax(450px, .97fr);
    align-items: center;
    gap: 76px;
    min-height: 560px;
}

.pd-v2-hero__copy {
    max-width: 670px;
}

.pd-v2-status {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 8px 12px 8px 10px;
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 999px;
    background: rgba(255,255,255,.04);
    color: #c5c5d2;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .02em;
    transition: border-color .25s ease, background .25s ease;
}

.pd-v2-status:hover {
    border-color: rgba(25,231,255,.28);
    background: rgba(25,231,255,.06);
}

.pd-v2-status svg,
.pd-v2-button svg,
.pd-v2-text-link svg,
.pd-v2-press-card__link svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.6;
}

.pd-v2-status svg {
    width: 14px;
    height: 14px;
}

.pd-v2-status__dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #45e693;
    box-shadow: 0 0 0 4px rgba(69,230,147,.1), 0 0 16px rgba(69,230,147,.5);
}

.pd-v2-hero h1 {
    max-width: 720px;
    margin: 30px 0 26px;
    font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
    font-size: clamp(3.6rem, 6.1vw, 6.25rem);
    font-weight: 700;
    letter-spacing: -.072em;
    line-height: .96;
    text-wrap: balance;
}

.pd-v2-hero h1 span {
    background: linear-gradient(100deg, #fff 4%, #95f6ff 36%, #807dff 68%, #fa69e5 98%);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

.pd-v2-hero__lead {
    max-width: 615px;
    margin: 0;
    color: #a6a6b7;
    font-size: clamp(1.05rem, 1.7vw, 1.24rem);
    line-height: 1.7;
}

.pd-v2-hero__lead strong {
    color: #fff;
    font-weight: 700;
}

.pd-v2-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 34px;
}

.pd-v2-button {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 54px;
    padding: 0 24px;
    border: 1px solid transparent;
    border-radius: 14px;
    font-size: 14px;
    font-weight: 750;
    letter-spacing: -.01em;
    transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease, background .25s ease;
}

.pd-v2-button:hover {
    transform: translateY(-2px);
}

.pd-v2-button--primary {
    overflow: hidden;
    background: linear-gradient(110deg, #23dff7 0%, #4865ff 46%, #a240f3 100%);
    box-shadow: 0 12px 38px rgba(49,85,255,.25), inset 0 1px 0 rgba(255,255,255,.45);
    color: #fff;
}

.pd-v2-button--primary::before {
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg, transparent 20%, rgba(255,255,255,.28) 48%, transparent 76%);
    content: '';
    transform: translateX(-110%);
    transition: transform .6s ease;
}

.pd-v2-button--primary:hover::before {
    transform: translateX(110%);
}

.pd-v2-button--primary > * {
    position: relative;
    z-index: 1;
}

.pd-v2-button--ghost {
    border-color: rgba(255,255,255,.12);
    background: rgba(255,255,255,.035);
    color: #dedee8;
}

.pd-v2-button--ghost:hover {
    border-color: rgba(255,255,255,.22);
    background: rgba(255,255,255,.07);
    color: #fff;
}

.pd-v2-hero__footnote {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 32px;
    color: #777789;
    font-size: 12px;
    line-height: 1.5;
}

.pd-v2-avatar-stack {
    display: flex;
    padding-left: 7px;
}

.pd-v2-avatar-stack i {
    display: grid;
    width: 28px;
    height: 28px;
    margin-left: -7px;
    place-items: center;
    border: 2px solid #06060e;
    border-radius: 50%;
    background: linear-gradient(145deg, #18244e, #542987);
    color: #e9efff;
    font-size: 8px;
    font-style: normal;
    font-weight: 800;
}

.pd-v2-hero__visual {
    position: relative;
    min-height: 540px;
    display: grid;
    place-items: center;
}

.pd-v2-orbit {
    position: absolute;
    width: 510px;
    height: 510px;
    border: 1px solid rgba(255,255,255,.07);
    border-radius: 50%;
    box-shadow: 0 0 0 80px rgba(255,255,255,.012), 0 0 0 160px rgba(255,255,255,.008);
}

.pd-v2-orbit::after {
    position: absolute;
    top: 38px;
    right: 54px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--pd-cyan);
    box-shadow: 0 0 18px var(--pd-cyan);
    content: '';
}

.pd-v2-product-card {
    position: relative;
    z-index: 2;
    width: min(100%, 460px);
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.13);
    border-radius: 28px;
    background: linear-gradient(145deg, rgba(22,22,44,.94), rgba(6,6,16,.96));
    box-shadow: 0 38px 100px rgba(0,0,0,.5), 0 0 80px rgba(93,57,255,.11), inset 0 1px 0 rgba(255,255,255,.08);
    transform: rotate(-1.5deg);
}

.pd-v2-product-card__bar {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 12px;
    min-height: 54px;
    padding: 0 18px;
    border-bottom: 1px solid rgba(255,255,255,.08);
    color: #737386;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.pd-v2-product-card__lights {
    display: flex;
    gap: 5px;
}

.pd-v2-product-card__lights i {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #30303f;
}

.pd-v2-product-card__lights i:nth-child(2) { background: #48405f; }
.pd-v2-product-card__lights i:nth-child(3) { background: #30415d; }

.pd-v2-live {
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    gap: 6px;
    color: #71dca4;
}

.pd-v2-live i {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: currentColor;
    box-shadow: 0 0 9px currentColor;
}

.pd-v2-product-card__body {
    position: relative;
    min-height: 410px;
    padding: 74px 44px 40px;
    text-align: center;
}

.pd-v2-product-card__body::before {
    position: absolute;
    top: -110px;
    left: 50%;
    width: 340px;
    height: 250px;
    border-radius: 50%;
    background: linear-gradient(90deg, rgba(25,231,255,.2), rgba(118,41,255,.24), rgba(224,28,255,.18));
    filter: blur(65px);
    content: '';
    transform: translateX(-50%);
}

.pd-v2-product-card__logo {
    position: absolute;
    top: 18px;
    left: 50%;
    width: 72px;
    height: 72px;
    border-radius: 17px;
    object-fit: cover;
    transform: translateX(-50%);
    filter: drop-shadow(0 0 20px rgba(105,76,255,.25));
}

.pd-v2-product-card__label {
    position: relative;
    margin: 62px 0 12px;
    color: #858599;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.pd-v2-domain-focus {
    position: relative;
    padding: 24px 16px 28px;
    border-bottom: 1px solid rgba(255,255,255,.08);
    font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
    font-size: clamp(2.2rem, 4vw, 3.3rem);
    font-weight: 700;
    letter-spacing: -.06em;
    line-height: 1;
}

.pd-v2-domain-focus strong {
    background: linear-gradient(90deg, var(--pd-cyan), #7c78ff 48%, #ef61d5);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    font-weight: inherit;
}

.pd-v2-domain-meta {
    position: relative;
    display: flex;
    justify-content: center;
    gap: 18px;
    margin-top: 24px;
    color: #9292a3;
    font-size: 10px;
    font-weight: 650;
}

.pd-v2-check {
    color: #63eaa3;
    font-style: normal;
}

.pd-v2-float-card {
    position: absolute;
    z-index: 3;
    padding: 13px 16px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 12px;
    background: rgba(13,13,28,.83);
    box-shadow: 0 16px 40px rgba(0,0,0,.28);
    backdrop-filter: blur(16px);
    color: #89899a;
    font-size: 12px;
    font-weight: 750;
    letter-spacing: -.02em;
}

.pd-v2-float-card span {
    color: #fff;
}

.pd-v2-float-card--one { top: 79px; right: -22px; }
.pd-v2-float-card--two { bottom: 72px; left: -19px; }
.pd-v2-float-card--three { top: 205px; left: -54px; }

.pd-v2-domain-rail {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 36px;
    margin-top: 58px;
    min-height: 92px;
    border-top: 1px solid var(--pd-line);
}

.pd-v2-domain-rail > span {
    flex: 0 0 auto;
    color: #5f5f70;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.pd-v2-domain-rail > div {
    display: flex;
    justify-content: space-between;
    gap: 26px;
    width: 100%;
}

.pd-v2-domain-rail b {
    color: #858596;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 12px;
    font-weight: 650;
}

/* Proof strip */
.pd-v2-proof {
    border-bottom: 1px solid var(--pd-line);
    background: #070710;
}

.pd-v2-proof__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 44px;
    min-height: 116px;
}

.pd-v2-proof__inner > p {
    flex: 0 0 auto;
    margin: 0;
    color: #5e5e6e;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.pd-v2-proof__logos {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
    width: min(760px, 75%);
    filter: grayscale(1);
    opacity: .52;
}

.pd-v2-proof__logos img {
    display: block;
    width: auto;
    max-width: 170px;
    height: 20px;
    object-fit: contain;
}

.pd-v2-proof__logos span {
    color: #d8d8df;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: -.02em;
}

/* Benefits */
.pd-v2-intro {
    background: linear-gradient(180deg, #040409, #070711);
}

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

.pd-v2-value-card {
    position: relative;
    min-height: 370px;
    padding: 34px;
    overflow: hidden;
    border: 1px solid var(--pd-line);
    border-radius: 24px;
    background: linear-gradient(145deg, rgba(17,17,31,.72), rgba(8,8,17,.84));
    transition: transform .35s ease, border-color .35s ease, background .35s ease;
}

.pd-v2-value-card:hover {
    transform: translateY(-5px);
    border-color: rgba(25,231,255,.2);
}

.pd-v2-value-card--featured {
    border-color: rgba(115,81,255,.3);
    background:
        radial-gradient(circle at 75% 12%, rgba(103,58,255,.22), transparent 32%),
        linear-gradient(145deg, rgba(24,20,50,.9), rgba(9,8,22,.9));
    box-shadow: 0 30px 80px rgba(0,0,0,.22), inset 0 1px 0 rgba(255,255,255,.06);
}

.pd-v2-card-number {
    position: absolute;
    top: 31px;
    right: 31px;
    color: #4b4b5b;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .14em;
}

.pd-v2-icon {
    display: grid;
    width: 48px;
    height: 48px;
    margin-bottom: 78px;
    place-items: center;
    border: 1px solid rgba(255,255,255,.11);
    border-radius: 14px;
    background: rgba(255,255,255,.035);
    color: #82efff;
}

.pd-v2-icon svg {
    width: 21px;
    height: 21px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.45;
}

.pd-v2-value-card h3,
.pd-v2-audience-card h3,
.pd-v2-press-card h3 {
    margin: 0;
    font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
    font-weight: 700;
    letter-spacing: -.035em;
}

.pd-v2-value-card h3 {
    font-size: 22px;
}

.pd-v2-value-card p {
    margin: 14px 0 0;
    color: #89899a;
    font-size: 14px;
    line-height: 1.72;
}

/* Name showcase */
.pd-v2-showcase {
    border-block: 1px solid var(--pd-line);
    background:
        radial-gradient(circle at 15% 45%, rgba(49,85,255,.12), transparent 29%),
        #05050b;
}

.pd-v2-showcase__layout {
    display: grid;
    grid-template-columns: minmax(300px, .72fr) minmax(500px, 1.28fr);
    align-items: center;
    gap: 92px;
}

.pd-v2-showcase__copy h2 {
    font-size: clamp(2.4rem, 4vw, 3.7rem);
}

.pd-v2-showcase__copy > p {
    margin-inline: 0;
    font-size: 16px;
}

.pd-v2-text-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 28px;
    color: #8eefff;
    font-size: 13px;
    font-weight: 750;
}

.pd-v2-text-link svg {
    transition: transform .25s ease;
}

.pd-v2-text-link:hover svg {
    transform: translateX(4px);
}

.pd-v2-name-list {
    overflow: hidden;
    border: 1px solid var(--pd-line);
    border-radius: 24px;
    background: rgba(8,8,18,.74);
    box-shadow: 0 30px 90px rgba(0,0,0,.24);
}

.pd-v2-name-row {
    display: grid;
    grid-template-columns: 130px 1fr auto;
    align-items: center;
    gap: 24px;
    min-height: 92px;
    padding: 0 28px;
    border-bottom: 1px solid var(--pd-line);
    transition: background .25s ease;
}

.pd-v2-name-row:last-child { border-bottom: 0; }
.pd-v2-name-row:hover { background: rgba(255,255,255,.035); }

.pd-v2-name-row__type {
    color: #626273;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.pd-v2-name-row strong {
    color: #eeeeF4;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(1.25rem, 2.2vw, 1.75rem);
    letter-spacing: -.045em;
}

.pd-v2-name-row__tag {
    padding: 6px 10px;
    border: 1px solid rgba(25,231,255,.13);
    border-radius: 999px;
    background: rgba(25,231,255,.05);
    color: #7edce7;
    font-size: 9px;
    font-weight: 750;
    letter-spacing: .08em;
    text-transform: uppercase;
}

/* Audience */
.pd-v2-audience {
    background: #070710;
}

.pd-v2-audience-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-top: 1px solid var(--pd-line);
    border-left: 1px solid var(--pd-line);
}

.pd-v2-audience-card {
    position: relative;
    min-height: 220px;
    padding: 36px;
    border-right: 1px solid var(--pd-line);
    border-bottom: 1px solid var(--pd-line);
    transition: background .3s ease;
}

.pd-v2-audience-card:hover {
    background: linear-gradient(145deg, rgba(49,85,255,.08), rgba(224,28,255,.035));
}

.pd-v2-audience-card__index {
    display: block;
    margin-bottom: 44px;
    color: #4c4c5d;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .14em;
}

.pd-v2-audience-card h3 {
    color: #f4f4f8;
    font-size: 19px;
}

.pd-v2-audience-card p {
    margin: 11px 0 0;
    color: #858596;
    font-size: 13px;
    line-height: 1.65;
}

/* Registry panel */
.pd-v2-status-section {
    background:
        radial-gradient(circle at 50% 40%, rgba(93,48,220,.11), transparent 36%),
        #040409;
}

.pd-v2-status-panel {
    padding: 58px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 30px;
    background:
        linear-gradient(115deg, rgba(27,22,55,.76), rgba(8,8,18,.9) 48%, rgba(11,19,28,.85));
    box-shadow: 0 42px 110px rgba(0,0,0,.32), inset 0 1px 0 rgba(255,255,255,.06);
}

.pd-v2-status-panel__top {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: start;
    gap: 60px;
}

.pd-v2-eyebrow--green {
    color: #71e7a9;
}

.pd-v2-eyebrow--green::before { display: none; }

.pd-v2-eyebrow--green i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: currentColor;
    box-shadow: 0 0 0 5px rgba(113,231,169,.1), 0 0 16px rgba(113,231,169,.4);
}

.pd-v2-status-panel h2 {
    max-width: 760px;
    font-size: clamp(2.2rem, 4.2vw, 3.7rem);
}

.pd-v2-status-seal {
    display: grid;
    width: 112px;
    height: 112px;
    place-content: center;
    border: 1px solid rgba(25,231,255,.23);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(25,231,255,.08), transparent 65%);
    box-shadow: 0 0 0 7px rgba(255,255,255,.025), 0 0 45px rgba(25,231,255,.08);
    text-align: center;
}

.pd-v2-status-seal span {
    color: #a4f3fb;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: .07em;
}

.pd-v2-status-seal small {
    margin-top: 3px;
    color: #6c8490;
    font-size: 7px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.pd-v2-status-panel__lead {
    max-width: 840px;
    margin: 28px 0 48px;
    color: #9696a8;
    font-size: 16px;
    line-height: 1.75;
}

.pd-v2-roadmap {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    margin: 0;
    padding: 0;
    list-style: none;
}

.pd-v2-roadmap li {
    position: relative;
    display: flex;
    gap: 13px;
    min-width: 0;
    padding: 26px 22px;
    border-block: 1px solid var(--pd-line);
}

.pd-v2-roadmap li::after {
    position: absolute;
    top: -1px;
    left: 0;
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, var(--pd-cyan), var(--pd-violet));
    content: '';
}

.pd-v2-roadmap li.is-complete::after,
.pd-v2-roadmap li.is-current::after { width: 100%; }

.pd-v2-roadmap li > span {
    flex: 0 0 auto;
    color: #5f5f70;
    font-size: 9px;
    font-weight: 800;
}

.pd-v2-roadmap li.is-complete > span,
.pd-v2-roadmap li.is-current > span { color: #77e8f7; }

.pd-v2-roadmap strong,
.pd-v2-roadmap small {
    display: block;
}

.pd-v2-roadmap strong {
    color: #e1e1e9;
    font-size: 12px;
    font-weight: 700;
}

.pd-v2-roadmap small {
    margin-top: 5px;
    color: #69697b;
    font-size: 10px;
    line-height: 1.45;
}

.pd-v2-roadmap .is-current strong { color: #8ef0fb; }

.pd-v2-status-panel__note {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-top: 28px;
    padding: 18px 20px;
    border: 1px solid rgba(255,255,255,.07);
    border-radius: 14px;
    background: rgba(255,255,255,.025);
}

.pd-v2-status-panel__note svg {
    flex: 0 0 auto;
    width: 18px;
    height: 18px;
    fill: none;
    stroke: #79dbe8;
    stroke-linecap: round;
    stroke-width: 1.5;
}

.pd-v2-status-panel__note p {
    margin: 0;
    color: #78788b;
    font-size: 11px;
    line-height: 1.65;
}

.pd-v2-status-panel__note strong { color: #babac6; }

/* Press */
.pd-v2-press {
    border-top: 1px solid var(--pd-line);
    background: #070710;
}

.pd-v2-press-grid {
    display: grid;
    grid-template-columns: 1.35fr 1fr 1fr;
    gap: 18px;
}

.pd-v2-press-card {
    display: flex;
    min-height: 310px;
    padding: 32px;
    flex-direction: column;
    border: 1px solid var(--pd-line);
    border-radius: 22px;
    background: rgba(12,12,24,.72);
    color: #fff;
    transition: transform .3s ease, border-color .3s ease, background .3s ease;
}

.pd-v2-press-card:hover {
    transform: translateY(-4px);
    border-color: rgba(25,231,255,.2);
    background: rgba(16,16,32,.9);
}

.pd-v2-press-card--feature {
    background:
        radial-gradient(circle at 82% 12%, rgba(224,28,255,.17), transparent 30%),
        linear-gradient(145deg, rgba(24,20,52,.86), rgba(10,9,24,.86));
}

.pd-v2-press-card img {
    width: auto;
    max-width: 150px;
    height: 18px;
    margin-bottom: 70px;
    object-fit: contain;
    object-position: left center;
    filter: grayscale(1) brightness(1.7);
    opacity: .68;
}

.pd-v2-press-card__source {
    margin-bottom: 68px;
    color: #c9c9d3;
    font-size: 12px;
    font-weight: 850;
    letter-spacing: .02em;
}

.pd-v2-press-card h3 {
    margin-top: auto;
    color: #eeeeF5;
    font-size: 20px;
    line-height: 1.35;
}

.pd-v2-press-card--feature h3 { font-size: 27px; }

.pd-v2-press-card__link {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 26px;
    color: #70dfea;
    font-size: 11px;
    font-weight: 700;
}

/* FAQ */
.pd-v2-faq {
    border-top: 1px solid var(--pd-line);
    background: #040409;
}

.pd-v2-faq__layout {
    display: grid;
    grid-template-columns: minmax(280px, .72fr) minmax(500px, 1.28fr);
    align-items: start;
    gap: 110px;
}

.pd-v2-faq__intro {
    position: sticky;
    top: 110px;
}

.pd-v2-faq__intro h2 {
    font-size: clamp(2.4rem, 4vw, 3.7rem);
}

.pd-v2-faq__intro > p {
    margin-inline: 0;
    font-size: 15px;
}

.pd-v2-faq__items {
    border-top: 1px solid var(--pd-line);
}

.pd-v2-faq details {
    border-bottom: 1px solid var(--pd-line);
}

.pd-v2-faq summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 26px 0;
    color: #e7e7ed;
    font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 650;
    cursor: pointer;
    list-style: none;
}

.pd-v2-faq summary::-webkit-details-marker { display: none; }

.pd-v2-faq summary span {
    position: relative;
    flex: 0 0 auto;
    width: 16px;
    height: 16px;
}

.pd-v2-faq summary span::before,
.pd-v2-faq summary span::after {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 14px;
    height: 1px;
    background: #77778a;
    content: '';
    transform: translate(-50%, -50%);
    transition: transform .25s ease;
}

.pd-v2-faq summary span::after { transform: translate(-50%, -50%) rotate(90deg); }
.pd-v2-faq details[open] summary span::after { transform: translate(-50%, -50%) rotate(0deg); }

.pd-v2-faq details p {
    max-width: 650px;
    margin: -5px 0 26px;
    color: #858596;
    font-size: 14px;
    line-height: 1.75;
}

/* Closing CTA */
.pd-v2-final {
    position: relative;
    overflow: hidden;
    padding: 150px 0;
    border-top: 1px solid var(--pd-line);
    background: #05050d;
    text-align: center;
}

.pd-v2-ambient--final {
    top: 50%;
    left: 50%;
    width: 760px;
    height: 500px;
    border-radius: 50%;
    background: conic-gradient(from 110deg, rgba(25,231,255,.19), rgba(49,85,255,.2), rgba(224,28,255,.16), rgba(255,120,73,.12), rgba(25,231,255,.19));
    filter: blur(100px);
    opacity: .5;
    transform: translate(-50%, -50%);
}

.pd-v2-final__inner {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    flex-direction: column;
}

.pd-v2-final__inner > img {
    width: 74px;
    height: 74px;
    margin-bottom: 26px;
    border-radius: 18px;
    object-fit: cover;
    box-shadow: 0 0 38px rgba(74,67,255,.22);
}

.pd-v2-final h2 {
    max-width: 880px;
}

.pd-v2-final p {
    max-width: 610px;
    margin: 24px auto 34px;
    color: #a0a0b1;
    font-size: 17px;
    line-height: 1.7;
}

.pd-v2-final small {
    margin-top: 18px;
    color: #656577;
    font-size: 10px;
}

/* Bring the shared footer into the quieter v2 visual system. */
.pd-v2 + footer {
    background: #020207 !important;
}

.pd-v2 + footer .bg-grid {
    opacity: .12 !important;
}

@media (max-width: 1100px) {
    .pd-v2-hero__inner {
        grid-template-columns: minmax(0, 1fr) minmax(380px, .85fr);
        gap: 38px;
    }

    .pd-v2-hero h1 { font-size: clamp(3.4rem, 6.8vw, 5.1rem); }
    .pd-v2-float-card--one { right: -5px; }
    .pd-v2-float-card--three { left: -20px; }
    .pd-v2-showcase__layout { gap: 58px; }
    .pd-v2-faq__layout { gap: 72px; }
}

@media (max-width: 900px) {
    .pd-v2-section { padding: 96px 0; }

    .pd-v2-hero {
        min-height: auto;
        padding-top: 170px;
    }

    .pd-v2-hero__inner {
        grid-template-columns: 1fr;
        gap: 54px;
    }

    .pd-v2-hero__copy {
        max-width: 720px;
        margin-inline: auto;
        text-align: center;
    }

    .pd-v2-actions,
    .pd-v2-hero__footnote { justify-content: center; }

    .pd-v2-hero__visual {
        width: min(100%, 570px);
        margin-inline: auto;
    }

    .pd-v2-domain-rail { margin-top: 20px; }

    .pd-v2-proof__inner {
        align-items: flex-start;
        padding-block: 32px;
        flex-direction: column;
        gap: 20px;
    }

    .pd-v2-proof__logos { width: 100%; }

    .pd-v2-section-heading--split,
    .pd-v2-showcase__layout,
    .pd-v2-faq__layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .pd-v2-section-heading--split > p { max-width: 620px; }
    .pd-v2-value-grid { grid-template-columns: 1fr; }

    .pd-v2-value-card {
        display: grid;
        grid-template-columns: auto 1fr;
        column-gap: 24px;
        min-height: auto;
    }

    .pd-v2-icon {
        grid-row: span 2;
        margin: 0;
    }

    .pd-v2-value-card p { grid-column: 2; }
    .pd-v2-audience-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .pd-v2-status-panel { padding: 44px; }
    .pd-v2-roadmap { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .pd-v2-press-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .pd-v2-press-card--feature { grid-column: 1 / -1; min-height: 260px; }
    .pd-v2-faq__intro { position: static; }
}

@media (max-width: 640px) {
    .pd-v2-wrap { width: min(100% - 32px, 1180px); }
    .pd-v2-section { padding: 76px 0; }

    .pd-v2-section-heading {
        margin-bottom: 42px;
        text-align: left;
    }

    .pd-v2-section-heading h2,
    .pd-v2-showcase__copy h2,
    .pd-v2-faq__intro h2,
    .pd-v2-status-panel h2,
    .pd-v2-final h2 { font-size: clamp(2.1rem, 10vw, 3rem); }

    .pd-v2-section-heading > p,
    .pd-v2-showcase__copy > p,
    .pd-v2-faq__intro > p { font-size: 15px; }

    .pd-v2-hero {
        padding-top: 150px;
        background: radial-gradient(circle at 70% 28%, rgba(91,53,255,.17), transparent 30%), linear-gradient(180deg, #030309, #06060f);
    }

    .pd-v2-hero__inner { gap: 40px; }

    .pd-v2-hero h1 {
        margin-top: 24px;
        font-size: clamp(3rem, 15vw, 4.3rem);
        letter-spacing: -.068em;
    }

    .pd-v2-hero__lead { font-size: 16px; }
    .pd-v2-actions { flex-direction: column; }
    .pd-v2-button { width: 100%; }
    .pd-v2-hero__footnote { align-items: flex-start; text-align: left; }

    .pd-v2-hero__visual { min-height: 440px; }
    .pd-v2-orbit { width: 390px; height: 390px; }
    .pd-v2-product-card { width: calc(100% - 24px); border-radius: 22px; }
    .pd-v2-product-card__bar { padding-inline: 13px; font-size: 7px; }
    .pd-v2-product-card__body { min-height: 330px; padding: 58px 20px 28px; }
    .pd-v2-product-card__logo { width: 61px; height: 61px; }
    .pd-v2-product-card__label { margin-top: 54px; font-size: 9px; }
    .pd-v2-domain-focus { font-size: clamp(2rem, 10vw, 2.7rem); }
    .pd-v2-domain-meta { gap: 10px; font-size: 8px; }
    .pd-v2-float-card { padding: 10px 12px; font-size: 10px; }
    .pd-v2-float-card--one { top: 50px; right: 0; }
    .pd-v2-float-card--two { bottom: 28px; left: 1px; }
    .pd-v2-float-card--three { display: none; }

    .pd-v2-domain-rail {
        align-items: flex-start;
        padding-block: 28px;
        flex-direction: column;
        gap: 18px;
    }

    .pd-v2-domain-rail > div {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px 22px;
    }

    .pd-v2-domain-rail b:last-child { display: none; }

    .pd-v2-proof__logos {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 26px 28px;
    }

    .pd-v2-proof__logos img { max-width: 125px; height: 16px; }

    .pd-v2-value-card {
        display: block;
        min-height: 305px;
        padding: 27px;
    }

    .pd-v2-icon { margin-bottom: 62px; }
    .pd-v2-value-card p { grid-column: auto; }
    .pd-v2-showcase__layout { gap: 38px; }

    .pd-v2-name-row {
        grid-template-columns: 1fr auto;
        gap: 10px;
        min-height: 82px;
        padding: 0 18px;
    }

    .pd-v2-name-row__type { grid-column: 1 / -1; margin-bottom: -18px; font-size: 8px; }
    .pd-v2-name-row strong { font-size: 18px; }

    .pd-v2-audience-grid { grid-template-columns: 1fr; }
    .pd-v2-audience-card { min-height: 185px; padding: 28px; }
    .pd-v2-audience-card__index { margin-bottom: 32px; }

    .pd-v2-status-panel { padding: 28px 20px; border-radius: 22px; }
    .pd-v2-status-panel__top { grid-template-columns: 1fr; gap: 30px; }
    .pd-v2-status-seal { display: none; }
    .pd-v2-status-panel__lead { margin: 22px 0 34px; font-size: 14px; }
    .pd-v2-roadmap { grid-template-columns: 1fr; }
    .pd-v2-roadmap li { padding-inline: 8px; }
    .pd-v2-status-panel__note { padding: 15px; }

    .pd-v2-press-grid { grid-template-columns: 1fr; }
    .pd-v2-press-card--feature { grid-column: auto; }
    .pd-v2-press-card { min-height: 260px; padding: 27px; }
    .pd-v2-press-card--feature h3 { font-size: 23px; }
    .pd-v2-press-card img,
    .pd-v2-press-card__source { margin-bottom: 50px; }

    .pd-v2-faq__layout { gap: 40px; }
    .pd-v2-faq summary { padding-block: 22px; font-size: 14px; }
    .pd-v2-final { padding: 94px 0; }
    .pd-v2-final p { font-size: 15px; }
}

@media (prefers-reduced-motion: reduce) {
    .pd-v2 *,
    .pd-v2 *::before,
    .pd-v2 *::after {
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
    }

    .pd-v2-reveal {
        opacity: 1;
        transform: none;
    }
}
