@font-face {
  font-family: "Geist";
  src: url("assets/fonts/geist-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}
:root {
  --paper: #ebebeb;
  --ink: #151515;
  --muted: #636460;
  --line: #c7c7c2;
  --accent: #e17b45;
  --font: "Geist", "Helvetica Neue", sans-serif;
  --radius: 26px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
button,
a,
summary {
  -webkit-tap-highlight-color: transparent;
}
button,
input {
  font: inherit;
}
button,
a {
  touch-action: manipulation;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  color: inherit;
}
button:not(:disabled),
summary {
  cursor: pointer;
}
img {
  display: block;
  max-width: 100%;
}
h1,
h2,
h3,
h4,
p,
figure {
  margin: 0;
}
h1,
h2,
h3,
h4 {
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -0.06em;
}
p {
  font-weight: 400;
}
button {
  border: 0;
}
::selection {
  background: #e17b45;
  color: #111;
}
[hidden] {
  display: none !important;
}
:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 6px;
}
.skip-link {
  position: fixed;
  left: 20px;
  top: -100px;
  padding: 12px 20px;
  background: #fff;
  color: #111;
  z-index: 100;
}
.skip-link:focus {
  top: 12px;
}
.edge-panel {
  margin: 0 7px;
  border-radius: var(--radius);
  overflow: hidden;
}
.section-shell {
  width: calc(100% - 80px);
  max-width: 1680px;
  margin-inline: auto;
}
.micro-label,
.section-index {
  font-size: 12px;
  letter-spacing: 0.015em;
  font-weight: 500;
}
.signal-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  margin-right: 7px;
  vertical-align: 2px;
}
.pill-button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 38px;
  border-radius: 99px;
  padding: 13px 15px 13px 23px;
  background: var(--ink);
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  transition:
    background 0.2s,
    transform 0.2s;
}
.pill-button > span {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  background: #fff;
  color: #111;
  border-radius: 50%;
  font-size: 20px;
}
.pill-button:hover {
  background: #3a3a36;
  transform: translateY(-2px);
}
/* A cinematic opening, made with Macfleet's own studio film. */
.hero {
  position: relative;
  min-height: 780px;
  height: calc(100svh - 80px);
  max-height: 1120px;
  color: #fff;
  background: #151515;
}
.hero-media,
.hero-image,
.hero-motion {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero-media {
  border-radius: inherit;
  overflow: hidden;
}
.hero-image,
.hero-motion {
  object-fit: cover;
  object-position: 50% 52%;
  filter: grayscale(1) brightness(0.56);
}
.hero-media:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.13),
    rgba(0, 0, 0, 0.02) 35%,
    rgba(0, 0, 0, 0.68) 90%
  );
}
.hero-content {
  position: relative;
  min-height: inherit;
  height: 100%;
  padding: 72px 34px 25px;
  display: flex;
  flex-direction: column;
}
.hero-top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 250px;
  gap: 45px;
  align-items: center;
}
.hero h1 {
  display: flex;
  align-items: flex-start;
  font-size: clamp(80px, 12.5vw, 224px);
  letter-spacing: -0.078em;
  line-height: 0.88;
  font-weight: 600;
  white-space: nowrap;
}
.hero h1 > span {
  font-size: 0.36em;
  line-height: 1;
  margin: 0 0 0 0.13em;
  letter-spacing: 0;
}
.hero-principles {
  padding-top: 6px;
  font-size: 17px;
  line-height: 1.5;
  font-weight: 500;
}
.hero-principles p {
  font-weight: 500;
}
.hero-principles p + p {
  margin-top: 4px;
}
.hero-coordinate-line {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: absolute;
  left: 34px;
  right: 34px;
  top: 52%;
  color: #d5d5d0;
  font-size: 26px;
  font-weight: 400;
  line-height: 1;
}
.hero-bottom {
  display: grid;
  grid-template-columns: minmax(320px, 1.2fr) minmax(180px, 1fr) 342px;
  gap: 40px;
  align-items: end;
  margin-top: auto;
  padding-top: 180px;
}
.hero-intro > .micro-label {
  display: block;
  margin-bottom: 18px;
  color: #dadbd5;
  font-size: 10px;
  letter-spacing: 0.04em;
}
.hero-intro > p {
  font-size: clamp(40px, 3.6vw, 64px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.055em;
}
.hero-description {
  font-size: 15px;
  line-height: 1.45;
  color: #c5c6c2;
  margin-top: 18px;
}
.hero-scroll {
  font-size: 13px;
  justify-self: center;
  margin-bottom: 4px;
  display: flex;
  gap: 28px;
  align-items: center;
  border-bottom: 1px solid #6d6d67;
  padding: 12px 0;
}
.hero-scroll span {
  font-size: 22px;
}
.hero-scroll:hover {
  border-color: #fff;
}
.featured-app {
  display: flex;
  padding: 5px;
  background: #fff;
  color: #151515;
  border-radius: 18px;
  min-height: 153px;
  transition: transform 0.25s;
}
.featured-app:hover {
  transform: translateY(-5px);
}
.featured-icon {
  width: 112px;
  flex-shrink: 0;
  border-radius: 13px;
  background: linear-gradient(145deg, #474a4c, #242627);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.featured-icon > span:last-child {
  position: absolute;
  bottom: 9px;
  left: 13px;
  color: #969c9b;
  font-size: 10px;
}
.notch-symbol {
  display: flex;
  width: 80px;
  height: 39px;
  align-items: center;
  justify-content: center;
  border: 1px solid #636765;
  border-radius: 11px;
  background: #0f1010;
  gap: 5px;
  box-shadow: 0 6px 20px #131515;
}
.notch-symbol b {
  display: block;
  height: 12px;
  width: 28px;
  border-radius: 6px;
  background: #fbfbf1;
}
.notch-symbol i {
  height: 5px;
  width: 5px;
  border-radius: 50%;
  background: #e17b45;
}
.featured-info {
  padding: 14px 12px 13px 17px;
  display: flex;
  flex-direction: column;
  flex: 1;
  align-items: flex-start;
}
.featured-info > small {
  font-size: 9px;
  font-weight: 500;
  color: #646560;
  letter-spacing: 0.01em;
}
.featured-info > strong {
  font-size: 25px;
  font-weight: 600;
  letter-spacing: -0.04em;
  margin-top: 7px;
}
.featured-link {
  font-size: 11px;
  border-radius: 99px;
  padding: 6px 8px 6px 12px;
  background: #171717;
  color: #fff;
  display: flex;
  gap: 17px;
  align-items: center;
  margin-top: auto;
}
.featured-link b {
  background: #fff;
  color: #171717;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 400;
}
.hero-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 39px;
  border-top: 1px solid #ffffff29;
  padding-top: 17px;
  font-size: 9px;
  letter-spacing: 0.03em;
  color: #bdbeba;
}
.film-control {
  background: transparent;
  color: #fff;
  padding: 5px 10px;
  font-size: 11px;
  min-height: 30px;
}
.film-control:hover {
  background: #ffffff20;
  border-radius: 20px;
}
/* Generous editorial sections and a single honest product showcase. */
.collection {
  padding-top: 154px;
}
.section-heading {
  display: grid;
  grid-template-columns: 1fr 2.15fr 1fr;
  gap: 30px;
  align-items: start;
  margin-bottom: 86px;
}
.section-heading > .section-index {
  padding-top: 12px;
}
.section-heading h2 {
  font-size: clamp(72px, 9vw, 148px);
  line-height: 0.91;
  letter-spacing: -0.07em;
}
.section-subtitle {
  font-size: 23px;
  font-weight: 500;
  letter-spacing: -0.04em;
  margin-top: 25px;
}
.section-intro {
  font-size: 16px;
  line-height: 1.45;
  align-self: end;
  max-width: 300px;
}
.product-card {
  background: #fff;
  border-radius: 20px;
  padding: 9px;
}
.product-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 19px 18px 25px;
  gap: 20px;
}
.product-card-top h3 {
  font-size: 22px;
  letter-spacing: -0.045em;
}
.product-card-top h3 > span {
  font-weight: 400;
  font-size: 13px;
  letter-spacing: -0.01em;
  color: #73736e;
  margin-left: 16px;
}
.product-availability {
  font-size: 10px;
  letter-spacing: 0.035em;
}
.product-layout {
  display: grid;
  grid-template-columns: 1.55fr 1fr;
  gap: 0;
}
.product-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  min-height: 530px;
  border-radius: 14px;
  background: radial-gradient(
    ellipse at 75% 95%,
    #56665f 0%,
    #353d3a 37%,
    #202625 74%
  );
  color: #f3f3ed;
}
.desktop-top {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  padding: 13px 19px;
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  color: #bdc2bd;
  background: #ffffff05;
}
.desktop-camera {
  position: absolute;
  top: 0;
  width: 93px;
  height: 18px;
  border-radius: 0 0 9px 9px;
  background: #101211;
}
.desktop-orbit {
  border: 1px solid #9ca99a28;
  position: absolute;
  width: 500px;
  height: 760px;
  transform: rotate(40deg);
  border-radius: 50%;
  pointer-events: none;
}
.orbit-one {
  right: -160px;
  top: -90px;
}
.orbit-two {
  right: -95px;
  top: -110px;
}
.notch-preview {
  position: relative;
  z-index: 1;
  width: 82%;
  max-width: 570px;
  background: #111313;
  border: 1px solid #ffffff1a;
  border-radius: 23px;
  box-shadow: 0 30px 40px #0005;
  padding: 24px 22px 16px;
  transform: translateY(-12px);
  transition: transform 0.5s;
}
.product-visual:hover .notch-preview {
  transform: translateY(-19px);
}
.preview-top {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 13px;
  color: #eeefea;
}
.preview-top img {
  filter: invert(1);
}
.preview-top small {
  font-size: 8px;
  letter-spacing: 0.1em;
  color: #828782;
  margin-left: auto;
}
.preview-files {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
  margin-top: 27px;
}
.preview-files > div {
  min-width: 0;
  border-radius: 9px;
  border: 1px solid #ffffff12;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 19px 6px 15px;
  background: #ffffff02;
}
.file-icon {
  height: 66px;
  width: 49px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  margin-bottom: 16px;
  box-shadow: 0 7px 8px #0002;
}
.file-document {
  background: #d9dcc9;
  transform: rotate(-4deg);
  border-radius: 3px 11px 3px 3px;
  gap: 5px;
  padding-left: 8px;
}
.file-document i {
  width: 30px;
  height: 1px;
  background: #787c67;
}
.file-document i:last-child {
  width: 19px;
}
.file-image {
  background: #e6e6db;
  padding: 6px;
  height: 58px;
  width: 54px;
  transform: rotate(7deg);
  border-radius: 3px;
}
.file-image i {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    145deg,
    #505c48 35%,
    #adb397 36%,
    #adb397 50%,
    #334437 51%
  );
}
.file-link {
  background: #242d2a;
  border: 1px solid #818d6a50;
  border-radius: 10px;
  color: #c8d1a6;
  font-size: 32px;
  align-items: center;
}
.preview-files strong {
  font-size: 9px;
  font-weight: 400;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
  letter-spacing: 0;
}
.preview-files small {
  font-size: 8px;
  color: #818881;
  margin-top: 3px;
}
.preview-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 9px;
  color: #879387;
  margin-top: 22px;
}
.preview-bottom span:last-child {
  font-size: 19px;
}
.preview-caption {
  position: absolute;
  left: 25px;
  right: 25px;
  bottom: 55px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 10px;
  letter-spacing: 0.03em;
}
.round-arrow {
  width: 36px;
  height: 36px;
  border: 1px solid #929d9370;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 20px;
  transition: background 0.25s;
}
.product-visual:hover .round-arrow {
  background: #ffffff20;
}
.sample-label {
  position: absolute;
  bottom: 22px;
  left: 25px;
  color: #c1c9c0;
  font-size: 9px;
}
.product-copy {
  padding: 45px 39px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.product-copy > .micro-label {
  font-size: 10px;
  color: #62665c;
  letter-spacing: 0.025em;
}
.product-copy h4 {
  font-size: clamp(34px, 3.1vw, 53px);
  line-height: 1.04;
  letter-spacing: -0.055em;
  margin-top: 24px;
}
.product-copy > p {
  font-size: 15px;
  line-height: 1.55;
  max-width: 380px;
  color: #656862;
  margin-top: 21px;
}
.product-tags {
  display: flex;
  gap: 7px;
  margin: 24px 0 28px;
  font-size: 11px;
}
.product-tags > span {
  padding: 4px 11px;
  border: 1px solid #dadcd5;
  border-radius: 20px;
}
.product-copy .pill-button {
  font-size: 12px;
  padding: 10px 12px 10px 19px;
}
.product-copy > p.product-footnote {
  font-size: 10px;
  line-height: 1.6;
  margin-top: 17px;
}
.collection-footer {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  align-items: start;
  padding: 35px 0 0;
  gap: 30px;
}
.collection-footer > span {
  font-size: 10px;
  letter-spacing: 0.035em;
}
.collection-footer > p {
  font-size: 15px;
  line-height: 1.5;
  color: #666962;
}
.collection-footer > a {
  font-size: 40px;
  line-height: 1;
  padding-right: 8px;
}
/* The parent studio has its own story, separate from individual apps. */
.studio {
  padding-block: 170px 150px;
}
.studio-heading {
  display: grid;
  grid-template-columns: 1fr 3.15fr;
  gap: 30px;
}
.studio-heading > .section-index {
  padding-top: 12px;
}
.studio h2 {
  font-size: clamp(52px, 6.3vw, 108px);
  line-height: 1.02;
  letter-spacing: -0.065em;
}
.studio h2 span {
  color: #747b6c;
}
.studio-body {
  display: grid;
  grid-template-columns: 1fr 3.15fr;
  gap: 30px;
  margin-top: 70px;
}
.studio-emblem {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: flex-start;
  justify-content: space-between;
  padding-top: 7px;
}
.studio-emblem img {
  width: 105px;
  height: 105px;
}
.studio-emblem > span {
  font-size: 9px;
  letter-spacing: 0.035em;
  line-height: 1.6;
  color: #62665c;
}
.studio-statement > p {
  max-width: 760px;
  font-size: clamp(27px, 2.5vw, 40px);
  letter-spacing: -0.035em;
  line-height: 1.25;
}
.studio-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-top: 40px;
  max-width: 800px;
}
.studio-columns p {
  font-size: 15px;
  color: #666962;
  line-height: 1.65;
}
.philosophy {
  background: #141515;
  color: #f4f4ed;
  padding: 100px 33px 24px;
  position: relative;
}
.philosophy .section-heading {
  margin-bottom: 70px;
}
.philosophy .section-heading h2 {
  font-size: clamp(70px, 8.4vw, 136px);
}
.philosophy .section-intro {
  color: #a5aaa0;
  font-size: 16px;
  padding-bottom: 8px;
}
.principles details {
  border-top: 1px solid #3b3f38;
  padding: 34px 0;
}
.principles summary {
  display: grid;
  grid-template-columns: 1fr 150px 2fr 32px;
  align-items: center;
  gap: 30px;
  list-style: none;
  position: relative;
}
.principles summary::-webkit-details-marker {
  display: none;
}
.principle-number {
  font-size: 12px;
  color: #b8bcb3;
}
.principle-symbol {
  font-size: 46px;
  font-weight: 400;
  width: 86px;
  height: 70px;
  border: 1px solid #3f463c;
  border-radius: 16px;
  color: #c3ceaa;
  display: grid;
  place-items: center;
  transition:
    background 0.3s,
    color 0.3s;
}
.principles summary h3 {
  font-size: 34px;
  letter-spacing: -0.045em;
  font-weight: 500;
}
.principle-toggle {
  width: 22px;
  height: 22px;
  position: relative;
}
.principle-toggle:before,
.principle-toggle:after {
  content: "";
  position: absolute;
  background: #e8ebe0;
  left: 3px;
  right: 3px;
  top: 10px;
  height: 1px;
  transition: transform 0.2s;
}
.principle-toggle:after {
  transform: rotate(90deg);
}
details[open] .principle-toggle:after {
  transform: rotate(0);
}
details[open] .principle-symbol {
  background: #d7dec8;
  color: #1c2517;
  border-color: #d7dec8;
}
.principle-content {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 60px;
  margin: 22px 62px 3px calc((100% - 122px) / 4.15 + 180px);
}
.principle-content p {
  font-size: 16px;
  line-height: 1.6;
  color: #aeb4a8;
  max-width: 475px;
}
.principle-tags {
  display: flex;
  gap: 7px;
  align-items: start;
  flex-wrap: wrap;
}
.principle-tags span {
  background: #eaeee2;
  color: #26301e;
  padding: 5px 11px;
  border-radius: 20px;
  font-size: 10px;
}
.philosophy-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #3b3f38;
  padding-top: 25px;
  margin-top: 25px;
  font-size: 9px;
  color: #b4b9ad;
  letter-spacing: 0.04em;
}
.philosophy-footer img {
  filter: invert(1);
}
.closing {
  padding-block: 120px;
}
.closing-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 38px;
}
.closing-label > span:last-child {
  font-size: 40px;
}
.closing-content {
  display: grid;
  grid-template-columns: 2.3fr 1fr;
  align-items: end;
  gap: 70px;
}
.closing h2 {
  font-size: clamp(85px, 11.1vw, 184px);
  line-height: 0.91;
  letter-spacing: -0.075em;
}
.closing h2 span {
  color: #747b6c;
}
.closing-content > div {
  padding-bottom: 8px;
}
.closing-content p {
  font-size: 20px;
  line-height: 1.4;
  letter-spacing: -0.025em;
  margin-bottom: 28px;
}
@keyframes enter {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero-top {
  animation: enter 0.85s 0.1s both;
}
.hero-bottom {
  animation: enter 0.85s 0.25s both;
}
.reveal-in {
  animation: enter 0.65s both;
}
@media (min-width: 1800px) {
  .hero-content {
    padding: 95px 55px 30px;
  }
  .hero-top {
    grid-template-columns: minmax(0, 1fr) 330px;
  }
  .hero-bottom {
    grid-template-columns: 1.2fr 1fr 380px;
  }
  .hero-principles {
    font-size: 22px;
  }
  .section-shell {
    width: calc(100% - 120px);
  }
}
@media (max-width: 1100px) {
  .hero {
    min-height: 760px;
  }
  .hero-content {
    padding: 58px 26px 22px;
  }
  .hero-top {
    grid-template-columns: minmax(0, 1fr) 185px;
    gap: 25px;
  }
  .hero h1 {
    font-size: 12.2vw;
  }
  .hero-principles {
    font-size: 14px;
  }
  .hero-bottom {
    grid-template-columns: 1fr 285px;
    gap: 24px;
  }
  .hero-scroll {
    display: none;
  }
  .featured-app {
    min-height: 140px;
  }
  .featured-icon {
    width: 86px;
  }
  .featured-info {
    padding: 12px;
  }
  .featured-info > small {
    font-size: 8px;
  }
  .featured-info > strong {
    font-size: 24px;
  }
  .notch-symbol {
    width: 66px;
  }
  .hero-intro > p {
    font-size: 48px;
  }
  .section-shell {
    width: calc(100% - 56px);
  }
  .section-heading {
    grid-template-columns: 0.7fr 2.4fr 1.2fr;
    gap: 20px;
  }
  .section-intro {
    font-size: 14px;
  }
  .section-heading h2 {
    font-size: 10vw;
  }
  .product-layout {
    grid-template-columns: 1.4fr 1fr;
  }
  .product-copy {
    padding: 32px 24px;
  }
  .product-copy h4 {
    font-size: 34px;
  }
  .product-copy > p {
    font-size: 14px;
  }
  .product-visual {
    min-height: 490px;
  }
  .notch-preview {
    width: 90%;
    padding: 20px 15px 15px;
  }
  .preview-files {
    gap: 6px;
  }
  .preview-files strong {
    font-size: 8px;
  }
  .studio-heading,
  .studio-body {
    grid-template-columns: 0.7fr 3.6fr;
    gap: 20px;
  }
  .studio-columns {
    gap: 35px;
  }
  .principles summary {
    grid-template-columns: 0.7fr 95px 2.8fr 22px;
    gap: 20px;
  }
  .principle-content {
    margin-left: calc((100% - 177px) / 3.5 * 0.7 + 135px);
    gap: 25px;
    margin-right: 42px;
  }
  .principle-tags {
    gap: 6px;
  }
  .principle-tags span {
    font-size: 9px;
  }
  .principles summary h3 {
    font-size: 30px;
  }
  .closing-content {
    grid-template-columns: 2fr 1fr;
    gap: 30px;
  }
  .closing-content p {
    font-size: 18px;
  }
}
@media (max-width: 760px) {
  html {
    scroll-padding-top: 76px;
  }
  .edge-panel {
    margin-inline: 6px;
    border-radius: 19px;
  }
  .section-shell {
    width: calc(100% - 36px);
  }
  .hero {
    height: auto;
    min-height: 750px;
    max-height: none;
  }
  .hero-content {
    padding: 40px 20px 18px;
    min-height: 750px;
  }
  .hero-top {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .hero h1 {
    font-size: 16.2vw;
    letter-spacing: -0.075em;
  }
  .hero h1 > span {
    font-size: 0.3em;
  }
  .hero-principles {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3px 17px;
    font-size: 12px;
    max-width: 450px;
  }
  .hero-principles p + p {
    margin: 0;
  }
  .hero-coordinate-line {
    left: 20px;
    right: 20px;
    top: 41%;
    font-size: 21px;
    grid-template-columns: repeat(3, 1fr);
  }
  .hero-coordinate-line span:last-child {
    display: none;
  }
  .hero-bottom {
    grid-template-columns: 1fr;
    gap: 27px;
    padding-top: 150px;
  }
  .hero-intro > .micro-label {
    font-size: 8px;
    margin-bottom: 15px;
  }
  .hero-intro > p {
    font-size: 44px;
  }
  .hero-description {
    font-size: 13px;
    margin-top: 13px;
  }
  .featured-app {
    min-height: 110px;
    width: 280px;
    justify-self: end;
  }
  .featured-icon {
    width: 78px;
  }
  .featured-info {
    padding: 10px 12px;
  }
  .featured-info > strong {
    font-size: 23px;
    margin-top: 3px;
  }
  .featured-link {
    font-size: 10px;
    padding: 4px 5px 4px 10px;
  }
  .hero-meta {
    font-size: 7px;
    margin-top: 25px;
    padding-top: 12px;
    gap: 10px;
  }
  .hero-meta > span:last-child {
    display: none;
  }
  .film-control {
    font-size: 10px;
    padding-right: 0;
  }
  .collection {
    padding-top: 84px;
  }
  .section-heading {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 42px;
  }
  .section-heading > .section-index {
    grid-column: 1/-1;
    padding: 0;
    font-size: 10px;
  }
  .section-heading > div {
    grid-column: 1/-1;
  }
  .section-heading h2 {
    font-size: clamp(68px, 14vw, 105px);
    letter-spacing: -0.07em;
  }
  .section-subtitle {
    font-size: 20px;
    margin-top: 15px;
  }
  .section-intro {
    grid-column: 1/-1;
    font-size: 14px;
    max-width: 330px;
    line-height: 1.5;
    margin-top: 2px;
  }
  .product-card {
    padding: 6px;
    border-radius: 15px;
  }
  .product-card-top {
    padding: 15px 11px 20px;
    gap: 12px;
    align-items: start;
  }
  .product-card-top h3 {
    font-size: 22px;
  }
  .product-card-top h3 > span {
    display: block;
    font-size: 10px;
    margin: 7px 0 0;
  }
  .product-availability {
    font-size: 8px;
    margin-top: 5px;
    white-space: nowrap;
  }
  .product-availability .signal-dot {
    width: 4px;
    height: 4px;
    margin-right: 4px;
    vertical-align: 1px;
  }
  .product-layout {
    grid-template-columns: 1fr;
  }
  .product-visual {
    min-height: 365px;
    border-radius: 10px;
  }
  .desktop-top {
    padding: 10px 13px;
    font-size: 8px;
  }
  .desktop-camera {
    width: 70px;
    height: 14px;
  }
  .notch-preview {
    max-width: 430px;
    width: 91%;
    border-radius: 17px;
    padding: 17px 11px 13px;
    transform: translateY(-10px);
  }
  .preview-top {
    font-size: 11px;
    gap: 7px;
  }
  .preview-top img {
    width: 16px;
    height: 16px;
  }
  .preview-top small {
    font-size: 6px;
  }
  .preview-files {
    margin-top: 17px;
    gap: 5px;
  }
  .preview-files > div {
    padding: 15px 3px 12px;
  }
  .file-icon {
    transform: scale(0.85) rotate(-4deg);
    margin-bottom: 4px;
  }
  .file-image {
    transform: scale(0.85) rotate(7deg);
  }
  .preview-files strong {
    font-size: 7px;
  }
  .preview-files small {
    font-size: 7px;
  }
  .preview-bottom {
    margin-top: 14px;
    font-size: 8px;
  }
  .preview-caption {
    bottom: 41px;
    left: 15px;
    right: 15px;
    font-size: 8px;
  }
  .preview-caption .round-arrow {
    width: 28px;
    height: 28px;
    font-size: 17px;
  }
  .sample-label {
    bottom: 17px;
    left: 15px;
    font-size: 8px;
  }
  .product-copy {
    padding: 29px 20px 31px;
  }
  .product-copy h4 {
    font-size: 36px;
    margin-top: 20px;
  }
  .product-copy > p {
    font-size: 14px;
    max-width: 450px;
    margin-top: 18px;
  }
  .product-tags {
    margin: 20px 0 24px;
  }
  .product-copy > p.product-footnote {
    font-size: 10px;
  }
  .collection-footer {
    grid-template-columns: 1fr auto;
    gap: 19px;
    padding-top: 27px;
  }
  .collection-footer > span {
    grid-column: 1/-1;
    font-size: 8px;
  }
  .collection-footer > p {
    font-size: 13px;
  }
  .collection-footer > a {
    font-size: 33px;
  }
  .studio {
    padding-block: 98px 90px;
  }
  .studio-heading {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .studio-heading > .section-index {
    font-size: 10px;
    padding: 0;
  }
  .studio h2 {
    font-size: clamp(40px, 8.5vw, 65px);
    letter-spacing: -0.06em;
  }
  .studio h2 br {
    display: none;
  }
  .studio-body {
    grid-template-columns: 1fr;
    margin-top: 35px;
    gap: 30px;
  }
  .studio-emblem {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    order: 2;
    border-top: 1px solid var(--line);
    padding-top: 24px;
  }
  .studio-emblem img {
    width: 68px;
    height: 68px;
  }
  .studio-emblem > span {
    font-size: 8px;
  }
  .studio-statement > p {
    font-size: 26px;
  }
  .studio-columns {
    grid-template-columns: 1fr;
    gap: 17px;
    margin-top: 23px;
  }
  .studio-columns p {
    font-size: 14px;
    max-width: 570px;
  }
  .philosophy {
    padding: 50px 20px 20px;
  }
  .philosophy .section-heading {
    margin-bottom: 35px;
  }
  .philosophy .section-heading h2 {
    font-size: clamp(57px, 12vw, 88px);
  }
  .philosophy .section-intro {
    font-size: 14px;
  }
  .principles details {
    padding: 25px 0;
  }
  .principles summary {
    grid-template-columns: 36px 1fr 18px;
    gap: 13px;
  }
  .principle-number {
    font-size: 9px;
  }
  .principle-symbol {
    display: none;
  }
  .principles summary h3 {
    font-size: 24px;
    letter-spacing: -0.045em;
  }
  .principle-toggle {
    width: 18px;
  }
  .principle-content {
    display: block;
    margin: 20px 22px 0 49px;
  }
  .principle-content p {
    font-size: 13px;
    line-height: 1.6;
  }
  .principle-tags {
    margin-top: 19px;
  }
  .principle-tags span {
    font-size: 8px;
  }
  .philosophy-footer {
    font-size: 7px;
    gap: 20px;
    margin-top: 12px;
  }
  .philosophy-footer img {
    width: 29px;
    height: 29px;
  }
  .closing {
    padding-block: 74px 70px;
  }
  .closing-label {
    margin-bottom: 30px;
  }
  .closing-label .section-index {
    font-size: 9px;
  }
  .closing-label > span:last-child {
    font-size: 31px;
  }
  .closing-content {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .closing h2 {
    font-size: clamp(72px, 15vw, 112px);
  }
  .closing-content > div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
  }
  .closing-content p {
    font-size: 14px;
    margin: 0;
  }
  .closing .pill-button {
    font-size: 11px;
    gap: 13px;
    padding: 10px 10px 10px 15px;
  }
  .closing .pill-button > span {
    width: 22px;
    height: 22px;
    font-size: 17px;
  }
}
@media (max-width: 360px) {
  .hero-content {
    padding-inline: 16px;
  }
  .hero h1 {
    font-size: 16vw;
  }
  .hero-principles {
    font-size: 11px;
    gap: 5px 9px;
  }
  .hero-intro > p {
    font-size: 39px;
  }
  .featured-app {
    width: 252px;
  }
  .featured-info > small {
    font-size: 7px;
  }
  .hero-intro > .micro-label {
    font-size: 7px;
  }
  .hero-description {
    font-size: 12px;
  }
  .section-shell {
    width: calc(100% - 28px);
  }
  .product-copy {
    padding-inline: 15px;
  }
  .product-copy h4 {
    font-size: 31px;
  }
  .product-visual {
    min-height: 350px;
  }
  .preview-files strong {
    font-size: 6px;
  }
  .closing-content > div {
    align-items: flex-start;
    flex-direction: column;
    gap: 24px;
  }
  .principles summary {
    grid-template-columns: 30px 1fr 18px;
    gap: 10px;
  }
  .principles summary h3 {
    font-size: 21px;
  }
  .principle-content {
    margin-left: 40px;
  }
  .hero-meta {
    font-size: 6px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    animation: none !important;
    transition: none !important;
  }
  .hero-top,
  .hero-bottom {
    opacity: 1;
    transform: none;
  }
}
