/**
 * public.css — Vellum Landing Page
 * Literary Luxury aesthetic — forest green, manuscript gold, parchment
 *
 * Sections:
 *  1.  CSS Variables & Base
 *  2.  Hero
 *  3.  Trust Bar
 *  4.  Section Helpers
 *  5.  Steps (How it works)
 *  6.  Features
 *  7.  Pricing
 *  8.  FAQ
 *  9.  CTA
 * 10.  Footer
 * 11.  Buttons
 * 12.  Scroll Reveal
 * 13.  Responsive
 */

/* ==========================================================================
   1. CSS VARIABLES & BASE
   ========================================================================== */

:root {
    --v-green:     #1A5C38;
    --v-green-d:   #134428;
    --v-green-dd:  #0a1f13;
    --v-green-l:   #2a7a4e;
    --v-gold:      #C5A028;
    --v-gold-l:    #d9b535;
    --v-gold-d:    #a78320;
    --v-parchment: #FEFDFB;
    --v-parch-100: #FBF8F1;
    --v-parch-200: #F5EFE0;
    --v-parch-300: #EDE4CE;
    --v-dark:      #0a1f13;
    --v-text:      #2d3a32;
    --v-text-m:    #4a5a50;
    --v-text-l:    #7a8a80;
    --v-border:    rgba(26, 92, 56, 0.08);
    --v-shadow:    0 1px 3px rgba(10, 31, 19, 0.04), 0 8px 24px rgba(10, 31, 19, 0.06);
    --v-shadow-lg: 0 4px 12px rgba(10, 31, 19, 0.05), 0 20px 48px rgba(10, 31, 19, 0.1);
    --v-radius:    1rem;
    --v-radius-lg: 1.5rem;
}

html {
    scroll-behavior: smooth;
}

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

body {
    font-family: 'DM Sans', system-ui, -apple-system, sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: var(--v-text);
    background: var(--v-parchment);
}

[x-cloak] { display: none !important; }


/* ==========================================================================
   2. HERO
   ========================================================================== */

.vellum-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    background: var(--v-green-dd);
}

/* Gradient overlay */
.hero-bg-gradient {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 25% 50%, rgba(26, 92, 56, 0.7) 0%, transparent 60%),
        radial-gradient(ellipse 60% 80% at 80% 30%, rgba(42, 122, 78, 0.4) 0%, transparent 50%),
        linear-gradient(160deg, #0a1f13 0%, #134428 40%, #1A5C38 70%, #0a1f13 100%);
    z-index: 1;
}

/* Film grain texture */
.hero-bg-grain {
    position: absolute;
    inset: 0;
    z-index: 2;
    opacity: 0.035;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    background-size: 200px 200px;
    pointer-events: none;
}

/* Ambient glow orbs */
.hero-glow {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 2;
}

.hero-glow-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(197, 160, 40, 0.12) 0%, transparent 65%);
    top: 10%;
    left: -5%;
    filter: blur(60px);
    animation: glow-drift 10s ease-in-out infinite;
}

.hero-glow-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(26, 92, 56, 0.2) 0%, transparent 60%);
    bottom: -10%;
    right: -5%;
    filter: blur(80px);
    animation: glow-drift 12s ease-in-out infinite reverse;
}

@keyframes glow-drift {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50%       { transform: translate(15px, -20px) scale(1.05); }
}

/* Floating book covers — decorative scattered covers behind hero */
.hero-floating-books {
    position: absolute;
    inset: 0;
    z-index: 3;
    pointer-events: none;
    overflow: hidden;
}

.floating-book {
    position: absolute;
    border-radius: 0.375rem;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    opacity: 0.07;
    transition: opacity 0.5s ease;
}

.floating-book img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Scattered positions — like books on an invisible shelf */
.fb-1 { width: 70px;  height: 100px; top: 8%;   left: 5%;   transform: rotate(-8deg); animation: book-float 9s ease-in-out infinite; }
.fb-2 { width: 60px;  height: 88px;  top: 22%;  left: 15%;  transform: rotate(5deg);  animation: book-float 11s ease-in-out infinite 1s; }
.fb-3 { width: 55px;  height: 80px;  top: 55%;  left: 3%;   transform: rotate(-3deg); animation: book-float 10s ease-in-out infinite 2s; }
.fb-4 { width: 65px;  height: 95px;  top: 72%;  left: 12%;  transform: rotate(7deg);  animation: book-float 12s ease-in-out infinite 0.5s; }
.fb-5 { width: 58px;  height: 84px;  top: 12%;  right: 8%;  transform: rotate(6deg);  animation: book-float 10s ease-in-out infinite 1.5s; }
.fb-6 { width: 72px;  height: 105px; top: 38%;  right: 3%;  transform: rotate(-5deg); animation: book-float 11s ease-in-out infinite 0.8s; }
.fb-7 { width: 50px;  height: 72px;  top: 65%;  right: 15%; transform: rotate(4deg);  animation: book-float 9s ease-in-out infinite 2.5s; }
.fb-8 { width: 62px;  height: 90px;  top: 85%;  right: 6%;  transform: rotate(-6deg); animation: book-float 13s ease-in-out infinite 1.2s; }

@keyframes book-float {
    0%, 100% { transform: translateY(0) rotate(var(--rot, 0deg)); }
    50%      { transform: translateY(-12px) rotate(var(--rot, 0deg)); }
}

/* Hero inner container */
.hero-inner {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 80rem;
    margin: 0 auto;
    padding: 9rem 1.5rem 6rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

/* Hero text */
.hero-text {
    max-width: 560px;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.eyebrow-line {
    width: 28px;
    height: 1px;
    background: var(--v-gold);
    opacity: 0.6;
}

.eyebrow-label {
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--v-gold);
}

.hero-headline {
    font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
    font-weight: 700;
    font-size: clamp(2.5rem, 5.5vw, 4rem);
    line-height: 1.1;
    color: #ffffff;
    letter-spacing: -0.01em;
    margin-bottom: 1.5rem;
}

.hero-headline-accent {
    color: var(--v-gold);
}

.hero-headline-italic {
    font-style: italic;
    font-weight: 500;
    color: rgba(255,255,255,0.85);
}

.hero-desc {
    font-size: 1.0625rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 2.5rem;
    max-width: 440px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.875rem;
    align-items: center;
    margin-bottom: 3rem;
}

/* Social proof — real stats */
.hero-proof {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.proof-stat {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8125rem;
    color: rgba(255,255,255,0.55);
}

.proof-stat strong {
    color: #fff;
    font-weight: 600;
    font-variant-numeric: tabular-nums;
}

.proof-stat i {
    font-size: 0.9375rem;
    color: var(--v-gold);
}

.proof-divider {
    color: rgba(255,255,255,0.2);
    font-size: 0.75rem;
}

/* Hero visual / mockup */
.hero-visual {
    position: relative;
    z-index: 10;
}

.mockup-wrapper {
    position: relative;
    padding: 1.5rem;
}

/* Gold corner accents */
.mockup-corner {
    position: absolute;
    width: 40px;
    height: 40px;
    z-index: 5;
}

.mockup-corner-tl {
    top: 0;
    left: 0;
    border-top: 2px solid var(--v-gold);
    border-left: 2px solid var(--v-gold);
    opacity: 0.3;
}

.mockup-corner-br {
    bottom: 0;
    right: 0;
    border-bottom: 2px solid var(--v-gold);
    border-right: 2px solid var(--v-gold);
    opacity: 0.3;
}

.mockup-frame {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--v-radius-lg);
    overflow: hidden;
    backdrop-filter: blur(20px);
    box-shadow:
        0 40px 80px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255,255,255,0.05);
    transform: perspective(1400px) rotateY(-4deg) rotateX(2deg);
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.mockup-frame:hover {
    transform: perspective(1400px) rotateY(0) rotateX(0);
}

.mockup-bar {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: rgba(0,0,0,0.25);
}

.mockup-dots {
    display: flex;
    gap: 5px;
}

.mockup-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.mockup-dots span:nth-child(1) { background: #f87171; }
.mockup-dots span:nth-child(2) { background: #fbbf24; }
.mockup-dots span:nth-child(3) { background: #34d399; }

.mockup-url {
    flex: 1;
    background: rgba(255,255,255,0.06);
    border-radius: 6px;
    padding: 0.25rem 0.75rem;
    font-size: 0.6875rem;
    color: rgba(255,255,255,0.4);
    font-family: 'DM Sans', monospace;
}

.mockup-content {
    background: linear-gradient(165deg, #0a1f13 0%, #134428 100%);
    padding: 1.5rem;
    min-height: 320px;
}

.mockup-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}

.mstat {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 0.75rem;
    padding: 0.75rem;
    text-align: center;
}

.mstat-num {
    font-family: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--v-gold);
    line-height: 1;
    letter-spacing: -0.02em;
}

.mstat-label {
    font-size: 0.625rem;
    color: rgba(255,255,255,0.4);
    margin-top: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.mockup-books {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
}

.mbook {
    aspect-ratio: 2/3;
    border-radius: 0.5rem;
    border: 1px solid rgba(255,255,255,0.08);
    overflow: hidden;
    background: rgba(255,255,255,0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.mbook:hover {
    transform: scale(1.05) translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
    z-index: 2;
}

.mbook img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: 0.85;
    transition: opacity 0.3s ease;
}

.mbook:hover img {
    opacity: 1;
}

/* Scroll cue */
.hero-scroll-cue {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.hero-scroll-cue span {
    font-size: 0.625rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.25);
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    position: relative;
    overflow: hidden;
}

.scroll-dot {
    width: 1px;
    height: 12px;
    background: var(--v-gold);
    position: absolute;
    top: -12px;
    animation: scroll-drop 2s ease-in-out infinite;
}

@keyframes scroll-drop {
    0%   { top: -12px; opacity: 0; }
    30%  { opacity: 1; }
    100% { top: 40px; opacity: 0; }
}


/* ==========================================================================
   3. TRUST BAR
   ========================================================================== */

.vellum-trust {
    background: var(--v-parchment);
    border-bottom: 1px solid var(--v-border);
    padding: 1.25rem 0;
}

.trust-inner {
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.trust-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.375rem 0.75rem;
    border-radius: 999px;
    background: var(--v-parch-100);
    border: 1px solid rgba(26, 92, 56, 0.06);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--v-green);
}

.trust-chip i {
    font-size: 0.875rem;
    color: var(--v-gold);
}

.trust-divider {
    width: 1px;
    height: 20px;
    background: var(--v-border);
    margin: 0 0.5rem;
}

.trust-tagline {
    font-size: 0.8125rem;
    color: var(--v-text-l);
    font-weight: 500;
}


/* ==========================================================================
   4. SECTION HELPERS
   ========================================================================== */

.vlabel {
    display: inline-block;
    font-size: 0.625rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--v-gold-d);
    border: 1px solid rgba(197, 160, 40, 0.2);
    background: rgba(197, 160, 40, 0.06);
    padding: 0.3rem 1rem;
    border-radius: 999px;
    margin-bottom: 1.25rem;
}

.vtitle {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 700;
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    line-height: 1.2;
    color: var(--v-dark);
    letter-spacing: -0.01em;
    margin-bottom: 1rem;
}

.vtitle em {
    font-style: italic;
    color: var(--v-green);
}

.vsubtitle {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: var(--v-text-m);
    max-width: 520px;
}

.vsubtitle.centered {
    margin-left: auto;
    margin-right: auto;
}


/* ==========================================================================
   5. STEPS (How it works)
   ========================================================================== */

.vellum-steps {
    padding: 6rem 0 7rem;
    background: var(--v-parch-100);
    position: relative;
}

/* Subtle top border ornament */
.vellum-steps::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--v-gold), transparent);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 64rem;
    margin: 0 auto;
}

.step-card {
    position: relative;
    text-align: center;
    padding: 2rem 1.5rem;
}

.step-num {
    font-family: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
    font-weight: 700;
    font-size: 3rem;
    color: rgba(26, 92, 56, 0.06);
    line-height: 1;
    margin-bottom: 1rem;
    letter-spacing: -0.03em;
}

.step-icon {
    width: 3.25rem;
    height: 3.25rem;
    border-radius: 50%;
    background: var(--v-parchment);
    border: 1.5px solid rgba(197, 160, 40, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    font-size: 1.25rem;
    color: var(--v-green);
    transition: all 0.3s ease;
}

.step-card:hover .step-icon {
    background: var(--v-green);
    border-color: var(--v-green);
    color: white;
    box-shadow: 0 8px 24px rgba(26, 92, 56, 0.2);
}

.step-title {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    font-size: 1.0625rem;
    color: var(--v-dark);
    margin-bottom: 0.5rem;
}

.step-desc {
    font-size: 0.875rem;
    line-height: 1.65;
    color: var(--v-text-l);
}


/* ==========================================================================
   6. FEATURES
   ========================================================================== */

.vellum-features {
    padding: 6rem 0 7rem;
    background: var(--v-parchment);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.feat-card {
    position: relative;
    background: var(--v-parch-100);
    border: 1px solid var(--v-border);
    border-radius: var(--v-radius);
    padding: 2rem 1.75rem 1.75rem;
    transition: all 0.35s cubic-bezier(0.23, 1, 0.32, 1);
    cursor: default;
    overflow: hidden;
}

.feat-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--v-shadow-lg);
    border-color: rgba(26, 92, 56, 0.12);
}

/* Bottom decorative line that expands on hover */
.feat-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--v-green), var(--v-gold));
    transition: width 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.feat-card:hover .feat-line {
    width: 100%;
}

.feat-icon-wrap {
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    font-size: 1.25rem;
    transition: transform 0.3s ease;
}

.feat-card:hover .feat-icon-wrap {
    transform: scale(1.1);
}

.feat-green   { background: rgba(26, 92, 56, 0.08);  color: var(--v-green); }
.feat-gold    { background: rgba(197, 160, 40, 0.1);  color: var(--v-gold-d); }
.feat-emerald { background: rgba(16, 185, 129, 0.08); color: #059669; }
.feat-amber   { background: rgba(217, 119, 6, 0.08);  color: #b45309; }
.feat-teal    { background: rgba(20, 184, 166, 0.08); color: #0d9488; }
.feat-rose    { background: rgba(225, 29, 72, 0.06);  color: #be123c; }

.feat-name {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    font-size: 1.0625rem;
    color: var(--v-dark);
    margin-bottom: 0.5rem;
}

.feat-desc {
    font-size: 0.9375rem;
    line-height: 1.65;
    color: var(--v-text-l);
}


/* ==========================================================================
   7. PRICING
   ========================================================================== */

.vellum-pricing {
    padding: 6rem 0 7rem;
    background: var(--v-parch-100);
    position: relative;
}

.vellum-pricing::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--v-gold), transparent);
}

/* Toggle */
.price-toggle {
    display: inline-flex;
    background: var(--v-parch-200);
    border-radius: 999px;
    padding: 0.25rem;
    gap: 0.25rem;
}

.ptoggle-btn {
    padding: 0.5rem 1.5rem;
    border-radius: 999px;
    font-size: 0.8125rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.25s ease;
    background: transparent;
    color: var(--v-text-l);
    font-family: 'DM Sans', sans-serif;
}

.ptoggle-btn.active {
    background: var(--v-parchment);
    color: var(--v-dark);
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.save-tag {
    display: inline-block;
    background: rgba(26, 92, 56, 0.1);
    color: var(--v-green);
    font-size: 0.625rem;
    font-weight: 700;
    padding: 0.1rem 0.5rem;
    border-radius: 999px;
    margin-left: 0.375rem;
    vertical-align: middle;
}

/* Pricing grid */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 64rem;
    margin: 0 auto;
}

/* Card */
.pcard {
    background: var(--v-parchment);
    border: 1.5px solid var(--v-border);
    border-radius: var(--v-radius-lg);
    padding: 2.25rem 2rem;
    position: relative;
    transition: all 0.35s cubic-bezier(0.23, 1, 0.32, 1);
}

.pcard:hover {
    transform: translateY(-4px);
    box-shadow: var(--v-shadow-lg);
}

/* Featured */
.pcard-featured {
    border-color: var(--v-green);
    box-shadow: 0 0 0 3px rgba(26, 92, 56, 0.06);
}

.pcard-featured:hover {
    box-shadow: var(--v-shadow-lg), 0 0 0 3px rgba(26, 92, 56, 0.06);
}

.pcard-badge {
    position: absolute;
    top: -0.6875rem;
    left: 50%;
    transform: translateX(-50%);
    background: var(--v-green);
    color: #fff;
    font-size: 0.625rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.25rem 1rem;
    border-radius: 999px;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(26, 92, 56, 0.3);
}

.pcard-head {
    margin-bottom: 1.5rem;
}

.pcard-name {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--v-dark);
    margin-bottom: 0.25rem;
}

.pcard-desc {
    font-size: 0.8125rem;
    color: var(--v-text-l);
}

.pcard-price {
    display: flex;
    align-items: flex-end;
    gap: 0.25rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--v-border);
}

.pcurr {
    font-family: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
    font-size: 1.375rem;
    font-weight: 600;
    color: var(--v-gold-d);
    margin-bottom: 0.5rem;
    letter-spacing: -0.01em;
}

.pamount {
    font-family: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
    font-size: 4rem;
    font-weight: 700;
    color: var(--v-dark);
    line-height: 0.9;
    letter-spacing: -0.03em;
    background: linear-gradient(160deg, var(--v-dark) 40%, var(--v-green) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pcard-featured .pamount {
    background: linear-gradient(160deg, var(--v-dark) 30%, var(--v-gold-d) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pper {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.8125rem;
    color: var(--v-text-l);
    margin-bottom: 0.625rem;
    font-weight: 500;
}

.pannual {
    display: block;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.6875rem;
    color: var(--v-green);
    font-weight: 700;
    margin-top: 0.375rem;
    letter-spacing: 0.02em;
}

/* Feature list */
.pcard-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.pcard-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--v-text);
}

.pcard-list li i {
    font-size: 0.875rem;
    margin-top: 0.1rem;
    flex-shrink: 0;
}

.pcard-list li.ok i { color: var(--v-green); }
.pcard-list li.no i { color: #d1d5db; }
.pcard-list li.no   { color: #9ca3af; }


/* ==========================================================================
   8. FAQ
   ========================================================================== */

.vellum-faq {
    padding: 6rem 0 7rem;
    background: var(--v-parchment);
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.faq-row {
    border: 1px solid var(--v-border);
    border-radius: var(--v-radius);
    overflow: hidden;
    background: var(--v-parch-100);
    transition: all 0.3s ease;
}

.faq-row:hover,
.faq-row.is-open {
    border-color: rgba(26, 92, 56, 0.12);
}

.faq-row.is-open {
    box-shadow: 0 4px 16px rgba(10, 31, 19, 0.05);
    background: var(--v-parchment);
}

.faq-q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    width: 100%;
    padding: 1.25rem 1.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: background 0.2s ease;
    font-family: 'DM Sans', sans-serif;
}

.faq-q:hover {
    background: rgba(26, 92, 56, 0.02);
}

.faq-q h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    font-size: 1rem;
    color: var(--v-dark);
}

.faq-chevron {
    flex-shrink: 0;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background: rgba(26, 92, 56, 0.05);
    color: var(--v-green);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    transition: all 0.3s ease;
}

.faq-row.is-open .faq-chevron {
    background: var(--v-green);
    color: #fff;
    transform: rotate(45deg);
}

.faq-a {
    padding: 0 1.5rem 1.25rem;
}

.faq-a p {
    font-size: 0.9375rem;
    line-height: 1.75;
    color: var(--v-text-m);
}


/* ==========================================================================
   9. CTA
   ========================================================================== */

.vellum-cta {
    position: relative;
    overflow: hidden;
    background: var(--v-green-dd);
    padding: 7rem 1.5rem;
    text-align: center;
}

.cta-texture {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    background-size: 200px 200px;
    opacity: 0.03;
    pointer-events: none;
}

.cta-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(197, 160, 40, 0.08) 0%, transparent 60%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    filter: blur(60px);
    pointer-events: none;
}

.cta-inner {
    position: relative;
    z-index: 10;
    max-width: 40rem;
    margin: 0 auto;
}

.cta-ornament {
    margin-bottom: 2rem;
    color: var(--v-gold);
}

.cta-headline {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 700;
    font-size: clamp(1.875rem, 4vw, 2.75rem);
    color: #ffffff;
    line-height: 1.2;
    letter-spacing: -0.01em;
    margin-bottom: 1rem;
}

.cta-headline em {
    font-style: italic;
    color: var(--v-gold);
}

.cta-sub {
    font-size: 1.0625rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.7;
    margin-bottom: 2.5rem;
}


/* ==========================================================================
   10. FOOTER
   ========================================================================== */

.vellum-footer {
    background: var(--v-green-dd);
    color: rgba(255,255,255,0.4);
    position: relative;
}

.footer-top-border {
    height: 1px;
    background: linear-gradient(90deg,
        transparent 10%,
        rgba(197, 160, 40, 0.15) 30%,
        rgba(197, 160, 40, 0.25) 50%,
        rgba(197, 160, 40, 0.15) 70%,
        transparent 90%
    );
}


/* ==========================================================================
   11. BUTTONS
   ========================================================================== */

.vbtn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: 'DM Sans', system-ui, sans-serif;
    font-weight: 700;
    font-size: 0.875rem;
    line-height: 1;
    padding: 0.8125rem 1.75rem;
    border-radius: 0.75rem;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    white-space: nowrap;
    user-select: none;
    letter-spacing: 0.02em;
}

.vbtn:active {
    transform: scale(0.97);
}

.vbtn-lg {
    font-size: 0.9375rem;
    padding: 0.9375rem 2.25rem;
    border-radius: 0.875rem;
}

/* Gold CTA button */
.vbtn-gold {
    background: linear-gradient(135deg, var(--v-gold-l) 0%, var(--v-gold) 50%, var(--v-gold-d) 100%);
    color: var(--v-dark);
    box-shadow: 0 4px 16px rgba(197, 160, 40, 0.3), inset 0 1px 0 rgba(255,255,255,0.2);
}

.vbtn-gold:hover {
    box-shadow: 0 8px 28px rgba(197, 160, 40, 0.4), inset 0 1px 0 rgba(255,255,255,0.2);
    transform: translateY(-2px);
    color: var(--v-dark);
}

/* Primary green */
.vbtn-primary {
    background: linear-gradient(135deg, var(--v-green-l) 0%, var(--v-green) 100%);
    color: #ffffff;
    box-shadow: 0 4px 14px rgba(26, 92, 56, 0.3);
}

.vbtn-primary:hover {
    box-shadow: 0 8px 24px rgba(26, 92, 56, 0.4);
    transform: translateY(-2px);
    color: #ffffff;
}

/* Ghost on dark bg */
.vbtn-ghost-light {
    background: rgba(255,255,255,0.06);
    color: rgba(255,255,255,0.8);
    border: 1px solid rgba(255,255,255,0.12);
    backdrop-filter: blur(8px);
}

.vbtn-ghost-light:hover {
    background: rgba(255,255,255,0.12);
    border-color: rgba(255,255,255,0.25);
    color: #fff;
    transform: translateY(-2px);
}

/* Outline on light bg */
.vbtn-outline-dark {
    background: transparent;
    color: var(--v-green);
    border: 1.5px solid rgba(26, 92, 56, 0.2);
}

.vbtn-outline-dark:hover {
    background: rgba(26, 92, 56, 0.04);
    border-color: var(--v-green);
    transform: translateY(-2px);
    color: var(--v-green);
}


/* ==========================================================================
   12. SCROLL REVEAL
   ========================================================================== */

.scroll-reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s cubic-bezier(0.23, 1, 0.32, 1), transform 0.7s cubic-bezier(0.23, 1, 0.32, 1);
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

.scroll-reveal[data-delay="1"] { transition-delay: 0.06s; }
.scroll-reveal[data-delay="2"] { transition-delay: 0.12s; }
.scroll-reveal[data-delay="3"] { transition-delay: 0.18s; }
.scroll-reveal[data-delay="4"] { transition-delay: 0.24s; }
.scroll-reveal[data-delay="5"] { transition-delay: 0.30s; }
.scroll-reveal[data-delay="6"] { transition-delay: 0.36s; }

@media (prefers-reduced-motion: reduce) {
    .scroll-reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }
}


/* ==========================================================================
   13. RESPONSIVE
   ========================================================================== */

@media (max-width: 1023px) {
    .hero-inner {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 8rem;
        padding-bottom: 5rem;
        gap: 3rem;
    }

    .hero-text {
        max-width: 100%;
        margin: 0 auto;
    }

    .hero-eyebrow {
        justify-content: center;
    }

    .hero-desc {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-proof {
        justify-content: center;
    }

    .hero-visual {
        display: none;
    }

    .hero-floating-books {
        display: none;
    }

    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
    }
}

@media (max-width: 767px) {
    .vellum-hero {
        min-height: auto;
    }

    .hero-inner {
        padding-top: 6.5rem;
        padding-bottom: 4rem;
    }

    .hero-scroll-cue {
        display: none;
    }

    .vellum-steps,
    .vellum-features,
    .vellum-pricing,
    .vellum-faq {
        padding: 4rem 0 5rem;
    }

    .steps-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .trust-divider {
        display: none;
    }

    .trust-tagline {
        width: 100%;
        text-align: center;
    }

    .vellum-cta {
        padding: 4.5rem 1.25rem;
    }

    .faq-q {
        padding: 1rem 1.25rem;
    }

    .faq-a {
        padding: 0 1.25rem 1rem;
    }
}

@media (max-width: 480px) {
    .vbtn-gold,
    .vbtn-ghost-light {
        width: 100%;
        justify-content: center;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
    }

    .steps-grid {
        grid-template-columns: 1fr;
    }

    .pcard {
        padding: 1.75rem 1.25rem;
    }
}

/* ==========================================================================
   END OF public.css — Vellum
   ========================================================================== */
