/* WordPrais site-specific styles — dark theme */

/* Brand colors in logo */
.brand-word { color: #f0f0f0; }
.brand-prais { color: #00faff; }
.footer-name .brand-word { color: #f0f0f0; }
.footer-name .brand-prais { color: #a5b4fc; }

/* Hero */
.hero-section {
    text-align: center;
    padding: 4rem 1rem 3rem;
    background: linear-gradient(135deg, #0b1521 0%, #091119 50%, #0d0a1a 100%);
    border-radius: 16px;
    margin-bottom: 3rem;
    border: 1px solid #1b2e49;
}
.hero-title {
    font-size: 2.75rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #00faff, #a5b4fc, #f472b6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-subtitle {
    font-size: 1.15rem;
    color: #98c3ff;
    max-width: 640px;
    margin: 0 auto 2rem;
}
.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Plugin Cards */
.plugins-section {
    margin-bottom: 3rem;
}
.plugin-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}
.plugin-card {
    background: #0b1521;
    border: 1px solid #294264;
    border-radius: 12px;
    padding: 1.5rem;
    transition: box-shadow 0.2s;
}
.plugin-card:hover {
    box-shadow: 0 4px 20px rgba(0, 250, 255, 0.06);
}
.plugin-card-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}
.plugin-card-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.2rem;
    flex-shrink: 0;
}
.plugin-card-name {
    font-size: 1.15rem;
}
.plugin-card-tagline {
    color: #7a8ea6;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}
.plugin-card-features {
    list-style: none;
    margin: 0 0 1.25rem;
    padding: 0;
}
.plugin-card-features li {
    padding: 0.25rem 0;
    font-size: 0.88rem;
    color: #98c3ff;
    padding-left: 1.2rem;
    position: relative;
}
.plugin-card-features li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: var(--plugin-color, #00faff);
    font-weight: 700;
}
.plugin-card-actions {
    display: flex;
    gap: 0.75rem;
}

/* Pricing Summary (landing) */
.pricing-summary-section {
    margin-bottom: 3rem;
}
.pricing-summary-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.25rem;
    margin-bottom: 1.5rem;
}
.pricing-summary-card {
    background: #0b1521;
    border: 1px solid #294264;
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    position: relative;
}
.pricing-summary-featured {
    border-color: #00faff;
    box-shadow: 0 0 0 1px #00faff;
}
.pricing-summary-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: #00faff;
    color: #000;
    padding: 0.15rem 0.75rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
}
.pricing-summary-tier {
    display: block;
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: #f0f0f0;
}
.pricing-summary-price {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: #f0f0f0;
}
.pricing-summary-period {
    font-size: 0.9rem;
    font-weight: 400;
    color: #7a8ea6;
}
.pricing-summary-desc {
    display: block;
    font-size: 0.85rem;
    color: #7a8ea6;
    margin-top: 0.5rem;
}
.pricing-summary-oomph {
    color: #7a8ea6;
    font-size: 0.9rem;
}
.pricing-summary-cta {
    text-align: center;
}

/* CTA section */
.cta-section {
    text-align: center;
    padding: 3rem 1rem;
    background: #0b1521;
    border-radius: 16px;
    color: #f0f0f0;
    margin-top: 1rem;
    border: 1px solid #294264;
}
.cta-inner h2 {
    margin-bottom: 0.5rem;
}
.cta-inner p {
    color: #7a8ea6;
    margin-bottom: 1.5rem;
}
.cta-section .btn-primary {
    background: #00faff;
    color: #000;
    border-color: #00faff;
}
.cta-section .btn-primary:hover {
    background: #00e0e5;
}

/* Plugin detail page */
.plugin-hero {
    text-align: center;
    padding: 3rem 1rem;
    background: linear-gradient(135deg, #0b1521 0%, #091119 100%);
    border-radius: 16px;
    margin-bottom: 2.5rem;
    border: 1px solid #1b2e49;
}
.plugin-hero-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}
.plugin-hero-tagline {
    font-size: 1.1rem;
    color: #98c3ff;
    margin-bottom: 0.5rem;
}
.plugin-hero-desc {
    color: #7a8ea6;
    max-width: 600px;
    margin: 0 auto 1.5rem;
    font-size: 0.95rem;
}
.plugin-hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Plugin features grid */
.plugin-features-section {
    margin-bottom: 3rem;
}
.plugin-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 0.75rem;
}
.plugin-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    padding: 0.75rem;
    background: #0b1521;
    border-radius: 8px;
    border: 1px solid #1b2e49;
}
.plugin-feature-check {
    font-size: 1.1rem;
    font-weight: 700;
    flex-shrink: 0;
}

/* Plugin pricing (detail page) */
.plugin-pricing-section {
    margin-bottom: 2rem;
}
.plugin-pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    max-width: 600px;
    margin: 0 auto 1rem;
}
.plugin-pricing-card {
    background: #0b1521;
    border: 1px solid #294264;
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
}
.plugin-pricing-featured {
    border-color: #00faff;
    box-shadow: 0 0 0 1px #00faff;
}
.plugin-pricing-price {
    font-size: 2rem;
    font-weight: 800;
    margin: 0.5rem 0 1rem;
}
.plugin-pricing-price span {
    font-size: 0.9rem;
    font-weight: 400;
    color: #7a8ea6;
}
.plugin-pricing-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1.25rem;
    text-align: left;
}
.plugin-pricing-card ul li {
    padding: 0.3rem 0;
    font-size: 0.9rem;
    color: #98c3ff;
    padding-left: 1.2rem;
    position: relative;
}
.plugin-pricing-card ul li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: #00faff;
    font-weight: 700;
}
.plugin-pricing-bundle-note {
    text-align: center;
    color: #7a8ea6;
    font-size: 0.9rem;
}

/* Pricing page full table */
.pricing-page .pricing-hero {
    text-align: center;
    margin-bottom: 2.5rem;
}
.pricing-page .pricing-hero p {
    color: #7a8ea6;
}
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}
.pricing-column {
    background: #0b1521;
    border: 1px solid #294264;
    border-radius: 12px;
    overflow: hidden;
}
.pricing-column-header {
    padding: 1.25rem;
    color: #fff;
    text-align: center;
}
.pricing-column-header h3 {
    margin-bottom: 0.25rem;
}
.pricing-column-header p {
    font-size: 0.85rem;
    opacity: 0.9;
    margin: 0;
}
.pricing-bundle-header {
    background: linear-gradient(135deg, #00faff, #a5b4fc, #f472b6);
}
.pricing-tier {
    padding: 1.25rem;
    border-bottom: 1px solid #1b2e49;
}
.pricing-tier:last-child {
    border-bottom: none;
}
.pricing-tier-featured {
    background: #091119;
}
.pricing-tier-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 0.75rem;
}
.tier-name {
    font-weight: 700;
    font-size: 1rem;
}
.tier-price {
    font-size: 1.5rem;
    font-weight: 800;
}
.tier-period {
    font-size: 0.8rem;
    font-weight: 400;
    color: #7a8ea6;
}
.tier-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem;
}
.tier-features li {
    padding: 0.25rem 0;
    font-size: 0.88rem;
    color: #98c3ff;
    padding-left: 1.2rem;
    position: relative;
}
.tier-features li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: var(--plugin-color, #00faff);
    font-weight: 700;
}
.tier-btn {
    width: 100%;
}
.btn-bundle {
    background: linear-gradient(135deg, #00faff, #a5b4fc) !important;
    color: #000 !important;
    border-color: #00faff !important;
}

/* Billing toggle */
.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
}
.pricing-toggle-label {
    font-size: 0.95rem;
    color: #7a8ea6;
    transition: color 0.2s;
}
.pricing-toggle-label-active {
    color: #fff;
    font-weight: 600;
}
.pricing-save-badge {
    display: inline-block;
    background: #059669;
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.15rem 0.5rem;
    border-radius: 99px;
    margin-left: 0.35rem;
    vertical-align: middle;
}
.toggle-switch {
    position: relative;
    display: inline-block;
    width: 48px;
    height: 26px;
}
.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}
.toggle-slider {
    position: absolute;
    cursor: pointer;
    inset: 0;
    background: #294264;
    border-radius: 99px;
    transition: background 0.2s;
}
.toggle-slider::before {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    left: 3px;
    bottom: 3px;
    background: #fff;
    border-radius: 50%;
    transition: transform 0.2s;
}
.toggle-switch input:checked + .toggle-slider {
    background: #00faff;
}
.toggle-switch input:checked + .toggle-slider::before {
    transform: translateX(22px);
}

/* Pro feature highlights */
.tier-feature-pro {
    color: #00faff !important;
}
.tier-feature-pro::before {
    color: #00faff !important;
}

/* Credits note */
.pricing-credits-note {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 2rem;
    color: #7a8ea6;
    font-size: 0.92rem;
}
.pricing-credits-note strong {
    color: #98c3ff;
}

/* FAQ */
.pricing-faq {
    max-width: 800px;
    margin: 0 auto;
}
.faq-grid {
    display: grid;
    gap: 1.25rem;
}
.faq-item {
    background: #0b1521;
    border: 1px solid #294264;
    border-radius: 10px;
    padding: 1.25rem;
}
.faq-item h3 {
    margin-bottom: 0.5rem;
    font-size: 1.05rem;
}
.faq-item p {
    color: #98c3ff;
    font-size: 0.92rem;
    margin: 0;
}

/* Plugin page: Pro section */
.plugin-pro-section {
    background: #091119;
    border: 1px solid #294264;
    border-radius: 12px;
    padding: 2rem;
}
.plugin-feature-pro span {
    color: #00faff;
}
.plugin-pro-cta {
    text-align: center;
    margin-top: 1.5rem;
}

/* Account page */
.account-subscription {
    margin-bottom: 2rem;
}
.subscription-status-card {
    background: #0b1521;
    border: 1px solid #294264;
    border-radius: 12px;
    padding: 1.25rem;
}
.subscription-status-card.subscription-active {
    border-left: 4px solid #22c55e;
}
.subscription-tier-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}
.subscription-tier-label {
    font-weight: 700;
    font-size: 1.1rem;
}
.subscription-badge {
    font-size: 0.8rem;
    padding: 0.2rem 0.6rem;
    border-radius: 12px;
    font-weight: 600;
    background: rgba(122, 142, 166, 0.15);
    color: #7a8ea6;
}
.subscription-badge-active {
    background: rgba(34, 197, 94, 0.15);
    color: #22c55e;
}
.subscription-detail {
    color: #98c3ff;
    font-size: 0.92rem;
    margin: 0.25rem 0;
}
.subscription-canceling {
    color: #f59e0b;
    font-size: 0.85rem;
}
.subscription-manage {
    margin-top: 0.75rem;
}
.account-header {
    margin-bottom: 2rem;
}
.account-header p {
    color: #7a8ea6;
}
.account-empty {
    background: #091119;
    border: 1px dashed #294264;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
}
.account-empty p {
    margin-bottom: 1rem;
}
.licenses-grid {
    display: grid;
    gap: 1.25rem;
    margin-bottom: 2rem;
}
.license-card {
    background: #0b1521;
    border: 1px solid #294264;
    border-radius: 12px;
    overflow: hidden;
}
.license-card.license-active {
    border-left: 4px solid #22c55e;
}
.license-card.license-inactive {
    border-left: 4px solid #ef4444;
    opacity: 0.8;
}
.license-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.25rem;
    background: #091119;
    border-bottom: 1px solid #1b2e49;
}
.license-plugin-name {
    font-weight: 700;
}
.license-status-badge {
    font-size: 0.8rem;
    padding: 0.2rem 0.6rem;
    border-radius: 12px;
    font-weight: 600;
}
.license-active .license-status-badge {
    background: rgba(34, 197, 94, 0.15);
    color: #22c55e;
}
.license-inactive .license-status-badge {
    background: rgba(239, 68, 68, 0.15);
    color: #ef4444;
}
.license-card-body {
    padding: 1.25rem;
}
.license-key-row {
    margin-bottom: 1rem;
}
.license-key-row label {
    display: block;
    font-size: 0.8rem;
    color: #7a8ea6;
    margin-bottom: 0.25rem;
    font-weight: 600;
}
.license-key-value {
    display: block;
    background: #111d33;
    padding: 0.5rem 0.75rem;
    border-radius: 6px;
    font-size: 0.88rem;
    user-select: all;
    color: #98c3ff;
}
.license-meta {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    font-size: 0.88rem;
    color: #98c3ff;
    margin-bottom: 1rem;
}
.license-activations {
    margin-top: 0.5rem;
}
.license-activations label {
    display: block;
    font-size: 0.8rem;
    color: #7a8ea6;
    margin-bottom: 0.25rem;
    font-weight: 600;
}
.license-activations ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.license-activations li {
    font-size: 0.85rem;
    padding: 0.2rem 0;
    color: #98c3ff;
}
.activation-date {
    color: #7a8ea6;
    font-size: 0.8rem;
}
.license-card-actions {
    padding: 0 1.25rem 1.25rem;
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.account-billing {
    background: #0b1521;
    border: 1px solid #294264;
    border-radius: 12px;
    padding: 1.5rem;
}
.account-billing h2 {
    margin-bottom: 0.5rem;
}
.account-billing p {
    color: #7a8ea6;
    font-size: 0.92rem;
}

/* Oomph section */
.account-oomph {
    margin-bottom: 2rem;
}
.account-oomph p {
    color: #7a8ea6;
}
.oomph-balance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1rem;
    margin: 1rem 0;
}
.oomph-balance-card {
    background: #091119;
    border: 1px solid #1b2e49;
    border-radius: 10px;
    padding: 1rem;
    text-align: center;
}
.oomph-label {
    display: block;
    font-size: 0.8rem;
    color: #7a8ea6;
    margin-bottom: 0.25rem;
}
.oomph-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: #00faff;
}
.oomph-buy-link {
    color: #7a8ea6;
    font-size: 0.9rem;
}

/* Docs page */
.docs-hero {
    text-align: center;
    margin-bottom: 2.5rem;
}
.docs-hero p {
    color: #7a8ea6;
}
.docs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.25rem;
    margin-bottom: 3rem;
}
.docs-card {
    display: block;
    background: #0b1521;
    border: 1px solid #294264;
    border-radius: 12px;
    padding: 1.5rem;
    text-decoration: none;
    color: inherit;
    transition: box-shadow 0.2s;
}
.docs-card:hover {
    box-shadow: 0 4px 20px rgba(0, 250, 255, 0.06);
    text-decoration: none;
}
.docs-card-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
}
.docs-card h3 {
    margin-bottom: 0.3rem;
}
.docs-card p {
    color: #7a8ea6;
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
}
.docs-card-link {
    color: var(--plugin-color, #00faff);
    font-weight: 600;
    font-size: 0.9rem;
}
.docs-general-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.25rem;
}
.docs-general-item {
    background: #0b1521;
    border: 1px solid #294264;
    border-radius: 10px;
    padding: 1.25rem;
}
.docs-general-item h3 {
    margin-bottom: 0.5rem;
}
.docs-general-item p,
.docs-general-item ul {
    font-size: 0.92rem;
    color: #98c3ff;
}

/* Docs plugin page */
.docs-breadcrumb {
    font-size: 0.85rem;
    color: #7a8ea6;
    margin-bottom: 1.5rem;
}
.docs-breadcrumb a {
    color: #00faff;
}
.docs-section {
    margin-bottom: 2rem;
}
.docs-section h2 {
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #294264;
}
.docs-section h3 {
    margin: 1rem 0 0.5rem;
}
.docs-section ol,
.docs-section ul {
    margin-bottom: 1rem;
}
.docs-section li {
    margin-bottom: 0.3rem;
    font-size: 0.95rem;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    .license-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
}
