@import url("https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@500;600;700;800&family=DM+Sans:wght@400;450;500;550;600;650;700&display=swap");
:root {
  --paper: #f4f3ee;
  --ink: #242820;
  --muted: #62665c;
  --line: #d8dad1;
  --orange: #e95427;
  --green: #243d33;
  color-scheme: light;
  --surface: #f8f7f2;
  --art: #e9ebe2;
  --grid: #bdc4b52b;
  --label: #f4f3eef0;
  --launch: #e9e9df;
  --accent-text: #ae3715;
  --button-ink: #171c18;
  --button-hover: #f26b3f;
  --about: #243d33;
  --art-filter: none;
}
:root[data-theme="dark"] {
  color-scheme: dark;
  --paper: #181e1a;
  --ink: #f4f3ee;
  --muted: #b9c4b8;
  --line: #49554a;
  --green: #bdd0b5;
  --surface: #222c25;
  --art: #35473b;
  --grid: #bcc4b017;
  --label: #202b25f5;
  --launch: #29362e;
  --accent-text: #ff9871;
  --about: #20362d;
  --art-filter: brightness(1.3);
}
@media (prefers-color-scheme: dark) {
  :root:not([data-theme]) {
    color-scheme: dark;
    --paper: #181e1a;
    --ink: #f4f3ee;
    --muted: #b9c4b8;
    --line: #49554a;
    --green: #bdd0b5;
    --surface: #222c25;
    --art: #35473b;
    --grid: #bcc4b017;
    --label: #202b25f5;
    --launch: #29362e;
    --accent-text: #ff9871;
    --about: #20362d;
    --art-filter: brightness(1.3);
  }
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 24px;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "DM Sans", sans-serif;
  font-size: 15px;
}
a {
  color: inherit;
  text-decoration: none;
}
a:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 6px;
}
::selection {
  background: #ffd3a5;
  color: #242820;
}
.wrap {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 44px;
}
.header {
  height: 112px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;
  gap: 11px;
  font-weight: 700;
  font-size: 23px;
  letter-spacing: -1px;
}
.logo-light {
  font-weight: 400;
}
.logo small {
  display: block;
  font-size: 8px;
  letter-spacing: 3.7px;
  margin-top: 2px;
}
.brandmark {
  height: 39px;
  width: 39px;
  background: var(--orange);
  color: #f4f3ee;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  font-weight: 700;
  font-size: 28px;
  letter-spacing: -3px;
  padding-right: 3px;
}
.brandmark span {
  font-size: 22px;
  margin-top: 6px;
}
nav {
  display: flex;
  align-items: center;
  gap: 33px;
  font-size: 12px;
  font-weight: 600;
}
.nav-cta {
  border: 1px solid var(--line);
  padding: 12px 17px;
  border-radius: 4px;
}
.nav-cta span {
  margin-left: 15px;
}
nav a:hover {
  color: var(--accent-text);
}
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-top: 45px;
  padding-bottom: 65px;
  gap: 30px;
}
.eyebrow {
  font-size: 10px;
  font-weight: 650;
  letter-spacing: 1.6px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.status-dot {
  height: 6px;
  width: 6px;
  display: inline-block;
  flex-shrink: 0;
  background: var(--orange);
  border-radius: 50%;
}
h1,
h2,
h3,
p {
  margin-top: 0;
}
h1 {
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: clamp(66px, 6.7vw, 92px);
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: -1.7px;
  margin: 28px 0 23px;
}
h1 span {
  color: var(--orange);
}
.hero-description {
  font-size: 15px;
  line-height: 1.8;
  color: var(--muted);
  margin-bottom: 27px;
}
.button {
  display: inline-flex;
  gap: 36px;
  align-items: center;
  background: var(--orange);
  color: var(--button-ink);
  border-radius: 4px;
  padding: 16px 21px;
  font-size: 12px;
  font-weight: 600;
  transition:
    background 0.2s,
    transform 0.2s;
}
.button:hover {
  background: var(--button-hover);
  transform: translateY(-2px);
}
.button span {
  font-size: 20px;
  line-height: 1;
}
.hero-note {
  font-size: 10px;
  color: var(--muted);
  margin-top: 18px;
}
.hero-note span {
  margin-right: 6px;
}
.hero-art {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 8px;
  min-width: 0;
  background-color: var(--art);
  background-image:
    linear-gradient(var(--grid) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid) 1px, transparent 1px);
  background-size: 26px 26px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-art img {
  filter: var(--art-filter);
  width: 100%;
  height: auto;
  display: block;
}
.art-top {
  position: absolute;
  top: 21px;
  left: 20px;
  right: 20px;
  display: flex;
  justify-content: space-between;
  font-size: 7px;
  letter-spacing: 1px;
  color: var(--muted);
  gap: 12px;
}
.art-label {
  position: absolute;
  font-size: 9px;
  color: var(--muted);
  background: var(--label);
  padding: 9px 11px;
  border: 1px solid var(--line);
  border-radius: 3px;
}
.art-label span {
  font-size: 8px;
  color: var(--accent-text);
  margin-right: 7px;
}
.label-a {
  top: 33%;
  left: 5%;
}
.label-b {
  bottom: 23%;
  right: 5%;
}
.art-bottom {
  position: absolute;
  bottom: 15px;
  left: 20px;
  right: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--muted);
  font-size: 7px;
  letter-spacing: 1.4px;
}
.cross {
  font-size: 20px;
  font-weight: 400;
}
.brand-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.brand-inner {
  min-height: 109px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand-inner .eyebrow {
  color: var(--muted);
  font-size: 8px;
  max-width: 140px;
  line-height: 1.8;
  margin: 0;
}
.printer-brand {
  font-size: 29px;
  font-weight: 650;
  letter-spacing: -1.2px;
}
.brand-plus {
  font-size: 10px;
  vertical-align: top;
  letter-spacing: 0;
}
.snapmaker {
  font-weight: 500;
  letter-spacing: -1.5px;
}
.strip-note {
  font-size: 10px;
  line-height: 1.7;
  color: var(--muted);
  border-left: 1px solid var(--line);
  padding-left: 34px;
}
.section {
  padding-top: 81px;
  padding-bottom: 74px;
}
.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 32px;
}
.section-heading .eyebrow {
  color: var(--muted);
  margin-bottom: 15px;
}
h2 {
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: 48px;
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.6px;
  margin-bottom: 0;
}
.section-heading > p {
  font-size: 12px;
  line-height: 1.9;
  color: var(--muted);
  margin-bottom: 0;
}
.categories {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 17px;
}
.category {
  border: 1px solid var(--line);
  border-radius: 5px;
  padding: 23px 25px;
  background: var(--surface);
  transition: border-color 0.2s;
}
.category:hover {
  border-color: var(--muted);
}
.category-number {
  font-size: 8px;
  letter-spacing: 1px;
  color: var(--muted);
}
.category svg {
  display: block;
  width: 108px;
  height: 92px;
  margin: 18px auto 27px;
  fill: none;
  stroke: var(--green);
  stroke-width: 2;
  stroke-linejoin: round;
  stroke-linecap: round;
}
.category h3 {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.5px;
  margin-bottom: 10px;
}
.category p {
  font-size: 12px;
  line-height: 1.8;
  color: var(--muted);
  min-height: 44px;
  max-width: 225px;
}
.category-tag {
  display: block;
  font-size: 7px;
  letter-spacing: 1.3px;
  border-top: 1px solid var(--line);
  padding-top: 17px;
  margin-top: 20px;
  color: var(--muted);
}
.availability {
  display: flex;
  align-items: baseline;
  gap: 8px;
  font-size: 10px;
  line-height: 1.7;
  color: var(--muted);
  margin: 18px 0 0;
}
.availability .status-dot {
  width: 4px;
  height: 4px;
}
.about {
  background: var(--about);
  color: #f4f3ee;
  padding: 67px 0;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 65px;
}
.about .eyebrow {
  color: #c7d6bb;
  font-size: 8px;
  margin-bottom: 25px;
}
.about h2 {
  font-size: 45px;
  line-height: 1.15;
}
.about h2 span {
  color: #b9c7aa;
}
.about-copy {
  padding-top: 4px;
  font-size: 13px;
  line-height: 1.9;
  color: #d7dfd0;
}
.about-copy p {
  margin-bottom: 17px;
}
.about-copy strong {
  color: white;
  font-weight: 550;
}
.principles {
  display: flex;
  gap: 20px;
  border-top: 1px solid #ffffff25;
  padding-top: 20px;
  margin-top: 27px;
  font-size: 8px;
  color: #c2cfb5;
}
.principles span:before {
  content: "+";
  color: #e2a473;
  margin-right: 7px;
}
.launch {
  padding-top: 65px;
  padding-bottom: 65px;
}
.launch-box {
  padding: 43px 48px;
  background: var(--launch);
  border: 1px solid var(--line);
  border-radius: 6px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
}
.launch .eyebrow {
  font-size: 8px;
  color: var(--muted);
  margin-bottom: 20px;
}
.launch h2 {
  font-size: 49px;
}
.launch p:not(.eyebrow) {
  font-size: 12px;
  line-height: 1.9;
  color: var(--muted);
  margin: 18px 0 0;
}
.launch-side {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  gap: 12px;
  font-size: 10px;
  color: var(--muted);
}
.launch-icon {
  color: var(--orange);
  font-size: 100px;
  line-height: 1;
  margin-bottom: 10px;
}
.launch-badge {
  font-size: 8px;
  letter-spacing: 2px;
  border: 1px solid var(--muted);
  border-radius: 30px;
  padding: 10px 17px;
  color: var(--green);
}
.footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 26px;
  padding-top: 26px;
  padding-bottom: 26px;
  border-top: 1px solid var(--line);
}
.footer-logo {
  font-size: 21px;
  font-weight: 650;
  letter-spacing: -1px;
}
.footer-logo span {
  font-weight: 400;
}
.orange {
  color: var(--orange);
}
.footer > p:not(.trademark) {
  font-size: 10px;
  color: var(--muted);
  margin: 0;
}
.footer > span {
  margin-left: auto;
  font-size: 10px;
  color: var(--muted);
}
.trademark {
  flex-basis: 100%;
  font-size: 8px;
  line-height: 1.8;
  color: var(--muted);
  margin: 0;
}
.skip {
  position: absolute;
  top: -100px;
  left: 20px;
  z-index: 10;
  background: var(--paper);
  padding: 15px;
}
.skip:focus {
  top: 10px;
}
@media (min-width: 1400px) {
  .hero-art {
    max-height: 560px;
  }
}
@media (max-width: 800px) {
  .wrap {
    padding-left: 25px;
    padding-right: 25px;
  }
  .header {
    height: 90px;
  }
  .logo {
    font-size: 20px;
  }
  nav {
    gap: 18px;
  }
  nav > a:not(.nav-cta) {
    display: none;
  }
  .hero {
    padding-top: 25px;
    gap: 30px;
  }
  .hero-art {
    align-self: center;
  }
  .art-top {
    font-size: 6px;
    left: 10px;
    right: 10px;
  }
  .art-top span:first-child {
    display: none;
  }
  .art-label {
    font-size: 7px;
    padding: 6px;
  }
  .art-bottom {
    font-size: 5px;
    left: 10px;
    right: 10px;
  }
  .hero h1 {
    font-size: 66px;
  }
  .hero-description {
    font-size: 13px;
  }
  .desktop-br {
    display: none;
  }
  .printer-brand {
    font-size: 23px;
  }
  .strip-note {
    display: none;
  }
  .section-heading > p {
    max-width: 210px;
  }
  .categories {
    gap: 10px;
  }
  .category {
    padding: 18px 15px;
  }
  .category h3 {
    font-size: 14px;
  }
  .about-grid {
    gap: 30px;
  }
  .about h2 {
    font-size: 39px;
  }
  .principles {
    gap: 9px;
    flex-wrap: wrap;
  }
}
@media (max-width: 580px) {
  .wrap {
    padding-left: 22px;
    padding-right: 22px;
  }
  .header {
    height: 85px;
  }
  .nav-cta {
    font-size: 10px;
    padding: 10px;
  }
  .hero {
    grid-template-columns: 1fr;
    padding-top: 24px;
    padding-bottom: 34px;
    gap: 23px;
  }
  .hero h1 {
    font-size: 78px;
    margin-top: 23px;
  }
  .hero-description {
    font-size: 14px;
    max-width: 310px;
  }
  .hero-art {
    width: 100%;
    max-height: 440px;
  }
  .hero-art img {
    max-width: 430px;
  }
  .art-top {
    font-size: 7px;
    left: 17px;
    right: 17px;
  }
  .art-top span:first-child {
    display: block;
  }
  .art-label {
    font-size: 8px;
  }
  .art-bottom {
    font-size: 6px;
  }
  .hero-note {
    font-size: 10px;
  }
  .brand-inner {
    min-height: 95px;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: flex-start;
    padding-top: 17px;
    padding-bottom: 20px;
  }
  .brand-inner .eyebrow {
    max-width: none;
    flex-basis: 100%;
    font-size: 7px;
  }
  .printer-brand {
    font-size: 24px;
    margin-right: 22px;
  }
  .section {
    padding-top: 49px;
    padding-bottom: 45px;
  }
  .section-heading {
    display: block;
  }
  .section-heading > p {
    margin-top: 17px;
    max-width: none;
  }
  .section-heading h2 {
    font-size: 44px;
  }
  .categories {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .category {
    padding: 24px;
    position: relative;
  }
  .category svg {
    position: absolute;
    right: 18px;
    top: 19px;
    width: 72px;
    height: 70px;
    margin: 0;
  }
  .category h3 {
    font-size: 18px;
    margin-top: 29px;
    padding-right: 65px;
  }
  .category p {
    min-height: 0;
    max-width: 230px;
  }
  .category-tag {
    margin-top: 20px;
  }
  .availability {
    font-size: 9px;
  }
  .about {
    padding: 46px 0;
  }
  .about-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .about h2 {
    font-size: 43px;
  }
  .about-copy {
    font-size: 13px;
  }
  .principles {
    justify-content: space-between;
    font-size: 8px;
    gap: 8px;
  }
  .launch {
    padding-top: 36px;
    padding-bottom: 36px;
  }
  .launch-box {
    padding: 27px;
    flex-direction: column;
  }
  .launch h2 {
    font-size: 44px;
  }
  .launch-side {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
    gap: 15px;
  }
  .launch-icon {
    font-size: 40px;
    margin: 0;
  }
  .launch-side > span:last-child {
    font-size: 9px;
  }
  .footer {
    gap: 17px;
  }
  .footer > p:not(.trademark) {
    display: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  * {
    transition: none !important;
  }
}

/* Native controls retain keyboard and assistive-technology support. */
.header-actions {
  display: flex;
  align-items: center;
  gap: 24px;
}
.theme-picker:not([hidden]) {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
}
.theme-picker select {
  font: inherit;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--muted);
  border-radius: 4px;
  min-height: 44px;
  padding: 8px;
  cursor: pointer;
}
select:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 4px;
}
@media (max-width: 800px) {
  .header-actions { gap: 14px; }
}
@media (max-width: 580px) {
  .header {
    height: auto;
    min-height: 130px;
    flex-wrap: wrap;
    gap: 16px;
    padding-top: 20px;
    padding-bottom: 16px;
  }
  .header-actions {
    width: 100%;
    justify-content: space-between;
  }
  .nav-cta { min-height: 44px; display: flex; align-items: center; }
  .hero h1 { font-size: clamp(62px, 18vw, 78px); }
  .launch-box { padding: 24px; }
  .launch-side .button { gap: 12px; }
}
