/* Enhanced design tokens with expanded color palette */
:root {
  --brand: #1f8a4c; /* primary green */
  --brand-strong: #166a3c; /* darker green accent */
  --brand-light: #2ba85a; /* lighter green for gradients */
  --brand-glow: rgba(31, 138, 76, 0.15); /* brand glow effect */
  --mint: #ecf7f1; /* soft mint background */
  --mint-dark: #d4f0e0; /* darker mint for contrast */
  --surface: #ffffff; /* white */
  --surface-glass: rgba(255, 255, 255, 0.8); /* glass effect */
  --ink: #0f172a; /* near-black text */
  --ink-light: #475569; /* lighter text */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.15);
  --shadow-lg: 0 8px 25px rgba(0, 0, 0, 0.2);
  --shadow-brand: 0 4px 20px var(--brand-glow);
  --radius: 16px;
  --radius-sm: 8px;
  --radius-lg: 24px;
  --gradient-brand: linear-gradient(135deg, var(--brand-light) 0%, var(--brand) 100%);
  --gradient-hero: linear-gradient(135deg, var(--brand) 0%, var(--brand-strong) 100%);
}

* {
  box-sizing: border-box;
}
html,
body {
  margin: 0;
}
body {
  font-family:
    system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, "Helvetica Neue", Arial, "Noto Sans", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  color: var(--ink);
  background: var(--surface);
  line-height: 1.6;
}

/* Layout helpers */
.container {
  width: 100%;
  max-width: 1100px;
  margin-inline: auto;
  padding: 0 1rem;
}
.text-balance {
  text-wrap: balance;
}

/* Enhanced Header with glassmorphism */
.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(20px);
  background: var(--surface-glass);
  border-bottom: 1px solid color-mix(in oklab, var(--ink) 8%, transparent);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  padding: .5rem 0;
}

.site-header:hover {
  background: color-mix(in oklab, var(--surface) 90%, var(--mint) 10%);
}
.header-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--ink);
  text-decoration: none;
  transition: all 0.3s ease;
}

.brand-icon {
  width: 24px;
  height: 24px;
  color: var(--brand);
  transition: all 0.3s ease;
  flex-shrink: 0;
  margin-top: 2px;
}

.brand-icon:hover {
  transform: scale(1.1);
  color: var(--brand-light);
}

.brand-logo {
  width: 60px;
  height: 60px;
  object-fit: cover;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.brand-logo:hover {
  transform: scale(1.05);
}

/* Animated dots */
.dot-1, .dot-2, .dot-3 {
  animation: dotPulse 1.4s infinite ease-in-out;
}

.dot-1 {
  animation-delay: 0s;
}

.dot-2 {
  animation-delay: 0.2s;
}

.dot-3 {
  animation-delay: 0.4s;
}

@keyframes dotPulse {
  0%, 80%, 100% {
    transform: scale(0);
    opacity: 0.5;
  }
  40% {
    transform: scale(1);
    opacity: 1;
  }
}

.brand-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
}

.brand-text {
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--brand);
  text-transform: lowercase;
  letter-spacing: -0.02em;
  line-height: 1;
  text-shadow: 0 1px 2px rgba(31, 138, 76, 0.2);
  transition: all 0.3s ease;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-feature-settings: "kern" 1, "liga" 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.brand-tagline {
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--brand-light);
  text-transform: lowercase;
  letter-spacing: 0.02em;
  line-height: 1.2;
  opacity: 0.9;
  transition: all 0.3s ease;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-feature-settings: "kern" 1, "liga" 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.brand:hover .brand-text {
  color: var(--brand-strong);
  transform: translateY(-1px);
}

.brand:hover .brand-tagline {
  color: var(--brand);
  opacity: 1;
}

.brand:hover .brand-icon {
  color: var(--brand-strong);
  transform: scale(1.1);
}
.nav {
  display: flex;
  align-items: center;
  gap: .75rem;
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 24px;
  height: 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  margin-right: 0.5rem;
  z-index: 10;
}

.mobile-menu-toggle span {
  width: 100%;
  height: 2px;
  background: var(--ink);
  border-radius: 1px;
  transition: all 0.3s ease;
  transform-origin: center;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

.mobile-menu-close {
  display: none;
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: var(--brand);
  color: var(--surface);
  border: none;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  cursor: pointer;
  z-index: 1001;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-lg);
  border: 2px solid var(--surface);
}

.mobile-menu-close:hover {
  background: var(--brand-strong);
  transform: scale(1.1);
}

.mobile-menu-close svg {
  width: 20px;
  height: 20px;
}
.nav-link {
  color: var(--ink);
  text-decoration: none;
  padding: .5rem .6rem;
  border-radius: var(--radius-sm);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.nav-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--gradient-brand);
  transition: left 0.3s ease;
  z-index: -1;
}

.nav-link:hover {
  color: var(--surface);
  transform: translateY(-2px);
}

.nav-link:hover::before {
  left: 0;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .5rem 1.5rem;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid transparent;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s ease;
}

.btn:hover::before {
  left: 100%;
}
.btn-solid {
  background: var(--gradient-brand);
  color: var(--surface);
  box-shadow: var(--shadow-brand);
}

.btn-solid:hover {
  background: var(--gradient-hero);
  color: var(--surface);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px var(--brand-glow);
}
.btn-outline {
  border-color: var(--brand);
  color: var(--brand);
  background: transparent;
}

.btn-outline:hover {
  background: var(--gradient-brand);
  color: var(--surface);
  transform: translateY(-2px);
  box-shadow: var(--shadow-brand);
}
.btn-ghost {
  color: var(--brand);
  background: var(--surface);
  border: 1px solid var(--brand);
}
.btn-ghost:hover {
  background: var(--gradient-brand);
  color: var(--surface);
  transform: translateY(-2px);
  box-shadow: var(--shadow-brand);
}
.btn-invert {
  background: var(--surface);
  color: var(--brand);
  border: 1px solid var(--surface);
}
.btn-invert:hover {
  background: color-mix(in oklab, var(--surface) 92%, var(--mint) 8%);
}

/* Enhanced Hero with better gradients and spacing */
.hero {
  background: var(--gradient-hero);
  padding: 4rem 0 3rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 40%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
  transform: rotate(15deg);
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 30%;
  height: 150%;
  background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
  transform: rotate(-10deg);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
.title {
  font-size: clamp(2.5rem, 4vw + 1rem, 3.5rem);
  margin: 0 0 .75rem;
  color: var(--surface);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.subtitle {
  margin: 0 0 1.5rem;
  color: color-mix(in oklab, var(--surface) 95%, #000 5%);
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.5;
}
.cta-row {
  display: flex;
  gap: .75rem;
  flex-wrap: wrap;
}
.hero-art {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 12px solid color-mix(in oklab, var(--surface) 80%, transparent);
  box-shadow: var(--shadow-lg);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-art:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.hero-art a {
  display: block;
  text-decoration: none;
  transition: all 0.3s ease;
}

.hero-art a:hover {
  transform: scale(1.02);
}

.hero-art img {
  display: block;
  width: 100%;
  height: auto;
  transition: all 0.3s ease;
}

/* Hero Illustration Styles */
.hero-illustration {
  position: relative;
  width: 100%;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--mint) 0%, var(--brand-light) 100%);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.phone-mockup {
  position: relative;
  width: 280px;
  height: 500px;
  background: #1a1a1a;
  border-radius: 30px;
  padding: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  z-index: 2;
}

.phone-screen {
  width: 100%;
  height: 100%;
  background: #f8f9fa;
  border-radius: 20px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  overflow: hidden;
  position: relative;
}

.chat-bubble {
  max-width: 80%;
  padding: 12px 16px;
  border-radius: 18px;
  font-size: 14px;
  line-height: 1.4;
  animation: slideInUp 0.5s ease-out;
}

.chat-bubble.user {
  background: var(--brand);
  color: white;
  align-self: flex-end;
  margin-left: auto;
  animation-delay: 0.2s;
}

.chat-bubble.bot {
  background: #e9ecef;
  color: #333;
  align-self: flex-start;
  animation-delay: 0.4s;
}

.bubble-text {
  display: block;
}

.typing-indicator {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 12px 16px;
  background: #e9ecef;
  border-radius: 18px;
  align-self: flex-start;
  max-width: 60px;
  animation: slideInUp 0.5s ease-out 0.6s both;
}

.typing-dot {
  width: 8px;
  height: 8px;
  background: #666;
  border-radius: 50%;
  animation: typingPulse 1.4s infinite ease-in-out;
}

.typing-dot:nth-child(2) {
  animation-delay: 0.2s;
}

.typing-dot:nth-child(3) {
  animation-delay: 0.4s;
}

.floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.floating-icon {
  position: absolute;
  font-size: 2rem;
  animation: float 3s ease-in-out infinite;
}

.floating-icon.money {
  top: 20%;
  right: 10%;
  animation-delay: 0s;
}

.floating-icon.chart {
  top: 60%;
  right: 5%;
  animation-delay: 0.5s;
}

.floating-icon.piggy {
  bottom: 20%;
  left: 10%;
  animation-delay: 1s;
}

.floating-icon.card {
  top: 40%;
  left: 5%;
  animation-delay: 1.5s;
}

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

@keyframes typingPulse {
  0%, 60%, 100% {
    transform: scale(1);
    opacity: 0.5;
  }
  30% {
    transform: scale(1.2);
    opacity: 1;
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(5deg);
  }
}

/* Enhanced How it works section */
.how {
  padding: 4rem 0;
  background: var(--surface);
  position: relative;
}

.how::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--mint-dark), transparent);
}
.section-title {
  font-size: clamp(1.75rem, 2vw + 1rem, 2.5rem);
  margin: 0 0 2rem;
  font-weight: 700;
  color: var(--ink);
  text-align: center;
}
.how-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.phone-card {
  text-align: center;
  padding: 1.5rem;
  background: var(--surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--mint-dark);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.phone-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-brand);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.phone-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: var(--brand);
}

.phone-card:hover::before {
  transform: scaleX(1);
}
.card-title {
  margin: 1rem 0 0;
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--ink);
}
.phone {
  width: min(320px, 90%);
  margin: 0 auto;
  background: transparent;
  border: 3px solid var(--brand);
  border-radius: 28px;
  padding: 18px 12px;
  position: relative;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.phone:hover {
  border-color: var(--brand-light);
  box-shadow: var(--shadow-brand);
}
.phone::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 18px;
  background: var(--brand);
  border-radius: 12px;
}
.screen {
  background: var(--mint);
  border-radius: 20px;
  padding: 1rem;
  min-height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1f3d2d;
}

/* Why */
.why {
  padding: 3rem 0;
  background: color-mix(in oklab, var(--mint) 85%, var(--surface) 15%);
}
.checks {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  display: grid;
  gap: .75rem;
}
.check {
  width: 20px;
  height: 20px;
  color: var(--brand);
  margin-right: .5rem;
  flex: 0 0 20px;
}
.checks li {
  display: flex;
  align-items: center;
}

/* Enhanced Features section */
.features {
  padding: 4rem 0;
  background: var(--surface);
  position: relative;
}

.features::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--mint-dark), transparent);
}
.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}
.lead {
  margin: .75rem 0 1.5rem;
  color: var(--ink-light);
  font-size: 1.1rem;
  line-height: 1.6;
}
.pill-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .5rem;
}
.pill {
  display: flex;
  align-items: center;
  gap: .5rem;
  background: var(--mint);
  border: 1px solid color-mix(in oklab, var(--brand) 20%, #fff 80%);
  padding: .75rem 1rem;
  border-radius: 999px;
  color: #184a33;
  transition: all 0.3s ease;
  font-weight: 500;
}

.pill:hover {
  background: var(--gradient-brand);
  color: var(--surface);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}
.pill-icon {
  font-size: 1rem;
}
.feature-art {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid color-mix(in oklab, var(--ink) 10%, transparent);
  box-shadow: var(--shadow-md);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-art:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.feature-art img {
  display: block;
  width: 100%;
  height: auto;
}

/* Why card */
.why-card {
  margin-top: 2rem;
}
.why-card-inner {
  background: var(--surface);
  border: 1px solid color-mix(in oklab, var(--ink) 10%, transparent);
  border-radius: calc(var(--radius) + 4px);
  padding: 1.25rem;
  display: grid;
  gap: .75rem;
  align-items: start;
}
.bullets {
  margin: 0;
  padding-left: 1rem;
}
.badge {
  justify-self: start;
  margin-top: .25rem;
  background: var(--mint);
  color: #184a33;
  border: 1px solid color-mix(in oklab, var(--brand) 20%, #fff 80%);
  padding: .35rem .6rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: .9rem;
}

/* Partnership Section */
.partnership {
  padding: 4rem 0;
  background: color-mix(in oklab, var(--mint) 90%, var(--surface) 10%);
  position: relative;
}

.partnership::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--mint-dark), transparent);
}

.partnership-header {
  text-align: center;
  margin-bottom: 3rem;
}

.partnership-subtitle {
  font-size: 1.1rem;
  color: var(--ink-light);
  line-height: 1.6;
  margin: 1rem 0 0;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.partnership-options {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.option-card {
  background: var(--surface);
  border: 1px solid var(--mint-dark);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.option-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-brand);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.option-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--brand);
}

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

.option-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  display: block;
}

.option-card h3 {
  margin: 0 0 0.75rem;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--ink);
}

.option-card p {
  margin: 0;
  color: var(--ink-light);
  line-height: 1.5;
}

.partnership-vision {
  background: var(--surface);
  border: 1px solid var(--mint-dark);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
  overflow: hidden;
}

.partnership-vision::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-brand);
}

.vision-quote {
  font-size: 1.25rem;
  font-style: italic;
  color: var(--ink);
  margin: 0 0 1.5rem;
  line-height: 1.6;
  position: relative;
}

.vision-quote::before {
  content: '"';
  font-size: 3rem;
  color: var(--brand);
  position: absolute;
  top: -0.5rem;
  left: -1rem;
  opacity: 0.3;
}

.vision-quote::after {
  content: '"';
  font-size: 3rem;
  color: var(--brand);
  position: absolute;
  bottom: -1.5rem;
  right: -1rem;
  opacity: 0.3;
}

.vision-cta {
  font-size: 1.1rem;
  color: var(--ink);
  margin: 0 0 2rem;
}

.contact-options {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.current-status {
  background: var(--surface);
  border: 1px solid var(--mint-dark);
  border-radius: var(--radius-lg);
  padding: 2rem;
  margin-bottom: 2rem;
}

.current-status h3 {
  margin: 0 0 1.5rem;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--ink);
  text-align: center;
}

.status-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.status-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  background: var(--mint);
  border-radius: var(--radius-sm);
  transition: all 0.3s ease;
}

.status-item:hover {
  background: color-mix(in oklab, var(--mint) 80%, var(--brand) 20%);
  transform: translateX(4px);
}

.status-icon {
  font-size: 1.25rem;
  flex-shrink: 0;
}

.status-item span:last-child {
  color: var(--ink);
  font-weight: 500;
}

.revolution-cta {
  text-align: center;
  background: var(--gradient-brand);
  color: var(--surface);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}

.revolution-cta::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 40%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
  transform: rotate(15deg);
}

.revolution-cta h3 {
  margin: 0 0 1rem;
  font-size: 1.75rem;
  font-weight: 700;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 1;
}

.revolution-cta p {
  margin: 0;
  font-size: 1.1rem;
  opacity: 0.95;
  position: relative;
  z-index: 1;
}

/* Partnership Form Modal */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  animation: fadeIn 0.3s ease;
}

.modal.show {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.modal-content {
  background: var(--surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  animation: slideUp 0.3s ease;
  position: relative;
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
  border-bottom: 1px solid var(--mint-dark);
  background: var(--mint);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.modal-header h2 {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--ink);
}

.modal-close {
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--ink-light);
  cursor: pointer;
  padding: 0;
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.modal-close:hover {
  background: var(--brand);
  color: var(--surface);
  transform: scale(1.1);
}

.partnership-form {
  padding: 2rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--ink);
  font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--mint-dark);
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-family: inherit;
  transition: all 0.3s ease;
  background: var(--surface);
  color: var(--ink);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px var(--brand-glow);
  transform: translateY(-1px);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-group select {
  cursor: pointer;
}

.form-actions {
  display: flex;
  gap: 1rem;
  justify-content: flex-end;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--mint-dark);
}

.form-actions .btn {
  min-width: 120px;
}

/* Form validation styles */
.form-group input:invalid,
.form-group select:invalid,
.form-group textarea:invalid {
  border-color: #ef4444;
}

.form-group input:valid,
.form-group select:valid,
.form-group textarea:valid {
  border-color: var(--brand);
}

/* Loading state */
.btn.loading {
  position: relative;
  color: transparent;
}

.btn.loading::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  border: 2px solid transparent;
  border-top: 2px solid currentColor;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

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

@keyframes spin {
  0% { transform: translate(-50%, -50%) rotate(0deg); }
  100% { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes slideInRight {
  from { 
    opacity: 0;
    transform: translateX(100%);
  }
  to { 
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideOutRight {
  from { 
    opacity: 1;
    transform: translateX(0);
  }
  to { 
    opacity: 0;
    transform: translateX(100%);
  }
}

@keyframes fadeInScale {
  from { 
    opacity: 0;
    transform: scale(0.8);
  }
  to { 
    opacity: 1;
    transform: scale(1);
  }
}

/* Modal responsive design */
@media (max-width: 768px) {
  .modal.show {
    padding: 0.5rem;
  }
  
  .modal-content {
    max-height: 95vh;
  }
  
  .modal-header {
    padding: 1rem 1.5rem;
  }
  
  .modal-header h2 {
    font-size: 1.25rem;
  }
  
  .partnership-form {
    padding: 1.5rem;
  }
  
  .form-actions {
    flex-direction: column;
  }
  
  .form-actions .btn {
    width: 100%;
  }
}

/* Enhanced CTA section */
.cta {
  background: var(--gradient-hero);
  color: var(--surface);
  padding: 3.5rem 0;
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 40%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
  transform: rotate(-15deg);
}

.cta::after {
  content: '';
  position: absolute;
  bottom: -30%;
  right: -10%;
  width: 30%;
  height: 150%;
  background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
  transform: rotate(10deg);
}
.cta-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
  position: relative;
  z-index: 1;
}

.cta-title {
  margin: 0;
  font-size: clamp(1.5rem, 2vw + 1rem, 2rem);
  font-weight: 700;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Footer */
.site-footer {
  background: var(--mint);
  border-top: 1px solid color-mix(in oklab, var(--ink) 10%, transparent);
}
.footer-wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
  padding: 1rem 0;
}
.footer-link {
  color: var(--brand);
  text-decoration: none;
}
.footer-link:hover {
  text-decoration: underline;
}

/* Enhanced Responsive Design */

/* Tablet and small desktop improvements */
@media (max-width: 768px) {
  .header-wrap {
    padding: 0.75rem 0;
  }
  
  .nav {
    gap: 0.5rem;
  }
  
  .nav-link {
    padding: 0.5rem 0.6rem;
    font-size: 0.95rem;
  }
  
  .btn {
    padding: 0.5rem 1.25rem;
    font-size: 0.95rem;
  }
  
  .footer-wrap {
    flex-direction: column;
    text-align: center;
    gap: 0.75rem;
    padding: 1.5rem 0;
  }
  
  .footer-wrap p {
    margin: 0;
  }
}

/* Mobile navigation improvements */
@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: flex;
  }
  
  .nav {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background: var(--surface);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    transition: left 0.3s ease;
    z-index: 1000;
    box-shadow: var(--shadow-lg);
  }
  
  .nav.active {
    left: 0;
  }
  
  .nav.active .mobile-menu-close {
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeInScale 0.3s ease 0.2s both;
  }
  
  .nav-link {
    font-size: 1.2rem;
    padding: 1rem 2rem;
    width: 80%;
    text-align: center;
    border-radius: var(--radius);
    background: var(--mint);
    transition: all 0.3s ease;
  }
  
  .nav-link:hover {
    background: var(--gradient-brand);
    color: var(--surface);
    transform: translateY(-2px);
  }
  
  .nav .btn {
    font-size: 1.2rem;
    padding: 1rem 2rem;
    width: 80%;
    text-align: center;
  }
  
  .header-wrap {
    justify-content: space-between;
    padding-right: 1rem;
  }
  
  .mobile-menu-toggle {
    margin-right: 0.75rem;
  }
}

@media (min-width: 720px) {
  .hero-grid {
    grid-template-columns: 1.1fr .9fr;
    gap: 3rem;
  }
  .how-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
  }
  .features-grid {
    grid-template-columns: 1.1fr .9fr;
    gap: 3rem;
  }
  .pill-grid {
    grid-template-columns: 1fr;
    gap: .75rem;
  }
  
  .pill {
    padding: 1rem;
    font-size: 0.95rem;
  }
  
  .pill-icon {
    font-size: 1.2rem;
  }
  .cta-box {
    gap: 1.5rem;
  }
  
  /* Partnership responsive styles */
  .partnership-options {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
  .status-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
  .contact-options {
    gap: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 2rem;
  }
  .hero {
    padding: 5rem 0 4rem;
  }
  .how, .features {
    padding: 5rem 0;
  }
  .title {
    font-size: clamp(3rem, 4vw + 1rem, 4rem);
  }
  .brand-icon {
    width: 28px;
    height: 28px;
    margin-top: 3px;
  }
  .brand {
    gap: 0.6rem;
  }
  .brand-text {
    font-size: 2rem;
    font-weight: 500;
  }
}

@media (max-width: 480px) {
  .brand-icon {
    width: 22px;
    height: 22px;
    margin-top: 1px;
  }
  .brand {
    gap: 0.4rem;
  }
  .brand-text {
    font-size: 1.5rem;
    font-weight: 500;
  }
  
  /* Mobile header improvements */
  .header-wrap {
    padding: 0.5rem 1rem 0.5rem 0;
    flex-wrap: nowrap;
    gap: 0.5rem;
  }
  
  /* Mobile menu styles are handled in the 768px media query above */
  
  /* Mobile pill improvements */
  .pill-grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
  
  .pill {
    padding: 0.8rem 1rem;
    font-size: 0.9rem;
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }
  
  .pill-icon {
    font-size: 1.5rem;
  }
  
  /* Mobile footer improvements */
  .footer-wrap {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
    padding: 1.5rem 0;
  }
  
  .footer-wrap p {
    margin: 0;
    font-size: 0.9rem;
  }
  
  .footer-link {
    font-size: 0.9rem;
  }
}

/* clean file ending: removed appended non-CSS instruction text so stylesheet parses correctly */
/* End of stylesheet */
