body {
    margin: 0;
    font-family: system-ui, -apple-system, Arial, sans-serif;
    background: #f7f7f7;
    color: #333;
}

/* Container */

.container {
    max-width: 900px;
    margin: 20px auto 100px auto;
    padding: 40px;
    background: #fff;
    border: 1px solid #e3e3e3;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

@media (max-width: 600px) {
  .container {
    padding: 10px;
  } 
}
  
.logo {
  margin-bottom: 30px;
  text-align: center;
}

.logo img {
  max-width: 220px;
  height: auto;
}

/* Headline */

h1 {
    font-size: 1.8rem;
    margin-bottom: 0.5em;
}

.subtitle {
  font-size: 1.3rem;
    color: #4b4b4b;
    margin-bottom: 2rem;
}

/* Sections */

.section {
    margin-top: 80px;
}

.section h2 {
    font-size: 1.4rem;
    margin-bottom: 12px;
}

.section p {
    line-height: 1.6;
}

/* Lists */

ul {
    margin-top: 12px;
    padding-left: 20px;
    line-height: 1.7;
}
  
  .lead-magnet {
    display: grid;
    grid-template-columns: 1fr 2fr;
    grid-column-gap: 80px;
    padding: 40px;
  }
  
  .magnet-preview {
    text-align: center;
  }
  
  .magnet-preview img {
    display: inline-block;
    max-width: 245px;
  }
  
@media (max-width: 640px) {
  
  .lead-magnet {
    grid-template-columns: 1fr;
    padding: 40px 0;
  }
  
}

/* Roadmap image */

.roadmap {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 6px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
    margin-top: 20px;
}

/* Form */

.signup-form {
    margin-top: 24px;
}

.signup-form input {
    width: 100%;
    padding: 14px;
    font-size: 1rem;
    border-radius: 6px;
    border: 1px solid #ccc;
    margin-bottom: 10px;
  box-sizing: border-box;
}
  
/* Bio */
  
  .bio {
    display: grid;
    grid-template-columns: 2.2fr 0.8fr;
    grid-column-gap: 80px;
  }
  
  .bio img {
    max-width: 220px;
  }
  
@media (max-width: 640px) {
  
  .bio {
    grid-template-columns: 1fr;
  }
  
}

/* Bottom action bar */

.action-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #ffffff;
    border-top: 1px solid #ddd;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.06);
    padding: 12px;
    display: flex;
    gap: 20px;
    justify-content: center;
    box-sizing: border-box;
}

@media (max-width: 600px) {
  .action-bar {
    flex-direction: column;
  }
  
  .action-bar a.button {
    max-width: 100%;
  }
}

/* Buttons */

.buttons {
      display: flex;
      gap: 12px;
      justify-content: center;
      flex-wrap: wrap;
      margin-top: 26px;
    }

.button {
    flex: 1;
    max-width: 400px;
    padding: 14px;
    font-size: 1rem;
    text-align: center;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.15s ease;
    cursor: pointer;
    box-sizing: border-box;
}

/* Primary button */

.button-primary {
    background: #93c01f;
    color: #fff;
    font-weight: 600;
    border: none;
}

.button-primary:hover {
    background: #7fa71a;
}

.button-secondary {
  background: #ebedf0;
  color: #2f2f2f;
}

.button-secondary:hover {
  background: #dfe3e8;
}

  
/* Sticky signup form */

.sticky-form {
    display: flex;
    align-items: center;
    gap: 10px;
    max-width: 900px;
    width: 100%;
}

/* Label */

.sticky-label {
    font-weight: 600;
    color: #333;
    white-space: nowrap;
}

/* Email input */

.sticky-form input {
    flex: 1;
    padding: 12px;
    font-size: 0.95rem;
    border-radius: 6px;
    border: 1px solid #ccc;
  box-sizing: border-box;
}

/* Button */

.sticky-button {
    background: #93c01f;
    color: #fff;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    padding: 12px 18px;
    cursor: pointer;
    transition: background 0.15s ease;
    white-space: nowrap;
}

.sticky-button:hover {
    background: #7fa71a;
}
  
@media (max-width: 640px) {

  .sticky-form {
      flex-direction: column;
      align-items: stretch;
  }

  .sticky-label {
      display: none;
  }

  .sticky-button {
      width: 100%;
  }

}

.wrap {
      min-height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 24px;
    }

.card {
  width: 100%;
  max-width: 720px;
  background: #fff;
  border: 1px solid #e3e3e3;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  padding: 36px 28px;
  text-align: center;
}

.icon {
  font-size: 2.2rem;
  line-height: 1;
  margin-bottom: 12px;
}

.muted {
  color: #6b6b6b;;
}

.hint {
  margin-top: 20px;
  font-size: 0.95rem;
  color: #6b6b6b;
}

@media (max-width: 640px) {
  .card {
    padding: 28px 20px;
  }

  .button {
    width: 100%;
    min-width: 0;
  }
}

/* Video wrapper */

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 6px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

.video-wrapper iframe {
    position: absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    border:0;
}

.hero {
  display: grid;
  grid-template-columns: 1fr 2fr;
  grid-column-gap: 20px;
}

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

.check {
  color:#93c01f;
  font-weight:bold;
  font-size: 1.8rem;
  line-height: 1;
}