/* ── Google Fonts ─────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Sora:wght@300;400;500;600;700;800&family=Inter:wght@300;400;500;600;700&family=JetBrains+Mono:wght@400;500;600&display=swap');

/* ── CSS Variables ────────────────────────────────────────── */
:root {
  --color-primary: #2563EB;
  --color-bright: #3B82F6;
  --color-sky: #0EA5E9;
  --color-light-bg: #EFF6FF;
  --color-soft-bg: #F0F7FF;
  --color-slate: #0F172A;
  --color-secondary: #475569;
  --color-muted: #64748B;
  --color-border: #E2E8F0;
  --color-white: #FFFFFF;

  --font-display: 'Sora', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-xl: 24px;

  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08), 0 2px 4px rgba(0, 0, 0, 0.04);
  --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.10), 0 4px 8px rgba(0, 0, 0, 0.05);
  --shadow-blue: 0 8px 32px rgba(37, 99, 235, 0.20);

  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 400ms ease;
}

/* ── Base Reset & Typography ──────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--color-slate);
  background: var(--color-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-display);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

code,
pre,
.mono {
  font-family: var(--font-mono);
}

/* ── Scroll Reveal Animations ─────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}

.reveal-delay-4 {
  transition-delay: 0.4s;
}

.reveal-delay-5 {
  transition-delay: 0.5s;
}

.reveal-left {
  opacity: 0;
  transform: translateX(-32px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(32px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}

/* ── Announcement Bar ─────────────────────────────────────── */
#announcement-bar {
  transition: max-height 0.4s ease, opacity 0.3s ease, padding 0.3s ease;
  max-height: 60px;
  overflow: hidden;
}

#announcement-bar.hidden-bar {
  max-height: 0;
  opacity: 0;
  padding-top: 0;
  padding-bottom: 0;
}

/* ── Navigation ───────────────────────────────────────────── */
#main-nav {
  transition: box-shadow 0.3s ease, background 0.3s ease;
}

#main-nav.scrolled {
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
}

.nav-link {
  position: relative;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-secondary);
  text-decoration: none;
  transition: color var(--transition-fast);
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-primary);
  border-radius: 2px;
  transition: width var(--transition-base);
}

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

.nav-link:hover::after {
  width: 100%;
}

/* Dropdown */
.nav-dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: white;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  min-width: 520px;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  z-index: 100;
}

.dropdown-menu.open {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 12px;
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: background var(--transition-fast);
}

.dropdown-item:hover {
  background: var(--color-light-bg);
}

.dropdown-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--color-light-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--color-primary);
}

.dropdown-item-title {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-slate);
  font-family: var(--font-display);
}

.dropdown-item-desc {
  font-size: 0.78rem;
  color: var(--color-muted);
  margin-top: 2px;
}

/* Mobile Nav */
#mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: white;
  z-index: 200;
  padding: 24px;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

#mobile-menu.open {
  display: block;
  transform: translateX(0);
}

/* ── Buttons ──────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--color-primary);
  color: white;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 11px 24px;
  border-radius: 10px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-fast);
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.25);
}

.btn-primary:hover {
  background: var(--color-bright);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.35);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--color-primary);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 10px 22px;
  border-radius: 10px;
  border: 1.5px solid var(--color-border);
  text-decoration: none;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.btn-secondary:hover {
  border-color: var(--color-primary);
  background: var(--color-light-bg);
  transform: translateY(-1px);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--color-primary);
  font-weight: 600;
  font-size: 0.875rem;
  text-decoration: none;
  transition: gap var(--transition-fast), color var(--transition-fast);
}

.btn-ghost:hover {
  gap: 10px;
  color: var(--color-bright);
}

.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: white;
  color: var(--color-primary);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 11px 24px;
  border-radius: 10px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all var(--transition-fast);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}

.btn-white:hover {
  background: var(--color-light-bg);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* ── Cards ────────────────────────────────────────────────── */
.product-card {
  background: white;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base);
  text-decoration: none;
  color: inherit;
  display: block;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(37, 99, 235, 0.2);
}

.category-card {
  background: white;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: 28px;
  transition: all var(--transition-base);
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  display: block;
  position: relative;
  overflow: hidden;
}

.category-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-sky));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-base);
}

.category-card:hover {
  border-color: rgba(37, 99, 235, 0.25);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.category-card:hover::before {
  transform: scaleX(1);
}

.work-card {
  background: white;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.work-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

/* ── Hero Visual ──────────────────────────────────────────── */
.hero-visual {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 480px;
}

.floating-card {
  position: absolute;
  background: white;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 16px 20px;
  animation: float 6s ease-in-out infinite;
}

.floating-card:nth-child(2) {
  animation-delay: -2s;
  animation-duration: 7s;
}

.floating-card:nth-child(3) {
  animation-delay: -4s;
  animation-duration: 5.5s;
}

.floating-card:nth-child(4) {
  animation-delay: -1s;
  animation-duration: 8s;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-12px);
  }
}

/* ── Statistics ───────────────────────────────────────────── */
.stat-item {
  position: relative;
  text-align: center;
}

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  background: linear-gradient(135deg, var(--color-primary), var(--color-sky));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.stat-label {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--color-secondary);
  margin-top: 8px;
  font-weight: 500;
}

/* ── Section Headings ─────────────────────────────────────── */
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-primary);
  background: var(--color-light-bg);
  padding: 6px 14px;
  border-radius: 100px;
  border: 1px solid rgba(37, 99, 235, 0.15);
}

.section-title {
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--color-slate);
  letter-spacing: -0.03em;
  line-height: 1.1;
}

/* ── Technology Strip ─────────────────────────────────────── */
.tech-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: white;
  border: 1px solid var(--color-border);
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-secondary);
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.tech-pill:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
  background: var(--color-light-bg);
}

/* ── Badge / Tag ──────────────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 100px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.badge-blue {
  background: var(--color-light-bg);
  color: var(--color-primary);
  border: 1px solid rgba(37, 99, 235, 0.2);
}

.badge-green {
  background: #F0FDF4;
  color: #16A34A;
  border: 1px solid #BBF7D0;
}

.badge-orange {
  background: #FFF7ED;
  color: #EA580C;
  border: 1px solid #FED7AA;
}

.badge-purple {
  background: #FAF5FF;
  color: #7C3AED;
  border: 1px solid #DDD6FE;
}

.badge-slate {
  background: #F8FAFC;
  color: var(--color-secondary);
  border: 1px solid var(--color-border);
}

/* ── Tag Pills ────────────────────────────────────────────── */
.tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 500;
  padding: 3px 9px;
  border-radius: 6px;
  background: var(--color-soft-bg);
  color: var(--color-muted);
  border: 1px solid var(--color-border);
  font-family: var(--font-mono);
}

/* ── Testimonial Card ─────────────────────────────────────── */
.testimonial-card {
  background: white;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: 32px;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

/* ── Update / Blog Card ───────────────────────────────────── */
.update-card {
  background: white;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base);
  text-decoration: none;
  color: inherit;
  display: block;
}

.update-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(37, 99, 235, 0.2);
}

/* ── Footer ───────────────────────────────────────────────── */
.footer-link {
  color: #94A3B8;
  font-size: 0.875rem;
  text-decoration: none;
  transition: color var(--transition-fast);
  display: block;
  padding: 3px 0;
}

.footer-link:hover {
  color: white;
}

/* ── Forms ────────────────────────────────────────────────── */
.form-input {
  width: 100%;
  padding: 11px 16px;
  border: 1.5px solid var(--color-border);
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--color-slate);
  background: white;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  outline: none;
}

.form-input:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-input::placeholder {
  color: var(--color-muted);
}

.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-slate);
  margin-bottom: 6px;
  font-family: var(--font-display);
}

/* ── Dividers / Decorators ────────────────────────────────── */
.blue-dot::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-primary);
  margin-right: 8px;
  vertical-align: middle;
}

.gradient-hr {
  border: none;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-border), transparent);
  margin: 0;
}

/* ── Background Patterns ──────────────────────────────────── */
.bg-grid {
  background-image:
    linear-gradient(rgba(37, 99, 235, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37, 99, 235, 0.04) 1px, transparent 1px);
  background-size: 40px 40px;
}

.bg-dots {
  background-image: radial-gradient(circle, rgba(37, 99, 235, 0.12) 1px, transparent 1px);
  background-size: 24px 24px;
}

.glow-blue {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

/* ── Horizontal Scroll / Marquee ──────────────────────────── */
.marquee-wrap {
  overflow: hidden;
  position: relative;
}

.marquee-track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: marquee 30s linear infinite;
}

.marquee-wrap:hover .marquee-track {
  animation-play-state: paused;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* ── Pulse dot (status indicator) ────────────────────────── */
.pulse-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22C55E;
  position: relative;
}

.pulse-dot::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: rgba(34, 197, 94, 0.3);
  animation: pulse-ring 2s ease infinite;
}

@keyframes pulse-ring {
  0% {
    transform: scale(1);
    opacity: 1;
  }

  100% {
    transform: scale(2.2);
    opacity: 0;
  }
}

/* ── Search Bar ───────────────────────────────────────────── */
.search-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  background: white;
  border: 1.5px solid var(--color-border);
  border-radius: 12px;
  padding: 10px 16px;
  transition: all var(--transition-fast);
}

.search-bar:focus-within {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.search-bar input {
  border: none;
  outline: none;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--color-slate);
  background: transparent;
  flex: 1;
  min-width: 0;
}

.search-bar input::placeholder {
  color: var(--color-muted);
}

/* ── Accordion / FAQ ──────────────────────────────────────── */
.accordion-item {
  border-bottom: 1px solid var(--color-border);
}

.accordion-header {
  width: 100%;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  text-align: left;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  color: var(--color-slate);
  transition: color var(--transition-fast);
}

.accordion-header:hover {
  color: var(--color-primary);
}

.accordion-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 6px;
  background: var(--color-light-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition-base), background var(--transition-base);
  color: var(--color-primary);
}

.accordion-header.active .accordion-icon {
  transform: rotate(180deg);
  background: var(--color-primary);
  color: white;
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s cubic-bezier(0.16, 1, 0.3, 1), padding 0.3s ease, opacity 0.3s ease;
  font-size: 0.9375rem;
  color: var(--color-secondary);
  line-height: 1.75;
  opacity: 0;
}

.accordion-body.open {
  max-height: 600px;
  padding-bottom: 20px;
  opacity: 1;
}

/* Accordion icon rotation */
.accordion-header.active .accordion-icon svg,
.accordion-header.active > svg {
  transform: rotate(180deg);
}

.accordion-header > svg,
.accordion-icon svg {
  transition: transform 0.3s ease;
}

/* Line clamp utilities */
.line-clamp-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.line-clamp-3 {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ── Tabs ─────────────────────────────────────────────────── */
.tab-btn {
  padding: 8px 18px;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-muted);
  background: transparent;
  border: none;
  cursor: pointer;
  transition: all var(--transition-fast);
  font-family: var(--font-display);
  white-space: nowrap;
}

.tab-btn:hover {
  color: var(--color-slate);
  background: var(--color-soft-bg);
}

.tab-btn.active {
  color: var(--color-primary);
  background: var(--color-light-bg);
}

.tab-panel {
  display: none;
}

.tab-panel.active {
  display: block;
}

/* ── Timeline ─────────────────────────────────────────────── */
.timeline-item {
  position: relative;
  padding-left: 32px;
  padding-bottom: 40px;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: 10px;
  top: 24px;
  bottom: 0;
  width: 2px;
  background: var(--color-border);
}

.timeline-item:last-child::before {
  display: none;
}

.timeline-dot {
  position: absolute;
  left: 0;
  top: 4px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: white;
  border: 2px solid var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.timeline-dot::after {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-primary);
}

/* ── Sidebar Navigation (Docs) ────────────────────────────── */
.sidebar-link {
  display: block;
  padding: 7px 12px;
  border-radius: 8px;
  font-size: 0.875rem;
  color: var(--color-secondary);
  text-decoration: none;
  transition: all var(--transition-fast);
  font-weight: 500;
}

.sidebar-link:hover {
  background: var(--color-light-bg);
  color: var(--color-primary);
}

.sidebar-link.active {
  background: var(--color-light-bg);
  color: var(--color-primary);
  font-weight: 600;
}

.sidebar-category {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-muted);
  padding: 16px 12px 6px;
  font-family: var(--font-mono);
}

/* ── Code Block ───────────────────────────────────────────── */
.code-block {
  background: var(--color-slate);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  overflow-x: auto;
  position: relative;
}

.code-block pre {
  margin: 0;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: #E2E8F0;
  line-height: 1.7;
}

.code-block .line-number {
  color: #475569;
  user-select: none;
  margin-right: 16px;
  min-width: 24px;
  display: inline-block;
  text-align: right;
}

.code-keyword {
  color: #93C5FD;
}

.code-string {
  color: #86EFAC;
}

.code-comment {
  color: #64748B;
}

.code-function {
  color: #FDE68A;
}

/* ── Auth Pages ───────────────────────────────────────────── */
.auth-card {
  background: white;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: 40px 44px;
  box-shadow: var(--shadow-lg);
  width: 100%;
  max-width: 460px;
}

/* ── Progress Bar ─────────────────────────────────────────── */
.progress-bar {
  height: 4px;
  border-radius: 2px;
  background: var(--color-border);
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-sky));
  transition: width 0.6s ease;
}

/* ── Responsive Helpers ───────────────────────────────────── */
@media (max-width: 768px) {
  .dropdown-menu {
    display: none !important;
  }

  .auth-card {
    padding: 28px 24px;
  }

  .hero-visual {
    min-height: 300px;
  }

  .floating-card {
    display: none;
  }

  .floating-card:first-child {
    display: block;
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    margin: 0 auto;
  }
}

/* ── Scroll Bar Styling ───────────────────────────────────── */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: var(--color-border);
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--color-muted);
}

/* ── Selection ────────────────────────────────────────────── */
::selection {
  background: rgba(37, 99, 235, 0.15);
  color: var(--color-primary);
}

/* ── Focus visible ────────────────────────────────────────── */
:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ── Cookie Banner ────────────────────────────────────────── */
#cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
  z-index: 1000;
  width: calc(100% - 48px);
  max-width: 600px;
}

#cookie-banner.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

/* ── Print ────────────────────────────────────────────────── */
@media print {

  #main-nav,
  #announcement-bar,
  #cookie-banner,
  #mobile-menu {
    display: none !important;
  }
}