:root {
  color-scheme: light dark;
  --bg: #f5f5f7;
  --header-bg: rgba(245, 245, 247, 0.82);
  --surface: #ffffff;
  --surface-muted: #fbfbfd;
  --surface-raised: #ffffff;
  --surface-translucent: rgba(255, 255, 255, 0.78);
  --text: #1d1d1f;
  --muted: #6e6e73;
  --subtle: rgba(29, 29, 31, 0.1);
  --faint: rgba(29, 29, 31, 0.05);
  --image-outline: rgba(0, 0, 0, 0.1);
  --accent: #0071e3;
  --accent-strong: #0066cc;
  --accent-soft: rgba(0, 113, 227, 0.1);
  --accent-border: rgba(0, 113, 227, 0.54);
  --history: #b4442f;
  --history-soft: rgba(180, 68, 47, 0.1);
  --study: #0f766e;
  --shadow-border:
    0 0 0 1px rgba(0, 0, 0, 0.06),
    0 1px 2px -1px rgba(0, 0, 0, 0.06),
    0 12px 36px -24px rgba(0, 0, 0, 0.28);
  --shadow-border-hover:
    0 0 0 1px rgba(0, 0, 0, 0.08),
    0 8px 22px -18px rgba(0, 0, 0, 0.32),
    0 22px 58px -34px rgba(0, 0, 0, 0.35);
  --stage-shadow: 0 30px 90px -46px rgba(0, 0, 0, 0.52);
}

/* Voku-inspired studio direction: flat, editorial, high-contrast, and media-led. */
:root {
  color-scheme: light;
  --bg: #fffdfc;
  --header-bg: transparent;
  --surface: #fffdfc;
  --surface-muted: #f2f0ec;
  --surface-raised: #fffdfc;
  --surface-translucent: rgba(255, 253, 252, 0.88);
  --text: #0a0a0a;
  --muted: #68635f;
  --subtle: rgba(10, 10, 10, 0.18);
  --faint: rgba(10, 10, 10, 0.06);
  --image-outline: rgba(10, 10, 10, 0.18);
  --accent: #0a0a0a;
  --accent-strong: #000000;
  --accent-soft: rgba(10, 10, 10, 0.06);
  --accent-border: rgba(10, 10, 10, 0.82);
  --history: #0a0a0a;
  --history-soft: rgba(10, 10, 10, 0.08);
  --study: #0a0a0a;
  --shadow-border: inset 0 0 0 1px rgba(10, 10, 10, 0.16);
  --shadow-border-hover: inset 0 0 0 1px rgba(10, 10, 10, 0.8);
  --stage-shadow: none;
  --grid-gap: 10px;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: "Helvetica Neue", Arial, -apple-system, BlinkMacSystemFont, "SF Pro Text", sans-serif;
  font-size: clamp(14px, 1.111vw, 18px);
  line-height: 1.25;
  letter-spacing: 0;
}

.site-header {
  position: fixed;
  border-bottom: 0;
  background: transparent;
  color: #ffffff;
  mix-blend-mode: difference;
  backdrop-filter: none;
}

.nav,
.page-shell,
.site-footer {
  width: calc(100% - 32px);
  max-width: none;
}

.nav {
  min-height: 48px;
  align-items: flex-start;
  padding-top: 14px;
}

.brand,
.nav-links,
.site-footer,
.meta,
.stats dt,
.app-details dt,
.app-details dd,
.store-link,
.button,
.eyebrow,
.deskimia-tags span,
.menu-pill {
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1;
}

.brand {
  align-items: center;
  gap: 8px;
}

.brand-mark {
  width: 1.45em;
  height: 1.45em;
  border: 1px solid currentColor;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: currentColor;
  font-size: 0.75rem;
}

.nav-links {
  align-items: flex-start;
  gap: 0;
}

.nav-links a,
.site-footer a,
.store-link {
  position: relative;
  padding: 0 8px 8px;
  color: inherit;
}

.nav-links a::after,
.site-footer a::after,
.store-link::after {
  content: "";
  position: absolute;
  right: 8px;
  bottom: 3px;
  left: 8px;
  border-bottom: 1px solid currentColor;
  transform: scaleX(0);
  transform-origin: 100% 50%;
  transition: transform 260ms cubic-bezier(0.23, 1, 0.32, 1);
}

.nav-links a:hover,
.site-footer a:hover {
  color: inherit;
}

.nav-links a:hover::after,
.site-footer a:hover::after,
.store-link:hover::after {
  transform: scaleX(1);
  transform-origin: 0 50%;
}

.hero {
  min-height: 100svh;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: var(--grid-gap);
  align-items: center;
  padding: 76px 0 58px;
  border-bottom: 1px solid var(--subtle);
}

.hero-copy {
  grid-column: 1 / 6;
  gap: 16px;
}

.hero-stage {
  grid-column: 7 / -1;
}

.eyebrow {
  color: var(--text);
}

h1,
h2,
h3 {
  font-weight: 500;
  letter-spacing: 0;
}

h1 {
  max-width: 8.6ch;
  font-size: clamp(5rem, 10.8vw, 12.2rem);
  line-height: 0.9;
}

h2 {
  max-width: 10ch;
  font-size: clamp(3.4rem, 7vw, 8.2rem);
  line-height: 0.92;
}

h3 {
  font-size: 1rem;
  line-height: 1.08;
}

.hero-text,
.section-heading p,
.suite-copy p,
.deskimia-copy p:not(.eyebrow),
.app-body p,
.footer-note,
.privacy-links small {
  color: var(--muted);
}

.hero-text {
  max-width: 31ch;
  font-size: 1.12rem;
  line-height: 1.2;
}

.hero-actions,
.suite-actions {
  gap: 8px;
}

.button {
  min-height: 36px;
  border: 1px solid currentColor;
  border-radius: 0;
  padding: 0 12px;
  transition-property: color, background, transform;
  transition-duration: 180ms;
  transition-timing-function: ease;
}

.button:hover {
  transform: none;
}

.button-primary {
  color: var(--bg);
  background: var(--text);
  box-shadow: none;
}

.button-primary:hover {
  color: var(--text);
  background: var(--bg);
}

.button-secondary {
  color: var(--text);
  background: transparent;
  box-shadow: none;
}

.button-secondary:hover {
  color: var(--bg);
  background: var(--text);
}

.hero-stage {
  min-height: min(66vw, 620px);
}

.hero-stage::before {
  inset: 7% 0;
  border: 1px solid var(--subtle);
  border-radius: 0;
  background: var(--surface);
  box-shadow: none;
}

.hero-device {
  width: min(62vw, 520px);
  min-height: 430px;
  gap: var(--grid-gap);
  padding: 16px;
  border: 1px solid var(--subtle);
  border-radius: 0;
  background: var(--surface);
  box-shadow: none;
  backdrop-filter: none;
}

.hero-device::before,
.hero-device::after {
  display: none;
}

.device-card,
.device-list,
.device-grid div,
.suite-lead,
.suite-feature-grid div,
.suite-icon-row,
.deskimia-tags span,
.privacy-links a {
  border: 1px solid var(--subtle);
  border-radius: 0;
  background: var(--surface);
  box-shadow: none;
}

.device-card {
  grid-template-columns: 72px minmax(0, 1fr);
  padding: 16px;
}

.device-card img,
.device-grid img,
.suite-lead img,
.suite-icon-row img,
.icon-dock img,
.app-icon,
.history-editions img,
.deskimia-icon {
  border-radius: 0;
  box-shadow: none;
}

.device-card img {
  width: 72px;
}

.device-card span,
.device-grid span,
.suite-lead span,
.suite-feature-grid span {
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1;
}

.device-card strong,
.suite-lead strong,
.suite-feature-grid strong {
  font-weight: 500;
}

.device-list {
  gap: var(--grid-gap);
  padding: var(--grid-gap);
}

.device-list span {
  min-height: 54px;
  border: 1px solid var(--subtle);
  border-radius: 0;
  background: var(--surface-muted);
  font-weight: 500;
}

.device-grid {
  gap: var(--grid-gap);
}

.device-grid div {
  min-height: 150px;
  align-content: center;
}

.device-grid img {
  width: 86px;
}

.icon-dock {
  right: -1px;
  bottom: 7%;
  grid-template-columns: repeat(4, 58px);
  border: 1px solid var(--subtle);
  border-radius: 0;
  background: var(--surface);
  box-shadow: none;
  backdrop-filter: none;
}

.coming-soon {
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: var(--grid-gap);
  padding: var(--grid-gap) 0;
  border-bottom: 1px solid var(--subtle);
}

.deskimia-copy,
.deskimia-preview {
  border: 1px solid var(--subtle);
  border-radius: 0;
  background: var(--surface);
  box-shadow: none;
}

.deskimia-copy {
  grid-column: 1 / 6;
  grid-template-columns: 88px minmax(0, 1fr);
  padding: 18px;
}

.deskimia-preview {
  grid-column: 6 / -1;
  min-height: 310px;
  padding: 18px;
  background: var(--text);
}

.deskimia-copy h2 {
  margin: 6px 0 10px;
  font-size: clamp(3.2rem, 6vw, 6.8rem);
}

.deskimia-copy p:not(.eyebrow) {
  font-size: 1rem;
  line-height: 1.22;
}

.deskimia-icon {
  width: 88px;
}

.deskimia-tags {
  gap: 6px;
}

.deskimia-tags span {
  min-height: 30px;
  padding: 0 10px;
}

.mac-display {
  width: 100%;
  min-height: 260px;
  border: 1px solid rgba(255, 253, 252, 0.3);
  border-radius: 0;
  box-shadow: none;
}

.mac-window-bar {
  background: rgba(255, 253, 252, 0.12);
}

.menu-pill {
  border: 1px solid var(--subtle);
  border-radius: 0;
  background: var(--surface);
  box-shadow: none;
  backdrop-filter: none;
}

.stats {
  border-top: 0;
  border-bottom: 1px solid var(--subtle);
}

.stats dt,
.stats dd {
  border-left: 1px solid var(--subtle);
}

.stats dt {
  padding-top: 18px;
}

.stats dd {
  padding-bottom: 18px;
  font-size: 1.12rem;
  font-weight: 500;
}

.section {
  padding: 92px 0 0;
}

.section-heading {
  gap: 10px;
  margin-bottom: 18px;
}

.section-heading.compact h2 {
  max-width: 14ch;
  font-size: clamp(3rem, 6vw, 6.8rem);
}

.history-suite {
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: var(--grid-gap);
}

.suite-copy,
.suite-showcase,
.privacy-panel {
  border: 1px solid var(--subtle);
  border-radius: 0;
  background: var(--surface);
  box-shadow: none;
}

.suite-copy {
  grid-column: 1 / 6;
  gap: 18px;
  padding: 26px;
}

.suite-showcase {
  grid-column: 6 / -1;
  min-height: 0;
  gap: var(--grid-gap);
  padding: var(--grid-gap);
  background: var(--surface-muted);
  box-shadow: none;
}

.suite-copy .eyebrow,
.suite-copy .button-primary,
.suite-icon-row span {
  color: var(--text);
}

.suite-copy .button-primary {
  color: var(--bg);
  background: var(--text);
}

.suite-copy .button-primary:hover {
  color: var(--text);
  background: transparent;
}

.suite-copy p {
  max-width: 35ch;
  font-size: 1rem;
  line-height: 1.22;
}

.suite-feature-grid {
  gap: var(--grid-gap);
}

.suite-feature-grid div {
  min-height: 128px;
}

.history-editions {
  gap: var(--grid-gap);
}

.history-editions a,
.app-card {
  border: 1px solid var(--subtle);
  border-radius: 0;
  background: var(--surface);
  box-shadow: none;
}

.history-editions a {
  min-height: 64px;
  padding: 10px;
}

.history-editions a:hover,
.app-card:hover,
.privacy-links a:hover {
  transform: none;
  box-shadow: var(--shadow-border-hover);
}

.history-editions img {
  width: 40px;
}

.history-editions span {
  font-weight: 500;
}

.app-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--grid-gap);
}

.app-card,
.feature-app {
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 12px;
  padding: 14px;
}

.feature-app .app-icon,
.app-icon {
  width: 56px;
  height: 56px;
}

.app-body {
  gap: 8px;
}

.app-body p {
  font-size: 0.86rem;
  line-height: 1.25;
}

.app-details {
  grid-template-columns: max-content max-content;
}

.store-link {
  width: fit-content;
  min-height: 24px;
  border-radius: 0;
  padding: 0 0 5px;
  background: transparent;
  box-shadow: none;
  color: var(--text);
}

.store-link:hover {
  background: transparent;
  box-shadow: none;
  transform: none;
}

.store-link::after {
  right: 0;
  bottom: 0;
  left: 0;
}

.privacy-panel {
  grid-template-columns: repeat(12, minmax(0, 1fr));
  align-items: stretch;
  padding: var(--grid-gap);
}

.privacy-panel > div:first-child {
  grid-column: 1 / 6;
  padding: 16px;
}

.privacy-panel h2 {
  max-width: 9ch;
  font-size: clamp(2.8rem, 5.5vw, 5.8rem);
}

.privacy-links {
  grid-column: 6 / -1;
  gap: var(--grid-gap);
}

.privacy-links a {
  min-height: 118px;
}

.site-footer {
  min-height: 180px;
  align-items: flex-start;
  padding: 22px 0 44px;
  border-top: 1px solid var(--subtle);
}

.site-footer nav {
  gap: 0;
}

@media (max-width: 980px) {
  .hero,
  .coming-soon,
  .history-suite,
  .privacy-panel {
    grid-template-columns: 1fr;
  }

  .hero-copy,
  .hero-stage,
  .deskimia-copy,
  .deskimia-preview,
  .suite-copy,
  .suite-showcase,
  .privacy-panel > div:first-child,
  .privacy-links {
    grid-column: auto;
  }

  .app-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .nav,
  .page-shell,
  .site-footer {
    width: calc(100% - 20px);
  }

  .site-header {
    mix-blend-mode: normal;
    color: var(--text);
  }

  .nav-links {
    display: none;
  }

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

  h1 {
    font-size: clamp(4rem, 17vw, 5.9rem);
  }

  h2 {
    font-size: clamp(3.2rem, 13vw, 4.8rem);
  }

  .hero-text {
    font-size: 1rem;
  }

  .button {
    width: auto;
  }

  .hero-stage {
    min-height: 460px;
  }

  .hero-device {
    width: 100%;
    min-height: 400px;
  }

  .device-card {
    grid-template-columns: 58px minmax(0, 1fr);
  }

  .device-card img {
    width: 58px;
  }

  .device-grid div {
    min-height: 122px;
  }

  .icon-dock {
    right: 0;
    bottom: 0;
  }

  .coming-soon {
    padding-bottom: var(--grid-gap);
  }

  .deskimia-copy {
    grid-template-columns: 64px minmax(0, 1fr);
    padding: 14px;
  }

  .deskimia-copy h2 {
    font-size: clamp(2.4rem, 12vw, 4rem);
  }

  .deskimia-icon {
    width: 64px;
  }

  .deskimia-preview {
    min-height: 230px;
    padding: 10px;
  }

  .mac-display {
    min-height: 210px;
  }

  .section {
    padding-top: 72px;
  }

  .stats {
    display: block;
  }

  .suite-copy,
  .privacy-panel > div:first-child {
    padding: 18px;
  }

  .suite-feature-grid,
  .app-grid,
  .privacy-links {
    grid-template-columns: 1fr;
  }

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

  .app-card,
  .feature-app {
    grid-template-columns: 52px minmax(0, 1fr);
  }

  .app-icon,
  .feature-app .app-icon {
    width: 52px;
    height: 52px;
  }

  .site-footer {
    display: grid;
    min-height: 160px;
  }
}

/* Molli reference pass, intentionally last. */
:root {
  --bg: #ffffff;
  --header-bg: #ffffff;
  --surface: #ffffff;
  --surface-muted: #f1f1f1;
  --surface-raised: #ffffff;
  --surface-translucent: #ffffff;
  --text: #161616;
  --muted: #4a4a4a;
  --subtle: rgba(22, 22, 22, 0.16);
  --faint: rgba(22, 22, 22, 0.06);
  --accent: #161616;
  --accent-strong: #000000;
  --accent-soft: rgba(22, 22, 22, 0.06);
  --accent-border: rgba(22, 22, 22, 0.8);
  --history: #161616;
  --history-soft: rgba(22, 22, 22, 0.06);
  --shadow-border: none;
  --shadow-border-hover: none;
  --stage-shadow: none;
  --grid-gap: 24px;
  --portfolio-width: 1100px;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: "Courier New", Courier, monospace;
  font-size: 15px;
  letter-spacing: 0;
  line-height: 1.42;
}

.site-header {
  position: static;
  border-bottom: 0;
  background: var(--bg);
  color: var(--text);
  mix-blend-mode: normal;
}

.nav,
.page-shell,
.site-footer {
  width: calc(100% - 112px);
  max-width: var(--portfolio-width);
  margin: 0 auto;
}

.nav {
  min-height: 96px;
  align-items: flex-start;
  padding-top: 34px;
}

.brand {
  gap: 0;
  font-family: "Arial Narrow", "HelveticaNeue-CondensedBold", "Avenir Next Condensed", Impact, sans-serif;
  font-size: 2.35rem;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.9;
}

.brand-mark {
  display: none;
}

.nav-links {
  display: flex;
  gap: 28px;
  color: var(--text);
  font-family: "Arial Narrow", "HelveticaNeue-CondensedBold", "Avenir Next Condensed", Impact, sans-serif;
  font-size: 0.92rem;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
  text-transform: uppercase;
}

.nav-links a,
.site-footer a,
.store-link {
  color: inherit;
  padding: 0 0 5px;
}

.nav-links a::after,
.site-footer a::after,
.store-link::after {
  right: 0;
  bottom: 0;
  left: 0;
  border-bottom: 2px solid currentColor;
}

.hero {
  min-height: 0;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  align-items: start;
  gap: 0 var(--grid-gap);
  padding: 84px 0 120px;
  border-bottom: 0;
}

.hero-copy {
  grid-column: 2 / 8;
  gap: 18px;
}

.eyebrow {
  color: var(--text);
  font-family: "Courier New", Courier, monospace;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.25;
}

h1,
h2,
h3 {
  font-family: "Arial Narrow", "HelveticaNeue-CondensedBold", "Avenir Next Condensed", Impact, sans-serif;
  font-weight: 900;
  letter-spacing: 0;
}

h1 {
  max-width: 13ch;
  font-size: clamp(3.7rem, 5.6vw, 6rem);
  line-height: 0.9;
}

h2 {
  max-width: 12ch;
  font-size: clamp(3.1rem, 5.4vw, 6.1rem);
  line-height: 0.92;
}

h3 {
  font-size: 1rem;
  line-height: 1.08;
}

.hero-text {
  max-width: 48ch;
  color: var(--muted);
  font-family: "Courier New", Courier, monospace;
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.45;
}

.hero-actions,
.suite-actions {
  gap: 8px;
}

.button {
  width: auto;
  min-height: 36px;
  border: 1px solid currentColor;
  border-radius: 0;
  padding: 0 12px;
  box-shadow: none;
  font-family: "Arial Narrow", "HelveticaNeue-CondensedBold", "Avenir Next Condensed", Impact, sans-serif;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
}

.button:hover {
  transform: none;
}

.button-primary,
.suite-copy .button-primary {
  color: var(--bg);
  background: var(--text);
}

.button-primary:hover,
.suite-copy .button-primary:hover {
  color: var(--text);
  background: var(--bg);
}

.button-secondary {
  color: var(--text);
  background: transparent;
}

.button-secondary:hover {
  color: var(--bg);
  background: var(--text);
}

.hero-stage {
  position: relative;
  grid-column: 2 / -1;
  grid-row: 2;
  display: grid;
  grid-template-columns: repeat(10, minmax(0, 1fr));
  gap: var(--grid-gap);
  min-height: 690px;
  margin-top: 90px;
  place-items: start stretch;
}

.hero-stage::before {
  display: none;
}

.hero-device {
  position: relative;
  grid-column: 1 / 6;
  width: 100%;
  min-height: 620px;
  align-content: end;
  gap: 18px;
  padding: 28px;
  border: 0;
  border-radius: 0;
  background: var(--surface-muted);
  box-shadow: none;
  backdrop-filter: none;
}

.hero-device::before {
  display: none;
}

.hero-device::after {
  content: "History suite\A Events, births, deaths";
  position: absolute;
  top: calc(100% + 16px);
  left: 0;
  display: block;
  white-space: pre;
  color: var(--text);
  font-family: "Courier New", Courier, monospace;
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.45;
}

.device-card,
.device-list,
.device-grid div,
.suite-lead,
.suite-feature-grid div,
.suite-icon-row,
.deskimia-tags span,
.privacy-links a {
  border: 1px solid var(--subtle);
  border-radius: 0;
  background: var(--surface);
  box-shadow: none;
}

.device-card img,
.device-grid img,
.suite-lead img,
.suite-icon-row img,
.icon-dock img,
.app-icon,
.history-editions img,
.deskimia-icon {
  border-radius: 0;
  box-shadow: none;
}

.device-card {
  grid-template-columns: 72px minmax(0, 1fr);
  padding: 16px;
}

.device-card img {
  width: 72px;
}

.device-list {
  gap: 14px;
  padding: 14px;
}

.device-list span {
  min-height: 58px;
  border: 1px solid var(--subtle);
  border-radius: 0;
  background: var(--surface);
}

.device-grid {
  gap: 14px;
}

.device-grid div {
  min-height: 154px;
}

.device-grid img {
  width: 86px;
}

.icon-dock {
  position: relative;
  right: auto;
  bottom: auto;
  grid-column: 7 / 10;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  width: 100%;
  min-height: 410px;
  margin-top: 92px;
  padding: 36px;
  border: 0;
  border-radius: 0;
  background: #050505;
  box-shadow: none;
  backdrop-filter: none;
}

.icon-dock::after {
  content: "Selected apps\A Maps, HSK, live wallpaper";
  position: absolute;
  top: calc(100% + 16px);
  left: 0;
  display: block;
  white-space: pre;
  color: var(--text);
  font-family: "Courier New", Courier, monospace;
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.45;
}

.icon-dock img {
  width: 82px;
  height: 82px;
  margin: auto;
}

.coming-soon,
.history-suite,
.privacy-panel {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: var(--grid-gap);
}

.coming-soon {
  padding: 64px 0 110px;
  border-bottom: 0;
}

.deskimia-copy,
.deskimia-preview,
.suite-copy,
.suite-showcase,
.privacy-panel,
.history-editions a,
.app-card {
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.deskimia-copy {
  grid-column: 2 / 6;
  grid-template-columns: 88px minmax(0, 1fr);
  align-self: start;
  padding: 0;
}

.deskimia-preview {
  grid-column: 6 / -1;
  min-height: 410px;
  padding: 0;
  background: var(--text);
}

.deskimia-copy h2 {
  margin: 6px 0 10px;
  font-size: clamp(3rem, 5.2vw, 5.9rem);
}

.deskimia-copy p:not(.eyebrow),
.suite-copy p,
.section-heading p,
.app-body p,
.privacy-links small,
.footer-note {
  color: var(--muted);
  font-family: "Courier New", Courier, monospace;
}

.deskimia-copy p:not(.eyebrow),
.suite-copy p {
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.45;
}

.deskimia-icon {
  width: 88px;
}

.deskimia-tags {
  gap: 6px;
}

.deskimia-tags span {
  min-height: 30px;
  padding: 0 10px;
}

.mac-display {
  min-height: 410px;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.menu-pill {
  border: 1px solid var(--subtle);
  border-radius: 0;
  background: var(--surface);
  box-shadow: none;
  backdrop-filter: none;
}

.stats {
  border-top: 1px solid var(--subtle);
  border-bottom: 1px solid var(--subtle);
}

.section {
  padding: 100px 0 0;
}

.section-heading {
  gap: 10px;
  margin-bottom: 24px;
}

.section-heading.compact h2 {
  max-width: 14ch;
  font-size: clamp(3rem, 5.4vw, 6.1rem);
}

.suite-copy {
  grid-column: 1 / 6;
  gap: 18px;
  padding: 0;
}

.suite-showcase {
  grid-column: 6 / -1;
  gap: var(--grid-gap);
  padding: 0;
  background: transparent;
}

.suite-feature-grid,
.history-editions,
.app-grid,
.privacy-links {
  gap: var(--grid-gap);
}

.suite-feature-grid div {
  min-height: 128px;
}

.history-editions a {
  min-height: 64px;
  padding: 10px;
}

.history-editions a:hover,
.app-card:hover,
.privacy-links a:hover {
  transform: none;
  box-shadow: none;
}

.app-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.app-card,
.feature-app {
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 12px;
  padding: 0;
}

.feature-app .app-icon,
.app-icon {
  width: 56px;
  height: 56px;
}

.store-link {
  width: fit-content;
  min-height: 24px;
  border-radius: 0;
  padding: 0 0 5px;
  background: transparent;
  box-shadow: none;
  color: var(--text);
}

.store-link:hover {
  background: transparent;
  box-shadow: none;
  transform: none;
}

.privacy-panel {
  align-items: start;
  padding: 0;
}

.privacy-panel > div:first-child {
  grid-column: 1 / 5;
  padding: 0;
}

.privacy-links {
  grid-column: 5 / -1;
}

.site-footer {
  min-height: 170px;
  align-items: flex-start;
  padding: 28px 0 44px;
  border-top: 1px solid var(--subtle);
}

@media (max-width: 980px) {
  .hero,
  .coming-soon,
  .history-suite,
  .privacy-panel {
    grid-template-columns: 1fr;
  }

  .hero-copy,
  .hero-stage,
  .deskimia-copy,
  .deskimia-preview,
  .suite-copy,
  .suite-showcase,
  .privacy-panel > div:first-child,
  .privacy-links {
    grid-column: auto;
  }

  .hero-stage {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-device {
    grid-column: 1;
  }

  .icon-dock {
    grid-column: 2;
  }

  .app-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .nav,
  .page-shell,
  .site-footer {
    width: calc(100% - 24px);
  }

  .nav {
    min-height: 74px;
    padding-top: 22px;
  }

  .brand {
    font-size: 2rem;
  }

  .nav-links {
    display: none;
  }

  .hero {
    padding: 68px 0 64px;
  }

  .hero-copy {
    gap: 16px;
  }

  h1 {
    max-width: 11ch;
    font-size: clamp(3.3rem, 15vw, 5rem);
  }

  h2 {
    font-size: clamp(3rem, 13vw, 4.6rem);
  }

  .hero-text {
    font-size: 0.9rem;
  }

  .hero-stage {
    display: block;
    min-height: 0;
    margin-top: 54px;
  }

  .hero-device {
    width: 100%;
    min-height: 430px;
    padding: 18px;
  }

  .icon-dock {
    width: 74%;
    min-height: 300px;
    margin: 104px 0 0 auto;
    padding: 24px;
  }

  .icon-dock img {
    width: 66px;
    height: 66px;
  }

  .coming-soon {
    padding: 24px 0 74px;
  }

  .deskimia-copy {
    grid-template-columns: 64px minmax(0, 1fr);
  }

  .deskimia-icon {
    width: 64px;
  }

  .deskimia-preview {
    min-height: 260px;
  }

  .mac-display {
    min-height: 260px;
  }

  .section {
    padding-top: 74px;
  }

  .stats {
    display: block;
  }

  .suite-feature-grid,
  .app-grid,
  .privacy-links,
  .history-editions {
    grid-template-columns: 1fr;
  }

  .app-card,
  .feature-app {
    grid-template-columns: 52px minmax(0, 1fr);
  }

  .app-icon,
  .feature-app .app-icon {
    width: 52px;
    height: 52px;
  }
}

@media (min-width: 641px) {
  .hero {
    min-height: 84svh;
  }
}

/* Molli-inspired portfolio direction, requested after the studio pass. */
:root {
  color-scheme: light;
  --bg: #ffffff;
  --header-bg: #ffffff;
  --surface: #ffffff;
  --surface-muted: #f1f1f1;
  --surface-raised: #ffffff;
  --surface-translucent: #ffffff;
  --text: #181818;
  --muted: #4e4e4e;
  --subtle: rgba(24, 24, 24, 0.14);
  --faint: rgba(24, 24, 24, 0.06);
  --image-outline: rgba(24, 24, 24, 0.1);
  --accent: #181818;
  --accent-strong: #000000;
  --accent-soft: rgba(24, 24, 24, 0.06);
  --accent-border: rgba(24, 24, 24, 0.8);
  --history: #181818;
  --history-soft: rgba(24, 24, 24, 0.06);
  --shadow-border: none;
  --shadow-border-hover: none;
  --stage-shadow: none;
  --portfolio-width: 1100px;
}

body {
  overflow-x: hidden;
  background: var(--bg);
  color: var(--text);
  font-family: "Courier New", Courier, monospace;
  font-size: 15px;
  line-height: 1.42;
}

.site-header {
  position: static;
  border-bottom: 0;
  background: var(--bg);
  color: var(--text);
  mix-blend-mode: normal;
}

.nav,
.page-shell,
.site-footer {
  width: calc(100% - 112px);
  max-width: var(--portfolio-width);
  margin: 0 auto;
}

.nav {
  min-height: 88px;
  align-items: flex-start;
  padding-top: 32px;
}

.brand {
  gap: 0;
  font-family: "Arial Narrow", "HelveticaNeue-CondensedBold", "Avenir Next Condensed", Impact, sans-serif;
  font-size: 2.25rem;
  font-weight: 900;
  line-height: 0.92;
  letter-spacing: 0;
}

.brand-mark {
  display: none;
}

.nav-links {
  gap: 28px;
  color: var(--text);
  font-family: "Arial Narrow", "HelveticaNeue-CondensedBold", "Avenir Next Condensed", Impact, sans-serif;
  font-size: 0.92rem;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.nav-links a,
.site-footer a,
.store-link {
  padding: 0 0 5px;
}

.nav-links a::after,
.site-footer a::after,
.store-link::after {
  right: 0;
  bottom: 0;
  left: 0;
  border-bottom: 2px solid currentColor;
}

.hero {
  min-height: 0;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  align-items: start;
  gap: 32px 24px;
  padding: 92px 0 64px;
  border-bottom: 0;
}

.hero-copy {
  grid-column: 2 / 8;
  gap: 22px;
}

.hero-stage {
  grid-column: 2 / -1;
  grid-row: 2;
  min-height: 0;
  display: grid;
  grid-template-columns: repeat(10, minmax(0, 1fr));
  place-items: stretch;
  margin-top: 70px;
}

.hero-stage::before {
  display: none;
}

.eyebrow {
  color: var(--text);
  font-family: "Courier New", Courier, monospace;
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1.2;
}

h1,
h2,
h3 {
  font-family: "Arial Narrow", "HelveticaNeue-CondensedBold", "Avenir Next Condensed", Impact, sans-serif;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: none;
}

h1 {
  max-width: 15ch;
  font-size: clamp(3.9rem, 5.4vw, 5.9rem);
  line-height: 0.94;
}

h2 {
  max-width: 12ch;
  font-size: clamp(3.2rem, 5.2vw, 5.9rem);
  line-height: 0.92;
}

h3 {
  font-size: 1.28rem;
  line-height: 1;
}

.hero-text {
  max-width: 62ch;
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.55;
}

.hero-actions,
.suite-actions {
  gap: 10px;
}

.button {
  min-height: 38px;
  border: 2px solid var(--text);
  border-radius: 0;
  padding: 0 16px;
  font-family: "Arial Narrow", "HelveticaNeue-CondensedBold", "Avenir Next Condensed", Impact, sans-serif;
  font-size: 0.88rem;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  box-shadow: none;
}

.button-primary {
  color: #ffffff;
  background: var(--text);
}

.button-secondary {
  color: var(--text);
  background: #ffffff;
}

.button:hover {
  transform: none;
}

.button-primary:hover {
  color: var(--text);
  background: #ffffff;
}

.button-secondary:hover {
  color: #ffffff;
  background: var(--text);
}

.hero-device {
  grid-column: 1 / 6;
  width: 100%;
  min-height: 620px;
  display: grid;
  align-content: center;
  gap: 14px;
  padding: 74px;
  border: 0;
  border-radius: 0;
  background: #efefef;
  box-shadow: none;
}

.hero-device::before,
.hero-device::after {
  display: none;
}

.device-card,
.device-list,
.device-grid div {
  border: 0;
  border-radius: 0;
  background: #ffffff;
  box-shadow: none;
}

.device-card {
  grid-template-columns: 76px minmax(0, 1fr);
  padding: 18px;
}

.device-card img {
  width: 76px;
}

.device-list {
  gap: 10px;
  padding: 0;
  background: transparent;
}

.device-list span {
  min-height: 54px;
  border: 0;
  border-radius: 0;
  background: #ffffff;
  font-family: "Arial Narrow", "HelveticaNeue-CondensedBold", "Avenir Next Condensed", Impact, sans-serif;
  font-weight: 900;
}

.device-grid {
  gap: 10px;
}

.device-grid div {
  min-height: 176px;
}

.device-card span,
.device-grid span,
.suite-lead span,
.suite-feature-grid span,
.meta,
.app-details dt,
.privacy-links small {
  color: var(--muted);
  font-family: "Courier New", Courier, monospace;
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.35;
}

.device-card strong,
.suite-lead strong,
.suite-feature-grid strong,
.history-editions span,
.app-details dd {
  font-family: "Arial Narrow", "HelveticaNeue-CondensedBold", "Avenir Next Condensed", Impact, sans-serif;
  font-weight: 900;
}

.icon-dock {
  right: 0;
  bottom: 0;
  grid-template-columns: repeat(4, 58px);
  border: 0;
  border-radius: 0;
  background: #ffffff;
  box-shadow: none;
}

.icon-dock img,
.device-card img,
.device-grid img,
.suite-lead img,
.suite-icon-row img,
.app-icon,
.history-editions img,
.deskimia-icon {
  border-radius: 0;
  box-shadow: none;
}

.coming-soon {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 28px;
  padding: 0 0 104px;
  border-bottom: 0;
}

.deskimia-copy {
  grid-column: 7 / 11;
  grid-row: 1;
  align-self: start;
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 18px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.deskimia-copy h2 {
  margin: 2px 0 10px;
  font-size: clamp(2.7rem, 4.4vw, 4.7rem);
}

.deskimia-copy p:not(.eyebrow) {
  color: var(--text);
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.45;
}

.deskimia-icon {
  width: 72px;
}

.deskimia-tags {
  display: none;
}

.deskimia-preview {
  grid-column: 6 / 11;
  grid-row: 2;
  min-height: 390px;
  margin-top: 52px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.mac-display {
  min-height: 390px;
  border: 0;
  border-radius: 0;
  background: #050505;
  box-shadow: none;
}

.mac-window-bar {
  background: #050505;
}

.menu-pill {
  right: 18px;
  bottom: 18px;
  min-height: 34px;
  border: 0;
  border-radius: 0;
  background: #ffffff;
  color: var(--text);
  font-family: "Arial Narrow", "HelveticaNeue-CondensedBold", "Avenir Next Condensed", Impact, sans-serif;
  font-size: 0.82rem;
  font-weight: 900;
  box-shadow: none;
}

.stats {
  grid-column: 1 / -1;
  margin: 0 0 96px;
  border-top: 1px solid var(--subtle);
  border-bottom: 1px solid var(--subtle);
}

.stats dt {
  padding: 18px 24px 0;
}

.stats dd {
  padding: 5px 24px 18px;
  font-family: "Arial Narrow", "HelveticaNeue-CondensedBold", "Avenir Next Condensed", Impact, sans-serif;
  font-size: 1.45rem;
  font-weight: 900;
}

.section {
  padding: 0 0 118px;
}

.history-suite {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 28px;
}

.suite-copy {
  grid-column: 2 / 6;
  align-self: start;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.suite-copy p {
  max-width: 48ch;
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.48;
}

.suite-showcase {
  grid-column: 6 / 11;
  display: grid;
  gap: 10px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.suite-lead,
.suite-feature-grid div,
.suite-icon-row {
  border: 0;
  border-radius: 0;
  background: #efefef;
  box-shadow: none;
}

.suite-feature-grid {
  gap: 10px;
}

.suite-feature-grid div {
  min-height: 132px;
}

.suite-icon-row {
  min-height: 74px;
}

.history-editions {
  grid-column: 2 / 11;
  gap: 12px;
  margin-top: 42px;
}

.history-editions a {
  min-height: 66px;
  border: 0;
  border-radius: 0;
  background: #f4f4f4;
  box-shadow: none;
}

.history-editions a:hover {
  background: #ededed;
  transform: none;
  box-shadow: none;
}

.section-heading {
  margin: 0 0 58px;
}

.section-heading.compact {
  margin-left: calc((100% - var(--portfolio-width)) / 12);
}

.section-heading.compact h2 {
  max-width: 14ch;
  font-size: clamp(3.2rem, 5.2vw, 5.7rem);
}

.app-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 28px;
}

.app-card,
.feature-app {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 16px;
  min-height: 210px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.app-card:nth-child(odd) {
  grid-column: 2 / 6;
}

.app-card:nth-child(even) {
  grid-column: 7 / 11;
  margin-top: 96px;
}

.app-card:hover {
  transform: none;
  box-shadow: none;
}

.app-icon,
.feature-app .app-icon {
  width: 72px;
  height: 72px;
}

.app-body {
  gap: 8px;
}

.app-body p {
  color: var(--text);
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1.45;
}

.app-details {
  grid-template-columns: max-content max-content;
  gap: 3px 8px;
}

.store-link {
  width: fit-content;
  min-height: 24px;
  padding: 0 0 4px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--text);
  font-family: "Arial Narrow", "HelveticaNeue-CondensedBold", "Avenir Next Condensed", Impact, sans-serif;
  font-size: 0.86rem;
  font-weight: 900;
  box-shadow: none;
}

.store-link:hover {
  background: transparent;
  transform: none;
  box-shadow: none;
}

.privacy-panel {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 28px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.privacy-panel > div:first-child {
  grid-column: 2 / 6;
  padding: 0;
}

.privacy-panel h2 {
  max-width: 10ch;
  font-size: clamp(3rem, 5vw, 5.5rem);
}

.privacy-links {
  grid-column: 6 / 11;
  display: grid;
  gap: 12px;
}

.privacy-links a {
  min-height: 90px;
  border: 0;
  border-radius: 0;
  background: #f4f4f4;
  box-shadow: none;
}

.privacy-links a:hover {
  background: #ededed;
  transform: none;
  box-shadow: none;
}

.privacy-links span {
  font-family: "Arial Narrow", "HelveticaNeue-CondensedBold", "Avenir Next Condensed", Impact, sans-serif;
  font-weight: 900;
}

.site-footer {
  min-height: 160px;
  align-items: flex-start;
  padding: 38px 0 54px;
  border-top: 1px solid var(--subtle);
}

.site-footer p:first-child {
  font-family: "Arial Narrow", "HelveticaNeue-CondensedBold", "Avenir Next Condensed", Impact, sans-serif;
  font-size: 1rem;
  font-weight: 900;
}

@media (max-width: 980px) {
  .nav,
  .page-shell,
  .site-footer {
    width: calc(100% - 32px);
  }

  .hero,
  .coming-soon,
  .history-suite,
  .app-grid,
  .privacy-panel {
    display: grid;
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .hero-copy,
  .hero-stage,
  .deskimia-copy,
  .deskimia-preview,
  .suite-copy,
  .suite-showcase,
  .history-editions,
  .app-card:nth-child(odd),
  .app-card:nth-child(even),
  .privacy-panel > div:first-child,
  .privacy-links {
    grid-column: 1;
    margin-top: 0;
  }

  .hero {
    padding: 54px 0 64px;
  }

  .hero-stage {
    grid-template-columns: 1fr;
    margin-top: 38px;
  }

  .hero-device {
    min-height: 480px;
    padding: 24px;
  }

  .deskimia-preview,
  .mac-display {
    min-height: 300px;
  }

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

@media (max-width: 640px) {
  .nav,
  .page-shell,
  .site-footer {
    width: calc(100% - 24px);
  }

  .nav {
    min-height: 72px;
    padding-top: 20px;
  }

  .brand {
    font-size: 1.7rem;
  }

  .nav-links {
    display: none;
  }

  .hero {
    padding-top: 36px;
  }

  h1 {
    font-size: clamp(3.8rem, 16vw, 5.3rem);
  }

  h2 {
    font-size: clamp(3rem, 13vw, 4.45rem);
  }

  .hero-device {
    min-height: 410px;
    padding: 14px;
  }

  .device-card {
    grid-template-columns: 58px minmax(0, 1fr);
  }

  .device-card img {
    width: 58px;
  }

  .device-grid div {
    min-height: 130px;
  }

  .icon-dock {
    grid-template-columns: repeat(4, 48px);
  }

  .icon-dock img {
    width: 48px;
  }

  .deskimia-copy {
    grid-template-columns: 58px minmax(0, 1fr);
  }

  .deskimia-icon {
    width: 58px;
  }

  .stats {
    display: block;
  }

  .stats dt,
  .stats dd {
    border-left: 0;
  }

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

  .app-card,
  .feature-app {
    grid-template-columns: 58px minmax(0, 1fr);
  }

  .app-icon,
  .feature-app .app-icon {
    width: 58px;
    height: 58px;
  }
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #050505;
    --header-bg: rgba(5, 5, 5, 0.82);
    --surface: #0d0d0f;
    --surface-muted: #151518;
    --surface-raised: #121216;
    --surface-translucent: rgba(18, 18, 20, 0.78);
    --text: #f5f5f7;
    --muted: #a1a1a6;
    --subtle: rgba(255, 255, 255, 0.14);
    --faint: rgba(255, 255, 255, 0.08);
    --image-outline: rgba(255, 255, 255, 0.1);
    --accent: #2997ff;
    --accent-strong: #5eb0ff;
    --accent-soft: rgba(41, 151, 255, 0.16);
    --accent-border: rgba(41, 151, 255, 0.58);
    --history: #f0775b;
    --history-soft: rgba(240, 119, 91, 0.14);
    --study: #5eead4;
    --shadow-border: 0 0 0 1px rgba(255, 255, 255, 0.08);
    --shadow-border-hover: 0 0 0 1px rgba(255, 255, 255, 0.13);
    --stage-shadow: 0 32px 100px -46px rgba(0, 0, 0, 0.9);
  }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
}

body::selection {
  background: rgba(0, 113, 227, 0.18);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

h1,
h2,
h3,
p,
dl {
  margin: 0;
}

h1,
h2,
h3 {
  text-wrap: balance;
}

p {
  text-wrap: pretty;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid var(--subtle);
  background: var(--header-bg);
  backdrop-filter: saturate(180%) blur(18px);
}

.nav,
.page-shell,
.site-footer {
  width: calc(100% - 40px);
  max-width: 1180px;
  margin: 0 auto;
}

.nav {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand,
.nav-links,
.hero-actions,
.suite-actions,
.app-details,
.site-footer nav {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 650;
}

.brand-mark {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: #fff;
  background: var(--accent);
  box-shadow: 0 8px 22px rgba(0, 113, 227, 0.24);
}

.nav-links {
  gap: 22px;
  color: var(--muted);
  font-size: 0.9375rem;
}

.nav-links a,
.site-footer a,
.store-link {
  transition-property: color, transform;
  transition-duration: 160ms;
  transition-timing-function: ease;
}

.nav-links a:hover,
.site-footer a:hover {
  color: var(--accent);
}

.page-shell {
  isolation: isolate;
}

.hero {
  min-width: 0;
  min-height: 640px;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(360px, 1.12fr);
  align-items: center;
  gap: 72px;
  padding: 76px 0 48px;
}

.hero-copy {
  min-width: 0;
  display: grid;
  gap: 22px;
}

.eyebrow {
  color: var(--accent);
  font-size: 0.9375rem;
  font-weight: 650;
}

h1 {
  max-width: 10ch;
  font-size: clamp(3.6rem, 8vw, 7rem);
  font-weight: 650;
  line-height: 0.96;
  letter-spacing: 0;
}

h2 {
  max-width: 17ch;
  font-size: clamp(2.35rem, 5vw, 4.85rem);
  font-weight: 650;
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  font-size: 1.16rem;
  font-weight: 650;
  line-height: 1.18;
  letter-spacing: 0;
}

.hero-text,
.section-heading p,
.suite-copy p,
.app-body p,
.footer-note,
.privacy-links small {
  color: var(--muted);
}

.hero-text {
  max-width: 39ch;
  font-size: 1.35rem;
  line-height: 1.34;
}

.hero-actions,
.suite-actions {
  gap: 12px;
  flex-wrap: wrap;
  padding-top: 4px;
}

.button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 18px;
  font-weight: 650;
  line-height: 1;
  transition-property: transform, background, color, box-shadow;
  transition-duration: 170ms;
  transition-timing-function: ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button:active,
.store-link:active,
.history-editions a:active,
.privacy-links a:active {
  transform: scale(0.96);
}

.button-primary {
  color: #fff;
  background: var(--accent);
  box-shadow: 0 10px 24px -18px rgba(0, 113, 227, 0.68);
}

.button-primary:hover {
  background: var(--accent-strong);
}

.button-secondary {
  box-shadow: var(--shadow-border);
  background: var(--surface-translucent);
  color: var(--text);
}

.hero-stage {
  min-width: 0;
  min-height: 540px;
  position: relative;
  display: grid;
  place-items: center;
}

.hero-stage::before {
  content: "";
  position: absolute;
  inset: 8% 2% 5%;
  border-radius: 8px;
  background: var(--surface-muted);
  box-shadow: var(--stage-shadow);
}

.hero-device {
  width: min(68vw, 360px);
  min-height: 500px;
  position: relative;
  z-index: 2;
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 58px 18px 18px;
  border-radius: 46px;
  background: var(--surface-translucent);
  box-shadow:
    0 0 0 1px var(--image-outline),
    0 30px 80px -36px rgba(0, 0, 0, 0.62);
  backdrop-filter: blur(24px);
}

.hero-device::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid var(--subtle);
  border-radius: 36px;
  pointer-events: none;
}

.hero-device::after {
  content: "";
  width: 94px;
  height: 26px;
  position: absolute;
  top: 20px;
  left: 50%;
  z-index: 2;
  border-radius: 999px;
  background: var(--text);
  transform: translateX(-50%);
}

.device-card,
.device-list,
.device-grid div,
.suite-lead,
.suite-feature-grid div,
.suite-icon-row {
  border-radius: 8px;
  background: var(--surface-translucent);
  box-shadow: var(--shadow-border);
}

.device-card {
  min-width: 0;
  z-index: 1;
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  padding: 14px;
}

.device-card img {
  width: 70px;
}

.device-card span,
.device-grid span,
.suite-lead span,
.suite-feature-grid span {
  color: var(--muted);
  font-size: 0.875rem;
  font-weight: 550;
}

.device-card strong,
.suite-lead strong,
.suite-feature-grid strong {
  display: block;
  font-weight: 650;
  line-height: 1.15;
}

.device-list {
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  padding: 12px;
}

.device-list span {
  min-height: 42px;
  display: flex;
  align-items: center;
  border-radius: 8px;
  padding: 0 12px;
  background: var(--surface-muted);
  font-weight: 650;
}

.device-grid {
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.device-grid div {
  display: grid;
  justify-items: center;
  gap: 8px;
  padding: 16px 12px;
}

.device-grid img {
  width: 76px;
}

.icon-dock {
  position: absolute;
  z-index: 3;
  right: 1%;
  bottom: 6%;
  display: grid;
  grid-template-columns: repeat(4, 58px);
  gap: 10px;
  padding: 10px;
  border-radius: 26px;
  background: var(--surface-translucent);
  box-shadow: var(--shadow-border);
  backdrop-filter: blur(18px);
}

.icon-dock img,
.device-card img,
.device-grid img,
.suite-lead img,
.suite-icon-row img,
.app-icon,
.history-editions img {
  aspect-ratio: 1;
  border-radius: 22.37%;
  outline: 1px solid var(--image-outline);
  outline-offset: -1px;
  box-shadow: 0 12px 26px -18px rgba(0, 0, 0, 0.42);
}

.icon-dock img {
  width: 58px;
}

.coming-soon {
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(360px, 1.14fr);
  gap: 16px;
  align-items: stretch;
  padding: 0 0 48px;
  border-bottom: 1px solid var(--subtle);
}

.deskimia-copy,
.deskimia-preview {
  border-radius: 8px;
  background: var(--surface-raised);
  box-shadow: var(--shadow-border);
}

.deskimia-copy {
  min-width: 0;
  display: grid;
  grid-template-columns: 94px minmax(0, 1fr);
  align-items: start;
  gap: 20px;
  padding: 26px;
}

.deskimia-copy h2 {
  margin: 6px 0 12px;
  font-size: clamp(2.2rem, 4.8vw, 4.2rem);
}

.deskimia-copy p:not(.eyebrow) {
  max-width: 44ch;
  color: var(--muted);
  font-size: 1.1rem;
}

.deskimia-icon {
  width: 94px;
  aspect-ratio: 1;
  border-radius: 22.37%;
  outline: 1px solid var(--image-outline);
  outline-offset: -1px;
  box-shadow: 0 18px 36px -24px rgba(0, 0, 0, 0.5);
}

.deskimia-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.deskimia-tags span {
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0 12px;
  background: var(--surface-muted);
  box-shadow: var(--shadow-border);
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 650;
}

.deskimia-preview {
  min-width: 0;
  display: grid;
  place-items: center;
  min-height: 300px;
  overflow: hidden;
  padding: 24px;
  background: var(--surface-muted);
}

.mac-display {
  width: min(100%, 520px);
  min-height: 260px;
  position: relative;
  display: grid;
  grid-template-rows: 34px 1fr;
  overflow: hidden;
  border-radius: 8px;
  background: #111316;
  box-shadow:
    0 0 0 1px var(--image-outline),
    0 30px 70px -42px rgba(0, 0, 0, 0.68);
}

.mac-window-bar {
  display: flex;
  align-items: center;
  padding: 0 13px;
  background: rgba(255, 255, 255, 0.08);
}

.mac-window-bar::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.76);
  box-shadow:
    17px 0 0 rgba(255, 255, 255, 0.56),
    34px 0 0 rgba(255, 255, 255, 0.34);
}

.wallpaper-canvas {
  position: relative;
  overflow: hidden;
  background: #142a36;
}

.wallpaper-band {
  position: absolute;
  left: -8%;
  width: 116%;
  border-radius: 999px;
  transform: rotate(-8deg);
}

.band-a {
  top: 22%;
  height: 34%;
  background: #4de0c8;
}

.band-b {
  top: 40%;
  height: 22%;
  background: #b8f45e;
  opacity: 0.88;
}

.band-c {
  top: 58%;
  height: 34%;
  background: #6f8cff;
  opacity: 0.76;
}

.menu-pill {
  position: absolute;
  right: 18px;
  bottom: 18px;
  min-height: 36px;
  display: flex;
  align-items: center;
  border-radius: 999px;
  padding: 0 14px;
  background: var(--surface-translucent);
  box-shadow: var(--shadow-border);
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 650;
  backdrop-filter: blur(18px);
}

.stats {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(0, 1fr);
  grid-template-rows: auto auto;
  border-top: 1px solid var(--subtle);
  border-bottom: 1px solid var(--subtle);
}

.stats dt,
.stats dd {
  border-left: 1px solid var(--subtle);
}

.stats dt {
  padding: 22px 24px 0;
}

.stats dd {
  margin: 0;
  padding: 5px 24px 22px;
  font-size: 1.35rem;
  font-weight: 650;
  line-height: 1.2;
  font-variant-numeric: tabular-nums;
}

.stats dt:first-of-type,
.stats dt:first-of-type + dd {
  border-left: 0;
  padding-left: 0;
}

.stats dt,
.app-details dt {
  color: var(--muted);
  font-size: 0.875rem;
}

.section {
  min-width: 0;
  padding: 92px 0 0;
}

.section-heading {
  display: grid;
  gap: 12px;
  margin-bottom: 30px;
}

.section-heading.compact h2 {
  font-size: clamp(2.25rem, 4vw, 3.35rem);
}

.section-heading.compact p:last-child {
  max-width: 55ch;
  font-size: 1.0625rem;
}

.history-suite {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(360px, 1.22fr);
  gap: 26px;
  align-items: stretch;
}

.suite-copy,
.suite-showcase,
.privacy-panel {
  border-radius: 8px;
  background: var(--surface-raised);
  box-shadow: var(--shadow-border);
}

.suite-copy {
  display: grid;
  align-content: start;
  gap: 18px;
  padding: 34px;
}

.suite-copy .eyebrow {
  color: var(--history);
}

.suite-copy p {
  max-width: 38ch;
  font-size: 1.1rem;
}

.suite-copy .button-primary {
  background: var(--history);
}

.suite-showcase {
  min-width: 0;
  min-height: 520px;
  display: grid;
  align-content: stretch;
  gap: 14px;
  padding: 18px;
  background: var(--surface-muted);
  box-shadow:
    inset 0 0 0 1px var(--history-soft),
    var(--shadow-border);
}

.suite-lead {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  align-items: center;
  gap: 16px;
  padding: 20px;
}

.suite-lead img {
  width: 96px;
}

.suite-lead small {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.4;
}

.suite-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.suite-feature-grid div {
  min-height: 116px;
  display: grid;
  align-content: end;
  gap: 4px;
  padding: 16px;
}

.suite-icon-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: auto;
  padding: 14px;
}

.suite-icon-row img {
  width: 52px;
}

.suite-icon-row span {
  margin-left: auto;
  color: var(--history);
  font-weight: 650;
}

.history-editions {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.history-editions a {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 70px;
  padding: 10px;
  border-radius: 8px;
  background: var(--surface-raised);
  box-shadow: var(--shadow-border);
  transition-property: transform, box-shadow, background;
  transition-duration: 170ms;
  transition-timing-function: ease;
}

.history-editions a:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-border-hover);
}

.history-editions img {
  width: 44px;
  flex: 0 0 auto;
}

.history-editions span {
  overflow: hidden;
  color: var(--text);
  font-weight: 650;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.app-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.app-card {
  min-width: 0;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 16px;
  padding: 18px;
  border-radius: 8px;
  background: var(--surface-raised);
  box-shadow: var(--shadow-border);
  transition-property: transform, box-shadow, background;
  transition-duration: 170ms;
  transition-timing-function: ease;
}

.app-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-border-hover);
}

.feature-app {
  grid-template-columns: 88px minmax(0, 1fr);
  padding: 22px;
}

.app-icon {
  width: 64px;
  height: 64px;
  flex: 0 0 auto;
}

.feature-app .app-icon {
  width: 88px;
  height: 88px;
}

.app-body {
  min-width: 0;
  display: grid;
  gap: 10px;
}

.app-body h3 {
  overflow-wrap: anywhere;
}

.app-body p {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  font-size: 1rem;
}

.meta {
  color: var(--muted);
  font-size: 0.875rem;
  line-height: 1.35;
}

.app-details {
  display: grid;
  grid-template-columns: max-content max-content max-content max-content;
  align-items: baseline;
  gap: 2px 8px;
}

.app-details dd {
  margin: 0 6px 0 0;
  font-weight: 650;
  font-variant-numeric: tabular-nums;
}

.store-link {
  width: fit-content;
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 13px;
  background: var(--surface-muted);
  box-shadow: var(--shadow-border);
  color: var(--accent);
  font-weight: 650;
  transition-property: transform, box-shadow, background;
}

.store-link:hover {
  background: var(--accent-soft);
  box-shadow: var(--shadow-border-hover);
  transform: translateY(-1px);
}

.privacy-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(360px, 1.3fr);
  gap: 26px;
  align-items: center;
  padding: 30px;
}

.privacy-panel h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.privacy-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.privacy-links a {
  min-height: 98px;
  display: grid;
  align-content: center;
  gap: 4px;
  padding: 18px;
  border-radius: 8px;
  background: var(--surface-muted);
  box-shadow: var(--shadow-border);
  transition-property: transform, box-shadow, background;
  transition-duration: 170ms;
  transition-timing-function: ease;
}

.privacy-links a:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-border-hover);
}

.privacy-links span {
  font-weight: 650;
}

.privacy-links small {
  font-size: 0.9375rem;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 56px 0 40px;
  color: var(--muted);
}

.site-footer nav {
  align-items: flex-start;
  gap: 18px;
  flex-wrap: wrap;
}

.site-footer p:first-child {
  color: var(--text);
  font-weight: 650;
}

.footer-note {
  margin-top: 6px;
  max-width: 52ch;
  font-size: 0.9375rem;
}

@media (max-width: 980px) {
  .hero,
  .coming-soon,
  .history-suite,
  .privacy-panel {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    gap: 34px;
    padding-top: 54px;
  }

  .coming-soon {
    padding-bottom: 42px;
  }

  .hero-stage {
    min-height: 560px;
  }

  .stats,
  .app-grid {
    grid-template-columns: 1fr;
  }

  .stats {
    display: block;
  }

  .stats dt {
    padding: 18px 0 0;
    border-left: 0;
    border-top: 1px solid var(--subtle);
  }

  .stats dt:first-of-type {
    border-top: 0;
  }

  .stats dd,
  .stats dt:first-of-type + dd {
    padding: 5px 0 18px;
    border-left: 0;
  }

  .history-editions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 640px) {
  .nav,
  .page-shell,
  .site-footer {
    width: calc(100% - 28px);
  }

  .nav {
    min-height: 62px;
  }

  .nav-links {
    display: none;
  }

  .hero {
    padding: 42px 0 34px;
  }

  h1 {
    font-size: clamp(3.1rem, 16vw, 4.1rem);
  }

  .hero-text {
    font-size: 1.125rem;
  }

  .button {
    width: 100%;
    max-width: 100%;
  }

  .hero-stage {
    min-height: 520px;
    overflow: visible;
  }

  .hero-stage::before {
    inset: 16px 0 52px;
  }

  .hero-device {
    width: min(82vw, 320px);
    min-height: 455px;
    padding: 54px 14px 14px;
    border-radius: 38px;
  }

  .hero-device::before {
    border-radius: 30px;
  }

  .hero-device::after {
    width: 82px;
    height: 24px;
    top: 18px;
  }

  .device-card {
    grid-template-columns: 58px minmax(0, 1fr);
  }

  .device-card img {
    width: 58px;
  }

  .device-grid img {
    width: 60px;
  }

  .icon-dock {
    right: 10px;
    bottom: 14px;
    grid-template-columns: repeat(4, 48px);
    gap: 8px;
    padding: 8px;
    border-radius: 20px;
  }

  .icon-dock img {
    width: 48px;
  }

  .section {
    padding-top: 62px;
  }

  .deskimia-copy {
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 14px;
    padding: 20px;
  }

  .deskimia-icon {
    width: 72px;
  }

  .deskimia-preview {
    min-height: 230px;
    padding: 14px;
  }

  .mac-display {
    min-height: 210px;
  }

  .suite-copy,
  .privacy-panel {
    padding: 20px;
  }

  .suite-showcase {
    min-height: 0;
    gap: 10px;
    padding: 10px;
  }

  .suite-lead {
    grid-template-columns: 72px minmax(0, 1fr);
    padding: 14px;
  }

  .suite-lead img {
    width: 72px;
  }

  .suite-feature-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .suite-feature-grid div {
    min-height: 86px;
  }

  .suite-icon-row {
    flex-wrap: wrap;
  }

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

  .app-card,
  .feature-app {
    grid-template-columns: 56px minmax(0, 1fr);
    gap: 14px;
    padding: 16px;
  }

  .app-icon,
  .feature-app .app-icon {
    width: 56px;
    height: 56px;
  }

  .app-details {
    grid-template-columns: max-content minmax(0, 1fr);
  }

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

  .site-footer {
    display: grid;
  }
}

/* Final studio skin, intentionally last so earlier iOS card styling cannot win. */
:root {
  color-scheme: light;
  --bg: #fffdfc;
  --header-bg: transparent;
  --surface: #fffdfc;
  --surface-muted: #f2f0ec;
  --surface-raised: #fffdfc;
  --surface-translucent: rgba(255, 253, 252, 0.9);
  --text: #0a0a0a;
  --muted: #68635f;
  --subtle: rgba(10, 10, 10, 0.18);
  --faint: rgba(10, 10, 10, 0.06);
  --image-outline: rgba(10, 10, 10, 0.18);
  --accent: #0a0a0a;
  --accent-strong: #000000;
  --accent-soft: rgba(10, 10, 10, 0.06);
  --accent-border: rgba(10, 10, 10, 0.82);
  --history: #0a0a0a;
  --history-soft: rgba(10, 10, 10, 0.08);
  --study: #0a0a0a;
  --shadow-border: inset 0 0 0 1px rgba(10, 10, 10, 0.16);
  --shadow-border-hover: inset 0 0 0 1px rgba(10, 10, 10, 0.82);
  --stage-shadow: none;
  --grid-gap: 10px;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: "Helvetica Neue", Arial, -apple-system, BlinkMacSystemFont, "SF Pro Text", sans-serif;
  font-size: clamp(14px, 1.111vw, 18px);
  line-height: 1.25;
  letter-spacing: 0;
}

.site-header {
  position: fixed;
  border-bottom: 0;
  background: transparent;
  color: #ffffff;
  mix-blend-mode: difference;
  backdrop-filter: none;
}

.nav,
.page-shell,
.site-footer {
  width: calc(100% - 32px);
  max-width: none;
}

.nav {
  min-height: 48px;
  align-items: flex-start;
  padding-top: 14px;
}

.brand,
.nav-links,
.site-footer,
.meta,
.stats dt,
.app-details dt,
.app-details dd,
.store-link,
.button,
.eyebrow,
.deskimia-tags span,
.menu-pill {
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1;
}

.brand {
  align-items: center;
  gap: 8px;
}

.brand-mark {
  width: 1.45em;
  height: 1.45em;
  border: 1px solid currentColor;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: currentColor;
  font-size: 0.75rem;
}

.nav-links {
  align-items: flex-start;
  gap: 0;
}

.nav-links a,
.site-footer a,
.store-link {
  position: relative;
  padding: 0 8px 8px;
  color: inherit;
}

.nav-links a::after,
.site-footer a::after,
.store-link::after {
  content: "";
  position: absolute;
  right: 8px;
  bottom: 3px;
  left: 8px;
  border-bottom: 1px solid currentColor;
  transform: scaleX(0);
  transform-origin: 100% 50%;
  transition: transform 260ms cubic-bezier(0.23, 1, 0.32, 1);
}

.nav-links a:hover,
.site-footer a:hover {
  color: inherit;
}

.nav-links a:hover::after,
.site-footer a:hover::after,
.store-link:hover::after {
  transform: scaleX(1);
  transform-origin: 0 50%;
}

.hero,
.coming-soon,
.history-suite,
.privacy-panel {
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: var(--grid-gap);
}

.hero {
  min-height: 100svh;
  align-items: center;
  padding: 76px 0 58px;
  border-bottom: 1px solid var(--subtle);
}

.hero-copy {
  grid-column: 1 / 6;
  gap: 16px;
}

.hero-stage {
  grid-column: 7 / -1;
  min-height: min(66vw, 620px);
}

.eyebrow {
  color: var(--text);
}

h1,
h2,
h3 {
  font-weight: 500;
  letter-spacing: 0;
}

h1 {
  max-width: 8.6ch;
  font-size: clamp(5rem, 10.8vw, 12.2rem);
  line-height: 0.9;
}

h2 {
  max-width: 10ch;
  font-size: clamp(3.4rem, 7vw, 8.2rem);
  line-height: 0.92;
}

h3 {
  font-size: 1rem;
  line-height: 1.08;
}

.hero-text,
.section-heading p,
.suite-copy p,
.deskimia-copy p:not(.eyebrow),
.app-body p,
.footer-note,
.privacy-links small {
  color: var(--muted);
}

.hero-text {
  max-width: 31ch;
  font-size: 1.12rem;
  line-height: 1.2;
}

.hero-actions,
.suite-actions {
  gap: 8px;
}

.button {
  width: auto;
  min-height: 36px;
  border: 1px solid currentColor;
  border-radius: 0;
  padding: 0 12px;
  box-shadow: none;
  transition-property: color, background, transform;
  transition-duration: 180ms;
  transition-timing-function: ease;
}

.button:hover {
  transform: none;
}

.button-primary {
  color: var(--bg);
  background: var(--text);
}

.button-primary:hover {
  color: var(--text);
  background: var(--bg);
}

.button-secondary {
  color: var(--text);
  background: transparent;
}

.button-secondary:hover {
  color: var(--bg);
  background: var(--text);
}

.hero-stage::before {
  inset: 7% 0;
  border: 1px solid var(--subtle);
  border-radius: 0;
  background: var(--surface);
  box-shadow: none;
}

.hero-device {
  width: min(62vw, 520px);
  min-height: 430px;
  gap: var(--grid-gap);
  padding: 16px;
  border: 1px solid var(--subtle);
  border-radius: 0;
  background: var(--surface);
  box-shadow: none;
  backdrop-filter: none;
}

.hero-device::before,
.hero-device::after {
  display: none;
}

.device-card,
.device-list,
.device-grid div,
.suite-lead,
.suite-feature-grid div,
.suite-icon-row,
.deskimia-tags span,
.privacy-links a {
  border: 1px solid var(--subtle);
  border-radius: 0;
  background: var(--surface);
  box-shadow: none;
}

.device-card {
  grid-template-columns: 72px minmax(0, 1fr);
  padding: 16px;
}

.device-card img,
.device-grid img,
.suite-lead img,
.suite-icon-row img,
.icon-dock img,
.app-icon,
.history-editions img,
.deskimia-icon {
  border-radius: 0;
  box-shadow: none;
}

.device-card img {
  width: 72px;
}

.device-card span,
.device-grid span,
.suite-lead span,
.suite-feature-grid span {
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1;
}

.device-card strong,
.suite-lead strong,
.suite-feature-grid strong {
  font-weight: 500;
}

.device-list {
  gap: var(--grid-gap);
  padding: var(--grid-gap);
}

.device-list span {
  min-height: 54px;
  border: 1px solid var(--subtle);
  border-radius: 0;
  background: var(--surface-muted);
  font-weight: 500;
}

.device-grid {
  gap: var(--grid-gap);
}

.device-grid div {
  min-height: 150px;
  align-content: center;
}

.device-grid img {
  width: 86px;
}

.icon-dock {
  right: -1px;
  bottom: 7%;
  grid-template-columns: repeat(4, 58px);
  border: 1px solid var(--subtle);
  border-radius: 0;
  background: var(--surface);
  box-shadow: none;
  backdrop-filter: none;
}

.coming-soon {
  padding: var(--grid-gap) 0;
  border-bottom: 1px solid var(--subtle);
}

.deskimia-copy,
.deskimia-preview,
.suite-copy,
.suite-showcase,
.privacy-panel,
.history-editions a,
.app-card {
  border: 1px solid var(--subtle);
  border-radius: 0;
  background: var(--surface);
  box-shadow: none;
}

.deskimia-copy {
  grid-column: 1 / 6;
  grid-template-columns: 88px minmax(0, 1fr);
  padding: 18px;
}

.deskimia-preview {
  grid-column: 6 / -1;
  min-height: 310px;
  padding: 18px;
  background: var(--text);
}

.deskimia-copy h2 {
  margin: 6px 0 10px;
  font-size: clamp(3.2rem, 6vw, 6.8rem);
}

.deskimia-copy p:not(.eyebrow) {
  font-size: 1rem;
  line-height: 1.22;
}

.deskimia-icon {
  width: 88px;
}

.deskimia-tags {
  gap: 6px;
}

.deskimia-tags span {
  min-height: 30px;
  padding: 0 10px;
}

.mac-display {
  width: 100%;
  min-height: 260px;
  border: 1px solid rgba(255, 253, 252, 0.3);
  border-radius: 0;
  box-shadow: none;
}

.mac-window-bar {
  background: rgba(255, 253, 252, 0.12);
}

.menu-pill {
  border: 1px solid var(--subtle);
  border-radius: 0;
  background: var(--surface);
  box-shadow: none;
  backdrop-filter: none;
}

.stats {
  border-top: 0;
  border-bottom: 1px solid var(--subtle);
}

.stats dt,
.stats dd {
  border-left: 1px solid var(--subtle);
}

.stats dt {
  padding-top: 18px;
}

.stats dd {
  padding-bottom: 18px;
  font-size: 1.12rem;
  font-weight: 500;
}

.section {
  padding: 92px 0 0;
}

.section-heading {
  gap: 10px;
  margin-bottom: 18px;
}

.section-heading.compact h2 {
  max-width: 14ch;
  font-size: clamp(3rem, 6vw, 6.8rem);
}

.suite-copy {
  grid-column: 1 / 6;
  gap: 18px;
  padding: 26px;
}

.suite-showcase {
  grid-column: 6 / -1;
  min-height: 0;
  gap: var(--grid-gap);
  padding: var(--grid-gap);
  background: var(--surface-muted);
}

.suite-copy .eyebrow,
.suite-copy .button-primary,
.suite-icon-row span {
  color: var(--text);
}

.suite-copy .button-primary {
  color: var(--bg);
  background: var(--text);
}

.suite-copy .button-primary:hover {
  color: var(--text);
  background: transparent;
}

.suite-copy p {
  max-width: 35ch;
  font-size: 1rem;
  line-height: 1.22;
}

.suite-feature-grid {
  gap: var(--grid-gap);
}

.suite-feature-grid div {
  min-height: 128px;
}

.history-editions {
  gap: var(--grid-gap);
}

.history-editions a {
  min-height: 64px;
  padding: 10px;
}

.history-editions a:hover,
.app-card:hover,
.privacy-links a:hover {
  transform: none;
  box-shadow: var(--shadow-border-hover);
}

.history-editions img {
  width: 40px;
}

.history-editions span {
  font-weight: 500;
}

.app-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--grid-gap);
}

.app-card,
.feature-app {
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 12px;
  padding: 14px;
}

.feature-app .app-icon,
.app-icon {
  width: 56px;
  height: 56px;
}

.app-body {
  gap: 8px;
}

.app-body p {
  font-size: 0.86rem;
  line-height: 1.25;
}

.app-details {
  grid-template-columns: max-content max-content;
}

.store-link {
  width: fit-content;
  min-height: 24px;
  border-radius: 0;
  padding: 0 0 5px;
  background: transparent;
  box-shadow: none;
  color: var(--text);
}

.store-link:hover {
  background: transparent;
  box-shadow: none;
  transform: none;
}

.store-link::after {
  right: 0;
  bottom: 0;
  left: 0;
}

.privacy-panel {
  align-items: stretch;
  padding: var(--grid-gap);
}

.privacy-panel > div:first-child {
  grid-column: 1 / 6;
  padding: 16px;
}

.privacy-panel h2 {
  max-width: 9ch;
  font-size: clamp(2.8rem, 5.5vw, 5.8rem);
}

.privacy-links {
  grid-column: 6 / -1;
  gap: var(--grid-gap);
}

.privacy-links a {
  min-height: 118px;
}

.site-footer {
  min-height: 180px;
  align-items: flex-start;
  padding: 22px 0 44px;
  border-top: 1px solid var(--subtle);
}

.site-footer nav {
  gap: 0;
}

@media (max-width: 980px) {
  .hero,
  .coming-soon,
  .history-suite,
  .privacy-panel {
    grid-template-columns: 1fr;
  }

  .hero-copy,
  .hero-stage,
  .deskimia-copy,
  .deskimia-preview,
  .suite-copy,
  .suite-showcase,
  .privacy-panel > div:first-child,
  .privacy-links {
    grid-column: auto;
  }

  .app-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .nav,
  .page-shell,
  .site-footer {
    width: calc(100% - 20px);
  }

  .site-header {
    mix-blend-mode: normal;
    color: var(--text);
  }

  .nav-links {
    display: none;
  }

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

  h1 {
    font-size: clamp(4rem, 17vw, 5.9rem);
  }

  h2 {
    font-size: clamp(3.2rem, 13vw, 4.8rem);
  }

  .hero-text {
    font-size: 1rem;
  }

  .button {
    width: auto;
  }

  .hero-stage {
    min-height: 460px;
  }

  .hero-device {
    width: 100%;
    min-height: 400px;
  }

  .device-card {
    grid-template-columns: 58px minmax(0, 1fr);
  }

  .device-card img {
    width: 58px;
  }

  .device-grid div {
    min-height: 122px;
  }

  .icon-dock {
    right: 0;
    bottom: 0;
  }

  .coming-soon {
    padding-bottom: var(--grid-gap);
  }

  .deskimia-copy {
    grid-template-columns: 64px minmax(0, 1fr);
    padding: 14px;
  }

  .deskimia-copy h2 {
    font-size: clamp(2.4rem, 12vw, 4rem);
  }

  .deskimia-icon {
    width: 64px;
  }

  .deskimia-preview {
    min-height: 230px;
    padding: 10px;
  }

  .mac-display {
    min-height: 210px;
  }

  .section {
    padding-top: 72px;
  }

  .stats {
    display: block;
  }

  .suite-copy,
  .privacy-panel > div:first-child {
    padding: 18px;
  }

  .suite-feature-grid,
  .app-grid,
  .privacy-links {
    grid-template-columns: 1fr;
  }

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

  .app-card,
  .feature-app {
    grid-template-columns: 52px minmax(0, 1fr);
  }

  .app-icon,
  .feature-app .app-icon {
    width: 52px;
    height: 52px;
  }

  .site-footer {
    display: grid;
    min-height: 160px;
  }
}

/* Final Molli reference override. */
:root {
  --bg: #ffffff;
  --header-bg: #ffffff;
  --surface: #ffffff;
  --surface-muted: #f1f1f1;
  --surface-raised: #ffffff;
  --surface-translucent: #ffffff;
  --text: #161616;
  --muted: #4a4a4a;
  --subtle: rgba(22, 22, 22, 0.16);
  --faint: rgba(22, 22, 22, 0.06);
  --accent: #161616;
  --accent-strong: #000000;
  --accent-soft: rgba(22, 22, 22, 0.06);
  --accent-border: rgba(22, 22, 22, 0.8);
  --history: #161616;
  --history-soft: rgba(22, 22, 22, 0.06);
  --shadow-border: none;
  --shadow-border-hover: none;
  --stage-shadow: none;
  --grid-gap: 24px;
  --portfolio-width: 1100px;
}

body {
  overflow-x: hidden;
  background: var(--bg);
  color: var(--text);
  font-family: "Courier New", Courier, monospace;
  font-size: 15px;
  letter-spacing: 0;
  line-height: 1.42;
}

.site-header {
  position: static;
  border-bottom: 0;
  background: var(--bg);
  color: var(--text);
  mix-blend-mode: normal;
}

.nav,
.page-shell,
.site-footer {
  width: calc(100% - 112px);
  max-width: var(--portfolio-width);
  margin: 0 auto;
}

.nav {
  min-height: 96px;
  align-items: flex-start;
  padding-top: 34px;
}

.brand {
  gap: 0;
  font-family: "Arial Narrow", "HelveticaNeue-CondensedBold", "Avenir Next Condensed", Impact, sans-serif;
  font-size: 2.35rem;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.9;
}

.brand-mark {
  display: none;
}

.nav-links {
  display: flex;
  gap: 28px;
  color: var(--text);
  font-family: "Arial Narrow", "HelveticaNeue-CondensedBold", "Avenir Next Condensed", Impact, sans-serif;
  font-size: 0.92rem;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
  text-transform: uppercase;
}

.nav-links a,
.site-footer a,
.store-link {
  color: inherit;
  padding: 0 0 5px;
}

.nav-links a::after,
.site-footer a::after,
.store-link::after {
  right: 0;
  bottom: 0;
  left: 0;
  border-bottom: 2px solid currentColor;
}

.hero,
.coming-soon,
.history-suite,
.privacy-panel {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: var(--grid-gap);
}

.hero {
  min-height: 0;
  align-items: start;
  gap: 0 var(--grid-gap);
  padding: 84px 0 120px;
  border-bottom: 0;
}

.hero-copy {
  grid-column: 2 / 8;
  gap: 18px;
}

.eyebrow {
  color: var(--text);
  font-family: "Courier New", Courier, monospace;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.25;
}

h1,
h2,
h3 {
  font-family: "Arial Narrow", "HelveticaNeue-CondensedBold", "Avenir Next Condensed", Impact, sans-serif;
  font-weight: 900;
  letter-spacing: 0;
}

h1 {
  max-width: 13ch;
  font-size: clamp(3.7rem, 5.6vw, 6rem);
  line-height: 0.9;
}

h2 {
  max-width: 12ch;
  font-size: clamp(3.1rem, 5.4vw, 6.1rem);
  line-height: 0.92;
}

h3 {
  font-size: 1rem;
  line-height: 1.08;
}

.hero-text,
.deskimia-copy p:not(.eyebrow),
.suite-copy p,
.section-heading p,
.app-body p,
.privacy-links small,
.footer-note {
  color: var(--muted);
  font-family: "Courier New", Courier, monospace;
}

.hero-text {
  max-width: 48ch;
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.45;
}

.button {
  width: auto;
  min-height: 36px;
  border: 1px solid currentColor;
  border-radius: 0;
  padding: 0 12px;
  box-shadow: none;
  font-family: "Arial Narrow", "HelveticaNeue-CondensedBold", "Avenir Next Condensed", Impact, sans-serif;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
}

.button:hover {
  transform: none;
}

.button-primary,
.suite-copy .button-primary {
  color: var(--bg);
  background: var(--text);
}

.button-primary:hover,
.suite-copy .button-primary:hover {
  color: var(--text);
  background: var(--bg);
}

.button-secondary {
  color: var(--text);
  background: transparent;
}

.button-secondary:hover {
  color: var(--bg);
  background: var(--text);
}

.hero-stage {
  position: relative;
  grid-column: 2 / -1;
  grid-row: 2;
  display: grid;
  grid-template-columns: repeat(10, minmax(0, 1fr));
  gap: var(--grid-gap);
  min-height: 690px;
  margin-top: 90px;
  place-items: start stretch;
}

.hero-stage::before {
  display: none;
}

.hero-device {
  position: relative;
  grid-column: 1 / 6;
  width: 100%;
  min-height: 620px;
  align-content: end;
  gap: 18px;
  padding: 28px;
  border: 0;
  border-radius: 0;
  background: var(--surface-muted);
  box-shadow: none;
  backdrop-filter: none;
}

.hero-device::before {
  display: none;
}

.hero-device::after {
  content: "History suite\A Events, births, deaths";
  position: absolute;
  top: calc(100% + 16px);
  left: 0;
  display: block;
  white-space: pre;
  color: var(--text);
  font-family: "Courier New", Courier, monospace;
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.45;
}

.device-card,
.device-list,
.device-grid div,
.suite-lead,
.suite-feature-grid div,
.suite-icon-row,
.deskimia-tags span,
.privacy-links a {
  border: 1px solid var(--subtle);
  border-radius: 0;
  background: var(--surface);
  box-shadow: none;
}

.device-card img,
.device-grid img,
.suite-lead img,
.suite-icon-row img,
.icon-dock img,
.app-icon,
.history-editions img,
.deskimia-icon {
  border-radius: 0;
  box-shadow: none;
}

.device-card {
  grid-template-columns: 72px minmax(0, 1fr);
  padding: 16px;
}

.device-card img {
  width: 72px;
}

.device-list {
  gap: 14px;
  padding: 14px;
}

.device-list span {
  min-height: 58px;
  border: 1px solid var(--subtle);
  border-radius: 0;
  background: var(--surface);
}

.device-grid {
  gap: 14px;
}

.device-grid div {
  min-height: 154px;
}

.device-grid img {
  width: 86px;
}

.icon-dock {
  position: relative;
  right: auto;
  bottom: auto;
  grid-column: 7 / 10;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  width: 100%;
  min-height: 410px;
  margin-top: 92px;
  padding: 36px;
  border: 0;
  border-radius: 0;
  background: #050505;
  box-shadow: none;
  backdrop-filter: none;
}

.icon-dock::after {
  content: "Selected apps\A Maps, HSK, live wallpaper";
  position: absolute;
  top: calc(100% + 16px);
  left: 0;
  display: block;
  white-space: pre;
  color: var(--text);
  font-family: "Courier New", Courier, monospace;
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.45;
}

.icon-dock img {
  width: 82px;
  height: 82px;
  margin: auto;
}

.coming-soon {
  padding: 64px 0 110px;
  border-bottom: 0;
}

.deskimia-copy,
.deskimia-preview,
.suite-copy,
.suite-showcase,
.privacy-panel,
.history-editions a,
.app-card {
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.deskimia-copy {
  grid-column: 2 / 6;
  grid-template-columns: 88px minmax(0, 1fr);
  align-self: start;
  padding: 0;
}

.deskimia-preview {
  grid-column: 6 / -1;
  min-height: 410px;
  padding: 0;
  background: var(--text);
}

.deskimia-copy h2 {
  margin: 6px 0 10px;
  font-size: clamp(3rem, 5.2vw, 5.9rem);
}

.deskimia-copy p:not(.eyebrow),
.suite-copy p {
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.45;
}

.deskimia-icon {
  width: 88px;
}

.deskimia-tags {
  gap: 6px;
}

.deskimia-tags span {
  min-height: 30px;
  padding: 0 10px;
}

.mac-display {
  min-height: 410px;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.menu-pill {
  border: 1px solid var(--subtle);
  border-radius: 0;
  background: var(--surface);
  box-shadow: none;
  backdrop-filter: none;
}

.stats {
  border-top: 1px solid var(--subtle);
  border-bottom: 1px solid var(--subtle);
}

.section {
  padding: 100px 0 0;
}

.section-heading {
  gap: 10px;
  margin-bottom: 24px;
}

.section-heading.compact h2 {
  max-width: 14ch;
  font-size: clamp(3rem, 5.4vw, 6.1rem);
}

.suite-copy {
  grid-column: 1 / 6;
  gap: 18px;
  padding: 0;
}

.suite-showcase {
  grid-column: 6 / -1;
  gap: var(--grid-gap);
  padding: 0;
  background: transparent;
}

.suite-feature-grid,
.history-editions,
.app-grid,
.privacy-links {
  gap: var(--grid-gap);
}

.history-editions a {
  min-height: 64px;
  padding: 10px;
}

.history-editions a:hover,
.app-card:hover,
.privacy-links a:hover {
  transform: none;
  box-shadow: none;
}

.app-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.app-card,
.feature-app {
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 12px;
  padding: 0;
}

.feature-app .app-icon,
.app-icon {
  width: 56px;
  height: 56px;
}

.store-link {
  width: fit-content;
  min-height: 24px;
  border-radius: 0;
  padding: 0 0 5px;
  background: transparent;
  box-shadow: none;
  color: var(--text);
}

.store-link:hover {
  background: transparent;
  box-shadow: none;
  transform: none;
}

.privacy-panel {
  align-items: start;
  padding: 0;
}

.privacy-panel > div:first-child {
  grid-column: 1 / 5;
  padding: 0;
}

.privacy-links {
  grid-column: 5 / -1;
}

.site-footer {
  min-height: 170px;
  align-items: flex-start;
  padding: 28px 0 44px;
  border-top: 1px solid var(--subtle);
}

@media (max-width: 980px) {
  .hero,
  .coming-soon,
  .history-suite,
  .privacy-panel {
    grid-template-columns: 1fr;
  }

  .hero-copy,
  .hero-stage,
  .deskimia-copy,
  .deskimia-preview,
  .suite-copy,
  .suite-showcase,
  .privacy-panel > div:first-child,
  .privacy-links {
    grid-column: auto;
  }

  .hero-stage {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-device {
    grid-column: 1;
  }

  .icon-dock {
    grid-column: 2;
  }

  .app-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .nav,
  .page-shell,
  .site-footer {
    width: calc(100% - 24px);
  }

  .nav {
    min-height: 74px;
    padding-top: 22px;
  }

  .brand {
    font-size: 2rem;
  }

  .nav-links {
    display: none;
  }

  .hero {
    padding: 68px 0 64px;
  }

  .hero-copy {
    gap: 16px;
  }

  h1 {
    max-width: 11ch;
    font-size: clamp(3.3rem, 15vw, 5rem);
  }

  h2,
  .section-heading.compact h2,
  .privacy-panel h2 {
    max-width: 100%;
    font-size: clamp(3rem, 13vw, 4.6rem);
    overflow-wrap: anywhere;
  }

  .hero-text {
    font-size: 0.9rem;
  }

  .hero-stage {
    display: block;
    min-height: 0;
    margin-top: 54px;
  }

  .hero-device {
    width: 100%;
    min-height: 430px;
    padding: 18px;
  }

  .icon-dock {
    width: 74%;
    min-height: 300px;
    margin: 104px 0 0 auto;
    padding: 24px;
  }

  .icon-dock::after {
    right: 0;
    left: auto;
    max-width: 100%;
    text-align: right;
  }

  .icon-dock img {
    width: 66px;
    height: 66px;
  }

  .coming-soon {
    padding: 24px 0 74px;
  }

  .deskimia-copy {
    grid-template-columns: 64px minmax(0, 1fr);
  }

  .deskimia-icon {
    width: 64px;
  }

  .deskimia-preview {
    min-height: 260px;
  }

  .mac-display {
    min-height: 260px;
  }

  .section {
    padding-top: 74px;
  }

  .stats {
    display: block;
  }

  .suite-feature-grid,
  .app-grid,
  .privacy-links,
  .history-editions {
    grid-template-columns: 1fr;
  }

  .app-card,
  .feature-app {
    grid-template-columns: 52px minmax(0, 1fr);
  }

  .app-icon,
  .feature-app .app-icon {
    width: 52px;
    height: 52px;
  }
}

/* Final optical tuning for the Molli reference. */
.brand,
.nav-links,
h1,
h2,
h3,
.button {
  font-family: "Avenir Next Condensed", "HelveticaNeue-CondensedBold", "Arial Narrow", Impact, sans-serif;
}

.hero {
  padding: 70px 0 108px;
}

h1 {
  max-width: 16ch;
  font-size: clamp(3.55rem, 4.85vw, 5.35rem);
  line-height: 0.92;
}

.hero-stage {
  min-height: 650px;
  margin-top: 58px;
}

.hero-device::after,
.icon-dock::after {
  right: auto;
  bottom: auto;
  width: auto;
  height: auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  transform: none;
}

@media (max-width: 640px) {
  .hero {
    padding: 64px 0 58px;
  }

  h1 {
    max-width: 12ch;
    font-size: clamp(3.25rem, 14.5vw, 4.85rem);
  }

  .hero-stage {
    margin-top: 46px;
  }
}

/* Final Torio-style layout requested by reference image. */
:root {
  --bg: #d8d8d8;
  --canvas: #f7f7f4;
  --surface: #ffffff;
  --surface-muted: #f4f5f2;
  --text: #070707;
  --muted: #555a5f;
  --subtle: rgba(18, 18, 18, 0.1);
  --accent: #ff3d0b;
  --accent-strong: #e93408;
  --pink: #f52aa1;
  --yellow: #f8b900;
  --blue: #208cff;
  --teal: #1bc2ad;
  --shadow-border: 0 22px 70px rgba(22, 22, 22, 0.06);
  --shadow-border-hover: 0 30px 80px rgba(22, 22, 22, 0.1);
  --portfolio-width: 1640px;
  --content-width: 1360px;
  --grid-gap: 32px;
}

html {
  background: var(--bg);
}

body {
  min-height: 100svh;
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  letter-spacing: 0;
  line-height: 1.5;
}

.site-canvas {
  width: min(calc(100% - 96px), var(--portfolio-width));
  margin: 88px auto;
  overflow: hidden;
  background: var(--canvas);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.85) inset;
}

.site-header {
  position: static;
  border: 0;
  background: transparent;
  color: var(--text);
  mix-blend-mode: normal;
}

.nav,
.page-shell,
.site-footer {
  width: min(calc(100% - 240px), var(--content-width));
  max-width: var(--content-width);
  margin: 0 auto;
}

.nav {
  min-height: 112px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 32px 0 12px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  color: var(--text);
  font-family: inherit;
  font-size: 1.85rem;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1;
  text-decoration: none;
}

.brand-mark {
  position: relative;
  display: inline-grid;
  width: 36px;
  height: 36px;
  flex: 0 0 auto;
  place-items: center;
  overflow: hidden;
  border: 0;
  border-radius: 999px;
  background:
    radial-gradient(circle at 50% 12%, var(--accent) 0 4px, transparent 5px),
    radial-gradient(circle at 84% 38%, var(--accent) 0 4px, transparent 5px),
    radial-gradient(circle at 70% 80%, var(--accent) 0 4px, transparent 5px),
    radial-gradient(circle at 30% 80%, var(--accent) 0 4px, transparent 5px),
    radial-gradient(circle at 16% 38%, var(--accent) 0 4px, transparent 5px);
  color: transparent;
  box-shadow: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 42px;
  color: var(--text);
  font-family: inherit;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1;
  text-transform: none;
}

.nav-links a {
  color: inherit;
  text-decoration: none;
}

.nav-links a::after,
.site-footer a::after,
.store-link::after {
  display: none;
}

.nav-links a:last-child {
  min-width: 128px;
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  background: var(--accent);
  color: #ffffff;
  font-weight: 700;
  box-shadow: 0 12px 24px rgba(255, 61, 11, 0.18);
}

.page-shell {
  padding: 0 0 80px;
}

.hero {
  position: relative;
  min-height: 760px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(460px, 0.94fr);
  align-items: center;
  gap: 72px;
  padding: 70px 0 118px;
  border: 0;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  z-index: 0;
  display: block;
  pointer-events: none;
}

.hero::before {
  top: 92px;
  left: 580px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--pink);
  box-shadow:
    -310px -72px 0 -1px var(--blue),
    410px 84px 0 -2px var(--teal),
    760px 148px 0 -1px transparent;
}

.hero::after {
  right: 126px;
  top: 254px;
  width: 19px;
  height: 19px;
  border: 2px solid #eb6800;
  border-radius: 50%;
}

.hero-stage {
  position: relative;
  z-index: 1;
  grid-column: 1;
  grid-row: 1;
  min-height: 620px;
  display: block;
  margin: 0;
}

.hero-stage::before,
.hero-stage::after {
  content: "";
  position: absolute;
  z-index: 0;
  display: block;
  border-radius: 50%;
  pointer-events: none;
}

.hero-stage::before {
  top: 40px;
  left: 148px;
  width: 370px;
  height: 370px;
  background: var(--yellow);
}

.hero-stage::after {
  right: 44px;
  top: 218px;
  width: 300px;
  height: 300px;
  background: var(--pink);
}

.hero-copy {
  position: relative;
  z-index: 1;
  grid-column: 2;
  grid-row: 1;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.hero-copy::before {
  content: "+";
  position: absolute;
  right: 94px;
  bottom: 118px;
  color: #073b79;
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 1;
  transform: rotate(-14deg);
}

.hero-copy::after {
  content: "";
  position: absolute;
  top: -42px;
  right: 206px;
  width: 30px;
  height: 30px;
  border: 2px solid #18a6bd;
  border-radius: 7px;
  transform: rotate(47deg);
}

.eyebrow {
  color: var(--muted);
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.35;
}

h1,
h2,
h3 {
  color: var(--text);
  font-family: inherit;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: none;
}

h1 {
  max-width: 10.5ch;
  font-size: clamp(4.25rem, 5.35vw, 6.3rem);
  line-height: 1.06;
  text-wrap: balance;
}

h2 {
  max-width: 12ch;
  font-size: clamp(2.9rem, 4.3vw, 5.5rem);
  line-height: 1.06;
  text-wrap: balance;
}

h3 {
  font-size: 1.15rem;
  line-height: 1.2;
}

.hero-text {
  max-width: 46ch;
  color: var(--muted);
  font-family: inherit;
  font-size: 1.12rem;
  font-weight: 400;
  line-height: 1.48;
  text-wrap: pretty;
}

.hero-actions {
  width: min(100%, 560px);
  min-height: 78px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 0;
  margin-top: 24px;
  padding: 8px;
  border-radius: 7px;
  background: #ffffff;
  box-shadow: 0 22px 58px rgba(28, 33, 43, 0.08);
}

.button {
  min-height: 56px;
  border: 0;
  border-radius: 6px;
  padding: 0 28px;
  box-shadow: none;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  color: #ffffff;
  background: var(--accent);
  box-shadow: 0 14px 26px rgba(255, 61, 11, 0.2);
}

.button-primary:hover {
  color: #ffffff;
  background: var(--accent-strong);
}

.button-secondary {
  justify-content: flex-start;
  color: #9b9ca0;
  background: transparent;
  font-weight: 500;
}

.button-secondary:hover {
  color: var(--text);
  background: transparent;
}

.hero-device {
  position: absolute;
  z-index: 2;
  left: 88px;
  bottom: 18px;
  width: min(560px, 82%);
  min-height: 460px;
  display: grid;
  align-content: end;
  gap: 16px;
  padding: 28px;
  border: 0;
  border-radius: 42px;
  background:
    radial-gradient(circle at 34% 12%, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.58) 46%, rgba(255, 255, 255, 0.18) 68%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.64), rgba(255, 255, 255, 0.18));
  box-shadow: 0 40px 90px rgba(26, 31, 43, 0.16);
  backdrop-filter: blur(10px);
}

.hero-device::before,
.hero-device::after {
  display: none;
}

.device-card,
.device-list,
.device-grid div,
.suite-lead,
.suite-feature-grid div,
.suite-icon-row,
.deskimia-tags span,
.privacy-links a {
  border: 1px solid rgba(16, 20, 28, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: none;
}

.device-card {
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 16px;
  padding: 16px;
}

.device-card img,
.device-grid img,
.suite-lead img,
.suite-icon-row img,
.icon-dock img,
.app-icon,
.history-editions img,
.deskimia-icon {
  border-radius: 16px;
  box-shadow: 0 10px 26px rgba(12, 16, 24, 0.08);
}

.device-card img {
  width: 72px;
}

.device-card span,
.device-grid span,
.suite-lead span,
.suite-feature-grid span,
.meta,
.app-details dt,
.app-details dd {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 500;
}

.device-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 12px;
}

.device-list span {
  min-height: 58px;
  display: flex;
  align-items: center;
  border: 0;
  border-radius: 12px;
  background: #ffffff;
  padding: 0 16px;
  font-weight: 700;
}

.device-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.device-grid div {
  min-height: 142px;
  display: grid;
  place-items: center;
  gap: 6px;
}

.device-grid img {
  width: 78px;
}

.icon-dock {
  position: absolute;
  z-index: 3;
  right: 30px;
  bottom: 64px;
  width: 178px;
  min-height: 178px;
  display: grid;
  grid-template-columns: repeat(2, 64px);
  place-content: center;
  gap: 14px;
  margin: 0;
  padding: 18px;
  border: 0;
  border-radius: 38px;
  background: #0d111a;
  box-shadow: 0 28px 70px rgba(12, 16, 24, 0.24);
}

.icon-dock::after {
  display: none;
}

.icon-dock img {
  width: 64px;
  height: 64px;
  margin: 0;
}

.coming-soon {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(340px, 0.85fr);
  gap: 48px;
  align-items: center;
  margin-top: -6px;
  padding: 66px 74px;
  border: 0;
  border-radius: 34px;
  background: #ffffff;
  box-shadow: var(--shadow-border);
}

.deskimia-copy {
  grid-column: auto;
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr);
  gap: 28px;
  padding: 0;
  border: 0;
  background: transparent;
}

.deskimia-icon {
  width: 82px;
}

.deskimia-copy h2 {
  margin: 4px 0 12px;
  max-width: none;
  font-size: clamp(3.1rem, 4vw, 5rem);
}

.deskimia-copy p:not(.eyebrow),
.suite-copy p,
.section-heading p,
.app-body p,
.privacy-links small,
.footer-note {
  color: var(--muted);
  font-family: inherit;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.55;
  text-wrap: pretty;
}

.deskimia-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.deskimia-tags span {
  min-height: 38px;
  border-radius: 999px;
  padding: 0 14px;
  background: #f7f7f4;
  font-size: 0.9rem;
  font-weight: 600;
}

.deskimia-preview {
  grid-column: auto;
  min-height: 360px;
  padding: 0;
  border: 0;
  border-radius: 22px;
  background: linear-gradient(145deg, #ef2aa7, #ff3f16 82%);
  box-shadow: 0 26px 54px rgba(239, 42, 167, 0.2);
}

.mac-display {
  min-height: 360px;
  border: 0;
  border-radius: 22px;
  overflow: hidden;
  background: transparent;
  box-shadow: none;
}

.wallpaper-canvas {
  background: transparent;
}

.wallpaper-band {
  opacity: 0.92;
}

.menu-pill {
  right: 28px;
  bottom: 28px;
  border: 0;
  border-radius: 6px;
  background: #ffffff;
  color: var(--text);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
  backdrop-filter: none;
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin: 54px 0 0;
  border: 0;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.58);
  overflow: hidden;
}

.stats dt,
.stats dd {
  border: 0;
  padding-inline: 24px;
}

.stats dt {
  padding-top: 22px;
  color: var(--muted);
  font-size: 0.86rem;
}

.stats dd {
  padding-bottom: 22px;
  font-size: 1.3rem;
  font-weight: 800;
}

.section {
  padding: 104px 0 0;
}

.section-heading {
  max-width: 760px;
  gap: 12px;
  margin-bottom: 34px;
}

.section-heading.compact h2 {
  max-width: 12ch;
  font-size: clamp(2.9rem, 4vw, 4.9rem);
}

.history-suite {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: 48px;
  align-items: start;
}

.suite-copy,
.suite-showcase,
.privacy-panel,
.history-editions a,
.app-card {
  border: 0;
  border-radius: 28px;
  background: #ffffff;
  box-shadow: var(--shadow-border);
}

.suite-copy {
  grid-column: auto;
  gap: 22px;
  padding: 42px;
}

.suite-showcase {
  grid-column: auto;
  gap: 18px;
  padding: 24px;
}

.suite-feature-grid {
  gap: 16px;
}

.suite-feature-grid div {
  min-height: 126px;
  border-radius: 20px;
  background: #f7f7f4;
}

.suite-actions .button-primary {
  background: #111111;
}

.suite-actions .button-secondary {
  border: 1px solid var(--subtle);
  background: #ffffff;
  color: var(--text);
}

.history-editions {
  gap: 16px;
  margin-top: 26px;
}

.history-editions a {
  min-height: 72px;
  border-radius: 20px;
  padding: 14px;
}

.history-editions a:hover,
.app-card:hover,
.privacy-links a:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-border-hover);
}

.app-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.app-card {
  grid-template-columns: 66px minmax(0, 1fr);
  gap: 18px;
  padding: 24px;
}

.feature-app .app-icon,
.app-icon {
  width: 66px;
  height: 66px;
}

.app-body {
  gap: 10px;
}

.app-body p {
  font-size: 0.95rem;
}

.app-details {
  grid-template-columns: max-content max-content;
  gap: 4px 10px;
}

.store-link {
  width: fit-content;
  min-height: 0;
  margin-top: 4px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--accent);
  font-weight: 800;
  box-shadow: none;
}

.privacy-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: 36px;
  align-items: start;
  padding: 44px;
}

.privacy-panel > div:first-child {
  grid-column: auto;
  padding: 0;
}

.privacy-links {
  grid-column: auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.privacy-links a {
  min-height: 148px;
  border-radius: 22px;
  background: #f7f7f4;
}

.site-footer {
  min-height: 140px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 34px 0 48px;
  border: 0;
}

.site-footer nav {
  gap: 24px;
}

.site-footer a {
  color: var(--muted);
  text-decoration: none;
}

@media (max-width: 1200px) {
  .site-canvas {
    width: min(calc(100% - 48px), var(--portfolio-width));
    margin: 48px auto;
  }

  .nav,
  .page-shell,
  .site-footer {
    width: min(calc(100% - 80px), var(--content-width));
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: 0;
    gap: 34px;
  }

  .hero-stage,
  .hero-copy {
    grid-column: 1;
    grid-row: auto;
  }

  .hero-copy {
    max-width: 740px;
  }

  .coming-soon,
  .history-suite,
  .privacy-panel {
    grid-template-columns: 1fr;
  }

  .app-grid,
  .privacy-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .site-canvas {
    width: 100%;
    margin: 0;
  }

  .nav,
  .page-shell,
  .site-footer {
    width: calc(100% - 32px);
  }

  .nav {
    min-height: 112px;
    align-items: flex-start;
    gap: 18px;
    padding-top: 22px;
    flex-direction: column;
  }

  .brand {
    font-size: 1.6rem;
  }

  .nav-links {
    width: 100%;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 8px;
    font-size: 0.94rem;
  }

  .nav-links a {
    white-space: nowrap;
  }

  .nav-links a:last-child {
    min-width: 108px;
    min-height: 44px;
  }

  .hero {
    padding: 38px 0 70px;
  }

  h1 {
    max-width: 11ch;
    font-size: clamp(3.4rem, 15vw, 5.2rem);
  }

  h2,
  .section-heading.compact h2,
  .privacy-panel h2 {
    max-width: 100%;
    font-size: clamp(2.7rem, 12vw, 4.3rem);
    overflow-wrap: anywhere;
  }

  .hero-stage {
    min-height: 470px;
  }

  .hero-stage::before {
    top: 30px;
    left: 58px;
    width: 270px;
    height: 270px;
  }

  .hero-stage::after {
    top: 174px;
    right: 8px;
    width: 210px;
    height: 210px;
  }

  .hero-device {
    left: 0;
    bottom: 10px;
    width: 88%;
    min-height: 370px;
    padding: 18px;
    border-radius: 30px;
  }

  .icon-dock {
    right: 0;
    bottom: 24px;
    width: 138px;
    min-height: 138px;
    grid-template-columns: repeat(2, 48px);
    gap: 10px;
    border-radius: 28px;
    padding: 14px;
  }

  .icon-dock img {
    width: 48px;
    height: 48px;
  }

  .hero-copy::before,
  .hero-copy::after {
    display: none;
  }

  .hero-actions {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 8px;
  }

  .button-secondary,
  .button-primary {
    justify-content: center;
  }

  .coming-soon {
    gap: 28px;
    padding: 28px;
    border-radius: 28px;
  }

  .deskimia-copy {
    grid-template-columns: 64px minmax(0, 1fr);
    gap: 18px;
  }

  .deskimia-icon {
    width: 64px;
  }

  .deskimia-preview,
  .mac-display {
    min-height: 280px;
  }

  .stats,
  .app-grid,
  .privacy-links {
    grid-template-columns: 1fr;
  }

  .section {
    padding-top: 72px;
  }

  .suite-copy,
  .suite-showcase,
  .privacy-panel {
    padding: 24px;
    border-radius: 26px;
  }

  .app-card {
    grid-template-columns: 58px minmax(0, 1fr);
    padding: 18px;
  }

  .app-icon,
  .feature-app .app-icon {
    width: 58px;
    height: 58px;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* Whole-page polish pass. */
:root {
  --canvas: #f8f7f1;
  --panel: rgba(255, 255, 255, 0.9);
  --panel-solid: #ffffff;
  --ink-soft: rgba(7, 7, 7, 0.06);
  --warm-field: rgba(255, 61, 11, 0.09);
  --pink-field: rgba(245, 42, 161, 0.08);
  --blue-field: rgba(32, 140, 255, 0.07);
  --yellow-field: rgba(248, 185, 0, 0.11);
  --card-radius: 30px;
  --large-radius: 38px;
  --soft-shadow: 0 26px 74px rgba(23, 24, 28, 0.08);
  --lift-shadow: 0 34px 88px rgba(23, 24, 28, 0.12);
}

.site-canvas {
  position: relative;
  isolation: isolate;
  background:
    linear-gradient(116deg, rgba(255, 61, 11, 0.05) 0%, transparent 34%),
    linear-gradient(237deg, rgba(32, 140, 255, 0.045) 0%, transparent 31%),
    var(--canvas);
}

.site-canvas::before,
.site-canvas::after {
  content: "";
  position: absolute;
  z-index: -1;
  pointer-events: none;
}

.site-canvas::before {
  inset: 0;
  background:
    linear-gradient(132deg, transparent 0 22%, var(--yellow-field) 22% 38%, transparent 38% 56%, var(--pink-field) 56% 72%, transparent 72%),
    linear-gradient(26deg, transparent 0 48%, var(--blue-field) 48% 66%, transparent 66%);
  clip-path: polygon(0 4%, 100% 0, 100% 100%, 0 94%);
}

.site-canvas::after {
  right: -12%;
  bottom: 12%;
  width: 58%;
  height: 42%;
  background: linear-gradient(145deg, var(--warm-field), rgba(248, 185, 0, 0.08) 54%, transparent);
  clip-path: polygon(12% 0, 100% 17%, 84% 100%, 0 78%);
}

.site-header,
.page-shell,
.site-footer {
  position: relative;
  z-index: 1;
}

.nav {
  padding-top: 36px;
}

.brand {
  font-weight: 780;
}

.nav-links a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0 4px;
  color: rgba(7, 7, 7, 0.82);
}

.nav-links a:hover {
  color: var(--text);
}

.nav-links a:last-child {
  padding: 0 26px;
}

.hero {
  min-height: 780px;
  padding-top: 62px;
}

.hero-copy {
  gap: 26px;
}

h1,
h2,
h3 {
  font-weight: 760;
}

h1 {
  max-width: 11ch;
  font-size: clamp(4.4rem, 5.05vw, 6.1rem);
}

.hero-text {
  max-width: 43ch;
}

.hero-actions {
  border: 1px solid rgba(7, 7, 7, 0.035);
}

.button {
  min-height: 56px;
  border-radius: 7px;
}

.hero-stage {
  min-height: 640px;
}

.hero-stage::before {
  opacity: 0.96;
}

.hero-stage::after {
  box-shadow: 0 24px 60px rgba(245, 42, 161, 0.16);
}

.hero-device {
  border: 1px solid rgba(7, 7, 7, 0.045);
  border-radius: 42px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.58)),
    linear-gradient(112deg, rgba(248, 185, 0, 0.08), rgba(245, 42, 161, 0.08) 58%, rgba(32, 140, 255, 0.06));
  box-shadow: 0 36px 92px rgba(26, 31, 43, 0.15);
}

.icon-dock {
  box-shadow: 0 30px 76px rgba(12, 16, 24, 0.28);
}

.coming-soon,
.stats,
.suite-copy,
.suite-showcase,
.privacy-panel,
.history-editions a,
.app-card {
  background: var(--panel);
  border: 1px solid rgba(7, 7, 7, 0.035);
  box-shadow: var(--soft-shadow);
}

.coming-soon {
  overflow: hidden;
  border-radius: var(--large-radius);
}

.coming-soon::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(119deg, rgba(32, 140, 255, 0.06), transparent 39%),
    linear-gradient(238deg, rgba(245, 42, 161, 0.07), transparent 34%);
  pointer-events: none;
}

.deskimia-copy,
.deskimia-preview {
  position: relative;
  z-index: 1;
}

.deskimia-preview {
  border-radius: 28px;
  background:
    linear-gradient(152deg, rgba(239, 42, 167, 0.96), rgba(255, 63, 22, 0.96) 82%),
    #f52aa1;
}

.stats {
  background: rgba(255, 255, 255, 0.58);
  box-shadow: 0 20px 54px rgba(23, 24, 28, 0.05);
}

.section-heading h2,
.suite-copy h2,
.privacy-panel h2 {
  max-width: 12.5ch;
}

.suite-copy,
.suite-showcase,
.privacy-panel {
  border-radius: var(--card-radius);
}

.suite-showcase {
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.7)),
    linear-gradient(32deg, rgba(248, 185, 0, 0.07), rgba(32, 140, 255, 0.06));
}

.suite-feature-grid div,
.privacy-links a {
  background: rgba(248, 247, 241, 0.82);
  border-color: rgba(7, 7, 7, 0.06);
}

.history-editions a,
.app-card {
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.history-editions a:hover,
.app-card:hover,
.privacy-links a:hover {
  border-color: rgba(255, 61, 11, 0.16);
  box-shadow: var(--lift-shadow);
}

.app-grid {
  align-items: stretch;
}

.app-card {
  border-radius: 24px;
}

.app-card:nth-child(4n + 1) {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(255, 246, 230, 0.72));
}

.app-card:nth-child(4n + 2) {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(239, 247, 255, 0.72));
}

.app-card:nth-child(4n + 3) {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(255, 238, 249, 0.7));
}

.store-link {
  color: var(--accent-strong);
}

.privacy-panel {
  position: relative;
  overflow: hidden;
}

.privacy-panel::before {
  content: "";
  position: absolute;
  inset: auto -8% -20% 38%;
  height: 68%;
  background: linear-gradient(145deg, rgba(32, 140, 255, 0.08), rgba(255, 61, 11, 0.07));
  clip-path: polygon(6% 0, 100% 16%, 78% 100%, 0 84%);
  pointer-events: none;
}

.privacy-panel > div,
.privacy-links {
  position: relative;
  z-index: 1;
}

.site-footer {
  color: rgba(7, 7, 7, 0.68);
}

@media (max-width: 1200px) {
  .hero {
    min-height: 0;
  }

  .hero-copy {
    order: -1;
  }
}

@media (max-width: 760px) {
  .site-canvas {
    background:
      linear-gradient(128deg, rgba(255, 61, 11, 0.055), transparent 36%),
      linear-gradient(242deg, rgba(32, 140, 255, 0.05), transparent 42%),
      var(--canvas);
  }

  .site-canvas::before {
    background:
      linear-gradient(142deg, transparent 0 15%, rgba(248, 185, 0, 0.12) 15% 29%, transparent 29% 58%, rgba(245, 42, 161, 0.08) 58% 74%, transparent 74%);
  }

  .site-canvas::after {
    display: none;
  }

  .hero {
    padding-top: 34px;
  }

  .hero::after {
    display: none;
  }

  h1 {
    max-width: 11ch;
    font-size: clamp(3.25rem, 13.8vw, 4.75rem);
  }

  .hero-actions {
    margin-top: 8px;
  }

  .hero-stage {
    min-height: 482px;
  }

  .coming-soon,
  .suite-copy,
  .suite-showcase,
  .privacy-panel {
    border-radius: 28px;
  }

  .stats {
    border-radius: 24px;
  }

  .app-card {
    border-radius: 24px;
  }
}

/* Full-bleed background pass: no paper canvas. */
:root {
  --bg: #f7f5ee;
  --canvas: transparent;
  --panel: rgba(255, 255, 255, 0.72);
  --panel-solid: rgba(255, 255, 255, 0.9);
  --soft-shadow: 0 24px 64px rgba(31, 28, 22, 0.075);
  --lift-shadow: 0 32px 84px rgba(31, 28, 22, 0.11);
}

html {
  background: #f7f5ee;
}

body {
  min-height: 100svh;
  background:
    linear-gradient(128deg, rgba(255, 61, 11, 0.07), transparent 28%),
    linear-gradient(235deg, rgba(32, 140, 255, 0.055), transparent 35%),
    #f7f5ee;
}

.site-canvas {
  width: 100%;
  max-width: none;
  min-height: 100svh;
  margin: 0;
  overflow: hidden;
  background: transparent;
  box-shadow: none;
}

.site-canvas::before {
  inset: 0;
  background:
    linear-gradient(128deg, transparent 0 9%, rgba(255, 61, 11, 0.055) 9% 23%, transparent 23% 48%, rgba(248, 185, 0, 0.13) 48% 65%, transparent 65%),
    linear-gradient(34deg, transparent 0 34%, rgba(32, 140, 255, 0.075) 34% 47%, transparent 47% 73%, rgba(245, 42, 161, 0.07) 73% 84%, transparent 84%),
    linear-gradient(101deg, transparent 0 64%, rgba(255, 255, 255, 0.45) 64% 78%, transparent 78%);
  clip-path: none;
}

.site-canvas::after {
  top: 0;
  right: 0;
  bottom: auto;
  width: 54%;
  height: 100%;
  background:
    linear-gradient(146deg, transparent 0 18%, rgba(255, 255, 255, 0.48) 18% 34%, transparent 34% 62%, rgba(248, 185, 0, 0.08) 62% 82%, transparent 82%);
  clip-path: none;
}

.nav,
.page-shell,
.site-footer {
  width: min(calc(100% - 120px), var(--content-width));
}

.page-shell {
  padding-bottom: 96px;
}

.hero {
  min-height: 790px;
  padding-top: 72px;
  padding-bottom: 126px;
}

.hero-stage::before {
  box-shadow: 0 34px 84px rgba(248, 185, 0, 0.13);
}

.coming-soon,
.stats,
.suite-copy,
.suite-showcase,
.privacy-panel,
.history-editions a,
.app-card {
  background: var(--panel);
  border-color: rgba(7, 7, 7, 0.045);
  backdrop-filter: blur(18px);
}

.coming-soon {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.5)),
    linear-gradient(35deg, rgba(32, 140, 255, 0.06), rgba(245, 42, 161, 0.06));
}

.stats {
  background: rgba(255, 255, 255, 0.52);
}

.suite-copy,
.suite-showcase,
.privacy-panel {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.54)),
    rgba(255, 255, 255, 0.62);
}

.history-editions a,
.app-card {
  background: rgba(255, 255, 255, 0.7);
}

.app-card:nth-child(4n + 1),
.app-card:nth-child(4n + 2),
.app-card:nth-child(4n + 3) {
  background: rgba(255, 255, 255, 0.72);
}

.site-footer {
  padding-bottom: 72px;
}

@media (max-width: 1200px) {
  .nav,
  .page-shell,
  .site-footer {
    width: min(calc(100% - 64px), var(--content-width));
  }
}

@media (max-width: 760px) {
  body {
    background:
      linear-gradient(134deg, rgba(255, 61, 11, 0.075), transparent 29%),
      linear-gradient(238deg, rgba(32, 140, 255, 0.06), transparent 40%),
      #f7f5ee;
  }

  .site-canvas {
    width: 100%;
    margin: 0;
    background: transparent;
  }

  .site-canvas::before {
    background:
      linear-gradient(138deg, transparent 0 14%, rgba(255, 61, 11, 0.055) 14% 26%, transparent 26% 46%, rgba(248, 185, 0, 0.14) 46% 65%, transparent 65%),
      linear-gradient(34deg, transparent 0 36%, rgba(32, 140, 255, 0.07) 36% 51%, transparent 51% 76%, rgba(245, 42, 161, 0.075) 76% 87%, transparent 87%);
  }

  .nav,
  .page-shell,
  .site-footer {
    width: calc(100% - 32px);
  }

  .hero {
    padding-top: 34px;
    padding-bottom: 72px;
  }
}

/* Grotesk type pass. */
@font-face {
  font-family: "Hanken Grotesk";
  src: url("fonts/HankenGrotesk-wght.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 100 900;
}

:root {
  --font-grotesk: "Hanken Grotesk", "Neue Haas Grotesk Text", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

body,
.brand,
.nav-links,
.eyebrow,
h1,
h2,
h3,
.hero-text,
.button,
.device-card,
.device-list,
.device-grid,
.deskimia-copy,
.deskimia-tags,
.stats,
.suite-copy,
.suite-showcase,
.history-editions,
.app-card,
.privacy-panel,
.site-footer {
  font-family: var(--font-grotesk);
}

body {
  font-feature-settings: "kern" 1, "liga" 1;
}

h1,
h2,
h3,
.brand {
  font-weight: 800;
}

.eyebrow,
.meta,
.device-card span,
.device-grid span,
.suite-lead span,
.suite-feature-grid span,
.app-details dt,
.app-details dd {
  font-weight: 500;
}

/* Whole-site tactile polish pass. */
:root {
  --shadow-ring:
    0 0 0 1px rgba(0, 0, 0, 0.055),
    0 1px 2px rgba(0, 0, 0, 0.04),
    0 18px 54px rgba(31, 28, 22, 0.075);
  --shadow-ring-hover:
    0 0 0 1px rgba(0, 0, 0, 0.08),
    0 3px 8px rgba(0, 0, 0, 0.05),
    0 30px 76px rgba(31, 28, 22, 0.12);
  --radius-panel: 36px;
  --radius-panel-inner: 24px;
  --radius-card: 26px;
  --radius-card-inner: 16px;
  --ease-out: cubic-bezier(0.2, 0, 0, 1);
}

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}

body {
  text-rendering: optimizeLegibility;
}

h1,
h2,
h3 {
  text-wrap: balance;
}

p,
small,
.hero-text,
.app-body p,
.footer-note,
.privacy-links small,
.suite-lead small {
  text-wrap: pretty;
}

.stats,
.app-details,
.device-card strong,
.suite-lead strong,
.suite-feature-grid strong {
  font-variant-numeric: tabular-nums;
}

.nav {
  position: relative;
  z-index: 3;
}

.mobile-nav {
  display: none;
}

.button,
.nav-links a,
.mobile-nav summary,
.mobile-nav-panel a,
.history-editions a,
.app-card,
.privacy-links a,
.store-link {
  transition-property: transform, box-shadow, background-color, color, opacity;
  transition-duration: 180ms;
  transition-timing-function: var(--ease-out);
}

.button,
.nav-links a:last-child,
.mobile-nav summary,
.history-editions a,
.privacy-links a,
.store-link {
  position: relative;
}

.button::after,
.nav-links a:last-child::after,
.mobile-nav summary::after,
.history-editions a::after,
.privacy-links a::after,
.store-link::after {
  content: "";
  position: absolute;
  inset: -2px;
}

.button:active,
.nav-links a:last-child:active,
.mobile-nav summary:active,
.history-editions a:active,
.app-card:active,
.privacy-links a:active,
.store-link:active {
  transform: scale(0.96);
}

.coming-soon,
.suite-copy,
.suite-showcase,
.privacy-panel {
  border: 0;
  border-radius: var(--radius-panel);
  box-shadow: var(--shadow-ring);
}

.stats {
  border: 0;
  border-radius: 28px;
  box-shadow: var(--shadow-ring);
}

.hero-actions {
  border: 0;
  border-radius: 15px;
  box-shadow: var(--shadow-ring);
}

.button {
  border-radius: 8px;
}

.hero-device {
  border: 0;
  border-radius: 44px;
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.045),
    0 32px 96px rgba(31, 28, 22, 0.16);
}

.device-card,
.device-list,
.device-grid div,
.suite-lead,
.suite-feature-grid div,
.suite-icon-row,
.deskimia-tags span,
.privacy-links a {
  border: 0;
  border-radius: var(--radius-panel-inner);
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.055),
    0 10px 30px rgba(31, 28, 22, 0.035);
}

.device-list span {
  border-radius: var(--radius-card-inner);
}

.deskimia-preview {
  border-radius: var(--radius-panel-inner);
}

.mac-display {
  border-radius: var(--radius-panel-inner);
}

.app-card,
.history-editions a {
  border: 0;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-ring);
}

.app-card:hover,
.history-editions a:hover,
.privacy-links a:hover {
  box-shadow: var(--shadow-ring-hover);
}

.device-card img,
.device-grid img,
.suite-lead img,
.suite-icon-row img,
.icon-dock img,
.app-icon,
.history-editions img,
.deskimia-icon {
  outline: 1px solid rgba(0, 0, 0, 0.1);
  outline-offset: -1px;
}

.device-card img,
.device-grid img,
.icon-dock img,
.app-icon,
.history-editions img,
.deskimia-icon {
  border-radius: var(--radius-card-inner);
}

.nav-links a:last-child,
.button-primary {
  box-shadow:
    0 0 0 1px rgba(255, 61, 11, 0.52),
    0 14px 30px rgba(255, 61, 11, 0.2);
}

.button-primary:hover,
.nav-links a:last-child:hover {
  box-shadow:
    0 0 0 1px rgba(255, 61, 11, 0.58),
    0 18px 38px rgba(255, 61, 11, 0.25);
}

.store-link:hover {
  opacity: 0.72;
}

.site-footer a:hover {
  color: var(--text);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

@media (max-width: 760px) {
  .nav {
    align-items: center;
    flex-direction: row;
  }

  .nav-links {
    display: none;
  }

  .mobile-nav {
    position: relative;
    display: block;
  }

  .mobile-nav summary {
    min-width: 96px;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
    box-shadow: var(--shadow-ring);
    color: var(--text);
    cursor: pointer;
    font-weight: 700;
    list-style: none;
  }

  .mobile-nav summary::-webkit-details-marker {
    display: none;
  }

  .mobile-nav[open] summary {
    background: var(--accent);
    color: #ffffff;
  }

  .mobile-nav-panel {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    width: min(78vw, 260px);
    display: grid;
    gap: 6px;
    padding: 10px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.88);
    box-shadow: var(--shadow-ring-hover);
    backdrop-filter: blur(18px);
  }

  .mobile-nav-panel a {
    min-height: 44px;
    display: flex;
    align-items: center;
    border-radius: 16px;
    padding: 0 14px;
    color: var(--text);
    font-weight: 700;
    text-decoration: none;
  }

  .mobile-nav-panel a:hover {
    background: rgba(255, 61, 11, 0.08);
  }

  .hero-actions {
    border-radius: 17px;
  }

  .coming-soon,
  .suite-copy,
  .suite-showcase,
  .privacy-panel {
    border-radius: 30px;
  }

  .deskimia-preview,
  .mac-display {
    border-radius: 20px;
  }

  .app-card,
  .history-editions a {
    border-radius: 24px;
  }
}

/* Whole-site spacing audit. */
:root {
  --page-gutter: clamp(32px, 5.9vw, 120px);
  --section-space: clamp(88px, 8vw, 136px);
  --section-gap: clamp(32px, 4.2vw, 64px);
  --panel-padding: clamp(34px, 4vw, 74px);
  --card-padding: clamp(22px, 2vw, 30px);
  --content-gap: clamp(18px, 2vw, 28px);
  --compact-gap: 12px;
}

.nav,
.page-shell,
.site-footer {
  width: min(calc(100% - (var(--page-gutter) * 2)), var(--content-width));
}

.nav {
  min-height: clamp(96px, 7vw, 124px);
  padding: clamp(26px, 3vw, 42px) 0 clamp(12px, 1.4vw, 20px);
}

.hero {
  min-height: clamp(720px, 76svh, 790px);
  gap: var(--section-gap);
  padding: clamp(54px, 5vw, 76px) 0 clamp(90px, 8vw, 132px);
}

.hero-copy {
  gap: var(--content-gap);
}

.hero-actions {
  margin-top: clamp(8px, 1.6vw, 22px);
}

.hero-stage {
  min-height: clamp(560px, 38vw, 640px);
}

.device-card,
.device-list,
.device-grid,
.suite-feature-grid,
.suite-showcase,
.history-editions,
.app-grid,
.privacy-links,
.deskimia-tags,
.site-footer nav {
  gap: var(--compact-gap);
}

.coming-soon {
  gap: var(--section-gap);
  margin-top: clamp(18px, 2.2vw, 42px);
  padding: var(--panel-padding);
}

.deskimia-copy {
  gap: clamp(20px, 2.4vw, 34px);
}

.deskimia-tags {
  margin-top: clamp(16px, 1.6vw, 24px);
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  column-gap: 0;
  row-gap: 0;
  margin: clamp(42px, 4.4vw, 66px) 0 0;
  padding: clamp(22px, 2vw, 30px) 0;
}

.stats dt,
.stats dd {
  margin: 0;
  padding: 0 clamp(18px, 2vw, 30px);
}

.stats dt {
  grid-row: 1;
  align-self: end;
}

.stats dd {
  grid-row: 2;
  align-self: start;
  padding-top: 6px;
}

.stats dt:nth-of-type(1),
.stats dd:nth-of-type(1) {
  grid-column: 1;
}

.stats dt:nth-of-type(2),
.stats dd:nth-of-type(2) {
  grid-column: 2;
}

.stats dt:nth-of-type(3),
.stats dd:nth-of-type(3) {
  grid-column: 3;
}

.stats dt:nth-of-type(4),
.stats dd:nth-of-type(4) {
  grid-column: 4;
}

.section {
  padding-top: var(--section-space);
}

.section-heading {
  gap: clamp(10px, 1.2vw, 16px);
  margin-bottom: clamp(28px, 3vw, 44px);
}

.history-suite {
  gap: var(--section-gap);
}

.suite-copy,
.suite-showcase,
.privacy-panel {
  padding: var(--panel-padding);
}

.suite-copy,
.app-body,
.privacy-panel > div:first-child {
  gap: var(--content-gap);
}

.suite-actions,
.hero-actions {
  gap: var(--compact-gap);
}

.suite-feature-grid {
  gap: clamp(14px, 1.5vw, 20px);
}

.history-editions {
  margin-top: clamp(22px, 2.4vw, 34px);
}

.history-editions a {
  min-height: 76px;
  padding: clamp(12px, 1.2vw, 16px);
}

.app-grid {
  gap: clamp(18px, 2vw, 28px);
}

.app-card {
  gap: clamp(14px, 1.4vw, 20px);
  padding: var(--card-padding);
}

.privacy-panel {
  gap: var(--section-gap);
}

.privacy-links {
  gap: clamp(14px, 1.6vw, 22px);
}

.site-footer {
  min-height: 0;
  padding: clamp(48px, 5vw, 72px) 0 clamp(64px, 6vw, 92px);
}

@media (max-width: 1200px) {
  :root {
    --page-gutter: clamp(24px, 4vw, 64px);
    --section-space: clamp(76px, 8vw, 112px);
  }
}

@media (max-width: 760px) {
  :root {
    --page-gutter: 16px;
    --section-space: 70px;
    --section-gap: 28px;
    --panel-padding: 24px;
    --card-padding: 18px;
    --content-gap: 18px;
    --compact-gap: 10px;
  }

  .nav,
  .page-shell,
  .site-footer {
    width: calc(100% - (var(--page-gutter) * 2));
  }

  .nav {
    min-height: 86px;
    padding: 18px 0 8px;
  }

  .hero {
    min-height: 0;
    gap: 28px;
    padding: 36px 0 64px;
  }

  .hero-copy {
    gap: 18px;
  }

  .hero-actions {
    margin-top: 4px;
  }

  .hero-stage {
    min-height: 454px;
  }

  .coming-soon {
    margin-top: 40px;
    padding: 28px;
  }

  .deskimia-copy {
    gap: 18px;
  }

  .stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 18px;
    margin-top: 36px;
    padding: 22px 0;
  }

  .stats dt,
  .stats dd {
    padding: 0 18px;
  }

  .stats dt:nth-of-type(1),
  .stats dd:nth-of-type(1) {
    grid-column: 1;
  }

  .stats dt:nth-of-type(2),
  .stats dd:nth-of-type(2) {
    grid-column: 2;
  }

  .stats dt:nth-of-type(3),
  .stats dd:nth-of-type(3) {
    grid-column: 1;
  }

  .stats dt:nth-of-type(4),
  .stats dd:nth-of-type(4) {
    grid-column: 2;
  }

  .stats dt:nth-of-type(1),
  .stats dt:nth-of-type(2) {
    grid-row: 1;
  }

  .stats dd:nth-of-type(1),
  .stats dd:nth-of-type(2) {
    grid-row: 2;
  }

  .stats dt:nth-of-type(3),
  .stats dt:nth-of-type(4) {
    grid-row: 3;
  }

  .stats dd:nth-of-type(3),
  .stats dd:nth-of-type(4) {
    grid-row: 4;
  }

  .section-heading {
    margin-bottom: 24px;
  }

  .suite-copy,
  .suite-showcase,
  .privacy-panel {
    padding: 26px;
  }

  .app-grid,
  .privacy-links,
  .history-editions {
    gap: 14px;
  }

  .site-footer {
    gap: 18px;
    padding: 44px 0 64px;
  }
}

/* Compact layout correction: keep sections in flow and reduce air. */
:root {
  --page-gutter: clamp(24px, 4.6vw, 84px);
  --section-space: clamp(58px, 5.6vw, 92px);
  --section-gap: clamp(20px, 2.8vw, 38px);
  --panel-padding: clamp(24px, 3vw, 46px);
  --card-padding: clamp(16px, 1.6vw, 22px);
  --content-gap: clamp(12px, 1.35vw, 18px);
  --compact-gap: 10px;
}

.nav,
.page-shell,
.site-footer {
  width: min(calc(100% - (var(--page-gutter) * 2)), var(--content-width));
}

.nav {
  min-height: clamp(74px, 5.2vw, 96px);
  padding: clamp(18px, 2vw, 28px) 0 8px;
}

.hero {
  min-height: clamp(610px, 66svh, 700px);
  gap: var(--section-gap);
  padding: clamp(34px, 4vw, 56px) 0 clamp(54px, 5.4vw, 82px);
}

.hero-copy,
.deskimia-copy,
.suite-copy,
.app-body,
.privacy-panel > div:first-child {
  gap: var(--content-gap);
}

.hero-actions {
  margin-top: 6px;
}

.hero-stage {
  min-height: clamp(460px, 34vw, 560px);
}

.coming-soon {
  gap: var(--section-gap);
  margin-top: clamp(10px, 1.4vw, 24px);
  padding: var(--panel-padding);
}

.deskimia-tags {
  margin-top: 12px;
}

.stats {
  margin-top: clamp(28px, 3vw, 44px);
  padding: clamp(18px, 1.6vw, 24px) 0;
}

.section {
  padding-top: var(--section-space);
}

.section-heading {
  gap: 10px;
  margin-bottom: clamp(20px, 2.2vw, 32px);
}

.section-heading.compact {
  margin-left: 0;
}

.section-heading.compact h2 {
  max-width: 13.5ch;
  font-size: clamp(2.7rem, 4.2vw, 4.8rem);
}

.history-suite {
  gap: var(--section-gap);
}

.suite-copy,
.suite-showcase,
.privacy-panel {
  padding: var(--panel-padding);
}

.suite-feature-grid,
.history-editions,
.app-grid,
.privacy-links {
  gap: var(--compact-gap);
}

.history-editions {
  margin-top: 18px;
}

.history-editions a {
  min-height: 66px;
  padding: 10px;
}

#apps {
  position: relative;
  z-index: 1;
}

#apps .app-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(12px, 1.4vw, 18px);
  align-items: stretch;
}

#apps .app-card,
#apps .feature-app,
#apps .app-card:nth-child(odd),
#apps .app-card:nth-child(even),
#apps .app-card:nth-child(4n + 1),
#apps .app-card:nth-child(4n + 2),
#apps .app-card:nth-child(4n + 3) {
  grid-column: auto;
  grid-row: auto;
  margin-top: 0;
}

#apps .app-card,
#apps .feature-app {
  min-width: 0;
  min-height: 0;
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 12px;
  padding: var(--card-padding);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow-ring);
}

#apps .feature-app {
  grid-template-columns: 64px minmax(0, 1fr);
}

#apps .app-icon {
  width: 58px;
  height: 58px;
}

#apps .feature-app .app-icon {
  width: 64px;
  height: 64px;
}

#apps .app-body p {
  line-height: 1.32;
}

#apps .store-link {
  margin-top: 2px;
}

#privacy {
  clear: both;
  margin-top: clamp(34px, 4vw, 58px);
}

.privacy-panel {
  gap: var(--section-gap);
}

.privacy-links {
  gap: clamp(10px, 1.2vw, 16px);
}

.privacy-links a {
  min-height: 124px;
}

.site-footer {
  padding: clamp(38px, 4vw, 58px) 0 clamp(48px, 5vw, 72px);
}

@media (max-width: 1200px) {
  :root {
    --page-gutter: clamp(20px, 4vw, 48px);
    --section-space: clamp(52px, 6vw, 78px);
  }

  #apps .app-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  :root {
    --page-gutter: 16px;
    --section-space: 48px;
    --section-gap: 20px;
    --panel-padding: 20px;
    --card-padding: 16px;
    --content-gap: 12px;
    --compact-gap: 10px;
  }

  .nav,
  .page-shell,
  .site-footer {
    width: calc(100% - (var(--page-gutter) * 2));
  }

  .nav {
    min-height: 72px;
    padding: 16px 0 6px;
  }

  .hero {
    gap: 20px;
    padding: 24px 0 46px;
  }

  .hero-stage {
    min-height: 390px;
  }

  .coming-soon {
    margin-top: 26px;
  }

  .stats {
    row-gap: 12px;
    margin-top: 26px;
    padding: 18px 0;
  }

  .section-heading {
    margin-bottom: 18px;
  }

  .section-heading.compact h2 {
    font-size: clamp(2.35rem, 11vw, 3.5rem);
  }

  #apps .app-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  #apps .app-card,
  #apps .feature-app {
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 12px;
    border-radius: 20px;
  }

  #apps .app-icon,
  #apps .feature-app .app-icon {
    width: 54px;
    height: 54px;
  }

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

  #privacy {
    margin-top: 34px;
  }

  .privacy-links a {
    min-height: 96px;
  }
}

/* De-emphasize the two orange CTAs in the hero area. */
.nav-links a:last-child {
  min-width: 0;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: inherit;
  font-weight: 500;
  line-height: 1;
}

.nav-links a:last-child:hover {
  background: transparent;
  box-shadow: none;
  color: inherit;
}

.hero .button-primary {
  background: rgba(255, 255, 255, 0.74);
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.08),
    0 14px 30px rgba(31, 28, 22, 0.08);
  color: var(--text);
}

.hero .button-primary:hover {
  background: rgba(255, 255, 255, 0.88);
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.11),
    0 18px 38px rgba(31, 28, 22, 0.1);
  color: var(--text);
}

/* Alignment polish pass. */
:root {
  --alignment-gap: clamp(14px, 1.5vw, 22px);
  --panel-radius-outer: 30px;
  --panel-radius-inner: 18px;
}

.hero,
.coming-soon,
.history-suite,
.privacy-panel {
  column-gap: var(--alignment-gap);
}

.button,
.nav-links a,
.mobile-nav summary,
.mobile-nav-panel a,
.history-editions a,
.app-card,
.privacy-links a,
.store-link {
  transition-property: transform, box-shadow, background-color, color, opacity;
}

.coming-soon,
.suite-copy,
.suite-showcase,
.privacy-panel {
  border-radius: var(--panel-radius-outer);
}

.device-card,
.device-list,
.device-grid div,
.suite-lead,
.suite-feature-grid div,
.suite-icon-row,
.deskimia-tags span,
.privacy-links a {
  border-radius: var(--panel-radius-inner);
}

@media (min-width: 960px) {
  .hero {
    min-height: clamp(600px, 66svh, 720px);
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    align-items: center;
    padding-top: clamp(34px, 3.8vw, 54px);
    padding-bottom: clamp(48px, 5vw, 72px);
  }

  .hero-copy {
    grid-column: 1 / 7;
    grid-row: 1;
    width: auto;
    max-width: none;
  }

  .hero-actions {
    width: 100%;
    max-width: 520px;
    min-height: 68px;
    margin-top: clamp(10px, 1.3vw, 18px);
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .button {
    min-height: 52px;
  }

  .hero-stage {
    grid-column: 7 / -1;
    grid-row: 1;
    min-height: clamp(430px, 38vw, 540px);
    display: grid;
    align-items: center;
    justify-items: end;
    margin: 0;
  }

  .hero-stage::before {
    top: 9%;
    left: 8%;
    width: min(64%, 340px);
    height: auto;
    aspect-ratio: 1;
  }

  .hero-stage::after {
    top: 38%;
    right: 0;
    width: min(54%, 280px);
    height: auto;
    aspect-ratio: 1;
  }

  .hero-device {
    position: relative;
    grid-column: 1 / -1;
    grid-row: 1;
    justify-self: end;
    align-self: center;
    left: auto;
    right: auto;
    bottom: auto;
    width: min(100%, 470px);
    min-height: clamp(410px, 36vw, 470px);
    padding: clamp(20px, 2.2vw, 28px);
  }

  .icon-dock {
    grid-column: 1 / -1;
    grid-row: 1;
    justify-self: end;
    right: clamp(-6px, -0.6vw, 0px);
    bottom: clamp(34px, 4.8vw, 66px);
    width: clamp(140px, 13vw, 170px);
    min-height: clamp(140px, 13vw, 170px);
    grid-template-columns: repeat(2, clamp(50px, 5vw, 62px));
    gap: 12px;
    padding: 16px;
  }

  .icon-dock img {
    width: clamp(50px, 5vw, 62px);
    height: clamp(50px, 5vw, 62px);
  }

  .coming-soon {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    align-items: center;
    padding: clamp(30px, 3.4vw, 48px);
  }

  .deskimia-copy {
    grid-column: 1 / 6;
    grid-row: 1;
    align-self: center;
  }

  .deskimia-preview {
    grid-column: 6 / -1;
    grid-row: 1;
    align-self: center;
  }

  .history-suite {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    align-items: start;
  }

  .suite-copy {
    grid-column: 1 / 6;
  }

  .suite-showcase {
    grid-column: 6 / -1;
  }

  .history-editions {
    grid-column: 1 / -1;
  }

  .privacy-panel {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    align-items: start;
  }

  .privacy-panel > div:first-child {
    grid-column: 1 / 5;
  }

  .privacy-links {
    grid-column: 5 / -1;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 761px) and (max-width: 959px) {
  .hero-stage {
    min-height: 500px;
    display: grid;
    justify-items: center;
    margin: 0;
  }

  .hero-device {
    position: relative;
    grid-column: 1 / -1;
    justify-self: center;
    left: auto;
    right: auto;
    bottom: auto;
    width: min(100%, 560px);
  }

  .icon-dock {
    right: clamp(18px, 14vw, 130px);
  }
}

@media (max-width: 760px) {
  .coming-soon,
  .suite-copy,
  .suite-showcase,
  .privacy-panel {
    border-radius: 24px;
  }

  .hero-actions {
    min-height: 0;
  }

  .hero-stage {
    min-height: auto;
    display: grid;
    justify-items: center;
  }

  .hero-device {
    position: relative;
    grid-column: 1 / -1;
    justify-self: center;
    left: auto;
    right: auto;
    bottom: auto;
    width: min(100%, 412px);
  }

  .icon-dock {
    right: 14px;
    bottom: 18px;
  }
}

/* Hero actions should read as links/buttons, not as an input field. */
.hero-actions {
  width: auto;
  max-width: none;
  min-height: 0;
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: clamp(8px, 1.2vw, 16px);
  padding: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.hero .button {
  min-height: 46px;
  padding: 0 18px;
}

.hero .button-secondary {
  min-height: 44px;
  padding: 0 2px;
  background: transparent;
  box-shadow: none;
  color: rgba(7, 7, 7, 0.58);
  font-weight: 650;
}

.hero .button-secondary:hover {
  background: transparent;
  box-shadow: none;
  color: var(--text);
}

.hero .button-primary {
  border-radius: 13px;
}

@media (min-width: 960px) {
  .hero-actions {
    width: auto;
    max-width: none;
    min-height: 0;
    grid-template-columns: none;
  }
}

@media (max-width: 760px) {
  .hero-actions {
    align-items: flex-start;
    gap: 10px;
  }
}

/* Font audit pass: one grotesk family, one consistent type scale. */
:root {
  --font-sans: "Hanken Grotesk", "Neue Haas Grotesk Text", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --type-caption: clamp(0.8125rem, 0.78rem + 0.12vw, 0.875rem);
  --type-ui: clamp(0.9375rem, 0.9rem + 0.15vw, 1rem);
  --type-body: clamp(1rem, 0.96rem + 0.15vw, 1.0625rem);
  --type-body-lg: clamp(1.0625rem, 1rem + 0.25vw, 1.18rem);
  --type-card-title: clamp(1rem, 0.94rem + 0.24vw, 1.125rem);
  --type-h2: clamp(2.6rem, 3.7vw, 4.55rem);
  --type-h1: clamp(4.05rem, 5.15vw, 6rem);
  --leading-tight: 1.05;
  --leading-title: 1.08;
  --leading-body: 1.48;
}

html {
  font-family: var(--font-sans);
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  font-size: var(--type-body);
  font-feature-settings: "kern" 1, "liga" 1, "tnum" 0;
  line-height: var(--leading-body);
}

.site-canvas :is(
  a,
  abbr,
  button,
  dd,
  details,
  div,
  dl,
  dt,
  figcaption,
  h1,
  h2,
  h3,
  h4,
  input,
  label,
  li,
  nav,
  p,
  section,
  small,
  span,
  strong,
  summary
) {
  font-family: var(--font-sans);
  letter-spacing: 0;
}

h1,
h2,
h3 {
  font-family: var(--font-sans);
  font-weight: 760;
  letter-spacing: 0;
  text-transform: none;
  text-wrap: balance;
}

h1 {
  font-size: var(--type-h1);
  line-height: var(--leading-tight);
}

h2,
.section-heading.compact h2,
.privacy-panel h2,
.suite-copy h2 {
  font-size: var(--type-h2);
  line-height: var(--leading-title);
}

h3,
.app-body h3 {
  font-size: var(--type-card-title);
  font-weight: 720;
  line-height: 1.18;
}

p,
.hero-text,
.deskimia-copy p:not(.eyebrow),
.suite-copy p,
.section-heading p,
.app-body p,
.footer-note,
.suite-lead small,
.privacy-links small {
  font-family: var(--font-sans);
  font-size: var(--type-body);
  font-weight: 400;
  line-height: var(--leading-body);
  text-wrap: pretty;
}

.hero-text {
  font-size: var(--type-body-lg);
}

.brand,
.brand span:last-child {
  font-family: var(--font-sans);
  font-size: clamp(1.55rem, 1.3vw, 1.85rem);
  font-weight: 760;
  line-height: 1;
}

.brand-mark {
  width: clamp(30px, 2.2vw, 36px);
  height: clamp(30px, 2.2vw, 36px);
  display: inline-grid;
  flex: 0 0 auto;
  place-items: center;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  font-size: 0;
}

.brand-mark svg,
.brand-mark img {
  width: 100%;
  height: 100%;
  display: block;
  overflow: visible;
  transition: transform 220ms var(--ease);
}

.brand-mark-top {
  fill: var(--logo-top);
}

.brand-mark-bottom {
  fill: var(--logo-bottom);
}

.brand:hover .brand-mark svg,
.brand:hover .brand-mark img {
  transform: translateY(-1px) scale(1.04);
}

.nav-links,
.nav-links a,
.mobile-nav summary,
.mobile-nav-panel a,
.button,
.store-link,
.site-footer,
.site-footer p,
.site-footer p:first-child,
.site-footer a {
  font-family: var(--font-sans);
  font-size: var(--type-ui);
  font-weight: 620;
  line-height: 1;
  text-transform: none;
}

.hero .button-secondary {
  font-weight: 620;
}

.hero .button-primary,
.suite-actions .button-primary {
  font-weight: 700;
}

.eyebrow,
.meta,
.app-details dt,
.app-details dd,
.device-card span,
.device-grid span,
.suite-lead span,
.suite-feature-grid span,
.history-editions span,
.deskimia-tags span,
.menu-pill {
  font-family: var(--font-sans);
  font-size: var(--type-caption);
  font-weight: 560;
  line-height: 1.25;
  text-transform: none;
}

.device-card strong,
.suite-lead strong,
.suite-feature-grid strong,
.stats dd {
  font-family: var(--font-sans);
  font-weight: 720;
  line-height: 1.15;
}

.stats,
.stats dt,
.stats dd,
.app-details,
.app-details dt,
.app-details dd {
  font-variant-numeric: tabular-nums;
}

.stats {
  --stats-pad-x: clamp(28px, 3vw, 48px);
  grid-template-columns: repeat(4, minmax(0, 1fr));
  padding-right: var(--stats-pad-x);
  padding-left: var(--stats-pad-x);
}

.stats dt,
.stats dd {
  padding-right: clamp(12px, 1.6vw, 24px);
  padding-left: 0;
}

.device-list span {
  font-family: var(--font-sans);
  font-size: var(--type-ui);
  font-weight: 650;
  line-height: 1.15;
}

.privacy-links span {
  font-size: var(--type-ui);
  font-weight: 700;
  line-height: 1.15;
}

.since-2010 {
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  margin-left: 0.28em;
  padding: 0 0.62em;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.64);
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.08),
    0 10px 24px rgba(31, 28, 22, 0.07);
  color: var(--text);
  font-size: 0.95em;
  font-weight: 760;
  line-height: 1;
  white-space: nowrap;
}

.footer-since {
  min-height: 24px;
  padding-inline: 0.55em;
}

@media (max-width: 760px) {
  :root {
    --type-h1: clamp(3.35rem, 13vw, 4.55rem);
    --type-h2: clamp(2.35rem, 10vw, 3.35rem);
    --type-body-lg: 1rem;
  }

  .brand,
  .brand span:last-child {
    font-size: 1.55rem;
  }

  .stats {
    --stats-pad-x: 20px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Motion polish pass: subtle, interruptible, and reduced-motion aware. */
:root {
  --motion-fast: 160ms;
  --motion-medium: 240ms;
  --motion-slow: 520ms;
  --motion-ease: cubic-bezier(0.2, 0, 0, 1);
  --motion-enter: cubic-bezier(0.16, 1, 0.3, 1);
}

.button,
.nav-links a,
.mobile-nav summary,
.mobile-nav-panel a,
.history-editions a,
.privacy-links a,
.store-link {
  transition-property: transform, opacity, box-shadow, background-color, color, filter;
  transition-duration: var(--motion-fast);
  transition-timing-function: var(--motion-ease);
}

.nav-links a:hover,
.site-footer a:hover,
.store-link:hover {
  transform: translateY(-1px);
}

.button:hover,
.history-editions a:hover,
.privacy-links a:hover {
  transform: translateY(-2px);
}

.button:active,
.nav-links a:active,
.mobile-nav summary:active,
.mobile-nav-panel a:active,
.history-editions a:active,
.privacy-links a:active,
.store-link:active {
  transform: scale(0.96);
}

.button:focus-visible,
.nav-links a:focus-visible,
.mobile-nav summary:focus-visible,
.mobile-nav-panel a:focus-visible,
.history-editions a:focus-visible,
.privacy-links a:focus-visible,
.store-link:focus-visible {
  outline: 2px solid rgba(7, 7, 7, 0.72);
  outline-offset: 4px;
}

#apps .app-card {
  transition-property: box-shadow;
  transition-duration: var(--motion-fast);
  transition-timing-function: var(--motion-ease);
}

#apps .app-card:hover {
  transform: none;
  box-shadow: var(--shadow-ring);
}

@media (prefers-reduced-motion: no-preference) {
  .hero-copy > .eyebrow,
  .hero-copy h1,
  .hero-text,
  .hero-actions,
  .hero-device,
  .icon-dock,
  .coming-soon,
  .stats,
  .history-suite > .suite-copy,
  .history-suite > .suite-showcase,
  .history-editions,
  #apps .section-heading,
  #apps .app-card,
  #privacy {
    opacity: 0;
    transform: translateY(12px);
    filter: blur(4px);
    animation-name: susu-enter-up;
    animation-duration: var(--motion-slow);
    animation-timing-function: var(--motion-enter);
    animation-fill-mode: forwards;
  }

  .hero-copy > .eyebrow {
    animation-delay: 40ms;
  }

  .hero-copy h1 {
    animation-delay: 120ms;
  }

  .hero-text {
    animation-delay: 210ms;
  }

  .hero-actions {
    animation-delay: 300ms;
  }

  .hero-device {
    animation-delay: 180ms;
  }

  .icon-dock {
    animation-delay: 360ms;
  }

  .coming-soon {
    animation-delay: 90ms;
  }

  .stats {
    animation-delay: 150ms;
  }

  .history-suite > .suite-copy {
    animation-delay: 70ms;
  }

  .history-suite > .suite-showcase {
    animation-delay: 160ms;
  }

  .history-editions {
    animation-delay: 250ms;
  }

  #apps .section-heading {
    animation-delay: 70ms;
  }

  #apps .app-card:nth-child(3n + 1) {
    animation-delay: 90ms;
  }

  #apps .app-card:nth-child(3n + 2) {
    animation-delay: 160ms;
  }

  #apps .app-card:nth-child(3n) {
    animation-delay: 230ms;
  }

  #privacy {
    animation-delay: 90ms;
  }

  .hero-stage::before {
    animation: susu-orbit-soft 9s var(--motion-ease) infinite alternate;
  }

  .hero-stage::after {
    animation: susu-orbit-soft 11s var(--motion-ease) infinite alternate-reverse;
  }

  .wallpaper-band {
    animation: susu-wallpaper-slide 10s var(--motion-ease) infinite alternate;
  }

  .band-b {
    animation-duration: 12s;
  }

  .band-c {
    animation-duration: 14s;
  }

  .icon-dock img {
    opacity: 0;
    transform: scale(0.25);
    filter: blur(4px);
    animation-name: susu-icon-pop;
    animation-duration: 300ms;
    animation-timing-function: var(--motion-ease);
    animation-fill-mode: forwards;
    transition-property: transform, opacity, filter;
    transition-duration: var(--motion-medium);
    transition-timing-function: var(--motion-ease);
  }

  .icon-dock img:nth-child(1) {
    animation-delay: 440ms;
  }

  .icon-dock img:nth-child(2) {
    animation-delay: 510ms;
  }

  .icon-dock img:nth-child(3) {
    animation-delay: 580ms;
  }

  .icon-dock img:nth-child(4) {
    animation-delay: 650ms;
  }

  @keyframes susu-enter-up {
    to {
      opacity: 1;
      transform: translateY(0);
      filter: blur(0);
    }
  }

  @keyframes susu-orbit-soft {
    to {
      transform: translate3d(10px, -8px, 0) scale(1.015);
    }
  }

  @keyframes susu-wallpaper-slide {
    to {
      transform: translate3d(18px, -3px, 0);
    }
  }

  @keyframes susu-icon-pop {
    to {
      opacity: 1;
      transform: scale(1);
      filter: blur(0);
    }
  }
}

/* Animated background dots. */
.site-canvas {
  background-image:
    radial-gradient(circle, rgba(32, 140, 255, 0.34) 0 2px, transparent 2.7px),
    radial-gradient(circle, rgba(245, 42, 161, 0.28) 0 2px, transparent 2.8px),
    radial-gradient(circle, rgba(255, 61, 11, 0.25) 0 1.8px, transparent 2.6px);
  background-position:
    12% 10%,
    82% 24%,
    58% 72%;
  background-repeat: no-repeat;
  background-size:
    260px 260px,
    320px 320px,
    380px 380px;
}

@media (prefers-reduced-motion: no-preference) {
  .site-canvas {
    animation: susu-background-dots 18s var(--motion-ease) infinite alternate;
  }

  .hero::before {
    animation: susu-hero-dot-cluster 7s var(--motion-ease) infinite alternate;
  }

  .hero::after {
    animation: susu-hero-ring-dot 8.5s var(--motion-ease) infinite alternate-reverse;
  }

  @keyframes susu-background-dots {
    to {
      background-position:
        14% 12%,
        80% 20%,
        60% 75%;
    }
  }

  @keyframes susu-hero-dot-cluster {
    to {
      transform: translate3d(12px, -10px, 0) scale(1.05);
    }
  }

  @keyframes susu-hero-ring-dot {
    to {
      transform: translate3d(-10px, 12px, 0) scale(1.08);
    }
  }
}

/* Subtle random micro-elements in the background. */
body {
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.5;
  background-image:
    linear-gradient(42deg, transparent 44%, rgba(7, 59, 121, 0.14) 45% 55%, transparent 56%),
    linear-gradient(132deg, transparent 44%, rgba(7, 59, 121, 0.14) 45% 55%, transparent 56%),
    radial-gradient(circle, transparent 0 8px, rgba(235, 104, 0, 0.16) 8px 10px, transparent 10.5px),
    radial-gradient(circle, transparent 0 5px, rgba(24, 166, 189, 0.16) 5px 7px, transparent 7.5px),
    linear-gradient(31deg, transparent 42%, rgba(245, 42, 161, 0.12) 43% 57%, transparent 58%),
    linear-gradient(101deg, transparent 42%, rgba(32, 140, 255, 0.12) 43% 57%, transparent 58%),
    radial-gradient(circle, rgba(248, 185, 0, 0.2) 0 2.5px, transparent 3.5px);
  background-position:
    20% 21%,
    20% 21%,
    84% 19%,
    12% 58%,
    72% 46%,
    34% 83%,
    91% 74%;
  background-repeat: no-repeat;
  background-size:
    26px 26px,
    26px 26px,
    28px 28px,
    20px 20px,
    24px 24px,
    30px 30px,
    18px 18px;
}

.site-canvas {
  z-index: 1;
}

@media (prefers-reduced-motion: no-preference) {
  body::before {
    animation: susu-micro-elements 24s var(--motion-ease) infinite alternate;
  }

  .hero-copy::before {
    animation: susu-plus-float 10s var(--motion-ease) infinite alternate;
  }

  .hero-copy::after {
    animation: susu-diamond-float 12s var(--motion-ease) infinite alternate-reverse;
  }

  @keyframes susu-micro-elements {
    to {
      opacity: 0.62;
      background-position:
        21.5% 18.5%,
        21.5% 18.5%,
        82.5% 22%,
        13.5% 55.5%,
        73.5% 48.5%,
        32.5% 85%,
        89.5% 71.5%;
      transform: translate3d(0, -6px, 0);
    }
  }

  @keyframes susu-plus-float {
    from {
      transform: translate3d(0, 0, 0) rotate(-14deg);
    }

    to {
      transform: translate3d(8px, -6px, 0) rotate(-5deg);
    }
  }

  @keyframes susu-diamond-float {
    from {
      transform: translate3d(0, 0, 0) rotate(47deg) scale(1);
    }

    to {
      transform: translate3d(-7px, 6px, 0) rotate(58deg) scale(0.96);
    }
  }
}

/* Final selected direction: Blueprint Lab. */
:root {
  --bg: #dce9ef;
  --canvas: #f5fbff;
  --surface: #fbfdff;
  --surface-muted: #e8f4fa;
  --panel: rgba(251, 253, 255, 0.72);
  --text: #092235;
  --muted: #526a7d;
  --accent: #0c76c8;
  --accent-strong: #075d9e;
  --logo-top: #9b8cff;
  --logo-mid: #7168ff;
  --logo-bottom: #2597ff;
  --pink: #41b8ff;
  --yellow: #d8f1ff;
  --blue: #0c76c8;
  --teal: #1da89d;
  --shadow-ring:
    0 0 0 1px rgba(12, 118, 200, 0.18),
    0 18px 54px rgba(12, 80, 124, 0.08);
  --shadow-ring-hover:
    0 0 0 1px rgba(12, 118, 200, 0.28),
    0 28px 70px rgba(12, 80, 124, 0.13);
}

html,
body {
  background: var(--bg);
}

.site-canvas {
  background:
    linear-gradient(90deg, rgba(12, 118, 200, 0.08) 1px, transparent 1px) 0 0 / 72px 72px,
    linear-gradient(0deg, rgba(12, 118, 200, 0.06) 1px, transparent 1px) 0 0 / 72px 72px,
    radial-gradient(circle at 84% 18%, rgba(29, 168, 157, 0.14), transparent 22%),
    linear-gradient(135deg, rgba(12, 118, 200, 0.08), transparent 34%),
    var(--canvas);
}

body::before {
  opacity: 0.22;
  filter: hue-rotate(170deg) saturate(0.8);
}

.hero-stage::before {
  background: transparent;
  box-shadow: inset 0 0 0 2px rgba(12, 118, 200, 0.22);
}

.hero-stage::after {
  background: rgba(65, 184, 255, 0.22);
}

.coming-soon,
.stats,
.suite-copy,
.suite-showcase,
.privacy-panel,
.history-editions a,
#apps .app-card {
  border: 1px solid rgba(12, 118, 200, 0.16);
  background: rgba(251, 253, 255, 0.72);
  box-shadow: var(--shadow-ring);
}

.button-primary,
.suite-actions .button-primary {
  border-color: transparent;
  background: var(--accent);
  color: #ffffff;
}

.button-secondary,
.deskimia-tags span {
  background: rgba(255, 255, 255, 0.64);
}

.store-link {
  color: var(--accent);
}

#hero-title {
  max-width: 14.8ch;
}

.title-keep {
  display: inline-block;
  white-space: nowrap;
}

@media (max-width: 760px) {
  .title-keep {
    font-size: min(1em, calc((100vw - 40px) / 10.4));
  }
}

/* Keep scroll compositing stable: no animated full-page paint layers. */
.site-canvas {
  contain: paint;
  isolation: isolate;
  background-attachment: scroll;
  animation: none;
}

body::before {
  display: none;
  position: absolute;
  opacity: 0;
  filter: none;
  transform: none;
  background-image: none;
}

@media (prefers-reduced-motion: no-preference) {
  .site-canvas,
  body::before {
    animation: none;
  }
}

.site-header,
.hero-device,
.icon-dock,
.menu-pill,
.coming-soon,
.stats,
.suite-copy,
.suite-showcase,
.suite-lead,
.suite-feature-grid div,
.suite-icon-row,
.privacy-panel,
.privacy-links a,
.history-editions a,
#apps .app-card,
.mobile-nav-panel {
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}

.site-footer {
  position: relative;
  width: 100%;
  max-width: none;
  min-height: clamp(360px, 28vw, 480px);
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: start;
  justify-content: stretch;
  justify-items: stretch;
  gap: 0;
  margin: clamp(50px, 7vw, 92px) auto 0;
  padding: clamp(38px, 5vw, 76px) 0 clamp(260px, 22vw, 340px);
  overflow: hidden;
}

.footer-illustration {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  z-index: 0;
  width: 100%;
  height: clamp(340px, 28vw, 480px);
  overflow: hidden;
  pointer-events: none;
  background-image: url("footer-meadow.svg");
  background-repeat: repeat-x;
  background-position: center bottom;
  background-size: auto clamp(310px, 24vw, 370px);
}

.footer-row {
  position: relative;
  z-index: 2;
  width: min(calc(100% - 120px), var(--content-width));
  max-width: var(--content-width);
  margin: 0 auto;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: clamp(18px, 3vw, 40px);
}

.footer-row p,
.footer-row a {
  -webkit-text-stroke: 0.35px rgba(247, 251, 255, 0.72);
  text-shadow:
    0 1px 0 rgba(247, 251, 255, 0.8),
    0 0 8px rgba(247, 251, 255, 0.74);
}

.site-footer nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(18px, 3vw, 36px);
}

@media (max-width: 900px) {
  .site-footer {
    width: 100%;
    min-height: 372px;
    align-items: start;
    gap: 22px;
    margin-top: 48px;
    padding: 28px 0 260px;
  }

  .footer-illustration {
    height: 250px;
    background-position: center bottom;
    background-size: auto 250px;
  }

  .footer-row {
    width: calc(100% - 32px);
    align-items: flex-start;
    flex-direction: column;
  }

  .site-footer nav {
    flex-wrap: wrap;
    justify-content: flex-start;
  }
}

/* Final spacing audit: one rhythm for section gaps and shared content edges. */
:root {
  --block-gap: clamp(28px, 2.5vw, 42px);
  --section-space: var(--block-gap);
  --section-gap: clamp(20px, 2.6vw, 34px);
  --panel-padding: clamp(24px, 2.8vw, 42px);
  --card-padding: clamp(16px, 1.5vw, 21px);
  --content-gap: clamp(12px, 1.25vw, 17px);
  --compact-gap: 10px;
}

.page-shell {
  padding-bottom: var(--block-gap);
}

.hero {
  gap: var(--section-gap);
  padding-top: clamp(34px, 3.6vw, 52px);
  padding-bottom: clamp(46px, 4.8vw, 68px);
}

.hero-copy,
.deskimia-copy,
.suite-copy,
.app-body {
  gap: var(--content-gap);
}

.coming-soon {
  gap: var(--section-gap);
  align-items: stretch;
  margin-top: var(--block-gap);
  padding: var(--panel-padding);
}

.stats {
  margin-top: var(--block-gap);
  padding: clamp(18px, 1.5vw, 22px) var(--panel-padding);
}

.stats dt,
.stats dd {
  padding-right: 0;
  padding-left: 0;
}

.deskimia-copy {
  align-self: center;
  grid-template-columns: minmax(0, 1fr);
  row-gap: clamp(8px, 0.8vw, 12px);
  align-items: start;
}

.deskimia-copy .eyebrow {
  grid-column: 1;
  grid-row: 1;
}

.deskimia-copy h2 {
  grid-column: 1;
  grid-row: 2;
  display: flex;
  align-items: center;
  gap: 0.16em;
  margin-top: 0;
  margin-bottom: 0;
}

.deskimia-title-logo {
  width: 0.9em;
  height: 0.9em;
  display: inline-grid;
  flex: 0 0 auto;
  place-items: center;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.deskimia-title-logo-image {
  grid-area: 1 / 1;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.deskimia-title-logo-image.is-dark {
  display: none;
}

html[data-theme="dark"] .deskimia-title-logo-image.is-light {
  display: none;
}

html[data-theme="dark"] .deskimia-title-logo-image.is-dark {
  display: block;
}

.deskimia-copy p:not(.eyebrow) {
  grid-column: 1;
  grid-row: 3;
}

.deskimia-tags {
  grid-column: 1;
  grid-row: 4;
}

.deskimia-preview {
  align-self: stretch;
  margin-top: 0;
  min-height: clamp(320px, 21vw, 414px);
}

.mac-display {
  height: 100%;
  min-height: 100%;
}

.section {
  padding-top: var(--section-space);
}

.section-heading {
  margin-bottom: clamp(20px, 2vw, 30px);
}

.history-suite {
  gap: var(--section-gap);
}

.suite-copy,
.suite-showcase {
  padding: var(--panel-padding);
}

.suite-feature-grid,
.suite-showcase,
.history-editions {
  gap: clamp(10px, 1vw, 14px);
}

.history-editions {
  margin-top: 0;
}

#apps .app-grid {
  gap: clamp(14px, 1.5vw, 20px);
}

#apps .app-card,
#apps .feature-app {
  padding: var(--card-padding);
}

.site-footer {
  min-height: clamp(330px, 26vw, 440px);
  margin-top: 0;
  padding: clamp(34px, 4vw, 56px) 0 clamp(238px, 20vw, 310px);
}

.footer-row {
  width: min(calc(100% - (var(--page-gutter) * 2)), var(--content-width));
  gap: var(--section-gap);
}

.footer-illustration {
  height: clamp(320px, 26vw, 430px);
  background-size: auto clamp(300px, 22vw, 350px);
}

@media (min-width: 960px) {
  .coming-soon {
    grid-template-rows: minmax(0, 1fr);
    align-content: stretch;
  }

  .deskimia-preview {
    height: auto;
    min-height: clamp(320px, 21vw, 414px);
  }
}

@media (max-width: 1200px) {
  :root {
    --block-gap: clamp(26px, 3.4vw, 36px);
    --section-space: var(--block-gap);
    --section-gap: clamp(20px, 2.8vw, 30px);
  }
}

@media (max-width: 900px) {
  .site-footer {
    width: 100%;
    min-height: 352px;
    margin-top: 0;
    padding: 28px 0 250px;
  }

  .footer-row {
    width: min(calc(100% - (var(--page-gutter) * 2)), var(--content-width));
  }

  .footer-illustration {
    height: 250px;
    background-size: auto 250px;
  }
}

@media (max-width: 760px) {
  :root {
    --block-gap: 24px;
    --section-space: 28px;
    --section-gap: 20px;
    --panel-padding: 20px;
    --card-padding: 16px;
    --content-gap: 12px;
  }

  .page-shell {
    padding-bottom: var(--block-gap);
  }

  .hero {
    padding-top: 24px;
    padding-bottom: 44px;
  }

  .coming-soon {
    margin-top: var(--block-gap);
    align-items: start;
  }

  .stats {
    margin-top: var(--block-gap);
    padding-right: var(--panel-padding);
    padding-left: var(--panel-padding);
  }

  .deskimia-preview {
    align-self: stretch;
    min-height: 300px;
  }

  #apps .app-grid {
    gap: 12px;
  }

  .site-footer {
    min-height: 348px;
    padding: 24px 0 248px;
  }
}

/* Hero mockup polish: clearer hierarchy, steadier edges, less visual crowding. */
.hero-device {
  align-content: stretch;
  gap: clamp(10px, 1vw, 14px);
  border-radius: clamp(30px, 3vw, 40px);
  background:
    radial-gradient(circle at 34% 10%, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.7) 48%, rgba(255, 255, 255, 0.34) 72%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.76), rgba(255, 255, 255, 0.34));
  box-shadow:
    0 0 0 1px rgba(8, 25, 42, 0.07),
    0 34px 88px rgba(25, 35, 50, 0.16);
}

.device-card,
.device-list,
.device-grid div {
  border-radius: clamp(17px, 1.8vw, 24px);
  background: rgba(255, 255, 255, 0.7);
  box-shadow:
    0 0 0 1px rgba(8, 25, 42, 0.055),
    0 12px 26px rgba(18, 34, 50, 0.035);
}

.device-card {
  grid-template-columns: clamp(56px, 4.4vw, 66px) minmax(0, 1fr);
  gap: clamp(12px, 1.1vw, 16px);
  align-items: center;
  padding: clamp(12px, 1.25vw, 16px);
}

.device-card img {
  width: clamp(56px, 4.4vw, 66px);
}

.device-list {
  gap: clamp(8px, 0.9vw, 12px);
  padding: clamp(8px, 0.9vw, 12px);
}

.device-list span {
  min-height: clamp(44px, 3.8vw, 54px);
  border-radius: clamp(12px, 1.2vw, 16px);
  background: rgba(255, 255, 255, 0.74);
  padding: 0 clamp(12px, 1.2vw, 16px);
}

.device-grid {
  gap: clamp(8px, 0.9vw, 12px);
}

.device-grid div {
  min-height: clamp(108px, 9vw, 132px);
  gap: 8px;
}

.device-grid img {
  width: clamp(58px, 4.8vw, 72px);
}

.icon-dock {
  width: clamp(128px, 10.5vw, 154px);
  min-height: clamp(128px, 10.5vw, 154px);
  grid-template-columns: repeat(2, clamp(46px, 4vw, 56px));
  gap: clamp(9px, 0.9vw, 12px);
  padding: clamp(13px, 1.2vw, 16px);
  border-radius: clamp(28px, 2.6vw, 34px);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.06),
    0 24px 64px rgba(12, 16, 24, 0.26);
}

.icon-dock img {
  width: clamp(46px, 4vw, 56px);
  height: clamp(46px, 4vw, 56px);
}

@media (min-width: 960px) {
  .hero {
    column-gap: clamp(32px, 5vw, 88px);
  }

  .hero-stage {
    padding-left: clamp(8px, 1.8vw, 28px);
    padding-right: clamp(14px, 1.8vw, 28px);
  }

  .hero-device {
    width: min(100%, clamp(430px, 34vw, 540px));
    min-height: clamp(360px, 31vw, 448px);
    padding: clamp(18px, 1.7vw, 25px);
  }

  .icon-dock {
    right: clamp(8px, 1vw, 16px);
    bottom: clamp(22px, 3.2vw, 48px);
  }
}

@media (max-width: 760px) {
  .hero-device {
    gap: 10px;
    padding: 16px;
  }

  .device-card {
    grid-template-columns: 52px minmax(0, 1fr);
  }

  .device-card img {
    width: 52px;
  }

  .device-list span {
    min-height: 42px;
    padding-inline: 12px;
  }

  .device-grid div {
    min-height: 108px;
  }

  .device-grid img {
    width: 58px;
  }

  .icon-dock {
    width: 124px;
    min-height: 124px;
    grid-template-columns: repeat(2, 44px);
    gap: 9px;
    padding: 13px;
    border-radius: 28px;
  }

  .icon-dock img {
    width: 44px;
    height: 44px;
  }
}

/* Deskimia preview polish: present the wallpaper as a monitor, not an app window. */
.deskimia-preview {
  position: relative;
  display: block;
  width: 100%;
  max-width: min(100%, 680px);
  aspect-ratio: 560 / 455;
  justify-self: center;
  overflow: visible;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.deskimia-preview::before,
.deskimia-preview::after {
  content: "";
  position: absolute;
  left: 50%;
  z-index: 0;
  transform: translateX(-50%);
  pointer-events: none;
}

.deskimia-preview::before {
  display: none;
}

.deskimia-preview::after {
  display: block;
  top: 90.8%;
  z-index: 0;
  width: 44%;
  height: 8%;
  border-radius: 999px;
  background: rgba(18, 34, 50, 0.18);
  filter: blur(18px);
  box-shadow: none;
}

.studio-display-shell {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: block;
  overflow: visible;
  filter: drop-shadow(0 18px 32px rgba(18, 34, 50, 0.13));
  pointer-events: none;
}

.studio-shell-accent,
.studio-shell-metal {
  fill: #d9d9d9;
}

.studio-shell-foot {
  fill: #747a80;
}

.studio-shell-body {
  fill: #25282b;
}

.mac-display {
  position: absolute;
  z-index: 2;
  top: 5.14%;
  left: 4.74%;
  width: 90.54%;
  height: 63.9%;
  min-height: 0;
  aspect-ratio: auto;
  display: grid;
  grid-template-rows: minmax(0, 1fr);
  padding: 0;
  border-radius: 0;
  overflow: hidden;
  background: #101723;
  box-shadow: none;
}

.mac-display::before {
  content: "";
  display: none;
  position: absolute;
  left: 50%;
  top: clamp(2px, 0.32vw, 5px);
  z-index: 5;
  width: clamp(5px, 0.6vw, 8px);
  height: clamp(5px, 0.6vw, 8px);
  border-radius: 999px;
  background:
    radial-gradient(circle at 44% 38%, rgba(54, 71, 89, 0.72), rgba(5, 8, 12, 0.92) 62%),
    #05070a;
  box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.16);
  transform: translateX(-50%);
  pointer-events: none;
}

.mac-display::after {
  content: "";
  display: none;
  position: absolute;
  left: 50%;
  bottom: clamp(2px, 0.32vw, 5px);
  width: 16%;
  height: clamp(2px, 0.28vw, 4px);
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.18), transparent);
  transform: translateX(-50%);
  pointer-events: none;
}

.mac-window-bar {
  display: none;
}

.wallpaper-canvas {
  position: relative;
  height: 100%;
  border-radius: 0;
  overflow: hidden;
  background: #101723;
  box-shadow: none;
}

.wallpaper-canvas::before,
.wallpaper-canvas::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.wallpaper-canvas::before {
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(8, 14, 24, 0.2) 0%,
    transparent 26%,
    transparent 76%,
    rgba(8, 14, 24, 0.18) 100%
  );
  opacity: 1;
}

.wallpaper-canvas::after {
  inset: 0;
  z-index: 4;
  background: linear-gradient(106deg, transparent 0 44%, rgba(255, 255, 255, 0.08) 49%, transparent 55% 100%);
  opacity: 0;
  transform: translate3d(-70%, 0, 0);
}

.mac-menu-bar {
  position: absolute;
  inset: 0 0 auto;
  z-index: 5;
  min-height: clamp(22px, 1.8vw, 30px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 0 clamp(12px, 1.4vw, 20px);
  background: transparent;
  box-shadow: none;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(0.58rem, 0.72vw, 0.78rem);
  font-weight: 650;
  line-height: 1;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.48);
  white-space: nowrap;
}

.mac-menu-bar > div {
  display: flex;
  align-items: center;
  min-width: 0;
  gap: clamp(9px, 1vw, 15px);
}

.mac-menu-bar span:first-child {
  font-weight: 760;
}

.mac-menu-status {
  justify-content: flex-end;
  color: rgba(255, 255, 255, 0.78);
}

.mac-wifi-icon {
  width: 18px;
  height: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.mac-wifi-icon svg {
  width: 18px;
  height: 14px;
  display: block;
  overflow: visible;
}

.mac-wifi-icon path {
  fill: currentColor;
  stroke: none;
}

.mac-clock {
  min-width: 13.9ch;
  text-align: right;
  font-variant-numeric: tabular-nums;
}

.monitor-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  background: #101723;
}

.monitor-credit {
  position: absolute;
  right: clamp(11px, 1.2vw, 18px);
  bottom: clamp(10px, 1.1vw, 16px);
  z-index: 5;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(0.58rem, 0.72vw, 0.78rem);
  font-weight: 720;
  line-height: 1;
  letter-spacing: 0.01em;
  text-shadow:
    0 1px 2px rgba(0, 0, 0, 0.55),
    0 3px 12px rgba(0, 0, 0, 0.36);
  pointer-events: none;
}

.wallpaper-band {
  display: none;
  z-index: 2;
  left: -12%;
  width: 124%;
  border-radius: 999px;
  --wallpaper-x-from: -30px;
  --wallpaper-y-from: -2px;
  --wallpaper-x-to: 34px;
  --wallpaper-y-to: -8px;
  --wallpaper-scale: 1.1;
  transform: translate3d(var(--wallpaper-x-from), var(--wallpaper-y-from), 0) rotate(-8deg) scale(var(--wallpaper-scale));
  transform-origin: 50% 50%;
  filter: blur(0.8px);
  will-change: transform;
}

.wallpaper-band::before,
.wallpaper-band::after {
  content: "";
  position: absolute;
  left: -2%;
  right: -2%;
  border-radius: 50%;
  pointer-events: none;
}

.wallpaper-band::before {
  top: -24%;
  height: 48%;
  background: #101723;
}

.wallpaper-band::after {
  bottom: -24%;
  height: 48%;
  background: #101723;
}

.band-b {
  --wallpaper-x-from: 28px;
  --wallpaper-y-from: 3px;
  --wallpaper-x-to: -34px;
  --wallpaper-y-to: 9px;
  --wallpaper-scale: 1.11;
}

.band-c {
  --wallpaper-x-from: -26px;
  --wallpaper-y-from: 9px;
  --wallpaper-x-to: 32px;
  --wallpaper-y-to: 1px;
  --wallpaper-scale: 1.12;
}

.menu-pill {
  display: none;
}

@media (prefers-reduced-motion: no-preference) {
  .wallpaper-canvas::after {
    animation: monitor-sheen-sweep 10s var(--motion-ease) infinite;
  }
}

@media (min-width: 960px) {
  .deskimia-preview {
    min-height: 0;
  }
}

@media (max-width: 760px) {
  .deskimia-preview {
    max-width: 390px;
    min-height: 0;
    margin-inline: auto;
    padding: 0;
  }

  .deskimia-preview::before {
    display: none;
  }

  .deskimia-preview::after {
    top: 90.8%;
    width: 44%;
    height: 8%;
  }

  .mac-display {
    padding: 0;
    border-radius: 0;
  }

  .wallpaper-canvas {
    border-radius: 0;
  }

  .mac-menu-bar {
    min-height: 21px;
    padding-inline: 10px;
    font-size: 0.58rem;
  }

  .mac-menu-bar > div {
    gap: 8px;
  }

  .mac-menu-bar > div:first-child span:nth-child(n + 4),
  .mac-menu-bar > div:first-child span:nth-child(n + 3) {
    display: none;
  }

  .mac-menu-status {
    gap: 7px;
  }

  .mac-wifi-icon,
  .mac-wifi-icon svg {
    width: 15px;
    height: 12px;
  }

  .mac-clock {
    min-width: 11.8ch;
  }

  .monitor-credit {
    right: 10px;
    bottom: 9px;
    font-size: 0.58rem;
  }
}

/* Remove the hero-side app mockup and let the headline own the hero. */
.hero {
  grid-template-columns: minmax(0, 1fr);
  min-height: auto;
  padding-bottom: clamp(22px, 2.4vw, 34px);
}

.hero-copy {
  grid-column: 1 / -1;
  max-width: min(100%, 880px);
}

.hero-actions {
  max-width: 560px;
}

.coming-soon {
  margin-top: clamp(10px, 1.2vw, 18px);
}

/* Avoid card-in-card in the history feature: the wrapper is just layout. */
.suite-showcase {
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  padding: 0;
}

/* Theme switcher and dark theme support. */
.nav {
  gap: clamp(12px, 1.6vw, 24px);
}

.site-header {
  z-index: 20;
}

.nav-links {
  margin-left: auto;
}

.theme-switcher {
  height: 38px;
  display: inline-grid;
  grid-template-columns: repeat(3, 32px);
  align-items: center;
  gap: 2px;
  flex: 0 0 auto;
  border-radius: 999px;
  padding: 3px;
  background: rgba(255, 255, 255, 0.68);
  box-shadow:
    0 0 0 1px rgba(12, 118, 200, 0.13),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.theme-choice {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 999px;
  padding: 0;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  transition:
    background-color var(--motion-medium) var(--motion-ease),
    box-shadow var(--motion-medium) var(--motion-ease),
    color var(--motion-fast) var(--motion-ease),
    transform var(--motion-fast) var(--motion-ease);
}

.theme-choice-icon {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.theme-choice:hover {
  color: var(--text);
  transform: translateY(-1px);
}

.theme-choice:active {
  transform: scale(0.94);
}

.theme-choice[aria-pressed="true"] {
  background: rgba(255, 255, 255, 0.94);
  color: var(--text);
  box-shadow:
    0 0 0 1px rgba(12, 118, 200, 0.12),
    0 8px 18px rgba(12, 80, 124, 0.12);
}

.theme-choice:focus-visible {
  outline: 2px solid rgba(12, 118, 200, 0.72);
  outline-offset: 3px;
}

html[data-theme="dark"] {
  color-scheme: dark;
  --bg: #05070a;
  --canvas: #070b11;
  --surface: #0d1219;
  --surface-muted: #101722;
  --surface-raised: #121a25;
  --surface-translucent: rgba(14, 19, 27, 0.82);
  --panel: rgba(14, 19, 27, 0.78);
  --text: #f2f7fb;
  --muted: #9eafc1;
  --subtle: rgba(255, 255, 255, 0.1);
  --faint: rgba(255, 255, 255, 0.055);
  --image-outline: rgba(255, 255, 255, 0.12);
  --accent: #58b7ff;
  --accent-strong: #8bd0ff;
  --logo-top: #a99dff;
  --logo-mid: #837bff;
  --logo-bottom: #58b7ff;
  --accent-soft: rgba(88, 183, 255, 0.12);
  --accent-border: rgba(88, 183, 255, 0.38);
  --history: #f2f7fb;
  --history-soft: rgba(255, 255, 255, 0.075);
  --shadow-ring: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  --shadow-ring-hover: inset 0 0 0 1px rgba(255, 255, 255, 0.14);
}

html[data-theme="dark"],
html[data-theme="dark"] body {
  background: var(--bg);
}

html[data-theme="dark"] .site-canvas {
  background:
    linear-gradient(90deg, rgba(118, 190, 255, 0.085) 1px, transparent 1px) 0 0 / 72px 72px,
    linear-gradient(0deg, rgba(118, 190, 255, 0.06) 1px, transparent 1px) 0 0 / 72px 72px,
    var(--canvas);
}

html[data-theme="dark"] .site-canvas::before,
html[data-theme="dark"] .site-canvas::after,
html[data-theme="dark"] .coming-soon::before {
  display: none;
  background: none;
}

html[data-theme="dark"] .site-header {
  color: var(--text);
  mix-blend-mode: normal;
}

html[data-theme="dark"] .nav-links a,
html[data-theme="dark"] .mobile-nav summary,
html[data-theme="dark"] .mobile-nav-panel a,
html[data-theme="dark"] .site-footer,
html[data-theme="dark"] .site-footer a {
  color: var(--text);
}

html[data-theme="dark"] .coming-soon,
html[data-theme="dark"] .stats,
html[data-theme="dark"] .suite-copy,
html[data-theme="dark"] .suite-lead,
html[data-theme="dark"] .suite-feature-grid div,
html[data-theme="dark"] .suite-icon-row,
html[data-theme="dark"] .privacy-panel,
html[data-theme="dark"] .privacy-links a,
html[data-theme="dark"] .history-editions a,
html[data-theme="dark"] #apps .app-card,
html[data-theme="dark"] .mobile-nav-panel {
  border-color: rgba(255, 255, 255, 0.08);
  background: var(--panel);
  box-shadow: none;
}

html[data-theme="dark"] .suite-showcase {
  border: 0;
  background: transparent;
  box-shadow: none;
}

html[data-theme="dark"] .button-secondary,
html[data-theme="dark"] .deskimia-tags span,
html[data-theme="dark"] .since-2010 {
  background: rgba(255, 255, 255, 0.075);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}

html[data-theme="dark"] .button-secondary,
html[data-theme="dark"] .deskimia-tags span {
  color: var(--text);
}

.hero .button-secondary,
html[data-theme="dark"] .hero .button-secondary {
  background: transparent;
  box-shadow: none;
}

html[data-theme="dark"] .button-primary,
html[data-theme="dark"] .suite-actions .button-primary {
  background: var(--accent);
  color: #03101b;
}

html[data-theme="dark"] .theme-switcher {
  background: rgba(255, 255, 255, 0.06);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}

html[data-theme="dark"] .theme-choice {
  color: var(--muted);
}

html[data-theme="dark"] .theme-choice:hover,
html[data-theme="dark"] .theme-choice[aria-pressed="true"] {
  color: var(--text);
}

html[data-theme="dark"] .theme-choice[aria-pressed="true"] {
  background: rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}

html[data-theme="dark"] .app-icon,
html[data-theme="dark"] .deskimia-icon,
html[data-theme="dark"] .history-editions img,
html[data-theme="dark"] .suite-lead img,
html[data-theme="dark"] .suite-icon-row img {
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.12),
    0 10px 24px rgba(0, 0, 0, 0.28);
}

html[data-theme="dark"] .studio-display-shell {
  filter: drop-shadow(0 22px 38px rgba(0, 0, 0, 0.34));
}

html[data-theme="dark"] .deskimia-preview::after {
  background: rgba(0, 0, 0, 0.36);
}

html[data-theme="dark"] .studio-shell-accent,
html[data-theme="dark"] .studio-shell-metal {
  fill: #b9c1c9;
}

html[data-theme="dark"] .studio-shell-foot {
  fill: #8d969f;
}

html[data-theme="dark"] .studio-shell-body {
  fill: #050608;
}

html[data-theme="dark"] .footer-illustration {
  opacity: 0.36;
  filter: brightness(0.58) saturate(0.76);
}

html[data-theme="dark"] .footer-row p,
html[data-theme="dark"] .footer-row a {
  -webkit-text-stroke: 0;
  text-shadow: none;
}

html[data-theme="dark"] .store-link {
  color: var(--accent-strong);
}

@media (max-width: 760px) {
  .nav {
    gap: 10px;
  }

  .brand {
    min-width: 0;
    gap: 12px;
  }

  .brand span:last-child {
    font-size: clamp(1.28rem, 5.6vw, 1.5rem);
  }

  .theme-switcher {
    margin-left: auto;
    height: 36px;
    grid-template-columns: repeat(3, 30px);
  }

  .theme-choice {
    width: 30px;
    height: 30px;
  }

  .mobile-nav {
    flex: 0 0 auto;
  }

  .mobile-nav summary {
    width: 42px;
    min-width: 42px;
    padding: 0;
    font-size: 0;
  }

  .mobile-nav summary span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip-path: inset(50%);
    white-space: nowrap;
  }

  .mobile-nav summary::before {
    content: "";
    width: 16px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    box-shadow:
      0 -5px 0 currentColor,
      0 5px 0 currentColor;
  }

  .mobile-nav-panel {
    width: min(72vw, 240px);
    z-index: 30;
    background: rgba(255, 255, 255, 0.96);
    box-shadow:
      0 0 0 1px rgba(12, 118, 200, 0.13),
      0 18px 42px rgba(12, 80, 124, 0.18);
  }

  .coming-soon {
    grid-template-columns: minmax(0, 1fr);
    gap: 20px;
    align-items: start;
    overflow: clip;
  }

  .deskimia-copy {
    grid-template-columns: minmax(0, 1fr);
    gap: 14px;
    min-width: 0;
  }

  .deskimia-icon,
  .deskimia-copy .eyebrow,
  .deskimia-copy h2,
  .deskimia-copy p:not(.eyebrow),
  .deskimia-tags {
    grid-column: 1;
    grid-row: auto;
    width: 100%;
    min-width: 0;
    max-width: 100%;
  }

  .deskimia-copy p:not(.eyebrow) {
    white-space: normal;
    word-break: normal;
    overflow-wrap: normal;
  }

  .deskimia-icon {
    width: 64px;
    height: 64px;
    margin-top: 0;
  }

  .deskimia-tags {
    display: flex;
    flex-wrap: wrap;
  }

  .deskimia-tags span {
    flex: 0 1 auto;
    max-width: 100%;
    white-space: normal;
  }

  .deskimia-preview {
    width: 100%;
    max-width: 360px;
    min-height: 0;
    aspect-ratio: 560 / 455;
    justify-self: center;
  }

  .mac-menu-bar {
    gap: 8px;
    padding-inline: 8px;
    font-size: 0.54rem;
  }

  .mac-menu-bar > div {
    gap: 7px;
  }

  .mac-menu-bar > div:first-child span:nth-child(n+3) {
    display: none;
  }

  .mac-wifi-icon,
  .mac-wifi-icon svg {
    width: 14px;
    height: 11px;
  }

  .mac-clock {
    min-width: 11.2ch;
  }
}

html[data-theme="dark"] .mobile-nav-panel {
  background: rgba(14, 19, 27, 0.96);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.12),
    0 18px 42px rgba(0, 0, 0, 0.34);
}

/* Privacy pages: use the same product-site language as the homepage. */
.privacy-page {
  padding-top: clamp(58px, 6vw, 92px);
}

.privacy-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
  align-items: end;
  gap: var(--section-gap);
  padding: clamp(42px, 5vw, 76px) 0 clamp(34px, 4vw, 58px);
}

.privacy-hero::before {
  display: none;
}

.privacy-hero-copy {
  display: grid;
  gap: clamp(15px, 1.8vw, 24px);
  min-width: 0;
}

.privacy-hero h1 {
  max-width: 11ch;
  font-size: clamp(4.35rem, 8.5vw, 9.25rem);
  line-height: 0.9;
}

html[lang="zh-Hans"] .privacy-hero h1 {
  max-width: 8ch;
}

.privacy-lede {
  max-width: 58ch;
  color: var(--muted);
  font-size: var(--type-body-lg);
  line-height: var(--leading-body);
}

.privacy-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: clamp(2px, 0.8vw, 10px);
}

.privacy-status-panel,
.privacy-statement,
.privacy-index nav a,
.privacy-contact {
  border-radius: var(--radius-panel-inner);
  background: rgba(255, 255, 255, 0.7);
  box-shadow: var(--shadow-ring);
}

.privacy-status-panel {
  display: grid;
  align-self: stretch;
  padding: clamp(8px, 1vw, 12px);
}

.privacy-status-row {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: clamp(16px, 1.5vw, 22px);
  align-items: center;
  padding: clamp(16px, 1.8vw, 23px);
}

.privacy-status-row:not(:last-child) {
  border-bottom: 1px solid rgba(12, 118, 200, 0.1);
}

.privacy-status-row > span {
  width: 10px;
  height: 10px;
  justify-self: center;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 5px rgba(12, 118, 200, 0.09);
  font-size: 0;
  line-height: 0;
}

.privacy-status-row strong,
.privacy-statement h2,
.privacy-contact h2,
.privacy-section h2 {
  font-size: clamp(1.06rem, 1vw, 1.2rem);
  font-weight: 760;
  line-height: 1.15;
}

.privacy-statement h2,
.privacy-contact h2 {
  max-width: none;
  text-wrap: pretty;
}

.privacy-status-row p,
.privacy-statement p,
.privacy-contact p,
.privacy-section p {
  color: var(--muted);
  line-height: var(--leading-body);
}

.privacy-status-row p {
  margin-top: 5px;
}

.privacy-statement-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--compact-gap);
  margin: 0 0 var(--block-gap);
}

.privacy-statement {
  min-height: clamp(150px, 12vw, 190px);
  display: grid;
  align-content: start;
  gap: 10px;
  padding: var(--card-padding);
}

.privacy-content {
  display: grid;
  grid-template-columns: minmax(210px, 0.34fr) minmax(0, 1fr);
  gap: var(--section-gap);
  align-items: start;
  padding: clamp(20px, 2vw, 30px) 0 var(--section-space);
}

.privacy-index {
  position: sticky;
  top: clamp(84px, 8vw, 116px);
  display: grid;
  gap: 14px;
}

.privacy-index nav {
  display: grid;
  gap: 8px;
}

.privacy-index nav a {
  min-height: 44px;
  display: flex;
  align-items: center;
  padding: 0 14px;
  color: var(--text);
  font-size: var(--type-ui);
  font-weight: 650;
}

.privacy-index nav a:hover,
.privacy-article a:hover {
  color: var(--accent);
}

.privacy-contact {
  display: grid;
  gap: 9px;
  padding: var(--card-padding);
}

.privacy-contact a,
.privacy-article a {
  color: var(--accent);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

.privacy-contact .privacy-email {
  display: inline;
  min-height: 0;
  padding: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  font-weight: 760;
}

.privacy-article {
  display: grid;
  gap: 0;
}

.privacy-section {
  display: grid;
  grid-template-columns: minmax(170px, 0.33fr) minmax(0, 1fr);
  gap: clamp(18px, 3vw, 48px);
  padding: clamp(26px, 3vw, 42px) 0;
  border-top: 1px solid rgba(12, 118, 200, 0.13);
}

.privacy-section:last-child {
  border-bottom: 1px solid rgba(12, 118, 200, 0.13);
}

.privacy-section h2 {
  max-width: 14ch;
}

.privacy-section p {
  max-width: 70ch;
}

html[data-theme="dark"] .privacy-status-panel,
html[data-theme="dark"] .privacy-statement,
html[data-theme="dark"] .privacy-index nav a,
html[data-theme="dark"] .privacy-contact {
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: var(--panel);
  box-shadow: none;
}

html[data-theme="dark"] .privacy-status-row:not(:last-child),
html[data-theme="dark"] .privacy-section,
html[data-theme="dark"] .privacy-section:last-child {
  border-color: rgba(255, 255, 255, 0.1);
}

html[data-theme="dark"] .privacy-status-row > span {
  box-shadow: 0 0 0 5px rgba(88, 183, 255, 0.12);
}

html[data-theme="dark"] .privacy-contact a,
html[data-theme="dark"] .privacy-article a {
  color: var(--accent-strong);
}

@media (max-width: 900px) {
  .privacy-hero,
  .privacy-content {
    grid-template-columns: minmax(0, 1fr);
  }

  .privacy-status-panel {
    align-self: auto;
  }

  .privacy-statement-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .privacy-index {
    position: static;
  }

  .privacy-index nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .privacy-page {
    padding-top: 24px;
  }

  .privacy-hero {
    gap: 22px;
    padding: 28px 0 24px;
  }

  .privacy-hero::before {
    top: 14%;
    right: 13%;
  }

  .privacy-hero h1 {
    max-width: 10ch;
    font-size: clamp(3.3rem, 15vw, 4.4rem);
  }

  html[lang="zh-Hans"] .privacy-hero h1 {
    max-width: 7ch;
  }

  .privacy-actions {
    gap: 8px;
  }

  .privacy-status-row {
    padding: 16px 14px;
  }

  .privacy-statement {
    min-height: 0;
  }

  .privacy-content {
    gap: 22px;
    padding-top: 0;
  }

  .privacy-index nav,
  .privacy-section {
    grid-template-columns: minmax(0, 1fr);
  }

  .privacy-section {
    gap: 10px;
    padding: 24px 0;
  }

  .privacy-section h2 {
    max-width: none;
  }
}

@keyframes monitor-wallpaper-drift {
  from {
    transform: translate3d(var(--wallpaper-x-from), var(--wallpaper-y-from), 0) rotate(-8deg) scale(var(--wallpaper-scale));
  }

  to {
    transform: translate3d(var(--wallpaper-x-to), var(--wallpaper-y-to), 0) rotate(-8deg) scale(var(--wallpaper-scale));
  }
}

@keyframes monitor-wave-motion {
  0% {
    border-radius: 44% 56% 48% 52% / 48% 44% 56% 52%;
    transform: translate3d(var(--wallpaper-x-from), var(--wallpaper-y-from), 0) rotate(-8deg) scale(var(--wallpaper-scale)) skewX(-1deg);
  }

  50% {
    border-radius: 52% 48% 55% 45% / 43% 55% 45% 57%;
    transform: translate3d(calc((var(--wallpaper-x-from) + var(--wallpaper-x-to)) / 2), calc((var(--wallpaper-y-from) + var(--wallpaper-y-to)) / 2), 0) rotate(-7.5deg) scale(calc(var(--wallpaper-scale) + 0.015)) skewX(1.2deg);
  }

  100% {
    border-radius: 58% 42% 50% 50% / 56% 46% 54% 44%;
    transform: translate3d(var(--wallpaper-x-to), var(--wallpaper-y-to), 0) rotate(-8deg) scale(var(--wallpaper-scale)) skewX(0.4deg);
  }
}

@keyframes monitor-glow-drift {
  to {
    transform: translate3d(7%, -5%, 0) scale(1.04);
  }
}

@keyframes monitor-sheen-sweep {
  0%,
  38% {
    opacity: 0;
    transform: translate3d(-70%, 0, 0);
  }

  52% {
    opacity: 0.16;
  }

  78%,
  100% {
    opacity: 0;
    transform: translate3d(70%, 0, 0);
  }
}
