@import url('https://fonts.googleapis.com/css2?family=Instrument+Serif:ital@0;1&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

/* ==========================================================================
   CSS CUSTOM PROPERTIES & DESIGN TOKENS
   ========================================================================== */
:root {
    /* Color Palette */
    --color-bg: #FAF9F6;
    /* Elegant off-white/cream background */
    --color-card-bg: #FFFFFF;
    /* Pure white for overlays */
    --color-text-main: #1A1A1A;
    /* Deep charcoal for body/headings */
    --color-text-muted: #5E5E5E;
    /* Mid-gray for secondary text */
    --color-text-light: #FFFFFF;
    /* White text for image overlay */
    --color-accent-orange: #ED572F;
    /* Vibrant orange for logo block */
    --color-accent-orange-hover: #D7431B;
    --color-overlay-dark: rgba(0, 0, 0, 0.25);
    /* Subtle dark overlay for legibility */

    /* Typography */
    --font-heading: 'Instrument Serif', Georgia, serif;
    --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

    /* Spacing & Layout */
    --page-padding: 2.5rem;
    --border-radius-main: 0px;
    --border-radius-card: 0px;
    --transition-smooth: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);

    /* Shadows */
    --shadow-premium: 0 10px 30px rgba(0, 0, 0, 0.04), 0 1px 8px rgba(0, 0, 0, 0.02);
    --shadow-card: 0 12px 32px rgba(0, 0, 0, 0.08);
}

/* ==========================================================================
   BASE & RESET
   ========================================================================== */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html,
body {
    width: 100%;
    height: 100%;
    height: 100dvh;
    background-color: var(--color-bg);
    color: var(--color-text-main);
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow: hidden;
    /* Enforce single viewport */
}

/* ==========================================================================
   LAYOUT STRUCTURE
   ========================================================================== */
.app-container {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    padding: var(--page-padding);
    gap: 1.5rem;
    max-width: 1600px;
    margin: 0 auto;
}

@media (max-width: 992px) {
    .app-container {
        height: 100%;
        height: 100dvh;
        padding: 1rem;
        gap: 0.75rem;
    }
}

/* ==========================================================================
   HEADER / NAVIGATION
   ========================================================================== */
.site-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 50px;
    padding: 0;
}

.logo-container {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    height: 44px;
    width: auto;
    object-fit: contain;
    transition: var(--transition-smooth);
    display: block;
}

.logo-container:hover .logo-img {
    transform: scale(1.05);
}

.main-nav {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-link {
    color: var(--color-text-main);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    position: relative;
    padding: 0.25rem 0;
    transition: var(--transition-smooth);
    opacity: 0.85;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--color-text-main);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.nav-link:hover {
    opacity: 1;
}

.nav-link:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.nav-link.active {
    opacity: 1;
    color: var(--color-accent-orange);
    font-weight: 600;
}

.nav-link.active::after {
    transform: scaleX(1);
    background-color: var(--color-accent-orange);
}

/* Mobile Nav Toggle Button */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 100;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--color-text-main);
    margin: 5px 0;
    transition: var(--transition-smooth);
}

@media (max-width: 768px) {
    .nav-toggle {
        display: block;
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100%;
        height: 100dvh;
        background-color: var(--color-card-bg);
        flex-direction: column;
        justify-content: center;
        gap: 3rem;
        z-index: 99;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.05);
        transition: right 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    }

    .main-nav.active {
        right: 0;
    }

    .nav-link {
        font-size: 1.3rem;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }
}

/* ==========================================================================
   HERO / VIEWPORT CONTAINER
   ========================================================================== */
.hero-showcase {
    flex: 1;
    position: relative;
    border-radius: var(--border-radius-main);
    overflow: hidden;
    box-shadow: var(--shadow-premium);
    background-color: #E2DDD5;
    /* Warm grey backup color */
}

/* Background image with high-quality styling */
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 1;
    transition: transform 10s ease-out;
}

.hero-bg-fallback {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('assets/sand_bg.jpg');
    background-size: cover;
    background-position: center;
    z-index: 1;
    display: none;
    transition: transform 10s ease-out;
}

.hero-showcase:hover .hero-bg,
.hero-showcase:hover .hero-bg-fallback {
    transform: scale(1.03); /* Subtle continuous movement look */
}

/* Vignette overlay for text legibility */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
            rgba(0, 0, 0, 0.4) 0%,
            rgba(0, 0, 0, 0.15) 50%,
            rgba(0, 0, 0, 0.3) 100%);
    z-index: 2;
}

/* Overlay Content Wrapper */
.hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(12, 1fr);
    padding: 2rem;
}

@media (max-width: 992px) {
    .hero-showcase {
        min-height: 0;
    }

    .hero-content {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        padding: 1.25rem;
        gap: 1.5rem;
    }

    .hero-title {
        font-size: clamp(1.4rem, 6.5vw, 2.2rem) !important;
    }

    .trend-card {
        padding: 1.25rem;
        gap: 0.75rem;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: clamp(1.3rem, 7.8vw, 1.95rem) !important;
    }

    .highlight-text {
        padding: 0 6px;
    }
}

/* ==========================================================================
   HERO CONTENT ELEMENTS
   ========================================================================== */

/* Main Headline */
.hero-headline-container {
    grid-column: 1 / -1;
    grid-row: 1 / 7;
    align-self: start;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(1.6rem, 5.5vw, 5.2rem);
    color: var(--color-text-light);
    line-height: 1.1;
    font-weight: 400;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

/* Lighter highlighted phrase */
.highlight-text {
    position: relative;
    display: inline-block;
    padding: 0 12px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 0px;
    border: none;
    margin-top: 0.5rem;
    white-space: nowrap;
}

@media (max-width: 992px) {
    .hero-headline-container {
        width: 100%;
    }

    .highlight-text {
        white-space: normal;
    }
}

/* Bottom Left Tagline */
.hero-tagline-container {
    grid-column: 1 / 7;
    grid-row: 10 / 13;
    align-self: end;
}

.hero-tagline {
    font-size: clamp(0.95rem, 1.2vw, 1.15rem);
    color: var(--color-text-light);
    opacity: 0.9;
    font-weight: 400;
    max-width: 460px;
    line-height: 1.6;
    letter-spacing: 0.2px;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

.hero-sub-tagline {
    margin-top: 1.25rem;
    font-size: clamp(1.1rem, 1.4vw, 1.3rem);
    max-width: min(580px, 100%);
}

@media (max-width: 992px) {
    .hero-tagline-container {
        width: 100%;
        order: 2;
    }

    .hero-tagline {
        max-width: 100%;
        font-size: 0.85rem;
    }

    .hero-sub-tagline {
        margin-top: 0.75rem;
        font-size: clamp(0.95rem, 4vw, 1.15rem);
    }
}

.trend-card {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    background-color: var(--color-card-bg);
    border-radius: var(--border-radius-card);
    padding: 1.75rem;
    max-width: 320px;
    width: 100%;
    box-shadow: var(--shadow-card);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: var(--transition-smooth);
    border: none;
}

.trend-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.trend-card-title {
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: 1.05rem;
    line-height: 1.4;
    color: var(--color-text-main);
    letter-spacing: -0.2px;
}

.trend-card-desc {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    line-height: 1.5;
    color: var(--color-text-muted);
}

.trend-card-btn {
    align-self: flex-end;
    background-color: var(--color-text-main);
    color: var(--color-text-light);
    border: none;
    padding: 0.65rem 1.25rem;
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 0px;
    cursor: pointer;
    transition: var(--transition-smooth);
    letter-spacing: 0.2px;
    margin-top: 0.25rem;
    text-decoration: none;
    display: inline-block;
}

.trend-card-btn:hover {
    background-color: var(--color-accent-orange);
    box-shadow: 0 4px 12px rgba(237, 87, 47, 0.25);
}

@media (max-width: 992px) {
    .trend-card {
        position: static;
        max-width: 100%;
        order: 3;
    }
}

/* ==========================================================================
   WAITLIST PAGE & FORM STYLING
   ========================================================================== */
.waitlist-content {
    overflow-y: auto;
}

.waitlist-layout-grid {
    grid-column: 1 / -1;
    grid-row: 1 / -1;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
    width: 100%;
    height: 100%;
}

@media (max-width: 992px) {
    .waitlist-layout-grid {
        display: flex;
        flex-direction: column;
        gap: 2rem;
        height: auto;
        overflow-y: visible;
        padding-bottom: 2rem;
    }
    .waitlist-content {
        overflow-y: auto;
    }
}

.waitlist-info-col {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    text-align: left;
}

.waitlist-header-group {
    display: flex;
    flex-direction: column;
}

/* Social Proof benefits block */
.why-join-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.why-join-title {
    font-family: var(--font-sans);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-text-light);
    letter-spacing: -0.2px;
}

.why-join-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.why-join-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.why-join-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    margin-top: 3px;
}

.why-join-icon-svg {
    color: var(--color-accent-orange);
    display: block;
}

.why-join-text {
    font-family: var(--font-sans);
    font-size: 0.9rem;
    line-height: 1.4;
    color: var(--color-text-light);
    opacity: 0.85;
}

/* Frosted Form Container */
.waitlist-card {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 0px;
    padding: 1.75rem;
    box-shadow: var(--shadow-card);
    transition: var(--transition-smooth);
    width: 100%;
}

@media (max-width: 768px) {
    .waitlist-card {
        padding: 1.5rem;
    }
}

/* Form controls */
.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 0.85rem;
    text-align: left;
}

.form-label {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-text-light);
    opacity: 0.95;
    letter-spacing: 0.2px;
}

.label-optional {
    font-weight: 400;
    opacity: 0.6;
    font-size: 0.75rem;
}

.form-input,
.form-select {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--color-text-light);
    padding: 0.7rem 1rem;
    font-family: var(--font-sans);
    font-size: 0.85rem;
    border-radius: 0px;
    outline: none;
    transition: var(--transition-smooth);
}

.form-input::placeholder {
    color: rgba(255, 255, 255, 0.35);
}

.form-input:focus,
.form-select:focus {
    background: rgba(255, 255, 255, 0.09);
    border-color: rgba(255, 255, 255, 0.45);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.05);
}

/* Error States */
.form-input.invalid,
.form-select.invalid {
    border-color: var(--color-accent-orange) !important;
    background: rgba(237, 87, 47, 0.05) !important;
}

.form-error-msg {
    display: none;
    color: var(--color-accent-orange);
    font-size: 0.7rem;
    font-weight: 500;
    margin-top: 0.25rem;
}

/* Form columns split */
.form-row-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

@media (max-width: 576px) {
    .form-row-split {
        grid-template-columns: 1fr;
        gap: 0;
    }
}

/* Custom Dropdown Arrow */
.custom-select-wrapper {
    position: relative;
}

.custom-select-wrapper::after {
    content: '▼';
    font-size: 0.6rem;
    color: rgba(255, 255, 255, 0.5);
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}

.form-select {
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    padding-right: 2.5rem;
}

.form-select option {
    background: #1A1A1A;
    color: var(--color-text-light);
}

/* Custom Checkbox controls */
.checkbox-group-container {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    margin-top: 0.25rem;
}

@media (min-width: 769px) {
    .checkbox-group-container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0.6rem 1rem;
    }
}

.checkbox-label-wrapper {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    user-select: none;
    position: relative;
}

.form-checkbox {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.custom-checkbox {
    height: 18px;
    width: 18px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 0px;
    display: inline-block;
    flex-shrink: 0;
    position: relative;
    transition: var(--transition-smooth);
}

.checkbox-label-wrapper:hover .custom-checkbox {
    border-color: rgba(255, 255, 255, 0.35);
}

.form-checkbox:checked ~ .custom-checkbox {
    background-color: var(--color-accent-orange);
    border-color: var(--color-accent-orange);
}

.custom-checkbox::after {
    content: '';
    position: absolute;
    display: none;
    left: 6px;
    top: 2px;
    width: 4px;
    height: 9px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.form-checkbox:checked ~ .custom-checkbox::after {
    display: block;
}

.checkbox-text-content {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    color: var(--color-text-light);
    opacity: 0.85;
    line-height: 1.4;
}

.form-checkbox:checked ~ .checkbox-text-content {
    opacity: 1;
}

/* Submit Waitlist Button */
.waitlist-submit-btn {
    width: 100%;
    background-color: var(--color-text-light);
    color: var(--color-text-main);
    border: none;
    padding: 0.8rem;
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 700;
    border-radius: 0px;
    cursor: pointer;
    transition: var(--transition-smooth);
    letter-spacing: 0.5px;
    margin-top: 1.25rem;
    text-transform: uppercase;
}

.waitlist-submit-btn:hover {
    background-color: var(--color-accent-orange);
    color: var(--color-text-light);
    box-shadow: 0 4px 15px rgba(237, 87, 47, 0.3);
}

.waitlist-submit-btn:active {
    transform: scale(0.98);
}

/* Success panel styling */
.waitlist-success-view {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 3rem 1rem;
    animation: waitlistFadeIn 0.5s ease-out;
}

.success-animation-icon {
    font-size: 3rem;
    margin-bottom: 1.25rem;
    animation: waitlistBounce 2s infinite;
}

.success-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 400;
    color: var(--color-text-light);
    line-height: 1.2;
    margin-bottom: 0.75rem;
}

.ticker-number-highlight {
    font-family: var(--font-sans);
    font-weight: 700;
    color: var(--color-accent-orange);
    text-shadow: 0 0 15px rgba(237, 87, 47, 0.3);
}

.success-desc {
    font-family: var(--font-sans);
    font-size: 0.95rem;
    color: var(--color-text-light);
    opacity: 0.85;
}

@keyframes waitlistFadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes waitlistBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* Waitlist Page Custom Ambient Background */
.ambient-bg-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
    pointer-events: none;
    border-radius: inherit; /* Maintain rounded corners of the parent container */
}

.waitlist-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #0b0b0d; /* Premium deep dark slate/black background */
    overflow: hidden;
    z-index: 1;
    transition: transform 0.5s ease-out; /* Parallax transitions */
}

.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.35;
    mix-blend-mode: screen;
    animation: orbPulse 12s infinite alternate ease-in-out;
    pointer-events: none;
}

.orb-1 {
    top: -10%;
    left: -10%;
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, rgba(237, 87, 47, 0.25) 0%, transparent 70%);
    animation-duration: 15s;
}

.orb-2 {
    bottom: -15%;
    right: -10%;
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
    animation-duration: 20s;
    animation-delay: -5s;
}

.orb-3 {
    top: 40%;
    left: 50%;
    width: 35vw;
    height: 35vw;
    background: radial-gradient(circle, rgba(237, 87, 47, 0.12) 0%, transparent 70%);
    animation-duration: 18s;
    animation-delay: -2s;
}

@keyframes orbPulse {
    0% {
        transform: translate(0, 0) scale(1);
        opacity: 0.3;
    }
    50% {
        transform: translate(3%, 5%) scale(1.1);
        opacity: 0.45;
    }
    100% {
        transform: translate(-2%, -3%) scale(0.95);
        opacity: 0.25;
    }
}

/* ==========================================================================
   BLOG LAYOUT & TYPOGRAPHY STYLES
   ========================================================================== */

/* Blog Pages Scrollable Configuration */
html.scrollable-page,
body.scrollable-page {
    overflow-y: auto !important;
    overflow-x: hidden !important;
    overflow: visible !important;
    height: auto !important;
}

html.scrollable-page .app-container,
body.scrollable-page .app-container {
    height: auto !important;
    min-height: 100vh;
    padding-bottom: 0;
}

html.scrollable-page .hero-showcase,
body.scrollable-page .hero-showcase {
    flex: none !important;
    height: auto !important;
    min-height: calc(100vh - 120px);
    overflow: visible !important;
}

/* Blog Content Container */
.blog-content {
    padding: 3rem 2.5rem;
    max-width: 1100px;
    margin: 0 auto;
    width: 100%;
    z-index: 2;
    position: relative;
    box-sizing: border-box;
}

@media (max-width: 768px) {
    .blog-content {
        padding: 2rem 1.25rem;
    }
}

/* Blog Detail Typography */
.blog-header {
    max-width: 850px;
    margin: 0 auto 3.5rem auto;
    text-align: center;
}

.blog-category {
    font-family: var(--font-sans);
    color: var(--color-accent-orange);
    text-transform: uppercase;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 1.25rem;
    display: inline-block;
}

.blog-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    line-height: 1.15;
    color: var(--color-text-light);
    margin-bottom: 1.5rem;
    font-weight: normal;
}

@media (max-width: 768px) {
    .blog-title {
        font-size: 2.25rem;
    }
}

.blog-meta-details {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    color: var(--color-text-muted);
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    opacity: 0.8;
}

.blog-article {
    max-width: 850px;
    margin: 0 auto;
    color: var(--color-text-light);
}

.blog-intro {
    font-size: 1.15rem;
    line-height: 1.7;
    opacity: 0.95;
    margin-bottom: 2rem;
    font-family: var(--font-sans);
    border-left: 2px solid var(--color-accent-orange);
    padding-left: 1.25rem;
}

.blog-body-paragraph {
    font-size: 1rem;
    line-height: 1.75;
    opacity: 0.85;
    margin-bottom: 1.5rem;
    font-family: var(--font-sans);
}

.blog-body-paragraph strong {
    color: var(--color-text-light);
    font-weight: 600;
}

.blog-inline-link,
.blog-article a:not(.blog-cta-btn):not(.blog-post-card) {
    color: var(--color-accent-orange);
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 4px;
    font-weight: 500;
    transition: var(--transition-smooth);
}

.blog-inline-link:hover,
.blog-article a:not(.blog-cta-btn):not(.blog-post-card):hover {
    color: var(--color-accent-orange-hover);
    text-decoration-color: var(--color-accent-orange-hover);
}

.blog-body-heading {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin: 3rem 0 1.25rem 0;
    font-weight: normal;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    padding-bottom: 0.5rem;
    color: var(--color-text-light);
}

.blog-list {
    margin: 1.5rem 0 1.5rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.blog-list-item {
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0.85;
    font-family: var(--font-sans);
}

.blog-list-item strong {
    color: var(--color-text-light);
    font-weight: 600;
}

/* Image blocks */
.blog-image-block {
    margin: 3.5rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    width: 100%;
}

.blog-image {
    width: 100%;
    height: auto;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.4);
}

.blog-image-caption {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    text-align: center;
    font-style: italic;
    opacity: 0.8;
}

/* Responsive Table */
.blog-table-wrapper {
    overflow-x: auto;
    margin: 2.5rem 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(8px);
}

.blog-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    font-family: var(--font-sans);
    font-size: 0.85rem;
    color: var(--color-text-light);
    min-width: 750px;
}

.blog-table th, 
.blog-table td {
    padding: 1rem 1.25rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.blog-table th {
    background: rgba(255, 255, 255, 0.04);
    font-weight: 600;
    color: var(--color-accent-orange);
    text-transform: uppercase;
    font-size: 0.7rem;
    letter-spacing: 1.5px;
}

.blog-table tr:last-child td {
    border-bottom: none;
}

.blog-table tr:hover td {
    background: rgba(255, 255, 255, 0.02);
}

/* VC Grid & Cards */
.vc-cards-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 3rem 0;
}

.vc-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 2.5rem;
    transition: var(--transition-smooth);
    color: var(--color-text-light);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

@media (max-width: 768px) {
    .vc-card {
        padding: 1.5rem;
        gap: 1.25rem;
    }
}

.vc-card:hover {
    border-color: rgba(237, 87, 47, 0.35);
    background: rgba(255, 255, 255, 0.04);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
}

.vc-card-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 1.25rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.vc-card-title {
    font-family: var(--font-heading);
    font-size: 2.25rem;
    font-weight: normal;
    color: var(--color-text-light);
    line-height: 1.1;
}

@media (max-width: 576px) {
    .vc-card-title {
        font-size: 1.75rem;
    }
}

.vc-card-badge {
    background: rgba(237, 87, 47, 0.15);
    color: var(--color-accent-orange);
    padding: 0.3rem 0.8rem;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.vc-card-meta {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    background: rgba(0, 0, 0, 0.2);
    padding: 1.25rem;
    border: 1px solid rgba(255, 255, 255, 0.04);
}

@media (min-width: 768px) {
    .vc-card-meta {
        grid-template-columns: repeat(4, 1fr);
    }
}

.vc-meta-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.vc-meta-label {
    font-size: 0.65rem;
    text-transform: uppercase;
    color: var(--color-text-muted);
    opacity: 0.65;
    letter-spacing: 0.5px;
}

.vc-meta-val {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-text-light);
}

.vc-card-body {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    line-height: 1.6;
}

.vc-body-section {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.vc-body-title {
    font-size: 0.8rem;
    text-transform: uppercase;
    color: var(--color-accent-orange);
    letter-spacing: 0.5px;
    font-weight: 700;
}

.vc-body-content {
    font-size: 0.95rem;
    opacity: 0.85;
}

.vc-best-for {
    background: rgba(237, 87, 47, 0.08);
    border-left: 2px solid var(--color-accent-orange);
    padding: 1rem 1.25rem;
    margin-top: 0.5rem;
}

.vc-best-for-text {
    font-size: 0.9rem;
    font-style: italic;
    opacity: 0.95;
    color: var(--color-text-light);
}

/* Custom waitlist CTA Banner card in blog */
.blog-cta-banner {
    position: relative;
    padding: 3.5rem 2rem;
    margin: 4.5rem 0;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
    background: #000;
}

.blog-cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.35;
    z-index: 1;
    pointer-events: none;
}

.blog-cta-content {
    position: relative;
    z-index: 2;
    max-width: 650px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.blog-cta-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--color-text-light);
    margin-bottom: 0.75rem;
    font-weight: normal;
    line-height: 1.2;
}

.blog-cta-desc {
    font-family: var(--font-sans);
    font-size: 0.95rem;
    opacity: 0.85;
    margin-bottom: 1.75rem;
    color: var(--color-text-light);
    line-height: 1.6;
}

.blog-cta-btn {
    display: inline-block;
    background-color: var(--color-text-light);
    color: var(--color-text-main);
    text-decoration: none;
    padding: 0.85rem 2rem;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition-smooth);
}

.blog-cta-btn:hover {
    background-color: var(--color-accent-orange);
    color: var(--color-text-light);
    box-shadow: 0 4px 15px rgba(237, 87, 47, 0.3);
}

/* Collapsible FAQ Section styling */
.faq-section {
    margin: 4.5rem 0;
}

.faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem 0;
}

.faq-item:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-question {
    font-family: var(--font-sans);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--color-text-light);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: var(--color-accent-orange);
}

.faq-answer {
    font-family: var(--font-sans);
    font-size: 0.95rem;
    line-height: 1.6;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    margin-top: 0rem;
    color: var(--color-text-muted);
}

.faq-item.open .faq-answer {
    opacity: 0.9;
    max-height: 300px;
    margin-top: 1rem;
    color: rgba(255, 255, 255, 0.85);
}

.faq-toggle-icon {
    font-size: 1.25rem;
    transition: transform 0.3s ease;
    color: var(--color-accent-orange);
    font-weight: 300;
}

.faq-item.open .faq-toggle-icon {
    transform: rotate(45deg);
}

/* Blog Listing Page Grid */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
    margin: 3.5rem 0;
}

@media (max-width: 600px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
}

.blog-post-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    transition: var(--transition-smooth);
    text-decoration: none;
    color: var(--color-text-light);
}

.blog-post-card:hover {
    transform: translateY(-8px);
    border-color: rgba(237, 87, 47, 0.4);
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3), 0 0 20px rgba(234, 88, 12, 0.1);
}

.blog-card-img-wrapper {
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background: #000;
}

.blog-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    opacity: 0.85;
}

.blog-post-card:hover .blog-card-img {
    transform: scale(1.03);
    opacity: 1;
}

.blog-card-body {
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    flex: 1;
}

.blog-card-category {
    font-size: 0.7rem;
    text-transform: uppercase;
    color: var(--color-accent-orange);
    font-weight: 700;
    letter-spacing: 1.5px;
}

.blog-card-title {
    font-family: var(--font-heading);
    font-size: 1.85rem;
    font-weight: normal;
    line-height: 1.2;
    color: var(--color-text-light);
}

.blog-card-excerpt {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    opacity: 0.85;
    line-height: 1.55;
}

.blog-card-footer {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    color: var(--color-text-muted);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 1rem 1.75rem;
    background: rgba(0, 0, 0, 0.1);
}

/* Breadcrumbs Styling */
.blog-breadcrumbs {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    font-family: var(--font-sans);
    font-size: 0.8rem;
    margin: 0 auto 1.75rem auto;
    max-width: 850px;
    justify-content: center;
    flex-wrap: wrap;
    line-height: 1.4;
}

a.breadcrumb-link {
    color: rgba(255, 255, 255, 0.6) !important;
    text-decoration: none !important;
    transition: var(--transition-smooth);
    font-weight: 500;
}

a.breadcrumb-link:hover {
    color: var(--color-accent-orange) !important;
    text-decoration: none !important;
    opacity: 1;
}

.breadcrumb-separator {
    color: rgba(255, 255, 255, 0.25);
    font-size: 0.75rem;
    user-select: none;
}

.breadcrumb-current {
    color: rgba(255, 255, 255, 0.95);
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 280px;
}

@media (max-width: 576px) {
    .blog-breadcrumbs {
        gap: 0.4rem;
        font-size: 0.75rem;
    }
    .breadcrumb-current {
        max-width: 180px;
    }
}

/* ==========================================================================
   RELATED POSTS WIDGET
   ========================================================================== */
.related-posts-section {
    margin-top: 5rem;
    padding-top: 3.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.related-posts-title {
    font-family: var(--font-heading);
    font-size: 2.25rem;
    color: var(--color-text-light);
    margin-bottom: 2rem;
    font-weight: normal;
}

.related-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

/* ==========================================================================
   PILLAR PAGE / GUIDE LAYOUT
   ========================================================================== */
.guide-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 4rem;
    align-items: start;
    width: 100%;
}

.guide-toc {
    position: sticky;
    top: 40px;
    padding-right: 1rem;
    max-height: calc(100vh - 80px);
    overflow-y: auto;
}

.guide-toc-title {
    font-size: 1.25rem;
    font-family: var(--font-heading);
    color: var(--color-text-light);
    margin-bottom: 1.5rem;
}

.guide-toc-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.guide-toc-link {
    color: var(--color-text-muted);
    text-decoration: none;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
    line-height: 1.4;
    display: block;
}

.guide-toc-link:hover,
.guide-toc-link.active {
    color: var(--color-accent-orange);
    text-decoration: none;
}

.guide-toc-mobile {
    display: none;
}

/* (Removed duplicate FAQ styles) */

@media (max-width: 992px) {
    .guide-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .guide-toc {
        display: none;
    }
    
    .guide-toc-mobile {
        display: block;
        margin-bottom: 2.5rem;
        background: rgba(255, 255, 255, 0.03);
        padding: 1.5rem;
        border-radius: 8px;
        border: 1px solid rgba(255, 255, 255, 0.08);
    }
    
    .guide-toc-mobile summary {
        font-family: var(--font-heading);
        font-size: 1.5rem;
        color: var(--color-text-light);
        cursor: pointer;
        outline: none;
        list-style: none; /* Hide default arrow */
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .guide-toc-mobile summary::-webkit-details-marker {
        display: none;
    }
    
    .guide-toc-mobile summary::after {
        content: '+';
        font-size: 1.5rem;
        color: var(--color-accent-orange);
    }
    
    .guide-toc-mobile[open] summary::after {
        content: '-';
    }
    
    .guide-toc-mobile .guide-toc-list {
        margin-top: 1.5rem;
        padding-top: 1.5rem;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }
}

/* ==========================================================================
   ANNOUNCEMENT BADGE
   ========================================================================== */
.announcement-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 102, 0, 0.15);
    border: 1px solid rgba(255, 102, 0, 0.4);
    color: var(--color-accent-orange);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    text-decoration: none;
    transition: var(--transition-smooth);
    letter-spacing: 0.02em;
}

.announcement-badge:hover {
    background: rgba(255, 102, 0, 0.25);
    transform: translateY(-2px);
    text-decoration: none;
    color: var(--color-accent-orange);
}

/* -------------------------------------------------------------------------- */
/* Infographic Data Cards */
/* -------------------------------------------------------------------------- */
.infographic-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.info-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 24px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--color-accent-orange), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3), 0 0 20px rgba(234, 88, 12, 0.1);
}

.info-card:hover::before {
    opacity: 1;
}

.info-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--color-accent-orange);
    margin-bottom: 8px;
    font-weight: 600;
}

.info-value {
    font-size: 1.4rem;
    color: var(--color-text-light);
    font-family: var(--font-heading);
    line-height: 1.3;
}

/* -------------------------------------------------------------------------- */
/* News Feed Cards */
/* -------------------------------------------------------------------------- */
.news-feed-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    margin-bottom: 25px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    text-decoration: none;
}

.news-feed-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 102, 0, 0.3);
    box-shadow: 0 10px 40px rgba(255, 102, 0, 0.1);
}

.news-image {
    width: 100%;
    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.news-feed-card:hover .news-image img {
    transform: scale(1.05);
}

.featured-news-card .news-image {
    height: 350px;
}

.featured-news-card .news-content {
    padding: 35px;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 10px;
}

.grid-news-card {
    margin-bottom: 0;
    height: 100%;
}

.grid-news-card .news-image {
    height: 200px;
}

.grid-news-card .news-content {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.news-feed-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(800px circle at var(--mouse-x, 0) var(--mouse-y, 0), rgba(255, 102, 0, 0.06), transparent 40%);
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
    z-index: 0;
}

.news-feed-card:hover::before {
    opacity: 1;
}

.news-content {
    position: relative;
    z-index: 1;
}

.news-feed-card .news-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.news-feed-card .news-category {
    font-size: 0.75rem;
    color: var(--color-accent-orange);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    background: rgba(255, 102, 0, 0.1);
    padding: 4px 10px;
    border-radius: 4px;
}

.news-feed-card .news-date-source {
    color: var(--color-text-muted);
    font-size: 0.85rem;
}

.news-feed-card .news-title {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    margin: 0;
    color: var(--color-text-light);
    line-height: 1.35;
    transition: color 0.2s ease;
}

.news-feed-card:hover .news-title {
    color: var(--color-accent-orange);
}

/* -------------------------------------------------------------------------- */
/* Digest Cards */
/* -------------------------------------------------------------------------- */
.digest-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin: 30px 0;
}

.digest-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: row;
    gap: 24px;
    align-items: center;
}

.digest-card:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 102, 0, 0.3);
    box-shadow: 0 12px 40px rgba(255, 102, 0, 0.1);
}

.digest-header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    flex: 0 0 220px;
    border-right: 1px dashed rgba(255, 255, 255, 0.1);
    padding-right: 24px;
    margin-bottom: 0;
    padding-bottom: 0;
}

.digest-startup {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--color-text-light);
    margin: 0;
}

.digest-amount, .digest-highlight {
    background: linear-gradient(135deg, rgba(255,102,0,0.2) 0%, rgba(255,102,0,0.05) 100%);
    border: 1px solid rgba(255,102,0,0.3);
    color: var(--color-accent-orange);
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    display: inline-block;
}

.digest-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.05rem;
    line-height: 1.6;
    margin: 0;
    flex: 1;
}

/* Responsive adjustment for Mobile screens */
@media (max-width: 768px) {
    .digest-card {
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
    }
    
    .digest-header {
        flex: none;
        border-right: none;
        padding-right: 0;
        border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
        padding-bottom: 16px;
        margin-bottom: 8px;
        width: 100%;
    }
}

/* -------------------------------------------------------------------------- */
/* Reading Progress Bar */
/* -------------------------------------------------------------------------- */
.reading-progress-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: transparent;
    z-index: 10000;
}

.reading-progress-bar {
    height: 100%;
    background: var(--color-accent-orange);
    width: 0%;
    transition: width 0.1s ease-out;
}

/* ==========================================================================
   ANNOUNCEMENT STRIP
   ========================================================================== */
body.has-announcement {
    display: flex;
    flex-direction: column;
    height: 100vh;
    height: 100dvh;
    overflow: hidden;
}

body.has-announcement .app-container {
    height: 0;
    flex: 1 1 auto;
}

.announcement-strip {
    background: #FAF9F6;
    border-bottom: 1.5px solid rgba(237, 87, 47, 0.4);
    padding: 8px 24px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    position: relative;
    flex-shrink: 0;
}

.announcement-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 1200px;
    width: 100%;
}

.announcement-tag {
    font-family: var(--font-sans);
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--color-accent-orange);
    background: rgba(237, 87, 47, 0.08);
    border: 1px solid rgba(237, 87, 47, 0.2);
    padding: 2px 8px;
    border-radius: 12px;
    letter-spacing: 0.5px;
    margin-right: 12px;
    text-transform: uppercase;
    flex-shrink: 0;
}

.announcement-text {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 500;
    color: rgba(26, 26, 26, 0.8);
    letter-spacing: 0.2px;
    margin-right: 16px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.announcement-cta {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-accent-orange);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: var(--transition-smooth);
    flex-shrink: 0;
}

.announcement-cta .announcement-arrow {
    display: inline-block;
    transition: transform 0.2s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.announcement-cta:hover {
    color: var(--color-accent-orange-hover);
}

.announcement-cta:hover .announcement-arrow {
    transform: translateX(4px);
}

@media (max-width: 768px) {
    .announcement-strip {
        padding: 8px 16px;
    }
    .announcement-text {
        font-size: 0.8rem;
        margin-right: 8px;
    }
    .announcement-cta {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .announcement-tag {
        display: none;
    }
}