:root{
  --bg: #0B0F1A;
  --panel: #121826;
  --text: #E8EDF5;
  --muted: #AAB3C5;
  --line: rgba(232,237,245,0.14);
  --focus: rgba(232,237,245,0.25);
}

*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin:0;
  font-family: "Urbanist", ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  background: var(--bg);
  color: var(--text);
  letter-spacing: 0.2px;
}

main{ min-height: 100vh; }

.hero{
  min-height: 100vh;
  display:flex;
  align-items:center;
  justify-content:center;
  position: relative;
  padding: 48px 18px 90px;
  transform: translateY(-60px);
}

.hero-inner{
  width: min(560px, 92vw);
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
  gap: 18px;
}

.logo{
  width: 170px;
  height: auto;
  opacity: 0.92;
  user-select: none;
  pointer-events: none;
}

.headline{
  margin: 6px 0 0;
  font-size: clamp(26px, 4.2vw, 44px);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.email-form{
  width: 100%;
  max-width: 500px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 8px;
  padding: 8px;
  margin: 0 auto;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(18,24,38,0.55);
  backdrop-filter: blur(10px);
}

.email-form input{
  flex: 1;
  background: transparent;
  border: 0;
  outline: none;
  color: var(--text);
  font-size: 14px;
  font-family: inherit;
  font-weight: 300;
  letter-spacing: 0.3px;
  padding: 12px 12px;
}

.email-form input::placeholder{ color: rgba(170,179,197,0.55); font-weight: 300; }

.email-form input:-webkit-autofill,
.email-form input:-webkit-autofill:hover,
.email-form input:-webkit-autofill:focus {
  -webkit-box-shadow: 0 0 0px 1000px #121826 inset;
  -webkit-text-fill-color: var(--text);
  caret-color: var(--text);
  border: 0;
  transition: background-color 5000s ease-in-out 0s;
}

.email-form button{
  border: 1px solid rgba(232,237,245,0.18);
  background: rgba(232,237,245,0.07);
  color: rgba(232,237,245,0.75);
  padding: 12px 18px;
  border-radius: 14px;
  font-size: 13px;
  font-family: inherit;
  font-weight: 400;
  letter-spacing: 0.4px;
  cursor: pointer;
  transition: transform 140ms ease, background 140ms ease, border-color 140ms ease, color 140ms ease;
}

.email-form button:hover{
  background: rgba(232,237,245,0.11);
  border-color: rgba(232,237,245,0.28);
  color: var(--text);
  transform: translateY(-1px);
}

.email-form input:focus{
  outline: none;
}
.email-form:focus-within{
  border-color: rgba(232,237,245,0.22);
  box-shadow: 0 0 0 6px var(--focus);
}

.microcopy{
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.scroll-cue{
  position: absolute;
  bottom: 36px;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: fit-content;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap: 8px;
  color: rgba(170,179,197,0.78);
  text-decoration: none;
  user-select: none;
}

.arrow{
  font-size: 18px;
  opacity: 0.85;
  animation: bounce 1.8s infinite;
}

.scroll-text{
  font-size: 12px;
  letter-spacing: 0.6px;
  text-transform: lowercase;
}

@keyframes bounce{
  0%,100%{ transform: translateY(0); }
  50%{ transform: translateY(8px); }
}

/* Learn section */
.learn{
  padding: 90px 18px 110px;
  background: linear-gradient(180deg, var(--bg), var(--panel));
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: center;
}

.learn-inner{
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  display:flex;
  flex-direction:column;
  gap: 34px;
  align-items: center;
}

.block{
  /* UPDATED: more padding + responsive so it doesn't blow out on mobile */
  padding: clamp(22px, 3.2vw, 38px);
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(11,15,26,0.35);
}

.block h2{
  margin: 0 0 12px;
  font-size: clamp(22px, 3.1vw, 34px);
  font-weight: 500;
  line-height: 1.1;
}

.block p{
  margin: 0;
  color: rgba(232,237,245,0.86);
  font-size: 16px;

  /* UPDATED: slightly more line height for readability */
  line-height: 1.65;
}

/* UPDATED: add breathing room between paragraphs inside boxes */
.block p + p{
  margin-top: 14px;
}

.tight{
  color: rgba(232,237,245,0.82);
}

.secondary{
  margin-top: 16px;
  background: rgba(18,24,38,0.65);
}

.sr-only{
  position:absolute;
  width:1px;
  height:1px;
  padding:0;
  margin:-1px;
  overflow:hidden;
  clip:rect(0,0,0,0);
  border:0;
}

/* Fade-in */
/* Fade-in (scroll-progress) */
/* Fade-in (scroll-progress controlled by JS) */
.fade-in{
  will-change: opacity, transform;
  backface-visibility: hidden;
}

.delay-1{}
.delay-2{}
.delay-3{}

/* Mobile stacking for the form */
@media (max-width: 520px){
  .email-form{
    flex-direction: column;
  }
  .email-form button{
    width: 100%;
  }
}

@media (max-width: 520px) {
  .hero {
    padding-top: 32px;
    padding-bottom: 80px;
    transform: translateY(-40px);
  }
  .hero-inner {
    gap: 14px;
  }
  .logo {
    width: 130px;
  }
}
.section-heading {
  font-size: clamp(28px, 5vw, 48px);
  font-weight: 600;
  margin: 0 auto;
  text-align: center;
  width: 100%;
}

.section-list {
  text-align: center;
  margin-top: -10px;
}

.section-list p {
  margin: 0;
  padding: 28px 0;
  font-size: clamp(22px, 3.5vw, 36px);
  font-weight: 300;
  color: rgba(232,237,245,0.75);
  line-height: 1.7;
}

.section-list p strong {
  font-weight: 500;
  color: var(--text);
}

.vision {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-top: 80px;
  width: 100%;
  text-align: center;
}

.vision-divider {
  width: 40px;
  height: 1px;
  background: rgba(232,237,245,0.2);
  margin-bottom: 24px;
}

.vision-eyebrow {
  margin: 0;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(232,237,245,0.4);
}

.vision-title {
  margin: 0;
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--text);
}

.vision-sub {
  margin: 0;
  font-size: clamp(15px, 2vw, 18px);
  font-weight: 300;
  color: rgba(232,237,245,0.5);
  max-width: 420px;
  line-height: 1.6;
}

.vision-img {
  width: 100%;
  max-width: 560px;
  height: auto;
  border-radius: 18px;
  opacity: 0.95;
  margin-top: 16px;
}

.features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  width: 100%;
  max-width: 560px;
  margin-top: 12px;
}

.feature {
  padding: clamp(18px, 2.5vw, 26px);
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(11,15,26,0.35);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.feature-icon {
  font-size: 20px;
  opacity: 0.8;
}

.feature i, .feature svg {
  width: 20px;
  height: 20px;
  stroke: rgba(232,237,245,0.5);
  stroke-width: 1.5;
  flex-shrink: 0;
}

.feature-title {
  margin: 0;
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
}

.feature-desc {
  margin: 0;
  font-size: 13px;
  font-weight: 300;
  color: rgba(232,237,245,0.55);
  line-height: 1.6;
}

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

.features-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: 100%;
  text-align: center;
  margin-top: 60px;
}

.story-block {
  width: 100%;
  max-width: 560px;
  text-align: left;
}

.story-text {
  margin: 0 0 20px;
  font-size: clamp(15px, 2vw, 17px);
  font-weight: 300;
  color: rgba(232,237,245,0.72);
  line-height: 1.75;
}

.story-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.story-list li {
  padding-left: 20px;
  position: relative;
  font-size: clamp(15px, 2vw, 17px);
  font-weight: 300;
  color: rgba(232,237,245,0.72);
  line-height: 1.6;
}

.story-list li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: rgba(232,237,245,0.3);
}

.cta-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  width: 100%;
  text-align: center;
  margin-top: 60px;
  padding-bottom: 60px;
}

.cta-sub {
  margin: 0;
  font-size: clamp(15px, 2vw, 18px);
  font-weight: 300;
  color: rgba(232,237,245,0.55);
  max-width: 420px;
  line-height: 1.6;
}

.cta-email {
  margin: 0;
  font-size: 14px;
  font-weight: 300;
  color: rgba(232,237,245,0.5);
  line-height: 1.8;
}

.cta-email a {
  color: rgba(232,237,245,0.75);
  text-decoration: none;
  border-bottom: 1px solid rgba(232,237,245,0.2);
  transition: color 140ms ease, border-color 140ms ease;
}

.cta-email a:hover {
  color: var(--text);
  border-color: rgba(232,237,245,0.5);
}

.cta-form {
  margin-top: 8px;
}

.story-text--highlight {
  font-size: clamp(18px, 2.5vw, 22px) !important;
  font-weight: 500 !important;
  color: var(--text) !important;
}

.story-block .story-text + .story-text {
  margin-top: 12px;
}

.story-block .story-list {
  margin-top: 28px;
}

.story-list--clean {
  gap: 20px;
}

.story-list--clean li {
  font-size: clamp(18px, 2.8vw, 26px);
  font-weight: 500;
  color: var(--text);
  padding-left: 0;
  letter-spacing: -0.01em;
}

.story-list--clean li::before {
  display: none;
}

.vision-notes {
  width: 100%;
  max-width: 560px;
  text-align: left;
  margin-top: 8px;
}

.vision-notes-intro {
  margin: 0 0 16px;
  font-size: 15px;
  font-weight: 300;
  color: rgba(232,237,245,0.45);
  letter-spacing: 0.2px;
}

.vision-notes-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.vision-notes-list li {
  font-size: clamp(14px, 1.8vw, 16px);
  font-weight: 300;
  color: rgba(232,237,245,0.7);
  line-height: 1.5;
}

.vision-notes-list li strong {
  font-weight: 600;
  color: var(--text);
}

/* Badge */
.badge {
  display: inline-block;
  padding: 6px 14px;
  border: 1px solid rgba(232,237,245,0.15);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(232,237,245,0.45);
  margin-bottom: 4px;
}

/* Mid CTA */
.mid-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  width: 100%;
  max-width: 500px;
  margin: 20px auto 0;
}

/* Price + Timeline grid */
.expect-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  width: 100%;
  max-width: 560px;
  margin-top: 8px;
}

.expect-card {
  padding: clamp(18px, 2.5vw, 28px);
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(11,15,26,0.35);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.expect-label {
  margin: 0;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(232,237,245,0.35);
}

.expect-value {
  margin: 0;
  font-size: clamp(26px, 4vw, 36px);
  font-weight: 600;
  color: var(--text);
  line-height: 1.1;
}

.expect-note {
  margin: 4px 0 0;
  font-size: 13px;
  font-weight: 300;
  color: rgba(232,237,245,0.5);
  line-height: 1.6;
}

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


/* Signup count */
.signup-count {
  margin: 0;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(232,237,245,0.3);
}

.cta-email-addr {
  color: rgba(232,237,245,0.75);
  font-style: italic;
}

/* FAQ Accordion */
.faq-item {
  border-bottom: 1px solid var(--line);
  border-top: none;
  padding: 0;
}

.faq-item:first-child {
  border-top: 1px solid var(--line);
}

.faq-q {
  width: 100%;
  background: none;
  border: none;
  color: var(--text);
  font-family: inherit;
  font-size: 15px;
  font-weight: 500;
  text-align: left;
  padding: 20px 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.faq-icon {
  font-size: 20px;
  font-weight: 300;
  color: rgba(232,237,245,0.4);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-q[aria-expanded="true"] .faq-icon {
  transform: rotate(45deg);
  color: var(--text);
}

.faq-a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s ease;
}

.faq-a p {
  overflow: hidden;
  margin: 0;
  padding-bottom: 0;
  font-size: 14px;
  font-weight: 300;
  color: rgba(232,237,245,0.55);
  line-height: 1.65;
  transition: padding-bottom 0.35s ease;
}

.faq-a.open {
  grid-template-rows: 1fr;
}

.faq-a.open p {
  padding-bottom: 20px;
}

/* Force consistent FAQ button size */
.faq-list .faq-q {
  font-size: 15px !important;
  font-weight: 500 !important;
  padding: 20px 0 !important;
}

.vision .faq-list {
  width: 100%;
  align-self: stretch;
}

.vision .faq-item {
  width: 100%;
}

.vision .faq-q {
  width: 100%;
  font-size: 15px !important;
  font-weight: 500 !important;
}

.cta-email-link {
  color: rgba(232,237,245,0.75);
  text-decoration: none;
  border-bottom: 1px solid rgba(232,237,245,0.2);
  transition: color 140ms ease, border-color 140ms ease;
}

.cta-email-link:hover {
  color: var(--text);
  border-color: rgba(232,237,245,0.5);
}

/* Subscriber counter */
.subscriber-count {
  font-size: 12px;
  font-weight: 400;
  color: rgba(232,237,245,0.35);
  margin: 4px 0 0;
  letter-spacing: 0.01em;
}