:root {
  /* Preset A: Organic Tech */
  --c-primary: #2E4036;
  --c-accent: #CC5833;
  --c-bg: #F2F0E9;
  --c-dark: #1A1A1A;
  --c-light: #F9F8F5;
  --c-white: #FFFFFF;

  /* Typography */
  --font-heading: 'Plus Jakarta Sans', sans-serif;
  --font-heading-alt: 'Outfit', sans-serif;
  --font-drama: 'Cormorant Garamond', serif;
  --font-data: 'IBM Plex Mono', monospace;
  --font-body: 'Plus Jakarta Sans', sans-serif;

  /* Breakpoints for reference */
  --bp-sm: 640px;
  --bp-md: 768px;
  --bp-lg: 1024px;
  --bp-xl: 1280px;
  --bp-2xl: 1536px;

  /* Easing */
  --ease-entrance: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-morph: cubic-bezier(0.45, 0, 0.55, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-spring: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-body);
  background-color: var(--c-bg);
  color: var(--c-dark);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

html {
  scroll-behavior: smooth;
}

/* Global Noise Overlay */
.noise-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 9999;
}

/* Containers */
.container {
  width: 100%;
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 3rem);
}

/* Utilities */
.py-fluid {
  padding-block: clamp(4rem, 8vw, 8rem);
}

.pt-fluid {
  padding-top: clamp(4rem, 8vw, 8rem);
}

.pb-fluid {
  padding-bottom: clamp(4rem, 8vw, 8rem);
}

.pb-xxl {
  margin-bottom: clamp(4rem, 12vw, 12rem);
}

.mt-sm {
  margin-top: 1rem;
}

.mt-md {
  margin-top: 2rem;
}

.mt-lg {
  margin-top: 3rem;
}

.mt-xl {
  margin-top: 5rem;
}

.mb-xl {
  margin-bottom: 4rem;
}

.text-center {
  text-align: center;
}

.w-full {
  width: 100%;
}

/* Typography */
h1,
h2,
h3,
h4,
.font-heading {
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.section-title {
  font-size: clamp(2rem, 5vw, 4.5rem);
  margin-bottom: 2rem;
  letter-spacing: -0.03em;
}

.data-text {
  font-family: var(--font-data);
  font-size: 0.9rem;
}

.body-large {
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

.quote {
  font-family: var(--font-drama);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-style: italic;
  line-height: 1.3;
  margin-block: 2rem;
  color: var(--c-primary);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  font-family: var(--font-heading-alt);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  border-radius: 2rem;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s var(--ease-spring), box-shadow 0.3s var(--ease-spring);
}

.btn:hover {
  transform: scale(1.03) translateY(-1px);
}

.btn:active {
  transform: scale(0.98);
}

.btn-primary {
  background-color: var(--c-primary);
  color: var(--c-bg);
}

.btn-primary:hover {
  background-color: #3b5245;
}

.btn-accent {
  background-color: var(--c-accent);
  color: var(--c-bg);
}

.btn-accent .btn-bg {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: var(--c-primary);
  transition: left 0.4s var(--ease-morph);
  z-index: 1;
}

.btn-accent:hover .btn-bg {
  left: 0;
}

.btn-accent .btn-text {
  position: relative;
  z-index: 2;
}

.btn-outline {
  background-color: transparent;
  color: var(--c-bg);
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.btn-outline:hover {
  border-color: var(--c-white);
  background-color: rgba(255, 255, 255, 0.1);
}

/* Links */
a {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.3s ease, transform 0.3s var(--ease-spring);
}

a:hover {
  opacity: 0.8;
  transform: translateY(-1px);
}

/* Icons */
.material-symbols-outlined {
  vertical-align: middle;
}

.icon-large {
  font-size: 2.5rem;
  color: var(--c-accent);
  margin-bottom: 1rem;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 2rem);
  max-width: 900px;
  background: transparent;
  color: var(--c-bg);
  border-radius: 3rem;
  transition: all 0.4s var(--ease-morph);
  z-index: 1000;
  padding: 0.75rem 1.5rem;
}

.navbar.scrolled {
  background: rgba(242, 240, 233, 0.85);
  /* var(--c-bg) with opacity */
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  color: var(--c-primary);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  font-family: var(--font-heading-alt);
  font-size: 0.95rem;
  font-weight: 600;
}

.nav-cta {
  padding: 0.6rem 1.5rem;
  font-size: 0.95rem;
}

.nav-toggle-checkbox,
.nav-toggle-label {
  display: none;
}

.nav-toggle-label {
  cursor: pointer;
  color: inherit;
}

.nav-toggle-label .close-icon {
  display: none;
}

.nav-toggle-checkbox:checked~.nav-toggle-label .menu-icon {
  display: none;
}

.nav-toggle-checkbox:checked~.nav-toggle-label .close-icon {
  display: block;
}

@media (max-width: 1023px) {
  .navbar {
    top: 1rem;
  }

  .nav-toggle-label {
    display: block;
    z-index: 1001;
  }

  .nav-menu {
    position: fixed;
    top: 4.5rem;
    left: 1rem;
    right: 1rem;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    flex-direction: column;
    padding: 3rem 2rem;
    border-radius: 2rem;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-20px);
    transition: all 0.4s var(--ease-morph);
    color: var(--c-bg);
    border: 1px solid rgba(255, 255, 255, 0.1);
  }

  .navbar.scrolled .nav-menu {
    background: rgba(242, 240, 233, 0.95);
    color: var(--c-primary);
    border: 1px solid rgba(0, 0, 0, 0.05);
  }

  .nav-toggle-checkbox:checked~.nav-menu {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-link {
    font-size: 1.2rem;
  }

  .nav-cta {
    width: 100%;
    margin-top: 1rem;
  }
}

/* Animations Core */
@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  color: var(--c-bg);
  padding-top: clamp(8rem, 15vh, 12rem);
  padding-bottom: clamp(3rem, 10vh, 6rem);
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('https://images.unsplash.com/photo-1532094349884-543bc11b234d?w=1080&q=80');
  background-size: cover;
  background-position: center;
  z-index: 1;
}

.hero-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(26, 26, 26, 0.95) 0%, rgba(46, 64, 54, 0.6) 50%, rgba(0, 0, 0, 0.2) 100%);
  z-index: 2;
}

.hero-container {
  position: relative;
  z-index: 3;
  margin-top: auto;
}

.hero-content {
  max-width: 800px;
}

.hero-title {
  margin-bottom: 1.5rem;
}

.hero-sans {
  font-size: clamp(2rem, 5vw, 4rem);
  letter-spacing: -0.02em;
  display: block;
}

.hero-serif {
  font-family: var(--font-drama);
  font-size: clamp(3.5rem, 9vw, 8rem);
  font-style: italic;
  font-weight: 600;
  display: block;
  line-height: 0.9;
  color: var(--c-bg);
}

.hero-subtitle {
  font-family: var(--font-heading-alt);
  font-size: clamp(1rem, 2.5vw, 1.5rem);
  margin-bottom: 2rem;
  opacity: 0.9;
}

.hero-details {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-family: var(--font-data);
  font-size: 0.95rem;
  margin-bottom: 2rem;
}

.hero-details p {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.organizer-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  font-size: 0.9rem;
  opacity: 0.8;
  margin-bottom: 3rem;
  border-left: 2px solid var(--c-accent);
  padding-left: 1rem;
  flex-wrap: wrap;
}

@media (min-width: 768px) {
  .organizer-info {
    flex-direction: row;
    gap: 4rem;
  }
}

.org-block {
  margin-bottom: 1rem;
}

.org-logos {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 0.5rem;
  line-height: 1.3;
}

.org-logo {
  width: 50px;
  height: auto;
  object-fit: contain;
}

/* Updates & News in Hero */
.updates-news {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem 2rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 1.5rem;
  margin-bottom: 3rem;
  width: 100%;
  max-width: 600px;
}

.update-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}

.update-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
}

.update-item {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 0.25rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.update-item:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.update-date {
  font-family: var(--font-data);
  font-size: 0.8rem;
  color: var(--c-accent);
  font-weight: 600;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--c-accent);
  box-shadow: 0 0 0 rgba(204, 88, 51, 0.4);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(204, 88, 51, 0.4);
  }

  70% {
    box-shadow: 0 0 0 10px rgba(204, 88, 51, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(204, 88, 51, 0);
  }
}

.update-label {
  font-family: var(--font-data);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.update-text {
  font-size: 0.95rem;
  opacity: 0.95;
  line-height: 1.4;
}

.update-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--c-text);
  line-height: 1.3;
}

@media (max-width: 640px) {
  .hero-btn {
    width: 100%;
  }
}

/* Hero Stagger Animation setup */
.hero-content .animate-item,
.hero-content .hero-sans,
.hero-content .hero-serif {
  opacity: 0;
  will-change: transform, opacity;
}

.hero.animate .animate-item {
  animation: fadeUp 0.8s var(--ease-entrance) forwards;
}

.hero.animate .hero-sans {
  animation: fadeUp 0.8s var(--ease-entrance) forwards;
  animation-delay: 0.1s;
}

.hero.animate .hero-serif {
  animation: fadeUp 0.8s var(--ease-entrance) forwards;
  animation-delay: 0.2s;
}

.hero.animate .hero-subtitle {
  animation: fadeUp 0.8s var(--ease-entrance) forwards;
  animation-delay: 0.3s;
}

.hero.animate .hero-details {
  animation: fadeUp 0.8s var(--ease-entrance) forwards;
  animation-delay: 0.4s;
}

.hero.animate .organizer-info {
  animation: fadeUp 0.8s var(--ease-entrance) forwards;
  animation-delay: 0.5s;
}

.hero.animate .hero-btn {
  animation: fadeUp 0.8s var(--ease-entrance) forwards;
  animation-delay: 0.6s;
}

.hero.subpage-hero {
  min-height: 40vh;
  padding-bottom: 2rem;
}

.hero.subpage-hero .hero-serif {
  font-size: clamp(3rem, 7vw, 5rem);
}

.hero.subpage-hero .hero-bg {
  background-color: var(--c-dark);
}

/* Scroll Animation Base */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease-entrance), transform 0.8s var(--ease-entrance);
  will-change: transform, opacity;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* About Section */
.about-grid {
  display: grid;
  gap: 4rem;
}

@media (min-width: 1024px) {
  .about-grid {
    grid-template-columns: 3fr 1fr;
    gap: 6rem;
  }
}

.committee-list {
  list-style: none;
  margin-top: 2rem;
}

.committee-list li {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-block: 1.5rem;
  border-bottom: 1px solid rgba(26, 26, 26, 0.1);
  font-family: var(--font-heading-alt);
  font-size: 1.1rem;
  font-weight: 600;
}

.step-num {
  font-family: var(--font-data);
  font-size: 0.9rem;
  color: var(--c-accent);
}

/* Features Grid (Interactive Functional Artifacts) */
.features-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .features-grid {
    grid-template-columns: 1fr 1fr;
  }

  .span-full {
    grid-column: 1 / -1;
  }
}

@media (min-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .span-full {
    grid-column: span 1;
  }
}

.feature-card {
  background: var(--c-light);
  border-radius: 2.5rem;
  padding: 2.5rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(0, 0, 0, 0.04);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.card-title {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.card-desc {
  font-size: 1rem;
  opacity: 0.8;
  margin-bottom: 2rem;
}

.live-feed-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-data);
  font-size: 0.75rem;
  background: rgba(204, 88, 51, 0.1);
  color: var(--c-accent);
  padding: 0.3rem 0.8rem;
  border-radius: 1rem;
  margin-bottom: 1rem;
  width: fit-content;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Shuffler */
.shuffler-container {
  flex-grow: 1;
  position: relative;
  min-height: 200px;
  perspective: 1000px;
}

.shuffle-item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1.5rem;
  border-radius: 1.5rem;
  font-family: var(--font-heading-alt);
  font-weight: 600;
  font-size: 1.2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.6s var(--ease-bounce);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.card-accent {
  background: var(--c-accent);
  color: var(--c-bg);
}

.card-primary {
  background: var(--c-primary);
  color: var(--c-bg);
}

.card-light {
  background: var(--c-white);
  color: var(--c-dark);
}

/* State classes added by JS */

/* Typewriter */
.typewriter-container {
  flex-grow: 1;
  background: var(--c-dark);
  color: var(--c-bg);
  padding: 1.5rem;
  border-radius: 1.5rem;
  font-family: var(--font-data);
  font-size: 0.9rem;
  line-height: 1.6;
}

.cursor {
  color: var(--c-accent);
  animation: blink 1s step-end infinite;
}

@keyframes blink {
  50% {
    opacity: 0;
  }
}

/* Scheduler */
.scheduler-container {
  background: var(--c-white);
  padding: 1.5rem;
  border-radius: 1.5rem;
  position: relative;
  margin-top: auto;
}

.grid-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  text-align: center;
  font-family: var(--font-data);
  font-size: 0.8rem;
  margin-bottom: 0.5rem;
  opacity: 0.5;
}

.grid-cells {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.25rem;
  aspect-ratio: 7/5;
}

.grid-cell {
  background: var(--c-bg);
  border-radius: 0.25rem;
  transition: all 0.3s;
}

.grid-cell.active {
  background: var(--c-accent);
}

.scheduler-cursor {
  position: absolute;
  color: var(--c-dark);
  font-size: 1.5rem;
  transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
  pointer-events: none;
  z-index: 10;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

/* Philosophy Section (The Manifesto / Travel) */
.philosophy-section {
  position: relative;
  background: var(--c-dark);
  color: var(--c-bg);
  overflow: hidden;
}

.philosophy-bg {
  position: absolute;
  top: -10%;
  left: 0;
  width: 100%;
  height: 120%;
  background-image: url('https://images.unsplash.com/photo-1473448912268-2022ce9509d8?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=80');
  background-size: cover;
  background-position: center;
  opacity: 0.15;
  will-change: transform;
}

.philosophy-container {
  position: relative;
  z-index: 2;
}

.manifesto-small {
  font-family: var(--font-data);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 2rem;
  opacity: 0.6;
}

.manifesto-large {
  font-size: clamp(3rem, 7vw, 6rem);
  font-family: var(--font-drama);
  font-style: italic;
  font-weight: 600;
  line-height: 1.1;
}

.manifesto-large .word {
  display: inline-block;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s, transform 0.8s;
}

.manifesto-large.visible .word {
  opacity: 1;
  transform: translateY(0);
}

.accent-word {
  color: var(--c-accent);
}

/* Travel section light-bg overrides */
.travel-section {
  background: var(--c-bg);
  color: var(--c-dark);
}

.travel-section .manifesto-small {
  color: var(--c-dark);
  opacity: 0.5;
}

.travel-section .travel-card {
  background: rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.travel-section .travel-card p {
  color: var(--c-dark);
}

.travel-section .btn-outline {
  color: var(--c-dark);
  border-color: rgba(0, 0, 0, 0.35);
}

.travel-section .btn-outline:hover {
  border-color: var(--c-dark);
  background-color: rgba(0, 0, 0, 0.07);
}

.travel-section .pricing-list li {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.travel-section .contact-box {
  background: rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.08);
}

/* Travel Cards */
.travel-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .travel-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.travel-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 3rem;
  border-radius: 2.5rem;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.travel-card p {
  opacity: 0.8;
}

.pricing-list {
  list-style: none;
  margin-bottom: 1.5rem;
}

.pricing-list li {
  display: flex;
  justify-content: space-between;
  padding-block: 0.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-box {
  background: rgba(0, 0, 0, 0.2);
  padding: 1.5rem;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Table Section (Sponsorship) */
.table-wrapper {
  overflow-x: auto;
  background: var(--c-white);
  border-radius: 2.5rem;
  padding: 2rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.03);
}

.data-table {
  width: 100%;
  min-width: 900px;
  border-collapse: collapse;
  text-align: left;
}

.data-table th,
.data-table td {
  padding: 1.5rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.data-table th {
  font-family: var(--font-heading-alt);
  font-size: 1.1rem;
  color: var(--c-primary);
}

.data-table tbody tr:last-child td {
  border-bottom: none;
}

.data-table td:first-child {
  font-weight: 600;
  color: var(--c-dark);
}

.table-wrapper::-webkit-scrollbar {
  height: 8px;
}

.table-wrapper::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.1);
  border-radius: 4px;
}

/* Registration / Pricing */
.registration-section {
  background-color: var(--c-light);
}

.pricing-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 768px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-grid .pricing-card.featured {
    grid-column: span 2;
    max-width: 50%;
    margin: 0 auto;
  }
}

@media (min-width: 1024px) {
  .pricing-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .pricing-grid .pricing-card.featured {
    grid-column: auto;
    max-width: none;
  }
}

.pricing-card {
  background: var(--c-white);
  padding: 3rem;
  border-radius: 2.5rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(0, 0, 0, 0.04);
  text-align: center;
}

.pricing-card.featured {
  background: var(--c-primary);
  color: var(--c-bg);
  transform: scale(1.05);
  border: none;
  box-shadow: 0 30px 60px rgba(46, 64, 54, 0.15);
}

@media (max-width: 1023px) {
  .pricing-card.featured {
    transform: scale(1.02);
  }
}

.pricing-card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.pricing-card .ends {
  opacity: 0.7;
  margin-bottom: 2rem;
}

.pricing-card .price {
  font-size: 3rem;
  font-family: var(--font-heading);
  font-weight: 700;
  margin-bottom: 0.5rem;
  line-height: 1;
}

.pricing-card .currency {
  font-size: 1rem;
  opacity: 0.8;
}

.pricing-card .tier {
  opacity: 0.8;
  margin-bottom: 1.5rem;
}

/* Footer */
.footer {
  background: var(--c-dark);
  color: var(--c-bg);
  border-radius: 0;
  padding: clamp(4rem, 8vw, 8rem) clamp(1rem, 4vw, 3rem) 2rem;
}

.footer-grid {
  display: grid;
  gap: 4rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr;
  }
}

@media (max-width: 767px) {
  .footer {
    border-radius: 0;
  }
}

.footer-brand h2 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.footer-brand p {
  opacity: 0.7;
  max-width: 300px;
}

.system-status {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.status-dot {
  color: #4CAF50;
  font-size: 1rem;
  animation: pulse 2s infinite;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-nav h4 {
  color: var(--c-accent);
  margin-bottom: 1rem;
}

.footer-nav a {
  opacity: 0.7;
}

.footer-nav a:hover {
  opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .animate-on-scroll {
    opacity: 1;
    transform: none;
  }

  .philosophy-bg {
    transform: none !important;
  }
}
/* Form Select Dropdown Arrow */
select {
    background: transparent url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E") no-repeat right 0.75rem center / 16px 16px !important;
    padding-right: 2.5rem !important;
    appearance: none !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
}
