.dp-pricing {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 800px;
    margin: 40px auto;
}
@media (min-width: 640px) {
    .dp-pricing { grid-template-columns: 1fr 1fr; }
}

.dp-card {
    background: #12181F;
    border: 1px solid #232B34;
    border-radius: 10px;
    padding: 32px;
    color: #E9EDF1;
    font-family: -apple-system, "Inter", sans-serif;
}
.dp-card-highlight { border-color: #FF5A2E; }

.dp-eyebrow {
    font-family: ui-monospace, "JetBrains Mono", monospace;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #8A96A3;
    margin: 0 0 8px;
}
.dp-card-highlight .dp-eyebrow { color: #FF5A2E; }

.dp-price {
    font-family: Georgia, serif;
    font-size: 40px;
    margin: 0 0 20px;
}
.dp-price span {
    font-family: "Inter", sans-serif;
    font-size: 14px;
    color: #8A96A3;
}

.dp-card ul { list-style: none; padding: 0; margin: 0 0 28px; }
.dp-card li {
    font-size: 14px;
    color: #8A96A3;
    padding: 6px 0;
}
.dp-card li::before { content: "· "; }

.dp-btn {
    display: inline-block;
    background: #FF5A2E;
    color: #0B0F14;
    font-weight: 600;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    margin-right: 8px;
}
.dp-btn-outline {
    background: transparent;
    border: 1px solid #232B34;
    color: #E9EDF1;
}

/* Homepage — contained section, not full-bleed.
   Full-bleed CSS tricks depend on assumptions about the theme's container
   structure (no overflow:hidden ancestors, symmetric centering) that don't
   hold for every theme, especially classic (non-block) themes. A contained
   rounded card works reliably everywhere, at the cost of not stretching
   edge-to-edge across the browser. */
.dp-home {
    background: #0B0F14 !important;
    color: #E9EDF1 !important;
    font-family: "Inter", sans-serif;
    border-radius: 14px;
    padding: 8px 0 40px;
    box-sizing: border-box;
    width: 100%;
    overflow: hidden;
}
/* Opt-in only: if your theme/editor genuinely supports breaking out of the
   content column (e.g. a block theme's "Full width" alignment already
   handles the outer wrapper), add this class to go edge-to-edge instead. */
.dp-home.dp-js-full-bleed {
    border-radius: 0;
    box-sizing: content-box; /* margins set by JS should not be eaten by border-box math */
}
.dp-home *,
.dp-home {
    box-sizing: border-box;
}

.dp-hero {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
    padding: 80px 24px 48px;
}
.dp-hero h1 {
    font-family: Georgia, serif;
    font-size: 44px;
    line-height: 1.25;
    margin: 20px 0 20px;
    color: #E9EDF1 !important;
}
.dp-hero h1 em {
    font-style: italic;
    color: #FF5A2E !important;
}
.dp-hero-sub {
    font-size: 16px;
    color: #8A96A3 !important;
    margin: 0 0 32px;
}

.dp-ticker {
    overflow: hidden !important;
    border-top: 1px solid #232B34;
    border-bottom: 1px solid #232B34;
    padding: 16px 0;
    background: #12181F !important;
    width: 100%;
    max-height: 92px !important;
    box-sizing: border-box;
}
.dp-ticker-track {
    display: inline-flex !important;
    flex-wrap: nowrap !important;
    white-space: nowrap !important;
    width: max-content;
    animation: dp-scroll 100s linear infinite;
}
@media (prefers-reduced-motion: reduce) {
    .dp-ticker-track { animation: none; }
}
@keyframes dp-scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}
.dp-ticker-item {
    display: inline-flex !important;
    flex-shrink: 0;
    white-space: nowrap !important;
    align-items: center;
    gap: 10px;
    padding: 0 28px;
    font-family: ui-monospace, "JetBrains Mono", monospace;
    font-size: 13px;
    color: #E9EDF1 !important;
}
.dp-ticker-thumb {
    width: 60px !important;
    height: 60px !important;
    max-width: 60px !important;
    min-width: 60px !important;
    border-radius: 8px !important;
    object-fit: cover !important;
    flex-shrink: 0;
    background: #1A222B;
    display: inline-block !important;
    vertical-align: middle;
}
.dp-ticker-thumb-placeholder {
    display: inline-block;
}
.dp-ticker-arrow { color: #34D399 !important; }
.dp-ticker-score {
    background: #1A222B !important;
    color: #FF5A2E !important;
    padding: 2px 8px;
    border-radius: 4px;
}

.dp-audience {
    max-width: 900px;
    margin: 56px auto 0;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}
@media (min-width: 640px) {
    .dp-audience { grid-template-columns: repeat(3, 1fr); }
}
.dp-audience .dp-card { padding: 24px; }
.dp-audience-label {
    font-family: Georgia, serif;
    font-size: 20px;
    margin: 0 0 8px;
}
.dp-audience-detail {
    font-size: 13px;
    color: #8A96A3;
    margin: 0;
}

.dp-how {
    max-width: 900px;
    margin: 56px auto 0;
    padding: 32px 24px 0;
    border-top: 1px solid #232B34;
}
.dp-how h2 {
    font-family: Georgia, serif;
    font-size: 26px;
    margin: 0 0 24px;
}
.dp-how-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}
@media (min-width: 640px) {
    .dp-how-grid { grid-template-columns: repeat(3, 1fr); }
}
.dp-how-label {
    font-family: ui-monospace, "JetBrains Mono", monospace;
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #FF5A2E;
    margin: 0 0 8px;
}
.dp-how-grid p:not(.dp-how-label) {
    font-size: 13px;
    color: #8A96A3;
    margin: 0;
}

.dp-home-cta {
    text-align: center;
    margin-top: 56px;
}

.dp-login-prompt {
    text-align: center;
    max-width: 400px;
    margin: 40px auto;
}

.dp-notice {
    text-align: center;
    color: #8A96A3;
    font-family: "Inter", sans-serif;
    padding: 24px;
}

.dp-dashboard {
    max-width: 960px;
    margin: 40px auto;
    color: #E9EDF1;
    font-family: "Inter", sans-serif;
}
.dp-dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 16px;
    flex-wrap: wrap;
}
.dp-dashboard h2 {
    font-family: Georgia, serif;
    font-size: 28px;
    margin: 4px 0 0;
}
.dp-trend-subtitle {
    font-size: 13px;
    color: #8A96A3;
    margin: 6px 0 24px;
}

.dp-select {
    background: #12181F;
    border: 1px solid #232B34;
    color: #E9EDF1;
    font-family: ui-monospace, "JetBrains Mono", monospace;
    font-size: 13px;
    padding: 8px 12px;
    border-radius: 6px;
}

.dp-trend-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 16px;
}

.dp-trend-card {
    display: block;
    background: #12181F;
    border: 1px solid #232B34;
    border-radius: 10px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
}
.dp-trend-card:hover { border-color: #FF5A2E; }

.dp-trend-image {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    display: block;
    background: #1A222B;
}

.dp-trend-card-body { padding: 14px 16px; position: relative; }
.dp-trend-headline {
    font-size: 13px;
    color: #E9EDF1;
    margin: 0 0 6px;
    line-height: 1.4;
}
.dp-trend-meta {
    margin: 0;
    font-family: ui-monospace, "JetBrains Mono", monospace;
    font-size: 11px;
    color: #8A96A3;
}
.dp-trend-card .dp-score {
    position: absolute;
    top: -34px;
    right: 12px;
    font-family: ui-monospace, "JetBrains Mono", monospace;
    background: #0B0F14;
    color: #FF5A2E;
    padding: 3px 9px;
    border-radius: 4px;
    font-size: 12px;
    border: 1px solid #232B34;
}
