/* ============================================================
   Velora — Luxury Beauty at Home
   styles.css
   ============================================================ */

/* ---- Custom Properties ---- */
:root {
  --bg: #FAF9F6;
  --bg-light: #F5F0EB;
  --gold: #C9956B;
  --gold-light: #E8C4A0;
  --gold-dark: #A07850;
  --text: #292524;
  --text-sec: #57534E;
  --text-muted: #A8A29E;
  --border: rgba(201, 149, 107, 0.2);
  --card-bg: #FFFFFF;
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
  --radius: 14px;
  --radius-lg: 20px;
  --radius-sm: 8px;
  --nav-h: 72px;
  --container-max: 1140px;
  --gold-glow: 0 0 24px rgba(201, 149, 107, 0.15);
}

/* ---- Reset & Base ---- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background-color: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol {
  list-style: none;
}

button {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  cursor: pointer;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
}

/* ---- Container ---- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- Section Shared ---- */
.section-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.section-h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 48px;
  max-width: 600px;
}

.section-h2 em {
  font-style: italic;
  color: var(--gold);
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 0.938rem;
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.btn svg {
  display: inline-block;
  flex-shrink: 0;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: #fff;
  border: none;
  box-shadow: 0 4px 20px rgba(201, 149, 107, 0.25);
}

.btn-gold:hover {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  box-shadow: 0 6px 28px rgba(201, 149, 107, 0.35);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold-light);
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--nav-h);
  z-index: 1000;
  background: rgba(250, 249, 246, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-heading);
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--text);
}

.logo-star {
  color: var(--gold);
  font-size: 1.1em;
}

.logo-accent {
  color: var(--gold);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-menu li a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-sec);
  transition: color 0.25s ease;
}

.nav-menu li a:hover {
  color: var(--text);
}

.nav-btn {
  display: inline-flex;
  align-items: center;
  padding: 10px 24px !important;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: #fff !important;
  border-radius: 50px;
  font-weight: 600 !important;
  font-size: 0.813rem !important;
  transition: all 0.3s ease;
}

.nav-btn:hover {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(201, 149, 107, 0.3);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 28px;
  height: 28px;
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

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

.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: var(--nav-h);
  overflow: hidden;
  text-align: center;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 80px;
  padding-bottom: 80px;
}

.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.hero-h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.25rem, 6vw, 4rem);
  font-weight: 800;
  color: var(--text);
  line-height: 1.1;
  margin-bottom: 24px;
}

.hero-h1 em {
  font-style: italic;
  color: var(--gold);
}

.hero-p {
  font-size: 1.063rem;
  color: var(--text-sec);
  max-width: 540px;
  margin-bottom: 36px;
  line-height: 1.7;
}

.hero-btns {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 48px;
  flex-wrap: wrap;
  justify-content: center;
}

/* Hero Badges */
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  font-size: 0.813rem;
  font-weight: 500;
  color: var(--text-sec);
  border: 1px solid var(--border);
  border-radius: 50px;
  transition: border-color 0.3s ease, color 0.3s ease;
}

.badge:hover {
  border-color: var(--gold);
  color: var(--gold-light);
}

.badge svg {
  display: inline-block;
  flex-shrink: 0;
  stroke: var(--gold);
}

/* Art Deco Decorative Lines */
.deco-lines {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.deco-line {
  position: absolute;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(201, 149, 107, 0.15) 40%,
    rgba(201, 149, 107, 0.15) 60%,
    transparent 100%
  );
}

.deco-line-1 {
  width: 1px;
  height: 100%;
  top: 0;
  left: 18%;
  transform: rotate(12deg);
  transform-origin: top center;
}

.deco-line-2 {
  width: 1px;
  height: 100%;
  top: 0;
  right: 22%;
  transform: rotate(-8deg);
  transform-origin: top center;
}

.deco-glow {
  position: absolute;
  top: 25%;
  left: 50%;
  width: 400px;
  height: 400px;
  transform: translateX(-50%);
  background: radial-gradient(
    circle,
    rgba(201, 149, 107, 0.12) 0%,
    transparent 70%
  );
  border-radius: 50%;
}

/* Grain Overlay */
.grain {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.15;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 128px 128px;
}

/* ============================================================
   PROBLEMS
   ============================================================ */
.problems {
  padding: 100px 0;
}

.problem-list {
  max-width: 680px;
}

.problem-row {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 8px 0;
}

.problem-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(232, 119, 119, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
}

.problem-icon svg {
  display: inline-block;
}

.problem-body h3 {
  font-family: var(--font-body);
  font-size: 1.063rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 4px;
}

.problem-body p {
  font-size: 0.938rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.problem-divider {
  width: 100%;
  max-width: 200px;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--gold) 50%,
    transparent 100%
  );
  opacity: 0.3;
  margin: 24px 0;
  margin-left: 0;
}

/* ============================================================
   SERVICES
   ============================================================ */
.services {
  padding: 100px 0;
}

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

.service-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transition: border-color 0.35s ease, box-shadow 0.35s ease;
}

.service-card:hover {
  border-color: var(--gold);
  box-shadow: 0 0 24px rgba(201, 149, 107, 0.12);
}

.service-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin-bottom: 20px;
}

.service-icon svg {
  display: inline-block;
}

.service-card h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 16px;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service-list li {
  font-size: 0.875rem;
  color: var(--text-muted);
  padding-left: 16px;
  position: relative;
  line-height: 1.5;
}

.service-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.5;
}

/* ============================================================
   HOW IT WORKS (Steps)
   ============================================================ */
.how-it-works {
  padding: 100px 0;
}

.steps-track {
  display: flex;
  justify-content: space-between;
  position: relative;
  margin-top: 16px;
}

.steps-line {
  position: absolute;
  top: 24px;
  left: 40px;
  right: 40px;
  height: 1px;
  border-top: 1px dashed var(--gold);
  opacity: 0.3;
  z-index: 0;
}

.step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 220px;
  position: relative;
  z-index: 1;
  flex: 1;
}

.step-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
  position: relative;
  flex-shrink: 0;
}

.step-item h3 {
  font-family: var(--font-body);
  font-size: 0.938rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}

.step-item p {
  font-size: 0.813rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ============================================================
   PROFESSIONALS
   ============================================================ */
.professionals {
  padding: 100px 0;
}

.pro-split {
  display: flex;
  gap: 48px;
  align-items: flex-start;
}

.pro-benefits {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.pro-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.pro-ico {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(201, 149, 107, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}

.pro-ico svg {
  display: inline-block;
}

.pro-item strong {
  display: block;
  font-family: var(--font-body);
  font-size: 0.938rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 4px;
}

.pro-item p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.pro-stats {
  flex-shrink: 0;
  width: 300px;
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.pro-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.pro-stat-num {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.pro-stat-label {
  font-size: 0.813rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* ============================================================
   TESTIMONIALS (Carousel)
   ============================================================ */
.testimonials {
  padding: 100px 0;
}

.carousel {
  overflow: hidden;
  position: relative;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease;
}

.carousel-slide {
  min-width: 100%;
  padding: 40px;
  text-align: center;
}

.carousel-slide blockquote {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
  font-weight: 500;
  color: var(--text);
  line-height: 1.55;
  margin-bottom: 28px;
  border: none;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.testi-who {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.testi-pic {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: 0.813rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}

.testi-who strong {
  display: block;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text);
}

.testi-who span {
  font-size: 0.813rem;
  color: var(--text-muted);
}

/* Carousel Dots */
.carousel-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 28px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: background 0.3s ease;
}

.dot:hover {
  background: rgba(201, 149, 107, 0.3);
}

.dot.active {
  background: var(--gold);
}

/* ============================================================
   CTA
   ============================================================ */
.cta {
  padding: 80px 0;
}

.cta-frame {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 60px;
  text-align: center;
  position: relative;
  overflow: visible;
}

.cta-frame h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 16px;
}

.cta-frame h2 em {
  font-style: italic;
  color: var(--gold);
}

.cta-frame > p {
  font-size: 1rem;
  color: var(--text-sec);
  margin-bottom: 32px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.cta-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* Ornament corners (L-shaped gold corner pieces) */
.cta-ornament {
  position: absolute;
  width: 24px;
  height: 24px;
  pointer-events: none;
}

.cta-ornament-tl {
  top: -1px;
  left: -1px;
  border-top: 2px solid var(--gold);
  border-left: 2px solid var(--gold);
  border-radius: var(--radius-lg) 0 0 0;
}

.cta-ornament-tr {
  top: -1px;
  right: -1px;
  border-top: 2px solid var(--gold);
  border-right: 2px solid var(--gold);
  border-radius: 0 var(--radius-lg) 0 0;
}

.cta-ornament-bl {
  bottom: -1px;
  left: -1px;
  border-bottom: 2px solid var(--gold);
  border-left: 2px solid var(--gold);
  border-radius: 0 0 0 var(--radius-lg);
}

.cta-ornament-br {
  bottom: -1px;
  right: -1px;
  border-bottom: 2px solid var(--gold);
  border-right: 2px solid var(--gold);
  border-radius: 0 0 var(--radius-lg) 0;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  padding: 64px 0 0;
  border-top: 1px solid var(--border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}

.footer-about .logo {
  margin-bottom: 16px;
}

.footer-about p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 320px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.813rem;
  font-weight: 600;
  color: var(--text-sec);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 4px;
}

.footer-col a {
  font-size: 0.875rem;
  color: var(--text-muted);
  transition: color 0.25s ease;
}

.footer-col a:hover {
  color: var(--gold-light);
}

.footer-bar {
  border-top: 1px solid var(--border);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-bar p {
  font-size: 0.813rem;
  color: var(--text-muted);
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: color 0.25s ease;
}

.footer-social a:hover {
  color: var(--gold);
}

.footer-social a svg {
  display: inline-block;
}

/* ============================================================
   REVEAL ANIMATIONS
   ============================================================ */
.reveal-el {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-el.shown {
  opacity: 1;
  transform: none;
}

/* ============================================================
   RESPONSIVE — 1024px
   ============================================================ */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pro-split {
    flex-direction: column;
  }

  .pro-stats {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 24px;
  }

  .pro-stat {
    flex: 1;
    min-width: 120px;
  }
}

/* ============================================================
   RESPONSIVE — 768px
   ============================================================ */
@media (max-width: 768px) {
  :root {
    --nav-h: 64px;
  }

  /* Hamburger visible */
  .hamburger {
    display: flex;
  }

  /* Nav menu: fixed right panel */
  .nav-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    height: 100vh;
    height: 100dvh;
    background: var(--bg-light);
    border-left: 1px solid var(--border);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 28px;
    padding: 40px 32px;
    transform: translateX(100%);
    transition: transform 0.35s ease;
    z-index: 999;
  }

  .nav-menu.active {
    transform: translateX(0);
  }

  .nav-menu li a {
    font-size: 1rem;
  }

  .nav-btn {
    margin-top: 12px;
  }

  /* Services grid 1 column */
  .services-grid {
    grid-template-columns: 1fr;
  }

  /* Steps wrap 2x2 */
  .steps-track {
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px 32px;
  }

  .steps-line {
    display: none;
  }

  .step-item {
    flex: 0 0 calc(50% - 16px);
    max-width: calc(50% - 16px);
  }

  /* Testimonial blockquote smaller */
  .carousel-slide blockquote {
    font-size: 1.063rem;
  }

  .carousel-slide {
    padding: 24px 16px;
  }

  /* CTA */
  .cta-frame {
    padding: 40px 24px;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bar {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  /* Section spacing */
  .problems,
  .services,
  .how-it-works,
  .professionals,
  .testimonials {
    padding: 72px 0;
  }

  .section-h2 {
    margin-bottom: 36px;
  }
}

/* ============================================================
   RESPONSIVE — 480px
   ============================================================ */
@media (max-width: 480px) {
  /* Steps 1 column */
  .step-item {
    flex: 0 0 100%;
    max-width: 260px;
  }

  /* Hero badges wrap tighter */
  .hero-badges {
    gap: 8px;
  }

  .badge {
    padding: 6px 12px;
    font-size: 0.75rem;
  }

  /* Hero buttons stack */
  .hero-btns {
    flex-direction: column;
    width: 100%;
    align-items: stretch;
  }

  .hero-btns .btn {
    justify-content: center;
  }

  /* Typography scale down */
  .hero-h1 {
    font-size: 2rem;
  }

  .hero-p {
    font-size: 0.938rem;
  }

  /* Problems */
  .problem-row {
    flex-direction: column;
    gap: 12px;
  }

  .problem-divider {
    margin: 20px auto;
  }

  /* Pro stats */
  .pro-stats {
    padding: 28px;
    flex-direction: column;
  }

  /* CTA */
  .cta-btns {
    flex-direction: column;
    width: 100%;
  }

  .cta-btns .btn {
    width: 100%;
    justify-content: center;
  }
}

/* ============================================================
   PRINT
   ============================================================ */
@media print {
  .reveal-el {
    opacity: 1 !important;
    transform: none !important;
  }

  .deco-lines,
  .grain {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  .navbar {
    position: static;
    backdrop-filter: none;
    background: #fff;
  }

  body {
    background: #fff;
    color: #222;
  }

  .btn-gold,
  .btn-outline {
    border: 1px solid #222;
    background: none;
    color: #222;
    box-shadow: none;
  }
}

/* === Cube AI Badge === */
.cube-ai-strip{display:flex;justify-content:center;align-items:center;padding:16px 24px;background:#050505;border-top:1px solid rgba(255,255,255,.06)}
.cube-ai-link{display:inline-flex;align-items:center;gap:12px;padding:8px 20px 8px 12px;border-radius:100px;background:rgba(255,255,255,.04);border:1px solid rgba(255,255,255,.08);text-decoration:none;transition:all .4s cubic-bezier(.4,0,.2,1);position:relative;overflow:hidden}
.cube-ai-link::before{content:'';position:absolute;inset:0;border-radius:inherit;background:linear-gradient(135deg,rgba(139,92,246,.1),rgba(6,182,212,.1));opacity:0;transition:opacity .4s ease}
.cube-ai-link:hover::before{opacity:1}
.cube-ai-link:hover{border-color:rgba(139,92,246,.3);box-shadow:0 0 30px rgba(139,92,246,.15),0 0 60px rgba(6,182,212,.08);transform:translateY(-1px)}
.cube-3d{width:20px;height:20px;position:relative;transform-style:preserve-3d;transform:rotateX(-25deg) rotateY(30deg);transition:transform .6s cubic-bezier(.4,0,.2,1)}
.cube-ai-link:hover .cube-3d{transform:rotateX(-25deg) rotateY(210deg)}
.cube-face{position:absolute;width:20px;height:20px;border:1.5px solid rgba(139,92,246,.6);border-radius:3px}
.cube-face.front{transform:translateZ(10px);background:rgba(139,92,246,.15)}
.cube-face.back{transform:translateZ(-10px) rotateY(180deg);background:rgba(6,182,212,.1)}
.cube-face.top{transform:rotateX(90deg) translateZ(10px);background:rgba(139,92,246,.2)}
.cube-face.bottom{transform:rotateX(-90deg) translateZ(10px);background:rgba(6,182,212,.05)}
.cube-face.left{transform:rotateY(-90deg) translateZ(10px);background:rgba(6,182,212,.1)}
.cube-face.right{transform:rotateY(90deg) translateZ(10px);background:rgba(139,92,246,.1);border-color:rgba(6,182,212,.5)}
.cube-ai-made{font-family:system-ui,-apple-system,sans-serif;font-size:12px;color:rgba(255,255,255,.4);letter-spacing:.02em;position:relative;z-index:1}
.cube-ai-name{font-family:system-ui,-apple-system,sans-serif;font-size:13px;font-weight:700;background:linear-gradient(135deg,#8B5CF6,#06B6D4);-webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text;letter-spacing:.01em;position:relative;z-index:1}
.cube-ai-arrow{width:14px;height:14px;color:rgba(255,255,255,.3);transition:all .3s ease;position:relative;z-index:1}
.cube-ai-link:hover .cube-ai-arrow{color:#8B5CF6;transform:translate(2px,-2px)}
