:root {
  --midnight: #0A0E27;
  --slate: #1A1D3A;
  --steel: #475569;
  --silver: #94A3B8;
  --cloud: #E2E8F0;
  --snow: #F8FAFC;
  --white: #FFFFFF;
  --accent: #06B6D4;
  --accent-strong: #0C7486;
  --money: #10A348;
  --success: #10B981;
  --warning: #F59E0B;
  --link: #0076CE;
  --link-hover: #085C9A;

  /* Animation variables */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);
  --dur: 0.3s;
  --dur-slow: 0.6s;
}

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

html { 
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  font-family: "DM Sans", -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: var(--white);
  color: var(--midnight);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  color: var(--midnight);
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--midnight);
  margin-bottom: 1rem;
}

h3 {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  color: var(--slate);
}

p {
  color: var(--steel);
  font-weight: 400;
}

p a {
  color:var(--link);
  font-weight: 700;
  text-shadow: 1px 1px 2px rgba(0,0,0,.1);
  text-decoration:none;
} 
p a:hover {
  color:var(--link-hover);
  text-decoration:underline;
  text-shadow: 1px 1px 2px rgba(0,0,0,0);
  transition: .3s ease;
}

footer p {
  color: var(--snow);
  font-weight: 400;
}

.lead {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  color: var(--steel);
  line-height: 1.8;
  font-weight: 400;
  max-width: 650px;
}

/* -------------------------
   Utility Classes
   ------------------------- */
.smooth {
  transition: all var(--dur) var(--ease);
}

/* -------------------------
   Animations with fill-mode
   ------------------------- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.animate-in {
  opacity: 0;
  animation: fadeInUp var(--dur-slow) var(--ease) forwards;
}

.animate-left {
  opacity: 0;
  animation: fadeInLeft var(--dur-slow) var(--ease) forwards;
}

.animate-right {
  opacity: 0;
  animation: fadeInRight var(--dur-slow) var(--ease) forwards;
}

.animate-scale {
  opacity: 0;
  animation: scaleIn var(--dur-slow) var(--ease) forwards;
}

/* Scroll-triggered reveal */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity var(--dur-slow) var(--ease),
              transform var(--dur-slow) var(--ease);
}

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

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }

/* -------------------------
   Navigation - Ultra Minimal
   ------------------------- */
.navbar {
  background: transparent;
  padding: 1.5rem 0;
  transition: all var(--dur) var(--ease);
  border-bottom: 1px solid transparent;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px) saturate(180%);
  padding: 1rem 0;
  border-bottom: 1px solid var(--cloud);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.navbar-brand {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--midnight);
  letter-spacing: -0.02em;
  transition: all var(--dur) var(--ease);
}

.navbar-brand:hover {
  color: var(--accent);
}

.logo-wide{max-height: 80px}
.img-iowa{max-height: 120px; text-align: center; margin: 0px auto;margin-top:-215px;}

/* Fix mobile toggle visibility */
.navbar-toggler {
  border: 1px solid var(--cloud);
  padding: 0.5rem;
}

.navbar-toggler:focus {
  box-shadow: none;
  border-color: var(--accent);
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2810, 14, 39, 0.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  width: 1.5em;
  height: 1.5em;
}

.nav-link {
  font-family: "DM Sans", sans-serif;
  color: var(--slate) !important;
  font-weight: 500;
  font-size: 0.85rem;
  padding: 0.5rem 1rem !important;
  position: relative;
  transition: all var(--dur) var(--ease);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--accent);
  transform: translateX(-50%);
  transition: width var(--dur) var(--ease);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 40px;
}

.nav-link.active {
  color: var(--accent-strong) !important;
}

/* -------------------------
   Hero - Bold & Clean
   ------------------------- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 8rem 2rem 4rem;
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -15%;
  width: 70%;
  height: 120%;
  background: var(--snow);
  border-radius: 50%;
  z-index: 0;
  opacity: 0.7;
}

/* Subtle background pattern */
.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%2306B6D4' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
  z-index: 0;
}

.hero .container {
  position: relative;
  z-index: 1;
  max-width: 1200px;
}

.hero-content {
  max-width: 800px;
}

.hero h1 {
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.hero .accent-text {
  color: var(--accent);
  display: block;
  font-weight: 700;
}

.hero-stats {
  display: flex;
  gap: 3rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}

.hero-stat {
  display: flex;
  flex-direction: column;
}

.hero-stat-number {
  font-family: "Space Grotesk", sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--midnight);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.hero-stat-label {
  font-size: 1.275rem;
  color: var(--steel);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
}

.cta-group {
  display: flex;
  gap: 1rem;
  margin-top: 3rem;
  flex-wrap: wrap;
}

/* -------------------------
   Buttons - Sleek & Modern
   ------------------------- */
.btn {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 600;
  padding: 1rem 2rem;
  border-radius: 0;
  border: none;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  transition: all var(--dur) var(--ease);
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  cursor: pointer;
  will-change: transform;
}

.btn-primary {
  background: var(--midnight);
  color: var(--white);
  z-index: 1;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--accent),var(--accent-strong));
  transition: left 0.4s var(--ease);
  z-index: -1;
}

.btn-primary:hover::before {
  left: 0;
}

.btn-primary:hover {
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(10, 14, 39, 0.2);
}

.btn-outline {
  background: transparent;
  color: var(--midnight);
  border: 2px solid var(--midnight);
}

.btn-outline:hover {
  background: var(--midnight);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-accent {
  background: var(--accent-strong);
  border:2px solid var(--accent-strong);
  color: var(--white);
}

.btn-accent:hover {
  background: var(--midnight);
  transform: translateY(-2px);
  border:2px solid var(--accent);
  box-shadow: 0 10px 30px rgba(6, 182, 212, 0.3);
  color: var(--white);
}

/* -------------------------
   Sections
   ------------------------- */
.section {
  padding: 6rem 2rem;
  position: relative;
}

.section-alt {
  background: var(--snow);
}

.section-header {
  max-width: 700px;
  margin: 0 auto 4rem;
  text-align: center;
}

.section-label {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.33rem;
  color: var(--midnight);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
  margin-bottom: 1rem;
  display: block;
}

/* -------------------------
   Cards - Minimalist
   ------------------------- */
.card-sleek {
  background: var(--white);
  border: 1px solid var(--cloud);
  padding: 2.5rem;
  transition: all 0.4s var(--ease);
  position: relative;
}

.card-sleek::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 0;
  background: var(--accent);
  transition: height 0.4s var(--ease);
}

/*
.card-sleek:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  border-color: var(--accent);
}
*/

.card-sleek:hover::before {
  height: 100%;
}

.icon-minimal {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--snow);
  color: var(--accent);
  font-size: 1.5rem;
  margin:0px auto;
  margin-bottom: 1.5rem;
  transition: all var(--dur) var(--ease);
}

.card-sleek:hover .icon-minimal {
  background: var(--accent);
  color: var(--white);
}

/* -------------------------
   Feature Grid
   ------------------------- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.feature-item {
  display: flex;
  gap: 1.5rem;
  padding: 2rem;
  background: var(--white);
  border: 1px solid var(--cloud);
  transition: all var(--dur) var(--ease);
}

.feature-item:hover {
  border-color: var(--accent);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.feature-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--midnight);
  color: var(--white);
  font-size: 1.25rem;
}

.feature-content h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: var(--midnight);
}

.feature-content p {
  font-size: 0.95rem;
  color: var(--steel);
  margin: 0;
}

/* -------------------------
   Benefits Section (New)
   ------------------------- */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.benefit-card {
  text-align: center;
  padding: 3rem 2rem;
  background: var(--white);
  border: 1px solid var(--cloud);
  transition: all 0.4s var(--ease);
}

/*
.benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  border-color: var(--accent);
}
*/

.benefit-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--snow);
  color: var(--accent);
  font-size: 2rem;
  transition: all var(--dur) var(--ease);
}

.benefit-card:hover .benefit-icon {
  background: var(--accent-strong);
  color: var(--white);
  transform: scale(1.1);
}

/* -------------------------
   Stats Bar
   ------------------------- */
.stats-bar {
  background: var(--midnight);
  color: var(--white);
  padding: 3rem 2rem;
}

.stats-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

.stat-box {
  text-align: center;
  padding: 1.5rem;
  border-right: 1px dashed var(--accent-strong);
  border-left: 1px dashed var(--accent-strong);
}

.stat-value {
  font-family: "Space Grotesk", sans-serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  display: block;
  margin-bottom: 0.5rem;
}

.stat-desc {
  font-size: 0.95rem;
  color: var(--cloud);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 500;
}

/* -------------------------
   Pricing Table - Modern
   ------------------------- */
.pricing-container {
  background: var(--white);
  border: 1px solid var(--cloud);
  overflow: scroll;
}

.pricing-table {
  width: 100%;
  margin: 0;
}

.pricing-table thead {
  background: var(--midnight);
}

.pricing-table th {
  color: var(--white);
  font-family: "Space Grotesk", sans-serif;
  font-weight: 600;
  padding: 1.25rem 1.5rem;
  text-align: left;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: none;
}

.pricing-table td {
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--cloud);
  color: var(--slate);
  font-weight: 500;
}

.pricing-table tbody tr {
  transition: background 0.2s var(--ease);
}

.pricing-table tbody tr:hover {
  background: var(--snow);
}

.pricing-table td:first-child {
  font-weight: 600;
  color: var(--midnight);
}

.pricing-table td:last-child {
  font-weight: 600;
  color: var(--money);
}


/* -------------------------
   Info Box
------------------------- */

  .info-box {
    background: var(--snow);
    border-left: 4px solid var(--accent);
    padding: 1.5rem;
    margin: 2rem 0;
  }

  .info-box p {
    margin: 0;
    color: var(--slate);
    font-weight: 500;
  }

  .info-box strong {
    color: var(--midnight);
  }

  .callout-bottle-character{
    float: left; max-height: 120px; width: auto; padding:4px; margin-top:-36px; margin-bottom:24px; margin-right:24px
  }

/* -------------------------
   Contact Section
   ------------------------- */
.contact-box {
  background: var(--midnight);
  color: var(--white);
  padding: 3rem;
  display: flex;
  gap: 3rem;
  align-items: center;
}

.contact-icon {
  width: 100px;
  height: 100px;
  flex-shrink: 0;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: var(--white);
}

.contact-content h3 {
  color: var(--white);
  margin-bottom: 1rem;
}

.contact-content a{
    color: #eee;
    font-weight: 700;
    text-decoration: none
}

.contact-content a:hover{
    color: #fff;
    font-weight: 700;
    text-decoration: underline
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.75rem;
  color: var(--cloud);
}

.contact-detail i {
  color: var(--accent);
  width: 20px;
}

/* -------------------------
   Footer - Minimal
   ------------------------- */
footer {
  background: var(--midnight);
  color: var(--cloud);
  padding: 3rem 2rem;
  border-top: 1px solid var(--slate);
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.footer-brand {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
}

.footer-social {
  display: flex;
  gap: 1.5rem;
}

.footer-social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cloud);
  border: 1px solid var(--slate);
  transition: all var(--dur) var(--ease);
  text-decoration: none;
}

.footer-social a:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
  transform: translateY(-3px);
}

/* -------------------------
Hero Layout with Illustration
------------------------- */
.hero .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4rem;
  position: relative;
  z-index: 1;
  max-width: 1200px;
}

.hero-content {
  flex: 1;
  max-width: 600px; /* Reduced from 800px */
}

.hero-illustration {
  flex: 0 0 520px;
  max-width: 520px;
  opacity: 0;
  animation: scaleIn var(--dur-slow) var(--ease) 0.5s forwards;
}

.hero-illustration svg {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.1));
}

/* Animate SVG elements on load */
.hero-illustration svg > * {
  animation: float 3s ease-in-out infinite;
}

.hero-illustration svg circle,
.hero-illustration svg text {
  animation: pulse 2s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

@keyframes pulse {
  0%, 100% { opacity: 0.2; }
  50% { opacity: 0.6; }
}

/* -------------------------
   Responsive Adjustments
   ------------------------- */
@media (max-width: 992px) {
  .hero .container {
    flex-direction: column;
    text-align: center;
    gap: 3rem;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-illustration {
    flex: 0 0 300px;
    max-width: 300px;
  }

  .hero-stats {
    justify-content: center;
  }

  .cta-group {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .hero-illustration {
    flex: 0 0 250px;
    max-width: 250px;
  }
}

/* -------------------------
   Scroll Indicator
   ------------------------- */
.scroll-indicator {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--cloud);
  z-index: 9999;
}

.scroll-progress {
  height: 100%;
  background: var(--accent);
  width: 0;
  transition: width 0.1s ease;
}

/* -------------------------
   Back to Top
   ------------------------- */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 50px;
  height: 50px;
  background: var(--midnight);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all var(--dur) var(--ease);
  z-index: 1000;
  border: none;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: var(--accent);
  transform: translateY(-5px);
}

/* -------------------------
   Responsive
   ------------------------- */
@media (max-width: 992px) {
  .hero {
    padding: 6rem 1.5rem 3rem;
  }

  .hero::before {
    width: 90%;
    right: -30%;
  }

  .hero-stats {
    gap: 2rem;
  }

  .section {
    padding: 4rem 1.5rem;
  }

  .feature-grid,
  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .contact-box {
    flex-direction: column;
    text-align: center;
    padding: 2rem;
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .cta-group {
    flex-direction: column;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

  .stats-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero-stats {
    flex-direction: column;
    gap: 1.5rem;
  }
  .logo-wide{
    max-height: 44px;
  }
    
  .img-iowa{max-height: 100px; text-align: center; margin: 0px auto; margin-top:-95px; padding-bottom: 20px; display: none}
  
  .pricing-table th {
    padding: .8rem .9rem;
    font-size: 0.9rem;
  }

  .pricing-table td {
    padding: .8rem .9rem;
    font-size: 0.9rem;
  }
  
  .callout-bottle-character{
    max-height: 100px; width: auto; padding:4px; margin-top:-54px; margin-bottom:24px; margin-right:24px
  }
  
  .info-box{margin: 1rem}
  .info-box p{clear: both}
  
  .navbar-collapse{
      background: #f7f7f7;
      box-shadow: 0 6px 6px #ddd;
  }
  .nav-link:hover::after, .nav-link.active::after {
    width: 50%;
    margin-left: 4.5rem;
    left: 32px;
  }
}

/* -------------------------
   Accessibility
   ------------------------- */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* -------------------------
   Print Styles
   ------------------------- */
@media print {
  .navbar,
  .back-to-top,
  .scroll-indicator,
  .cta-group,
  .footer-social {
    display: none !important;
  }

  body {
    background: white;
    color: black;
  }
}

