:root {
  --bg: #08120c;
  --bg-2: #101b13;
  --lime: #a3ff12;
  --lime-soft: #d9ff86;
  --frog: #59d35f;
  --blue: #78d7ff;
  --purple: #9b5cff;
  --pink: #ff4fd8;
  --yellow: #ffe66d;
  --paper: #f7ffe8;
  --text: #f6fff1;
  --muted: rgba(246, 255, 241, .72);
  --card: rgba(255, 255, 255, .08);
  --card-strong: rgba(255, 255, 255, .14);
  --border: rgba(255, 255, 255, .18);
  --shadow: 0 26px 80px rgba(0, 0, 0, .35);
  --radius-xl: 32px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --font: ui-rounded, "SF Pro Rounded", "Arial Rounded MT Bold", Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font);
  color: var(--text);
  background:
    radial-gradient(circle at 12% 12%, rgba(163, 255, 18, .18), transparent 25rem),
    radial-gradient(circle at 90% 8%, rgba(120, 215, 255, .13), transparent 24rem),
    radial-gradient(circle at 80% 78%, rgba(155, 92, 255, .16), transparent 28rem),
    linear-gradient(135deg, var(--bg), var(--bg-2) 60%, #07100a);
  overflow-x: hidden;
}

body.frog-mode {
  animation: bgPulse 1.8s infinite alternate;
}

@keyframes bgPulse {
  from { filter: hue-rotate(0deg) saturate(1); }
  to { filter: hue-rotate(18deg) saturate(1.22); }
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
button { cursor: pointer; }

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .18;
  z-index: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160' viewBox='0 0 160 160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='.42'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
}

.sky-orb {
  position: fixed;
  width: 22rem;
  aspect-ratio: 1;
  border-radius: 999px;
  filter: blur(40px);
  opacity: .35;
  pointer-events: none;
  z-index: 0;
}
.sky-orb-one { left: -8rem; top: 22rem; background: var(--lime); animation: floatOrb 12s ease-in-out infinite; }
.sky-orb-two { right: -9rem; top: 8rem; background: var(--purple); animation: floatOrb 15s ease-in-out infinite reverse; }
@keyframes floatOrb { 50% { transform: translate3d(3rem, -2rem, 0) scale(1.08); } }

#weatherCanvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: min(1180px, calc(100% - 32px));
  margin: 16px auto 0;
  padding: 12px 14px 12px 16px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(8, 18, 12, .74);
  backdrop-filter: blur(18px);
  box-shadow: 0 16px 50px rgba(0,0,0,.22);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  font-weight: 900;
  letter-spacing: -.04em;
  white-space: nowrap;
}
.brand-mark {
  display: grid;
  place-items: center;
  width: 2.45rem;
  height: 2.45rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--lime), var(--frog));
  color: #07100a;
  box-shadow: inset 0 -4px 10px rgba(0,0,0,.15), 0 0 24px rgba(163, 255, 18, .28);
}
.brand-accent { color: var(--lime); }

nav {
  display: flex;
  align-items: center;
  gap: .3rem;
}
nav a {
  padding: .7rem .85rem;
  border-radius: 999px;
  color: var(--muted);
  font-weight: 750;
  font-size: .95rem;
  transition: .2s ease;
}
nav a:hover { background: rgba(255,255,255,.08); color: var(--text); }

.sound-toggle {
  border: 1px solid var(--border);
  background: rgba(255,255,255,.08);
  color: var(--text);
  border-radius: 999px;
  padding: .7rem .95rem;
  font-weight: 800;
}
.sound-toggle:hover { background: rgba(163,255,18,.18); }

main, .site-footer { position: relative; z-index: 2; }
.section, .hero {
  width: min(1180px, calc(100% - 32px));
  margin-inline: auto;
}

.hero {
  min-height: calc(100svh - 82px);
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, .98fr);
  gap: clamp(2rem, 6vw, 5.5rem);
  align-items: center;
  padding: clamp(3rem, 7vw, 7rem) 0 5rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  margin: 0 0 1rem;
  padding: .48rem .8rem;
  border-radius: 999px;
  color: #07100a;
  background: linear-gradient(135deg, var(--lime), var(--yellow));
  box-shadow: 0 10px 34px rgba(163, 255, 18, .15);
  font-size: .78rem;
  font-weight: 1000;
  letter-spacing: .06em;
  text-transform: uppercase;
}

h1, h2, h3, p { margin-top: 0; }
h1 {
  margin-bottom: 1.1rem;
  font-size: clamp(3.3rem, 8vw, 7.8rem);
  line-height: .84;
  letter-spacing: -.09em;
  text-wrap: balance;
}
h2 {
  margin-bottom: 1rem;
  font-size: clamp(2.25rem, 5vw, 4.9rem);
  line-height: .9;
  letter-spacing: -.075em;
  text-wrap: balance;
}
h3 { font-size: clamp(1.25rem, 2vw, 1.65rem); line-height: 1; letter-spacing: -.04em; }
.lead, .section-copy p, .shop-copy p, .contact-card p:not(.eyebrow), .timeline-item p, .card p, .product-card li, .smallprint {
  color: var(--muted);
  line-height: 1.7;
  font-weight: 560;
}
.lead { max-width: 62ch; font-size: clamp(1.05rem, 1.7vw, 1.3rem); }

.hero-actions, .contact-actions {
  display: flex;
  gap: .8rem;
  flex-wrap: wrap;
  margin: 1.7rem 0;
}
.btn {
  border: 0;
  border-radius: 999px;
  padding: 1rem 1.25rem;
  font-weight: 1000;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.btn:hover { transform: translateY(-2px) rotate(-.5deg); }
.btn-primary {
  color: #07100a;
  background: linear-gradient(135deg, var(--lime), var(--frog));
  box-shadow: 0 18px 42px rgba(163, 255, 18, .22);
}
.btn-secondary {
  color: var(--text);
  background: rgba(255, 255, 255, .1);
  border: 1px solid var(--border);
}

.live-strip {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  max-width: 100%;
  padding: .8rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(163,255,18,.27);
  background: rgba(163,255,18,.08);
  color: var(--lime-soft);
  font-weight: 850;
}
.pulse-dot {
  flex: 0 0 auto;
  width: .75rem;
  height: .75rem;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 0 rgba(163,255,18,.55);
  animation: pulse 1.4s infinite;
}
@keyframes pulse { 70% { box-shadow: 0 0 0 13px rgba(163,255,18,0); } }

.hero-stage {
  position: relative;
  min-height: 620px;
}
.badge {
  position: absolute;
  z-index: 4;
  top: 1rem;
  right: 1rem;
  transform: rotate(8deg);
  padding: .7rem 1rem;
  border-radius: 999px;
  background: var(--lime);
  color: #07100a;
  font-weight: 1000;
  box-shadow: 0 14px 40px rgba(0,0,0,.28);
}
.polaroid {
  position: absolute;
  margin: 0;
  overflow: hidden;
  border: 12px solid var(--paper);
  border-bottom-width: 54px;
  border-radius: 22px;
  background: var(--paper);
  box-shadow: var(--shadow);
  color: #172012;
}
.polaroid img { width: 100%; height: 100%; object-fit: cover; }
.polaroid figcaption {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: -42px;
  font-size: .9rem;
  font-weight: 1000;
  letter-spacing: -.02em;
}
.polaroid-main {
  width: min(500px, 85%);
  height: 530px;
  left: 7%;
  top: 0;
}
.polaroid-small {
  width: 245px;
  height: 350px;
  right: 0;
  bottom: 58px;
}
.bottom-card {
  left: 0;
  right: auto;
  bottom: 0;
  width: 225px;
  height: 310px;
}
.tilt-left { transform: rotate(-4deg); }
.tilt-right { transform: rotate(7deg); }
.tilt-left-soft { transform: rotate(-8deg); }

.marquee {
  position: relative;
  z-index: 2;
  overflow: hidden;
  border-block: 1px solid var(--border);
  background: rgba(255,255,255,.07);
  backdrop-filter: blur(10px);
}
.marquee-track {
  display: flex;
  width: max-content;
  gap: 3rem;
  padding: 1.15rem 0;
  animation: marquee 22s linear infinite;
  font-weight: 1000;
  color: var(--lime-soft);
  text-transform: uppercase;
  letter-spacing: .05em;
}
.marquee-track span { padding-inline: 1.5rem; }
@keyframes marquee { to { transform: translateX(-50%); } }

.section { padding: clamp(4rem, 8vw, 7rem) 0; }
.grid-two, .interactive-lab, .shop-section {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(320px, 1.1fr);
  gap: clamp(1.3rem, 4vw, 3rem);
  align-items: center;
}
.section-copy { max-width: 650px; }
.section-heading { max-width: 760px; margin-bottom: 2rem; }

.forecast-console {
  border: 1px solid rgba(163,255,18,.25);
  border-radius: var(--radius-xl);
  background: rgba(0,0,0,.42);
  box-shadow: var(--shadow), inset 0 0 80px rgba(163,255,18,.05);
  overflow: hidden;
}
.console-header {
  display: flex;
  align-items: center;
  gap: .45rem;
  padding: 1rem;
  background: rgba(255,255,255,.08);
  border-bottom: 1px solid var(--border);
}
.console-header span { width: .8rem; height: .8rem; border-radius: 50%; background: var(--pink); }
.console-header span:nth-child(2) { background: var(--yellow); }
.console-header span:nth-child(3) { background: var(--lime); }
.console-header strong { margin-left: .6rem; color: var(--lime-soft); font-size: .86rem; letter-spacing: .06em; }
.terminal-lines {
  min-height: 205px;
  padding: 1.25rem;
  color: var(--lime-soft);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: .95rem;
}
.terminal-lines p { margin: .35rem 0; }
.mini-btn {
  margin: 0 1.25rem 1.25rem;
  border: 1px solid rgba(163,255,18,.35);
  border-radius: 999px;
  background: rgba(163,255,18,.12);
  color: var(--lime-soft);
  padding: .85rem 1rem;
  font-weight: 900;
}

.cards, .service-grid, .gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}
.card, .lab-panel, .product-card, .contact-card, .service-card, .gallery-item, .timeline-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(255,255,255,.11), rgba(255,255,255,.055));
  box-shadow: 0 18px 50px rgba(0,0,0,.18);
  backdrop-filter: blur(14px);
}
.card {
  min-height: 260px;
  padding: 1.35rem;
  transition: transform .22s ease, background .22s ease;
}
.card:hover { transform: translateY(-8px) rotate(-1deg); background: var(--card-strong); }
.card-icon {
  display: inline-grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  margin-bottom: 1rem;
  border-radius: 18px;
  background: rgba(163,255,18,.14);
  font-size: 1.55rem;
}

.interactive-lab { align-items: stretch; }
.lab-panel { padding: clamp(1.25rem, 3vw, 2rem); }
.lab-panel label { display: block; margin-bottom: .8rem; font-weight: 1000; color: var(--lime-soft); }
input[type="range"] {
  width: 100%;
  accent-color: var(--lime);
}
.meter {
  height: 1rem;
  margin: 1rem 0;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(255,255,255,.13);
}
.meter-fill {
  width: 42%;
  height: 100%;
  background: linear-gradient(90deg, var(--lime), var(--yellow), var(--pink));
  border-radius: inherit;
  transition: width .2s ease;
}
.meter-output { font-weight: 900; color: var(--text); }
.panic-button {
  width: 100%;
  min-height: 128px;
  border: 0;
  border-radius: 28px;
  background: radial-gradient(circle at 30% 20%, #fff, var(--pink) 28%, #b40055 68%, #3b001d);
  color: white;
  font-size: clamp(1.4rem, 3vw, 2.25rem);
  font-weight: 1000;
  text-transform: uppercase;
  letter-spacing: -.04em;
  box-shadow: 0 24px 70px rgba(255,79,216,.28);
}
.panic-button:active { transform: scale(.98); }
.smallprint { margin: 1rem 0 0; font-size: .93rem; }

.timeline { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1rem; position: relative; }
.timeline-item { padding: 1.35rem; }
.timeline-item span {
  display: inline-block;
  margin-bottom: 1rem;
  color: #07100a;
  background: var(--lime);
  border-radius: 999px;
  padding: .35rem .7rem;
  font-size: .78rem;
  font-weight: 1000;
}

.shop-section { align-items: stretch; }
.shop-copy, .product-card { padding: clamp(1.25rem, 4vw, 2.3rem); }
.shop-copy {
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, rgba(163,255,18,.14), rgba(120,215,255,.06));
  border: 1px solid rgba(163,255,18,.24);
}
.cart-progress { margin: 1.4rem 0; display: flex; align-items: center; gap: .8rem; font-weight: 1000; color: var(--lime-soft); }
.cart-progress div { flex: 1; height: 1rem; border-radius: 999px; background: rgba(255,255,255,.13); overflow: hidden; }
.cart-progress i { display: block; width: 73%; height: 100%; background: linear-gradient(90deg, var(--lime), var(--frog)); border-radius: inherit; transition: width .35s ease; }
.product-card ul { padding-left: 1.1rem; }
.product-visual {
  display: grid;
  place-items: center;
  min-height: 180px;
  border-radius: 24px;
  background: radial-gradient(circle, rgba(163,255,18,.23), rgba(255,255,255,.06));
  font-size: 7rem;
  margin-bottom: 1.25rem;
  animation: frogBob 2.8s ease-in-out infinite;
}
@keyframes frogBob { 50% { transform: translateY(-8px) rotate(3deg); } }
.price { color: var(--yellow); font-weight: 1000; }

.service-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.service-card {
  display: grid;
  gap: .8rem;
  text-align: left;
  padding: 1.3rem;
  color: var(--text);
  transition: .2s ease;
}
.service-card:hover, .service-card.active { transform: translateY(-6px); background: rgba(163,255,18,.14); border-color: rgba(163,255,18,.35); }
.service-card strong { font-size: 1.25rem; letter-spacing: -.04em; }
.service-card span { color: var(--muted); line-height: 1.55; }
.service-output {
  margin-top: 1rem;
  padding: 1.1rem 1.25rem;
  border: 1px solid rgba(163,255,18,.25);
  border-radius: 999px;
  background: rgba(163,255,18,.09);
  color: var(--lime-soft);
  font-weight: 950;
}

.gallery { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.gallery-item { margin: 0; overflow: hidden; }
.gallery-item img { width: 100%; height: 420px; object-fit: cover; }
.gallery-item figcaption { padding: 1rem; color: var(--muted); font-weight: 800; line-height: 1.5; }

.contact-section { padding-bottom: 4rem; }
.contact-card {
  padding: clamp(1.4rem, 5vw, 3rem);
  text-align: center;
  background:
    radial-gradient(circle at 50% 0%, rgba(163,255,18,.18), transparent 24rem),
    linear-gradient(180deg, rgba(255,255,255,.13), rgba(255,255,255,.06));
}
.contact-actions { justify-content: center; }
.complaints { color: var(--yellow); font-weight: 1000; }

.frog-widget {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  width: min(330px, calc(100% - 36px));
  border: 1px solid rgba(163,255,18,.35);
  border-radius: 28px;
  background: rgba(8, 18, 12, .86);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
  padding: 1rem 1rem 1rem 4.6rem;
  transform: translateY(130%);
  transition: transform .35s cubic-bezier(.19, 1, .22, 1);
}
.frog-widget.show { transform: translateY(0); }
.frog-face {
  position: absolute;
  left: 1rem;
  top: 1rem;
  display: grid;
  place-items: center;
  width: 2.9rem;
  height: 2.9rem;
  border-radius: 50%;
  background: var(--lime);
  font-size: 1.8rem;
}
.frog-close {
  position: absolute;
  right: .75rem;
  top: .65rem;
  width: 1.8rem;
  height: 1.8rem;
  border: 0;
  border-radius: 50%;
  background: rgba(255,255,255,.12);
  color: var(--text);
}
.frog-widget p { margin: .35rem 0 0; color: var(--muted); line-height: 1.45; }

.back-to-top {
  position: fixed;
  right: 18px;
  bottom: 136px;
  z-index: 25;
  width: 3rem;
  height: 3rem;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  color: var(--text);
  opacity: 0;
  pointer-events: none;
  transition: .2s ease;
}
.back-to-top.visible { opacity: 1; pointer-events: auto; }

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 1.5rem 0 2rem;
  color: rgba(246,255,241,.55);
  font-size: .92rem;
}
.site-footer p { margin: 0; }

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .7s ease, transform .7s cubic-bezier(.19,1,.22,1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: .1s; }
.delay-2 { transition-delay: .2s; }
.delay-3 { transition-delay: .3s; }

.spawn-frog {
  position: fixed;
  z-index: 40;
  font-size: 2rem;
  pointer-events: none;
  animation: frogFly 1.8s ease-out forwards;
}
@keyframes frogFly {
  0% { transform: translate3d(0,0,0) rotate(0deg) scale(.4); opacity: 0; }
  14% { opacity: 1; }
  100% { transform: translate3d(var(--x), var(--y), 0) rotate(720deg) scale(1.2); opacity: 0; }
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 26px;
  z-index: 50;
  transform: translate(-50%, 120%);
  max-width: min(560px, calc(100% - 32px));
  padding: 1rem 1.2rem;
  border-radius: 999px;
  background: var(--lime);
  color: #07100a;
  font-weight: 1000;
  box-shadow: var(--shadow);
  transition: transform .3s cubic-bezier(.19,1,.22,1);
}
.toast.show { transform: translate(-50%, 0); }

@media (max-width: 960px) {
  .site-header { align-items: flex-start; border-radius: 28px; flex-wrap: wrap; }
  nav { order: 3; width: 100%; overflow-x: auto; padding-bottom: .15rem; }
  .hero, .grid-two, .interactive-lab, .shop-section { grid-template-columns: 1fr; }
  .hero { padding-top: 3rem; }
  .hero-stage { min-height: 720px; }
  .cards, .timeline { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .service-grid, .gallery { grid-template-columns: 1fr; }
  .gallery-item img { height: 360px; }
  .site-footer { flex-direction: column; }
}

@media (max-width: 620px) {
  .site-header { width: min(100% - 20px, 1180px); }
  .brand { font-size: .95rem; }
  .sound-toggle { font-size: .88rem; padding: .62rem .75rem; }
  nav a { font-size: .88rem; }
  h1 { font-size: clamp(3rem, 18vw, 4.7rem); }
  .hero-stage { min-height: 560px; }
  .polaroid-main { width: 82%; height: 410px; left: 6%; }
  .polaroid-small { width: 160px; height: 235px; }
  .bottom-card { width: 155px; height: 220px; }
  .polaroid { border-width: 8px; border-bottom-width: 40px; border-radius: 18px; }
  .polaroid figcaption { bottom: -32px; left: 9px; right: 9px; font-size: .7rem; }
  .cards, .timeline { grid-template-columns: 1fr; }
  .card { min-height: unset; }
  .live-strip, .service-output { border-radius: 20px; }
  .frog-widget { right: 10px; bottom: 10px; }
  .back-to-top { right: 10px; bottom: 130px; }
}

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