:root {
  --green: #12ff46;
  --green-dark: #00c934;
  --panel: rgba(8, 8, 8, 0.90);
  --panel-2: rgba(12, 12, 12, 0.96);
  --text: #ffffff;
  --muted: #bfbfbf;
  --line: rgba(18, 255, 70, 0.16);
  --shadow: 0 28px 70px rgba(0, 0, 0, 0.34);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    linear-gradient(rgba(0,0,0,0.78), rgba(0,0,0,0.84)),
    url("assets/bg-podcast.jpg") center top / cover no-repeat fixed;
  min-height: 100vh;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.container {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
}

.site-header {
  width: min(1180px, calc(100% - 36px));
  margin: 18px auto 0;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-radius: 24px;
  background: rgba(7, 7, 7, 0.90);
  border: 1px solid rgba(18,255,70,0.16);
  backdrop-filter: blur(14px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.28);
  position: sticky;
  top: 14px;
  z-index: 50;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand img {
  width: 68px;
  height: 44px;
  object-fit: contain;
  filter: drop-shadow(0 0 14px rgba(18,255,70,0.14));
}

.brand small, .brand strong { display: block; }
.brand small {
  color: var(--muted);
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}
.brand strong { font-size: 1rem; }

.header-btn, .btn {
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  transition: 0.2s ease;
}

.header-btn {
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: #061106;
  box-shadow: 0 14px 26px rgba(18,255,70,0.22);
}

.header-btn:hover, .btn:hover { transform: translateY(-2px); }

.hero {
  padding: 56px 0 78px;
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  gap: 22px;
  align-items: start;
}

.panel {
  border-radius: 34px;
  background: linear-gradient(180deg, rgba(10,10,10,0.90), rgba(5,5,5,0.94));
  border: 1px solid rgba(18,255,70,0.12);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
}

.hero-left {
  padding: clamp(28px, 5vw, 54px);
}

.live-pill,
.section-title span,
.split-copy span,
.steps-box > span,
.form-kicker,
.final-cta span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--green);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(18,255,70,0.14);
}

h1, h2, h3, p { margin-top: 0; }

h1 {
  font-size: clamp(3rem, 5vw, 5.4rem);
  line-height: 0.92;
  letter-spacing: -0.07em;
  margin-bottom: 22px;
  text-transform: uppercase;
}

.subtitle {
  max-width: 660px;
  color: var(--muted);
  font-size: clamp(1.03rem, 1.5vw, 1.16rem);
  line-height: 1.72;
  margin-bottom: 24px;
}

.subtitle strong { color: #ffffff; }

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.tag-list span {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(18,255,70,0.08);
  border: 1px solid rgba(18,255,70,0.12);
  color: #efffef;
  font-weight: 800;
}

.cta-row { display: flex; flex-wrap: wrap; gap: 12px; }

.btn.primary {
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: #061106;
  box-shadow: 0 14px 26px rgba(18,255,70,0.18);
}

.btn.ghost {
  background: rgba(255,255,255,0.04);
  color: #ffffff;
  border: 1px solid rgba(18,255,70,0.14);
}

.hero-right {
  display: grid;
  gap: 22px;
}

.studio-card {
  padding: 22px;
}

.studio-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
}

.label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--green);
  font-weight: 900;
  letter-spacing: 0.10em;
}

.label::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--green);
}

.timer {
  color: #d4d4d4;
  font-weight: 700;
}

.screen-card {
  min-height: 230px;
  border-radius: 24px;
  background:
    radial-gradient(circle at top right, rgba(18,255,70,0.10), transparent 36%),
    rgba(255,255,255,0.03);
  border: 1px solid rgba(18,255,70,0.10);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.screen-logo {
  width: min(100%, 460px);
  filter: drop-shadow(0 0 18px rgba(18,255,70,0.12));
}

.player-ui {
  margin-top: 16px;
  padding: 14px 16px;
  border-radius: 20px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(18,255,70,0.10);
}

.controls {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.controls span {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.32);
}

.controls .play {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  position: relative;
}

.controls .play::after {
  content: "";
  position: absolute;
  left: 15px;
  top: 10px;
  width: 0;
  height: 0;
  border-left: 11px solid #071207;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
}

.wave {
  height: 62px;
  display: flex;
  align-items: end;
  gap: 6px;
}

.wave i {
  display: block;
  width: 10px;
  border-radius: 10px;
  background: linear-gradient(180deg, #7cff98, #0ed446);
}
.wave i:nth-child(1) { height: 24px; }
.wave i:nth-child(2) { height: 46px; }
.wave i:nth-child(3) { height: 32px; }
.wave i:nth-child(4) { height: 58px; }
.wave i:nth-child(5) { height: 40px; }
.wave i:nth-child(6) { height: 52px; }
.wave i:nth-child(7) { height: 28px; }
.wave i:nth-child(8) { height: 60px; }
.wave i:nth-child(9) { height: 35px; }
.wave i:nth-child(10) { height: 54px; }
.wave i:nth-child(11) { height: 30px; }
.wave i:nth-child(12) { height: 44px; }

.episode-list {
  margin-top: 16px;
  display: grid;
  gap: 12px;
}

.episode-item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 12px;
  padding: 14px;
  border-radius: 18px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(18,255,70,0.08);
}

.episode-item b {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(18,255,70,0.10);
  color: var(--green);
}

.episode-item p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.45;
}

.form-card {
  padding: 28px;
}

.form-card h2, .section-title h2, .split-copy h2, .final-cta h2 {
  font-size: clamp(2rem, 3.5vw, 3.5rem);
  line-height: 0.97;
  letter-spacing: -0.05em;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.form-card p, .benefit p, .split-copy li, .step-item p, .final-cta p {
  color: var(--muted);
  line-height: 1.68;
}

.capture-form {
  margin-top: 24px;
  display: grid;
  gap: 14px;
}

.capture-form label {
  display: grid;
  gap: 8px;
  font-weight: 800;
  color: #ffffff;
}

.capture-form input {
  min-height: 56px;
  border-radius: 16px;
  border: 1px solid rgba(18,255,70,0.12);
  background: rgba(255,255,255,0.05);
  padding: 0 15px;
  font: inherit;
  outline: none;
  color: #ffffff;
}

.capture-form input::placeholder { color: #9c9c9c; }

.capture-form input:focus {
  border-color: rgba(18,255,70,0.60);
  box-shadow: 0 0 0 4px rgba(18,255,70,0.12);
}

.capture-form button {
  min-height: 56px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: #061106;
  font-weight: 900;
  font-size: 1rem;
  cursor: pointer;
}

.capture-form small { color: var(--muted); line-height: 1.55; }

.quote-bar {
  background: rgba(6,6,6,0.82);
  border-top: 1px solid rgba(18,255,70,0.08);
  border-bottom: 1px solid rgba(18,255,70,0.08);
  backdrop-filter: blur(10px);
}

.quote-bar p {
  width: min(980px, calc(100% - 36px));
  margin: 0 auto;
  padding: 30px 0;
  text-align: center;
  font-size: clamp(1.16rem, 2vw, 1.65rem);
  line-height: 1.38;
  font-weight: 800;
}

.section { padding: 82px 0; }

.section-title {
  max-width: 760px;
  margin-bottom: 28px;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.benefit { padding: 24px; }
.benefit strong {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  background: rgba(18,255,70,0.10);
  color: var(--green);
}

.split-box {
  padding: clamp(28px, 5vw, 56px);
  display: grid;
  grid-template-columns: 1fr 0.92fr;
  gap: 34px;
}

.split-copy ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.split-copy li {
  display: flex;
  gap: 10px;
}
.split-copy li::before {
  content: "✓";
  color: var(--green);
  font-weight: 900;
}

.steps-box {
  border-radius: 28px;
  padding: 22px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(18,255,70,0.10);
}

.step-item {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 14px;
  padding: 16px 0;
  border-top: 1px solid rgba(18,255,70,0.10);
}

.step-item:first-of-type { border-top: 0; }

.step-item b {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(18,255,70,0.10);
  color: var(--green);
}

.final-cta {
  padding: clamp(28px, 5vw, 54px);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
}

.footer {
  padding: 10px 0 42px;
  text-align: center;
  color: var(--muted);
}

@media (max-width: 1160px) {
  .hero { grid-template-columns: 1fr; }
}

@media (max-width: 980px) {
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .split-box, .final-cta { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .container, .site-header { width: min(100% - 24px, 1180px); }
  .brand small { display: none; }
  .header-btn {
    min-height: 42px;
    padding: 0 16px;
    font-size: 0.85rem;
  }
  h1 { font-size: clamp(2.8rem, 14vw, 4.8rem); }
  .hero, .section { padding-top: 44px; }
  .panel, .split-box, .final-cta { border-radius: 28px; }
  .benefits-grid { grid-template-columns: 1fr; }
  .final-cta .btn { width: 100%; }
}
