/* Hero */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 24px 80px;
    position: relative;
    overflow: hidden;
    background: var(--bg);
}

#hero-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, var(--bg) 0%, transparent 30%),
    linear-gradient(to right, var(--bg-scrim) 0%, transparent 50%);
    z-index: 1;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero h1 {
    margin-bottom: 24px;
    font-size: clamp(2.7rem, 4.3vw, 3.6rem);
    max-width: 980px;
    text-shadow: 0 2px 20px var(--shadow-strong);
}

.hero-title-line {
    display: block;
}

.hero-title-line:first-child {
    white-space: nowrap;
}

.hero-title-emphasis {
    white-space: nowrap;
}

.hero p {
    font-size: 1.25rem;
    color: var(--fg-muted);
    max-width: 780px;
    margin-bottom: 40px;
    text-shadow: 0 1px 10px var(--shadow-strong);
}

.hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Vision & Mission */
.vision-mission {
    padding: 120px 0;
    background: var(--bg);
    position: relative;
    background-image: radial-gradient(ellipse at center, var(--accent-08) 0%, transparent 60%);
}

.vm-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    gap: 48px;
    align-items: start;
}

.vm-panel {
    text-align: center;
}

.vm-icon {
    width: 80px;
    height: 80px;
    background: var(--accent-15);
    border: 1px solid var(--accent-30);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.vm-icon svg {
    width: 36px;
    height: 36px;
    color: var(--accent);
}

.vm-panel h3 {
    font-size: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.vm-headline {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--fg);
    margin-bottom: 16px;
    line-height: 1.3;
}

.vm-text {
    color: var(--fg-muted);
    line-height: 1.7;
    max-width: 440px;
    margin: 0 auto;
}

.vm-divider {
    width: 2px;
    height: 100%;
    min-height: 280px;
    background: linear-gradient(180deg, var(--accent), var(--accent-08));
    position: relative;
    border-radius: 1px;
}

.vm-divider::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 100%;
    background: radial-gradient(ellipse at center, var(--accent-30) 0%, transparent 70%);
    pointer-events: none;
}

@media (max-width: 768px) {
    .vm-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .vm-divider {
        width: 60%;
        height: 2px;
        min-height: unset;
        margin: 0 auto;
    }

    .vm-divider::before {
        width: 100%;
        height: 20px;
        top: 50%;
        left: 0;
        transform: translateY(-50%);
        background: radial-gradient(ellipse at center, var(--accent-30) 0%, transparent 70%);
    }
}

/* Services */
.services {
    padding: 120px 0;
    background: var(--bg-elevated);
}

@media (max-width: 768px) {
    .services {
        padding: 70px 0;
    }
}

.services-feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
}

@media (max-width: 1024px) {
    .services-feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.service-feature {
    position: relative;
    padding: 52px 48px;
    text-decoration: none;
    color: inherit;
    overflow: hidden;
    transition: background 0.3s ease;
    border-bottom: 1px solid var(--border);
}

.service-feature:not(:nth-child(3n)) {
    border-right: 1px solid var(--border);
}

@media (max-width: 1024px) {
    .service-feature:not(:nth-child(3n)) {
        border-right: none;
    }

    .service-feature:nth-child(odd) {
        border-right: 1px solid var(--border);
    }
}

.service-feature:hover {
    background: var(--accent-04);
}

.service-feature-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.service-feature-icon svg {
    width: 30px;
    height: 30px;
    color: var(--accent);
    opacity: 0.7;
    transition: opacity 0.3s;
}

.service-feature:hover .service-feature-icon svg {
    opacity: 1;
}

.service-feature h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    transition: color 0.3s;
}

.service-feature:hover h3 {
    color: var(--accent);
}

.service-feature p {
    color: var(--fg-muted);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-feature-link {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent-40);
    transition: color 0.3s;
}

.service-feature:hover .service-feature-link {
    color: var(--accent);
}

@media (max-width: 768px) {
    .services-feature-grid {
        grid-template-columns: 1fr;
    }

    .service-feature:nth-child(odd) {
        border-right: none;
    }

    .service-feature {
        padding: 36px 24px;
    }
}

/* Services split layout */
.services-split {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    position: relative;
}

.services-list {
    display: flex;
    flex-direction: column;
    border-top: 1px solid var(--border);
}

.services-list-entry {
    border-bottom: 1px solid var(--border);
}

.services-list-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 0;
    border: none;
    background: none;
    color: var(--fg-muted);
    cursor: pointer;
    text-align: left;
    transition: color 0.2s ease;
    width: 100%;
}

.services-list-item:hover,
.services-list-item.active {
    color: var(--fg);
}

.services-list-item.active .services-list-name {
    color: var(--service-color);
}

.services-list-num {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--fg-subtle);
    letter-spacing: 0.05em;
    min-width: 24px;
    transition: color 0.2s ease;
}

.services-list-item.active .services-list-num {
    color: var(--service-color);
}

.services-list-name {
    font-size: 1.25rem;
    font-weight: 600;
    flex: 1;
    transition: color 0.2s ease;
}

.services-list-arrow {
    width: 20px;
    height: 20px;
    opacity: 0;
    transform: translateX(-4px);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.services-list-item.active .services-list-arrow,
.services-list-item:hover .services-list-arrow {
    opacity: 1;
    transform: translateX(0);
}

/* Panel (hidden on mobile, shown on desktop) */
.services-panel {
    display: none;
    position: relative;
}

.services-panel-content {
    display: none;
    flex-direction: column;
    gap: 24px;
    padding: 48px;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: 16px;
    height: 100%;
    box-sizing: border-box;
}

.services-panel-content.active {
    display: flex;
}

.services-panel-icon {
    width: 72px;
    height: 72px;
    background: var(--service-color-15);
    border: 1px solid var(--service-color-20);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 24px var(--service-color-08);
}

.services-panel-icon svg {
    width: 36px;
    height: 36px;
    color: var(--service-color);
}

.services-panel-content h3 {
    font-size: 1.75rem;
    margin: 0;
}

.services-panel-content p {
    color: var(--fg-muted);
    line-height: 1.7;
    flex: 1;
}

/* Mobile panels: inline below each list item */
.services-mobile-content {
    display: none;
    flex-direction: column;
    gap: 12px;
    padding: 4px 0 20px 46px;
    border-left: 2px solid transparent;
    margin-left: -2px;
}

.services-mobile-content.active {
    display: flex;
    border-left-color: var(--service-color);
}

.services-mobile-content p {
    color: var(--fg-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

.services-mobile-icon {
    width: 52px;
    height: 52px;
    background: var(--service-color-15);
    border: 1px solid var(--service-color-20);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 20px var(--service-color-08);
}

.services-mobile-icon svg {
    width: 24px;
    height: 24px;
    color: var(--service-color);
}

@media (min-width: 768px) {
    .services-split {
        grid-template-columns: 1fr 1fr;
        gap: 48px;
        align-items: start;
    }

    .services-panel {
        display: block;
        position: sticky;
        top: 100px;
    }

    .services-mobile-content,
    .services-mobile-content.active {
        display: none;
    }

    .services-list-name {
        font-size: 1.5rem;
    }

    .services-list-item {
        padding: 24px 0;
    }
}

/* ===== HOMEPAGE FULLSCREEN REDESIGN ===== */


/* Hero: true fullscreen, centered */
/* Mobile: fullscreen centered logo */
.hero-desktop-only {
    display: none;
}

.hero-mobile-only {
    display: flex;
}

.index-page .hero {
    height: 100svh;
    min-height: 100svh;
    padding: 0;
    justify-content: center;
}

.index-page .hero-overlay {
    background: radial-gradient(ellipse at center, transparent 35%, var(--bg-scrim) 100%);
}

/* Desktop: text hero, hide centered logo */
@media (min-width: 1024px) {
    .hero-desktop-only {
        display: block;
    }

    .hero-mobile-only,
    .hero-centered-logo.hero-mobile-only {
        display: none !important;
    }

    .index-page .hero {
        height: 100svh;
        min-height: 100svh;
        padding: 120px 40px 80px;
        justify-content: center;
        align-items: center;
    }

    .index-page .hero-overlay {
        background: linear-gradient(to top, var(--bg) 0%, transparent 30%),
        linear-gradient(to right, var(--bg-scrim) 0%, transparent 50%);
    }

    .index-page .hero .hero-content {
        text-align: left;
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .hero-desktop-grid {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: clamp(32px, 5vw, 72px);
        width: 100%;
        max-width: 1200px;
    }

    .hero-desktop-logo {
        flex: 0 0 auto;
        width: clamp(140px, 16vw, 220px);
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .hero-desktop-logo svg {
        width: 100%;
        height: auto;
        filter: drop-shadow(0 6px 24px var(--accent-20));
    }

    .hero-desktop-text {
        flex: 1 1 auto;
        min-width: 0;
    }

    .hero-desktop-text h1 {
        margin-left: 0;
    }

    .hero-desktop-text .hero-cta {
        justify-content: flex-start;
    }
}

@media (max-width: 1199px) and (min-width: 1024px) {
    .hero-desktop-grid {
        gap: 32px;
    }

    .hero-desktop-logo {
        width: 140px;
    }
}

/* Centered logo block */
/* Hero entrance animation */
@keyframes heroWordReveal {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-word {
    display: inline-block;
    opacity: 0;
    animation: heroWordReveal 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-word:nth-child(1) {
    animation-delay: 0.1s;
}

.hero-word:nth-child(2) {
    animation-delay: 0.25s;
}

.hero-word-accent {
    color: var(--accent);
}

.hero-animate .logo-icon {
    opacity: 0;
    animation: heroWordReveal 0.5s cubic-bezier(0.16, 1, 0.3, 1) 0s forwards;
}

.hero-animate .hero-logo-tagline {
    opacity: 0;
    animation: heroWordReveal 0.5s cubic-bezier(0.16, 1, 0.3, 1) 0.4s forwards;
}

.hero-animate-delayed {
    opacity: 0;
    animation: heroWordReveal 0.5s cubic-bezier(0.16, 1, 0.3, 1) 0.7s forwards;
}

.hero-centered-logo {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-align: center;
    pointer-events: none;
    animation: heroLogoReveal 1s cubic-bezier(0.4, 0, 0.2, 1) both;
}

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

.hero-centered-logo .logo-icon {
    width: 80px;
    height: 80px;
    background: transparent;
    filter: drop-shadow(0 0 32px var(--accent-40));
}

.hero-logo-wordmark {
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    color: var(--fg);
    text-shadow: 0 0 60px var(--accent-15);
}

.hero-logo-tagline {
    font-size: 0.68rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--fg);
    opacity: 0.7;
    font-weight: 400;
}

/* Animated scroll hint */
.hero-scroll-hint {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    animation: scrollHintDrop 2.4s ease-in-out infinite;
}

.hero-scroll-hint span {
    font-size: 0.58rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--fg-soft);
}

.hero-scroll-hint svg {
    width: 14px;
    height: 14px;
    stroke: var(--accent-40);
    fill: none;
    stroke-width: 2;
}

@keyframes scrollHintDrop {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
        opacity: 0.5;
    }
    50% {
        transform: translateX(-50%) translateY(8px);
        opacity: 1;
    }
}

/* Hero intro — combined text + stats section */
.hero-intro {
    display: none;
    background: var(--bg);
    padding: 80px 24px;
    border-bottom: 1px solid var(--accent-15);
}

@media (max-width: 1023px) {
    .hero-intro-mobile-only {
        display: block;
    }
}

@media (min-width: 1024px) {
    .hero-intro-mobile-only {
        display: none !important;
    }
}

.hero-intro-inner {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.hero-intro-text h1 {
    margin-bottom: 20px;
    font-size: clamp(2.4rem, 4vw, 3.4rem);
    max-width: 820px;
    text-shadow: 0 2px 20px var(--shadow-strong);
}

.hero-intro-text h1 .hero-title-line {
    display: block;
}

.hero-intro-text h1 .hero-title-emphasis {
    display: block;
    white-space: normal;
}

.hero-intro-text p {
    font-size: 1.15rem;
    color: var(--fg-muted);
    max-width: 680px;
    line-height: 1.7;
}

/* Stats grid: 2×2 on mobile */
.hero-intro-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px 16px;
}

.hero-stat-card {
    padding: 8px 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.hero-stat-number {
    font-size: 2.6rem;
    font-weight: 800;
    color: var(--accent);
    letter-spacing: -0.03em;
    line-height: 1;
}

.hero-stat-number .stat-number {
    font-size: inherit;
    font-weight: inherit;
    background: none;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: var(--accent);
    background-clip: unset;
}

.hero-stat-label {
    font-size: 0.7rem;
    color: var(--fg-muted);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

@media (min-width: 1024px) {
    .hero-intro {
        display: block;
        padding: 60px 24px;
    }

    .hero-intro-inner {
        flex-direction: column;
        gap: 0;
    }

    .hero-intro-stats {
        grid-template-columns: repeat(4, 1fr);
        gap: 0;
    }

    .hero-stat-card {
        padding: 16px 32px;
        border-right: 1px solid var(--border);
    }

    .hero-stat-card:last-child {
        border-right: none;
    }

    .hero-stat-number {
        font-size: 3.5rem;
    }
}

/* Stats */
.stats {
    padding: 80px 0;
    background: var(--bg);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
}

.stat-item {
    padding: 20px;
}

.stat-number {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--accent);
    -webkit-text-fill-color: var(--accent);
    display: inline;
}

.stat-label {
    display: block;
    color: var(--fg-muted);
    margin-top: 8px;
}

/* About */
.about {
    padding: 120px 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-text .section-title {
    text-align: left;
}

.about-text > p {
    color: var(--fg-muted);
    margin-bottom: 32px;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.about-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--fg);
}

.about-features svg {
    width: 24px;
    height: 24px;
    color: var(--accent);
    flex-shrink: 0;
}

.about-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-logo {
    width: 100%;
    max-width: 350px;
    height: auto;
    filter: drop-shadow(0 0 60px var(--accent-40));
    animation: pulse-glow 3s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        filter: drop-shadow(0 0 60px var(--accent-40));
        transform: scale(1);
    }
    50% {
        filter: drop-shadow(0 0 80px var(--accent-60));
        transform: scale(1.02);
    }
}

/* Testimonials */
.testimonials {
    padding: 120px 0;
    background: var(--bg-elevated);
    overflow: hidden;
}

/* Testimonials card grid */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonial-card {
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 36px 32px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: border-color 0.3s, background 0.3s;
}

.testimonial-card:hover {
    border-color: var(--accent-20);
    background: var(--accent-04);
}

.testimonial-quote {
    font-size: 4rem;
    line-height: 0.8;
    color: var(--accent);
    font-family: Georgia, serif;
    opacity: 0.6;
}

.testimonial-text {
    font-size: 0.95rem;
    line-height: 1.75;
    color: var(--fg-soft-strong);
    font-style: italic;
    flex: 1;
    margin: 0;
}

.testimonial-stars {
    display: flex;
    gap: 4px;
}

.testimonial-stars svg {
    width: 16px;
    height: 16px;
    color: var(--accent);
    opacity: 0.8;
}

@media (max-width: 1024px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 560px;
        margin: 0 auto;
    }
}

/* Team */
.team {
    padding: 120px 0;
    background: var(--bg);
}

.team-members {
    display: flex;
    flex-direction: column;
    gap: 60px;
    max-width: 1000px;
    margin: 0 auto;
}

.team-member {
    display: flex;
    align-items: center;
    gap: 50px;
    background: var(--bg-elevated);
    border: 1px solid var(--border-strong);
    border-radius: 20px;
    padding: 40px;
    transition: all 0.3s ease;
}

.team-member:hover {
    border-color: var(--accent);
    box-shadow: 0 20px 40px var(--accent-15);
}

.team-member--reversed {
    flex-direction: row-reverse;
}

.team-member-photo {
    flex-shrink: 0;
    width: 280px;
    height: 280px;
    border-radius: 16px;
    overflow: hidden;
}

.team-member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member-info {
    flex: 1;
}

.team-member-photo--agents {
    background: linear-gradient(135deg, var(--bg) 0%, var(--accent-15) 100%);
    border: 2px solid var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-member-photo--agents svg {
    width: 120px;
    height: 120px;
    color: var(--accent);
}

.team-member-info h3 {
    margin-bottom: 8px;
    font-size: 1.5rem;
}

.team-role {
    color: var(--accent);
    font-weight: 500;
    margin-bottom: 16px;
}

.team-bio {
    color: var(--fg-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.team-social {
    display: flex;
    gap: 12px;
}

.team-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: var(--border-strong);
    border-radius: 8px;
    color: var(--fg-muted);
    transition: all 0.3s ease;
}

.team-social a:hover {
    background: var(--accent-15);
    color: var(--accent);
}

.team-social svg {
    width: 18px;
    height: 18px;
}


/* Contact */
.contact {
    padding: 120px 0;
    background: var(--bg-elevated);
    position: relative;
    overflow: hidden;
}

.contact .section-title {
    white-space: nowrap;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 700px;
    height: 400px;
    background: radial-gradient(ellipse at top, var(--accent-08) 0%, transparent 70%);
    pointer-events: none;
}

@media (max-width: 968px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .about-text .section-title {
        text-align: center;
    }

    .about-text > p {
        text-align: center;
    }

    .about-features {
        align-items: flex-start;
    }

}

@media (max-width: 768px) {
    .hero {
        text-align: center;
    }

    .hero h1 {
        font-size: clamp(2.15rem, 8vw, 3.6rem);
    }

    .hero-title-line:first-child,
    .hero-title-emphasis {
        white-space: normal;
    }

    .hero p {
        font-size: 1.1rem;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-cta {
        justify-content: center;
    }

    .hero-overlay {
        background: linear-gradient(to top, var(--bg) 0%, transparent 30%),
        linear-gradient(to bottom, var(--bg-scrim) 0%, transparent 40%);
    }

    .contact .section-title {
        white-space: normal;
    }

    .team-member {
        flex-direction: column;
        text-align: center;
        gap: 30px;
        padding: 30px;
    }

    .team-member--reversed {
        flex-direction: column;
    }

    .team-member-photo {
        width: 200px;
        height: 200px;
    }

    .team-social {
        justify-content: center;
    }
}

/* ===========================
   Homepage intro video
   =========================== */
.home-intro-video {
    padding: 60px 0 40px;
    background: var(--bg);
    text-align: center;
}

.home-intro-video .section-title {
    margin-bottom: 8px;
}

.home-intro-video .section-subtitle {
    margin-bottom: 32px;
}

.home-intro-video-frame {
    max-width: 960px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
}

.home-intro-video-player {
    display: block;
    width: 100%;
    height: auto;
}

/* ===========================
   SmartSpace homepage spotlight
   =========================== */
.smartspace-spotlight {
    padding: 60px 0;
    background: var(--bg);
}

.smartspace-spotlight-card {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: center;
    padding: 32px;
    border-radius: 16px;
    border: 1px solid var(--purple-soft-20);
    background:
        radial-gradient(ellipse 80% 100% at 90% 50%, var(--purple-soft-08) 0%, transparent 65%),
        var(--bg-elevated, var(--bg));
    text-decoration: none;
    color: inherit;
    transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.smartspace-spotlight-card:hover,
.smartspace-spotlight-card:focus-visible {
    transform: translateY(-2px);
    border-color: var(--purple-soft);
    box-shadow: 0 18px 48px var(--purple-soft-15);
}

@media (min-width: 768px) {
    .smartspace-spotlight-card {
        grid-template-columns: minmax(0, 1fr) 200px;
        gap: 48px;
        padding: 40px 48px;
    }
}

.smartspace-spotlight-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
}

.smartspace-spotlight-pill {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 999px;
    background: var(--purple-soft-15);
    color: var(--purple-soft-fill);
    font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.smartspace-spotlight-title {
    margin: 0;
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    color: var(--fg);
}

.smartspace-spotlight-pitch {
    margin: 0;
    color: var(--fg-muted);
    line-height: 1.6;
    max-width: 60ch;
}

.smartspace-spotlight-cta {
    margin-top: 4px;
    font-weight: 600;
    color: var(--purple-soft-fill);
    letter-spacing: 0.01em;
}

.smartspace-spotlight-card:hover .smartspace-spotlight-cta,
.smartspace-spotlight-card:focus-visible .smartspace-spotlight-cta {
    text-decoration: underline;
}

.smartspace-spotlight-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.smartspace-spotlight-visual svg {
    width: 160px;
    height: 160px;
    max-width: 100%;
}

@media (min-width: 768px) {
    .smartspace-spotlight-visual svg {
        width: 200px;
        height: 200px;
    }
}
