*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html, body { height: 100%; }

body {
  font-family: 'Fredoka One', cursive;
  background: #000;
  min-height: 100vh;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
}

/* ── SOCIAL SIDEBAR ── */
.social-sidebar {
  position: fixed;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 50;
}
.social-link {
  width: 42px; height: 42px;
  background: rgba(200,144,60,0.12);
  border: 2px solid rgba(200,144,60,0.35);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(200,144,60,0.7);
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.15s;
}
.social-link:hover {
  background: rgba(200,144,60,0.3);
  border-color: rgba(200,144,60,0.8);
  color: #C8903C;
  transform: scale(1.1);
}

/* ── TOP ZONE ── */
.top-zone {
  background: #000;
  padding-top: 14px;
  position: relative;
  overflow: visible;
}

/* ── NAV ── */
.nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 18px 12px;
  position: relative; z-index: 10;
}
.site-title {
  font-size: 1.9rem; color: #C8903C;
  letter-spacing: -0.01em;
  text-shadow: 0 2px 8px rgba(0,0,0,0.8);
  font-weight: 400;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.countdown-pill {
  background: #1a0a04; border: 2px solid #C8903C;
  border-radius: 12px; padding: 5px 11px;
  text-align: center; flex-shrink: 0;
}
.countdown-label {
  display: block; font-size: 0.5rem; color: #C8903C;
  letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 2px;
}
.countdown-time { display: block; font-size: 0.85rem; color: #F0E4C0; }

/* ── POTATO ── */
@keyframes potatoFloat {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-12px); }
}
@keyframes potatoSprout {
  from { transform: translateY(165px); }
  to   { transform: translateY(0px); }
}

.potato-wrap {
  display: flex; justify-content: center;
  position: relative; z-index: 2;
  margin-bottom: -120px;
}
.potato-sprout {
  animation: potatoSprout 30s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
  animation-delay: -2s;
}
.potato-float { animation: potatoFloat 3.5s ease-in-out infinite; }
.potato-img {
  width: 300px; height: auto; display: block;
  transition: transform 0.08s linear;
  transform-style: preserve-3d;
}

/* ── WAVE ── */
.wave-wrap { position: relative; z-index: 5; line-height: 0; }
.wave-svg { display: block; width: 100%; height: 100px; }

/* ── DIRT SECTION ── */
.dirt-section {
  background: linear-gradient(180deg, #7A4018 0%, #4A2408 35%, #2E1405 100%);
  position: relative;
  padding: 30px 80px 48px;
  z-index: 4; flex: 1;
  display: flex; flex-direction: column;
  justify-content: center; gap: 36px;
}
.pebbles { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.pebble { position: absolute; border-radius: 50%; }

/* ── PRODUCTS ── */
.products {
  display: flex; align-items: flex-start; justify-content: center;
  position: relative; z-index: 2;
  max-width: 800px; margin: 0 auto; width: 100%;
}
.product-col {
  flex: 1 1 0; min-width: 0;
  display: flex; flex-direction: column;
  align-items: center; gap: 14px;
}
.product-name {
  font-size: 2.55rem; color: #F0E4C0;
  text-align: center; white-space: nowrap;
  text-shadow: 0 2px 6px rgba(0,0,0,0.7);
}
.product-desc {
  font-size: 1.02rem; color: rgba(200,144,60,0.75);
  text-align: center; letter-spacing: 0.03em;
}
.col-divider {
  width: 2px; align-self: stretch; min-height: 312px;
  background: linear-gradient(180deg, transparent, rgba(200,144,60,0.3) 30%, rgba(200,144,60,0.3) 70%, transparent);
  margin: 8px 20px; flex-shrink: 0;
}

/* ── ROUND BUTTONS ── */
.round-btn {
  width: 144px; height: 144px;
  border-radius: 50%;
  background: radial-gradient(circle at 38% 36%, #FFFBF0, #E8D4A0);
  border: 3.5px solid #2A1508;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 6px;
  cursor: pointer;
  box-shadow: 0 6px 0 #1a0a04, 0 10px 20px rgba(0,0,0,0.5);
  font-family: 'Fredoka One', cursive;
  font-size: 1.2rem; color: #2A1508;
  user-select: none;
  transition: transform 0.15s, box-shadow 0.15s, background 0.2s;
  flex-shrink: 0;
}
.round-btn:hover {
  background: radial-gradient(circle at 38% 36%, #FFF5CC, #D4B870);
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 9px 0 #1a0a04, 0 14px 28px rgba(0,0,0,0.4);
}
.round-btn:active {
  transform: translateY(4px) scale(0.97);
  box-shadow: 0 2px 0 #1a0a04, 0 4px 8px rgba(0,0,0,0.3);
}
.round-btn--demo {
  background: radial-gradient(circle at 38% 36%, #3D2010, #2A1508);
  color: #C8903C; border-color: #C8903C;
  box-shadow: 0 6px 0 #0a0402, 0 10px 20px rgba(0,0,0,0.6);
}
.round-btn--demo:hover {
  background: radial-gradient(circle at 38% 36%, #5A3018, #3D2010);
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 9px 0 #0a0402, 0 14px 28px rgba(0,0,0,0.5);
}
.round-btn--demo svg { stroke: #C8903C; }

/* ── WAITLIST ── */
.waitlist {
  position: relative; z-index: 2;
  max-width: 480px; margin: 0 auto; width: 100%;
}
.waitlist-label {
  font-size: 0.84rem; color: rgba(200,144,60,0.7);
  letter-spacing: 0.12em; text-transform: uppercase;
  text-align: center; margin-bottom: 10px;
}
.waitlist-timer {
  font-size: 2rem;
  color: #F0E4C0;
  text-align: center;
  margin-bottom: 12px;
  letter-spacing: 0.05em;
}
.waitlist-row { display: flex; gap: 8px; }
.waitlist-input {
  flex: 1; padding: 13px 17px;
  background: rgba(0,0,0,0.4);
  border: 2px solid rgba(200,144,60,0.4);
  border-radius: 12px; color: #F0E4C0;
  font-family: 'Fredoka One', cursive;
  font-size: 1.08rem; outline: none;
  transition: border-color 0.2s;
}
.waitlist-input::placeholder { color: rgba(240,228,192,0.35); }
.waitlist-input:focus { border-color: rgba(200,144,60,0.8); }
.waitlist-btn {
  display: block;
  margin: 0 auto;
  background: #C8903C; border: 2.5px solid #2A1508;
  border-radius: 12px; padding: 13px 22px;
  color: #2A1508; font-family: 'Fredoka One', cursive;
  font-size: 1.08rem; cursor: pointer;
  box-shadow: 0 3px 0 #1a0a04;
  transition: transform 0.1s, box-shadow 0.1s;
}
.waitlist-btn:active { transform: translateY(2px); box-shadow: 0 1px 0 #1a0a04; }