body {
  margin: 0;
  background:
    radial-gradient(circle at top, rgba(0, 184, 255, 0.12), transparent 26%),
    radial-gradient(circle at 20% 20%, rgba(110, 0, 255, 0.12), transparent 30%),
    linear-gradient(180deg, #090012 0%, #050207 58%, #030304 100%);
  color: white;
  text-align: center;
  font-family: "Segoe UI", Arial, sans-serif;
  min-height: 100vh;
}

.page-shell {
  width: min(1120px, calc(100vw - 40px));
  margin: 0 auto;
  padding: 52px 0 96px;
}

.hero {
  margin-top: 28px;
}

.hero-text {
  max-width: 760px;
  margin: 0 auto;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 10px;
}

.brand-mark {
  width: 34px;
  height: auto;
  display: block;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.24));
  transform: translateY(1px);
}

.brand-name {
  font-size: 29px;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: rgba(255,255,255,0.98);
  line-height: 1;
}

.brand-eyebrow {
  display: inline-flex;
  margin-bottom: 14px;
}

.eyebrow {
  display: inline-block;
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.04);
  color: rgba(195, 232, 255, 0.92);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-text h1 {
  margin: 18px 0 10px;
  font-size: clamp(42px, 7vw, 74px);
  line-height: 0.95;
  font-weight: 800;
  letter-spacing: -0.04em;
  text-wrap: balance;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.28);
}

.hero-text p {
  margin: 0;
  font-size: clamp(18px, 3vw, 26px);
  font-weight: 600;
  color: rgba(255,255,255,0.96);
}

.hero-text .sub {
  display: block;
  max-width: 620px;
  margin: 14px auto 0;
  font-size: 15px;
  line-height: 1.65;
  color: rgba(255,255,255,0.72);
  text-wrap: balance;
}

.hero-price {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(116, 217, 255, 0.18);
  background: linear-gradient(135deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.05);
}

.hero-price-label {
  color: rgba(255,255,255,0.68);
  font-size: 13px;
}

.hero-price-value {
  color: rgba(255,255,255,0.96);
  font-size: 14px;
  font-weight: 700;
}

#master-box {
  width: min(900px, 100%);
  height: 260px;
  margin: 72px auto 22px;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  background: linear-gradient(135deg, rgba(22, 0, 43, 0.96), rgba(3, 3, 5, 0.98));
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow:
    0 0 60px rgba(60, 0, 120, 0.24),
    inset 0 0 32px rgba(114, 0, 255, 0.08);
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

#master-box:hover {
  transform: translateY(-2px);
  border-color: rgba(130, 220, 255, 0.22);
  box-shadow:
    0 16px 60px rgba(12, 0, 26, 0.42),
    0 0 72px rgba(60, 0, 120, 0.22),
    inset 0 0 36px rgba(114, 0, 255, 0.1);
}

.thinking-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: radial-gradient(
    ellipse at center,
    rgba(120, 0, 255, 0.2),
    rgba(0, 200, 255, 0.08),
    transparent 70%
  );
  filter: blur(40px);
  opacity: 0.5;
  animation: slowWave 18s ease-in-out infinite;
  pointer-events: none;
  z-index: 1;
}

@keyframes slowWave {
  0% { transform: translateY(20px) scaleX(1.2); }
  50% { transform: translateY(-20px) scaleX(1.4); }
  100% { transform: translateY(20px) scaleX(1.2); }
}

#heroWave {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 2;
  pointer-events: none;
}

#playhead {
  position: absolute;
  top: 0;
  width: 2px;
  height: 100%;
  background: white;
  z-index: 6;
  display: none;
}

.center-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 20px;
  font-weight: 500;
  color: rgba(255,255,255,0.95);
  z-index: 7;
  text-align: center;
  pointer-events: none;
  width: min(82%, 520px);
}

.top-info {
  position: absolute;
  top: 10px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  padding: 0 25px;
  font-size: 12px;
  z-index: 7;
  color: rgba(255,255,255,0.88);
}

.box-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.box-brand-mark {
  width: 18px;
  height: auto;
  display: block;
  opacity: 0.95;
  flex: 0 0 auto;
}

.active-info {
  display: flex;
  align-items: center;
  gap: 6px;
}

.dot {
  width: 8px;
  height: 8px;
  background: #00ff66;
  border-radius: 50%;
  box-shadow: 0 0 10px #00ff66;
}

.toggle {
  position: absolute;
  bottom: 10px;
  left: 20px;
  font-size: 12px;
  z-index: 10;
}

.player-controls {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
}

.player-controls button {
  min-width: 44px;
  height: 36px;
  padding: 0 12px;
  border-radius: 18px;
  border: none;
  background: rgba(255,255,255,0.1);
  color: white;
  cursor: pointer;
  font-size: 16px;
  line-height: 1;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
  transition: transform 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.player-controls button:hover {
  transform: translateY(-1px);
  background: rgba(255,255,255,0.16);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.12),
    0 10px 24px rgba(0,0,0,0.26);
}

.extra-controls {
  position: absolute;
  right: 15px;
  bottom: 10px;
  display: flex;
  gap: 10px;
  z-index: 10;
}

.extra-controls button {
  padding: 8px 16px;
  border-radius: 12px;
  border: 1px solid rgba(112, 218, 255, 0.28);
  background: linear-gradient(135deg, rgba(0, 181, 255, 0.22), rgba(119, 73, 255, 0.18));
  color: white;
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.12),
    0 12px 30px rgba(0, 40, 80, 0.24);
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.extra-controls button:hover {
  transform: translateY(-1px);
  border-color: rgba(155, 231, 255, 0.46);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.16),
    0 16px 34px rgba(0, 60, 110, 0.28);
}

.extra-controls button:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

#master-box * {
  pointer-events: auto;
}

.trust-strip {
  max-width: 760px;
  margin: 0 auto 48px;
  padding: 18px 22px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255,255,255,0.045), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
}

.trust-strip p {
  margin: 0;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255,255,255,0.72);
}

.section-heading {
  max-width: 720px;
  margin: 0 auto 26px;
}

.section-heading h2 {
  margin: 14px 0 0;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  text-wrap: balance;
}

.steps-section {
  margin-top: 72px;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.step-card {
  padding: 24px;
  border-radius: 22px;
  text-align: left;
  background: linear-gradient(180deg, rgba(255,255,255,0.055), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.05),
    0 12px 32px rgba(0,0,0,0.14);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.step-card:hover {
  transform: translateY(-3px);
  border-color: rgba(121, 219, 255, 0.24);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.06),
    0 18px 38px rgba(0,0,0,0.18);
}

.step-card h3 {
  margin: 0 0 10px;
  font-size: 24px;
}

.step-card p {
  margin: 0;
  line-height: 1.65;
  color: rgba(255,255,255,0.7);
  font-size: 14px;
}

.pricing-section {
  margin-top: 86px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.price-card {
  padding: 28px;
  border-radius: 24px;
  text-align: left;
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.05),
    0 12px 32px rgba(0,0,0,0.14);
}

.price-card-featured {
  border-color: rgba(116, 217, 255, 0.22);
  background: linear-gradient(180deg, rgba(0, 183, 255, 0.09), rgba(255,255,255,0.03));
}

.price-kicker {
  display: inline-block;
  margin-bottom: 16px;
  color: rgba(123, 214, 255, 0.88);
  font-size: 12px;
  letter-spacing: 0.12em;
  font-weight: 700;
  text-transform: uppercase;
}

.price-card h3 {
  margin: 0 0 12px;
  font-size: clamp(34px, 5vw, 48px);
  line-height: 0.95;
  letter-spacing: -0.04em;
}

.price-card h3 span {
  font-size: 18px;
  font-weight: 600;
  color: rgba(255,255,255,0.72);
  margin-left: 6px;
}

.price-card p {
  margin: 0;
  line-height: 1.7;
  color: rgba(255,255,255,0.72);
  font-size: 14px;
}

.price-note {
  display: inline-block;
  margin-top: 18px;
  color: rgba(255,255,255,0.92);
  font-size: 13px;
  font-weight: 600;
}

.project-note {
  max-width: 820px;
  margin: 86px auto 0;
  padding: 34px 28px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.018));
  border: 1px solid rgba(255,255,255,0.08);
}

.project-note p {
  margin: 0 auto;
  max-width: 700px;
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255,255,255,0.74);
}

.site-footer {
  margin-top: 42px;
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.site-footer a {
  color: rgba(142, 219, 255, 0.9);
  text-decoration: none;
  font-size: 14px;
}

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

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 60;
}

.cookie-banner-card {
  width: min(760px, 100%);
  margin: 0 auto;
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(8, 8, 12, 0.94);
  box-shadow:
    0 22px 50px rgba(0,0,0,0.35),
    inset 0 1px 0 rgba(255,255,255,0.05);
  backdrop-filter: blur(12px);
}

.cookie-banner-card p {
  margin: 0;
  text-align: left;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255,255,255,0.82);
}

.cookie-banner-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 14px;
  flex-wrap: wrap;
}

.cookie-banner-actions a,
.cookie-banner-actions button {
  border-radius: 10px;
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.cookie-banner-actions a {
  color: rgba(142, 219, 255, 0.94);
}

.cookie-banner-actions button {
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.05);
  color: white;
  cursor: pointer;
}

#cookieAcceptBtn {
  border-color: rgba(112, 218, 255, 0.28);
  background: linear-gradient(135deg, rgba(0, 181, 255, 0.22), rgba(119, 73, 255, 0.18));
}

.legal-page {
  width: min(860px, calc(100vw - 32px));
  margin: 0 auto;
  padding: 48px 0 80px;
}

.legal-card {
  padding: 32px 28px;
  text-align: left;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.05),
    0 12px 32px rgba(0,0,0,0.14);
}

.legal-back {
  display: inline-block;
  margin-bottom: 18px;
  color: rgba(142, 219, 255, 0.94);
  text-decoration: none;
}

.legal-back:hover {
  text-decoration: underline;
}

.legal-card h1 {
  margin: 0 0 8px;
  font-size: clamp(34px, 6vw, 52px);
  line-height: 0.96;
  letter-spacing: -0.04em;
}

.legal-date {
  margin: 0 0 28px;
  color: rgba(255,255,255,0.58);
  font-size: 14px;
}

.legal-card h2 {
  margin: 24px 0 10px;
  font-size: 22px;
}

.legal-card p {
  margin: 0;
  color: rgba(255,255,255,0.78);
  line-height: 1.75;
  font-size: 15px;
}

.paywall-modal {
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at top, rgba(0, 180, 255, 0.08), transparent 24%),
    rgba(0, 0, 0, 0.78);
  display: grid;
  place-items: center;
  z-index: 50;
  backdrop-filter: blur(14px);
}

.paywall-card {
  width: min(420px, calc(100vw - 32px));
  padding: 28px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(22, 0, 43, 0.98), rgba(7, 7, 7, 0.98));
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow:
    0 28px 80px rgba(0,0,0,0.44),
    inset 0 1px 0 rgba(255,255,255,0.05);
  text-align: left;
}

.paywall-card h2 {
  margin: 0 0 10px;
}

.paywall-card p {
  margin: 0 0 16px;
  color: rgba(255,255,255,0.78);
  line-height: 1.5;
}

.paywall-card input {
  width: 100%;
  box-sizing: border-box;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.05);
  color: white;
  font-size: 14px;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.paywall-card input:focus {
  border-color: rgba(115, 223, 255, 0.44);
  background: rgba(255,255,255,0.07);
  box-shadow: 0 0 0 4px rgba(0, 172, 255, 0.1);
}

.paywall-error {
  min-height: 20px;
  margin-top: 10px;
  color: #ff8c8c;
  font-size: 13px;
}

.paywall-legal {
  margin: 12px 0 0;
  font-size: 12px;
  line-height: 1.6;
  color: rgba(255,255,255,0.62);
}

.paywall-legal a {
  color: rgba(142, 219, 255, 0.92);
  text-decoration: none;
}

.paywall-legal a:hover {
  text-decoration: underline;
}

.paywall-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 18px;
}

.paywall-actions button {
  padding: 10px 14px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.05);
  color: white;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.paywall-actions button:hover {
  transform: translateY(-1px);
  background: rgba(255,255,255,0.09);
  border-color: rgba(255,255,255,0.24);
}

#confirmPaywallBtn {
  border-color: rgba(112, 218, 255, 0.3);
  background: linear-gradient(135deg, rgba(0, 181, 255, 0.24), rgba(119, 73, 255, 0.2));
}

@media (max-width: 920px) {
  .page-shell {
    width: calc(100vw - 28px);
    padding: 28px 0 72px;
  }

  .hero {
    margin-top: 8px;
  }

  .brand-name {
    font-size: 26px;
  }

  #master-box {
    height: 240px;
    margin-top: 52px;
  }

  .steps-grid {
    grid-template-columns: 1fr;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .hero-text .sub,
  .trust-strip p,
  .project-note p,
  .step-card p {
    font-size: 14px;
  }

  .brand-lockup {
    gap: 12px;
    margin-bottom: 16px;
  }

  .brand-mark {
    width: 30px;
    transform: translateY(1px);
  }

  .brand-name {
    font-size: 24px;
  }

  #master-box {
    height: 224px;
    border-radius: 20px;
  }

  .top-info {
    padding: 0 16px;
    font-size: 11px;
  }

  .box-brand {
    gap: 8px;
  }

  .box-brand-mark {
    width: 15px;
  }

  .player-controls {
    gap: 8px;
  }

  .player-controls button {
    min-width: 40px;
    height: 34px;
    padding: 0 10px;
  }

  .toggle {
    left: 14px;
    bottom: 12px;
  }

  .extra-controls {
    right: 12px;
    bottom: 10px;
  }

  .center-text {
    font-size: 17px;
  }

  .hero-price {
    flex-direction: column;
    gap: 4px;
    border-radius: 18px;
  }

  .cookie-banner {
    left: 12px;
    right: 12px;
    bottom: 12px;
  }

  .cookie-banner-card {
    padding: 14px;
  }

  .cookie-banner-actions {
    justify-content: flex-start;
  }

  .legal-card {
    padding: 24px 18px;
  }
}
