:root {
  --clixy-bg: #fef5ee;
  --clixy-accent: #f59fbc;
  --clixy-accent-dark: #e681a8;
  --clixy-accent-soft: #fde6f0;
  --clixy-text: #2f2328;
  --clixy-muted: #6f5e65;
  --clixy-card: #ffffff;
  --clixy-border: rgba(47, 35, 40, 0.12);
  --clixy-shadow: 0 24px 64px rgba(47, 35, 40, 0.12);
}

body.theme-clixy {
  font-family: "Karla", sans-serif;
  background: linear-gradient(160deg, #fef5ee 0%, #fdeef5 45%, #fef5ee 100%);
  color: var(--clixy-text);
  position: relative;
  min-height: 100vh;
  overflow-x: hidden;
}

body.theme-clixy::before,
body.theme-clixy::after {
  content: "";
  position: fixed;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  filter: blur(0px);
  z-index: -1;
  opacity: 0.6;
}

body.theme-clixy::before {
  top: -120px;
  right: -120px;
  background: radial-gradient(circle, rgba(245, 159, 188, 0.45), rgba(245, 159, 188, 0));
}

body.theme-clixy::after {
  bottom: -140px;
  left: -140px;
  background: radial-gradient(circle, rgba(245, 159, 188, 0.35), rgba(245, 159, 188, 0));
}

.theme-clixy h1,
.theme-clixy h2,
.theme-clixy h3,
.theme-clixy h4,
.theme-clixy h5 {
  font-family: "Sora", sans-serif;
  color: var(--clixy-text);
  letter-spacing: -0.02em;
}

.theme-clixy a {
  color: var(--clixy-accent);
  transition: color 0.2s ease;
}

.theme-clixy a:hover {
  color: var(--clixy-accent-dark);
}

.theme-clixy .clixy-nav {
  background: rgba(254, 245, 238, 0.75);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(47, 35, 40, 0.06);
}

.theme-clixy .clixy-nav.is-scrolled {
  box-shadow: 0 12px 30px rgba(47, 35, 40, 0.08);
}

.theme-clixy .navbar-brand img {
  height: 38px;
}

.theme-clixy .navbar-nav .nav-link {
  color: var(--clixy-text);
  font-weight: 600;
  margin: 0 10px;
}

.theme-clixy .navbar-nav .nav-link:hover,
.theme-clixy .navbar-nav .active .nav-link {
  color: var(--clixy-accent-dark);
}

.theme-clixy .navbar-toggler {
  border: none;
  color: var(--clixy-text);
}

.theme-clixy .btn-clixy {
  background: var(--clixy-accent);
  color: #2b1f25;
  border-radius: 999px;
  padding: 12px 26px;
  font-weight: 700;
  border: none;
  box-shadow: 0 10px 20px rgba(245, 159, 188, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.theme-clixy .btn-clixy:hover {
  background: var(--clixy-accent-dark);
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 16px 30px rgba(230, 129, 168, 0.35);
}

.theme-clixy .btn-clixy-outline {
  background: transparent;
  color: var(--clixy-text);
  border: 1px solid var(--clixy-accent);
  border-radius: 999px;
  padding: 12px 26px;
  font-weight: 600;
  transition: background 0.2s ease, color 0.2s ease, border 0.2s ease;
}

.theme-clixy .btn-clixy-outline:hover {
  background: var(--clixy-accent);
  color: #2b1f25;
  border-color: var(--clixy-accent);
}

.theme-clixy .hero {
  padding: 120px 0 80px;
}

.theme-clixy .hero .eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--clixy-accent-soft);
  color: var(--clixy-accent-dark);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.theme-clixy .hero h1 {
  font-size: clamp(2.4rem, 4vw, 3.5rem);
  margin-top: 18px;
}

.theme-clixy .hero p {
  color: var(--clixy-muted);
  font-size: 1.1rem;
  margin-top: 18px;
}

.theme-clixy .hero-actions {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.theme-clixy .hero-badges {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.theme-clixy .hero-badges span {
  background: #ffffff;
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--clixy-muted);
  box-shadow: 0 12px 20px rgba(47, 35, 40, 0.08);
}

.theme-clixy .hero-visual {
  position: relative;
  display: grid;
  place-items: center;
  margin-top: 40px;
}

.theme-clixy .mockup {
  width: 100%;
  max-width: 420px;
  background: var(--clixy-card);
  border-radius: 28px;
  padding: 28px;
  box-shadow: var(--clixy-shadow);
  border: 1px solid rgba(47, 35, 40, 0.06);
  position: relative;
  overflow: hidden;
}

.theme-clixy .mockup::before {
  content: "";
  position: absolute;
  top: -40px;
  right: -40px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245, 159, 188, 0.5), rgba(245, 159, 188, 0));
}

.theme-clixy .mockup-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.theme-clixy .mockup-header span {
  font-weight: 700;
}

.theme-clixy .mockup-chip {
  background: var(--clixy-accent-soft);
  color: var(--clixy-accent-dark);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
}

.theme-clixy .mockup-list {
  display: grid;
  gap: 14px;
}

.theme-clixy .mockup-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff7fb;
  border-radius: 16px;
  padding: 12px 14px;
  font-size: 0.9rem;
  color: var(--clixy-muted);
}

.theme-clixy .mockup-item strong {
  color: var(--clixy-text);
}

.theme-clixy .floaty {
  position: absolute;
  padding: 10px 16px;
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 16px 30px rgba(47, 35, 40, 0.12);
  font-weight: 600;
  font-size: 0.85rem;
  animation: float 6s ease-in-out infinite;
}

.theme-clixy .floaty.one {
  top: -18px;
  left: -12px;
}

.theme-clixy .floaty.two {
  bottom: -18px;
  right: -10px;
  animation-delay: 1.5s;
}

.theme-clixy .clixy-stats {
  padding: 30px 0 80px;
}

.theme-clixy .stat-card {
  background: var(--clixy-card);
  padding: 24px;
  border-radius: 20px;
  box-shadow: 0 16px 35px rgba(47, 35, 40, 0.08);
  border: 1px solid rgba(47, 35, 40, 0.05);
  text-align: left;
}

.theme-clixy .stat-number {
  font-size: 1.8rem;
  font-weight: 700;
  display: block;
  margin-bottom: 6px;
}

.theme-clixy .stat-label {
  color: var(--clixy-muted);
  font-weight: 600;
}

.theme-clixy .section-heading {
  text-align: center;
  margin-bottom: 48px;
}

.theme-clixy .section-heading p {
  color: var(--clixy-muted);
  max-width: 640px;
  margin: 12px auto 0;
}

.theme-clixy .clixy-features,
.theme-clixy .clixy-steps {
  padding: 80px 0;
}

.theme-clixy .feature-card,
.theme-clixy .step-card {
  background: var(--clixy-card);
  padding: 28px;
  border-radius: 22px;
  border: 1px solid rgba(47, 35, 40, 0.05);
  box-shadow: 0 14px 30px rgba(47, 35, 40, 0.08);
  height: 100%;
}

.theme-clixy .feature-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: var(--clixy-accent-soft);
  color: var(--clixy-accent-dark);
  margin-bottom: 16px;
}

.theme-clixy .feature-card p,
.theme-clixy .step-card p {
  color: var(--clixy-muted);
}

.theme-clixy .step-number {
  font-weight: 700;
  color: var(--clixy-accent-dark);
  font-size: 0.9rem;
  letter-spacing: 0.08em;
}

.theme-clixy .clixy-cta {
  padding: 60px 0 100px;
}

.theme-clixy .cta-box {
  background: var(--clixy-card);
  border-radius: 30px;
  padding: 40px;
  border: 1px solid rgba(47, 35, 40, 0.05);
  box-shadow: var(--clixy-shadow);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.theme-clixy .cta-box p {
  color: var(--clixy-muted);
  margin-bottom: 0;
}

.theme-clixy .clixy-footer {
  padding: 40px 0 60px;
  color: var(--clixy-muted);
}

.theme-clixy .clixy-footer .footer-links a {
  margin-right: 16px;
  font-weight: 600;
}

.theme-clixy .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: all 0.6s ease;
}

.theme-clixy .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Auth pages */
.theme-clixy .auth-shell {
  min-height: 100vh !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 0 !important;
}

.theme-clixy .auth-shell > .container {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.theme-clixy .auth-card {
  background: var(--clixy-card);
  border-radius: 28px;
  box-shadow: var(--clixy-shadow);
  border: 1px solid rgba(47, 35, 40, 0.05);
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  overflow: hidden;
  max-width: 980px;
  margin: 0 auto;
  position: relative;
  top: 50vh;
  transform: translateY(-50%);
}

.theme-clixy .auth-aside {
  background: linear-gradient(160deg, #fff7fb 0%, #fde6f0 100%);
  padding: 40px;
  position: relative;
}

.theme-clixy .auth-aside h3 {
  margin-top: 18px;
}

.theme-clixy .auth-aside .aside-badge {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 999px;
  background: #ffffff;
  color: var(--clixy-accent-dark);
  font-weight: 700;
  font-size: 0.8rem;
}

.theme-clixy .auth-aside .aside-list {
  margin-top: 24px;
  display: grid;
  gap: 14px;
}

.theme-clixy .auth-aside .aside-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--clixy-muted);
  font-weight: 600;
}

.theme-clixy .auth-aside .aside-item span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--clixy-accent);
}

.theme-clixy .auth-form {
  padding: 40px;
}

.theme-clixy .auth-form .site-logo img {
  height: 42px;
}

.theme-clixy .auth-form h2 {
  margin-top: 16px;
}

.theme-clixy .auth-form p {
  color: var(--clixy-muted);
}

.theme-clixy .form-control {
  border-radius: 14px;
  border: 1px solid var(--clixy-border);
  padding: 12px 14px;
  box-shadow: none;
}

.theme-clixy .form-control:focus {
  border-color: var(--clixy-accent);
  box-shadow: 0 0 0 3px rgba(245, 159, 188, 0.25);
}

.theme-clixy .input-icon-addon {
  color: var(--clixy-muted);
}

.theme-clixy .btn-auth {
  width: 100%;
  border-radius: 999px;
  padding: 12px 20px;
  font-weight: 700;
}

.theme-clixy .auth-footer {
  margin-top: 24px;
  text-align: center;
  color: var(--clixy-muted);
}

.theme-clixy .auth-home-link {
  margin-top: 12px;
  font-weight: 600;
}

.theme-clixy .auth-home-link a {
  color: var(--clixy-accent-dark);
}

.theme-clixy .auth-home-link a:hover {
  color: var(--clixy-text);
}

.theme-clixy .g-recaptcha {
  margin-bottom: 18px;
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0px);
  }
}

@media (max-width: 991px) {
  .theme-clixy .hero {
    padding-top: 110px;
  }

  .theme-clixy .navbar-collapse {
    background: rgba(254, 245, 238, 0.98);
    border-radius: 18px;
    padding: 16px;
    margin-top: 12px;
    box-shadow: 0 18px 30px rgba(47, 35, 40, 0.08);
  }

  .theme-clixy .navbar-nav .nav-link {
    margin: 6px 0;
  }

  .theme-clixy .auth-card {
    grid-template-columns: 1fr;
    top: 0;
    transform: none;
    margin: 24px auto;
  }

  .theme-clixy .auth-aside {
    order: 2;
  }

  .theme-clixy .auth-shell {
    min-height: 100vh !important;
    padding: 0 !important;
  }
}

@media (max-width: 767px) {
  .theme-clixy .hero-actions {
    flex-direction: column;
  }

  .theme-clixy .cta-box {
    padding: 28px;
  }
}
