/* Core variables based on the video color scheme */
:root {
  --green: #8EDB27;
  --orange: #FF7A1A;
  --white: #FFFFFF;
  --blue: #00A0C8;
  --dark: #263238;
  --radius-lg: 1.75rem;
  --shadow-soft: 0 18px 40px rgba(0, 0, 0, 0.18);
}

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

body {
  margin: 0;
  font-family: "Nunito", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(circle at top left, #dfffa8 0, var(--green) 40%, #6bb51e 100%);
  color: var(--dark);
  min-height: 100vh;
}

.noise {
  pointer-events: none;
  position: fixed;
  inset: 0;
  opacity: 0.25;
  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' x='0' y='0'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='noStitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.45'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
  z-index: -1;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 4vw;
  background: linear-gradient(90deg, rgba(255,255,255,0.94), rgba(255,255,255,0.9));
  backdrop-filter: blur(14px);
  border-bottom: 2px solid rgba(0,0,0,0.06);
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-img {
  width: 42px;
  height: 42px;
}

.wordmark {
  font-family: "Bebas Neue", system-ui;
  font-size: 1.8rem;
  letter-spacing: 0.08em;
  color: var(--orange);
  text-shadow: 0 3px 0 rgba(0,0,0,0.1);
}

.nav-links {
  display: flex;
  gap: 1.2rem;
  font-weight: 600;
  font-size: 0.95rem;
}

.nav-links a {
  text-decoration: none;
  color: var(--dark);
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.15rem;
  width: 0;
  height: 2px;
  background: var(--blue);
  transition: width 0.2s ease-out;
}

.nav-links a:hover::after {
  width: 100%;
}

.btn {
  border-radius: 999px;
  padding: 0.6rem 1.4rem;
  border: none;
  font-family: inherit;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  font-size: 0.8rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  transition: transform 0.12s ease-out, box-shadow 0.12s ease-out, background 0.12s ease-out, color 0.12s ease-out;
}

.btn-primary {
  background: var(--blue);
  color: var(--white);
  box-shadow: var(--shadow-soft);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 20px 36px rgba(0,0,0,0.24);
}

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

.btn-outline:hover {
  background: var(--blue);
  color: var(--white);
}

.btn-ghost {
  background: rgba(255,255,255,0.35);
  color: var(--dark);
  border: 1px dashed rgba(0,0,0,0.25);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
  padding: 4rem 6vw 3rem;
  gap: 3rem;
  align-items: center;
}

.hero-text h1 {
  font-family: "Bebas Neue", system-ui;
  font-size: clamp(3.2rem, 5vw, 4.8rem);
  letter-spacing: 0.06em;
  line-height: 0.92;
  margin: 0 0 0.8rem;
  color: var(--white);
  text-shadow: 0 6px 0 rgba(0,0,0,0.18);
}

.hero-text .highlight {
  color: var(--orange);
}

.hero-sub {
  max-width: 32rem;
  font-size: 1.02rem;
  font-weight: 600;
  color: rgba(15,31,42,0.9);
}

.eyebrow {
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 0.16em;
  font-size: 0.8rem;
  margin-bottom: 0.5rem;
  color: rgba(15,31,42,0.9);
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 1.4rem 0 0.4rem;
}

.tiny-disclaimer {
  font-size: 0.75rem;
  opacity: 0.9;
}

.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-card {
  background: radial-gradient(circle at top, #ffffff, #f8ffe1 60%, #ddf467 100%);
  border-radius: 2.25rem;
  box-shadow: var(--shadow-soft);
  padding: 2.4rem 2rem;
  position: relative;
  text-align: center;
}

.hero-bone {
  width: 70%;
  max-width: 260px;
}

.tag {
  position: absolute;
  background: var(--orange);
  color: var(--white);
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  box-shadow: 0 12px 22px rgba(0,0,0,0.22);
}

.tag-new {
  top: 1rem;
  left: -0.4rem;
}

.tag-spicy {
  bottom: 1rem;
  right: -0.2rem;
  background: var(--blue);
}

.section {
  padding: 3.5rem 6vw;
}

.section.accent {
  background: rgba(255,255,255,0.88);
}

.section-inner {
  max-width: 1120px;
  margin: 0 auto;
}

.section h2 {
  font-family: "Bebas Neue", system-ui;
  font-size: 2.4rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 0 0 0.8rem;
  color: var(--white);
  text-shadow: 0 3px 0 rgba(0,0,0,0.18);
}

.section.accent h2 {
  color: var(--orange);
}

.lead {
  font-size: 1.02rem;
  max-width: 38rem;
}

.grid {
  display: grid;
  gap: 1.6rem;
  margin-top: 2rem;
}

.grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.problem-list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.98rem;
}

.problem-list li {
  padding: 0.4rem 0;
}

.problem-card {
  background: linear-gradient(135deg, var(--blue), #32c6e7);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.8rem;
  box-shadow: var(--shadow-soft);
}

.stat {
  font-family: "Bebas Neue";
  font-size: 3.4rem;
  margin: 0;
  letter-spacing: 0.08em;
}

.stat-label {
  margin: 0.4rem 0 0.2rem;
}

.asterisk {
  font-size: 0.8rem;
  opacity: 0.9;
}

.cards .card {
  background: rgba(255,255,255,0.95);
  border-radius: var(--radius-lg);
  padding: 1.6rem 1.5rem 1.8rem;
  box-shadow: 0 14px 30px rgba(0,0,0,0.12);
}

.card.product img {
  width: 70%;
  max-width: 220px;
  display: block;
  margin: 0 auto 0.8rem;
}

.card.product h3 {
  margin: 0.2rem 0 0.4rem;
}

.card.product ul {
  padding-left: 1.1rem;
  margin: 0.4rem 0 0;
  font-size: 0.9rem;
}

.steps .step {
  background: rgba(255,255,255,0.96);
  border-radius: 1.4rem;
  padding: 1.3rem 1.2rem 1.4rem;
  box-shadow: 0 12px 24px rgba(0,0,0,0.14);
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: var(--orange);
  color: var(--white);
  font-weight: 800;
  font-size: 0.8rem;
  margin-bottom: 0.3rem;
}

.configurator {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 1.8rem;
  align-items: center;
}

.configurator-controls label {
  display: block;
  font-weight: 700;
  margin-bottom: 0.18rem;
}

.configurator-controls input[type="range"],
.configurator-controls select {
  width: 100%;
  margin-bottom: 0.8rem;
}

.fake-device {
  background: radial-gradient(circle at top, #ffffff, #f1ffe7 60%, #d6f763 100%);
  border-radius: 2.2rem;
  padding: 1.8rem 1.2rem;
  box-shadow: var(--shadow-soft);
  display: flex;
  align-items: center;
  justify-content: center;
}

.fake-device img {
  width: 75%;
}

.bone-spec {
  font-family: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 0.8rem;
  background: rgba(0,0,0,0.85);
  color: #e8ffe0;
  padding: 0.8rem 1rem;
  border-radius: 0.9rem;
  margin-top: 0.75rem;
  max-height: 220px;
  overflow: auto;
}

#reviews-grid .card {
  position: relative;
}

.review-name {
  font-weight: 700;
  margin-top: 0.6rem;
}

.review-tag {
  font-size: 0.8rem;
  opacity: 0.8;
}

.review-stars {
  color: #ffcc32;
  font-size: 1rem;
}

.faq-item {
  border-radius: 1rem;
  background: rgba(255,255,255,0.92);
  margin-bottom: 0.7rem;
  overflow: hidden;
  box-shadow: 0 10px 22px rgba(0,0,0,0.12);
}

.faq-question {
  background: transparent;
  padding: 0.85rem 1.1rem;
  width: 100%;
  text-align: left;
  border: none;
  font-weight: 700;
  cursor: pointer;
}

.faq-answer {
  display: none;
  padding: 0 1.1rem 0.85rem;
  border-top: 1px solid rgba(0,0,0,0.06);
  font-size: 0.9rem;
}

.faq-item.open .faq-answer {
  display: block;
}

.order {
  background: rgba(255,255,255,0.96);
}

.order-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: center;
}

.order-form {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1rem 0 0.4rem;
}

.order-form input[type="email"] {
  flex: 1 1 200px;
  border-radius: 999px;
  border: 2px solid rgba(0,0,0,0.12);
  padding: 0.6rem 0.9rem;
  font-family: inherit;
}

.order-card {
  background: linear-gradient(145deg, var(--blue), #12c2e9);
  border-radius: 2rem;
  color: var(--white);
  padding: 1.8rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-soft);
}

.order-card img {
  width: 70%;
  max-width: 220px;
}

.order-price {
  font-family: "Bebas Neue";
  font-size: 2.6rem;
  margin: 0.3rem 0 0;
}

.order-price span {
  display: block;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.order-copy {
  font-size: 0.9rem;
}

.site-footer {
  padding: 2rem 6vw 2.4rem;
  background: #102027;
  color: rgba(255,255,255,0.88);
}

.footer-inner {
  max-width: 1120px;
  margin: 0 auto;
  font-size: 0.86rem;
}

.footer-logo {
  font-family: "Bebas Neue";
  font-size: 1.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 0 0 0.3rem;
}

.footer-copy {
  margin: 0 0 0.3rem;
}

.footer-legal {
  opacity: 0.86;
  max-width: 54rem;
}

.footer-links a {
  color: rgba(255,255,255,0.9);
  text-decoration: none;
}

.footer-links a:hover {
  text-decoration: underline;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 80;
}

.modal-backdrop.open {
  display: flex;
}

.modal {
  background: #ffffff;
  border-radius: 1.5rem;
  padding: 1.8rem 1.6rem 1.6rem;
  max-width: 520px;
  box-shadow: var(--shadow-soft);
  position: relative;
}

.modal-close {
  position: absolute;
  top: 0.7rem;
  right: 0.9rem;
  border: none;
  background: transparent;
  font-size: 1.3rem;
  cursor: pointer;
}

.legal-list {
  padding-left: 1.2rem;
  font-size: 0.9rem;
}

@media (max-width: 900px) {
  .site-header {
    flex-wrap: wrap;
    gap: 0.6rem;
  }
  .nav-links {
    display: none;
  }
  .hero {
    grid-template-columns: minmax(0, 1fr);
    padding-top: 2.4rem;
  }
  .section {
    padding-inline: 5vw;
  }
  .order-inner {
    grid-template-columns: minmax(0, 1fr);
  }
  .configurator {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 600px) {
  .hero-card {
    padding-inline: 1.6rem;
  }
  .section h2 {
    font-size: 2rem;
  }
}
