/* ==========================================================================
   PROFIT POINT INSTITUTE — Apple-Style Light Design × Brandbook PPI
   Font: DM Sans | Culori: #ffd200, #ffb400, #3c3c46, #a0a0aa, #ffffff
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;0,9..40,800;1,9..40,400&display=swap');

:root {
    /* === Brandbook PPI Colors === */
    --yellow:       #ffd200;   /* Galben principal */
    --yellow-warm:  #ffb400;   /* Galben-portocaliu */
    --yellow-deep:  #f0b900;   /* Galben închis */
    --yellow-amber: #f09b00;   /* Amber */
    --charcoal:     #3c3c46;   /* Charcoal (headings dark) */
    --gray-mid:     #a0a0aa;   /* Gri mediu */
    --gray-dark:    #91919b;   /* Gri închis */
    --black:        #000000;
    --white:        #ffffff;
    --off-white:    #fafaf9;   /* Fundal a2a secțiuni */
    --surface-gray: #f4f4f6;   /* Carduri pe fond alb */

    /* Spacing */
    --pad: clamp(1.5rem, 6vw, 4rem);
    --section-pad: clamp(6rem, 12vh, 10rem);

    /* Font */
    --font: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* =========================================================================
   Base Reset
   ========================================================================= */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; background: var(--white); }
body {
    background: var(--white);
    color: var(--charcoal);
    font-family: var(--font);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    line-height: 1.3;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* GSAP initial states */
[data-anim] { opacity: 1; }

/* =========================================================================
   Typography
   ========================================================================= */
.t-hero {
    font-size: clamp(3.5rem, 8.5vw, 108px);
    font-weight: 700;
    letter-spacing: -0.04em;
    line-height: 1.03;
    color: var(--charcoal);
}
.t-hero .highlight {
    color: var(--yellow-warm);
}

.t-headline {
    font-size: clamp(2.2rem, 5.5vw, 72px);
    font-weight: 700;
    letter-spacing: -0.035em;
    line-height: 1.05;
    color: var(--charcoal);
}

.t-editorial {
    font-size: clamp(1.7rem, 3.5vw, 52px);
    font-weight: 500;
    letter-spacing: -0.02em;
    line-height: 1.2;
    color: rgba(60, 60, 70, 0.5);
}
.t-editorial strong {
    color: var(--charcoal);
    font-weight: 600;
}
/* On yellow background: dark text */
.bg-yellow .t-editorial { color: rgba(0,0,0,0.45); }
.bg-yellow .t-editorial strong { color: var(--black); }

.t-sub {
    font-size: clamp(1.05rem, 2vw, 22px);
    font-weight: 400;
    letter-spacing: -0.01em;
    line-height: 1.6;
    color: var(--gray-dark);
}
.t-label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gray-mid);
}

/* =========================================================================
   Section Backgrounds — Alternating Rhythm like Apple
   ========================================================================= */
.bg-white    { background: var(--white); }
.bg-offwhite { background: var(--off-white); }
.bg-yellow   { background: var(--yellow); }
.bg-charcoal { background: var(--charcoal); }
.bg-charcoal .t-headline,
.bg-charcoal h2,
.bg-charcoal h3 { color: var(--white); }
.bg-charcoal .t-sub,
.bg-charcoal p { color: rgba(255,255,255,0.65); }
.bg-charcoal .t-label { color: rgba(255,255,255,0.4); }

/* =========================================================================
   Buttons
   ========================================================================= */
.btn-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.4rem;
    border-radius: 980px;
    font-family: var(--font);
    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
    border: none;
    position: relative;
}
/* Primary: Yellow solid */
.btn-yellow {
    background: var(--yellow);
    color: var(--black);
    box-shadow: 0 4px 20px rgba(255, 210, 0, 0.3);
}
.btn-yellow:hover {
    background: var(--yellow-warm);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(255, 180, 0, 0.4);
}
/* Secondary: Outline charcoal */
.btn-outline {
    background: transparent;
    color: var(--charcoal);
    border: 1.5px solid rgba(60,60,70,0.25);
}
.btn-outline:hover {
    border-color: var(--charcoal);
    background: rgba(60,60,70,0.04);
    transform: translateY(-2px);
}
/* On dark/yellow bg */
.btn-outline-white {
    background: transparent;
    color: var(--white);
    border: 1.5px solid rgba(255,255,255,0.4);
}
.btn-outline-white:hover {
    border-color: var(--white);
    background: rgba(255,255,255,0.1);
}
/* Old compat */
.btn-gold { background: var(--yellow); color: var(--black); border-radius: 980px; padding: 1rem 2.4rem; font-weight: 600; transition: all 0.3s; display: inline-flex; align-items: center; }
.btn-gold:hover { background: var(--yellow-warm); transform: translateY(-2px); }
.btn-white { background: var(--white); color: var(--black); border-radius: 980px; padding: 1rem 2.4rem; font-weight: 600; transition: all 0.3s; display: inline-flex; align-items: center; }
.btn-white:hover { background: var(--off-white); transform: translateY(-2px); }

.link-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--charcoal);
    letter-spacing: -0.01em;
    transition: gap 0.25s;
}
.link-cta::after { content: '›'; font-size: 1.3em; }
.link-cta:hover { gap: 10px; }
.link-cta-yellow { color: var(--yellow-amber); }
/* Old blue link compatibility */
.link-blue { display: inline-flex; align-items: center; gap: 6px; color: var(--yellow-amber); font-size: 1.05rem; font-weight: 500; }
.link-blue::after { content: '›'; font-size: 1.3em; transition: transform 0.3s; }
.link-blue:hover::after { transform: translateX(4px); }

/* =========================================================================
   NAVBAR — Light Apple-Style
   ========================================================================= */
.global-nav {
    position: fixed;
    top: 0;
    width: 100%;
    height: 54px;
    /* Light glass navbar */
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: saturate(180%) blur(24px);
    -webkit-backdrop-filter: saturate(180%) blur(24px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s, box-shadow 0.3s;
}
.global-nav.scrolled {
    box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}
.global-nav.on-dark {
    background: transparent !important;
    border-bottom-color: transparent !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
}
.global-nav.on-dark .nav-logo {
    filter: brightness(0) invert(1);
}
.global-nav.on-dark .nav-link-btn,
.global-nav.on-dark .nav-link {
    color: rgba(255,255,255,0.85);
}
.global-nav.on-dark .nav-link-btn:hover,
.global-nav.on-dark .nav-link:hover {
    color: #fff;
}
.global-nav.on-dark.menu-open {
    background: rgba(10,10,10,0.95) !important;
    backdrop-filter: blur(24px) !important;
    -webkit-backdrop-filter: blur(24px) !important;
}
.global-nav.menu-open {
    background: rgba(255, 255, 255, 0.98);
}

.nav-content {
    width: 100%;
    max-width: 1180px;
    padding: 0 var(--pad);
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    position: relative;
}

/* Logo */
.nav-logo-link { display: flex; align-items: center; flex-shrink: 0; }
.nav-logo { height: 22px; filter: none; opacity: 1; }
/* If logo is white (inverted), show normal on light nav */

/* Nav Links Row */
.nav-links {
    display: flex;
    align-items: center;
    gap: 0.2rem;
    height: 100%;
}

/* Simple nav link */
.nav-link-simple {
    font-size: 13px;
    color: var(--charcoal);
    letter-spacing: -0.01em;
    padding: 6px 14px;
    border-radius: 98px;
    transition: color 0.2s, background 0.2s;
}
.nav-link-simple:hover { background: rgba(0,0,0,0.05); }

/* Dropdown trigger button */
.nav-link-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font);
    font-size: 13px;
    color: var(--charcoal);
    letter-spacing: -0.01em;
    padding: 6px 14px;
    border-radius: 98px;
    transition: color 0.2s, background 0.2s;
    display: flex;
    align-items: center;
    gap: 4px;
}
.nav-link-btn:hover,
.nav-item.active .nav-link-btn {
    background: rgba(0,0,0,0.05);
}

.nav-chevron {
    display: inline-block;
    font-size: 1.1em;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    line-height: 1;
}
.nav-item.active .nav-chevron { transform: rotate(90deg); }

.nav-item {
    position: static;
    height: 100%;
    display: flex;
    align-items: center;
}

/* CTA pill in nav */
.nav-cta {
    font-size: 12px;
    padding: 7px 18px;
    background: var(--yellow);
    color: var(--black);
    border-radius: 98px;
    font-weight: 700;
    font-family: var(--font);
    letter-spacing: -0.01em;
    transition: background 0.2s, transform 0.2s;
    flex-shrink: 0;
}
.nav-cta:hover { background: var(--yellow-warm); transform: scale(1.04); }

/* ===== MEGA MENU PANEL — Light ===== */
.mega-menu {
    position: fixed;
    top: 54px;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(32px) saturate(160%);
    -webkit-backdrop-filter: blur(32px) saturate(160%);
    border-bottom: 1px solid rgba(0,0,0,0.06);
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
    z-index: 999;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 0.28s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.28s cubic-bezier(0.16, 1, 0.3, 1);
}
.mega-menu.is-open {
    opacity: 1;
    pointer-events: all;
    transform: translateY(0);
}

.mega-menu-inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 2rem var(--pad) 2.5rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

/* Column */
.mega-col {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

/* Column Header (tier badge) */
.mega-col-header {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    padding: 0.85rem 1rem;
    border-radius: 14px;
    margin-bottom: 0.75rem;
    transition: filter 0.2s;
}

.tier-icon {
    font-size: 1.6rem;
    line-height: 1;
    flex-shrink: 0;
}

.tier-name {
    font-size: 15px;
    font-weight: 700;
    letter-spacing: -0.025em;
}
.tier-subtitle {
    font-size: 11px;
    font-weight: 400;
    opacity: 0.55;
    margin-top: 2px;
    letter-spacing: -0.01em;
}

/* Silver tier — light */
.tier-silver {
    background: linear-gradient(135deg, rgba(160,160,170,0.12), rgba(140,145,155,0.04));
    border: 1px solid rgba(145,145,155,0.2);
}
.tier-silver .tier-icon { color: #7a8090; }
.tier-silver .tier-name { color: #4a4e5e; }

/* Gold tier — light */
.tier-gold {
    background: linear-gradient(135deg, rgba(255,210,0,0.18), rgba(240,185,0,0.05));
    border: 1px solid rgba(255,210,0,0.35);
}
.tier-gold .tier-icon { color: var(--yellow-deep); }
.tier-gold .tier-name { color: var(--yellow-amber); }

/* Platinum tier — light */
.tier-platinum {
    background: linear-gradient(135deg, rgba(180,150,255,0.12), rgba(150,120,240,0.04));
    border: 1px solid rgba(160,130,235,0.22);
}
.tier-platinum .tier-icon { color: #8b5cf6; }
.tier-platinum .tier-name { color: #6d38d4; }

/* Column vertical divider */
.mega-col-divider {
    border-left: 1px solid rgba(0,0,0,0.06);
    padding-left: 1.5rem;
}

/* Section label */
.mega-section-label {
    display: block;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(60,60,70,0.35);
    padding: 0 10px;
    margin-bottom: 4px;
    margin-top: 6px;
}

/* Course list */
.mega-course-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.mega-course-list li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 7px 10px;
    border-radius: 10px;
    font-size: 13px;
    color: var(--gray-dark);
    letter-spacing: -0.01em;
    transition: background 0.15s, color 0.15s;
    gap: 0.5rem;
}
.mega-course-list li a:hover {
    background: rgba(0,0,0,0.05);
    color: var(--charcoal);
}

/* Item label */
.item-label { flex: 1; min-width: 0; }

/* Item right group */
.item-right {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    flex-shrink: 0;
}

/* Arrow */
.item-arrow {
    font-size: 12px;
    color: rgba(60,60,70,0.2);
    opacity: 0;
    transform: translateX(-4px);
    transition: opacity 0.18s, transform 0.18s, color 0.18s;
    flex-shrink: 0;
}
.mega-course-list li a:hover .item-arrow {
    opacity: 1;
    transform: translateX(0);
    color: var(--charcoal);
}

/* Free tag */
.tag-free {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: #16a34a;
    background: rgba(22,163,74,0.1);
    padding: 2px 7px;
    border-radius: 98px;
    flex-shrink: 0;
}

/* Overlay */
.mega-overlay {
    position: fixed;
    inset: 54px 0 0 0;
    z-index: 998;
    display: none;
}
.mega-overlay.active { display: block; }

/* Per-column CTA */
.mega-col-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: auto;
    padding: 8px 14px;
    border-radius: 98px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: -0.01em;
    transition: filter 0.2s, transform 0.2s;
    border: 1.5px solid;
    align-self: flex-start;
}
.mega-col-cta:hover { filter: brightness(0.88); transform: translateX(2px); }
.cta-silver { color: #5a6070; border-color: rgba(90,96,112,0.25); background: rgba(90,96,112,0.05); }
.cta-gold { color: var(--yellow-amber); border-color: rgba(240,155,0,0.35); background: rgba(255,210,0,0.06); }
.cta-platinum { color: #7c3aed; border-color: rgba(124,58,237,0.25); background: rgba(124,58,237,0.05); }

/* =========================================================================
   Layout Containers
   ========================================================================= */
.section {
    padding: var(--section-pad) 0;
    position: relative;
    overflow: hidden;
}
.container {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 var(--pad);
}
.container-full {
    width: 100%;
    padding: 0 var(--pad);
}

/* =========================================================================
   HERO — White background, large type, yellow accent shape
   ========================================================================= */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-top: 80px;
    padding-bottom: 40px;
    position: relative;
    overflow: hidden;
    background: var(--white);
}

/* Subtle ambient gradient behind hero */
.mesh-bg {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image:
        radial-gradient(ellipse at 30% 10%, rgba(255,210,0,0.12) 0px, transparent 55%),
        radial-gradient(ellipse at 70% 85%, rgba(255,180,0,0.08) 0px, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(250,250,245,1) 0px, transparent 100%);
    z-index: 0;
    pointer-events: none;
    animation: breath 20s ease-in-out infinite alternate;
}
@keyframes breath {
    0% { transform: scale(1); }
    100% { transform: scale(1.08); }
}

/* Decorative wave shape (SVG from brandbook KV) */
.hero-wave-deco {
    position: absolute;
    bottom: -20px;
    left: -80px;
    width: 70%;
    max-width: 900px;
    opacity: 0.12;
    pointer-events: none;
    z-index: 0;
}
.hero-wave-deco-right {
    position: absolute;
    top: 20%;
    right: -80px;
    width: 45%;
    max-width: 600px;
    opacity: 0.1;
    pointer-events: none;
    z-index: 0;
    transform: rotate(180deg);
}

.hero-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}
.hero-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-top: 2rem;
}

/* Yellow accent badge above headline */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,210,0,0.12);
    border: 1px solid rgba(255,210,0,0.35);
    border-radius: 98px;
    padding: 6px 16px;
    font-size: 13px;
    font-weight: 600;
    color: var(--yellow-amber);
    letter-spacing: -0.01em;
    margin-bottom: 0.5rem;
}
.hero-badge::before { content: '★'; font-size: 11px; }

/* =========================================================================
   Editorial Impact Section — Yellow Background (Wow moment)
   ========================================================================= */
.editorial-block {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}
.editorial-indent {
    margin-left: max(8%, 80px);
}
.editorial-stats {
    display: flex;
    gap: 4rem;
    margin-top: 4rem;
    padding-top: 4rem;
    border-top: 1px solid rgba(60,60,70,0.12);
}
.stat-item .huge-num {
    font-size: clamp(3rem, 7vw, 90px);
    font-weight: 700;
    letter-spacing: -0.04em;
    color: var(--yellow-amber);
    line-height: 1;
    margin-bottom: 0.4rem;
}
/* On yellow bg: stats in black */
.bg-yellow .stat-item .huge-num { color: var(--black); }
.bg-yellow .editorial-stats { border-top-color: rgba(0,0,0,0.12); }
.stat-item .stat-label {
    font-size: 1.05rem;
    color: var(--charcoal);
    font-weight: 500;
}
.bg-yellow .stat-item .stat-label { color: rgba(0,0,0,0.7); }

/* =========================================================================
   Bento Grid — Light Cards
   ========================================================================= */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: minmax(360px, auto);
    gap: 20px;
    margin-top: 4.5rem;
}

.bento-card {
    background: var(--surface-gray);
    border-radius: 32px;
    padding: clamp(2rem, 3.5vw, 3rem);
    border: 1px solid rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.16,1,0.3,1), box-shadow 0.4s, border-color 0.3s;
}
.bento-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
    border-color: rgba(255,210,0,0.3);
}
/* Accent card: yellow background */
.bento-card.accent-yellow {
    background: var(--yellow);
    border-color: transparent;
}
.bento-card.accent-yellow:hover {
    border-color: transparent;
    box-shadow: 0 20px 50px rgba(255,210,0,0.25);
}
/* Dark card */
.bento-card.accent-dark {
    background: var(--charcoal);
    border-color: transparent;
}
.bento-card.accent-dark h3, .bento-card.accent-dark p { color: var(--white); }
.bento-card.accent-dark .eyebrow { color: rgba(255,255,255,0.4); }

/* Image bento */
.bento-bg-img {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 0.5;
    mask-image: linear-gradient(to top, transparent 10%, black 70%);
    -webkit-mask-image: linear-gradient(to top, transparent 10%, black 70%);
}
.bento-card * { z-index: 2; position: relative; }

/* Grid spans */
.bento-wide   { grid-column: span 8; }
.bento-square { grid-column: span 4; }
.bento-full   { grid-column: span 12; display: flex; flex-direction: row; align-items: center; gap: 4rem; }

/* Typography inside Bento */
.bento-card .eyebrow {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--gray-mid);
    margin-bottom: 1.25rem;
    display: inline-block;
}
.bento-card.accent-yellow .eyebrow { color: rgba(0,0,0,0.4); }
.bento-card h3 {
    font-size: clamp(1.8rem, 3vw, 44px);
    font-weight: 600;
    letter-spacing: -0.025em;
    color: var(--charcoal);
    line-height: 1.1;
    margin-bottom: 1.25rem;
    max-width: 90%;
}
.bento-card.accent-yellow h3 { color: var(--black); }
.bento-card p {
    font-size: 1.15rem;
    color: var(--gray-dark);
    line-height: 1.6;
    margin-top: auto;
    font-weight: 400;
    max-width: 85%;
}
.bento-card.accent-yellow p { color: rgba(0,0,0,0.6); }

.bento-number {
    position: absolute;
    top: -30px;
    right: -20px;
    font-size: 280px;
    font-weight: 800;
    color: rgba(0,0,0,0.025);
    line-height: 1;
    pointer-events: none;
    z-index: 0;
}
.bento-card.accent-yellow .bento-number { color: rgba(0,0,0,0.04); }

/* =========================================================================
   Testimonials / Quotes — on charcoal bg
   ========================================================================= */
.quote-section {
    text-align: center;
    max-width: 960px;
    margin: 0 auto;
}
.quote-text {
    font-size: clamp(2rem, 4.5vw, 58px);
    font-weight: 500;
    letter-spacing: -0.025em;
    line-height: 1.15;
    color: var(--white);
    margin-bottom: 3.5rem;
}
.quote-author {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.55);
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}
.quote-author img {
    width: 60px; height: 60px;
    border-radius: 50%;
    margin-bottom: 0.75rem;
    border: 2px solid rgba(255,210,0,0.4);
}
.quote-author strong { color: var(--white); font-weight: 600; }

/* =========================================================================
   Final CTA / Form — Yellow background
   ========================================================================= */
.final-cta {
    background: var(--white);
    border-radius: 40px;
    padding: clamp(3.5rem, 7vw, 7rem);
    text-align: center;
    max-width: 1060px;
    margin: 0 auto;
    border: 1px solid rgba(0,0,0,0.06);
    box-shadow: 0 20px 60px rgba(0,0,0,0.06);
}

.apple-form {
    max-width: 400px;
    margin: 3.5rem auto 0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    text-align: left;
}

.apple-input {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1.5px solid rgba(60,60,70,0.2);
    padding: 0.85rem 0;
    font-size: 1.35rem;
    color: var(--charcoal);
    font-family: var(--font);
    outline: none;
    transition: all 0.3s;
}
.apple-input::placeholder { color: rgba(60,60,70,0.3); }
.apple-input:focus { border-bottom-color: var(--yellow-warm); }

.legal-text {
    font-size: 13px;
    color: var(--gray-mid);
    line-height: 1.6;
    text-align: center;
    margin-top: 1rem;
}
.legal-text a { color: var(--yellow-amber); text-decoration: underline; }

/* =========================================================================
   Gradient / Divider accents
   ========================================================================= */
.section-divider-yellow {
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--yellow), transparent);
    max-width: 180px;
    margin: 2rem auto 0;
    border-radius: 2px;
}
.section-divider-gray {
    height: 1px;
    background: rgba(0,0,0,0.08);
    margin: 0;
}

/* Premium label chip */
.chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 14px;
    border-radius: 98px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}
.chip-yellow { background: rgba(255,210,0,0.15); color: var(--yellow-amber); border: 1px solid rgba(255,210,0,0.3); }
.chip-dark { background: var(--charcoal); color: var(--white); }

/* =========================================================================
   Lucide Icons — global sizing & alignment
   ========================================================================= */
.lucide {
    display: inline-block;
    width: 1em;
    height: 1em;
    stroke-width: 1.75;
    stroke: currentColor;
    fill: none;
    vertical-align: -0.125em;
    flex-shrink: 0;
}

/* =========================================================================
   Responsive
   ========================================================================= */
@media (max-width: 900px) {
    .nav-links { display: none; }
    .bento-wide, .bento-square { grid-column: span 12; }
    .bento-full { flex-direction: column; align-items: flex-start; gap: 2.5rem; }
    .editorial-indent { margin-left: 0; }
    .editorial-stats { flex-direction: column; gap: 2rem; }
    .bento-card { padding: 2.25rem; border-radius: 24px; }
    .hero-actions { flex-direction: column; gap: 1rem; }
    .bento-grid { grid-auto-rows: minmax(280px, auto); gap: 14px; }
}
