/*!*****************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[10].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[10].use[3]!./src/app/globals.css ***!
  \*****************************************************************************************************************************************************************************************************************************************************************/
@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:wght@600&family=Hanken+Grotesk:wght@400;500;600&family=Spline+Sans+Mono:wght@400;500&display=swap');

:root {
  --font-heading: 'Bricolage Grotesque', 'Hanken Grotesk', sans-serif;
  --font-body: 'Hanken Grotesk', system-ui, -apple-system, sans-serif;
  --font-mono: 'Spline Sans Mono', ui-monospace, monospace;

  --bg-main: #F8F6F1;
  --bg-card: #FFFFFF;
  --bg-card-hover: #F1EEE6;

  --color-primary: #FFC53D;
  --color-primary-dark: #F5A700;
  --color-cyan: #8A5A00;
  --color-pink: #B3261E;
  --color-purple: #4E4C46;

  --text-main: #161512;
  --text-muted: #6E6B63;
  --text-inverse: #161512;

  --border-glow: rgba(245, 167, 0, 0.2);
  --border-light: #DEDBD1;
  --border-focus: rgba(245, 167, 0, 0.4);

  --glow-shadow: 0 0 30px rgba(255, 197, 61, 0.25);
  --card-shadow: 0 20px 40px -15px rgba(22, 21, 18, 0.12);

  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --border-radius-lg: 16px;
  --border-radius-md: 12px;
  --border-radius-sm: 8px;
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg-main: #161512;
    --bg-card: #211F1C;
    --bg-card-hover: #2A2822;

    --color-primary: #FFC53D;
    --color-primary-dark: #FFD666;
    --color-cyan: #C2BFB3;
    --color-pink: #F2726A;
    --color-purple: #96938A;

    --text-main: #EDEBE4;
    --text-muted: #96938A;
    --text-inverse: #161512;

    --border-glow: rgba(255, 197, 61, 0.2);
    --border-light: #34332E;
    --border-focus: rgba(255, 197, 61, 0.4);

    --glow-shadow: 0 0 30px rgba(255, 197, 61, 0.15);
    --card-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.5);
  }
}

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

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: -0.02em;
}

/* Background Gradients */
.gradient-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -10;
  overflow: hidden;
  background: radial-gradient(circle at 10% 20%, rgba(255, 197, 61, 0.08) 0%, transparent 40%),
              radial-gradient(circle at 90% 80%, rgba(245, 167, 0, 0.06) 0%, transparent 40%);
}

/* Custom Containers */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Header & Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  border-bottom: 1px solid var(--border-light);
}

.logo {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 600;
  color: var(--text-main);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo svg {
  color: var(--color-primary-dark);
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
  align-items: center;
}

.nav-link {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition-smooth);
}

.nav-link:hover {
  color: var(--text-main);
}

/* Premium Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: var(--border-radius-sm);
  font-family: var(--font-heading);
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition-smooth);
  border: 1px solid transparent;
  font-size: 15px;
  gap: 8px;
}

.btn-primary {
  background: var(--color-primary);
  color: var(--text-inverse);
  box-shadow: 0 4px 20px rgba(255, 197, 61, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  background: var(--color-primary-dark);
  box-shadow: 0 8px 30px rgba(255, 197, 61, 0.4);
}

.btn-secondary {
  background: var(--bg-card);
  color: var(--text-main);
  border-color: var(--border-light);
}

.btn-secondary:hover {
  background: var(--bg-card-hover);
  transform: translateY(-2px);
}

.btn-text {
  color: var(--text-muted);
  padding: 8px 16px;
}

.btn-text:hover {
  color: var(--text-main);
}

/* Hero Section */
.hero {
  padding: 100px 0 60px 0;
  text-align: center;
  position: relative;
}

.hero-badge {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(255, 197, 61, 0.12);
  border: 1px solid rgba(245, 167, 0, 0.25);
  color: var(--color-primary-dark);
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 24px;
}

.hero h1 {
  font-size: 56px;
  line-height: 1.1;
  margin-bottom: 24px;
  color: var(--text-main);
}

.hero h1 span {
  color: var(--color-primary-dark);
}

.hero-subtitle {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 650px;
  margin: 0 auto 40px auto;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 60px;
}

/* Glassmorphism Cards */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  grid-gap: 32px;
  gap: 32px;
  margin: 60px 0;
}

.card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--border-radius-lg);
  padding: 32px;
  transition: var(--transition-smooth);
  box-shadow: var(--card-shadow);
  position: relative;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: var(--border-radius-lg);
  padding: 1px;
  background: linear-gradient(135deg, rgba(255, 197, 61, 0.15), transparent 40%, rgba(245, 167, 0, 0.08));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.card:hover {
  transform: translateY(-4px);
  background: var(--bg-card-hover);
  border-color: rgba(245, 167, 0, 0.3);
  box-shadow: var(--glow-shadow);
}

.card-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--border-radius-sm);
  background: rgba(255, 197, 61, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary-dark);
  margin-bottom: 24px;
}

.card-title {
  font-size: 20px;
  margin-bottom: 12px;
}

.card-description {
  color: var(--text-muted);
  font-size: 14px;
}

/* Pricing Grid */
.pricing-section {
  padding: 80px 0;
}

.pricing-header {
  text-align: center;
  margin-bottom: 48px;
}

.pricing-header h2 {
  font-size: 36px;
  margin-bottom: 12px;
}

.pricing-header p {
  color: var(--text-muted);
  font-size: 16px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 24px;
  gap: 24px;
  align-items: stretch;
}

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

@media (max-width: 600px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }
}

.pricing-card {
  display: flex;
  flex-direction: column;
}

.pricing-card.premium {
  border-color: rgba(245, 167, 0, 0.4);
  box-shadow: var(--glow-shadow);
}

.pricing-card.premium::after {
  content: 'POPULAR';
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--color-primary);
  color: var(--text-inverse);
  font-size: 11px;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 20px;
  letter-spacing: 0.05em;
}

.price-title {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.price-value {
  font-size: 44px;
  font-weight: 800;
  margin-bottom: 24px;
}

.price-value span {
  font-size: 16px;
  font-weight: 500;
  color: var(--text-muted);
}

.price-features {
  list-style: none;
  margin-bottom: 32px;
  flex-grow: 1;
}

.price-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 14px;
}

.price-features svg {
  color: var(--color-primary-dark);
  flex-shrink: 0;
}

/* Forms & Authentication */
.auth-wrapper {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 0;
}

.auth-card {
  width: 100%;
  max-width: 440px;
}

.auth-header {
  text-align: center;
  margin-bottom: 32px;
}

.auth-header h2 {
  font-size: 28px;
  margin-bottom: 8px;
}

.auth-header p {
  color: var(--text-muted);
  font-size: 14px;
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.form-input {
  width: 100%;
  padding: 12px 16px;
  background: var(--bg-main);
  border: 1px solid var(--border-light);
  border-radius: var(--border-radius-sm);
  color: var(--text-main);
  font-family: var(--font-body);
  font-size: 15px;
  transition: var(--transition-smooth);
}

.form-input:focus {
  outline: none;
  border-color: var(--color-primary-dark);
  background: var(--bg-card);
  box-shadow: 0 0 15px rgba(255, 197, 61, 0.2);
}

.form-footer {
  text-align: center;
  margin-top: 24px;
  font-size: 14px;
  color: var(--text-muted);
}

.form-footer a {
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 500;
}

.form-footer a:hover {
  text-decoration: underline;
}

/* Dashboard Styles */
.dashboard-layout {
  padding: 60px 0;
}

.dashboard-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.dashboard-title h2 {
  font-size: 32px;
}

.dashboard-title p {
  color: var(--text-muted);
  font-size: 14px;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-gap: 32px;
  gap: 32px;
}

@media (max-width: 900px) {
  .dashboard-grid {
    grid-template-columns: 1fr;
  }
}

.sub-card {
  margin-bottom: 32px;
}

.sub-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.sub-badge.active {
  background: rgba(16, 185, 129, 0.1);
  color: #10b981;
  border: 1px solid rgba(16, 185, 129, 0.2);
}

.sub-badge.trial {
  background: rgba(245, 158, 11, 0.1);
  color: #f59e0b;
  border: 1px solid rgba(245, 158, 11, 0.2);
}

.flex-between {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.sub-details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  grid-gap: 24px;
  gap: 24px;
  margin: 24px 0;
  padding: 24px 0;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.detail-item label {
  display: block;
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.detail-item span {
  font-size: 16px;
  font-weight: 600;
}

.token-box {
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid var(--border-light);
  border-radius: var(--border-radius-sm);
  padding: 12px 16px;
  font-family: monospace;
  font-size: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 12px;
}

.token-copy-btn {
  background: none;
  border: none;
  color: var(--color-primary-dark);
  cursor: pointer;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
}

/* Footer Section */
.footer {
  border-top: 1px solid var(--border-light);
  padding: 60px 0;
  text-align: center;
  color: var(--text-muted);
  font-size: 14px;
}

.footer-logo {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 16px;
  display: inline-block;
}

.footer-nav {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 24px;
  list-style: none;
}

.footer-nav a {
  color: var(--text-muted);
  text-decoration: none;
}

.footer-nav a:hover {
  color: var(--text-main);
}

/* Global Keyframes */
@keyframes slideUp {
  from {
    transform: translateY(20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Redesigned Animated Background Blobs */
.bg-blobs {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -10;
  overflow: hidden;
  pointer-events: none;
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.12;
  animation: float 20s infinite ease-in-out;
}

.blob-1 {
  width: 400px;
  height: 400px;
  background: var(--color-primary);
  top: -100px;
  left: -100px;
}

.blob-2 {
  width: 500px;
  height: 500px;
  background: var(--color-primary-dark);
  bottom: -150px;
  right: -150px;
  animation-delay: -5s;
  animation-duration: 25s;
}

.blob-3 {
  width: 300px;
  height: 300px;
  background: var(--color-purple);
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation-delay: -10s;
  animation-duration: 30s;
}

@keyframes float {
  0% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(40px, -60px) scale(1.1);
  }
  66% {
    transform: translate(-20px, 30px) scale(0.95);
  }
  100% {
    transform: translate(0, 0) scale(1);
  }
}

/* Pulsing Active Status Ring */
@keyframes pulse {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 6px rgba(16, 185, 129, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
  }
}

.pulsing-dot {
  animation: pulse 2s infinite;
}

/* Fade in Up Entrance Utility */
.fade-in-up {
  opacity: 0;
  animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

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

/* Focus Ring Accessibility */
*:focus-visible {
  outline: 2px solid var(--color-primary-dark);
  outline-offset: 4px;
}

/* Sticky Navbar Header updates */
header {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg-main);
  transition: var(--transition-smooth);
  border-bottom: 1px solid transparent;
}

header.scrolled {
  border-bottom: 1px solid var(--border-light);
  background: var(--bg-main);
}

/* Responsive Navigation Bar & Hamburger */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-main);
  cursor: pointer;
  padding: 4px;
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--bg-main);
    border-bottom: 1px solid var(--border-light);
    flex-direction: column;
    padding: 24px;
    gap: 16px;
    align-items: flex-start;
  }
  
  .nav-links.active {
    display: flex;
    animation: slideUp 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  }

  .nav-toggle {
    display: block;
  }

  .features-grid, .pricing-grid {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }

  .hero-content h1 {
    font-size: 40px !important;
  }
}


