* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    background-color: #111111;
    background-image:
        linear-gradient(rgba(10, 10, 10, 0.65), rgba(10, 10, 10, 0.65)),
        url('/images/background.jpg');
    background-repeat: repeat;
    background-size: 800px auto;
    background-position: center top;
    color: #fff;
    font-family: "Playfair Display", "Didot", "Bodoni MT", serif;
    
    overflow-x: hidden;
}

h1, .magazine-font {
    font-family: "Playfair Display", "Didot", "Bodoni MT", serif;
    text-transform: uppercase;
    
    letter-spacing: 0.35em;
    font-weight: 400;
}

/* SPLASH */
.splash-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    width: 100vw;
    text-align: center;
    padding: 20px;
    background: #000;
    animation: splashFadeIn 1.2s ease forwards;
}

@keyframes splashFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.splash-title {
    font-size: clamp(2.25rem, 6vw, 5.25rem);
    margin-bottom: 3rem;
    font-weight: 400;
    letter-spacing: 0.4em;
    text-shadow: 0 0 40px rgba(255,255,255,0.15);
}

.ghost-button {
    background: transparent;
    color: rgba(255,255,255,0.85);
    border: 1px solid rgba(255,255,255,0.35);
    padding: 14px 32px;
    font-size: 1rem;
    text-transform: uppercase;
    
    letter-spacing: 0.2em;
    cursor: pointer;
    transition: all 0.4s ease;
    font-family: "Playfair Display", serif;
    animation: buttonAppear 2s ease 0.8s forwards;
    opacity: 0;
}

@keyframes buttonAppear {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 0.85; transform: translateY(0); }
}

.ghost-button:hover {
    background: rgba(255,255,255,0.06);
    border-color: rgba(255,255,255,0.7);
    color: #fff;
    letter-spacing: 0.25em;
}

/* MAIN PAGE */
.hero-banner {
    position: relative;
    width: 100%;
    aspect-ratio: 1280 / 312;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    background-color: #000;
    background-image: none;
}

@media (max-width: 768px) {
    .hero-banner {
        aspect-ratio: unset;
        height: 50vh;
        min-height: 280px;
        width: 100%;
    }
    .hero-title {
        font-size: clamp(1.55rem, 6vw, 2.35rem);
        letter-spacing: 0.2em;
        top: 20px;
    }
    .claims-container {
        width: fit-content;
        max-width: 86vw;
        padding: 20px 36px;
        left: 50%;
        transform: translateX(-50%);
        position: absolute;
        border-radius: 10px;
    }
    .claim {
        font-size: clamp(1.81rem, 6.25vw, 2.31rem);
    }
}

.video-background {
    position: absolute;
    top: -25%;
    left: 0;
    width: 100%;
    height: 150%;
    object-fit: fill;
    z-index: 0;
    background-color: #000;
}

@media (max-width: 768px) {
    .video-background {
        top: 0;
        height: 100%;
        object-fit: cover;
    }
}

/* Gradient overlay: protegge le zone di testo (top e centro) */
.gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        linear-gradient(to bottom,
            rgba(0,0,0,0.65) 0%,
            rgba(0,0,0,0.1) 25%,
            rgba(0,0,0,0.15) 50%,
            rgba(0,0,0,0.1) 75%,
            rgba(0,0,0,0.5) 100%
        );
    z-index: 1;
    pointer-events: none;
}

.hero-title {
    position: absolute;
    top: clamp(24px, 5vh, 48px);
    left: 50%;
    transform: translateX(-50%);
    font-size: clamp(1.85rem, 4.5vw, 3.65rem);
    font-weight: 400;
    letter-spacing: 0.4em;
    text-shadow:
        0 0 30px rgba(0,0,0,0.9),
        0 2px 8px rgba(0,0,0,0.8);
    z-index: 2;
    width: 100%;
    text-align: center;
    white-space: nowrap;
}

.hero-content {
    z-index: 2;
    text-align: center;
    width: 100%;
    padding: 0 20px;
    margin-top: 80px;
}

.claims-container {
    position: relative;
    width: fit-content;
    max-width: 82vw;
    margin: 0 auto;
    display: grid;
    place-items: center;
    padding: 24px 52px;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    box-sizing: border-box;
}

.claim {
    grid-area: 1 / 1;
    width: 100%;
    font-family: "Playfair Display", serif;
    font-size: clamp(1.56rem, 2.75vw, 2.68rem);
    font-weight: 400;
    letter-spacing: 0.08em;
    font-variant: small-caps;
    text-shadow: 0 2px 8px rgba(0,0,0,0.9);
    opacity: 0;
    transition: opacity 0.4s ease-in-out;
    line-height: 1.6;
    text-align: center;
    box-sizing: border-box;
}

.claim.active {
    opacity: 1;
}

.scroll-indicator {
    position: absolute;
    bottom: 4vh;
    left: 50%;
    transform: translateX(-50%);
    width: 22px;
    height: 36px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 12px;
    opacity: 0;
    animation: fadeIn 1s forwards 3.5s;
    box-shadow: 0 2px 6px rgba(0,0,0,0.5);
    z-index: 10;
    pointer-events: none;
}
.scroll-indicator::before {
    content: '';
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 1px 3px rgba(0,0,0,0.8);
    animation: scrollDot 2s infinite ease-in-out;
}
@keyframes scrollDot {
    0% { transform: translate(-50%, 0); opacity: 1; }
    100% { transform: translate(-50%, 16px); opacity: 0; }
}

@keyframes fadeIn {
    to { opacity: 1; }
}

@media (max-width: 768px) {
    .hero-title { letter-spacing: 0.25em; }
}

@media (prefers-reduced-motion: reduce) {
    .splash-container, .ghost-button { animation: none; opacity: 1; }
    .claim { transition: none; }
}

/* ── LAYOUT: right column wrapper ────────────────────── */
.right-column {
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* ── BOT PANEL ───────────────────────────────────────── */
.bot-column {
  padding: 0 0 0 40px;
  border-bottom: 1px solid rgba(201, 169, 110, 0.12);
  margin-bottom: 0;
}

.bot-panel {
  padding-bottom: 40px;
}

.bot-disclaimer {
  font-family: "Inter", sans-serif;
  font-size: 0.78rem;
  font-weight: 300;
  color: rgba(255,255,255,0.35);
  line-height: 1.6;
  margin-bottom: 16px;
  font-style: italic;
}

.bot-iframe-wrapper {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(201, 169, 110, 0.15);
  margin-bottom: 24px;
}

.bot-iframe-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
  background: transparent;
}

/* ── CONTACTS ────────────────────────────────────────── */
.bot-contacts {
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.contacts-label {
  font-family: "Inter", sans-serif;
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Inter", sans-serif;
  font-size: 0.82rem;
  font-weight: 300;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color 0.2s ease;
}

.contact-item:hover {
  color: var(--gold);
}

.contact-icon {
  font-size: 0.85rem;
  opacity: 0.6;
  flex-shrink: 0;
}

/* ── ARTICLES sotto il bot ───────────────────────────── */
.articles-column {
  background-color: #111;
  background-image: url("/images/background.jpg");
  background-repeat: repeat;
  background-size: 800px auto;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 40px;
  margin-left: 40px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

/* ── MAIN CONTENT grid aggiornato ────────────────────── */
.main-content {
  display: grid;
  grid-template-columns: 65fr 35fr;
  gap: 0;
  max-width: 1400px;
  margin: 0 auto;
  padding: 48px 32px;
  align-items: start;
  border-top: 1px solid rgba(201, 169, 110, 0.12);
  background-image: none;
  position: relative;
}

.section-label {
  font-family: "Inter", sans-serif;
  font-size: 0.96rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.bot-label {
  text-align: center;
  font-size: 1.1rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: 0.15em;
  border-bottom: none;
  line-height: 1.6;
  margin-bottom: 8px !important;
  padding-bottom: 0 !important;
}

.bot-label-large {
  font-size: 0.93rem;
  font-weight: 700;
  color: var(--primary-accent);
}

.emoji-halo {
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.8), 0 0 3px rgba(255, 255, 255, 0.5);
  display: inline-block;
}

.cv-section {
  margin-bottom: 48px;
}

.cv-about {
  font-family: "Inter", sans-serif;
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(255,255,255,0.75);
  max-width: 640px;
}

.cv-entry {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4px 16px;
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.cv-entry:last-child { border-bottom: none; }

.cv-entry-role {
  font-family: "Playfair Display", serif;
  font-size: 1.05rem;
  font-weight: 500;
    text-transform: uppercase;
  color: rgba(255,255,255,0.92);
  letter-spacing: 0.02em;
  grid-column: 1;
}

.cv-entry-company {
  font-family: "Inter", sans-serif;
  font-size: 0.82rem;
  font-weight: 400;
  color: rgba(255,255,255,0.45);
  grid-column: 1;
  margin-top: 2px;
}

.cv-entry-dates {
  font-family: "Inter", sans-serif;
  font-size: 0.75rem;
  font-weight: 300;
  color: rgba(255,255,255,0.3);
  grid-column: 2;
  grid-row: 1;
  white-space: nowrap;
  text-align: right;
  padding-top: 3px;
}

.cv-entry-desc {
  font-family: "Inter", sans-serif;
  font-size: 0.85rem;
  font-weight: 300;
  color: rgba(255,255,255,0.55);
  line-height: 1.65;
  grid-column: 1 / -1;
  margin-top: 8px;
}

.skills-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.skill-pill {
  font-family: "Inter", sans-serif;
  font-size: 0.75rem;
  font-weight: 300;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.6);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 20px;
  padding: 5px 14px;
}

.article-card {
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.article-card:hover { opacity: 0.75; }
.article-card:last-child { border-bottom: none; }

.article-date {
  font-family: "Inter", sans-serif;
  font-size: 0.7rem;
  font-weight: 300;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.25);
  
  margin-bottom: 6px;
}

.article-title {
  font-family: "Playfair Display", serif;
  font-size: 1.1rem;
    font-variant: small-caps;
    text-transform: lowercase;
  font-weight: 400;
  color: rgba(255,255,255,0.85);
  line-height: 1.45;
  margin: 0 0 8px 0;
}

.article-excerpt {
  font-family: "Inter", sans-serif;
  font-size: 0.8rem;
  font-weight: 300;
  color: rgba(255,255,255,0.4);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.mobile-tabs { display: none; }

@media (max-width: 768px) {
  .main-content {
    grid-template-columns: 1fr;
    padding: 0;
  }

  .right-column {
    display: contents;
  }

  .cv-column {
    padding-right: 0;
    border-right: none;
    padding: 24px 20px;
  }

  .bot-column {
    padding-left: 0;
    padding: 24px 20px;
    border-top: 1px solid rgba(255,255,255,0.06);
    border-bottom: none;
    display: none;
  }

  .bot-column.active {
    display: block;
  }

  .articles-column {
    margin-left: 0;
    border-radius: 0;
    border-left: none;
    border-right: none;
    border-bottom: none;
    padding: 24px 20px;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    display: none;
  }

  .articles-column.active { display: block; }
  .cv-column.hidden { display: none; }

  .mobile-tabs {
    display: flex;
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(0,0,0,0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    padding: 0 20px;
  }
  .tab-btn {
    flex: 1;
    background: none;
    border: none;
    border-bottom: 2px solid transparent;
    color: rgba(255,255,255,0.35);
    font-family: "Inter", sans-serif;
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    
    padding: 14px 0;
    cursor: pointer;
    transition: all 0.2s ease;
  }
  .tab-btn.active {
    color: rgba(255,255,255,0.85);
    border-bottom-color: rgba(255,255,255,0.5);
  }
}

/* ── ACCENTO ORO ─────────────────────────────────────── */
:root {
  --gold: #C9A96E;
  --gold-dim: rgba(201, 169, 110, 0.15);
  --gold-border: rgba(201, 169, 110, 0.25);
}

/* ── HERO FULLSCREEN ─────────────────────────────────── */
.hero-banner {
  height: 100vh;
  min-height: 600px;
  aspect-ratio: unset !important;
}

.video-background {
  top: 0 !important;
  height: 100% !important;
  object-fit: cover !important;
}

/* ── SECTION LABELS con oro ──────────────────────────── */
.section-label {
  color: var(--gold) !important;
  border-bottom-color: var(--gold-border) !important;
}

/* ── CV ENTRY hover magnetico ────────────────────────── */
.cv-entry {
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

.cv-entry:hover .cv-entry-role {
  color: var(--gold);
  transition: color 0.3s ease;
}

/* ── SKILL PILL hover ────────────────────────────────── */
.skill-pill {
  transition: all 0.25s ease;
}

.skill-pill:hover {
  border-color: var(--gold-border);
  color: var(--gold);
  background: var(--gold-dim);
}

/* ── ARTICLE CARD hover ──────────────────────────────── */
.article-card:hover .article-title {
  color: var(--gold);
  transition: color 0.3s ease;
}

/* ── SCROLL REVEAL ───────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── CUSTOM CURSOR ───────────────────────────────────── */
.custom-cursor {
  position: fixed;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(201, 169, 110, 0.5);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.2s ease, height 0.2s ease, border-color 0.2s ease, background 0.2s ease;
  mix-blend-mode: difference;
}

.custom-cursor.hovering {
  width: 56px;
  height: 56px;
  border-color: var(--gold);
  background: var(--gold-dim);
}

.custom-cursor-dot {
  position: fixed;
  width: 4px;
  height: 4px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
}

/* ── SEO FAQ hidden ──────────────────────────────────── */
.seo-faq {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
}

/* ── HERO PARALLAX layers ────────────────────────────── */
.hero-title {
  will-change: transform;
  transition: transform 0.1s linear;
}

/* ── SEPARATOR hero → content ────────────────────────── */
.main-content {
  border-top: 1px solid rgba(201, 169, 110, 0.12);
}

@media (max-width: 768px) {
  .custom-cursor,
  .custom-cursor-dot { display: none; }

  .hero-banner {
    height: 100svh;
  }
}

/* ── MODAL ────────────────────────────── */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}
.modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}
.modal-content {
    position: relative;
    background: #111;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 40px;
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 10px 40px rgba(0,0,0,0.8);
    transform: translateY(20px);
    transition: transform 0.3s ease;
}
.modal-overlay.active .modal-content {
    transform: translateY(0);
}
.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    color: #cebc9f;
    font-size: 2rem;
    cursor: pointer;
    transition: color 0.2s;
    line-height: 1;
}
.modal-close:hover {
    color: #fff;
}
.modal-body #modal-title {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: #fff;
}
.modal-body #modal-date {
    font-size: 0.9rem;
    color: #cebc9f;
    margin-bottom: 20px;
    letter-spacing: 0.1em;
    
}
.modal-body #modal-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: underline;
    text-decoration-color: rgba(255, 255, 255, 0.4);
    text-underline-offset: 3px;
}
.modal-body #modal-text p {
    margin-bottom: 1.2rem;
}

.modal-body #modal-text h3 {
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: var(--gold, #cebc9f);
    font-size: 1.2rem;
    font-weight: 500;
}

.modal-body #modal-text ul {
    margin-left: 1.5rem;
    margin-bottom: 1.2rem;
    list-style-type: disc;
}

.modal-body #modal-text li {
    margin-bottom: 0.5rem;
}

.article-read-more {
  font-family: "Inter", sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--gold, #cebc9f);
  margin-top: 12px;
  display: inline-block;
  transition: transform 0.3s ease;
}
.article-card:hover .article-read-more {
  transform: translateX(4px);
}


/* ── ARTICLES TICKER ── */
.articles-ticker {
    background-color: rgba(10, 10, 10, 0.95);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.6);
    font-family: "Inter", sans-serif;
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    
    padding: 12px 0;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    display: flex;
    align-items: center;
    z-index: 10;
}
.ticker-content {
    display: inline-flex;
    width: max-content;
    animation: ticker-scroll 45s linear infinite;
}
.ticker-content:hover {
    animation-play-state: paused;
}
.ticker-item {
    cursor: pointer;
    transition: color 0.3s ease;
    display: inline-flex;
    align-items: center;
    padding: 0;
}

.ticker-date {
    opacity: 0.7;
    font-size: 0.9em;
}
.ticker-item:hover {
    color: #cebc9f; /* var(--gold) */
}
.ticker-separator {
    margin: 0 2.5rem;
    color: rgba(206, 188, 159, 0.5);
    font-size: 0.75rem;
}
@keyframes ticker-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-25%); }
}
.ticker-badge {
    background-color: #cebc9f;
    color: #111;
    padding: 3px 8px;
    border-radius: 2px;
    font-size: 0.65rem;
    font-weight: 700;
    margin-right: 12px;
    letter-spacing: 0.1em;
    display: inline-block;
}

.ticker-title {
    font-family: "Playfair Display", "Didot", "Bodoni MT", serif;
    font-variant: small-caps;
    text-transform: lowercase;
    font-size: 1.15rem;
    font-style: normal;
    font-weight: 400;
    letter-spacing: 0.05em;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: underline;
    text-decoration-color: rgba(255, 255, 255, 0.4);
    text-underline-offset: 3px;
}

.share-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.7);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-family: "Inter", sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    z-index: 2;
    position: relative;
}

.share-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.4);
}

.icon-copy-btn {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.4);
    padding: 4px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    position: relative;
}

.icon-copy-btn:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
}

/* ── FEATURED PROJECT CARD ────────────────────────────── */
.featured-project-card {
  display: block;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 6px;
  padding: 32px;
  margin-bottom: 48px;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  cursor: pointer;
  overflow: hidden;
}

.featured-project-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(circle at top right, var(--gold-dim) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.featured-project-card:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--gold-border);
  transform: translateY(-4px);
}

.featured-project-card:hover::before {
  opacity: 1;
}

.featured-project-card-title {
  font-family: "Playfair Display", serif;
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--gold);
  margin-bottom: 6px;
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
}

.featured-project-card-badge {
  font-family: "Inter", sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--gold-dim);
  color: var(--gold);
  padding: 4px 10px;
  border-radius: 100px;
}

.featured-project-card-url {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 20px;
  position: relative;
}

.featured-project-card-desc {
  font-family: "Inter", sans-serif;
  font-size: 0.95rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.75);
  position: relative;
}
