:root {
  --bg: #131313;
  --surface: #1a1a1a;
  --border: #242424;
  --muted: rgba(255, 255, 255, 0.68);
  --text: #ffffff;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", sans-serif;
}

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

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  width: 100%;
}

.top-nav {
  position: relative;
  z-index: 50;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 18px;
  align-items: center;
  padding-top: 40px;
}

.nav-left {
  justify-self: start;
  display: flex;
  align-items: center;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 999px;
  background: #2c2b2b;
  padding: 0;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.menu-toggle span {
  display: block;
  width: 16px;
  height: 1.5px;
  background: #fff;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.top-nav.is-open .menu-toggle span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.top-nav.is-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.top-nav.is-open .menu-toggle span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

.nav-pill {
  border-radius: 999px;
  background: #2c2b2b;
  padding: 10px 18px;
}

.nav-links {
  display: flex;
  gap: 12px;
  width: fit-content;
}

.nav-links a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.72);
}

.nav-links a.is-active,
.nav-links a:hover {
  color: #fff;
}

.brand-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  justify-self: center;
  min-width: 140px;
  justify-content: center;
}

.brand-pill img {
  display: none;
}

.brand-pill span {
  font-size: 14px;
}

.talk-btn {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #fff;
  color: #000;
  padding: 10px 27px;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
}

.hero {
  min-height: 830px;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: center;
  padding-top: 95px;
}

.hero-copy h1 {
  margin: 0;
  font-family: "Newsreader", serif;
  font-size: clamp(42px, 5vw, 54px);
  line-height: 1.12;
  letter-spacing: 0.8px;
  max-width: 600px;
}

.hero-copy p {
  margin: 18px 0 32px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.4;
  max-width: 600px;
}

.hero-art {
  display: flex;
  justify-content: center;
}

.hero-art img {
  max-width: 520px;
  width: 100%;
}

.primary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: #000;
  border-radius: 999px;
  height: 47px;
  padding: 0 25px;
  font-weight: 500;
  font-size: 14px;
}

.problem {
  padding: 56px 0 70px;
}

.section-tag {
  width: fit-content;
  margin: 0 auto 20px;
  border: 1px dashed rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  padding: 10px 24px;
  font-family: "SFMono-Regular", Menlo, Consolas, monospace;
  letter-spacing: 1px;
  font-size: 14px;
  opacity: 0.75;
}

h2 {
  margin: 0;
  font-family: "Newsreader", serif;
  font-size: clamp(36px, 4.5vw, 48px);
  line-height: 1.15;
  text-align: center;
}

.section-subtitle {
  max-width: 430px;
  margin: 12px auto 0;
  color: var(--muted);
  text-align: center;
  font-family: "SFMono-Regular", Menlo, Consolas, monospace;
  font-size: 14px;
  line-height: 1.72;
}

.problem-grid {
  margin-top: 38px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.info-card {
  border: 1px solid var(--border);
  padding: 54px 33px;
  text-align: center;
  position: relative;
}

.card-corners img {
  width: 7px;
  height: 7px;
  position: absolute;
}

.card-corners img:nth-child(1) {
  top: -1px;
  left: -1px;
}
.card-corners img:nth-child(2) {
  top: -1px;
  right: -1px;
}
.card-corners img:nth-child(3) {
  bottom: -1px;
  left: -1px;
}
.card-corners img:nth-child(4) {
  bottom: -1px;
  right: -1px;
}

.icon-box {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  border: 1px solid var(--border);
  margin: 0 auto;
  display: grid;
  place-items: center;
  background: #333;
}

.icon-box img {
  width: 24px;
  height: 24px;
}

.info-card h3 {
  margin: 16px 0 8px;
  font-family: "Newsreader", serif;
  font-weight: 300;
  font-size: 22px;
  line-height: 1.25;
}

.info-card p {
  margin: 0 auto;
  max-width: 280px;
  color: #bababa;
  font-size: 12px;
  line-height: 1.5;
}

.ventures {
  padding: 70px 0 80px;
}

.ventures-top {
  display: grid;
  grid-template-columns: 1fr 364px;
  gap: 36px;
  align-items: center;
}

.ventures-top h2,
.faq h2 {
  text-align: left;
}

.ventures-top p {
  color: var(--muted);
  font-family: "SFMono-Regular", Menlo, Consolas, monospace;
  font-size: 14px;
  line-height: 1.6;
}

.ventures-grid {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.venture-card,
.footer-card {
  border: 1px dashed rgba(255, 255, 255, 0.1);
  padding: 33px;
  position: relative;
}

.venture-card small,
.footer-card small {
  font-family: "SFMono-Regular", Menlo, Consolas, monospace;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 10px;
  color: rgba(255, 255, 255, 0.6);
}

.venture-card h3 {
  font-family: "Michroma", sans-serif;
  font-size: 33px;
  margin: 12px 0 18px;
}

.venture-card p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.solid-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #d7d7d0;
  color: #000;
  height: 36px;
  font-size: 14px;
  font-weight: 500;
}

.solid-link img {
  width: 16px;
  height: 16px;
}

.faq {
  padding: 80px 0;
}

.faq-head {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 30px;
  align-items: end;
}

.faq-label {
  grid-column: 1 / -1;
  font-family: "SFMono-Regular", Menlo, Consolas, monospace;
  font-size: 16px;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.6);
}

.faq-head p {
  margin: 0;
  color: var(--muted);
  font-family: "SFMono-Regular", Menlo, Consolas, monospace;
  line-height: 1.6;
  font-size: 14px;
}

.faq-list {
  margin-top: 32px;
  border-top: 1px dashed rgba(255, 255, 255, 0.1);
}

.faq-list details {
  border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
}

.faq-list summary {
  list-style: none;
  padding: 22px 0;
  font-family: "Noto Serif", serif;
  font-size: 28px;
  color: rgba(255, 255, 255, 0.92);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  font-family: "Inter", sans-serif;
  font-size: 26px;
  font-weight: 300;
}

.faq-list details[open] summary::after {
  content: "-";
}

.faq-list details p {
  margin: 0 0 22px;
  max-width: 760px;
  color: var(--muted);
  line-height: 1.65;
}

.cta {
  min-height: 591px;
  position: relative;
  display: flex;
  align-items: flex-end;
}

.cta-overlay {
  position: absolute;
  inset: 0;
}

.cta-overlay img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.cta-content {
  position: relative;
  z-index: 1;
  width: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  padding: 0 24px 68px;
}

.cta-content h2 {
  text-align: left;
  max-width: 710px;
  margin-bottom: 16px;
}

.cta-content p {
  margin: 0;
  max-width: 700px;
  font-family: "SFMono-Regular", Menlo, Consolas, monospace;
  font-size: 18px;
  line-height: 1.45;
}

.cta-btn {
  min-width: 160px;
  font-size: 21px;
  height: 51px;
}

.footer {
  padding: 70px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}

.footer-card {
  min-height: 220px;
  height: 100%;
  padding: 66px 20px 40px;
  display: flex;
  flex-direction: column;
  gap: 11px;
  box-sizing: border-box;
}

.footer-card small {
  display: block;
  margin: 0;
}

.footer-card h3 {
  margin: 0;
  font-family: "Noto Serif", serif;
  font-size: 32px;
  font-weight: 400;
  line-height: 1.2;
}

.footer-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.85);
  font-size: 13px;
  line-height: 1.35;
}

.footer-brand {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px;
}

.footer-brand-copy {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 222px;
}

.chip {
  display: inline-flex;
  width: fit-content;
  gap: 8px;
  align-items: center;
  padding: 5px 8px;
  border-radius: 4px;
  background: #1a1614;
  font-family: "SFMono-Regular", Menlo, Consolas, monospace;
  font-size: 10px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.66);
}

.dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #f4f4e7;
}

.legal {
  max-width: 222px;
  margin: 0;
  font-family: "SFMono-Regular", Menlo, Consolas, monospace;
  font-size: 8px;
  line-height: 1.4;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}

.brand-lockup {
  text-align: center;
  flex-shrink: 0;
}

.brand-lockup img {
  width: 79px;
  height: 69px;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

.brand-lockup span {
  display: block;
  margin-top: 14px;
  font-size: 20px;
  font-weight: 500;
  white-space: nowrap;
}

@media (max-width: 1024px) {
  .hero-content,
  .ventures-top,
  .faq-head,
  .cta-content,
  .footer-grid {
    grid-template-columns: 1fr;
    display: grid;
  }

  .hero {
    min-height: auto;
    padding-bottom: 48px;
  }

  .hero-content {
    padding-top: 56px;
    gap: 36px;
  }

  .hero-copy,
  .hero-art {
    text-align: center;
  }

  .hero-copy p,
  .hero-copy h1 {
    margin-left: auto;
    margin-right: auto;
  }

  .problem-grid,
  .ventures-grid {
    grid-template-columns: 1fr;
  }

  .ventures-top h2,
  .faq h2,
  .cta-content h2 {
    text-align: center;
  }

  .ventures-top p,
  .faq-head p,
  .cta-content p {
    text-align: center;
    max-width: 640px;
    margin: 0 auto;
  }

  .cta {
    min-height: 520px;
  }

  .cta-btn {
    margin: 24px auto 0;
  }

  .footer-brand {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-card,
  .footer-brand {
    min-height: 200px;
    padding: 40px 20px 32px;
  }
}

@media (max-width: 900px) {
  .top-nav {
    grid-template-columns: auto 1fr auto;
    gap: 12px;
    padding-top: 20px;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .brand-pill {
    min-width: 0;
    padding: 10px 16px;
  }

  .talk-btn {
    padding: 10px 16px;
    font-size: 13px;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: calc(100% + 12px);
    left: 24px;
    right: 24px;
    width: auto;
    flex-direction: column;
    gap: 0;
    padding: 10px;
    border-radius: 18px;
    background: rgba(28, 28, 28, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
  }

  .top-nav.is-open .nav-links {
    display: flex;
  }

  .nav-links a {
    padding: 14px 16px;
    border-radius: 12px;
    color: rgba(255, 255, 255, 0.86);
  }

  .nav-links a:hover {
    background: rgba(255, 255, 255, 0.06);
  }

  .info-card h3 {
    font-size: 20px;
    white-space: normal;
  }

  .cta-content h2 {
    font-size: 36px;
  }

  .cta-content p {
    font-size: 15px;
  }
}

@media (max-width: 640px) {
  .container {
    padding: 0 16px;
  }

  .hero-copy h1 {
    font-size: 34px;
  }

  .hero-copy p {
    font-size: 16px;
  }

  .brand-pill span {
    font-size: 13px;
  }

  .talk-btn {
    padding: 9px 12px;
    font-size: 12px;
  }

  .nav-links {
    left: 16px;
    right: 16px;
  }

  .section-subtitle {
    padding: 0 8px;
  }

  .venture-card h3 {
    font-size: 26px;
  }

  .faq-list summary {
    font-size: 22px;
    gap: 16px;
  }

  .cta {
    min-height: 420px;
  }

  .cta-content h2 {
    font-size: 30px;
  }

  .cta-btn {
    min-width: 140px;
    font-size: 16px;
    height: 46px;
  }

  .footer {
    padding: 40px 0;
  }

  .footer-card {
    padding: 28px 18px;
  }

  .footer-card h3 {
    font-size: 26px;
  }
}
