body {
  margin: 0;
  font-family: 'Roboto Mono', monospace;
  background: #fff;
}

.desktop {
  width: 100%;
  background: #fff;
  min-width: 320px;
}

section{
  scroll-margin-top: 140px;
}

/* Header */
.header {
  display: flex;
  align-items: center;
  position: relative;
  height: 120px;
  border-bottom: 1px solid #000;
  position: fixed;
  top: 0;
  width: 100vw;
  background: #fff;
  z-index: 1000;
}
.logo {
  width: 160px;
  height: 160px;
  margin-right: 20px;
  margin-left: 48px;
}

.name {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.jarmai {
  font-size: 64px;
  font-weight: 400;
  color: #000;
}

.jarmai.white {
  color: #fff;
}

.tagline {
  font-size: 14px;
  color: #000;
}

.tagline.white {
  color: #fff;
}
.nav {
  display: flex;
  gap: 40px;
  position: absolute;
  right: 48px;
  top: 0;
  height: 100%;
  align-items: center;
}
.nav-item {
  font-size: 24px;
  color: #000;
  text-decoration: none;
  font-family: 'Roboto Mono', monospace;
  cursor: pointer;
}

/* Content */
.content {
  border-top: 1px solid #000;
  display: flex;
  flex-direction: column;
  padding-top: 110px;
}

/* Intro Section */
.intro {
  height: 529px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  border-top: 1px solid #000;
}
.intro-text {
  text-align: center;
  font-size: 36px;
  /*max-width: 900px;*/
  margin: auto;
  color: #000;
}
.intro-text b {
  font-weight: 700;
}

/* Path Selection */
.path-selection {
  height: 310px;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-top: 1px solid #000;
  position: relative;
  justify-content: center;
}
.path-selection-title {
  font-size: 36px;
  margin-bottom: 40px;
  text-align: center;
  font-weight: 400;
}
.path-cards {
  display: flex;
  gap: 40px;
  justify-content: center;
}
.path-card {
  width: 280px;
  background: #fff;
  border: 1px solid #eee;
  padding: 10px 10px 10px 10px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: 0 2px 6px #0001;
  cursor: pointer;
}
.path-card-title {
  font-size: 36px;
  font-weight: 400;
}
.path-card-desc {
  font-size: 16px;
  color: #333;
}
.path-card.selected {
  border: 3px solid transparent;
  background:
    linear-gradient(white, white) padding-box,
    linear-gradient(90deg, #75F1FF 0%, #75FF79 100%) border-box;
}

.q-answer { display: none; }
.question-toggle:checked ~ .q-answer { display: block; }


/* Create Section */
.create {
  background: #353535;
  color: #fff;
  padding: 0 0 60px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  border-top: 1px solid #000;
}
.section-title {
  font-size: 36px;
  font-weight: 400;
  text-align: center;
  color: #000;
  padding: 20px 0 20px 0;
}
.section-title.white {
  color: #fff;
  padding: 20px 0 20px 0;
}
.create-content {
  display: flex;
  gap: 42px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
}
.humanoid-shapes {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.humanoid-img {
  max-width: 420px;
  width: 100%;
  border: solid #000;
  display: block;
}
.features { display: flex; flex-direction: column; gap: 15px; }
.feature-box {
  background: #fff;
  color: #000;
  max-width: 480px;
  margin-bottom: 12px;
  font-size: 16px;
  text-align: center;
  padding: 10px;
}
.stats{
  display: flex;
  gap: 10px;
  justify-content:center;
  max-width: 350px;
  margin: 8px auto;
}
.stats-left{
  text-align: right;
}
.stats-right{
  text-align: left;
}

.faq { display: flex; flex-direction: column; gap: 20px; max-width: 480px;}
.question {
  background: #fff;
  color: #000;

  width: 450px;
  overflow: hidden;
  border-top: 1px solid #353535;
}
.question.highlight {
  border: 3px solid transparent;
  background:
    linear-gradient(white, white) padding-box,
    linear-gradient(90deg, #75F1FF 0%, #75FF79 100%) border-box;
}
.question-toggle {
  display: none;
}
.q-title {
  font-size: 20px;
  font-weight: 400;
  text-align: center;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  padding: 14px 18px 8px 18px;
  user-select: none;
}
.q-title .arrow {
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  transition: transform 0.3s;
  width: 24px;
  height: 24px;
}
.arrow:after {
  content: '';
  display: block;
  border: solid #000;
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
  position: absolute;
  right: 0; top: 0;
  width: 16px;
  height: 16px;
}
.question-toggle:checked + .q-title .arrow {
  transform: rotate(-180deg);
}
.q-answer {
  font-size: 16px;
  text-align: center;
  padding: 0 18px 14px 18px;
  display: none;
}
.question:has(.question-toggle:checked) .q-answer {
  display: block;
}
.q-title {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  padding: 14px 18px 8px 18px;
  user-select: none;
}
.q-title .arrow {
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  transition: transform 0.3s;
  width: 24px;
  height: 24px;
}
.q-title > .question-toggle:checked ~ .arrow {
  transform: translateY(-50%) rotate(-180deg);
}


/* Strategy Section */
.strategy {
  background: #fff;
  padding: 0 0 60px 0;
  border-top: 1px solid #000;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.strategy-cards {
  display: flex;
  gap: 42px;
}
.strategy-card {
  width: 500px;
  background: #fff;
  padding: 18px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.strategy-card.blue { background: #75F1FF; }
.strategy-card.green { background: #75FF79; }
.strategy-card-title {
  font-size: 20px;
  font-weight: 400;
  text-align: center;
}
.strategy-card-desc {
  font-size: 16px;
  text-align: center;
}

/* Approach Section */
.approach {
  background: #353535;
  padding: 0 0 60px 0;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.approach-content {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
}
.approach-boxes {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 500px;
}
.approach-box {
  background: #fff;
  color: #000;
  padding: 10px;
  font-size: 16px;
  text-align: center;
}
.approach-img {
  width: 736px;
  height: 441px;
  object-fit: cover;
}

/* Opportunity Section */
.opportunity {
  background: #fff;
  padding: 0 0 60px 0;
  border-top: 1px solid #000;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.opportunity-content {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  flex-wrap: wrap;
  justify-content: center;
}
.opportunity-boxes {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 500px;
}
.opportunity-box {
  background: #fff;
  color: #000;
  padding: 10px;
  font-size: 16px;
  text-align: center;
}
.opportunity-img {
  width: 280px;
  max-height: 406px;
  height: auto;
  overflow: hidden;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.opportunity-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Use Case Section */
.use-case {
  background: #353535;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 0 60px 0;
}
.use-case-content {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  flex-wrap: wrap;
  justify-content: center;
}
.use-case-main-card {
  background: #fff;
  box-sizing: border-box;
  width: 500px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.use-case-box {
  color: #000;
  padding: 10px;
  font-size: 20px;
  text-align: center;
}
.use-case-steps {
  display: flex;
  flex-direction: column;
  gap: 30px;
  width: fit fit-content;
  padding: 10px 10px 0px 10px;
}
.use-case-step {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 5px;
}
.use-case-shape {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 160px;
  min-height: 54px;
  font-size: 20px;
  color: #000;
  background: #fff;
  font-family: inherit;
  text-align: center;
  line-height: 1.1;
  box-sizing: border-box;
  font-weight: 400;
}

.gradient-border.rect {
  background: linear-gradient(90deg, #75F1FF 0%, #75FF79 100%);
  padding: 3px; /* border thickness */
  display: inline-block;
  margin-bottom: 8px;
}
.use-case-shape.rect {
  background: #fff;
  height: 102px;
  width: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: 'Roboto Mono', monospace;
  font-size: 18px;
  font-weight: 400;
}

.gradient-border.ellipse {
  background: linear-gradient(90deg, #75F1FF 0%, #75FF79 100%);
  padding: 3px;
  border-radius: 999px;
  display: inline-block;
  margin-bottom: 8px;
}
.use-case-shape.ellipse {
  background: #fff;
  border-radius: 999px;
  height: 102px;
  width: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: 'Roboto Mono', monospace;
  font-size: 18px;
  font-weight: 400;
}

.use-case-desc {
  font-size: 16px;
  color: #222;
  font-family: inherit;
  line-height: 1.2;
  flex: 1;
  text-align: center;
}
.use-case-focus {
  margin-top: 28px;
  background: linear-gradient(90deg, #75F1FF 0%, #75FF79 100%);
  color: #000;
  
  padding: 11px 0;
  font-size: 20px;
  font-family: inherit;
  text-align: center;
  width: 100%;
  font-weight: 400;
  box-shadow: 0 2px 8px #0001;
}

/* European Section */
.european {
  background: #fff;
  padding: 0 0 60px 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.european-content {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}
.european-left {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 500px;
}
.european-box {
  background: #fff;
  color: #000;
  font-size: 16px;
  text-align: center;
  
}
.european-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 500px;
}



/* Footer */
.footer {
  background: #000;
  color: #fff;
  padding: 40px 0;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 40px;
  justify-content: center;
}
.footer-main {
  display: flex;
  align-items: center;
  gap: 44px;
  padding: 0 20px;
}
.footer-links {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}
.footer-links > div {
  font-size: 16px;
  color: #fff;
  font-family: 'Roboto Mono', monospace;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.newsletter {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.newsletter-form {
  display: flex;
  gap: 10px;
}
.newsletter-email {
  width: 170px;
  height: 43px;
  outline: 1px solid #fff;
  display: flex;
  align-items: center;
  padding-left: 20px;
  font-size: 16px;
}
.newsletter-signup {
  width: 124px;
  height: 43px;
  background: #fff;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  outline: 1px solid #fff;
  font-size: 16px;
  cursor: pointer;
}




/* Hamburger Icon (hidden by default, visible on mobile) */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  padding: 10px;
  cursor: pointer;
  margin-left: auto;
}

.hamburger {
  display: block;
  width: 30px;
  height: 3px;
  background: #000;
  position: relative;
  transition: all 0.3s;
}
.hamburger::before,
.hamburger::after {
  content: '';
  display: block;
  width: 30px;
  height: 3px;
  background: #000;
  position: absolute;
  transition: all 0.3s;
}
.hamburger::before {
  top: -10px;
}
.hamburger::after {
  top: 10px;
}

/* Hamburger to "X" transition */
.nav-toggle.open .hamburger {
  background: transparent;
}
.nav-toggle.open .hamburger::before {
  transform: rotate(45deg) translate(6px, 6px);
}
.nav-toggle.open .hamburger::after {
  transform: rotate(-45deg) translate(6px, -6px);
}


/* Responsive (basic) */
@media (max-width: 1200px) {
  .strategy, .approach, .opportunity, .use-case, .european {
    padding-left: 5vw;
    padding-right: 5vw;
  }
  .section-title, .intro-text, .use-case-intro {
    font-size: 28px;
  }
}
@media (max-width: 800px) {
  .strategy-cards, .path-cards, .opportunity-content, .create-content, .use-case-cards, .european-content {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }
  .header {
    flex-direction: column;
    height: auto;
    gap: 20px;
  }
  .nav {
    position: static;
    justify-content: center;
    margin-top: 20px;
  }
}

/* --- Mobile (≤600px) --- */
@media (max-width: 800px) {
  .desktop {
    min-width: unset;
    width: 100%;
    overflow-x: hidden;
  }
  .header {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    height: auto;
  }
  .logo {
    width: 90px;
    height: 70px;
    margin: 0 0 8px 0;
    align-self: center;
    margin-left: 2%;
  }
  .name {
    align-items: center;
    
  }
  .jarmai { font-size: 32px; }
  .tagline { 
    font-size: 12px;
   }
  .nav {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
    width: 100%;
    
    margin-top: 0;
    position: static;
  }
  .nav-item { font-size: 18px; }

  .nav-toggle {
    display: block;
    width: 90px;
    margin-right: 2%;
  }
  .nav {
    display: none;
    flex-direction: column;
    align-items: stretch;
    position: fixed;
    top: 79px;           /* Adjust to header height */
    left: 0;
    width: 100vw;
    background: #fff;
    border: none;
    box-shadow: 0 6px 24px #0001;
    z-index: 2000;
    padding: 0;
    margin: 0;
  }

  .nav.open {
    display: flex;
  }

  .nav-item {
    padding: 18px 18px;
    font-size: 19px;
    border-bottom: 1px solid #eee;
    width: 100%;
    color: #222;
    text-align: center;
    background: none;
  }
  .nav-item:last-child {
    border-bottom: none;
  }

  section{
    scroll-margin-top: 79px;
  }

  .content {
    padding-top: 78px;
  }

  .intro {
    height: auto;
    min-height: 180px;
    padding: 30px 6vw 10px 6vw;
  }
  .intro-text {
    font-size: 22px;
  }
  .path-selection{
    height: auto;
    padding: 10px 6vw 10px 6vw;
  }
  .path-selection-title,
  .section-title,
  .section-title.white {
    font-size: 22px;
  }
  .path-cards {
    flex-direction: column;
    gap: 16px;
    width: 100%;
  }
  .path-card {
    width: 96vw;
    max-width: 340px;
    margin: 0 auto;
    font-size: 18px;
    padding: 14px 6px;
  }
  .path-card-title { font-size: 22px; }
  .path-card-desc { font-size: 14px; }

  .create-content, .strategy-cards, .approach-content, .opportunity-content, .use-case-content, .european-content {
    flex-direction: column;
    align-items: center;
    gap: 18px;
  }
  .humanoid-img, .approach-img, .opportunity-img img {
    width: 96%;
    height: fit-content;
    max-height: 250px;
    object-fit: contain;
    align-self: center;
  }
  .features, .faq, .opportunity-boxes, .european-left, .approach-boxes {
    max-width: 96%;
    width: 100%;
    padding: 0 2vw;
    align-items: center;
  }
  .feature-box, .opportunity-box, .european-box, .approach-box {
    font-size: 14px;
    padding: 8px 6px;
  }
  .stats {
    width: 96vw;
    font-size: 13px;
    gap: 10px;
    justify-content:center;
    margin: 8px auto;
  }

  .strategy-card, .use-case-main-card {
    width: 98vw;
    max-width: 370px;
    font-size: 14px;
  }
  .strategy-card-title, .use-case-box { font-size: 15px; }
  .strategy-card-desc, .use-case-desc { font-size: 13px; }

  .use-case-shape.rect, .use-case-shape.ellipse {
    width: 120px;
    height: 52px;
    font-size: 12px;
  }

  .question {
    width: 98vw;
    max-width: 350px;
    font-size: 14px;
  }
  .q-title, .q-answer {
    font-size: 13px;
    padding: 9px 10px 8px 10px;
  }

  .footer {
    flex-direction: column;
    gap: 20px;
    padding: 22px 0;
    align-items: center;
  }
  .footer-main {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 0 10px;
  }
  .footer-links > div { font-size: 13px; gap: 7px; }
  .newsletter-form, .newsletter {
    flex-direction: column;
    gap: 6px;
    width: 100%;
    align-items: flex-start;
  }
  .newsletter-email, .newsletter-signup {
    width: 96vw;
    max-width: 240px;
    font-size: 14px;
    padding-left: 12px;
  }
}
