/* Reggie & Dro Stone Oak — HIGH NOON 4/20 splash */
:root {
  --bg: #000000;
  --panel: #0a0a0a;
  --panel-2: #101010;
  --border: rgba(34, 255, 0, 0.35);
  --border-strong: #22FF00;
  --neon: #22FF00;
  --neon-soft: rgba(34, 255, 0, 0.14);
  --gold: #22FF00;
  --ink: #f1f1f1;
  --ink-dim: #b4b4b4;
  --radius: 14px;
  --radius-lg: 22px;
  --shadow-neon: 0 0 22px rgba(34, 255, 0, 0.35);
  --shadow-soft: 0 10px 40px rgba(0, 0, 0, 0.6);
  --max: 1120px;
  --pad: clamp(12px, 2.5vw, 28px);
}

* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  background: var(--bg) radial-gradient(1200px 500px at 50% -10%, rgba(34,255,0,0.08), transparent 60%);
  color: var(--ink);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.45;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

.skip {
  position: absolute; left: -9999px; top: 0;
  background: var(--neon); color: #000; padding: 8px 12px; z-index: 999;
}
.skip:focus { left: 8px; top: 8px; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); border: 0;
}

/* NAV */
.top-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px var(--pad) 14px;
  max-width: var(--max);
  margin: 0 auto;
  border-bottom: 1px solid rgba(34, 255, 0, 0.14);
}
.brand {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.brand-script {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: clamp(22px, 3.6vw, 32px);
  color: #ffffff;
  font-weight: 900;
  letter-spacing: 0.04em;
  line-height: 1;
  text-transform: uppercase;
}
.brand-subline {
  font-size: clamp(10px, 1.5vw, 12px);
  color: var(--neon);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.locator {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  letter-spacing: 0.08em;
  font-size: clamp(11px, 1.4vw, 14px);
  color: #d6d6d6;
  font-weight: 700;
  text-transform: uppercase;
}

/* Layout */
.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad) 40px;
}

/* Pills */
.pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin: 6px 0 22px;
}
.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--panel);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: clamp(11px, 1.5vw, 13px);
  color: var(--neon);
  box-shadow: inset 0 0 0 1px rgba(34,255,0,0.08);
}
.pill-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--neon);
  box-shadow: 0 0 10px var(--neon);
  animation: pulse 1.6s ease-in-out infinite;
}
@keyframes pulse {
  50% { transform: scale(1.25); opacity: 0.7; }
}
.pill-value { font-variant-numeric: tabular-nums; }

/* Hero */
.hero {
  text-align: center;
  padding: 10px 0 22px;
}
.hero-title {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  letter-spacing: 0.02em;
  font-size: clamp(36px, 8vw, 76px);
  font-weight: 900;
  margin: 0;
  color: #ffffff;
}
.hero-sub {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  letter-spacing: 0.04em;
  font-size: clamp(18px, 3.2vw, 34px);
  font-weight: 800;
  margin: 4px 0 18px;
  color: var(--neon);
  text-transform: uppercase;
}
.hero-body {
  max-width: 760px;
  margin: 0 auto;
  color: #cecece;
  font-size: clamp(14px, 2.1vw, 16px);
}
.hero-body strong { color: var(--neon); }

/* Email form */
.email-form {
  display: flex;
  gap: 10px;
  max-width: 520px;
  margin: 18px auto 0;
  flex-wrap: wrap;
  justify-content: center;
}
.email-form input[type="email"] {
  flex: 1 1 240px;
  min-width: 0;
  padding: 12px 14px;
  background: #0b0b0b;
  color: var(--ink);
  border: 1px solid var(--border);
  border-radius: 10px;
  font-size: 15px;
  outline: none;
}
.email-form input[type="email"]:focus {
  border-color: var(--neon);
  box-shadow: 0 0 0 3px rgba(34,255,0,0.18);
}
.btn-primary {
  padding: 12px 18px;
  background: var(--neon);
  color: #001a00;
  border: none;
  border-radius: 10px;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: transform 120ms ease, box-shadow 120ms ease;
  box-shadow: var(--shadow-neon);
}
.btn-primary:hover { transform: translateY(-1px); }
.btn-primary:active { transform: translateY(0); }
.email-msg {
  width: 100%;
  text-align: center;
  margin: 6px 0 0;
  min-height: 1.2em;
  font-size: 13px;
  color: var(--neon);
}

/* Grid */
.grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(16px, 3vw, 28px);
  align-items: stretch;
  margin-top: 10px;
}
@media (max-width: 760px) {
  .grid { grid-template-columns: 1fr; }
}

/* Reel */
.reel-card {
  border: none;
  border-radius: 0;
  background: transparent;
  padding: 0;
  box-shadow: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.reel-frame {
  position: relative;
  aspect-ratio: 9 / 16;
  height: 400px;
  max-height: 100%;
  max-width: 100%;
  margin: 0 auto;
  border-radius: var(--radius);
  overflow: hidden;
  background: #000;
  border: 1px solid rgba(34,255,0,0.45);
  resize: both;
  min-width: 180px;
  min-height: 280px;
}
@media (max-width: 760px) {
  .reel-frame { height: 360px; }
}
.reel-video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  background: #000;
}
.reel-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.reel-btn {
  pointer-events: auto;
  width: 64px; height: 64px;
  border-radius: 50%;
  border: 2px solid var(--neon);
  background: rgba(0,0,0,0.5);
  color: var(--neon);
  display: grid; place-items: center;
  cursor: pointer;
  opacity: 0.9;
  transition: opacity 200ms ease, transform 200ms ease;
}
.reel-btn.hidden { opacity: 0; transform: scale(0.8); pointer-events: none; }
.reel-side {
  position: absolute;
  right: 8px;
  bottom: 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.side-btn {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(0,0,0,0.55);
  color: var(--neon);
  border: 1px solid rgba(34,255,0,0.35);
  display: grid; place-items: center;
  cursor: pointer;
}

/* Chat bubble (speech shape) */
.chat-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 10px;
}
.bubble {
  position: relative;
  width: min(100%, 420px);
  aspect-ratio: 4 / 3;
  background: var(--neon);
  color: #041a00;
  border: none;
  cursor: pointer;
  border-radius: 36px;
  box-shadow: 0 0 40px rgba(34,255,0,0.45), inset 0 0 0 4px rgba(0,0,0,0.15);
  display: grid;
  place-items: center;
  transition: transform 150ms ease, box-shadow 150ms ease;
}
.bubble::after {
  content: "";
  position: absolute;
  left: 18%;
  bottom: -22px;
  width: 0; height: 0;
  border-left: 28px solid transparent;
  border-right: 14px solid transparent;
  border-top: 32px solid var(--neon);
  filter: drop-shadow(0 6px 10px rgba(34,255,0,0.35));
}
.bubble:hover { transform: translateY(-2px); }
.bubble-inner {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  letter-spacing: 0.05em;
  font-size: clamp(26px, 5.2vw, 42px);
  font-weight: 900;
  text-transform: uppercase;
  color: #001a00;
  text-shadow: 0 1px 0 rgba(255,255,255,0.25);
}
.chat-hint {
  margin: 10px 0 0;
  color: var(--ink-dim);
  font-size: 13px;
  text-align: center;
}

/* Trust */
.trust {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  text-align: center;
}
.trust-item {
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 10px 8px;
  background: var(--panel);
  color: var(--ink-dim);
  font-size: 12px;
  letter-spacing: 0.05em;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
}
.trust-item strong { color: var(--neon); margin-right: 6px; }
@media (max-width: 560px) {
  .trust { grid-template-columns: repeat(2, 1fr); }
}

/* Legal */
.legal {
  margin-top: 22px;
  text-align: center;
  color: var(--ink-dim);
  font-size: 12px;
  line-height: 1.6;
}
.legal p { margin: 2px 0; }

/* Modal */
.modal {
  position: fixed; inset: 0;
  display: grid; place-items: center;
  z-index: 50;
}
.modal[hidden] { display: none; }
.modal-backdrop {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(4px);
}
.modal-panel {
  position: relative;
  width: min(720px, 94vw);
  height: min(720px, 86vh);
  min-width: 320px;
  min-height: 420px;
  max-width: 96vw;
  max-height: 92vh;
  background: var(--panel-2);
  border: 1px solid var(--border-strong);
  border-radius: 16px;
  box-shadow: var(--shadow-neon), var(--shadow-soft);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  resize: both;
}
.modal-panel::after {
  content: '';
  position: absolute;
  right: 4px;
  bottom: 4px;
  width: 14px;
  height: 14px;
  pointer-events: none;
  background:
    linear-gradient(135deg, transparent 50%, var(--neon) 50%, var(--neon) 60%, transparent 60%, transparent 70%, var(--neon) 70%, var(--neon) 80%, transparent 80%);
  opacity: 0.85;
  border-radius: 0 0 14px 0;
}
.modal-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 16px;
  background: #0d1410;
  border-bottom: 1px solid var(--border);
}
.modal-head h3 {
  margin: 0;
  font-family: 'Bebas Neue', Inter, sans-serif;
  letter-spacing: 0.12em;
  color: var(--neon);
  font-size: 20px;
}
.modal-close {
  background: transparent; border: none; color: var(--neon);
  font-size: 26px; line-height: 1; cursor: pointer;
}
.chat-log {
  flex: 1;
  overflow-y: auto;
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.msg {
  max-width: 85%;
  padding: 10px 12px;
  border-radius: 12px;
  font-size: 14.5px;
  line-height: 1.45;
  white-space: pre-wrap;
  word-wrap: break-word;
}
.msg.jesse { background: #0b1a0b; border: 1px solid var(--border); color: var(--ink); align-self: flex-start; }
.msg.user { background: var(--neon); color: #001a00; align-self: flex-end; border: 1px solid rgba(0,0,0,0.15); }
.msg.typing {
  color: var(--ink-dim);
  font-style: italic;
  position: relative;
  animation: jesse-think-pulse 2.4s ease-in-out infinite;
}
.msg.typing::after {
  content: ' \1F33F';
  display: inline-block;
  margin-left: 4px;
  animation: jesse-think-spin 3.2s linear infinite;
}
@keyframes jesse-think-pulse {
  0%, 100% { opacity: 0.55; }
  50% { opacity: 1; }
}
@keyframes jesse-think-spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Cannabis-branded Thinking Lines — rotating phrase + smoke-drift dots */
.msg.thinking-line {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 24px;
}
.thinking-line__text {
  display: inline-block;
  opacity: 1;
  transition: opacity 200ms ease-in-out, transform 200ms ease-in-out;
  transform: translateY(0);
}
.thinking-line__text--fade {
  opacity: 0;
  transform: translateY(-3px);
}
.thinking-dots {
  display: inline-flex;
  gap: 4px;
  align-items: flex-end;
  padding-bottom: 2px;
}
.thinking-dots i {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--neon, #22FF00);
  box-shadow: 0 0 6px rgba(34, 255, 0, 0.6);
  opacity: 0.4;
  animation: smoke-drift 1.4s ease-in-out infinite;
}
.thinking-dots i:nth-child(2) { animation-delay: 0.18s; }
.thinking-dots i:nth-child(3) { animation-delay: 0.36s; }
@keyframes smoke-drift {
  0%   { opacity: 0.25; transform: translateY(0) scale(0.85); }
  40%  { opacity: 1;    transform: translateY(-4px) scale(1.05); }
  70%  { opacity: 0.55; transform: translateY(-7px) scale(0.95); }
  100% { opacity: 0.25; transform: translateY(0) scale(0.85); }
}
@media (prefers-reduced-motion: reduce) {
  .thinking-line__text, .thinking-line__text--fade { transition: none; transform: none; opacity: 1; }
  .thinking-dots i { animation: none; opacity: 0.6; }
  .msg.typing::after { animation: none; }
  .msg.typing { animation: none; opacity: 1; }
}
.chat-form {
  display: flex; gap: 8px;
  padding: 10px;
  border-top: 1px solid var(--border);
  background: #0b100c;
}
.chat-form textarea {
  flex: 1;
  resize: none;
  min-height: 42px;
  max-height: 140px;
  padding: 10px 12px;
  border-radius: 10px;
  background: #0b0b0b;
  color: var(--ink);
  border: 1px solid var(--border);
  font-size: 15px;
  font-family: inherit;
  outline: none;
}
.chat-form textarea:focus {
  border-color: var(--neon);
  box-shadow: 0 0 0 3px rgba(34,255,0,0.18);
}

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

@media (prefers-reduced-motion: reduce) {
  .pill-dot { animation: none; }
  * { transition-duration: 0.01ms !important; }
}
