/* ============================================================
   VINCERE — Main Stylesheet
   Premium editorial aesthetic · Pure Gold palette
   A luxury brand site merged with a magazine layout
   ============================================================ */


/* ---------------------------------------------------------
   @FONT-FACE DECLARATIONS
   --------------------------------------------------------- */

/* Playfair Display — Variable Weight */
@font-face {
    font-family: "Playfair Display";
    src: url("../assets/fonts/PlayfairDisplay-VariableFont_wght.ttf") format("truetype");
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Playfair Display";
    src: url("../assets/fonts/PlayfairDisplay-Italic-VariableFont_wght.ttf") format("truetype");
    font-weight: 100 900;
    font-style: italic;
    font-display: swap;
}

/* Lato — Static Weights */
@font-face {
    font-family: "Lato";
    src: url("../assets/fonts/Lato-Light.ttf") format("truetype");
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Lato";
    src: url("../assets/fonts/Lato-LightItalic.ttf") format("truetype");
    font-weight: 300;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: "Lato";
    src: url("../assets/fonts/Lato-Regular.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Lato";
    src: url("../assets/fonts/Lato-Italic.ttf") format("truetype");
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: "Lato";
    src: url("../assets/fonts/Lato-Bold.ttf") format("truetype");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Lato";
    src: url("../assets/fonts/Lato-BoldItalic.ttf") format("truetype");
    font-weight: 700;
    font-style: italic;
    font-display: swap;
}


/* ---------------------------------------------------------
   DESIGN TOKENS (CSS Custom Properties)
   Pure Gold palette — from the Vincere iOS app
   --------------------------------------------------------- */

:root {
    /* Backgrounds */
    --bg-primary: #000000;
    --bg-secondary: #0A0A0D;
    --bg-card: rgba(255, 215, 0, 0.04);

    /* Accent — Gold */
    --accent: #FFD700;
    --accent-dim: rgba(255, 215, 0, 0.6);
    --accent-glow: rgba(255, 215, 0, 0.15);
    --accent-border: rgba(255, 215, 0, 0.2);

    /* Text */
    --text-primary: #FFFFFF;
    --text-secondary: rgba(255, 255, 255, 0.7);
    --text-tertiary: rgba(255, 255, 255, 0.4);

    /* Glass */
    --glass: rgba(255, 255, 255, 0.04);
    --glass-border: rgba(255, 255, 255, 0.08);

    /* Layout */
    --container-max: 1200px;
    --section-pad-v: 120px;
    --section-pad-h: 24px;
    --card-radius: 20px;

    /* Transitions */
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: 0.2s var(--ease-out-expo);
    --transition-base: 0.35s var(--ease-out-expo);
    --transition-slow: 0.6s var(--ease-out-expo);
}


/* ---------------------------------------------------------
   RESET & BASE
   --------------------------------------------------------- */

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

body {
    font-family: "Lato", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.7;
    background: var(--bg-primary);
    color: var(--text-primary);
    overflow-x: hidden;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition-fast);
}

ul, ol {
    list-style: none;
}

::selection {
    background: rgba(255, 215, 0, 0.3);
    color: #FFFFFF;
}


/* ---------------------------------------------------------
   TYPOGRAPHY SCALE
   Dramatic magazine / 60s editorial ad style
   --------------------------------------------------------- */

h1, h2, h3, h4, h5, h6 {
    font-family: "Playfair Display", Georgia, "Times New Roman", serif;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.01em;
}

p {
    font-family: "Lato", sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-secondary);
}

/* Kicker — uppercase category label */
.kicker,
.section-label {
    font-family: "Lato", sans-serif;
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--accent);
    display: inline-block;
    margin-bottom: 1rem;
}

/* Hero Title */
.hero-headline {
    font-family: "Playfair Display", Georgia, serif;
    font-weight: 700;
    font-size: clamp(48px, 8vw, 72px);
    line-height: 1.05;
    letter-spacing: -0.02em;
    color: var(--text-primary);
}

/* Hero Italic */
.hero-italic {
    font-family: "Playfair Display", Georgia, serif;
    font-weight: 400;
    font-style: italic;
    font-size: clamp(42px, 7vw, 64px);
    line-height: 1.1;
    color: var(--text-primary);
}

/* Section Title */
.section-title {
    font-family: "Playfair Display", Georgia, serif;
    font-weight: 700;
    font-size: clamp(32px, 5vw, 48px);
    line-height: 1.15;
}

/* Section Italic */
.section-italic {
    font-family: "Playfair Display", Georgia, serif;
    font-weight: 400;
    font-style: italic;
    font-size: clamp(28px, 4.5vw, 42px);
    line-height: 1.2;
}

/* Card Title */
.card-title {
    font-family: "Playfair Display", Georgia, serif;
    font-weight: 700;
    font-size: 22px;
    line-height: 1.3;
}

/* Quote — editorial pull-quote style */
.quote {
    font-family: "Playfair Display", Georgia, serif;
    font-weight: 400;
    font-style: italic;
    font-size: clamp(24px, 4vw, 38px);
    line-height: 1.4;
}

/* Body Large */
.body-large {
    font-family: "Lato", sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.7;
}

/* Caption */
.caption {
    font-family: "Lato", sans-serif;
    font-weight: 400;
    font-style: italic;
    font-size: 13px;
    line-height: 1.5;
    color: var(--text-tertiary);
}

/* CTA Text */
.cta-text {
    font-family: "Lato", sans-serif;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}


/* ---------------------------------------------------------
   LAYOUT PRIMITIVES
   --------------------------------------------------------- */

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--section-pad-h);
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-header h2 {
    font-size: clamp(32px, 5vw, 48px);
    margin-bottom: 16px;
    color: var(--text-primary);
}

.section-header p {
    font-family: "Lato", sans-serif;
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}


/* ---------------------------------------------------------
   UTILITY CLASSES
   --------------------------------------------------------- */

/* Accent Divider — the gold bar */
.accent-divider {
    width: 48px;
    height: 2.5px;
    background: var(--accent);
    border-radius: 2px;
    margin: 24px auto;
    display: block;
}

/* Glass Card — reusable morphism card */
.glass-card {
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--accent-border);
    border-radius: var(--card-radius);
}

/* Text Gradient — gold to orange */
.text-gradient {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

/* Fade In — base state (animated by animations.css / JS) */
.fade-in {
    opacity: 0;
    transition: opacity 0.8s var(--ease-out-expo);
}

.fade-in.visible {
    opacity: 1;
}


/* ---------------------------------------------------------
   NAVIGATION
   --------------------------------------------------------- */

.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    transition: background var(--transition-base),
                backdrop-filter var(--transition-base),
                border-color var(--transition-base),
                box-shadow var(--transition-base);
    background: transparent;
    border-bottom: 1px solid transparent;
}

.nav-scrolled {
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid var(--glass-border);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-logo a {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    height: 40px;
    width: auto;
}

.logo-text {
    font-family: "Lato", sans-serif;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--text-primary);
}

.nav-links {
    display: flex;
    gap: 36px;
    align-items: center;
}

.nav-links a {
    font-family: "Lato", sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: var(--text-secondary);
    letter-spacing: 0.5px;
    transition: color var(--transition-fast);
    position: relative;
}

.nav-links a::after {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent);
    transition: width var(--transition-base);
}

.nav-links a:hover {
    color: var(--text-primary);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    font-family: "Lato", sans-serif;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 12px 28px;
    background: var(--accent);
    color: #000000;
    border-radius: 100px;
    border: none;
    cursor: pointer;
    transition: transform var(--transition-fast),
                box-shadow var(--transition-fast),
                background var(--transition-fast);
}

.nav-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.3);
    background: #FFE033;
}


/* ---------------------------------------------------------
   HERO SECTION
   --------------------------------------------------------- */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 140px var(--section-pad-h) 80px;
    overflow: hidden;

    /* Ambient gold gradient background */
    background:
        radial-gradient(ellipse at 80% 20%, rgba(255, 215, 0, 0.12) 0%, transparent 60%),
        radial-gradient(ellipse at 20% 80%, rgba(255, 215, 0, 0.08) 0%, transparent 50%),
        var(--bg-primary);
}

/* Particle canvas overlay */
.particles {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 56px;
}

.hero-subhead {
    font-family: "Lato", sans-serif;
    font-size: clamp(16px, 2.5vw, 20px);
    font-weight: 300;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-top: 24px;
    margin-bottom: 12px;
}

/* Accent divider in hero */
.hero-content .accent-divider,
.hero-content hr {
    width: 48px;
    height: 2.5px;
    background: var(--accent);
    border: none;
    border-radius: 2px;
    margin: 24px auto;
}

/* Hero CTA Group */
.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 16px;
}

/* Hero Device Mockup */
.hero-device {
    position: relative;
    z-index: 1;
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
}

.hero-device img {
    width: 100%;
    height: auto;
    border-radius: 24px;
    box-shadow:
        0 40px 80px rgba(0, 0, 0, 0.5),
        0 0 60px rgba(255, 215, 0, 0.06);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    width: 24px;
    height: 40px;
    border: 2px solid var(--text-tertiary);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
    z-index: 2;
}

.scroll-arrow {
    width: 4px;
    height: 8px;
    background: var(--accent-dim);
    border-radius: 2px;
    animation: scrollPulse 2s ease infinite;
}

@keyframes scrollPulse {
    0%, 100% {
        opacity: 0;
        transform: translateY(0);
    }
    50% {
        opacity: 1;
        transform: translateY(8px);
    }
}


/* ---------------------------------------------------------
   PHILOSOPHY / QUOTE SECTION
   --------------------------------------------------------- */

.philosophy {
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--section-pad-v) var(--section-pad-h);
    background: var(--bg-primary);
}

.philosophy-quote {
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(24px, 4vw, 38px);
    font-weight: 400;
    font-style: italic;
    line-height: 1.5;
    text-align: center;
    max-width: 900px;
    color: var(--text-primary);
    background: linear-gradient(
        135deg,
        var(--text-primary) 0%,
        var(--accent-dim) 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}


/* ---------------------------------------------------------
   GRIT FINGERPRINT SECTION
   --------------------------------------------------------- */

.fingerprint {
    padding: var(--section-pad-v) var(--section-pad-h);
    background: var(--bg-primary);
}

.fingerprint-visual {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    max-width: var(--container-max);
    margin: 0 auto 48px;
}

.hexagon-chart {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

.hexagon-chart svg {
    width: 100%;
    height: auto;
}

.dimension-label {
    fill: var(--text-tertiary);
    font-family: "Lato", sans-serif;
    font-size: 12px;
    font-weight: 400;
}

.dimension-point {
    filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.5));
}

.dimensions-list {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.dimension {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.dimension-icon {
    color: var(--accent);
    font-size: 14px;
    line-height: 1.8;
    flex-shrink: 0;
}

.dimension-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.dimension-name {
    font-family: "Playfair Display", Georgia, serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
}

.dimension-desc {
    font-family: "Lato", sans-serif;
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.fingerprint-note {
    text-align: center;
    font-family: "Lato", sans-serif;
    font-style: italic;
    font-size: 16px;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}


/* ---------------------------------------------------------
   FEATURES SECTION
   --------------------------------------------------------- */

.features {
    padding: var(--section-pad-v) var(--section-pad-h);
    background: var(--bg-secondary);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    max-width: var(--container-max);
    margin: 0 auto;
}

.feature-card {
    position: relative;
    padding: 36px;
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--accent-border);
    border-radius: var(--card-radius);
    transition: transform var(--transition-base),
                border-color var(--transition-base),
                box-shadow var(--transition-base);
}

.feature-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 215, 0, 0.4);
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.4),
                0 0 30px rgba(255, 215, 0, 0.06);
}

/* Premium feature card — gold glow */
.feature-premium {
    border-color: var(--accent-border);
    background:
        linear-gradient(135deg, rgba(255, 215, 0, 0.06) 0%, rgba(255, 215, 0, 0.02) 100%);
}

.feature-premium:hover {
    border-color: var(--accent);
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.4),
                0 0 40px rgba(255, 215, 0, 0.12);
}

.feature-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 5px 14px;
    background: var(--accent);
    color: #000000;
    font-family: "Lato", sans-serif;
    font-size: 11px;
    font-weight: 700;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.feature-icon {
    width: 44px;
    height: 44px;
    margin-bottom: 24px;
    color: var(--accent);
}

.feature-icon svg {
    width: 100%;
    height: 100%;
}

.feature-card h3 {
    font-family: "Playfair Display", Georgia, serif;
    font-weight: 700;
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.feature-card p {
    font-family: "Lato", sans-serif;
    font-size: 15px;
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.7;
}

.feature-screenshot {
    width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
    margin-top: 8px;
}


/* ---------------------------------------------------------
   PHONE MOCKUP FRAME
   --------------------------------------------------------- */

.phone-frame {
    position: relative;
    border-radius: 40px;
    border: 3px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    max-width: 280px;
    margin: 0 auto;
    background: var(--bg-primary);
    box-shadow:
        0 30px 60px rgba(0, 0, 0, 0.5),
        0 0 40px rgba(255, 215, 0, 0.04);
}

.phone-frame img {
    width: 100%;
    display: block;
    object-fit: cover;
}


/* ---------------------------------------------------------
   THEMES SECTION
   --------------------------------------------------------- */

.themes {
    padding: var(--section-pad-v) var(--section-pad-h);
    background: var(--bg-primary);
}

.themes-carousel {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    max-width: var(--container-max);
    margin: 0 auto;
}

.theme-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    transition: transform var(--transition-base),
                border-color var(--transition-base),
                box-shadow var(--transition-base);
    border: 2px solid transparent;
    background: var(--bg-secondary);
}

.theme-card.active {
    border-color: var(--accent);
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.2);
}

.theme-card:hover {
    transform: translateY(-4px);
    border-color: var(--accent-border);
}

.theme-card img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
    transition: transform var(--transition-slow);
}

.theme-card:hover img {
    transform: scale(1.03);
}

.theme-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 28px 24px 24px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.92) 0%, transparent 100%);
}

.theme-info h4 {
    font-family: "Playfair Display", Georgia, serif;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--text-primary);
}

.theme-info p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
}


/* ---------------------------------------------------------
   COMMUNITY SECTION
   --------------------------------------------------------- */

.community {
    padding: var(--section-pad-v) var(--section-pad-h);
    background: var(--bg-secondary);
}

.community-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 28px;
    max-width: var(--container-max);
    margin: 0 auto;
}

.community-card {
    padding: 40px 36px;
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--accent-border);
    border-radius: var(--card-radius);
    transition: transform var(--transition-base),
                border-color var(--transition-base);
}

.community-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 215, 0, 0.4);
}

.community-card h3 {
    font-family: "Playfair Display", Georgia, serif;
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--accent);
}

.community-card > p {
    font-family: "Lato", sans-serif;
    font-size: 15px;
    color: var(--text-secondary);
    margin-bottom: 24px;
    line-height: 1.7;
}

.community-card ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.community-card li {
    padding-left: 24px;
    position: relative;
    font-family: "Lato", sans-serif;
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.community-card li::before {
    content: "\2192"; /* right arrow */
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 700;
}


/* ---------------------------------------------------------
   PRICING SECTION
   --------------------------------------------------------- */

.pricing {
    padding: var(--section-pad-v) var(--section-pad-h);
    background: var(--bg-primary);
}

.pricing-cards {
    display: flex;
    justify-content: center;
    gap: 20px;
    max-width: var(--container-max);
    margin: 0 auto;
    flex-wrap: wrap;
}

/* Plan Card — generic */
.pricing-card,
.plan-card {
    position: relative;
    flex: 1;
    min-width: 280px;
    max-width: 380px;
    padding: 40px 32px;
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--accent-border);
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    transition: transform var(--transition-base),
                border-color var(--transition-base),
                box-shadow var(--transition-base);
}

.pricing-card:hover,
.plan-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 215, 0, 0.35);
}

/* Featured / Selected pricing card */
.pricing-featured,
.pricing-card.selected,
.plan-card.selected {
    border-color: var(--accent);
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.15);
    transform: scale(1.04);
}

.pricing-featured:hover,
.pricing-card.selected:hover,
.plan-card.selected:hover {
    transform: scale(1.04) translateY(-4px);
}

/* Best Value badge */
.pricing-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 18px;
    background: #34C759;
    color: #FFFFFF;
    font-family: "Lato", sans-serif;
    font-size: 11px;
    font-weight: 700;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    white-space: nowrap;
}

.pricing-card h3 {
    font-family: "Playfair Display", Georgia, serif;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.pricing-price {
    font-family: "Playfair Display", Georgia, serif;
    font-size: 36px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.pricing-period {
    font-family: "Lato", sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.pricing-savings {
    font-family: "Lato", sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 28px;
}

.pricing-features {
    flex: 1;
    margin-bottom: 28px;
}

.pricing-features li {
    padding: 10px 0;
    border-bottom: 1px solid var(--glass-border);
    font-family: "Lato", sans-serif;
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.pricing-features li:last-child {
    border-bottom: none;
}


/* ---------------------------------------------------------
   BUTTONS
   --------------------------------------------------------- */

.btn-primary,
.btn-secondary {
    display: inline-block;
    font-family: "Lato", sans-serif;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: transform var(--transition-fast),
                box-shadow var(--transition-fast),
                background var(--transition-fast),
                border-color var(--transition-fast);
}

/* Primary CTA — Gold */
.btn-primary {
    background: var(--accent);
    color: #000000;
    padding: 16px 40px;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(255, 215, 0, 0.25);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(255, 215, 0, 0.35);
    background: #FFE033;
}

.btn-primary:active {
    transform: translateY(0);
    box-shadow: 0 4px 16px rgba(255, 215, 0, 0.2);
}

/* Shimmer animation on primary CTA */
.btn-primary::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.3) 50%,
        transparent 100%
    );
    animation: btnShimmer 2.5s infinite;
}

@keyframes btnShimmer {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

/* Secondary CTA — Glass outline */
.btn-secondary {
    background: var(--glass);
    color: var(--text-primary);
    padding: 16px 40px;
    border-radius: 12px;
    border: 1px solid var(--accent-border);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.btn-secondary:hover {
    transform: translateY(-2px);
    border-color: var(--accent-dim);
    background: rgba(255, 215, 0, 0.08);
    box-shadow: 0 8px 30px rgba(255, 215, 0, 0.1);
}

.btn-secondary:active {
    transform: translateY(0);
}


/* ---------------------------------------------------------
   DOWNLOAD / FINAL CTA SECTION
   --------------------------------------------------------- */

.download {
    padding: var(--section-pad-v) var(--section-pad-h);
    background: var(--bg-secondary);
}

.download-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.download-content h2 {
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.download-content > p {
    font-family: "Lato", sans-serif;
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.app-store-badge {
    display: inline-block;
    margin-bottom: 48px;
    transition: transform var(--transition-fast),
                filter var(--transition-fast);
}

.app-store-badge:hover {
    transform: translateY(-2px);
    filter: brightness(1.1);
}

.app-store-badge svg {
    height: 60px;
    width: auto;
}

.download-device {
    max-width: 500px;
    margin: 0 auto;
}

.download-device img {
    width: 100%;
    height: auto;
    border-radius: 24px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}


/* ---------------------------------------------------------
   FOOTER
   --------------------------------------------------------- */

.footer {
    padding: 64px var(--section-pad-h) 32px;
    background: var(--bg-primary);
    border-top: 1px solid var(--glass-border);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 64px;
    max-width: var(--container-max);
    margin: 0 auto 48px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-logo {
    width: 40px;
    height: 40px;
    color: var(--accent);
}

.footer-brand p {
    font-family: "Lato", sans-serif;
    font-size: 15px;
    font-style: italic;
    color: var(--text-secondary);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.footer-column h4 {
    font-family: "Lato", sans-serif;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 20px;
    color: var(--accent);
}

.footer-column a {
    display: block;
    font-family: "Lato", sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: var(--text-secondary);
    margin-bottom: 12px;
    transition: color var(--transition-fast);
}

.footer-column a:hover {
    color: var(--text-primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 32px;
    border-top: 1px solid var(--glass-border);
    max-width: var(--container-max);
    margin: 0 auto;
}

.footer-bottom p {
    font-family: "Lato", sans-serif;
    font-size: 13px;
    color: var(--text-tertiary);
    letter-spacing: 0.5px;
}


/* ---------------------------------------------------------
   RESPONSIVE — Tablet (768px)
   --------------------------------------------------------- */

@media (max-width: 768px) {

    :root {
        --section-pad-v: 80px;
        --section-pad-h: 20px;
    }

    /* Nav */
    .nav {
        padding: 16px 20px;
    }

    .nav-links {
        display: none;
    }

    /* Hero */
    .hero {
        padding: 120px 20px 60px;
        min-height: auto;
    }

    .hero-headline {
        font-size: clamp(36px, 8vw, 52px);
    }

    .hero-subhead {
        font-size: 16px;
    }

    .hero-cta {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-cta .btn-primary,
    .hero-cta .btn-secondary {
        width: 100%;
    }

    /* Fingerprint */
    .fingerprint-visual {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hexagon-chart {
        max-width: 300px;
    }

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

    /* Themes */
    .themes-carousel {
        grid-template-columns: 1fr;
    }

    .theme-card img {
        height: 300px;
    }

    /* Community */
    .community-features {
        grid-template-columns: 1fr;
    }

    /* Pricing */
    .pricing-cards {
        flex-direction: column;
        align-items: center;
    }

    .pricing-card,
    .plan-card {
        max-width: 100%;
        width: 100%;
    }

    .pricing-featured,
    .pricing-card.selected,
    .plan-card.selected {
        transform: scale(1);
    }

    .pricing-featured:hover,
    .pricing-card.selected:hover,
    .plan-card.selected:hover {
        transform: translateY(-4px);
    }

    /* Section headers */
    .section-header {
        margin-bottom: 56px;
    }

    .section-header h2 {
        font-size: clamp(28px, 5vw, 36px);
    }

    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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


/* ---------------------------------------------------------
   RESPONSIVE — Small Phone (480px)
   --------------------------------------------------------- */

@media (max-width: 480px) {

    :root {
        --section-pad-v: 64px;
        --section-pad-h: 16px;
    }

    .hero-headline {
        font-size: clamp(32px, 8vw, 42px);
    }

    .hero-subhead {
        font-size: 15px;
    }

    .section-header h2 {
        font-size: clamp(24px, 6vw, 32px);
    }

    /* Full-width buttons */
    .btn-primary,
    .btn-secondary {
        width: 100%;
        padding: 16px 24px;
        font-size: 14px;
    }

    .nav-cta {
        padding: 10px 20px;
        font-size: 12px;
    }

    /* Philosophy */
    .philosophy-quote {
        font-size: clamp(20px, 5vw, 28px);
    }

    /* Feature cards */
    .feature-card {
        padding: 28px 24px;
    }

    /* Pricing */
    .pricing-price {
        font-size: 32px;
    }

    /* Footer */
    .footer-links {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .footer-bottom p {
        font-size: 12px;
    }

    /* Theme cards */
    .theme-card img {
        height: 240px;
    }
}


/* ---------------------------------------------------------
   RESPONSIVE — Small Phone (375px)
   --------------------------------------------------------- */

@media (max-width: 375px) {
    .hero-headline {
        font-size: 30px;
    }

    .hero-subhead {
        font-size: 14px;
    }
}


/* ---------------------------------------------------------
   RESPONSIVE — Large Desktop (1440px+)
   --------------------------------------------------------- */

@media (min-width: 1440px) {
    :root {
        --container-max: 1400px;
    }
}


/* ---------------------------------------------------------
   ACCESSIBILITY — Reduced Motion
   --------------------------------------------------------- */

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


/* ---------------------------------------------------------
   PRINT STYLES
   --------------------------------------------------------- */

@media print {
    body {
        background: #fff;
        color: #000;
    }

    .nav,
    .particles,
    .scroll-indicator {
        display: none;
    }

    .hero {
        min-height: auto;
        background: none;
        padding: 40px 20px;
    }

    .glass-card,
    .feature-card,
    .community-card,
    .pricing-card {
        backdrop-filter: none;
        border: 1px solid #ccc;
        background: #f9f9f9;
    }
}
