:root {
  color-scheme: light;
  --background: #f4f7f3;
  --surface: #ffffff;
  --surface-soft: #e8efe9;
  --ink: #13231d;
  --muted: #5c6c65;
  --line: #ced9d2;
  --accent: #176448;
  --accent-bright: #d8f064;
  --radius: 28px;
  --shadow: 0 24px 70px rgba(21, 55, 42, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--background);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

.site-header,
main,
footer {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.site-header {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.wordmark,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
}

.wordmark img,
.footer-brand img {
  border-radius: 8px;
}

nav {
  display: flex;
  align-items: center;
  gap: 26px;
  color: var(--muted);
  font-size: 14px;
}

nav a,
.footer-links a {
  text-decoration: none;
}

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

.language-toggle {
  min-width: 48px;
  height: 32px;
  padding: 0 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.5);
  color: var(--ink);
  font: inherit;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
}

.language-toggle:hover,
.language-toggle:focus-visible {
  border-color: var(--accent);
  outline: none;
}

.hero {
  min-height: 680px;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  align-items: center;
  gap: 72px;
  padding: 64px 0 96px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 28px;
  font-size: clamp(56px, 7vw, 94px);
  font-weight: 760;
  letter-spacing: -0.065em;
  line-height: 0.96;
}

.intro {
  max-width: 630px;
  margin-bottom: 32px;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 650;
  text-decoration: none;
}

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

.button-secondary {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.45);
}

.button-secondary:hover {
  border-color: var(--accent);
}

.requirements {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.store-status {
  margin: 16px 0 0;
  color: var(--accent);
  font-size: 13px;
  font-weight: 650;
}

.hero-visual {
  position: relative;
  min-height: 480px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(23, 100, 72, 0.15);
  border-radius: 46px;
  background:
    radial-gradient(circle at 70% 18%, rgba(216, 240, 100, 0.72), transparent 32%),
    linear-gradient(145deg, #dce9de, #b9d2c2);
}

.hero-visual::before,
.hero-visual::after {
  position: absolute;
  content: "";
  border: 1px solid rgba(23, 100, 72, 0.14);
  border-radius: 50%;
}

.hero-visual::before {
  width: 430px;
  height: 430px;
}

.hero-visual::after {
  width: 300px;
  height: 300px;
}

.app-icon-wrap {
  position: relative;
  z-index: 1;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 42px;
  background: rgba(255, 255, 255, 0.26);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.app-icon-wrap img {
  border-radius: 38px;
}

.menu-demo {
  position: absolute;
  right: 28px;
  bottom: 28px;
  left: 28px;
  z-index: 2;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.66);
  box-shadow: 0 14px 36px rgba(20, 54, 41, 0.12);
  backdrop-filter: blur(18px);
}

.menu-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #769286;
}

.divider {
  width: 1px;
  height: 22px;
  margin: 0 4px;
  background: #86a194;
}

.quiet-mark {
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: white;
  font-size: 12px;
  font-weight: 800;
}

.proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.proof div {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 28px 32px;
}

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

.proof strong {
  font-size: 15px;
}

.proof span {
  color: var(--muted);
  font-size: 13px;
}

.interactive-demo {
  padding-bottom: 70px;
}

.demo-heading {
  margin-bottom: 44px;
}

.demo-shell {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 32px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.demo-toolbar,
.demo-guide {
  min-height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 12px 18px;
}

.demo-toolbar {
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
}

.demo-toolbar > span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 650;
}

.demo-toolbar i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #32b777;
  box-shadow: 0 0 0 4px rgba(50, 183, 119, 0.13);
}

.demo-toolbar > div,
.demo-guide > div {
  display: flex;
  gap: 8px;
}

.demo-toolbar button,
.demo-guide button,
.panel-settings-button,
.quietbar-trigger {
  border: 0;
  font: inherit;
  cursor: pointer;
}

.demo-text-button,
.demo-zoom-button,
.demo-guide button {
  min-height: 38px;
  padding: 0 15px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 680;
}

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

.demo-zoom-button,
.demo-guide button {
  background: var(--ink);
  color: white;
}

.mac-stage {
  height: 590px;
  overflow: hidden;
  background: #dce6e1;
}

.mac-desktop {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background:
    radial-gradient(circle at 76% 70%, rgba(216, 240, 100, 0.65), transparent 22%),
    linear-gradient(145deg, #dfe9e4, #bfd2c8);
  transform-origin: 50% 0;
  transition: transform 750ms cubic-bezier(0.22, 1, 0.36, 1);
}

.mac-stage.is-zoomed .mac-desktop {
  transform: scale(1.08);
}

.mac-menu-bar {
  position: relative;
  z-index: 4;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 15px;
  background: rgba(20, 24, 22, 0.96);
  color: white;
  font-size: 12px;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.12);
}

.mac-menu-left,
.mac-menu-right {
  display: flex;
  align-items: center;
  gap: 14px;
  white-space: nowrap;
}

.apple-mark {
  color: white;
  font-size: 15px;
}

.mac-menu-right {
  gap: 9px;
}

.compacted-icons {
  max-width: 0;
  display: flex;
  align-items: center;
  gap: 7px;
  overflow: hidden;
  opacity: 0;
  transform: translateX(12px);
  transition: max-width 450ms ease, opacity 250ms ease, transform 450ms ease;
}

.compacted-icons.is-visible {
  max-width: 126px;
  opacity: 1;
  transform: translateX(0);
}

.mini-app {
  width: 21px;
  height: 21px;
  flex: 0 0 21px;
  display: inline-grid;
  place-items: center;
  border-radius: 6px;
  color: white;
  font-size: 10px;
  font-weight: 800;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.14);
}

.chatgpt { background: #202725; }
.figma { background: linear-gradient(145deg, #ff7262 0 35%, #a259ff 35% 66%, #1abcfe 66%); }
.xcode { background: linear-gradient(145deg, #6dd6ff, #1678e7); }
.zoom { background: #2d8cff; }

.mac-divider {
  width: 1px;
  height: 22px;
  background: rgba(255, 255, 255, 0.42);
}

.quietbar-trigger {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  padding: 3px;
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.14);
  transition: background 180ms ease, transform 180ms ease;
}

.quietbar-trigger:hover,
.quietbar-trigger:focus-visible {
  background: rgba(255, 255, 255, 0.28);
  outline: 2px solid var(--accent-bright);
  outline-offset: 2px;
}

.quietbar-trigger:active {
  transform: scale(0.92);
}

.quietbar-trigger img {
  border-radius: 5px;
}

.system-item {
  font-weight: 650;
}

.desktop-content {
  position: absolute;
  inset: 38px 0 0;
}

.desktop-card {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.24);
  box-shadow: 0 28px 70px rgba(30, 61, 49, 0.1);
  backdrop-filter: blur(18px);
}

.desktop-card-large {
  width: 52%;
  height: 58%;
  right: 8%;
  bottom: 9%;
}

.desktop-card-small {
  width: 23%;
  height: 28%;
  left: 10%;
  bottom: 18%;
}

.desktop-content p {
  position: absolute;
  top: 24%;
  left: 10%;
  color: rgba(19, 35, 29, 0.72);
  font-size: clamp(30px, 4vw, 62px);
  font-weight: 760;
  letter-spacing: -0.05em;
}

.quietbar-panel {
  position: absolute;
  top: 50px;
  right: 14px;
  z-index: 5;
  width: 300px;
  overflow: hidden;
  padding: 14px;
  border: 1px solid rgba(16, 32, 26, 0.14);
  border-radius: 16px;
  background: rgba(250, 252, 251, 0.96);
  color: #17231e;
  box-shadow: 0 26px 70px rgba(9, 31, 22, 0.28);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px) scale(0.96);
  transform-origin: top right;
  transition: opacity 180ms ease, transform 220ms ease;
}

.quietbar-panel.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.mac-stage.is-zoomed .quietbar-panel {
  right: 42px;
  transform: translateY(-8px);
}

.mac-stage.is-zoomed .quietbar-panel.is-visible {
  transform: translateY(0);
}

.panel-header,
.panel-title,
.panel-status,
.panel-footer,
.panel-settings label {
  display: flex;
  align-items: center;
}

.panel-header {
  justify-content: space-between;
  margin-bottom: 13px;
}

.panel-title {
  gap: 9px;
  font-size: 16px;
}

.panel-title img {
  border-radius: 8px;
}

.panel-settings-button {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: #edf2ef;
  color: #45564f;
}

.panel-status {
  min-height: 52px;
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 8px;
  padding: 10px;
  border-radius: 10px;
  background: #eaf1ed;
  font-size: 12px;
  line-height: 1.2;
}

.panel-status-dot {
  grid-row: span 2;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}

.panel-status small {
  color: #67766f;
  font-size: 10px;
}

.recognized-apps {
  margin: 10px 0;
  padding: 4px 0;
  border-bottom: 1px solid #dce3df;
  list-style: none;
}

.recognized-apps li {
  min-height: 34px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
}

.recognized-apps .mini-app {
  width: 19px;
  height: 19px;
  flex-basis: 19px;
}

.panel-footer {
  justify-content: space-between;
  font-size: 11px;
}

.switch {
  width: 30px;
  height: 18px;
  display: inline-block;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: inset -12px 0 0 2px white;
}

.panel-settings {
  min-height: 213px;
  padding-top: 3px;
  font-size: 11px;
}

.panel-settings label {
  min-height: 42px;
  justify-content: space-between;
  gap: 8px;
  border-bottom: 1px solid #e2e8e5;
}

.panel-settings label:first-child {
  justify-content: flex-start;
}

.panel-settings input {
  accent-color: var(--accent);
}

.panel-settings select,
.panel-settings kbd {
  padding: 5px 7px;
  border: 1px solid #d3dcd7;
  border-radius: 7px;
  background: white;
  color: inherit;
  font: inherit;
}

.panel-settings p {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.35;
}

.panel-settings p strong {
  color: var(--accent);
}

.demo-guide {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  border-top: 1px solid var(--line);
}

.demo-guide p {
  grid-column: 2;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  text-align: center;
  white-space: nowrap;
  font-size: 13px;
}

.demo-guide > div {
  grid-column: 3;
  justify-self: end;
}

.demo-guide p span {
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--surface-soft);
  color: var(--accent);
  font-size: 11px;
}

.product-film {
  display: grid;
  grid-template-columns: 0.68fr 1.32fr;
  align-items: center;
  gap: 72px;
}

.product-film-copy h2 {
  margin-bottom: 22px;
  font-size: clamp(38px, 5vw, 62px);
  letter-spacing: -0.045em;
  line-height: 1.04;
}

.product-film-copy > p:last-child {
  color: var(--muted);
  font-size: 18px;
}

.product-film-frame {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--surface-soft);
  box-shadow: var(--shadow);
}

.product-film video {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 16 / 9;
  background: var(--surface-soft);
}

.section {
  padding: 150px 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 64px;
}

.section h2,
.showcase h2,
.support h2,
.legal-page h1 {
  margin-bottom: 22px;
  font-size: clamp(38px, 5vw, 62px);
  letter-spacing: -0.045em;
  line-height: 1.04;
}

.section-heading > p:last-child,
.showcase-copy > p:last-child,
.support p,
.legal-page p {
  color: var(--muted);
  font-size: 18px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

.feature-grid article {
  min-height: 300px;
  padding: 38px;
  background: var(--surface);
}

.feature-number {
  color: var(--accent);
  font-size: 12px;
  font-weight: 750;
}

.feature-grid h3 {
  margin: 92px 0 10px;
  font-size: 24px;
  letter-spacing: -0.025em;
}

.feature-grid p {
  max-width: 450px;
  margin-bottom: 0;
  color: var(--muted);
}

.showcase {
  width: 100%;
  max-width: none;
  padding: 140px max(24px, calc((100vw - 1180px) / 2));
  background: var(--ink);
  color: white;
}

.showcase-row {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  align-items: center;
  gap: 80px;
}

.showcase-row + .showcase-row {
  margin-top: 150px;
}

.showcase-row.reverse {
  grid-template-columns: 1.28fr 0.72fr;
}

.showcase-row.reverse .showcase-copy {
  order: 2;
}

.showcase .eyebrow {
  color: var(--accent-bright);
}

.showcase-copy > p:last-child {
  color: #b7c5bf;
}

.screenshot-frame {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 24px;
  background: #263b32;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.38);
}

.steps ol {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 0;
  list-style: none;
}

.steps li {
  min-height: 255px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--surface);
}

.steps li > span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--accent);
  color: white;
  font-size: 13px;
  font-weight: 700;
}

.steps h3 {
  margin-bottom: 8px;
  font-size: 20px;
}

.steps li p {
  margin-bottom: 0;
  color: var(--muted);
}

.permission-note {
  margin: 32px 0 0;
  padding: 24px 28px;
  border-left: 3px solid var(--accent);
  background: var(--surface-soft);
  color: var(--muted);
}

.download-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 36px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--surface-soft);
}

.download-card strong {
  font-size: 22px;
}

.download-card p {
  max-width: 650px;
  margin: 8px 0 0;
  color: var(--muted);
}

.install-steps {
  margin: 32px 0 0;
  padding-left: 22px;
  color: var(--muted);
  line-height: 1.8;
}

.release-links {
  margin: 22px 0 0;
}

.release-links a {
  color: var(--accent);
  font-weight: 650;
}

.support {
  margin-bottom: 120px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  padding: 64px;
  border-radius: 34px;
  background: var(--accent);
  color: white;
}

.support .eyebrow {
  color: var(--accent-bright);
}

.support h2 {
  margin-bottom: 12px;
}

.support p {
  max-width: 620px;
  margin-bottom: 0;
  color: #d5e4dc;
}

.button-light {
  flex: 0 0 auto;
  background: white;
  color: var(--accent);
}

footer {
  min-height: 110px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
}

.footer-links {
  display: flex;
  gap: 22px;
}

footer > p {
  margin: 0;
  text-align: right;
}

.legal-page {
  max-width: 880px;
  padding: 110px 0 150px;
}

.legal-page > header {
  margin-bottom: 80px;
}

.legal-page section {
  padding: 52px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.legal-page h2 {
  margin: 48px 0 10px;
  font-size: 22px;
}

.legal-page h2:first-child {
  margin-top: 0;
}

@media (max-width: 900px) {
  nav {
    gap: 16px;
  }

  nav a:nth-child(-n + 2) {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 54px;
  }

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

  .showcase-row,
  .showcase-row.reverse {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .showcase-row.reverse .showcase-copy {
    order: 0;
  }

  .product-film {
    grid-template-columns: 1fr;
    gap: 42px;
  }

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

  .steps li {
    min-height: 210px;
  }

  .mac-stage {
    height: 510px;
  }

  .mac-stage.is-zoomed .mac-desktop {
    transform: scale(1.05);
  }
}

@media (max-width: 680px) {
  .site-header,
  main,
  footer {
    width: min(100% - 28px, 1180px);
  }

  .site-header {
    min-height: 72px;
  }

  nav {
    gap: 14px;
  }

  .language-toggle {
    min-width: 44px;
    padding-inline: 9px;
  }

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

  h1 {
    font-size: clamp(48px, 15vw, 68px);
  }

  .intro {
    font-size: 18px;
  }

  .hero-visual {
    min-height: 390px;
  }

  .app-icon-wrap img {
    width: 140px;
    height: 140px;
  }

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

  .proof div {
    padding-inline: 20px;
  }

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

  .interactive-demo {
    padding-bottom: 40px;
  }

  .demo-toolbar,
  .demo-guide {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    padding: 14px;
  }

  .demo-guide p {
    width: 100%;
    white-space: normal;
  }

  .demo-toolbar > div,
  .demo-guide > div {
    width: 100%;
  }

  .demo-toolbar button,
  .demo-guide button {
    flex: 1;
  }

  .mac-stage {
    height: 430px;
  }

  .mac-desktop {
    width: 100%;
    transform-origin: 50% 0;
  }

  .mac-stage.is-zoomed .mac-desktop {
    transform: scale(1.02);
  }

  .mac-menu-left span:not(.apple-mark),
  .mac-menu-left strong {
    display: none;
  }

  .quietbar-panel {
    right: 10px;
  }

  .mac-stage.is-zoomed .quietbar-panel,
  .mac-stage.is-zoomed .quietbar-panel.is-visible {
    right: 10px;
  }

  .section {
    padding: 105px 0;
  }

  .download-card {
    align-items: stretch;
    flex-direction: column;
    padding: 26px;
  }

  .download-card .button {
    width: 100%;
  }

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

  .feature-grid article {
    min-height: 250px;
    padding: 28px;
  }

  .feature-grid h3 {
    margin-top: 62px;
  }

  .showcase {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .showcase-row + .showcase-row {
    margin-top: 100px;
  }

  .support {
    margin-bottom: 80px;
    align-items: flex-start;
    flex-direction: column;
    padding: 38px 28px;
  }

  footer {
    min-height: 180px;
    grid-template-columns: 1fr;
    align-content: center;
  }

  footer > p {
    text-align: left;
  }

  .legal-page {
    padding: 80px 0 100px;
  }

  .legal-page section {
    padding: 30px 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .mac-desktop,
  .compacted-icons,
  .quietbar-panel,
  .quietbar-trigger {
    transition: none;
  }
}
