:root {
   --accent: #E0C389;
   --accent-2: #D6B873;
   --bg-0: #f6f7fb;
   --bg-1: #eef2f7;
   --ink: #0e1116;
   --ink-sub: #5b6472;
   --ink-mute: #8d96a3;
   --glass-light: rgba(255, 255, 255, .55);
   --glass-dark: rgba(16, 16, 20, .55);
   --hairline-light: rgba(12, 20, 28, .06);
   --hairline-dark: rgba(255, 255, 255, .06);
   --radius-xl: 28px;
   --radius-lg: 18px;
   --radius-md: 14px;
   --blur: 24px;
   --shadow-1: 0 10px 30px rgba(12, 20, 28, .08);
   --shadow-2: 0 30px 80px rgba(12, 20, 28, .12);
   --speed: 360ms;
   --easing: cubic-bezier(.2, .9, .25, 1);
   --maxw: 1200px;
}

[data-theme="dark"] {
   --bg-0: #0c0e13;
   --bg-1: #0f1218;
   --ink: #e8edf6;
   --ink-sub: #a9b5c3;
   --ink-mute: #92a0ad;
}


* {
   box-sizing: border-box
}

html {
   scroll-behavior: smooth
}

body {
   margin: 0;
   font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "SF Pro Display", "Segoe UI", Roboto, "Helvetica Neue", Arial;
   background: radial-gradient(1200px 600px at 10% -10%, rgba(100, 167, 133, .10), transparent 60%),
      radial-gradient(900px 500px at 95% 10%, rgba(100, 167, 133, .10), transparent 60%),
      linear-gradient(180deg, var(--bg-0), var(--bg-1));
   color: var(--ink);
   -webkit-font-smoothing: antialiased;
   -moz-osx-font-smoothing: grayscale;
   transition: background var(--speed) var(--easing), color var(--speed) var(--easing);
}

[data-theme="dark"] body {
   background: radial-gradient(1200px 600px at 10% -10%, rgba(100, 167, 133, .10), transparent 60%),
      radial-gradient(900px 500px at 95% 10%, rgba(100, 167, 133, .10), transparent 60%),
      linear-gradient(180deg, var(--bg-0), var(--bg-1));
}

a {
   color: inherit;
   text-decoration: none
}

img {
   display: block;
   max-width: 100%
}


.nav {
   position: fixed;
   inset: 0 auto auto 0;
   width: 100%;
   backdrop-filter: blur(14px);
   background: var(--glass-light);
   border-bottom: 1px solid var(--hairline-light);
   padding: 10px 20px;
   z-index: 1000;
   transition: background var(--speed) var(--easing), border-color var(--speed) var(--easing);
}

[data-theme="dark"] .nav {
   background: var(--glass-dark);
   border-bottom-color: var(--hairline-dark);
}

.nav-inner {
   max-width: var(--maxw);
   margin: 0 auto;
   display: flex;
   align-items: center;
   gap: 14px;
}

.brand {
   display: flex;
   align-items: center;
   gap: 10px;
   font-weight: 600;
   letter-spacing: -.02em;
}

.brand-badge {
   width: 34px;
   height: 34px;
   border-radius: 12px;
   background: radial-gradient(60% 60% at 30% 20%, #fff, var(--accent-2)), linear-gradient(135deg, var(--accent), var(--accent-2));
   display: flex;
   align-items: center;
   justify-content: center;
   color: #fff;
   box-shadow: 0 8px 22px var(--accent-2);
}

.nav-links {
   margin-left: auto;
   display: flex;
   gap: 12px;
   align-items: center;
}

.nav-links a {
   opacity: .95;
   font-size: 15px
}

.nav-links a:hover {
   opacity: 1;
   color: var(--accent)
}

.toggle,
select.lang {
   border: none;
   background: transparent;
   cursor: pointer;
   font-size: 14px;
   padding: 8px;
   border-radius: 10px;
   transition: transform 160ms var(--easing);
   background: transparent;
}

.toggle:hover,
select.lang:hover {
   transform: scale(1.03)
}

@media (max-width:880px) {
   .nav-inner {
      padding: 6px 8px;
      gap: 8px
   }

   .nav-links a {
      display: none
   }

   .nav-links a:not(#registerBtn) {
      display: none
   }
}

.container {
   max-width: var(--maxw);
   margin: 0 auto;
   padding: 0 20px;
}

section {
   padding: 90px 0;
}

@media (max-width: 720px) {
   section {
      padding: 72px 0;
   }
}

.reveal {
   opacity: 0;
   transform: translateY(26px);
   transition: opacity .7s var(--easing), transform .7s var(--easing)
}

.reveal.show {
   opacity: 1;
   transform: none
}


.hero {
   padding-top: 120px;
}

.hero-grid {
   display: grid;
   grid-template-columns: 1.1fr .9fr;
   gap: 28px;
   align-items: center;
}

@media (max-width: 980px) {
   .hero-grid {
      grid-template-columns: 1fr;
      gap: 22px;
   }
}

.shell {
   background: var(--glass-light);
   border: 1px solid var(--hairline-light);
   backdrop-filter: blur(var(--blur));
   border-radius: var(--radius-xl);
   box-shadow: var(--shadow-2);
   padding: 34px;
   position: relative;
   overflow: hidden;
}

[data-theme="dark"] .shell {
   background: var(--glass-dark);
   border-color: var(--hairline-dark);
}

.shell::after {
   content: "";
   position: absolute;
   inset: auto -20% -40% -20%;
   height: 180px;
   background: radial-gradient(60% 60% at 50% 0%, rgba(255, 255, 255, .28), transparent 60%);
   filter: blur(30px);
   pointer-events: none;
   opacity: .6;
}

[data-theme="dark"] .shell::after {
   background: radial-gradient(60% 60% at 50% 0%, rgba(255, 255, 255, .08), transparent 60%);
}

.h1 {
   font-size: 42px;
   line-height: 1;
   letter-spacing: -.02em;
   margin: 0 0 12px;
}

.lead {
   font-size: 18px;
   color: var(--ink-sub);
   max-width: 52ch;
   margin-bottom: 22px,
   line-height:1.5;
}

@media (max-width:720px) {
   .h1 {
      font-size: 34px
   }

   .lead {
      font-size: 16px
   }
}

.leadbar {
   display: flex;
   gap: 30px;
   align-items: center;
   flex-wrap: wrap;
   background: rgba(255, 255, 255, .55);
   border: 0.5px solid var(--hairline-light);
   border-radius: 20px;
   padding: 18px;
}

[data-theme="dark"] .leadbar {
   background: rgba(16, 16, 20, .5);
   border-color: var(--hairline-dark);
   box-shadow: none;
}

.field {
   flex: 1;
   min-width: 200px;
   display: flex;
   align-items: center;
   gap: 10px;
   padding: 10px 14px;
   border-radius: 9999px;
   background: rgba(255, 255, 255, .6);
   border-radius: 8px;
   border: 0.5px solid var(--hairline-light);

}

.field input {
   width: 100%;
   border: none;
   outline: none;
   background: transparent;
   font-size: 14px;
   color: var(--ink);
}

[data-theme="dark"] .field {
   background: rgba(255, 255, 255, .06);
}

[data-theme="dark"] .field input {
   color: var(--ink);
}

.agree {
   display: flex;
   align-items: center;
   gap: 8px;
   font-size: 12px;
   color: var(--ink-mute);
   margin-left: 8px
}

.btn {
   border: none;
   cursor: pointer;
   border-radius: 10px;
   padding: 12px 16px;
   background: linear-gradient(180deg, var(--accent), var(--accent-2));
   color: #fff;
   font-weight: 600;
   letter-spacing: .01em;
   transition: transform 160ms var(--easing), box-shadow var(--speed) var(--easing);
}

.btn:hover {
   transform: translateY(-1px);
   box-shadow: 0 16px 100px var(--accent-2);
}

.btn:active {
   transform: translateY(0);
}

.hero-visual {
   position: relative;
   display: flex;
   justify-content: center;
   align-items: center;
   height: 100%;
   min-height: 280px;
}

.robot {
   width: 120px;
   aspect-ratio: 1/1;
   filter: drop-shadow(0 18px 42px var(--accent-2));
   animation: float 4.2s ease-in-out infinite;
}

@keyframes float {

   0%,
   100% {
      transform: translateY(0)
   }

   50% {
      transform: translateY(-10px)
   }
}

.hero-visual {
   position: relative;
}

.hero-visual img {
   position: relative;
   z-index: 2;
}

@media (max-width: 720px) {
   .hero-visual {
      display: none;
   }
}

/* Gradient Mesh Background */
.gradient-mesh {
   position: absolute;
   width: 100%;
   height: 100%;
   top: 0;
   left: 0;
   z-index: 1;
   overflow: hidden;
   border-radius: 20px;
}

.gradient-mesh canvas {
   width: 100%;
   height: 100%;
   display: block;
}

.section-title {
   font-size: 28px;
   letter-spacing: -.02em;
   margin-bottom: 22px;
}

.grid {
   display: grid;
   gap: 18px;
}

.grid-3 {
   grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 980px) {
   .grid-3 {
      grid-template-columns: 1fr;
   }
}

.feature-img {
   width: 100%;
   height: auto;
   border-radius: 14px;
   margin-top: 1rem;
   object-fit: cover;
   box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.feature-img {
   width: 100%;
   border-radius: 14px;
   cursor: zoom-in;
   transition: transform 0.3s ease;
}

.image-overlay {
   position: fixed;
   inset: 0;
   background: rgba(0, 0, 0, 0.8);
   display: flex;
   justify-content: center;
   align-items: center;
   z-index: 9999;
   opacity: 0;
   pointer-events: none;
   transition: opacity 0.3s ease;
}

.image-overlay.active {
   opacity: 1;
   pointer-events: auto;
}

.image-overlay img {
   max-width: 90%;
   max-height: 90%;
   border-radius: 20px;
   box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
   cursor: zoom-out;
}

.card {
   background: var(--glass-light);
   border: 1px solid var(--hairline-light);
   backdrop-filter: blur(var(--blur));
   border-radius: var(--radius-lg);
   padding: 40px;
   box-shadow: var(--shadow-1);
   transition: transform 220ms var(--easing), box-shadow var(--speed) var(--easing), background var(--speed) var(--easing), border-color var(--speed) var(--easing);
}

[data-theme="dark"] .card {
   background: var(--glass-dark);
   border-color: var(--hairline-dark);
}

.card:hover {
   transform: translateY(-4px);
   box-shadow: 0 20px 50px rgba(12, 20, 28, .12);
}

.muted {
   color: var(--ink-mute);
   font-size: 14px;
}

/* Pricing */
.price {
   font-size: 22px;
   font-weight: 700;
   margin: 6px 0 14px;
}

.ul {
   margin: 0;
   padding-left: 10px;
   color: var(--ink-sub);
}

.ul p {
   margin: 8px 0;
}

/* FAQ */
/* =========================
         FAQ SECTION
         ========================== */
.faq-grid {
   display: grid;
   grid-template-columns: repeat(2, 1fr);
   gap: 32px;
   margin-bottom: 48px;
}

.faq-column {
   display: flex;
   flex-direction: column;
   gap: 16px;
}

.faq-column-title {
   font-size: 13px;
   font-weight: 700;
   text-transform: uppercase;
   letter-spacing: 0.08em;
   color: var(--accent);
   margin-bottom: 8px;
   padding-bottom: 12px;
   border-bottom: 2px solid var(--accent);
}

.faq-item {
   background: var(--glass-light);
   border: 1px solid var(--hairline-light);
   border-radius: var(--radius-lg);
   padding: 20px 24px;
   transition: all var(--speed) var(--easing);
   cursor: pointer;
}

[data-theme="dark"] .faq-item {
   background: var(--glass-dark);
   border-color: var(--hairline-dark);
}

.faq-item:hover {
   border-color: var(--accent);
   box-shadow: 0 8px 24px rgba(214, 184, 115, 0.12);
}

.faq-item.active {
   border-color: var(--accent);
   box-shadow: 0 8px 24px rgba(214, 184, 115, 0.15);
}

.faq-q {
   display: flex;
   justify-content: space-between;
   align-items: flex-start;
   gap: 16px;
   font-weight: 600;
   font-size: 15px;
   line-height: 1.5;
   color: var(--ink);
   user-select: none;
}

.faq-icon {
   flex-shrink: 0;
   width: 24px;
   height: 24px;
   display: flex;
   align-items: center;
   justify-content: center;
   border-radius: 50%;
   background: rgba(214, 184, 115, 0.12);
   color: var(--accent);
   font-size: 18px;
   font-weight: 400;
   transition: transform var(--speed) var(--easing);
}

.faq-item.active .faq-icon {
   transform: rotate(45deg);
   background: var(--accent);
   color: white;
}

.faq-a {
   display: none;
   color: var(--ink-sub);
   font-size: 14px;
   line-height: 1.7;
   margin-top: 16px;
   padding-top: 16px;
   border-top: 1px solid var(--hairline-light);
}

[data-theme="dark"] .faq-a {
   border-top-color: var(--hairline-dark);
}

.faq-item.active .faq-a {
   display: block;
   animation: fadeInDown 0.4s ease;
}

@keyframes fadeInDown {
   from {
      opacity: 0;
      transform: translateY(-10px);
   }

   to {
      opacity: 1;
      transform: translateY(0);
   }
}

.faq-footer {
   margin-top: 48px;
   padding: 32px;
   background: linear-gradient(135deg,
         rgba(214, 184, 115, 0.08),
         rgba(100, 167, 133, 0.06));
   border: 1px solid var(--hairline-light);
   border-radius: var(--radius-lg);
}

[data-theme="dark"] .faq-footer {
   background: linear-gradient(135deg,
         rgba(214, 184, 115, 0.06),
         rgba(100, 167, 133, 0.04));
   border-color: var(--hairline-dark);
}

.faq-footer-content {
   display: flex;
   align-items: center;
   gap: 24px;
   max-width: 900px;
   margin: 0 auto;
}

.faq-footer-icon {
   font-size: 48px;
   line-height: 1;
   flex-shrink: 0;
}

.faq-footer-title {
   font-size: 18px;
   font-weight: 700;
   color: var(--ink);
   margin-bottom: 6px;
}

.faq-footer-text {
   font-size: 14px;
   color: var(--ink-sub);
   line-height: 1.6;
}

.btn-secondary {
   background: white;
   color: var(--accent);
   border: 2px solid var(--accent);
   box-shadow: none;
   white-space: nowrap;
   margin-left: auto;
}

.btn-secondary:hover {
   background: var(--accent);
   color: white;
}

[data-theme="dark"] .btn-secondary {
   background: var(--bg-1);
   color: var(--accent);
}

/* =========================
         MOBILE RESPONSIVE
         ========================== */
@media (max-width: 980px) {
   .faq-grid {
      grid-template-columns: 1fr;
      gap: 24px;
   }

   .faq-column-title {
      font-size: 12px;
   }
}

@media (max-width: 720px) {
   .faq-item {
      padding: 18px 20px;
   }

   .faq-q {
      font-size: 14px;
   }

   .faq-a {
      font-size: 13px;
      line-height: 1.6;
   }

   .faq-footer {
      padding: 24px 20px;
   }

   .faq-footer-content {
      flex-direction: column;
      text-align: center;
      gap: 20px;
   }

   .faq-footer-icon {
      font-size: 40px;
   }

   .btn-secondary {
      width: 100%;
      margin-left: 0;
   }
}

/* Contact */
.contact-form {
   display: grid;
   gap: 10px;
   grid-template-columns: 1fr 1fr;
   align-items: center;
   border: 1px solid var(--hairline-light);
   backdrop-filter: blur(var(--blur));
   border-radius: var(--radius-lg);
   padding: 16px;
}

.contact-form .field {
   min-width: auto;
}

.contact-form .field input {
   padding: 6px 0;
}

.contact-form .agree {
   grid-column: 1 / -1;
}

.contact-form .btn {
   justify-self: end;
}

@media (max-width: 720px) {
   .contact-form {
      grid-template-columns: 1fr;
   }

   .contact-form .btn {
      justify-self: stretch;
      width: 100%;
   }
}

/* Footer */
.footer {
   margin-top: 40px;
   background: var(--glass-light);
   border-top: 1px solid var(--hairline-light);
   backdrop-filter: blur(14px);
   padding: 16px 0;
   transition: background var(--speed) var(--easing), border-color var(--speed) var(--easing);
}

[data-theme="dark"] .footer {
   background: var(--glass-dark);
   border-top-color: var(--hairline-dark);
}

.foot-row {
   display: flex;
   align-items: center;
   justify-content: space-between;
   gap: 14px;
}

.foot-row a {
   color: var(--accent);
   opacity: .9
}

.foot-row a:hover {
   opacity: 1
}

/* Magnetic base */
.magnetic {
   position: relative;
   will-change: transform;
}

.magnetic-inner {
   display: inline-block;
   will-change: transform;
}

@media (prefers-reduced-motion: reduce) {

   .magnetic,
   .magnetic-inner {
      transition: none !important;
   }

   .btn,
   .card {
      transition: none !important;
   }
}

.feature-card {
   position: relative;
   overflow: hidden;
   padding: 2rem;
   border-radius: 1.5rem;
   background: rgba(255, 255, 255, 0.05);
   backdrop-filter: blur(10px);
}

.card-bg-icon {
   position: absolute;
   top: 50%;
   left: 50%;
   width: 90%;
   height: 90%;
   transform: translate(-50%, -50%);
   opacity: 0.05;
   /* subtle */
   color: inherit;
   /* inherit light/dark mode */
   pointer-events: none;
}

.card-bg-icon svg {
   width: 100%;
   height: 100%;
}

.card-content {
   position: relative;
   z-index: 2;
}

/* =========================
         PRICING SECTION
         ========================== */
.pricing-wrapper {
   max-width: 620px;
   margin: 0 auto;
}

.pricing-card {
   text-align: center;
   padding: 50px 40px;
   position: relative;
}

/* Price Display */
.pricing-amount {
   margin-bottom: 12px;
}

.price-number {
   font-size: 56px;
   font-weight: 700;
   color: var(--accent);
   letter-spacing: -0.02em;
   line-height: 1;
}

.price-period {
   font-size: 22px;
   font-weight: 400;
   color: var(--ink-sub);
   margin-left: 4px;
}

.pricing-annual {
   font-size: 15px;
   color: var(--ink-mute);
   margin-bottom: 40px;
   line-height: 1.5;
}

/* Features Grid */
.pricing-features {
   display: grid;
   grid-template-columns: repeat(2, 1fr);
   gap: 24px;
   margin-bottom: 40px;
   text-align: left;
}

.pricing-feature {
   display: flex;
   align-items: flex-start;
   gap: 14px;
}

.feature-icon {
   width: 28px;
   height: 28px;
   color: var(--accent);
   flex-shrink: 0;
   stroke-width: 1.8;
}

.feature-text {
   flex: 1;
   min-width: 0;
   /* allows text to wrap properly */
}

.feature-title {
   font-weight: 600;
   font-size: 14px;
   color: var(--ink);
   margin-bottom: 3px;
   line-height: 1.3;
   text-align: left;
}

.feature-desc {
   font-size: 12px;
   color: var(--ink-sub);
   line-height: 1.4;
}

/* CTA Button */
.pricing-cta {
   width: 100%;
   padding: 16px 24px;
   font-size: 16px;
   margin-bottom: 20px;
}

/* Trust Elements */
.pricing-trust {
   font-size: 13px;
   color: var(--ink-mute);
   line-height: 1.8;
}

/* Enterprise Note */
.enterprise-note {
   text-align: center;
   margin-top: 32px;
   padding: 28px 32px;
   background: rgba(100, 167, 133, 0.06);
   border-radius: var(--radius-lg);
   border: 1px solid rgba(100, 167, 133, 0.12);
   font-size: 14px;
   color: var(--ink-sub);
   line-height: 1.6;
}

.enterprise-note strong {
   color: var(--ink);
   font-size: 15px;
   display: block;
   margin-bottom: 6px;
}

/* =========================
         MOBILE RESPONSIVE
         ========================== */
@media (max-width: 720px) {
   .pricing-wrapper {
      padding: 0 8px;
   }

   .pricing-card {
      padding: 40px 24px;
   }

   .price-number {
      font-size: 48px;
   }

   .price-period {
      font-size: 20px;
   }

   .pricing-annual {
      font-size: 14px;
      margin-bottom: 32px;
   }

   /* Stack features on mobile */
   .pricing-features {
      grid-template-columns: 1fr;
      gap: 20px;
      margin-bottom: 32px;
   }

   .feature-icon {
      width: 26px;
      height: 26px;
   }

   .feature-title {
      font-size: 14px;
   }

   .feature-desc {
      font-size: 12px;
   }

   .pricing-cta {
      font-size: 15px;
      padding: 14px 20px;
   }

   .pricing-trust {
      font-size: 12px;
   }

   .enterprise-note {
      padding: 24px 20px;
      font-size: 13px;
   }

   .enterprise-note strong {
      font-size: 14px;
   }
}

/* Very small phones */
@media (max-width: 380px) {
   .pricing-card {
      padding: 32px 20px;
   }

   .price-number {
      font-size: 42px;
   }

   .price-period {
      font-size: 18px;
   }

   .pricing-annual {
      font-size: 13px;
   }

   .feature-title {
      font-size: 13px;
   }

   .feature-desc {
      font-size: 11px;
   }
}

[data-theme="dark"] .enterprise-note {
   background: rgba(100, 167, 133, 0.08);
   border-color: rgba(100, 167, 133, 0.15);
}

/* Chat Animation Styles */
.chat-container {
   position: relative;
   z-index: 2;
   width: 100%;
   max-width: 380px;
   display: flex;
   flex-direction: column;
   gap: 16px;
   padding: 20px;
}

.chat-bubble {
   padding: 14px 18px;
   border-radius: 18px;
   font-size: 15px;
   line-height: 1.5;
   max-width: 75%;
   opacity: 0;
   transform: scale(0.3);
   backdrop-filter: blur(12px);
   border: 1px solid rgba(255, 255, 255, 0.2);
   box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.guest-bubble {
   align-self: flex-start;
   background: linear-gradient(135deg, rgba(100, 167, 133, 0.3));
   color: #fff;
   border: transparent;
}

.ai-bubble {
   align-self: flex-end;
   background: linear-gradient(135deg, rgba(214, 184, 115, 0.3), rgba(239, 191, 4, 0.3));
   color: #fff;
   border: transparent;
}

.bubble-pop-in {
   animation: popIn 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
}

.bubble-fade-out {
   animation: fadeOut 0.4s ease-out forwards;
}

@keyframes popIn {
   0% {
      opacity: 0;
      transform: scale(0.3);
   }
   50% {
      transform: scale(1.05);
   }
   100% {
      opacity: 1;
      transform: scale(1);
   }
}

@keyframes fadeOut {
   to {
      opacity: 0;
      transform: scale(0.8);
   }
}

.typing-indicator {
   display: none;
   align-self: flex-end;
   background: linear-gradient(135deg, rgba(214, 184, 115, 0.3), rgba(239, 191, 4, 0.3));
   border: 1px solid rgba(214, 184, 115, 0.3);
   backdrop-filter: blur(12px);
   padding: 14px 18px;
   border-radius: 18px;
   max-width: 75px;
   opacity: 0;
}

.typing-indicator.active {
   display: flex;
   gap: 4px;
   animation: popIn 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
}

.typing-dot {
   width: 8px;
   height: 8px;
   border-radius: 50%;
   background: rgba(255, 255, 255, 0.8);
   animation: typingBounce 1.4s infinite ease-in-out;
}

.typing-dot:nth-child(1) { animation-delay: 0s; }
.typing-dot:nth-child(2) { animation-delay: 0.2s; }
.typing-dot:nth-child(3) { animation-delay: 0.4s; }

@keyframes typingBounce {
   0%, 60%, 100% { transform: translateY(0); }
   30% { transform: translateY(-10px); }
}

/* Mobile adjustments for chat */
@media (max-width: 720px) {
   .chat-container {
      max-width: 100%;
      gap: 12px;
      padding: 15px;
   }

   .chat-bubble {
      font-size: 14px;
      padding: 12px 16px;
      border-radius: 16px;
   }

   .typing-indicator {
      padding: 12px 16px;
   }

   .typing-dot {
      width: 6px;
      height: 6px;
   }
}

@media (max-width: 480px) {
   .chat-bubble {
      font-size: 13px;
      padding: 10px 14px;
      max-width: 85%;
   }
}


.cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: var(--glass-light);
            backdrop-filter: blur(var(--blur));
            border-top: 1px solid var(--hairline-light);
            box-shadow: var(--shadow-2);
            padding: 24px;
            z-index: 9999;
            transform: translateY(100%);
            transition: transform 0.4s var(--easing);
        }

        .cookie-banner.show {
            transform: translateY(0);
        }

        .cookie-banner-content {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            gap: 24px;
        }

        .cookie-icon {
            font-size: 32px;
            flex-shrink: 0;
        }

        .cookie-text {
            flex: 1;
        }

        .cookie-text h3 {
            margin: 0 0 8px;
            font-size: 16px;
            font-weight: 600;
            color: var(--ink);
        }

        .cookie-text p {
            margin: 0;
            font-size: 14px;
            line-height: 1.6;
            color: var(--ink-sub);
        }

        .cookie-text a {
            color: var(--accent-2);
            text-decoration: underline;
        }

        .cookie-text a:hover {
            color: var(--accent);
        }

        .cookie-actions {
            display: flex;
            gap: 12px;
            flex-shrink: 0;
        }

        .cookie-btn {
            border: none;
            cursor: pointer;
            border-radius: 12px;
            padding: 12px 24px;
            font-weight: 600;
            font-size: 14px;
            letter-spacing: 0.01em;
            transition: transform 160ms var(--easing), box-shadow var(--speed) var(--easing);
            white-space: nowrap;
        }

        .cookie-btn:hover {
            transform: translateY(-1px);
        }

        .cookie-btn:active {
            transform: translateY(0);
        }

        .cookie-btn-accept {
            background: linear-gradient(180deg, var(--accent), var(--accent-2));
            color: #fff;
            box-shadow: 0 4px 16px rgba(239, 191, 4, 0.3);
        }

        .cookie-btn-accept:hover {
            box-shadow: 0 8px 24px rgba(239, 191, 4, 0.4);
        }

        .cookie-btn-reject {
            background: transparent;
            color: var(--ink-sub);
            border: 1px solid var(--hairline-light);
        }

        .cookie-btn-reject:hover {
            background: rgba(0, 0, 0, 0.03);
        }

        [data-theme="dark"] .cookie-btn-reject:hover {
            background: rgba(255, 255, 255, 0.05);
        }

        .cookie-btn-settings {
            background: transparent;
            color: var(--ink-sub);
            padding: 12px 16px;
            text-decoration: underline;
            font-size: 13px;
        }

        /* Settings Modal */
        .cookie-settings-overlay {
            position: fixed;
            inset: 0;
            background: rgba(0, 0, 0, 0.6);
            backdrop-filter: blur(4px);
            z-index: 10000;
            display: none;
            align-items: center;
            justify-content: center;
            padding: 20px;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .cookie-settings-overlay.show {
            display: flex;
            opacity: 1;
        }

        .cookie-settings-modal {
            background: var(--glass-light);
            backdrop-filter: blur(var(--blur));
            border: 1px solid var(--hairline-light);
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-2);
            max-width: 600px;
            width: 100%;
            max-height: 80vh;
            overflow-y: auto;
            padding: 32px;
            transform: scale(0.9);
            transition: transform 0.3s var(--easing);
        }

        .cookie-settings-overlay.show .cookie-settings-modal {
            transform: scale(1);
        }

        .cookie-settings-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 24px;
        }

        .cookie-settings-header h2 {
            margin: 0;
            font-size: 20px;
            font-weight: 600;
            color: var(--ink);
        }

        .cookie-close {
            background: transparent;
            border: none;
            font-size: 28px;
            line-height: 1;
            cursor: pointer;
            color: var(--ink-mute);
            padding: 0;
            width: 32px;
            height: 32px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 8px;
            transition: background 0.2s ease;
        }

        .cookie-close:hover {
            background: rgba(0, 0, 0, 0.05);
        }

        [data-theme="dark"] .cookie-close:hover {
            background: rgba(255, 255, 255, 0.05);
        }

        .cookie-category {
            margin-bottom: 24px;
            padding-bottom: 24px;
            border-bottom: 1px solid var(--hairline-light);
        }

        .cookie-category:last-of-type {
            border-bottom: none;
            margin-bottom: 0;
            padding-bottom: 0;
        }

        .cookie-category-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 12px;
        }

        .cookie-category h3 {
            margin: 0;
            font-size: 15px;
            font-weight: 600;
            color: var(--ink);
        }

        .cookie-category p {
            margin: 0;
            font-size: 13px;
            line-height: 1.6;
            color: var(--ink-sub);
        }

        /* Toggle Switch */
        .cookie-toggle {
            position: relative;
            display: inline-block;
            width: 48px;
            height: 26px;
        }

        .cookie-toggle input {
            opacity: 0;
            width: 0;
            height: 0;
        }

        .toggle-slider {
            position: absolute;
            cursor: pointer;
            inset: 0;
            background: var(--ink-mute);
            border-radius: 26px;
            transition: 0.3s;
        }

        .toggle-slider:before {
            position: absolute;
            content: "";
            height: 20px;
            width: 20px;
            left: 3px;
            bottom: 3px;
            background: white;
            border-radius: 50%;
            transition: 0.3s;
        }

        .cookie-toggle input:checked + .toggle-slider {
            background: var(--accent);
        }

        .cookie-toggle input:checked + .toggle-slider:before {
            transform: translateX(22px);
        }

        .cookie-toggle input:disabled + .toggle-slider {
            cursor: not-allowed;
            opacity: 0.5;
        }

        .cookie-settings-actions {
            display: flex;
            gap: 12px;
            margin-top: 32px;
        }

        .cookie-settings-actions .cookie-btn {
            flex: 1;
        }

        /* Mobile Responsive */
        @media (max-width: 768px) {
            .cookie-banner-content {
                flex-direction: column;
                align-items: flex-start;
                gap: 20px;
            }

            .cookie-icon {
                font-size: 24px;
            }

            .cookie-actions {
                width: 100%;
                flex-direction: column;
            }

            .cookie-btn {
                width: 100%;
            }

            .cookie-settings-modal {
                padding: 24px;
            }

            .cookie-settings-actions {
                flex-direction: column;
            }
        }