* {
  box-sizing: border-box;
}

:root {
  --ink: #151515;
  --muted: #686868;
  --line: #e7e4de;
  --paper: #fbfaf7;
  --white: #ffffff;
  --honey: #f5b800;
  --honey-soft: #fff4c2;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

.nav {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  text-decoration: none;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -0.02em;
}

.brand-mark {
  font-size: 25px;
}

.nav-link {
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
}

.nav-link:hover {
  color: var(--ink);
}

.hero {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  min-height: 700px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 90px 0 110px;
}

.eyebrow,
.section-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--muted);
  margin-bottom: 22px;
}

.hero h1 {
  margin: 0;
  max-width: 1000px;
  font-size: clamp(54px, 8vw, 112px);
  line-height: 0.98;
  letter-spacing: -0.065em;
  font-weight: 700;
}

.hero h1 span {
  position: relative;
  display: inline-block;
}

.hero h1 span::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 4px;
  height: 11px;
  background: var(--honey);
  z-index: -1;
  border-radius: 4px;
}

.hero-copy {
  max-width: 680px;
  margin: 38px 0 0;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.55;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 20px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
}

.primary {
  background: var(--ink);
  color: var(--white);
}

.secondary {
  border: 1px solid var(--line);
  color: var(--ink);
  background: rgba(255,255,255,0.55);
}

.status {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: 32px;
  font-size: 13px;
  color: var(--muted);
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--honey);
  box-shadow: 0 0 0 5px var(--honey-soft);
}

.statement {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 120px 0;
  border-top: 1px solid var(--line);
}

.statement h2,
.closing h2 {
  margin: 0;
  max-width: 900px;
  font-size: clamp(40px, 5.5vw, 74px);
  line-height: 1.04;
  letter-spacing: -0.05em;
}

.statement > p:last-child {
  max-width: 720px;
  margin: 32px 0 0 auto;
  font-size: 19px;
  color: var(--muted);
}

.grid {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.card {
  padding: 48px 32px 58px;
  min-height: 320px;
}

.card + .card {
  border-left: 1px solid var(--line);
}

.card-number {
  font-size: 12px;
  font-weight: 700;
  color: var(--honey);
  margin-bottom: 58px;
}

.card h3 {
  font-size: 24px;
  margin: 0 0 16px;
  letter-spacing: -0.03em;
}

.card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.closing {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 150px 0;
  text-align: center;
}

.closing h2 {
  margin: 18px auto 0;
}

.closing p {
  color: var(--muted);
  max-width: 620px;
  margin: 28px auto 0;
}

.bee {
  font-size: 42px;
}

footer {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 30px 0 42px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: var(--muted);
  font-size: 12px;
}

@media (max-width: 760px) {
  .nav {
    height: 72px;
  }

  .hero {
    min-height: auto;
    padding: 100px 0;
  }

  .hero h1 span::after {
    height: 7px;
    bottom: 2px;
  }

  .statement {
    padding: 90px 0;
  }

  .statement > p:last-child {
    margin-left: 0;
  }

  .grid {
    grid-template-columns: 1fr;
  }

  .card {
    min-height: auto;
  }

  .card + .card {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .closing {
    padding: 110px 0;
  }

  footer {
    flex-direction: column;
  }
}

.nav-logo { width: 62px; height: 62px; object-fit: contain; }
.brand-word { display: inline-flex; align-items: baseline; }
.brand-appra { color: var(--ink); }
.brand-bee { color: var(--honey); }
.hero-brand { display: flex; align-items: center; gap: clamp(24px, 4vw, 58px); }
.hero-logo { width: clamp(190px, 18vw, 255px); height: auto; flex: 0 0 auto; }
.project-section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 110px 0 120px;
  border-top: 1px solid var(--line);
}
.section-heading { margin-bottom: 38px; }
.section-heading h2 {
  margin: 0;
  font-size: clamp(36px, 4.5vw, 62px);
  line-height: 1.05;
  letter-spacing: -0.045em;
}
.project-card {
  width: 100%;
  display: block;
  border-radius: 22px;
  box-shadow: 0 18px 60px rgba(0,0,0,.07);
}
.closing-bee { width: 155px; height: auto; }
.footer-brand { display: flex; align-items: center; gap: 8px; font-weight: 600; color: var(--ink); }
.footer-brand img { width: 34px; height: 34px; object-fit: contain; }

@media (max-width: 760px) {
  .hero-brand { align-items: flex-start; gap: 18px; }
  .hero-logo { width: 150px; margin-top: 2px; }
  .project-section { padding: 80px 0 90px; }
  .project-card { border-radius: 16px; }
}
@media (max-width: 520px) {
  .hero-brand { display: block; }
  .hero-logo { width: 150px; margin: 0 0 24px; }
}

.project-card-portrait {
  width: min(760px, 100%);
  margin: 0 auto;
}

/* Native project roadmap content */
.project-heading {
  max-width: 900px;
}

.project-intro {
  margin: 22px 0 0;
  max-width: 760px;
  color: var(--muted);
  font-size: clamp(17px, 1.8vw, 21px);
  line-height: 1.6;
}

.roadmap-stack {
  display: grid;
  gap: 22px;
}

.roadmap-panel {
  display: grid;
  grid-template-columns: minmax(250px, .85fr) 2fr;
  gap: 44px;
  padding: 42px;
  border: 1px solid #eee7d8;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(255,255,255,.82), rgba(255,248,226,.48));
}

.roadmap-title {
  padding-right: 28px;
  border-right: 1px solid var(--line);
}

.roadmap-title > div {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 14px 18px;
}

.roadmap-kicker {
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 1;
}

.roadmap-version {
  color: var(--honey);
  font-size: 17px;
  font-weight: 600;
}

.roadmap-title p {
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.roadmap-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.roadmap-feature {
  padding: 4px 28px 4px 0;
}

.roadmap-feature + .roadmap-feature {
  padding-left: 28px;
  border-left: 1px solid var(--line);
}

.feature-index {
  display: inline-block;
  margin-bottom: 34px;
  color: var(--honey);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
}

.roadmap-feature h3 {
  margin: 0 0 12px;
  font-size: 21px;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.roadmap-feature p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

@media (max-width: 900px) {
  .roadmap-panel {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 32px;
  }

  .roadmap-title {
    padding-right: 0;
    padding-bottom: 28px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
}

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

  .roadmap-feature,
  .roadmap-feature + .roadmap-feature {
    padding: 24px 0;
    border-left: 0;
  }

  .roadmap-feature + .roadmap-feature {
    border-top: 1px solid var(--line);
  }

  .feature-index {
    margin-bottom: 16px;
  }
}


/* Small visual icons for roadmap features */
.feature-icon {
  width: 48px;
  height: 48px;
  margin: -18px 0 20px;
  border-radius: 15px;
  display: grid;
  place-items: center;
  background: rgba(255, 184, 0, .10);
  border: 1px solid rgba(255, 184, 0, .18);
}
.feature-icon svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: var(--ink);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.feature-icon svg circle:last-child { stroke: var(--honey); }
@media (max-width: 680px) {
  .feature-icon { margin: 0 0 16px; }
}

/* Roadmap icon refinement: larger, centered, no numeric labels */
.roadmap-feature .feature-icon {
  width: 68px;
  height: 68px;
  margin: 0 auto 22px;
  border-radius: 20px;
}
.roadmap-feature .feature-icon svg {
  width: 39px;
  height: 39px;
  stroke-width: 1.7;
}
.roadmap-feature h3,
.roadmap-feature p {
  text-align: center;
}
@media (max-width: 680px) {
  .roadmap-feature .feature-icon {
    width: 62px;
    height: 62px;
    margin: 0 auto 18px;
  }
  .roadmap-feature .feature-icon svg {
    width: 35px;
    height: 35px;
  }
}
