/*
  GatorBucks Styles
  - Cute green cartoon theme
  - Responsive layout with soft animations
*/

:root {
  --bg: #e9fff4;
  --bg2: #d9ffe8;
  --primary: #24c36b;
  --primary-dark: #1aa25a;
  --accent: #34d399;
  --text: #0f172a;
  --muted: #4b5563;
  --card: #ffffff;
  --ring: rgba(36, 195, 107, 0.35);
}

* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(1100px 600px at -10% -10%, var(--bg2), transparent 60%),
    radial-gradient(1000px 600px at 110% -10%, var(--bg), transparent 60%),
    radial-gradient(1200px 800px at 50% 120%, var(--bg2), transparent 60%),
    linear-gradient(180deg, #effff6 0%, #e9fff4 100%);
  font: 500 16px/1.6 ui-rounded, system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue", Arial, "Apple Color Emoji", "Segoe UI Emoji";
  overflow-x: hidden;
}

.container {
  width: min(1100px, 92%);
  margin: 0 auto;
}

/* Header / Nav */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255,255,255,0.65);
  backdrop-filter: saturate(1.2) blur(10px);
  border-bottom: 1px solid rgba(0,0,0,0.05);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}
.brand { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; color: inherit; }
.brand-logo { width: 36px; height: 36px; border-radius: 10px; box-shadow: 0 4px 12px rgba(0,0,0,0.07); }
.brand-name { font-weight: 800; letter-spacing: 0.2px; }

.nav-links { display: flex; align-items: center; gap: 18px; list-style: none; margin: 0; padding: 0; }
.nav-links a { color: #0f172a; text-decoration: none; font-weight: 650; }
.nav-links a:hover { color: var(--primary-dark); }
.btn-small { padding: 8px 12px; border-radius: 12px; background: var(--primary); color: #fff !important; }

.nav-toggle { display: none; position: relative; width: 40px; height: 40px; border: 0; background: transparent; border-radius: 8px; }
.nav-toggle span { position: absolute; left: 10px; right: 10px; height: 3px; background: #0f172a; border-radius: 3px; transition: transform .3s ease, opacity .3s ease; }
.nav-toggle span:nth-child(1){ top: 12px; }
.nav-toggle span:nth-child(2){ top: 19px; }
.nav-toggle span:nth-child(3){ top: 26px; }
.nav-open .nav-toggle span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
.nav-open .nav-toggle span:nth-child(2){ opacity: 0; }
.nav-open .nav-toggle span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }

/* Hero */
.hero { display: grid; grid-template-columns: 1fr; gap: 18px; align-items: center; justify-items: center; text-align: center; min-height: min(640px, 92vh); padding: 48px 0 24px; position: relative; }
.hero .highlight { color: var(--primary-dark); text-shadow: 0 4px 0 rgba(36, 195, 107, 0.15); }
.hero h1 { font-size: clamp(34px, 5.4vw, 64px); line-height: 1.05; margin: 0 0 14px; letter-spacing: 0.3px; }
.subtitle { color: var(--muted); font-size: clamp(16px, 2.4vw, 20px); margin: 0 0 24px; }
.cta-group { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; justify-content: center; margin-bottom: 16px; }

.hero-logo { width: clamp(96px, 22vw, 160px); height: auto; border-radius: 20px; box-shadow: 0 16px 40px rgba(0,0,0,0.08); }

.btn { display: inline-flex; align-items: center; gap: 10px; border: 2px solid transparent; padding: 12px 18px; border-radius: 14px; font-weight: 800; text-decoration: none; cursor: pointer; transition: transform .12s ease, box-shadow .2s ease, background .2s ease; }
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--primary); color: #fff; box-shadow: 0 8px 18px var(--ring); }
.btn-primary:hover { background: var(--primary-dark); }
.btn-ghost { background: #ffffff; color: var(--text); border-color: #e6f7ef; box-shadow: 0 6px 14px rgba(0,0,0,0.05); }
.btn-ghost:hover { border-color: var(--primary); }
/* removed contract styles per request */

/* hero art removed in new layout */

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

/* Sections */
.section { padding: 64px 0; }
.section-head { text-align: center; margin-bottom: 28px; }
.section-head h2 { font-size: clamp(24px, 4vw, 36px); margin: 0 0 8px; }
.section-head p { margin: 0; color: var(--muted); }

.grid { display: grid; gap: 16px; }
.grid.two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid.three { grid-template-columns: repeat(3, minmax(0, 1fr)); }

.card { background: var(--card); border: 1px solid #eaf6ef; border-radius: 18px; padding: 18px; box-shadow: 0 8px 22px rgba(0,0,0,0.06); }
.about-story .story { margin: 0 0 12px; }
.about-story .emotes { font-size: 24px; letter-spacing: 8px; margin-top: 8px; }
.about-vibes { display: grid; place-items: center; text-align: center; }
.about-logo { width: clamp(96px, 20vw, 160px); height: auto; border-radius: 16px; box-shadow: 0 12px 30px rgba(0,0,0,0.08); }
.caption { color: var(--muted); margin: 8px 0 10px; }
.about-icons { display: inline-grid; grid-template-columns: repeat(3, 28px); gap: 10px; color: var(--primary-dark); opacity: 0.9; }
.about-icons svg { width: 28px; height: 28px; }
.kpi { text-align: center; padding: 26px; }
.kpi-value { font-size: clamp(22px, 3.4vw, 32px); font-weight: 900; color: var(--primary-dark); }
.kpi-label { color: var(--muted); font-weight: 700; }

/* Roadmap cards */
.phase { position: relative; overflow: hidden; }
.phase-badge { display: inline-block; background: #ecfdf5; color: var(--primary-dark); font-weight: 800; padding: 6px 10px; border-radius: 999px; border: 1px solid #d1fae5; }
.phase h3 { margin: 10px 0 8px; }
.phase-list { margin: 0; padding-left: 18px; }
.phase-list li { margin: 6px 0; }
.phase-meta { margin-top: 10px; }
.pill { display: inline-block; padding: 6px 10px; border-radius: 999px; font-weight: 800; font-size: 12px; }
.pill.done { background: #e5fbe9; color: #166534; border: 1px solid #bbf7d0; }
.pill.progress { background: #fff7ed; color: #9a3412; border: 1px solid #fed7aa; }
.pill.upcoming { background: #eff6ff; color: #1d4ed8; border: 1px solid #bfdbfe; }

.faq { max-width: 900px; margin: 0 auto; display: grid; gap: 10px; }
.faq-item { background: #fff; border: 1px solid #eaf6ef; border-radius: 12px; overflow: hidden; }
.faq-q { width: 100%; text-align: left; background: #fff; border: 0; padding: 16px; font-weight: 800; cursor: pointer; border-bottom: 1px dashed #eaf6ef; }
.faq-a { display: none; padding: 14px 16px; color: #334155; }
.faq-item.open .faq-a { display: block; }

.join .socials { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.social { display: inline-flex; align-items: center; gap: 8px; padding: 12px 14px; border-radius: 12px; border: 1px solid #eaf6ef; background: #fff; color: var(--text); text-decoration: none; box-shadow: 0 6px 14px rgba(0,0,0,0.05); }
.social:hover { border-color: var(--primary); color: var(--primary-dark); }
.social svg { width: 18px; height: 18px; }

.site-footer { padding: 32px 0; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.fineprint { color: var(--muted); margin: 0; }

/* Decorative lily pads */
.lilypad { position: fixed; width: 90px; height: 90px; background: radial-gradient(circle at 30% 30%, #2bd07a, #20b966); border-radius: 50% 50% 45% 60%/60% 45% 55% 40%; opacity: 0.17; z-index: 0; filter: blur(0.2px); animation: drift 28s linear infinite; }
.lilypad::after { content: ""; position: absolute; width: 22px; height: 22px; background: #e9fff4; border-radius: 50%; top: 20%; left: 22%; opacity: 0.6; }
.l1 { top: 10%; left: -40px; animation-delay: 0s; }
.l2 { top: 50%; left: calc(100% - 50px); animation-delay: 7s; }
.l3 { top: 80%; left: -60px; animation-delay: 14s; }
@keyframes drift { to { transform: translateX(120vw) rotate(8deg); } }

/* Confetti */
.confetti { position: fixed; top: 50%; left: 50%; width: 10px; height: 14px; transform: translate(-50%, -50%); opacity: 0.9; border-radius: 2px; pointer-events: none; }
@keyframes confettiFall {
  0% { transform: translate(var(--x, 0), var(--y, 0)) rotate(0deg); opacity: 1; }
  100% { transform: translate(calc(var(--x, 0) + 0px), calc(var(--y, 0) + 120vh)) rotate(600deg); opacity: 0; }
}

/* Responsive */
@media (max-width: 960px) {
  .hero { grid-template-columns: 1fr; padding-top: 24px; gap: 24px; }
}

@media (max-width: 760px) {
  .grid.two { grid-template-columns: 1fr; }
  .grid.three { grid-template-columns: 1fr; }
  .nav-toggle { display: inline-block; }
  .nav-links { position: absolute; right: 4%; top: 64px; background: #fff; border: 1px solid #eef7f1; border-radius: 12px; padding: 10px; display: none; flex-direction: column; width: 180px; box-shadow: 0 10px 24px rgba(0,0,0,0.08); }
  .nav-open #primary-menu { display: flex; }
}


