/**
 * HighNoon AI Page Layout
 * 
 * Enterprise-level styling for the HighNoon AI landing page.
 * Features gold/saffron sovereign AI theme with glassmorphism design.
 */

/* ============================================================================
   CSS VARIABLES
   ============================================================================ */
.highnoon-page {
    --highnoon-gold: #D4A84B;
    --highnoon-gold-light: #F4D794;
    --highnoon-gold-dark: #A07D33;
    --highnoon-green: #4ade80;
    --highnoon-green-dark: #22c55e;
    --highnoon-red: #f87171;
    --highnoon-red-dark: #ef4444;
    --highnoon-blue: #60a5fa;
    --highnoon-purple: #a78bfa;
    --highnoon-surface: rgba(255, 255, 255, 0.03);
    --highnoon-glass: rgba(255, 255, 255, 0.05);
    --highnoon-border: rgba(255, 255, 255, 0.1);
    --highnoon-text: rgba(255, 255, 255, 0.9);
    --highnoon-text-muted: rgba(255, 255, 255, 0.6);
}

/* ============================================================================
   BREADCRUMBS
   ============================================================================ */
.highnoon-page .breadcrumbs {
    padding: 1rem 2rem;
    background: transparent;
    position: relative;
    z-index: 10;
}

.highnoon-page .breadcrumbs ol {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
    max-width: 1200px;
    margin: 0 auto;
}

.highnoon-page .breadcrumbs li {
    display: flex;
    align-items: center;
    font-size: 0.875rem;
    color: var(--highnoon-text-muted);
}

.highnoon-page .breadcrumbs li:not(:last-child)::after {
    content: '/';
    margin-left: 0.5rem;
    color: var(--highnoon-border);
}

.highnoon-page .breadcrumbs a {
    color: var(--highnoon-text-muted);
    text-decoration: none;
    transition: color 0.2s ease;
}

.highnoon-page .breadcrumbs a:hover {
    color: var(--highnoon-gold);
}

.highnoon-page .breadcrumbs li[aria-current="page"] {
    color: var(--highnoon-gold);
    font-weight: 500;
}

/* ============================================================================
   PAGE CONTAINER
   ============================================================================ */
.highnoon-page {
    min-height: 100vh;
    background: linear-gradient(180deg, #0a0a0a 0%, #111111 50%, #0d0d0d 100%);
    color: var(--highnoon-text);
    position: relative;
    overflow-x: hidden;
}

.highnoon-animate-slide-up {
    animation: highnoon-slideUp 0.6s ease-out forwards;
}

@keyframes highnoon-slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.highnoon-section-spacer {
    height: 4rem;
}

@media (max-width: 768px) {
    .highnoon-section-spacer {
        height: 2rem;
    }
}

/* ============================================================================
   SECTION ANIMATIONS
   ============================================================================ */
.highnoon-section--visible {
    animation: highnoon-fadeInUp 0.6s ease-out forwards;
}

@keyframes highnoon-fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================================================
   HIGHLIGHTS
   ============================================================================ */
.highnoon-highlight {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 0.5rem 1rem;
    border-radius: 99px;
    margin-bottom: 1rem;
}

.highnoon-highlight--gold {
    background: linear-gradient(135deg, rgba(212, 168, 75, 0.2), rgba(212, 168, 75, 0.1));
    color: var(--highnoon-gold);
    border: 1px solid rgba(212, 168, 75, 0.3);
}

.highnoon-highlight--green {
    background: linear-gradient(135deg, rgba(74, 222, 128, 0.2), rgba(74, 222, 128, 0.1));
    color: var(--highnoon-green);
    border: 1px solid rgba(74, 222, 128, 0.3);
}

.highnoon-highlight--blue {
    background: linear-gradient(135deg, rgba(96, 165, 250, 0.2), rgba(96, 165, 250, 0.1));
    color: var(--highnoon-blue);
    border: 1px solid rgba(96, 165, 250, 0.3);
}

.highnoon-highlight--purple {
    background: linear-gradient(135deg, rgba(167, 139, 250, 0.2), rgba(167, 139, 250, 0.1));
    color: var(--highnoon-purple);
    border: 1px solid rgba(167, 139, 250, 0.3);
}

/* ============================================================================
   SECTION TITLES
   ============================================================================ */
.highnoon-section-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.highnoon-section-subtitle {
    font-size: 1.125rem;
    color: var(--highnoon-text-muted);
    max-width: 700px;
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

/* ============================================================================
   HERO SECTION
   ============================================================================ */
.highnoon-hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6rem 2rem 4rem;
    overflow: hidden;
}

.highnoon-hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.highnoon-hero__neural-pattern {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(212, 168, 75, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(212, 168, 75, 0.08) 0%, transparent 40%);
}

.highnoon-hero__grid-lines {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(212, 168, 75, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(212, 168, 75, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
}

.highnoon-hero__orb {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 168, 75, 0.15) 0%, transparent 60%);
    filter: blur(80px);
    animation: highnoon-orb-pulse 6s ease-in-out infinite;
}

@keyframes highnoon-orb-pulse {

    0%,
    100% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        opacity: 0.8;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

.highnoon-hero__content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
}

.highnoon-hero__badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: var(--highnoon-gold);
    background: rgba(212, 168, 75, 0.1);
    border: 1px solid rgba(212, 168, 75, 0.3);
    padding: 0.5rem 1.25rem;
    border-radius: 99px;
    margin-bottom: 1.5rem;
}

.highnoon-hero__title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #fff 0%, var(--highnoon-gold-light) 50%, var(--highnoon-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.highnoon-hero__subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--highnoon-text-muted);
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.highnoon-hero__subtitle strong {
    color: var(--highnoon-gold);
}

.highnoon-hero__actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.highnoon-hero__btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.25s ease;
}

.highnoon-hero__btn--primary {
    background: linear-gradient(135deg, var(--highnoon-gold) 0%, var(--highnoon-gold-dark) 100%);
    color: #000;
    box-shadow: 0 4px 20px rgba(212, 168, 75, 0.3);
}

.highnoon-hero__btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(212, 168, 75, 0.4);
}

.highnoon-hero__btn--secondary {
    background: var(--highnoon-glass);
    color: white;
    border: 1px solid var(--highnoon-border);
    backdrop-filter: blur(12px);
}

.highnoon-hero__btn--secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

/* ============================================================================
   MARKET GAP SECTION
   ============================================================================ */
.highnoon-gap-section {
    padding: 4rem 2rem;
}

.highnoon-gap-section__inner {
    max-width: 1200px;
    margin: 0 auto;
}

.highnoon-problem-comparison {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

@media (max-width: 768px) {
    .highnoon-problem-comparison {
        grid-template-columns: 1fr;
    }
}

.highnoon-problem-column {
    background: var(--highnoon-glass);
    border: 1px solid var(--highnoon-border);
    border-radius: 16px;
    padding: 2rem;
    backdrop-filter: blur(12px);
}

.highnoon-problem-column--cloud {
    border-color: rgba(248, 113, 113, 0.3);
}

.highnoon-problem-column--local {
    border-color: rgba(248, 113, 113, 0.3);
}

.highnoon-problem-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--highnoon-border);
}

.highnoon-problem-header svg {
    color: var(--highnoon-red);
}

.highnoon-problem-header h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: white;
    margin: 0;
}

.highnoon-problem-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.highnoon-problem-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.highnoon-problem-icon {
    color: var(--highnoon-red);
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.highnoon-problem-item strong {
    display: block;
    color: white;
    font-size: 0.95rem;
    margin-bottom: 0.25rem;
}

.highnoon-problem-item p {
    color: var(--highnoon-text-muted);
    font-size: 0.875rem;
    line-height: 1.5;
    margin: 0;
}

/* ============================================================================
   SOLUTION SECTION
   ============================================================================ */
.highnoon-solution-section {
    padding: 4rem 2rem;
    background: linear-gradient(180deg, transparent 0%, rgba(74, 222, 128, 0.02) 50%, transparent 100%);
}

.highnoon-solution-section__inner {
    max-width: 1200px;
    margin: 0 auto;
}

.highnoon-solution-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

@media (max-width: 900px) {
    .highnoon-solution-grid {
        grid-template-columns: 1fr;
    }
}

.highnoon-solution-card {
    background: var(--highnoon-glass);
    border: 1px solid rgba(74, 222, 128, 0.2);
    border-radius: 16px;
    padding: 2rem;
    backdrop-filter: blur(12px);
    transition: all 0.3s ease;
}

.highnoon-solution-card:hover {
    border-color: rgba(74, 222, 128, 0.4);
    transform: translateY(-4px);
    box-shadow: 0 10px 40px rgba(74, 222, 128, 0.1);
}

.highnoon-solution-card__header {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
}

.highnoon-solution-card__icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: rgba(74, 222, 128, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.highnoon-solution-card__icon svg {
    color: var(--highnoon-green);
}

.highnoon-solution-card__title {
    font-size: 1.125rem;
    font-weight: 600;
    color: white;
    margin: 0;
    line-height: 1.3;
}

.highnoon-solution-card__desc {
    color: var(--highnoon-text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.highnoon-solution-card__specs {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.highnoon-solution-card__specs li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--highnoon-green);
}

.highnoon-solution-card__specs svg {
    flex-shrink: 0;
}

/* ============================================================================
   USE CASES SECTION
   ============================================================================ */
.highnoon-usecases-section {
    padding: 4rem 2rem;
}

.highnoon-usecases-section__inner {
    max-width: 1200px;
    margin: 0 auto;
}

.highnoon-usecases-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

@media (max-width: 1100px) {
    .highnoon-usecases-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

.highnoon-usecase-card {
    background: var(--highnoon-glass);
    border: 1px solid var(--highnoon-border);
    border-radius: 16px;
    padding: 1.75rem;
    backdrop-filter: blur(12px);
    text-align: center;
    transition: all 0.3s ease;
}

.highnoon-usecase-card:hover {
    border-color: var(--highnoon-blue);
    transform: translateY(-4px);
}

.highnoon-usecase-card__icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1rem;
    background: rgba(96, 165, 250, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.highnoon-usecase-card__icon svg {
    color: var(--highnoon-blue);
}

.highnoon-usecase-card__title {
    font-size: 1.125rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.75rem;
}

.highnoon-usecase-card__desc {
    font-size: 0.875rem;
    color: var(--highnoon-text-muted);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.highnoon-usecase-card__advantage {
    font-size: 0.8rem;
    color: var(--highnoon-green);
    padding-top: 1rem;
    border-top: 1px solid var(--highnoon-border);
    margin: 0;
}

.highnoon-usecase-card__advantage strong {
    color: white;
}

/* ============================================================================
   TECH SPECS SECTION
   ============================================================================ */
.highnoon-specs-section {
    padding: 4rem 2rem;
    background: linear-gradient(180deg, transparent 0%, rgba(167, 139, 250, 0.02) 50%, transparent 100%);
}

.highnoon-specs-section__inner {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.highnoon-specs-card {
    background: var(--highnoon-glass);
    border: 1px solid var(--highnoon-border);
    border-radius: 16px;
    padding: 2rem;
    backdrop-filter: blur(12px);
    overflow: hidden;
}

.highnoon-specs-table {
    width: 100%;
    border-collapse: collapse;
}

.highnoon-specs-table th,
.highnoon-specs-table td {
    padding: 1rem 1.25rem;
    text-align: left;
    border-bottom: 1px solid var(--highnoon-border);
}

.highnoon-specs-table tr:last-child th,
.highnoon-specs-table tr:last-child td {
    border-bottom: none;
}

.highnoon-specs-table th {
    font-weight: 600;
    color: white;
    width: 40%;
    font-size: 0.95rem;
}

.highnoon-specs-table td {
    color: var(--highnoon-purple);
    font-size: 0.95rem;
}

/* ============================================================================
   ROADMAP SECTION
   ============================================================================ */
.highnoon-roadmap-section {
    padding: 4rem 2rem;
}

.highnoon-roadmap-section__inner {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.highnoon-roadmap-timeline {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin: 3rem 0 2rem;
    position: relative;
}

.highnoon-roadmap-timeline::before {
    content: '';
    position: absolute;
    top: 25px;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 2px;
    background: linear-gradient(90deg, var(--highnoon-gold), var(--highnoon-gold-dark));
}

@media (max-width: 600px) {
    .highnoon-roadmap-timeline {
        flex-direction: column;
        gap: 2rem;
        align-items: center;
    }

    .highnoon-roadmap-timeline::before {
        display: none;
    }
}

.highnoon-roadmap-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 280px;
    text-align: center;
}

.highnoon-roadmap-item__marker {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #111;
    border: 3px solid var(--highnoon-gold);
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.highnoon-roadmap-item--current .highnoon-roadmap-item__marker {
    background: var(--highnoon-gold);
}

.highnoon-roadmap-item--current .highnoon-roadmap-item__marker svg {
    color: #000;
}

.highnoon-roadmap-item--future .highnoon-roadmap-item__marker svg {
    color: var(--highnoon-gold);
}

.highnoon-roadmap-item__content {
    background: var(--highnoon-glass);
    border: 1px solid var(--highnoon-border);
    border-radius: 12px;
    padding: 1.5rem;
    backdrop-filter: blur(12px);
}

.highnoon-roadmap-item__year {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--highnoon-gold);
    background: rgba(212, 168, 75, 0.1);
    padding: 0.25rem 0.75rem;
    border-radius: 99px;
    margin-bottom: 0.75rem;
}

.highnoon-roadmap-item__title {
    font-size: 1rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.5rem;
}

.highnoon-roadmap-item__desc {
    font-size: 0.875rem;
    color: var(--highnoon-text-muted);
    line-height: 1.5;
    margin: 0;
}

.highnoon-roadmap-note {
    background: rgba(212, 168, 75, 0.1);
    border: 1px solid rgba(212, 168, 75, 0.2);
    border-radius: 12px;
    padding: 1rem 1.5rem;
    margin-top: 2rem;
    text-align: left;
}

.highnoon-roadmap-note p {
    font-size: 0.9rem;
    color: var(--highnoon-text-muted);
    margin: 0;
}

.highnoon-roadmap-note a {
    color: var(--highnoon-gold);
    text-decoration: underline;
}

.highnoon-roadmap-note a:hover {
    color: var(--highnoon-gold-light);
}

/* ============================================================================
   COMPARISON SECTION
   ============================================================================ */
.highnoon-compare-section {
    padding: 4rem 2rem;
}

.highnoon-compare-section__inner {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.highnoon-compare-table-wrapper {
    overflow-x: auto;
    margin-top: 2rem;
}

.highnoon-compare-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--highnoon-glass);
    border-radius: 16px;
    overflow: hidden;
}

.highnoon-compare-table th,
.highnoon-compare-table td {
    padding: 1rem 1.25rem;
    text-align: left;
    border-bottom: 1px solid var(--highnoon-border);
}

.highnoon-compare-table thead th {
    background: rgba(255, 255, 255, 0.05);
    font-weight: 600;
    color: white;
    font-size: 0.9rem;
}

.highnoon-compare-table tbody td {
    font-size: 0.9rem;
    color: var(--highnoon-text-muted);
}

.highnoon-compare-table tbody td:first-child {
    font-weight: 500;
    color: white;
}

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

.highnoon-compare-highlight {
    background: rgba(212, 168, 75, 0.1) !important;
    color: var(--highnoon-gold) !important;
}

.highnoon-cell--good {
    color: var(--highnoon-green) !important;
}

.highnoon-cell--good svg {
    color: var(--highnoon-green);
    margin-right: 0.5rem;
}

.highnoon-cell--bad {
    color: var(--highnoon-red) !important;
}

.highnoon-cell--bad svg {
    color: var(--highnoon-red);
    margin-right: 0.5rem;
}

.highnoon-compare-table td svg {
    display: inline;
    vertical-align: middle;
}

/* ============================================================================
   FAQ SECTION
   ============================================================================ */
.highnoon-faq-section {
    padding: 4rem 2rem;
}

.highnoon-faq-section__inner {
    max-width: 800px;
    margin: 0 auto;
}

.highnoon-faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.highnoon-faq-item {
    background: var(--highnoon-glass);
    border: 1px solid var(--highnoon-border);
    border-radius: 12px;
    overflow: hidden;
    backdrop-filter: blur(12px);
}

.highnoon-faq-item__question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    background: transparent;
    border: none;
    color: white;
    font-size: 1rem;
    font-weight: 500;
    text-align: left;
    cursor: pointer;
    transition: all 0.2s ease;
}

.highnoon-faq-item__question:hover {
    background: rgba(255, 255, 255, 0.03);
}

.highnoon-faq-item__icon {
    flex-shrink: 0;
    transition: transform 0.3s ease;
    color: var(--highnoon-gold);
}

.highnoon-faq-item__icon.rotated {
    transform: rotate(180deg);
}

.highnoon-faq-item__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.highnoon-faq-item--open .highnoon-faq-item__answer {
    max-height: 500px;
    padding: 0 1.5rem 1.25rem;
}

.highnoon-faq-item__answer p {
    color: var(--highnoon-text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
}

/* ============================================================================
   CTA SECTION
   ============================================================================ */
.highnoon-cta-section {
    padding: 5rem 2rem;
    background: linear-gradient(180deg, transparent 0%, rgba(212, 168, 75, 0.05) 50%, rgba(212, 168, 75, 0.02) 100%);
    text-align: center;
}

.highnoon-cta-section__inner {
    max-width: 700px;
    margin: 0 auto;
}

.highnoon-cta-section__title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.highnoon-cta-section__description {
    font-size: 1.125rem;
    color: var(--highnoon-text-muted);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.highnoon-cta-section__actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.highnoon-cta-section__btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.25s ease;
}

.highnoon-cta-section__btn--primary {
    background: linear-gradient(135deg, var(--highnoon-gold) 0%, var(--highnoon-gold-dark) 100%);
    color: #000;
    box-shadow: 0 4px 20px rgba(212, 168, 75, 0.3);
}

.highnoon-cta-section__btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(212, 168, 75, 0.4);
}

.highnoon-cta-section__btn--secondary {
    background: var(--highnoon-glass);
    color: white;
    border: 1px solid var(--highnoon-border);
    backdrop-filter: blur(12px);
}

.highnoon-cta-section__btn--secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}