@import url("https://fonts.googleapis.com/css2?family=Passion+One:wght@700&display=swap");

:root {
    --yellow: #ffe838;
    --cyan: #5ce1e6;
    --yellow-alt: #ffde59;
    --black: #000000;
    --white: #ffffff;
}

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

body {
    font-family:
        -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial,
        sans-serif;
    color: var(--white);
    background: var(--black);
}

/* Navigation */
.nav {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    height: 27.5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--yellow);
    filter: drop-shadow(6px 6px 0px rgba(0, 0, 0, 1));
}

.nav-accent-angle {
    position: absolute;
    top: 0px;
    left: -11px;
    width: 239px;
    height: 50px;
    background: var(--yellow);
    clip-path: polygon(0 0, 100% 0, 75% 100%, 0% 100%);
    z-index: 101;
    transform: rotate(-4deg);
    transform-origin: top left;
    filter: drop-shadow(6px 6px 0px rgba(0, 0, 0, 1));
}

.nav-logo {
    position: absolute;
    top: 8px;
    left: 13px;
    z-index: 102;
}

.nav-logo a {
    font-family: "Passion One", cursive;
    font-size: 27.6px;
    font-weight: 700;
    color: var(--black);
    text-decoration: none;
    transform: rotate(-4deg);
    display: inline-block;
    padding: 0;
    letter-spacing: 0.5px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.nav-links {
    position: absolute;
    top: 0;
    right: 40px;
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 35px;
    height: 27.5px;
    align-items: center;
}

.nav-links li {
    margin: 0;
    padding: 0;
}

.nav-links a {
    font-size: 14px;
    font-weight: 700;
    color: var(--black);
    text-decoration: none;
    transition: color 0.2s;
    display: block;
    padding: 8px 0;
}

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

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    overflow: hidden;
    padding-right: 40px;
    padding-top: 80px;
}

.hero.hero-left {
    justify-content: flex-start;
    padding-right: 0;
    padding-left: 40px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    object-fit: cover;
}

.hero-accent {
    position: absolute;
    top: 0;
    left: 0;
    height: 14px;
    width: 100%;
    background: var(--yellow);
}

.hero-accent-angle {
    position: absolute;
    top: 0;
    left: 0;
    transform: rotate(-5.5deg) translateY(-10px);
    transform-origin: top left;
    width: 116px;
    height: 42px;
    background: var(--yellow);
    clip-path: polygon(0 0, 100% 0, 85% 100%, 0% 100%);
}

.hero-content {
    position: relative;
    max-width: 550px;
    padding: 30px;
    background: var(--black);
    border: 8px solid var(--cyan);
    border-radius: 20px;
    margin: 0;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.hero-title {
    font-family: "Passion One", cursive;
    font-size: 32px;
    line-height: 1.4;
    font-weight: 700;
    font-style: italic;
    color: var(--white);
    margin-bottom: 20px;
}

.hero-highlight {
    font-size: 22.4px;
    font-weight: 700;
    color: var(--cyan);
    margin: 20px 0 10px;
}

.hero-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.hero-list li {
    font-size: 22.4px;
    line-height: 1.4;
    font-weight: 400;
    color: var(--white);
    margin: 5px 0;
}

.hero-cta {
    font-size: 22.4px;
    font-weight: 700;
    font-style: italic;
    color: var(--yellow-alt);
    margin-top: 20px;
}

/* Product Box Styles */
.product-box {
    cursor: pointer;
    transition:
        transform 0.2s,
        box-shadow 0.2s;
}

.product-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.6);
}

.product-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.product-box .hero-title,
.product-box .hero-highlight,
.product-box .hero-list,
.product-box .hero-cta {
    margin: 10px 0;
}

.product-box .hero-cta {
    text-align: right;
}

/* Hero Clickable */
.hero-clickable {
    cursor: pointer;
    transition:
        transform 0.2s,
        box-shadow 0.2s;
}

.hero-clickable:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.6);
}

.hero-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

/* Product Detail Hero - Full Color Background */
.product-detail-hero {
    position: relative;
    min-height: 100vh;
    padding: 80px 40px 60px;
}

.product-detail-hero .hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    object-fit: cover;
}

/* Content Hero Pages - Darkened/Grayscale Background */
.content-hero {
    position: relative;
    min-height: 100vh;
    padding: 80px 40px 60px;
}

.content-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    object-fit: cover;
    filter: brightness(0.25) grayscale(1);
}

.content-hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    color: var(--white);
}

.content-hero h1 {
    font-family: "Passion One", cursive;
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 40px;
    color: var(--yellow);
    letter-spacing: 1px;
}

.content-hero h2 {
    font-size: 32px;
    font-weight: 700;
    margin: 40px 0 20px;
    color: var(--yellow);
    letter-spacing: 0.5px;
}

.content-hero p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: var(--white);
}

.content-hero ul {
    font-size: 18px;
    line-height: 1.6;
    margin: 0;
    color: var(--white);
}

.content-hero li {
    margin-bottom: 10px;
}

.content-hero a {
    color: var(--cyan);
    font-weight: 600;
}

.content-hero a:hover {
    text-decoration: underline;
}

.founder-section {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    margin: 20px 0;
    background: var(--black);
    border: 4px solid var(--cyan);
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

.founder-portrait {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #666;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

.founder-bio {
    flex: 1;
}

.groove-card {
    background: var(--black);
    border: 4px solid var(--cyan);
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 24px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

.groove-card--yellow {
    border-color: var(--yellow);
}

.card-title {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 12px 0;
    color: var(--white);
}

.groove-card p:last-child {
    margin-bottom: 0;
}

/* Info Boxes for Product Pages */
.info-box {
    background: rgba(255, 255, 255, 0.95);
    color: var(--black);
    padding: 24px;
    border-radius: 8px;
    margin-bottom: 24px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.info-box p {
    margin: 0 0 12px 0;
    color: var(--black);
}

.info-box p:last-child {
    margin-bottom: 0;
}

.info-box ul {
    margin: 0;
    padding-left: 20px;
    color: var(--black);
}

.info-box li {
    margin-bottom: 8px;
}

.info-box li:last-child {
    margin-bottom: 0;
}

.info-box-highlight {
    font-size: 20px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 12px;
}

.info-box a {
    color: var(--black);
    font-weight: 700;
    text-decoration: underline;
}

.info-box a:hover {
    color: var(--cyan);
}

/* Screenshot Grid */
.screenshot-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin: 40px 0;
}

.screenshot-item {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 8px;
    padding: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.screenshot-item img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    display: block;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.screenshot-caption {
    margin: 12px 0 0 0;
    font-size: 14px;
    color: var(--black);
    text-align: center;
    font-weight: 600;
}

/* Pricing Grid */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    margin: 40px 0;
}

.pricing-tier {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    overflow: hidden;
    border: 3px solid #3a3a3a;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition:
        transform 0.2s,
        box-shadow 0.2s;
    display: flex;
    flex-direction: column;
}

.pricing-tier:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.pricing-tier-featured {
    border: 3px solid var(--yellow);
    position: relative;
}

.pricing-tier-featured::before {
    content: "⭐ POPULAR";
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--cyan);
    color: var(--black);
    font-size: 11px;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 4px;
    letter-spacing: 0.5px;
}

.pricing-tier-header {
    background: var(--black);
    padding: 28px 24px 24px;
    text-align: center;
}

.pricing-tier-featured .pricing-tier-header {
    background: linear-gradient(135deg, var(--black) 0%, #1a1a1a 100%);
}

.pricing-tier-name {
    font-family: "Passion One", cursive;
    font-size: 28px;
    font-weight: 700;
    color: var(--yellow);
    margin: 0 0 16px 0;
    letter-spacing: 0.5px;
}

.pricing-tier-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    color: var(--white);
}

.pricing-price-currency {
    font-size: 24px;
    font-weight: 600;
    color: var(--cyan);
}

.pricing-price-amount {
    font-size: 48px;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
}

.pricing-price-period {
    font-size: 18px;
    font-weight: 600;
    color: var(--cyan);
    margin-left: 4px;
}

.pricing-tier-body {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.pricing-tier-description {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a !important;
    margin: 0 0 20px 0;
    text-align: center;
    line-height: 1.4;
}

.pricing-features {
    list-style: none;
    margin: 0 !important;
    padding: 0 !important;
    margin-left: 0 !important;
    flex: 1;
}

.pricing-features li {
    font-size: 15px;
    line-height: 1.5;
    color: #1a1a1a !important;
    margin: 0 0 12px 0;
    margin-left: 0 !important;
    padding: 0 !important;
    padding-left: 0 !important;
}

.pricing-features li::before {
    content: "✓ ";
    color: var(--cyan);
    font-weight: 700;
    font-size: 18px;
}

.pricing-features li:last-child {
    margin-bottom: 0;
}

.pricing-features li strong {
    color: #1a1a1a;
    display: block;
    margin-bottom: 8px;
}

/* Content Pages */
.content-page {
    min-height: 100vh;
    padding: 120px 40px 60px;
    max-width: 1200px;
    margin: 0 auto;
    color: var(--black);
}

.content-page h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 40px;
    color: var(--black);
}

.content-page h2 {
    font-size: 32px;
    font-weight: 700;
    margin: 40px 0 20px;
    color: var(--black);
}

.content-page p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: var(--black);
}

.content-page ul,
.content-page ol {
    font-size: 18px;
    line-height: 1.6;
    margin: 20px 0 20px 30px;
    color: var(--black);
}

.content-page li {
    margin-bottom: 10px;
}

.content-page a {
    color: var(--cyan);
    font-weight: 600;
}

.content-page a:hover {
    text-decoration: underline;
}

/* Product Specific */
.product-hero {
    background: linear-gradient(135deg, var(--black) 0%, #1a1a1a 100%);
    padding: 120px 40px 60px;
    text-align: center;
    color: var(--white);
}

.product-hero h1 {
    font-size: 56px;
    font-weight: 700;
    color: var(--yellow);
    margin-bottom: 20px;
}

.product-hero .subtitle {
    font-size: 24px;
    color: var(--cyan);
    margin-bottom: 40px;
}

.product-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 40px;
    color: var(--black);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin: 60px 0;
}

.feature-card {
    background: var(--white);
    padding: 30px;
    border-radius: 8px;
    border: 2px solid var(--cyan);
}

.feature-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 15px;
}

.feature-card p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--black);
}

/* Responsive */
@media (max-width: 768px) {
    .nav-logo {
        left: 20px;
    }

    .nav-links {
        right: 20px;
        gap: 20px;
        font-size: 12px;
    }

    .hero {
        justify-content: center;
        padding-right: 20px;
    }

    .hero-content {
        margin: 0 20px;
        padding: 30px;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-highlight,
    .hero-list li,
    .hero-cta {
        font-size: 20px;
    }

    .content-page {
        padding: 100px 20px 40px;
    }

    .content-page h1 {
        font-size: 36px;
    }

    .product-hero h1 {
        font-size: 40px;
    }

    .product-hero .subtitle {
        font-size: 20px;
    }

    .founder-section {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .founder-portrait {
        width: 120px;
        height: 120px;
    }
}
