@import url('https://fonts.googleapis.com/css2?family=Saira:wght@400;700&display=swap');

body,
.hero-container,
.hero-text h1,
.hero-text .gray,
.subtext,
.hero-buttons,
.yellow-btn,
.white-btn {
  font-family: 'Saira', 'Share Tech Mono', monospace;
}

body {
  margin: 0;
  padding: 0;
  background-color: #fff;
  font-family: 'Saira', 'Share Tech Mono', monospace;
  font-size: 1rem;
}

.background-dots {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 0;
  pointer-events: none;
  background-image: radial-gradient(#ccc 1px, transparent 1px);
  background-size: 20px 20px;
  background-color: #f7f8fa;
}

.main-navbar,
.hero-container {
  position: relative;
  z-index: 1;
}

.main-navbar {
  width: 100vw;
  border-radius: 0;
  margin: 0;
  max-width: 100vw;
  padding: 0 16px;
  height: 56px;
  display: flex;
  align-items: center;
  background: #fff;
  box-shadow: 0 1px 6px 0 rgba(0, 0, 0, 0.04), 0 0 0 1px #eee;
}

.navbar-inner {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.navbar-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
  justify-content: center;
}

.navbar-logo-img {
  width: 32px;
  height: 32px;
  max-width: 100%;
  object-fit: contain;
  border-radius: 6px;
  background: #fff;
  margin-right: 0;
  display: inline-block;
  vertical-align: middle;
}

.navbar-logo-img-small {
  width: 22px;
  height: 22px;
  max-width: 100%;
  object-fit: contain;
  border-radius: 4px;
  background: #fff;
  margin-right: 8px;
  display: inline-block;
}

.logo-text {
  font-size: 1.1rem;
  font-weight: 700;
  color: #111;
  margin-left: 6px;
  display: inline-block;
  vertical-align: middle;
  text-decoration: none;
}

.mobile-menu-btn {
  display: block;
  background: none;
  border: none;
  color: #111;
  font-size: 2rem;
  cursor: pointer;
  padding: 8px;
  margin: 0;
  flex-shrink: 0;
}

.navbar-links {
  display: none;
  position: absolute;
  top: 56px;
  left: 0;
  width: 100vw;
  background: #fff;
  flex-direction: column;
  gap: 0;
  padding: 0;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  z-index: 100;
}

.navbar-links.active {
  display: flex;
}

.navbar-links li {
  width: 100%;
  justify-content: center;
}

.navbar-links a {
  padding: 14px 0;
  width: 100%;
  text-align: center;
  border-bottom: 1px solid #ececec;
  font-size: 1.05rem;
  color: #111;
  font-weight: 700;
  text-decoration: none;
}

.navbar-actions {
  flex-direction: row;
  width: auto;
  justify-content: flex-end;
  margin-top: 0;
  gap: 8px;
  flex-shrink: 0;
}

.hero-container {
  padding: 160px 4vw 24px 4vw;
  width: 100vw;
  max-width: none;
  margin: 0;
  box-sizing: border-box;
}

.hero-content-box {
  max-width: 100vw;
  margin: 0 auto;
  padding: 0;
  box-sizing: border-box;
}

.early-access-label {
  font-size: 0.9rem;
  padding: 6px 18px;
  margin-bottom: 14px;
  background: linear-gradient(90deg, #f1f536 0%, #f1f536 100%);
  color: #000000;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: 0 2px 12px 0 #ffe06644;
  display: inline-block;
  letter-spacing: 0.01em;
}

.hero-text h1 {
  font-size: 2rem;
  line-height: 1.2;
  color: #000;
  margin: 0 0 12px 0;
}

.hero-text .gray {
  color: #999;
}

.subtext {
  font-size: 1rem;
  color: #333;
  margin-top: 12px;
  line-height: 1.5;
}

.hero-buttons {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

.yellow-btn,
.white-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  padding: 14px 22px;
  font-size: 1rem;
  border-radius: 10px;
}

.audience-section {
  background: #fff;
  padding: 44px 0 44px 0;
}

.audience-container {
  max-width: 100vw;
  margin: 0 auto;
  padding: 0 16px;
}

.audience-title {
  text-align: center;
  font-size: 1.4rem;
  font-weight: 900;
  color: #111;
  margin-bottom: 32px;
  letter-spacing: -0.5px;
}

.audience-cards {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: center;
}

.audience-card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(44, 62, 80, 0.06);
  padding: 24px 16px 20px 16px;
  min-width: 0;
  max-width: calc(100vw - 32px);
  width: calc(100% - 32px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border: 1.5px solid #e5e7eb;
  margin: 0 16px;
}

.audience-label {
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #b59f00;
  background: #f1f536;
  margin-bottom: 8px;
  padding: 2px 10px;
  border-radius: 6px;
  display: inline-block;
}

.audience-headline {
  font-size: 1.1rem;
  font-weight: 800;
  color: #111;
  margin-bottom: 12px;
  letter-spacing: -0.3px;
}

.audience-list {
  list-style: none;
  padding: 0;
  margin: 0 0 18px 0;
}

.audience-list li {
  font-size: 1rem;
  color: #222;
  margin-bottom: 7px;
  position: relative;
  padding-left: 22px;
  line-height: 1.5;
}

.audience-list li:before {
  content: '\2713';
  color: #b59f00;
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 0;
}

.audience-btn.yellow-btn {
  width: 100%;
  font-size: 1rem;
  padding: 13px 0;
  border-radius: 8px;
  justify-content: center;
  text-align: center;
}

.why-early-section {
  background: #fff;
  padding: 44px 0 44px 0;
}

.why-early-container {
  max-width: 100vw;
  margin: 0 auto;
  padding: 0 16px;
}

.why-early-title {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 1.3rem;
  font-weight: 900;
  color: #111;
  margin-bottom: 32px;
  letter-spacing: -0.5px;
  gap: 10px;
}

.why-early-cards {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: center;
}

.why-early-card {
  background: #f7f8fa;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(44, 62, 80, 0.04);
  padding: 22px 12px 18px 12px;
  min-width: 0;
  max-width: calc(100vw - 32px);
  width: calc(100% - 32px);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border: 1px solid #ececec;
  margin: 0 16px;
}

.why-early-card-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: #111;
  margin-bottom: 8px;
}

.why-early-card-desc {
  font-size: 0.98rem;
  color: #222;
  line-height: 1.5;
}

.quote-section {
  position: relative;
  background: #fff;
  padding: 44px 0 44px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 1;
}

.quote-bg-effect {
  display: none;
}

.quote-box {
  position: relative;
  z-index: 1;
  background: #f7f8fa;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(44, 62, 80, 0.04);
  border: 1px solid #ececec;
  max-width: 98vw;
  margin: 0 auto;
  padding: 28px 8vw 22px 8vw;
  text-align: center;
}

.quote-box blockquote {
  font-size: 1.05rem;
  font-style: italic;
  color: #374151;
  margin-bottom: 1rem;
  font-weight: 500;
}

.quote-box cite {
  color: #6b7280;
  font-size: 0.98rem;
  font-style: normal;
}

.boxed-dots-section {
  position: relative;
  background: transparent;
  padding: 44px 0 44px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 320px;
  z-index: 1;
}

.boxed-dots-bg {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 98vw;
  max-width: 100vw;
  height: 100%;
  background: #111;
  border-radius: 10px;
  z-index: 0;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.12);
  background-image: radial-gradient(rgba(255, 255, 255, 0.16) 1px, transparent 1px);
  background-size: 20px 20px;
}

.boxed-dots-content {
  position: relative;
  z-index: 1;
  max-width: 98vw;
  margin: 0 auto;
  padding: 44px 4vw 32px 4vw;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.boxed-dots-headline {
  color: #fff;
  font-size: 1.3rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}

.boxed-dots-subheadline {
  color: #bdbdbd;
  font-size: 1rem;
  font-weight: 500;
  text-align: center;
  margin-bottom: 28px;
  letter-spacing: -0.3px;
}

.boxed-dots-ctas {
  display: flex;
  flex-direction: column;
  gap: 12px;
  justify-content: center;
  width: 100%;
}

.boxed-dots-btn.yellow-btn,
.boxed-dots-btn.white-btn {
  width: 100%;
  font-size: 1rem;
  padding: 13px 0;
  border-radius: 8px;
  justify-content: center;
  text-align: center;
}

.site-footer {
  width: 100vw;
  background: #fff;
  border-top: 1px solid #ececec;
  padding: 24px 0 18px 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer-content {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.footer-social-icons {
  display: flex;
  gap: 22px;
  justify-content: center;
  align-items: center;
  margin-bottom: 4px;
}

.footer-social-icons a {
  display: inline-flex;
  align-items: center;
  opacity: 0.92;
  transition: opacity 0.18s;
}
.footer-social-icons a:hover {
  opacity: 1;
}

.footer-copyright {
  margin-top: 8px;
  font-size: 1rem;
  color: #888;
  text-align: center;
}

.footer-logo {
  max-width: 90vw;
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

.audience-section,
.why-early-section,
.quote-section,
.boxed-dots-section {
  position: relative;
  z-index: 1;
}

@media (min-width: 900px) {
  .main-navbar {
    max-width: 1400px;
    margin: 18px auto 32px auto;
    border-radius: 16px;
    height: 68px;
    padding: 0 24px;
  }
  .navbar-inner {
    gap: 0;
  }
  .navbar-logo {
    flex: none;
    justify-content: flex-start;
  }
  .mobile-menu-btn {
    order: 0;
  }
  a.yellow-btn.navbar-btn {
    padding: 14px 22px !important;
    font-size: 1rem;
    gap: 8px;
  }
  .navbar-logo-img-small {
    width: 22px;
    height: 22px;
  }
  .navbar-inner {
    flex-direction: row;
    align-items: center;
    gap: 0;
    justify-content: space-between;
  }
  .navbar-logo {
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .navbar-logo-img {
    width: 38px;
    height: 38px;
  }
  .logo-text {
    font-size: 2rem;
    margin-left: 10px;
  }
  .mobile-menu-btn {
    display: none;
  }
  .navbar-links {
    display: flex !important;
    position: static;
    flex-direction: row;
    gap: 28px;
    background: none;
    box-shadow: none;
    width: auto;
    padding: 0;
    border-radius: 0;
  }
  .navbar-links li {
    width: auto;
    justify-content: flex-start;
  }
  .navbar-links a {
    padding: 2px 0;
    width: auto;
    text-align: left;
    border-bottom: none;
    font-size: 1rem;
  }
  .navbar-actions {
    flex-direction: row;
    width: auto;
    justify-content: flex-end;
    margin-top: 0;
    gap: 12px;
  }
  .hero-container {
    padding: 100px 50px;
    max-width: 1200px;
    margin: auto;
  }
  .hero-content-box {
    max-width: 1400px;
    padding: 0 24px;
  }
  .hero-text h1 {
    font-size: 64px;
    margin: 0;
  }
  .subtext {
    font-size: 14px;
    margin-top: 20px;
  }
  .hero-buttons {
    flex-direction: row;
    gap: 20px;
    width: auto;
  }
  .yellow-btn,
  .white-btn {
    width: auto;
    font-size: 14px;
    padding: 14px 22px;
    border-radius: 10px;
  }
  .audience-section {
    padding: 80px 0 100px 0;
  }
  .audience-container {
    max-width: 1200px;
    padding: 0 24px;
  }
  .audience-title {
    font-size: 2.8rem;
    margin-bottom: 56px;
    letter-spacing: -1px;
  }
  .audience-cards {
    flex-direction: row;
    gap: 40px;
    justify-content: center;
    align-items: stretch;
  }
  .audience-card {
    max-width: 420px;
    min-width: 320px;
    padding: 38px 36px 32px 36px;
    border-radius: 20px;
    box-shadow: 0 4px 32px rgba(44, 62, 80, 0.07);
  }
  .audience-label {
    font-size: 1.08rem;
    padding: 3px 14px;
    border-radius: 8px;
    margin-bottom: 10px;
  }
  .audience-headline {
    font-size: 1.35rem;
    margin-bottom: 18px;
  }
  .audience-list {
    margin: 0 0 28px 0;
  }
  .audience-list li {
    font-size: 1.05rem;
    margin-bottom: 8px;
    padding-left: 26px;
    line-height: 1.7;
  }
  .audience-btn.yellow-btn {
    width: auto;
    font-size: 1.08rem;
    padding: 13px 28px;
    border-radius: 10px;
  }
  .why-early-section {
    padding: 90px 0 100px 0;
  }
  .why-early-container {
    max-width: 1200px;
    padding: 0 24px;
  }
  .why-early-title {
    font-size: 2.4rem;
    margin-bottom: 56px;
    letter-spacing: -1px;
    gap: 16px;
  }
  .why-early-cards {
    flex-direction: row;
    gap: 36px;
    justify-content: center;
    align-items: stretch;
  }
  .why-early-card {
    max-width: 340px;
    min-width: 260px;
    padding: 38px 32px 32px 32px;
    border-radius: 18px;
    box-shadow: 0 2px 16px rgba(44, 62, 80, 0.06);
  }
  .why-early-card-title {
    font-size: 1.18rem;
    margin-bottom: 12px;
    letter-spacing: -0.2px;
  }
  .why-early-card-desc {
    font-size: 1.05rem;
    line-height: 1.6;
  }
  .quote-section {
    padding: 90px 0 120px 0;
  }
  .quote-box {
    max-width: 700px;
    padding: 48px 36px 36px 36px;
    border-radius: 24px;
    box-shadow: 0 2px 16px rgba(44, 62, 80, 0.06);
    border: 1.5px solid #ececec;
  }
  .quote-box blockquote {
    font-size: 1.35rem;
    margin-bottom: 1.2rem;
  }
  .quote-box cite {
    font-size: 1.08rem;
  }
  .boxed-dots-section {
    padding: 80px 0 100px 0;
    min-height: 480px;
  }
  .boxed-dots-bg {
    width: 90vw;
    max-width: 1500px;
    border-radius: 16px;
    box-shadow: 0 2px 32px rgba(0, 0, 0, 0.18);
    background-size: 24px 24px;
  }
  .boxed-dots-content {
    max-width: 1100px;
    padding: 80px 40px 60px 40px;
  }
  .boxed-dots-headline {
    font-size: 2.6rem;
    margin-bottom: 18px;
    letter-spacing: -1px;
  }
  .boxed-dots-subheadline {
    font-size: 1.35rem;
    margin-bottom: 48px;
    letter-spacing: -0.5px;
  }
  .boxed-dots-ctas {
    flex-direction: row;
    gap: 24px;
    width: auto;
  }
  .boxed-dots-btn.yellow-btn,
  .boxed-dots-btn.white-btn {
    width: auto;
    font-size: 1.08rem;
    padding: 16px 32px;
    border-radius: 10px;
  }
  .site-footer {
    padding: 48px 0 36px 0;
  }
  .footer-logo {
    max-width: 420px;
  }
}

@media (max-width: 900px) {
  body {
    margin-top: 56px;
  }
  .main-navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    z-index: 10001;
  }
  .hero-container {
    margin-top: 0;
  }
  .main-navbar {
    padding: 0 12px;
  }
  .navbar-inner {
    gap: 8px;
  }
  .navbar-logo {
    flex: 1;
    justify-content: center;
  }
  .mobile-menu-btn {
    order: -1;
    flex-shrink: 0;
  }
  .navbar-actions {
    flex-shrink: 0;
  }
  a.yellow-btn.navbar-btn {
    padding: 10px 12px !important;
    font-size: 0.85rem;
    gap: 4px;
  }
  .navbar-logo-img-small {
    width: 18px;
    height: 18px;
  }
  .audience-container {
    padding: 0 24px;
  }
  .audience-card {
    max-width: calc(100vw - 48px);
    margin: 0 24px;
    padding: 28px 20px 24px 20px;
    width: calc(100% - 48px);
  }
  .audience-cards {
    gap: 24px;
  }
  .why-early-container {
    padding: 0 24px;
  }
  .why-early-card {
    max-width: calc(100vw - 48px);
    margin: 0 24px;
    padding: 28px 20px 24px 20px;
    width: calc(100% - 48px);
  }
  .why-early-cards {
    gap: 24px;
  }
  .early-access-label {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: relative !important;
    z-index: 10003 !important;
    width: fit-content !important;
    display: inline-block !important;
  }
  .navbar-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #111;
    z-index: 9999;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0;
    padding: 0;
    box-shadow: none;
    border-radius: 0;
    animation: menuSlideDown 0.32s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .navbar-links.active {
    display: flex;
  }
  .navbar-links li {
    width: 100%;
    justify-content: center;
    display: flex;
  }
  .navbar-links a {
    display: block;
    width: 100vw;
    text-align: center;
    border-bottom: none;
    font-size: 2rem;
    color: #fff;
    font-family: 'Saira', 'Share Tech Mono', 'Inter', Arial, sans-serif;
    font-weight: 500;
    letter-spacing: 0.02em;
    line-height: 2.8;
    padding: 0;
    margin: 0;
    transition: background 0.18s, color 0.18s;
    background: none;
  }
  .navbar-links a:hover,
  .navbar-links a:focus {
    background: #181818;
    color: #f1f536;
    outline: none;
  }
  .navbar-close-btn {
    display: none;
  }
  .navbar-links.active .navbar-close-btn {
    display: block;
    position: absolute;
    top: 24px;
    right: 28px;
    background: none;
    border: none;
    color: #fff;
    font-size: 2.8rem;
    cursor: pointer;
    z-index: 10000;
    padding: 0;
    line-height: 1;
    opacity: 0.8;
    transition: opacity 0.18s;
  }
  .navbar-close-btn:hover {
    opacity: 1;
    color: #f1f536;
  }
  .navbar-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.72);
    z-index: 9998;
    transition: opacity 0.2s;
  }
  .navbar-overlay.active {
    display: block;
  }
}

@media (min-width: 900px) {
  .navbar-close-btn {
    display: none !important;
  }
}

a {
  text-decoration: none !important;
}

.navbar-links {
  list-style: none;
}

.navbar-links li::before,
.navbar-links li::after {
  content: none !important;
}

.navbar-links a {
  font-weight: 400;
  font-family: 'Saira', 'Share Tech Mono', 'Inter', Arial, sans-serif;
  letter-spacing: 0.01em;
}

a.yellow-btn,
button.yellow-btn,
a.white-btn,
button.white-btn {
  font-weight: 500;
  font-family: 'Saira', 'Share Tech Mono', 'Inter', Arial, sans-serif;
  letter-spacing: 0.01em;
}

a.yellow-btn,
button.yellow-btn {
  background: #f1f536;
  color: #111;
}

a.yellow-btn:hover,
button.yellow-btn:hover {
  background: #fffbe6;
  color: #111;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  transform: scale(1.04);
}

a.white-btn,
button.white-btn {
  background: #fff;
  color: #111;
  border: 1.5px solid #ddd;
}

a.white-btn:hover,
button.white-btn:hover {
  background: #f7f7f7;
  color: #111;
  border: 1.5px solid #b59f00;
  transform: scale(1.04);
}

.navbar-btn,
.navbar-btn-dark {
  background: none;
  color: inherit;
  border: none;
  box-shadow: none;
  padding: 0;
  min-width: 0;
}

a.yellow-btn.navbar-btn,
a.yellow-btn.navbar-btn-dark {
  background: #f1f536;
  color: #111;
  border-radius: 10px;
  padding: 12px 18px;
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  display: flex;
  align-items: center;
  gap: 6px;
  text-decoration: none !important;
  border: none;
  min-width: 0;
  font-size: 0.9rem;
}

.navbar-btn.yellow-btn {
  padding: 10px 14px !important;
  font-size: 0.9rem;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(32px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(241, 245, 54, 0.18);
  }
  50% {
    transform: scale(1.06);
    box-shadow: 0 0 16px 0 rgba(241, 245, 54, 0.22);
  }
}

.fade-in-up {
  opacity: 0;
  animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.pulse {
  animation: pulse 2.2s infinite;
}

.motion-card {
  opacity: 0;
  transform: translateY(32px);
  transition: box-shadow 0.18s, transform 0.18s;
}

.motion-card.visible {
  animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.audience-card:hover,
.why-early-card:hover {
  transform: translateY(-6px) scale(1.025);
  box-shadow: 0 8px 32px rgba(44, 62, 80, 0.13);
}

a.yellow-btn:hover,
button.yellow-btn:hover,
a.white-btn:hover,
button.white-btn:hover {
  transform: scale(1.045);
  box-shadow: 0 6px 24px rgba(44, 62, 80, 0.10);
} 