/* ============ Design tokens ============ */
:root {
  --accent: #f9a519;
  --accent-hover: #c9501f;
  --dark-green: #1c3629;
  --dark-green-2: #16281f;
  --cream: #f5f2ee;
  --text: #1c1c1c;
  --text-muted: #5a5a5a;
  --border: #e5e1da;
  --white: #ffffff;
  --radius: 8px;
  --max-width: 1180px;
  --font-heading: 'Poppins', 'Inter', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

h1, h2, h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 16px;
}

p { margin: 0 0 16px; }

a {
  color: inherit;
  text-decoration: none;
}

img, svg { display: block; max-width: 100%; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.text-accent { color: var(--accent); }

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

/* ============ Buttons & forms ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: var(--radius);
  padding: 14px 22px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  white-space: nowrap;
  transition: background-color 0.15s ease, transform 0.1s ease;
}

.btn--accent {
  background: var(--accent);
  color: var(--white);
}

.btn--accent:hover { background: var(--accent-hover); }
.btn--accent:active { transform: translateY(1px); }

.signup-form {
  display: flex;
  gap: 10px;
  max-width: 480px;
  margin-bottom: 10px;
}

.hero__cta {
  margin-bottom: 10px;
}

.signup-form--centered {
  margin-left: auto;
  margin-right: auto;
}

.signup-form__field {
  position: relative;
  flex: 1;
  min-width: 0;
}

.signup-form__icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  color: var(--text-muted);
  pointer-events: none;
}

.signup-form input[type="email"] {
  width: 100%;
  height: 100%;
  padding: 14px 14px 14px 38px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--white);
  outline: none;
  transition: border-color 0.15s ease;
}

.signup-form input[type="email"]:focus {
  border-color: var(--accent);
}

.signup-form input[type="email"]::placeholder {
  color: #9b9b9b;
}

.form-note {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.form-note--center { text-align: center; }

/* ============ Hero ============ */
.hero {
  padding: 96px 0 80px;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.hero__content h1 {
  font-size: clamp(2rem, 3.4vw, 2.75rem);
  max-width: 620px;
}

.hero__subtitle {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 520px;
}

.hero__past-editions {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 28px;
}

.hero__past-editions a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: underline;
}

.social-proof {
  display: flex;
  align-items: center;
  gap: 14px;
}

.social-proof p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.avatar-stack {
  display: flex;
}

.avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 2px solid var(--white);
  object-fit: cover;
  margin-left: -10px;
}

.avatar:first-child { margin-left: 0; }

.hero__media {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero__blob {
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: #f9a519;
  opacity: 0.9;
  z-index: 0;
  transform: translate(6%, 6%);
}

.hero__photo {
  position: relative;
  z-index: 1;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.deco-square {
  position: absolute;
  z-index: 2;
  width: 46px;
  height: 46px;
  background: var(--accent);
  border-radius: 8px;
}

.deco-square--tl {
  top: 4%;
  left: 4%;
  transform: rotate(-8deg);
}

.deco-square--br {
  bottom: 6%;
  right: 2%;
  transform: rotate(10deg);
}

/* ============ Featured In ============ */
.featured {
  padding: 40px 0 96px;
}

.featured__label {
  text-align: center;
  font-style: italic;
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-bottom: 32px;
}

.featured__logos {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 100px;
  margin: 0;
  padding: 0;
  color: var(--text);
}
.featured-logo img {
  width: 80px;
  opacity: 0.7;
  transition: all 0.20s ease-in-out;
}
.featured-logo img:hover {
  opacity: 1;
}

.logo {
  font-weight: 700;
  font-size: 1.4rem;
  letter-spacing: 0.02em;
  opacity: 0.85;
}

.logo--insider {
  font-size: 1.05rem;
  line-height: 1.1;
  text-align: center;
}

.logo--fortune { font-family: Georgia, 'Times New Roman', serif; font-size: 1.6rem; }

.logo--entrepreneur { font-family: Georgia, 'Times New Roman', serif; font-style: italic; font-size: 1.4rem; }
.logo--entrepreneur span { font-size: 0.7rem; vertical-align: super; font-style: normal; }

.logo--yahoo { display: flex; align-items: baseline; gap: 4px; font-size: 1.5rem; }
.logo__bang { color: var(--accent); }
.logo--yahoo small { font-size: 0.9rem; font-weight: 500; }

/* ============ Roadmap ============ */
.roadmap {
  background: var(--cream);
  padding: 96px 0;
}

.roadmap__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.roadmap__content h2 {
  font-size: clamp(1.8rem, 2.8vw, 2.3rem);
}

.roadmap__content p {
  color: var(--text-muted);
  max-width: 480px;
}

/* ---- laptop / tablet mockup (illustrative placeholder) ---- */
.mockup {
  position: relative;
  max-width: 460px;
  margin: 0 auto;
}

.mockup__laptop {
  background: #1b1e27;
  border-radius: 14px;
  padding: 10px 10px 0;
}

.mockup__screen {
  background: var(--white);
  border-radius: 6px;
  padding: 16px;
  min-height: 220px;
}

.mockup__row {
  height: 14px;
  border-radius: 4px;
  background: var(--border);
  margin-bottom: 10px;
}

.mockup__row--head {
  width: 45%;
  background: #cfd3d8;
}

.mockup__chart {
  margin-top: 16px;
  height: 90px;
  border-radius: 6px;
  background: linear-gradient(180deg, rgba(226,98,47,0.18), rgba(226,98,47,0.02));
  position: relative;
  overflow: hidden;
}

.mockup__chart::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 55%;
  background: linear-gradient(90deg, rgba(28,54,41,0.15), var(--dark-green));
  clip-path: polygon(0 80%, 15% 60%, 30% 70%, 45% 40%, 60% 55%, 75% 30%, 90% 45%, 100% 10%, 100% 100%, 0 100%);
}

.mockup__base {
  height: 12px;
  background: #2a2d38;
  border-radius: 0 0 10px 10px;
  margin-top: 8px;
}

.mockup__tablet {
  position: absolute;
  right: -8%;
  bottom: -10%;
  width: 46%;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px;
  box-shadow: 0 16px 32px rgba(0,0,0,0.12);
}

.mockup__row.small { height: 9px; margin-bottom: 7px; }

/* ============ Bio ============ */
.bio {
  padding: 96px 0;
}

.bio__inner {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 56px;
  align-items: center;
}

.bio__photo {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 12px 12px 0 0 var(--accent), 0 20px 40px rgba(0,0,0,0.12);
}

.bio__content h2 {
  font-size: clamp(1.8rem, 2.8vw, 2.3rem);
}

.bio__content p {
  color: var(--text-muted);
}

.bio__content strong { color: var(--text); }

/* ============ Final CTA ============ */
.final-cta {
  background: var(--cream);
  padding: 96px 0;
  text-align: center;
}

.final-cta__inner {
  max-width: 620px;
}

.final-cta h2 {
  font-size: clamp(1.8rem, 2.8vw, 2.3rem);
}

.final-cta p {
  color: var(--text-muted);
}

.final-cta .form-note { text-align: center; }

/* ============ Footer ============ */
.site-footer {
  background: var(--dark-green-2);
  color: rgba(255,255,255,0.9);
  padding: 72px 0 40px;
  text-align: center;
}

.site-footer__tagline {
  color: var(--white);
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  margin-bottom: 28px;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  color: rgba(255,255,255,0.75);
  transition: color 0.15s ease;
}

.social-icons a:hover { color: var(--white); }
.social-icons svg { width: 100%; height: 100%; }

.footer-links {
  display: flex;
  justify-content: center;
  gap: 8px;
  list-style: none;
  margin: 0 0 12px;
  padding: 0;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
}

.footer-links a:hover { color: var(--white); }

.footer-copyright {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  margin: 0;
}
#top-of-page {
	  background: #f9a519;
	  display: block;
	  height: 6px;
	  width: 100%;
}


/* ============ Responsive ============ */
@media (max-width: 900px) {
  .hero__inner,
  .roadmap__inner,
  .bio__inner {
    grid-template-columns: 1fr;
  }

  .hero__media { order: -1; margin-bottom: 24px; }
  .hero { padding: 56px 0; }
  .roadmap, .bio, .final-cta { padding: 64px 0; }
  .bio__photo { max-width: 360px; margin: 0 auto; }
  .featured__logos { gap: 32px; }
}

@media (max-width: 560px) {
  .signup-form {
    flex-direction: column;
  }
  .signup-form .btn { width: 100%; }
  .hero__photo { width: 240px; height: 240px; }
  .hero__blob { width: 260px; height: 260px; }
}
