:root {
  --bg-main: #0A0A0A;
  --text-main: #F5F5F5;
  --muted: rgba(245, 245, 245, 0.72);
  --accent: #D6B36A;
  --accent-soft: rgba(214, 179, 106, 0.18);
  --panel: rgba(255, 255, 255, 0.05);
  --border: rgba(214, 179, 106, 0.28);
  --shadow: rgba(0, 0, 0, 0.28);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Inter", system-ui, sans-serif;
  background: radial-gradient(circle at 18% 10%, rgba(214, 179, 106, 0.12), transparent 17%),
    radial-gradient(circle at 82% 18%, rgba(214, 179, 106, 0.08), transparent 22%),
    radial-gradient(circle at 50% 84%, rgba(255, 255, 255, 0.04), transparent 20%),
    var(--bg-main);
  color: var(--text-main);
  overflow-x: hidden;
}

#pixi-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.panel {
  position: relative;
  opacity: 0.99;
}

.logo {
  color: var(--text-main);
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.badge {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--border);
  color: var(--text-main);
  background: rgba(255, 255, 255, 0.05);
  padding: 0.55rem 1rem;
  border-radius: 999px;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

.hero-title {
  font-size: clamp(2.4rem, 6vw, 4.8rem);
  line-height: 1.06;
  letter-spacing: -0.03em;
  font-weight: 400;
  max-width: 12ch;
}

.section-title {
  font-size: clamp(1.9rem, 4vw, 3.2rem);
  line-height: 1.1;
  font-weight: 500;
}

p,
.lead-form label {
  color: var(--muted);
  line-height: 1.8;
}

.btn-primary,
.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1.4rem;
  border-radius: 1rem;
  transition: transform 0.24s ease, box-shadow 0.24s ease, background 0.24s ease;
  font-weight: 500;
  font-size: 0.95rem;
}

.btn-primary {
  background: linear-gradient(135deg, rgba(214, 179, 106, 0.96), rgba(255, 255, 255, 0.88));
  color: #0A0A0A;
  box-shadow: 0 18px 45px rgba(214, 179, 106, 0.18);
}

.btn-primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 22px 50px rgba(214, 179, 106, 0.26);
}

.btn-outline {
  border: 1px solid var(--border);
  color: var(--text-main);
  background: rgba(255, 255, 255, 0.04);
}

.btn-outline:hover {
  transform: translateY(-2px);
  border-color: rgba(214, 179, 106, 0.55);
}

.hero-visual {
  display: grid;
  gap: 1.4rem;
}

.hero-image-card {
  position: relative;
  border-radius: 1.6rem;
  overflow: hidden;
  border: 1px solid rgba(214, 179, 106, 0.22);
  background: rgba(255, 255, 255, 0.04);
  padding: 1rem;
  backdrop-filter: blur(12px);
}

.hero-image-label {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 1;
  font-size: 0.82rem;
  color: var(--text-main);
  background: rgba(10, 10, 10, 0.82);
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
}

.image-placeholder {
  min-height: 320px;
  border-radius: 1.3rem;
  background: radial-gradient(circle at 30% 20%, rgba(214, 179, 106, 0.18), transparent 32%),
    rgba(255, 255, 255, 0.04);
  border: 1px dashed rgba(214, 179, 106, 0.35);
  display: grid;
  place-items: center;
  color: rgba(245, 245, 245, 0.55);
  text-align: center;
  font-size: 0.95rem;
  padding: 2rem;
}

.hero-spotlight {
  display: grid;
  gap: 1rem;
}

.hero-copy-note {
  max-width: 320px;
  font-size: 0.96rem;
  color: var(--muted);
}

.pixi-float {
  width: fit-content;
  padding: 0.85rem 1.1rem;
  border-radius: 1.2rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(214, 179, 106, 0.24);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.16);
  font-size: 0.95rem;
  color: var(--text-main);
  animation: float 4.2s ease-in-out infinite;
}

.pixi-float.small {
  font-size: 0.85rem;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.problem-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}

.problem-card {
  padding: 1.6rem;
  border-radius: 1.4rem;
  border: 1px solid rgba(214, 179, 106, 0.18);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 18px 32px rgba(0, 0, 0, 0.18);
}

.problem-icon {
  width: 3rem;
  height: 3rem;
  display: grid;
  place-items: center;
  border-radius: 1rem;
  background: rgba(214, 179, 106, 0.12);
  color: var(--text-main);
  font-weight: 600;
  margin-bottom: 1rem;
}

.problem-card h3 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text-main);
}

.discovery-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr;
  gap: 1.5rem;
  align-items: center;
}

.discovery-visual {
  border-radius: 1.4rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(214, 179, 106, 0.18);
  padding: 1.2rem;
}

.discovery-visual p {
  margin-top: 1rem;
  color: var(--muted);
}

.solution-board {
  display: grid;
  grid-template-columns: 1.65fr 1fr;
  gap: 1.5rem;
  border: 1px solid rgba(214, 179, 106, 0.18);
  background: rgba(255, 255, 255, 0.05);
  padding: 1.8rem;
  border-radius: 1.6rem;
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.2);
}

.solution-mockup {
  border-radius: 1.4rem;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.03);
  padding: 1.2rem;
  border: 1px dashed rgba(214, 179, 106, 0.24);
}

.mockup-label {
  font-size: 0.85rem;
  margin-bottom: 1rem;
  color: var(--muted);
}

.solution-summary {
  display: grid;
  gap: 1rem;
  align-items: center;
}

.flow-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.flow-step {
  position: relative;
  z-index: 2;
  padding: 1.2rem 1rem;
  border-radius: 1rem;
  text-align: center;
  font-weight: 500;
  border: 1px solid rgba(214, 179, 106, 0.16);
  background: rgba(255, 255, 255, 0.05);
  display: grid;
  gap: 0.75rem;
  justify-items: center;
}

.step-icon {
  width: 2.6rem;
  height: 2.6rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(214, 179, 106, 0.14);
  color: var(--text-main);
  font-size: 0.85rem;
}

.flow-progress {
  position: absolute;
  z-index: 1;
  left: 0;
  top: 50%;
  height: 8px;
  width: 100%;
  transform: translateY(-50%);
  opacity: 0.35;
  background: linear-gradient(90deg, rgba(214, 179, 106, 0.45), rgba(255, 255, 255, 0.05));
  border-radius: 999px;
}

.offer-wrap {
  position: relative;
  border-radius: 1.6rem;
  border: 1px solid rgba(214, 179, 106, 0.22);
  background: rgba(255, 255, 255, 0.05);
  padding: clamp(1.4rem, 3vw, 2.6rem);
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.22);
}

.offer-wrap::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(214, 179, 106, 0.25), transparent 40%);
  filter: blur(12px);
  opacity: 0.8;
  z-index: -1;
}

.countdown {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.9rem;
}

.countdown div {
  border-radius: 1rem;
  border: 1px solid rgba(214, 179, 106, 0.18);
  background: rgba(255, 255, 255, 0.04);
  padding: 1rem;
  text-align: center;
}

.countdown span {
  display: block;
  font-family: "Inter", sans-serif;
  font-size: clamp(1.3rem, 2.5vw, 1.9rem);
  font-weight: 600;
  color: var(--text-main);
}

.countdown small {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.68rem;
  color: rgba(245, 245, 245, 0.65);
}

.offer-visual {
  margin-top: 2rem;
}

.offer-visual .image-placeholder {
  min-height: 260px;
}

.offer-visual p {
  margin-top: 1rem;
  color: var(--muted);
  text-align: center;
}

.price-card {
  border-radius: 1.3rem;
  border: 1px solid rgba(214, 179, 106, 0.18);
  background: rgba(255, 255, 255, 0.05);
  padding: 1.5rem;
  transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}

.price-card h3 {
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  font-weight: 500;
  margin: 0.75rem 0;
  font-family: "Inter", sans-serif;
  color: var(--text-main);
}

.price-card:hover {
  transform: translateY(-6px);
  border-color: rgba(214, 179, 106, 0.8);
  box-shadow: 0 28px 60px rgba(214, 179, 106, 0.14);
}

.lead-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.lead-visual {
  border-radius: 1.5rem;
  border: 1px solid rgba(214, 179, 106, 0.18);
  padding: 1.2rem;
  background: rgba(255, 255, 255, 0.05);
}

.lead-visual p {
  margin-top: 1rem;
  color: var(--muted);
}

.lead-form {
  display: grid;
  gap: 1rem;
  padding: 1.2rem;
  border-radius: 1.4rem;
  border: 1px solid rgba(214, 179, 106, 0.18);
  background: rgba(255, 255, 255, 0.05);
}

.lead-form label {
  display: grid;
  gap: 0.55rem;
  font-size: 0.9rem;
  color: var(--text-main);
}

.lead-form input {
  border-radius: 0.95rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-main);
  padding: 0.95rem 1rem;
  outline: none;
}

.lead-form input::placeholder {
  color: rgba(245, 245, 245, 0.45);
}

@media (max-width: 1024px) {
  .discovery-grid,
  .solution-board,
  .lead-grid,
  .flow-track,
  .problem-cards {
    grid-template-columns: 1fr;
  }

  .countdown {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: clamp(2.2rem, 8vw, 3.4rem);
  }

  .hero-visual,
  .flow-track,
  .lead-grid {
    gap: 1rem;
  }

  .btn-primary,
  .btn-outline {
    width: 100%;
  }

  .flow-track {
    grid-template-columns: 1fr;
  }

  .flow-progress {
    display: none;
  }

  .hero-image-card,
  .solution-board,
  .lead-grid {
    padding: 1.2rem;
  }
}
