/* ==========================================================================
   Penny Page — Premium Launch Design
   ========================================================================== */

/* ==========================================================================
   Scroll-triggered reveal system
   Elements start hidden, get .revealed class from IntersectionObserver
   ========================================================================== */

/* Base hidden states */
[data-reveal] {
    opacity: 0;
    will-change: opacity, transform;
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-reveal="up"] { transform: translateY(40px); }
[data-reveal="left"] { transform: translateX(-40px); }
[data-reveal="right"] { transform: translateX(40px); }
[data-reveal="scale"] { transform: scale(0.92); }
[data-reveal="fade"] { transform: none; }

/* Revealed state */
[data-reveal].revealed {
    opacity: 1;
    transform: translateY(0) translateX(0) scale(1);
}

/* Hero stays CSS-animated (above fold, no scroll trigger needed) */
@keyframes heroFadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Base page overrides */
.penny-page { background-color: #f9fafb; }

/* ---- HERO ---- */
.penny-page .penny-hero {
    background: var(--dark-blue);
    background: linear-gradient(145deg, #041835 0%, #0a2a5c 40%, #041E88 100%);
    padding: 180px 0 120px;
    position: relative;
    overflow: hidden;
}

/* Subtle grid texture overlay */
.penny-page .penny-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

/* Radial glow behind screenshot */
.penny-page .penny-hero::after {
    content: "";
    position: absolute;
    right: -5%;
    top: 30%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(21, 71, 188, 0.25) 0%, transparent 70%);
    pointer-events: none;
}

.penny-page .penny-hero .content {
    display: flex;
    align-items: center;
    gap: 70px;
    position: relative;
    z-index: 2;
}

.penny-page .penny-hero .hero-text {
    flex: 1;
    max-width: 620px;
}

.penny-page .penny-hero .hero-visual {
    flex: 0 0 480px;
}

/* Hero staggered entrance — above fold, CSS-only */
.penny-page .penny-hero .eyebrow { animation: heroFadeUp 0.6s ease-out 0.1s both; }
.penny-page .penny-hero h1 { animation: heroFadeUp 0.7s ease-out 0.25s both; }
.penny-page .penny-hero .hero-subhead { animation: heroFadeUp 0.7s ease-out 0.4s both; }
.penny-page .penny-hero .hero-ctas { animation: heroFadeUp 0.6s ease-out 0.55s both; }
.penny-page .penny-hero .trust-line { animation: heroFadeUp 0.5s ease-out 0.7s both; }
.penny-page .penny-hero .screenshot-frame { animation: heroFadeUp 0.8s ease-out 0.35s both; }

.penny-page .penny-hero .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-yellow);
    margin-bottom: 24px;
    background: rgba(255, 160, 0, 0.1);
    border: 1px solid rgba(255, 160, 0, 0.2);
    padding: 8px 16px;
    border-radius: 100px;
}

.penny-page .penny-hero h1 {
    font-size: 52px;
    font-weight: 800;
    color: var(--white);
    line-height: 1.08;
    letter-spacing: -1.5px;
    margin-bottom: 24px;
}

.penny-page .penny-hero .hero-subhead {
    font-size: 18px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 36px;
    max-width: 540px;
}

.penny-page .penny-hero .hero-ctas {
    display: flex;
    gap: 14px;
    margin-bottom: 20px;
}

.penny-page .penny-hero .hero-ctas .btn {
    height: 52px;
    padding: 15px 32px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 8px;
    transition: all 0.25s ease;
}

.penny-page .penny-hero .hero-ctas .btn:not(.secondary) {
    box-shadow: 0 4px 20px rgba(255, 160, 0, 0.3);
}

.penny-page .penny-hero .hero-ctas .btn:not(.secondary):hover {
    box-shadow: 0 6px 30px rgba(255, 160, 0, 0.45);
    transform: translateY(-1px);
}

.penny-page .penny-hero .hero-ctas .btn.secondary {
    border-color: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.05);
}

.penny-page .penny-hero .hero-ctas .btn.secondary:hover {
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: none;
    transform: translateY(-1px);
}

.penny-page .penny-hero .trust-line {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.35);
    letter-spacing: 0.3px;
}

.penny-page .penny-hero .screenshot-frame {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    aspect-ratio: 4 / 3;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow:
        0 25px 60px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.05) inset;
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
}

/* Glass reflection effect */
.penny-page .penny-hero .screenshot-frame::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 40%;
    background: linear-gradient(180deg, rgba(255,255,255,0.04) 0%, transparent 100%);
    border-radius: 16px 16px 0 0;
    pointer-events: none;
}

.penny-page .penny-hero .screenshot-frame p {
    color: rgba(255, 255, 255, 0.15);
    font-size: 14px;
    text-align: center;
    padding: 0 40px;
}

/* ---- PROBLEM SECTION ---- */
.penny-page .penny-problem {
    padding: 100px 0;
    text-align: center;
    background: #f9fafb;
    position: relative;
}

.penny-page .penny-problem .content {
    animation: fadeUp 0.6s ease-out both;
}

.penny-page .penny-problem .section-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--primary-blue);
    margin-bottom: 20px;
    background: rgba(21, 71, 188, 0.06);
    padding: 8px 20px;
    border-radius: 100px;
}

.penny-page .penny-problem h2 {
    font-size: 42px;
    font-weight: 800;
    color: var(--dark-blue);
    margin-bottom: 24px;
    letter-spacing: -1px;
    line-height: 1.1;
}

.penny-page .penny-problem .problem-copy {
    font-size: 18px;
    line-height: 1.7;
    color: #5a6478;
    max-width: 720px;
    margin: 0 auto;
}

/* ---- DIFFERENTIATORS ---- */
.penny-page .penny-differentiators {
    padding: 80px 0 110px;
    background: #f9fafb;
}

.penny-page .penny-differentiators .section-tag {
    display: block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--primary-blue);
    margin-bottom: 50px;
    text-align: center;
}

.penny-page .penny-differentiators .cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.penny-page .penny-differentiators .card {
    background: var(--white);
    border-radius: 16px;
    padding: 44px 36px;
    border: 1px solid rgba(21, 71, 188, 0.06);
    box-shadow:
        0 1px 3px rgba(0, 0, 0, 0.04),
        0 6px 24px rgba(0, 0, 0, 0.03);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

/* Subtle top accent line */
.penny-page .penny-differentiators .card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-blue), #3d6fd9);
    opacity: 0;
    transition: opacity 0.35s ease;
}

.penny-page .penny-differentiators .card:hover {
    transform: translateY(-6px);
    box-shadow:
        0 4px 8px rgba(0, 0, 0, 0.04),
        0 16px 48px rgba(21, 71, 188, 0.1);
    border-color: rgba(21, 71, 188, 0.12);
}

.penny-page .penny-differentiators .card:hover::before {
    opacity: 1;
}

.penny-page .penny-differentiators .card .card-icon {
    width: 52px;
    height: 52px;
    margin-bottom: 24px;
    padding: 10px;
    background: rgba(21, 71, 188, 0.06);
    border-radius: 12px;
    transition: all 0.35s ease;
}

.penny-page .penny-differentiators .card:hover .card-icon {
    background: rgba(21, 71, 188, 0.1);
    transform: scale(1.05);
}

.penny-page .penny-differentiators .card h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 14px;
    letter-spacing: -0.3px;
}

.penny-page .penny-differentiators .card p {
    font-size: 15px;
    line-height: 1.65;
    color: #5a6478;
}

/* ---- SOCIAL PROOF ---- */
.penny-page .penny-proof {
    padding: 80px 0 100px;
    background: #f9fafb;
}

.penny-page .penny-proof .quote-block {
    background: linear-gradient(135deg, #fefefe 0%, #f7f9fc 100%);
    border: 1px solid rgba(21, 71, 188, 0.08);
    border-radius: 20px;
    padding: 64px 72px;
    max-width: 880px;
    margin: 0 auto;
    position: relative;
    box-shadow:
        0 2px 8px rgba(0, 0, 0, 0.03),
        0 12px 40px rgba(21, 71, 188, 0.06);
}

/* Decorative corner accents */
.penny-page .penny-proof .quote-block::before {
    content: "";
    position: absolute;
    top: -1px;
    left: 40px;
    right: 40px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-yellow), transparent);
    border-radius: 0 0 4px 4px;
    opacity: 0.5;
}

.penny-page .penny-proof .quote-mark {
    font-size: 100px;
    line-height: 0.7;
    color: var(--primary-yellow);
    opacity: 0.3;
    font-weight: 800;
    margin-bottom: 16px;
    font-family: Georgia, serif;
}

.penny-page .penny-proof blockquote {
    font-size: 28px;
    font-weight: 600;
    color: var(--dark-text);
    line-height: 1.35;
    margin-bottom: 36px;
    letter-spacing: -0.3px;
}

.penny-page .penny-proof .attribution {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-top: 24px;
    border-top: 1px solid rgba(21, 71, 188, 0.08);
}

.penny-page .penny-proof .avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--dark-blue) 0%, var(--primary-blue) 100%);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(4, 24, 53, 0.2);
}

.penny-page .penny-proof .attribution-text .name {
    font-weight: 700;
    font-size: 16px;
    color: var(--dark-text);
    display: block;
    margin-bottom: 2px;
}

.penny-page .penny-proof .attribution-text .role {
    font-size: 14px;
    color: #5a6478;
    display: block;
}

.penny-page .penny-proof .attribution-text .affiliation {
    font-size: 13px;
    color: #9ca3af;
    display: block;
    margin-top: 2px;
}

/* ---- EXAMPLE QUERIES ---- */
.penny-page .penny-queries {
    padding: 100px 0 120px;
    background: var(--dark-blue);
    background: linear-gradient(175deg, #041835 0%, #0a2550 50%, #041E88 100%);
    position: relative;
    overflow: hidden;
}

/* Grid texture on dark sections */
.penny-page .penny-queries::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.015) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.015) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

.penny-page .penny-queries .content {
    position: relative;
    z-index: 2;
}

.penny-page .penny-queries .section-header {
    text-align: center;
    margin-bottom: 56px;
}

.penny-page .penny-queries .section-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: rgba(255, 160, 0, 0.7);
    margin-bottom: 16px;
}

.penny-page .penny-queries h2 {
    font-size: 40px;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.8px;
    line-height: 1.1;
}

.penny-page .penny-queries .query-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.penny-page .penny-queries .query-card {
    background: rgba(255, 255, 255, 0.04);
    border-radius: 16px;
    padding: 32px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.penny-page .penny-queries .query-card:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(255, 255, 255, 0.12);
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.penny-page .penny-queries .query-card .question {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.penny-page .penny-queries .query-card .pill {
    flex-shrink: 0;
    font-size: 10px;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 100px;
    white-space: nowrap;
    margin-top: 2px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.penny-page .penny-queries .query-card .pill.you {
    background: rgba(255, 160, 0, 0.15);
    color: var(--primary-yellow);
    border: 1px solid rgba(255, 160, 0, 0.2);
}

.penny-page .penny-queries .query-card .pill.penny {
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.penny-page .penny-queries .query-card .question p {
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
    line-height: 1.45;
}

.penny-page .penny-queries .query-card .response {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.penny-page .penny-queries .query-card .response p {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.5);
}

/* ---- SUITE POSITIONING ---- */
.penny-page .penny-suite {
    padding: 100px 0 120px;
    background: #f9fafb;
}

.penny-page .penny-suite .content {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 48px;
    align-items: start;
}

.penny-page .penny-suite .tier-comparison h3 {
    font-size: 32px;
    font-weight: 800;
    color: var(--dark-blue);
    margin-bottom: 32px;
    letter-spacing: -0.5px;
    line-height: 1.15;
}

/* Tier blocks — side by side */
.penny-page .penny-suite .tier-blocks {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 20px;
}

.penny-page .penny-suite .tier-block {
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    background: var(--white);
}

.penny-page .penny-suite .tier-block .tier-header {
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #e2e8f0;
}

.penny-page .penny-suite .tier-block .tier-name {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: -0.2px;
}

.penny-page .penny-suite .tier-block .tier-name.core {
    color: var(--dark-text);
}

.penny-page .penny-suite .tier-block .tier-name.pro {
    color: var(--primary-blue);
}

.penny-page .penny-suite .tier-block .tier-label {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--white);
    background: var(--primary-blue);
    padding: 4px 10px;
    border-radius: 100px;
}

.penny-page .penny-suite .tier-block .tier-features {
    padding: 20px 24px 24px;
    list-style: none;
    margin: 0;
}

.penny-page .penny-suite .tier-block .tier-features li {
    font-size: 14px;
    color: #5a6478;
    padding: 8px 0 8px 28px;
    position: relative;
    list-style: none;
    line-height: 1.4;
}

.penny-page .penny-suite .tier-block .tier-features li::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #d1d5db;
    position: absolute;
    left: 4px;
    top: 14px;
}

/* Pro tier — elevated */
.penny-page .penny-suite .tier-block.pro-tier {
    border-color: rgba(21, 71, 188, 0.2);
    box-shadow:
        0 2px 8px rgba(21, 71, 188, 0.06),
        0 8px 32px rgba(21, 71, 188, 0.08);
}

.penny-page .penny-suite .tier-block.pro-tier .tier-header {
    background: linear-gradient(135deg, rgba(21, 71, 188, 0.03) 0%, rgba(21, 71, 188, 0.06) 100%);
    border-bottom-color: rgba(21, 71, 188, 0.1);
}

.penny-page .penny-suite .tier-block.pro-tier .tier-features li {
    color: var(--dark-text);
}

.penny-page .penny-suite .tier-block.pro-tier .tier-features li::before {
    background: rgba(21, 71, 188, 0.3);
}

.penny-page .penny-suite .tier-block.pro-tier .tier-features li.highlight {
    font-weight: 700;
    color: var(--dark-blue);
    background: rgba(255, 160, 0, 0.06);
    margin: 4px -24px;
    padding: 10px 24px 10px 52px;
    border-radius: 8px;
}

.penny-page .penny-suite .tier-block.pro-tier .tier-features li.highlight::before {
    background: var(--primary-yellow);
    width: 8px;
    height: 8px;
    top: 14px;
    left: 28px;
    box-shadow: 0 0 8px rgba(255, 160, 0, 0.4);
}

/* Price callout */
.penny-page .penny-suite .price-callout {
    background: linear-gradient(135deg, rgba(255, 160, 0, 0.06) 0%, rgba(255, 160, 0, 0.12) 100%);
    border: 1px solid rgba(255, 160, 0, 0.2);
    border-radius: 12px;
    padding: 20px 24px;
    text-align: center;
}

.penny-page .penny-suite .price-callout p {
    font-size: 16px;
    font-weight: 600;
    color: var(--dark-text);
}

.penny-page .penny-suite .price-callout span {
    color: #c27900;
    font-family: 'JetBrains Mono', monospace;
    font-weight: 700;
    font-size: 18px;
    letter-spacing: -0.5px;
}

/* CTA Card */
.penny-page .penny-suite .cta-card {
    background: linear-gradient(150deg, #041835 0%, #0a2a5c 50%, #041E88 100%);
    border-radius: 20px;
    padding: 52px 44px;
    color: var(--white);
    position: relative;
    overflow: hidden;
    box-shadow:
        0 4px 12px rgba(4, 24, 53, 0.15),
        0 20px 60px rgba(4, 24, 53, 0.2);
}

/* Grid texture on CTA card */
.penny-page .penny-suite .cta-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
}

.penny-page .penny-suite .cta-card > * {
    position: relative;
    z-index: 1;
}

.penny-page .penny-suite .cta-card h3 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 12px;
    color: var(--white);
    letter-spacing: -0.3px;
}

.penny-page .penny-suite .cta-card .cta-subtext {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.55;
    margin-bottom: 32px;
}

.penny-page .penny-suite .cta-card .btn {
    width: 100%;
    margin-bottom: 16px;
    height: 52px;
    font-weight: 700;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(255, 160, 0, 0.3);
    transition: all 0.25s ease;
}

.penny-page .penny-suite .cta-card .btn:hover {
    box-shadow: 0 6px 30px rgba(255, 160, 0, 0.45);
    transform: translateY(-1px);
}

.penny-page .penny-suite .cta-card .pricing-link {
    display: block;
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.45);
    text-decoration: none;
    transition: all 0.25s ease;
}

.penny-page .penny-suite .cta-card .pricing-link:hover {
    color: rgba(255, 255, 255, 0.8);
}

/* ---- FINAL CTA ---- */
.penny-page .penny-final-cta {
    background: var(--dark-blue);
    background: linear-gradient(160deg, #041835 0%, #0a2a5c 50%, #041E88 100%);
    padding: 120px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Grid texture */
.penny-page .penny-final-cta::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

/* Radial glow */
.penny-page .penny-final-cta::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(21, 71, 188, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.penny-page .penny-final-cta > * {
    position: relative;
    z-index: 2;
}

.penny-page .penny-final-cta h2 {
    font-size: 44px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 18px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    letter-spacing: -1px;
    line-height: 1.1;
}

.penny-page .penny-final-cta .final-subhead {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.45);
    margin-bottom: 40px;
}

.penny-page .penny-final-cta .final-ctas {
    display: flex;
    gap: 14px;
    justify-content: center;
}

.penny-page .penny-final-cta .final-ctas .btn {
    height: 52px;
    padding: 15px 32px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 8px;
    transition: all 0.25s ease;
}

.penny-page .penny-final-cta .final-ctas .btn:not(.secondary) {
    box-shadow: 0 4px 20px rgba(255, 160, 0, 0.3);
}

.penny-page .penny-final-cta .final-ctas .btn:not(.secondary):hover {
    box-shadow: 0 6px 30px rgba(255, 160, 0, 0.45);
    transform: translateY(-1px);
}

.penny-page .penny-final-cta .final-ctas .btn.secondary {
    border-color: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.05);
}

.penny-page .penny-final-cta .final-ctas .btn.secondary:hover {
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: none;
    transform: translateY(-1px);
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media screen and (max-width: 1280px) {
    .penny-page .penny-hero .content { padding: 0 20px; }
    .penny-page .penny-hero .hero-visual { flex: 0 0 400px; }
    .penny-page .penny-hero h1 { font-size: 44px; }
    .penny-page .penny-problem { padding: 80px 20px; }
    .penny-page .penny-differentiators .content { padding: 0 20px; }
    .penny-page .penny-proof .quote-block { margin: 0 20px; padding: 50px 56px; }
    .penny-page .penny-queries .content { padding: 0 20px; }
    .penny-page .penny-suite .content { padding: 0 20px; }
}

@media screen and (max-width: 1024px) {
    .penny-page .penny-hero { padding: 200px 0 80px; }
    .penny-page .penny-hero .content { flex-direction: column; gap: 48px; }
    .penny-page .penny-hero .hero-text { max-width: 100%; }
    .penny-page .penny-hero .hero-visual { flex: none; width: 100%; max-width: 500px; }
    .penny-page .penny-hero h1 { font-size: 40px; }
    .penny-page .penny-hero .hero-subhead { font-size: 17px; }

    .penny-page .penny-problem h2 { font-size: 34px; }
    .penny-page .penny-problem .problem-copy { font-size: 17px; }

    .penny-page .penny-differentiators .cards { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }

    .penny-page .penny-proof .quote-block { padding: 44px 40px; }
    .penny-page .penny-proof blockquote { font-size: 24px; }
    .penny-page .penny-proof .quote-mark { font-size: 72px; }

    .penny-page .penny-queries h2 { font-size: 34px; }
    .penny-page .penny-queries .query-grid { grid-template-columns: 1fr; max-width: 600px; margin: 0 auto; }

    .penny-page .penny-suite .content { grid-template-columns: 1fr; }
    .penny-page .penny-suite .cta-card { max-width: 100%; }
    .penny-page .penny-suite .tier-blocks { grid-template-columns: 1fr 1fr; }
}

@media screen and (max-width: 767px) {
    .penny-page .penny-hero { padding: 180px 20px 60px; }
    .penny-page .penny-hero h1 { font-size: 34px; letter-spacing: -1px; }
    .penny-page .penny-hero .hero-subhead { font-size: 16px; }
    .penny-page .penny-hero .hero-ctas { flex-direction: column; }
    .penny-page .penny-hero .hero-ctas .btn { width: 100%; justify-content: center; }

    .penny-page .penny-problem { padding: 60px 20px; }
    .penny-page .penny-problem h2 { font-size: 28px; }
    .penny-page .penny-problem .problem-copy { font-size: 16px; }

    .penny-page .penny-differentiators { padding: 60px 0 80px; }
    .penny-page .penny-differentiators .card { padding: 32px 28px; }

    .penny-page .penny-proof { padding: 60px 0 80px; }
    .penny-page .penny-proof .quote-block { padding: 32px 28px; }
    .penny-page .penny-proof blockquote { font-size: 21px; }
    .penny-page .penny-proof .quote-mark { font-size: 56px; }

    .penny-page .penny-queries { padding: 70px 0 90px; }
    .penny-page .penny-queries h2 { font-size: 28px; }
    .penny-page .penny-queries .query-card { padding: 24px; }

    .penny-page .penny-suite { padding: 60px 0 80px; }
    .penny-page .penny-suite .tier-comparison h3 { font-size: 26px; }
    .penny-page .penny-suite .tier-blocks { grid-template-columns: 1fr; }
    .penny-page .penny-suite .cta-card { padding: 40px 32px; }

    .penny-page .penny-final-cta { padding: 80px 20px; }
    .penny-page .penny-final-cta h2 { font-size: 32px; }
    .penny-page .penny-final-cta .final-ctas { flex-direction: column; align-items: center; }
    .penny-page .penny-final-cta .final-ctas .btn { width: 100%; max-width: 320px; justify-content: center; }
}

@media screen and (max-width: 540px) {
    .penny-page .penny-hero h1 { font-size: 28px; }
    .penny-page .penny-problem h2 { font-size: 24px; }
    .penny-page .penny-queries h2 { font-size: 24px; }
    .penny-page .penny-final-cta h2 { font-size: 26px; }
    .penny-page .penny-suite .tier-comparison h3 { font-size: 22px; }
}
