:root {
  --paper: #fff;
  --ink: #111316;
  --muted: #5b626a;
  --line: #dfe2e4;
  --accent: #f26822;
  --shell: 1380px;
  --gutter: clamp(22px, 4.2vw, 72px);
  --section-space: clamp(68px, 5.5vw, 84px);
  --heading-content-gap: clamp(24px, 2.5vw, 32px);
  --display: "Inter", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --body: "Aptos", "Segoe UI Variable", "Segoe UI", Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; }
body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
img { display: block; max-width: 100%; }
figure { margin: 0; }
.shell { width: min(calc(100% - 2 * var(--gutter)), var(--shell)); margin-inline: auto; }
.section-pad { padding-block: var(--section-space); background: #fff; }
.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;
}
.skip-link {
  position: fixed;
  z-index: 200;
  top: 12px;
  left: 12px;
  transform: translateY(-180%);
  padding: 9px 14px;
  background: #fff;
  border: 1px solid var(--ink);
  border-radius: 4px;
}
.skip-link:focus { transform: translateY(0); }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 4px; }

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 82px;
  padding-inline: var(--gutter);
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid transparent;
  transition: border-color .25s ease, box-shadow .25s ease;
}
.site-header.is-scrolled { border-bottom-color: var(--line); }
body.admin-bar .site-header { top: 32px; }
.brand {
  display: inline-flex;
  align-items: baseline;
  width: fit-content;
  font-family: var(--display);
  font-size: 24px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -.075em;
  white-space: nowrap;
}
.brand__dot { width: 6px; height: 6px; margin-left: 2px; border-radius: 50%; background: var(--accent); }
.desktop-nav { display: flex; align-items: center; gap: clamp(20px, 2.6vw, 42px); }
.desktop-nav .nav-list,
.mobile-menu .nav-list { width: 100%; margin: 0; padding: 0; list-style: none; }
.desktop-nav .nav-list { display: flex; align-items: center; gap: clamp(20px, 2.6vw, 42px); }
.desktop-nav a,
.header-link,
.mobile-menu a {
  font-size: 13px;
  font-weight: 600;
  line-height: 1.2;
  white-space: nowrap;
}
.desktop-nav a,
.header-link { transition: opacity .2s ease; }
.desktop-nav a:hover,
.header-link:hover { opacity: .55; }
.header-link { justify-self: end; display: inline-flex; gap: 20px; align-items: center; }
.header-link span { font-size: 18px; font-weight: 400; }
.menu-toggle,
.mobile-menu { display: none; }

.hero { background: #fff; }
.hero__image { width: 100%; }
.hero__image picture { display: block; width: min(100%, 1672px); margin-inline: auto; }
.hero__image img { width: auto; max-width: 100%; height: auto; margin-inline: auto; }
.hero__action { display: flex; justify-content: center; padding-top: 22px; }
.hero__kickstarter {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(100deg, #2736ef 0%, #1567f6 53%, #00c2de 100%);
  color: #fff;
  font-family: var(--display);
  font-size: 19px;
  font-weight: 700;
  line-height: 1.2;
  white-space: nowrap;
  box-shadow: 0 8px 22px rgba(21, 103, 246, .13);
}
.hero__kickstarter:disabled { color: #fff; opacity: 1; cursor: default; }
.hero__kickstarter svg { width: 20px; height: 20px; flex: none; }

.eyebrow {
  display: inline-block;
  color: #3440de;
  background: linear-gradient(90deg, #3434d5 0%, #2857eb 48%, #00a8e7 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: var(--display);
  font-size: clamp(18px, 1.5vw, 21px);
  font-weight: 650;
  line-height: 1.2;
  letter-spacing: -.025em;
}
.section-heading { width: 100%; max-width: 1200px; margin-inline: auto; text-align: center; }
.section-heading h2,
.closing h2 {
  margin: 7px 0 0;
  font-family: var(--display);
  font-size: clamp(32px, 2.5vw, 40px);
  font-weight: 700;
  line-height: 1.13;
  letter-spacing: -.03em;
  text-wrap: balance;
}
.section-heading p {
  max-width: 850px;
  margin: 10px auto 0;
  color: #7d8187;
  font-size: clamp(16px, 1.25vw, 18px);
  line-height: 1.35;
  text-wrap: pretty;
}

.values {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(24px, 4vw, 64px);
  margin-top: var(--heading-content-gap);
}
.value { border-top: 1px solid var(--ink); padding-top: 18px; }
.value > span { color: var(--muted); font-size: 12px; font-weight: 650; }
.value h3 {
  margin: 24px 0 10px;
  font-family: var(--display);
  font-size: clamp(23px, 2vw, 28px);
  font-weight: 700;
  line-height: 1.07;
  letter-spacing: -.03em;
}
.value p { max-width: 285px; margin: 0; color: var(--muted); font-size: 16px; line-height: 1.45; }

.problem .section-heading,
.comparison .section-heading,
.spaces .section-heading,
.craft .section-heading { margin-bottom: var(--heading-content-gap); }
.problem__image,
.comparison__image { max-width: 1240px; margin-inline: auto; }
.problem__image img,
.comparison__image img { width: 100%; height: auto; }

.rise__layout,
.feature__layout,
.plus__layout,
.mini__layout,
.timeline__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  justify-items: center;
  gap: var(--heading-content-gap);
  align-items: start;
}
.rise__copy,
.feature__copy,
.plus__copy,
.mini__copy,
.timeline__copy { width: 100%; }
.rise__image,
.feature__media,
.plus__image { width: 100%; }
.rise__image img,
.feature__media img,
.plus__image img { width: 100%; height: auto; }
.rise__image { max-width: 620px; justify-self: center; }
.feature__media { max-width: 640px; justify-self: center; }
.feature--charging .feature__media { max-width: 600px; }

.spaces__image { max-width: 1120px; margin-inline: auto; }
.spaces__image img { width: 100%; height: auto; }

.mini__image { width: min(100%, 610px); justify-self: center; }
.mini__image img { width: 100%; height: auto; }

.plus__image { max-width: 540px; justify-self: center; }
.plus__detail { padding-top: var(--section-space); }
.plus__detail img { width: min(100%, 660px); height: auto; margin-inline: auto; }
.plus__detail p {
  display: flex;
  justify-content: space-between;
  width: min(100%, 660px);
  margin: 15px auto 0;
  border-top: 1px solid var(--ink);
  padding-top: 12px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.plus__detail p span { font-size: 18px; line-height: 1; }

.craft__images { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(20px, 3vw, 50px); }
.craft__images img { width: 100%; height: auto; }
.craft__images figcaption {
  margin-top: 14px;
  border-top: 1px solid var(--ink);
  padding-top: 13px;
  font-family: var(--display);
  font-size: clamp(17px, 1.6vw, 23px);
  font-weight: 600;
  letter-spacing: -.025em;
}

.specifications .section-heading,
.rewards .section-heading { margin-bottom: var(--heading-content-gap); }
.specifications__overview { width: min(100%, 680px); margin: 0 auto var(--section-space); }
.specifications__overview img,
.specification-item img,
.reward img,
.timeline__image img { width: 100%; height: auto; }
.artwork-link { display: block; }
.artwork-link img { transition: opacity .25s ease; }
.artwork-link:hover img { opacity: .88; }
.specifications__grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(28px, 5vw, 80px); }
.specification-item { display: flex; flex-direction: column; min-width: 0; }
.specification-item h3,
.reward h3 {
  margin: 0 0 24px;
  border-top: 1px solid var(--ink);
  padding-top: 18px;
  font-family: var(--display);
  font-size: clamp(24px, 2.2vw, 32px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -.05em;
}
.specification-item figure + figure {
  margin-top: auto;
  padding-top: clamp(36px, 4vw, 56px);
}
.specification-item figcaption {
  display: flex;
  justify-content: space-between;
  margin-top: 12px;
  border-top: 1px solid var(--line);
  padding-top: 10px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
}
.specification-item figcaption span { color: var(--ink); font-size: 18px; line-height: 1; }
.rewards__grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: var(--section-space) clamp(28px, 5vw, 80px); }
.reward:first-child { grid-column: 1 / -1; width: min(100%, 1050px); margin-inline: auto; }
.reward:first-child h3 { max-width: 1050px; }
.timeline__image { width: min(100%, 640px); justify-self: center; }

.closing__inner { display: flex; flex-direction: column; align-items: center; text-align: center; }
.closing h2 { max-width: 1100px; }
.closing p { margin: 10px 0 0; color: #7d8187; font-size: clamp(16px, 1.25vw, 18px); }
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 40px;
  margin-top: 38px;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 14px;
  font-size: 16px;
  font-weight: 650;
  transition: gap .25s ease;
}
.text-link:hover { gap: 52px; }
.text-link span { font-size: 24px; line-height: 1; }
.closing small { max-width: 500px; margin-top: 44px; color: var(--muted); font-size: 12px; line-height: 1.5; }

.site-footer { background: #fff; }
.site-footer__top,
.site-footer__bottom { display: flex; align-items: center; justify-content: space-between; gap: 30px; border-top: 1px solid var(--line); }
.site-footer__top { padding-block: 36px 58px; }
.site-footer__top .brand { font-size: clamp(38px, 5vw, 80px); }
.site-footer__top .brand__dot { width: 10px; height: 10px; }
.site-footer__top > span { color: var(--muted); font-size: 16px; }
.site-footer__bottom { padding-block: 23px 35px; color: var(--muted); font-size: 12px; }
.site-footer__bottom div { display: flex; gap: 24px; }
.site-footer__bottom a:hover { color: var(--ink); }

.reveal { opacity: 1; transform: none; }

.wp-content { min-height: 55vh; padding-block: var(--section-space); }
.wp-content__title { margin: 0 0 32px; font-family: var(--display); font-size: clamp(36px, 2.8vw, 42px); line-height: 1.13; letter-spacing: -.03em; }
.wp-content__entry { max-width: 850px; color: var(--ink); font-size: 18px; line-height: 1.6; }
.wp-content__entry a { text-decoration: underline; text-underline-offset: 3px; }
.wp-content__entry img { height: auto; }
.wp-content__post { padding-block: 32px; border-top: 1px solid var(--line); }
.wp-content__post h2 { margin: 0 0 12px; font-family: var(--display); font-size: 30px; }
.wp-content__post p { margin: 0; color: var(--muted); }

@media (max-width: 1100px) {
  .desktop-nav { gap: 18px; }
  .desktop-nav .nav-list { gap: 18px; }
  .site-header { grid-template-columns: auto 1fr auto; gap: 30px; }
  .desktop-nav { justify-content: center; }
}

@media (max-width: 760px) {
  :root {
    --section-space: clamp(52px, 9vw, 64px);
    --heading-content-gap: clamp(20px, 5vw, 28px);
  }
  html { scroll-padding-top: 68px; }
  .site-header { height: 66px; grid-template-columns: 1fr auto; padding-inline: var(--gutter); }
  .brand { font-size: 22px; }
  .desktop-nav,
  .header-link { display: none; }
  .menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 42px;
    height: 42px;
    padding: 10px;
    border: 0;
    background: none;
    cursor: pointer;
  }
  .menu-toggle span { width: 100%; height: 1px; background: var(--ink); transition: transform .25s ease; }
  .menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(3.5px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-3.5px) rotate(-45deg); }
  .mobile-menu {
    position: absolute;
    top: 66px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    gap: 0;
    height: calc(100dvh - 66px);
    padding: 35px var(--gutter);
    background: #fff;
    border-top: 1px solid var(--line);
  }
  .mobile-menu.is-open { display: flex; }
  .mobile-menu .nav-list { display: flex; flex-direction: column; }
  .mobile-menu a { display: block; padding-block: 19px; border-bottom: 1px solid var(--line); font-family: var(--display); font-size: 26px; letter-spacing: -.04em; }
  .hero__image picture { width: min(100%, 1086px); }
  .hero__image img { width: 100%; max-width: 1086px; height: auto; }
  .hero__kickstarter { font-size: 18px; }
  .eyebrow { font-size: clamp(15px, 2.5vw, 18px); }
  .section-heading h2,
  .closing h2 { font-size: clamp(28px, 4vw, 32px); }
  .values { grid-template-columns: 1fr; gap: 28px; }
  .value { display: grid; grid-template-columns: 42px 1fr; column-gap: 16px; }
  .value h3 { margin: 0 0 10px; font-size: 24px; }
  .value p { grid-column: 2; max-width: 500px; }
  .rise__image,
  .feature__media,
  .plus__image,
  .mini__image,
  .timeline__image { width: min(100%, 540px); justify-self: center; }
  .craft__images { grid-template-columns: 1fr; gap: 40px; }
  .specifications__grid,
  .rewards__grid { grid-template-columns: 1fr; gap: 60px; }
  .reward:first-child { grid-column: 1; }
  .site-footer__top { padding-bottom: 50px; }
}

@media (max-width: 782px) {
  body.admin-bar .site-header { top: 46px; }
}

@media (max-width: 480px) {
  .hero__action { padding-top: 18px; }
  .hero__kickstarter { width: 100%; min-height: 52px; padding-inline: 18px; font-size: clamp(15px, 4.3vw, 18px); }
  .section-heading h2,
  .closing h2 { font-size: clamp(24px, 5.9vw, 28px); }
  .site-footer__top,
  .site-footer__bottom { align-items: flex-start; flex-direction: column; }
  .site-footer__top { gap: 28px; }
  .site-footer__bottom { gap: 22px; }
  .site-footer__bottom div { flex-wrap: wrap; gap: 12px 22px; }
}

@media (max-width: 360px) {
  .value { grid-template-columns: 32px 1fr; column-gap: 10px; }
  .value h3 { font-size: 24px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  * { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
