/* ============================================
   HAWKSIGHT VISUALS — Premium Visual Overhaul
   ============================================ */

/* ===== HERO ===== */
.hs-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 120px 20px 80px;
    gap: 2rem;
}

.hs-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hs-hero-gradient {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(126,184,218,0.08) 0%, transparent 60%),
                radial-gradient(ellipse at 70% 30%, rgba(168,85,247,0.05) 0%, transparent 50%),
                linear-gradient(180deg, #0a0e18 0%, #0f1520 40%, #141c28 100%);
}

.hs-hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(126,184,218,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(126,184,218,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: gridMove 20s linear infinite;
    opacity: 0.5;
}

/* Radar */
.hs-radar-container {
    position: absolute;
    left: 5%;
    top: 50%;
    transform: translateY(-50%);
    width: clamp(280px, 35vw, 500px);
    opacity: 0.4;
    z-index: 1;
    pointer-events: none;
}

.hs-radar-svg {
    width: 100%;
    height: auto;
}

.hs-radar-sweep {
    transform-origin: 200px 200px;
    animation: radarSweep 4s linear infinite;
}

@keyframes radarSweep {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.hs-blip {
    animation: blipPulse 2s ease-in-out infinite;
}
.hs-blip-1 { animation-delay: 0s; }
.hs-blip-2 { animation-delay: 0.5s; }
.hs-blip-3 { animation-delay: 1s; }
.hs-blip-4 { animation-delay: 1.5s; }
.hs-blip-5 { animation-delay: 0.8s; }

@keyframes blipPulse {
    0%, 100% { opacity: 0.3; r: 3; }
    50% { opacity: 1; r: 5; }
}

/* Hero Content */
.hs-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 680px;
}

.hs-hero-badges {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.hs-badge {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    background: rgba(126,184,218,0.08);
    border: 1px solid rgba(126,184,218,0.2);
    color: var(--cyber-blue);
    backdrop-filter: blur(10px);
}

.hs-hero-title {
    font-family: var(--font-heading);
    font-size: clamp(3.5rem, 10vw, 7rem);
    font-weight: 900;
    line-height: 1;
    margin-bottom: 1rem;
    color: var(--text-primary);
    text-shadow: 0 0 60px rgba(126,184,218,0.15);
}

.hs-accent {
    background: linear-gradient(135deg, #7eb8da, #00d4aa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hs-hero-tagline {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-weight: 400;
}

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

/* Hawk Image */
.hs-hero-hawk {
    position: absolute;
    right: 3%;
    top: 50%;
    transform: translateY(-50%);
    width: clamp(200px, 28vw, 420px);
    z-index: 1;
    opacity: 0.7;
    filter: drop-shadow(0 0 40px rgba(126,184,218,0.15));
    animation: hawkFloat 6s ease-in-out infinite;
}

.hs-hawk-img {
    width: 100%;
    height: auto;
}

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

/* ===== STATS SECTION ===== */
.hs-stats-section {
    padding: 60px 20px;
    background: linear-gradient(180deg, var(--bg-deep) 0%, var(--bg-deepest) 100%);
    border-top: 1px solid rgba(126,184,218,0.06);
    border-bottom: 1px solid rgba(126,184,218,0.06);
}

.hs-stats-row {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.hs-stat-ring {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    position: relative;
}

.hs-ring-svg {
    width: 140px;
    height: 140px;
}

.hs-ring-progress {
    transition: stroke-dasharray 2s ease;
}

.hs-stat-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 140px;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
}

.hs-stat-number {
    font-size: 2.2rem;
    font-weight: 900;
    font-family: var(--font-heading);
    color: var(--text-primary);
}

.hs-stat-suffix {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-muted);
    margin-top: 0.4rem;
}

.hs-stat-range {
    font-size: 1.8rem;
    font-weight: 900;
    font-family: var(--font-heading);
    color: var(--text-primary);
}

.hs-stat-label {
    font-size: 0.85rem;
    color: var(--text-secondary);
    text-align: center;
    max-width: 160px;
    line-height: 1.4;
}

/* ===== FEATURES SECTION ===== */
.hs-features-section {
    padding: 100px 20px;
    background: var(--bg-deepest);
}

.hs-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.hs-feature-card {
    position: relative;
    background: linear-gradient(145deg, rgba(40,53,72,0.5), rgba(30,40,58,0.7));
    border: 1px solid rgba(126,184,218,0.1);
    border-radius: var(--radius-lg);
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.hs-feature-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(126,184,218,0.06) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.hs-feature-card:hover {
    transform: translateY(-8px);
    border-color: rgba(126,184,218,0.3);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3), 0 0 30px rgba(126,184,218,0.08);
}

.hs-feature-card:hover::before {
    opacity: 1;
}

.hs-feature-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 1.25rem;
    position: relative;
    z-index: 1;
}

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

.hs-feature-card h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
}

.hs-feature-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
    position: relative;
    z-index: 1;
}

.hs-feature-tag {
    display: inline-block;
    margin-top: 1rem;
    font-family: var(--font-mono);
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 0.3rem 0.75rem;
    border-radius: var(--radius-full);
    background: rgba(126,184,218,0.08);
    border: 1px solid rgba(126,184,218,0.15);
    color: var(--cyber-blue);
    position: relative;
    z-index: 1;
}

/* ===== INDUSTRY MODULES — HEX GRID ===== */
.hs-modules-section {
    padding: 100px 20px;
    background: linear-gradient(180deg, var(--bg-deepest) 0%, var(--bg-deep) 50%, var(--bg-deepest) 100%);
}

.hs-hex-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 3rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.hs-hex-card {
    width: 180px;
    height: 200px;
    perspective: 800px;
    cursor: pointer;
}

.hs-hex-front,
.hs-hex-back {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1.25rem;
    backface-visibility: hidden;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: var(--radius-lg);
    text-align: center;
}

.hs-hex-front {
    background: linear-gradient(145deg, rgba(40,53,72,0.6), rgba(25,35,50,0.8));
    border: 1px solid rgba(126,184,218,0.12);
    box-shadow: 0 8px 32px rgba(0,0,0,0.2), inset 0 0 30px rgba(126,184,218,0.03);
}

.hs-hex-back {
    background: linear-gradient(145deg, rgba(40,53,72,0.85), rgba(25,35,50,0.95));
    border: 1px solid var(--hex-color, rgba(126,184,218,0.25));
    box-shadow: 0 8px 32px rgba(0,0,0,0.3), 0 0 20px color-mix(in srgb, var(--hex-color) 20%, transparent);
    transform: rotateY(180deg);
}

.hs-hex-card:hover .hs-hex-front,
.hs-hex-flipped .hs-hex-front {
    transform: rotateY(180deg);
}

.hs-hex-card:hover .hs-hex-back,
.hs-hex-flipped .hs-hex-back {
    transform: rotateY(0deg);
}

.hs-hex-icon {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
    filter: drop-shadow(0 0 8px var(--hex-color));
}

.hs-hex-front h3 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    text-shadow: 0 0 20px var(--hex-color);
}

.hs-hex-back p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.hs-hex-card::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 2px;
    background: var(--hex-color);
    border-radius: 2px;
    opacity: 0;
    transition: opacity 0.4s ease;
    box-shadow: 0 0 12px var(--hex-color);
}

.hs-hex-card:hover::after {
    opacity: 1;
}

/* ===== HOW IT WORKS — PIPELINE ===== */
.hs-pipeline-section {
    padding: 100px 20px;
    background: linear-gradient(180deg, var(--bg-deep) 0%, var(--bg-primary) 50%, var(--bg-deep) 100%);
    border-top: 1px solid rgba(126,184,218,0.06);
}

.hs-pipeline {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
    margin-top: 4rem;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
    padding-top: 60px;
}

.hs-pipeline-line {
    position: absolute;
    top: 88px;
    left: 80px;
    right: 80px;
    height: 3px;
    background: rgba(126,184,218,0.08);
    border-radius: 3px;
    z-index: 0;
}

.hs-pipeline-line-fill {
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, #7eb8da, #00d4aa);
    border-radius: 3px;
    transition: width 2s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 12px rgba(126,184,218,0.3);
}

.hs-pipeline-active .hs-pipeline-line-fill {
    width: 100%;
}

.hs-pipeline-step {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.hs-pipeline-active .hs-step-1 { opacity: 1; transform: translateY(0); transition-delay: 0.3s; }
.hs-pipeline-active .hs-step-2 { opacity: 1; transform: translateY(0); transition-delay: 0.8s; }
.hs-pipeline-active .hs-step-3 { opacity: 1; transform: translateY(0); transition-delay: 1.3s; }

.hs-step-node {
    position: relative;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--bg-deepest);
    border: 2px solid var(--cyber-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    z-index: 2;
}

.hs-step-pulse {
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 1px solid rgba(126,184,218,0.3);
    animation: stepPulse 2.5s ease-in-out infinite;
}

@keyframes stepPulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.3); opacity: 0; }
}

.hs-step-number {
    font-family: var(--font-mono);
    font-size: 1rem;
    font-weight: 700;
    color: var(--cyber-blue);
}

.hs-step-content {
    text-align: center;
    max-width: 280px;
}

.hs-step-content h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.hs-step-visual {
    width: 120px;
    height: 90px;
    margin: 0 auto 1rem;
    background: rgba(15,20,30,0.6);
    border: 1px solid rgba(126,184,218,0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
}

.hs-step-visual svg {
    width: 100%;
    height: 100%;
}

.hs-step-content p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* Score LEDs */
.hs-score-leds {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    margin-top: 4rem;
    flex-wrap: wrap;
}

.hs-led {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.25rem;
    background: rgba(15,20,30,0.6);
    border: 1px solid rgba(126,184,218,0.08);
    border-radius: var(--radius-full);
}

.hs-led-light {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.hs-led-good .hs-led-light {
    background: #00d4aa;
    box-shadow: 0 0 12px rgba(0,212,170,0.5);
    animation: ledPulse 2s ease-in-out infinite;
}

.hs-led-moderate .hs-led-light {
    background: #ffd166;
    box-shadow: 0 0 12px rgba(255,209,102,0.5);
    animation: ledPulse 2s ease-in-out infinite 0.5s;
}

.hs-led-critical .hs-led-light {
    background: #ff6b6b;
    box-shadow: 0 0 12px rgba(255,107,107,0.5);
    animation: ledPulse 2s ease-in-out infinite 1s;
}

@keyframes ledPulse {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 1; }
}

.hs-led-value {
    font-family: var(--font-mono);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-primary);
}

.hs-led-label {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

/* ===== DASHBOARD MOCKUP ===== */
.hs-dashboard-section {
    padding: 100px 20px;
    background: var(--bg-deepest);
}

.hs-dashboard {
    max-width: 1100px;
    margin: 3rem auto 0;
    background: linear-gradient(160deg, rgba(20,28,40,0.95), rgba(15,21,32,0.98));
    border: 1px solid rgba(126,184,218,0.15);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0,0,0,0.5), 0 0 40px rgba(126,184,218,0.05);
}

.hs-dash-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 1.25rem;
    background: rgba(30,40,55,0.8);
    border-bottom: 1px solid rgba(126,184,218,0.08);
}

.hs-dash-dots {
    display: flex;
    gap: 6px;
}

.hs-dash-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.hs-dash-dots span:nth-child(1) { background: #ff6b6b; }
.hs-dash-dots span:nth-child(2) { background: #ffd166; }
.hs-dash-dots span:nth-child(3) { background: #00d4aa; }

.hs-dash-title {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--text-muted);
    letter-spacing: 0.05em;
}

.hs-dash-body {
    display: grid;
    grid-template-columns: 200px 1fr 260px;
    gap: 2rem;
    padding: 2rem;
    align-items: start;
}

/* Donut */
.hs-dash-score-panel {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.hs-donut-container {
    position: relative;
    width: 160px;
    height: 160px;
}

.hs-donut-svg {
    width: 100%;
    height: 100%;
}

.hs-donut-fill {
    transition: stroke-dasharray 2.5s ease;
}

.hs-donut-text {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hs-donut-number {
    font-size: 2.5rem;
    font-weight: 900;
    font-family: var(--font-heading);
    color: #ffd166;
    line-height: 1;
}

.hs-donut-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 2px;
}

.hs-score-verdict {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.35rem 0.75rem;
    border-radius: var(--radius-full);
}

.hs-verdict-moderate {
    background: rgba(255,209,102,0.12);
    color: #ffd166;
    border: 1px solid rgba(255,209,102,0.3);
}

/* Domain Bars */
.hs-dash-domains {
    flex: 1;
}

.hs-dash-domains h4 {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.hs-domain-bar {
    margin-bottom: 0.75rem;
}

.hs-domain-name {
    font-size: 0.8rem;
    color: var(--text-secondary);
    display: block;
    margin-bottom: 4px;
}

.hs-bar-track {
    width: 100%;
    height: 22px;
    background: rgba(126,184,218,0.06);
    border-radius: 6px;
    overflow: hidden;
    position: relative;
}

.hs-bar-fill {
    height: 100%;
    border-radius: 6px;
    width: 0;
    transition: width 1.5s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 8px;
}

.hs-bar-fill span {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    font-weight: 700;
    color: rgba(255,255,255,0.9);
}

.hs-bar-good {
    background: linear-gradient(90deg, rgba(0,212,170,0.3), #00d4aa);
    box-shadow: 0 0 10px rgba(0,212,170,0.2);
}

.hs-bar-moderate {
    background: linear-gradient(90deg, rgba(255,209,102,0.3), #ffd166);
    box-shadow: 0 0 10px rgba(255,209,102,0.2);
}

.hs-bar-critical {
    background: linear-gradient(90deg, rgba(255,107,107,0.3), #ff6b6b);
    box-shadow: 0 0 10px rgba(255,107,107,0.2);
}

/* Top Risks */
.hs-dash-risks h4 {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
}

.hs-risk-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-secondary);
    padding: 0.4rem 0;
    border-bottom: 1px solid rgba(126,184,218,0.04);
}

.hs-risk-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

.hs-risk-critical .hs-risk-dot {
    background: #ff6b6b;
    box-shadow: 0 0 8px rgba(255,107,107,0.5);
    animation: riskPulse 1.5s ease-in-out infinite;
}

.hs-risk-high .hs-risk-dot {
    background: #ffd166;
    box-shadow: 0 0 8px rgba(255,209,102,0.4);
}

.hs-risk-medium .hs-risk-dot {
    background: #7eb8da;
}

@keyframes riskPulse {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

.hs-threat-predictions {
    margin-top: 1.25rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(126,184,218,0.08);
}

.hs-threat-predictions h4 {
    margin-bottom: 0.5rem;
}

.hs-threat-tag {
    display: inline-block;
    font-size: 0.75rem;
    padding: 0.3rem 0.6rem;
    margin: 0.2rem 0.15rem;
    border-radius: var(--radius-full);
    background: rgba(255,107,107,0.08);
    border: 1px solid rgba(255,107,107,0.2);
    color: #ff8a8a;
}

/* Roadmap */
.hs-dash-roadmap {
    padding: 1.5rem 2rem;
    border-top: 1px solid rgba(126,184,218,0.08);
}

.hs-dash-roadmap h4 {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 1.25rem;
    text-align: center;
}

.hs-roadmap-timeline {
    display: flex;
    gap: 1.5rem;
    position: relative;
}

.hs-roadmap-timeline::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #00d4aa, #ffd166, #7eb8da);
    opacity: 0.3;
    border-radius: 2px;
}

.hs-roadmap-phase {
    flex: 1;
    position: relative;
}

.hs-phase-marker {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.hs-phase-dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    flex-shrink: 0;
}

.hs-phase-immediate .hs-phase-dot {
    background: #00d4aa;
    box-shadow: 0 0 10px rgba(0,212,170,0.4);
}

.hs-phase-short .hs-phase-dot {
    background: #ffd166;
    box-shadow: 0 0 10px rgba(255,209,102,0.4);
}

.hs-phase-quarter .hs-phase-dot {
    background: #7eb8da;
    box-shadow: 0 0 10px rgba(126,184,218,0.4);
}

.hs-phase-marker span {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.hs-phase-items {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
}

.hs-phase-items span {
    font-size: 0.72rem;
    padding: 0.25rem 0.5rem;
    border-radius: var(--radius-full);
    background: rgba(126,184,218,0.06);
    border: 1px solid rgba(126,184,218,0.1);
    color: var(--text-secondary);
}

.hs-dash-cta-text {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-top: 2rem;
}

/* ===== PRICING ===== */
.hs-pricing-section {
    padding: 100px 20px;
    background: linear-gradient(180deg, var(--bg-deepest), var(--bg-deep));
}

.hs-pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    align-items: stretch;
}

.hs-price-card {
    position: relative;
    background: linear-gradient(160deg, rgba(40,53,72,0.4), rgba(25,35,50,0.7));
    border: 1px solid rgba(126,184,218,0.1);
    border-radius: var(--radius-xl);
    padding: 2.5rem 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    transition: all 0.4s ease;
    overflow: hidden;
    backdrop-filter: blur(8px);
}

.hs-price-card:hover {
    transform: translateY(-8px);
    border-color: rgba(126,184,218,0.25);
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.hs-price-featured {
    border-color: rgba(0,212,170,0.3);
    background: linear-gradient(160deg, rgba(0,212,170,0.06), rgba(25,35,50,0.8));
    box-shadow: 0 0 40px rgba(0,212,170,0.06);
}

.hs-price-featured:hover {
    border-color: rgba(0,212,170,0.5);
    box-shadow: 0 20px 50px rgba(0,0,0,0.3), 0 0 40px rgba(0,212,170,0.1);
}

.hs-price-spotlight {
    position: absolute;
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(0,212,170,0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hs-price-badge {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-mono);
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 0.35rem 1rem;
    background: linear-gradient(135deg, #00d4aa, #7eb8da);
    color: #0a0e18;
    font-weight: 700;
    border-radius: 0 0 var(--radius-sm) var(--radius-sm);
}

.hs-price-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    margin-top: 0.5rem;
}

.hs-price-card h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.hs-price-tag {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    color: var(--cyber-blue);
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
}

.hs-price-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.hs-price-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
    text-align: left;
    flex-grow: 1;
}

.hs-price-features li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.88rem;
    color: var(--text-secondary);
    padding: 0.4rem 0;
    border-bottom: 1px solid rgba(126,184,218,0.04);
}

.hs-price-features li svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hs-hero {
        flex-direction: column;
        padding: 140px 20px 60px;
        text-align: center;
    }

    .hs-radar-container {
        position: relative;
        left: auto;
        top: auto;
        transform: none;
        width: 200px;
        margin: 0 auto;
    }

    .hs-hero-hawk {
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        width: 200px;
        margin: 0 auto;
    }

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

    .hs-pipeline {
        flex-direction: column;
        align-items: center;
        gap: 3rem;
        padding-top: 0;
    }

    .hs-pipeline-line {
        display: none;
    }

    .hs-pipeline-step {
        opacity: 1;
        transform: translateY(0);
    }

    .hs-dash-body {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hs-dash-score-panel {
        flex-direction: row;
        gap: 1.5rem;
    }

    .hs-pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

    .hs-roadmap-timeline {
        flex-direction: column;
    }

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

@media (max-width: 768px) {
    .hs-hero-title {
        font-size: 3rem;
    }

    .hs-features-grid {
        grid-template-columns: 1fr;
    }

    .hs-hex-grid {
        gap: 1rem;
    }

    .hs-hex-card {
        width: 140px;
        height: 160px;
    }

    .hs-stats-row {
        gap: 2rem;
    }

    .hs-score-leds {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .hs-dash-score-panel {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .hs-hero-title {
        font-size: 2.5rem;
    }

    .hs-hex-card {
        width: 120px;
        height: 140px;
    }

    .hs-hex-icon {
        font-size: 2rem;
    }

    .hs-hex-front h3 {
        font-size: 0.85rem;
    }
}

/* ============================================
   HOMEPAGE HAWKSIGHT SPOTLIGHT
   ============================================ */
.hs-home-spotlight {
    padding: 80px 0;
    background: var(--bg-deepest);
    border-top: 1px solid rgba(126,184,218,0.08);
    border-bottom: 1px solid rgba(126,184,218,0.08);
    overflow: hidden;
}

.hs-home-card {
    display: grid;
    grid-template-columns: 280px 1fr 240px;
    gap: 2.5rem;
    align-items: center;
    background: linear-gradient(145deg, rgba(15,20,35,0.85) 0%, rgba(10,15,25,0.95) 100%);
    border: 1px solid rgba(126,184,218,0.2);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 40px rgba(0,240,255,0.06);
    position: relative;
    overflow: hidden;
}

.hs-home-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(126,184,218,0.04) 0%, transparent 70%);
    pointer-events: none;
}

/* Left visual */
.hs-home-visual {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hs-home-radar-wrap {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.35;
    pointer-events: none;
}

.hs-home-radar-wrap .hs-radar-svg {
    width: 100%;
    height: auto;
}

.hs-home-hawk-img {
    width: 200px;
    height: auto;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 0 30px rgba(126,184,218,0.15));
    animation: hawkFloat 6s ease-in-out infinite;
}

/* Center info */
.hs-home-info {
    display: flex;
    flex-direction: column;
}

.hs-home-info .spotlight-tag {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    color: var(--cyber-blue);
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.hs-home-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    line-height: 1.1;
}

.hs-home-tagline {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

/* Mini domain bars */
.hs-home-bars {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.hs-home-bar-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.hs-home-bar-item span {
    font-size: 0.75rem;
    color: var(--text-muted);
    min-width: 60px;
    text-align: right;
    font-family: var(--font-mono);
}

.hs-home-bar-track {
    flex: 1;
    height: 14px;
    background: rgba(126,184,218,0.06);
    border-radius: 4px;
    overflow: hidden;
}

.hs-home-bar-fill {
    height: 100%;
    border-radius: 4px;
    width: var(--bar-width);
    transition: width 1.5s cubic-bezier(0.4,0,0.2,1);
}

.hs-hbar-good {
    background: linear-gradient(90deg, rgba(0,212,170,0.3), #00d4aa);
}

.hs-hbar-mod {
    background: linear-gradient(90deg, rgba(255,209,102,0.3), #ffd166);
}

.hs-hbar-crit {
    background: linear-gradient(90deg, rgba(255,107,107,0.3), #ff6b6b);
}

.hs-home-cta-row {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

/* Right: donut + modules */
.hs-home-score {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.hs-home-donut {
    position: relative;
    width: 120px;
    height: 120px;
}

.hs-home-donut svg {
    width: 100%;
    height: 100%;
}

.hs-home-donut-fill {
    transition: stroke-dasharray 2s ease;
}

.hs-home-donut-text {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hs-home-donut-num {
    font-size: 2rem;
    font-weight: 900;
    font-family: var(--font-heading);
    color: #ffd166;
    line-height: 1;
}

.hs-home-donut-lbl {
    font-size: 0.7rem;
    color: var(--text-muted);
}

.hs-home-verdict {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.hs-home-modules {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
    justify-content: center;
    max-width: 220px;
}

.hs-home-chip {
    font-size: 0.65rem;
    padding: 0.25rem 0.5rem;
    border-radius: var(--radius-full);
    background: rgba(126,184,218,0.06);
    border: 1px solid color-mix(in srgb, var(--chip-clr, #7eb8da) 25%, transparent);
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.hs-home-chip:hover {
    border-color: var(--chip-clr);
    box-shadow: 0 0 10px color-mix(in srgb, var(--chip-clr) 25%, transparent);
    color: var(--text-primary);
}

/* Responsive */
@media (max-width: 1024px) {
    .hs-home-card {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hs-home-visual {
        max-width: 200px;
        margin: 0 auto;
    }

    .hs-home-info {
        align-items: center;
    }

    .hs-home-cta-row {
        justify-content: center;
    }

    .hs-home-bars {
        max-width: 400px;
        width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 768px) {
    .hs-home-spotlight {
        padding: 60px 15px;
    }

    .hs-home-card {
        padding: 1.5rem;
    }

    .hs-home-hawk-img {
        width: 140px;
    }
}
