:root {
  color-scheme: light;
  --ink: #101114;
  --ink-soft: #2d3036;
  --muted: #686d76;
  --paper: #fffaf0;
  --paper-blue: #eef8ff;
  --white: #ffffff;
  --line: rgba(31, 33, 38, 0.14);
  --line-strong: rgba(31, 33, 38, 0.24);
  --amber: #ffb000;
  --amber-deep: #d87000;
  --blue: #2878ff;
  --green: #16b879;
  --pink: #ff5a87;
  --violet: #7d5cff;
  --shadow-soft: 0 24px 70px rgba(23, 26, 34, 0.14);
  --shadow-heavy: 0 36px 120px rgba(16, 17, 20, 0.28);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(255, 176, 0, 0.2) 0%, rgba(255, 250, 240, 0.98) 30%, rgba(247, 252, 255, 0.96) 68%, #ffffff 100%);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background: linear-gradient(180deg, rgba(255, 176, 0, 0.18), rgba(255, 176, 0, 0) 48%);
}

body::after {
  display: none;
  content: none;
}

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

button,
input,
textarea,
select {
  font: inherit;
}

button {
  color: inherit;
}

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

.site-header,
.hero,
.proof-strip,
.product-demo,
.features,
.testimonials,
.download-panel,
.site-footer {
  width: min(1180px, calc(100% - 48px));
  margin-right: auto;
  margin-left: auto;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
}

.brand,
.site-header nav,
.site-footer {
  display: flex;
  align-items: center;
}

.brand {
  gap: 12px;
  font-size: 20px;
  font-weight: 820;
}

.brand img {
  width: 38px;
  height: 38px;
  border-radius: 9px;
  box-shadow: 0 12px 34px rgba(16, 17, 20, 0.2);
}

.site-header nav {
  gap: 22px;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 720;
}

.site-header nav a {
  opacity: 0.74;
  transition: opacity 160ms ease, color 160ms ease;
}

.site-header nav a:hover,
.site-footer a:hover {
  color: var(--ink);
  opacity: 1;
}

.hero {
  position: relative;
  padding: 46px 0 44px;
  text-align: center;
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 830px;
  margin: 0 auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 18px;
  padding: 8px 15px;
  color: #8c4d00;
  border: 1px solid rgba(255, 176, 0, 0.38);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 10px 26px rgba(255, 176, 0, 0.12);
  font-size: 13px;
  font-weight: 820;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.eyebrow::before {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  content: "";
  background: var(--amber);
  box-shadow: 0 0 0 5px rgba(255, 176, 0, 0.16);
}

h1 {
  margin-bottom: 16px;
  font-size: clamp(76px, 12vw, 132px);
  line-height: 0.82;
  letter-spacing: 0;
}

.lede {
  max-width: 920px;
  margin: 0 auto;
  color: var(--ink-soft);
  font-size: clamp(20px, 2.55vw, 28px);
  line-height: 1.33;
}

.hero-actions,
.download-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.hero-actions {
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border: 0;
  border-radius: 999px;
  font-weight: 820;
  box-shadow: 0 14px 36px rgba(16, 17, 20, 0.11);
  transition: transform 170ms ease, box-shadow 170ms ease, border-color 170ms ease, background 170ms ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 46px rgba(16, 17, 20, 0.16);
}

.button.primary {
  color: #ffffff;
  background: linear-gradient(180deg, #202124, #050507);
}

.button.secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.74);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.install-line {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  align-items: center;
  justify-content: center;
  max-width: 720px;
  margin-top: 18px;
  padding: 11px 15px;
  color: var(--muted);
  border: 0;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 14px 42px rgba(16, 17, 20, 0.08);
  cursor: pointer;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.install-line:focus-visible {
  outline: 3px solid rgba(40, 120, 255, 0.28);
  outline-offset: 3px;
}

.install-line span {
  color: #8c4d00;
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.install-line code {
  color: var(--ink);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-size: 13px;
  overflow-wrap: anywhere;
}

.copy-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 58px;
  min-height: 28px;
  padding: 0 12px;
  border-radius: 999px;
  color: #ffffff;
  background: #101114;
  font-size: 12px;
  font-weight: 820;
}

.macbook-stage {
  position: relative;
  z-index: 1;
  margin: 34px auto 0;
}

.macbook {
  width: min(940px, 100%);
  margin: 0 auto;
  animation: float-device 8s ease-in-out infinite;
}

.macbook-lid {
  position: relative;
  width: 78%;
  margin: 0 auto;
  padding: 7px;
  border: 0;
  border-radius: 18px 18px 4px 4px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.16), transparent 28%),
    linear-gradient(180deg, #121722, #050609 84%);
  box-shadow: 0 34px 100px rgba(16, 17, 20, 0.24);
}

.screen {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 11px 11px 3px 3px;
  background: #05070b;
}

.camera {
  position: absolute;
  top: 8px;
  left: 50%;
  z-index: 5;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #171d29;
  box-shadow: inset 0 0 0 2px #07090e;
  transform: translateX(-50%);
}

.desktop-scene {
  position: relative;
  overflow: hidden;
  height: 100%;
  color: #f7f7f5;
  background:
    linear-gradient(135deg, rgba(255, 176, 0, 0.9) 0 15%, transparent 15.2%),
    linear-gradient(150deg, #0f1726 0 35%, #243a59 35.1% 59%, #f4f7f9 59.2% 100%);
}

.desktop-scene::before {
  display: none;
  content: none;
}

.menu-bar {
  position: relative;
  z-index: 8;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 28px;
  padding: 0 14px;
  color: #15171b;
  background: rgba(250, 252, 255, 0.74);
  border-bottom: 1px solid rgba(255, 255, 255, 0.34);
  font-size: 11px;
  font-weight: 680;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.menu-left,
.menu-right {
  display: flex;
  align-items: center;
  gap: 13px;
}

.menu-right {
  gap: 11px;
}

.menu-bar-clack {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 25px;
  height: 22px;
  padding: 0;
  border: 0;
  border-radius: 6px;
  background: rgba(16, 17, 20, 0.16);
}

.menu-bar-clack img {
  width: 15px;
  height: 15px;
  filter: grayscale(1) brightness(0.08);
}

.desktop-notes {
  position: absolute;
  right: 22px;
  bottom: 22px;
  left: 22px;
  display: flex;
  gap: 10px;
  align-items: flex-end;
}

.note {
  display: inline-flex;
  min-width: 82px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  color: #0c1016;
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.24);
  transform: rotate(-2deg);
}

.note-blue {
  background: #8fc8ff;
  transform: translateY(-20px) rotate(2deg);
}

.note-green {
  background: #8ff0bd;
  transform: translateY(-5px) rotate(-1deg);
}

.note-amber {
  background: #ffd46b;
}

.clack-menu,
.hover-preview {
  border: 0;
  background: rgba(246, 248, 249, 0.78);
  box-shadow: 0 24px 74px rgba(10, 12, 16, 0.27);
  backdrop-filter: blur(28px) saturate(1.12);
  -webkit-backdrop-filter: blur(28px) saturate(1.12);
}

.clack-menu {
  overflow: hidden;
  color: #45484e;
  border-radius: 14px;
  text-align: left;
}

.hero-menu {
  position: absolute;
  top: 40px;
  right: 28px;
  z-index: 6;
  width: 46%;
  animation: menu-drop 420ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.hero-menu::before {
  position: absolute;
  top: -9px;
  right: 24%;
  width: 18px;
  height: 18px;
  content: "";
  border: 0;
  background: rgba(246, 248, 249, 0.78);
  transform: rotate(45deg);
}

.hero-menu .clack-header {
  grid-template-columns: clamp(34px, 7vw, 58px) minmax(0, 1fr);
  gap: clamp(4px, 0.8vw, 8px);
  padding: clamp(4px, 0.9vw, 7px) clamp(5px, 1.2vw, 10px);
}

.hero-menu .clack-header strong,
.hero-menu .row-text,
.hero-menu .clack-footer button {
  font-size: clamp(7px, 1.08vw, 13px);
}

.hero-menu .clack-search {
  height: clamp(13px, 1.9vw, 22px);
  gap: clamp(3px, 0.6vw, 6px);
  padding: 0 clamp(4px, 0.9vw, 8px);
  font-size: clamp(7px, 1vw, 12px);
  border-radius: clamp(4px, 0.8vw, 7px);
}

.hero-menu .clack-search img {
  width: clamp(7px, 1.1vw, 13px);
  height: clamp(7px, 1.1vw, 13px);
}

.hero-menu .clack-row {
  min-height: clamp(16px, 2.45vw, 28px);
  gap: clamp(4px, 0.8vw, 8px);
  padding: 0 clamp(5px, 1.1vw, 10px);
}

.hero-menu .image-row {
  min-height: clamp(20px, 3.2vw, 38px);
}

.hero-menu .image-thumb {
  width: clamp(18px, 2.9vw, 32px);
  height: clamp(16px, 2.5vw, 28px);
  border-radius: clamp(2px, 0.4vw, 4px);
}

.hero-menu .row-dot {
  width: clamp(4px, 0.7vw, 7px);
  height: clamp(4px, 0.7vw, 7px);
}

.hero-menu kbd {
  font-size: clamp(7px, 1vw, 12px);
}

.hero-menu .clack-footer {
  padding: clamp(3px, 0.8vw, 7px) 0;
}

.hero-menu .clack-footer button {
  height: clamp(16px, 2.35vw, 27px);
  padding: 0 clamp(5px, 1.1vw, 10px);
}

.clack-header {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 8px;
  align-items: center;
  padding: 7px 10px;
  border-bottom: 1px solid rgba(105, 110, 118, 0.22);
}

.clack-header strong {
  overflow: hidden;
  color: #373a40;
  font-size: 13px;
  font-weight: 760;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.clack-search {
  display: flex;
  height: 22px;
  align-items: center;
  gap: 6px;
  min-width: 0;
  padding: 0 8px;
  color: rgba(69, 72, 78, 0.52);
  border: 1px solid rgba(100, 105, 112, 0.12);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.42);
  font-size: 12px;
}

.clack-search img {
  width: 13px;
  height: 13px;
  flex: 0 0 auto;
  filter: grayscale(1) brightness(0.45);
}

.clack-row {
  position: relative;
  display: flex;
  width: 100%;
  min-height: 28px;
  align-items: center;
  gap: 8px;
  padding: 0 10px;
  border: 0;
  border-top: 1px solid rgba(105, 110, 118, 0.22);
  background: transparent;
  color: #44474d;
  text-align: left;
  cursor: pointer;
  transition: background 150ms ease, color 150ms ease;
}

.clack-row:hover,
.clack-row.is-active {
  background: rgba(40, 120, 255, 0.18);
  color: #1f2733;
}

.row-dot {
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #4c515a;
}

.row-text {
  overflow: hidden;
  min-width: 0;
  flex: 1 1 auto;
  color: inherit;
  font-size: 13px;
  line-height: 1;
  text-overflow: ellipsis;
  white-space: nowrap;
}

kbd {
  flex: 0 0 auto;
  color: rgba(69, 72, 78, 0.74);
  font-family: inherit;
  font-size: 12px;
  font-weight: 690;
  white-space: nowrap;
}

.image-row {
  min-height: 38px;
}

.image-thumb {
  display: block;
  width: 32px;
  height: 28px;
  flex: 0 0 auto;
  overflow: hidden;
  border: 1px solid rgba(74, 78, 86, 0.26);
  border-radius: 4px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.34), transparent 44%),
    linear-gradient(140deg, #f6c867 0 34%, #253044 34.4% 61%, #f4f5f2 61.4% 100%);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.22);
}

.photo-thumb {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.35), transparent 40%),
    linear-gradient(142deg, #ffb000 0 28%, #ff5a87 28.3% 46%, #2878ff 46.4% 70%, #16b879 70.4% 100%);
}

.clack-footer {
  padding: 7px 0;
  border-top: 1px solid rgba(105, 110, 118, 0.24);
}

.clack-footer button {
  display: flex;
  width: 100%;
  height: 27px;
  align-items: center;
  justify-content: space-between;
  padding: 0 10px;
  border: 0;
  background: transparent;
  color: #45484e;
  cursor: pointer;
  font-size: 13px;
  text-align: left;
}

.clack-footer button:hover {
  background: rgba(40, 120, 255, 0.14);
}

.hover-preview {
  color: #474a51;
  border-radius: 14px;
  text-align: left;
}

.hero-preview {
  position: absolute;
  top: 54px;
  right: calc(46% + 40px);
  z-index: 5;
  width: 232px;
  padding: 11px;
  animation: preview-in 430ms 80ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.hero-preview::after,
.demo-preview::after {
  position: absolute;
  top: 38px;
  right: -9px;
  width: 18px;
  height: 18px;
  content: "";
  border: 0;
  background: rgba(246, 248, 249, 0.78);
  transform: rotate(45deg);
}

.preview-content {
  display: flex;
  min-height: 88px;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 12px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.56);
  color: #4b4f57;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-size: 13px;
  line-height: 1.33;
}

.code-preview {
  white-space: pre-wrap;
}

.image-preview {
  align-items: center;
  justify-content: center;
}

.large-image-thumb {
  display: block;
  width: 150px;
  height: 92px;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.42), transparent 40%),
    linear-gradient(142deg, #ffb000 0 28%, #ff5a87 28.3% 46%, #2878ff 46.4% 70%, #16b879 70.4% 100%);
  box-shadow: inset 0 0 0 1px rgba(16, 17, 20, 0.16);
}

dl {
  margin: 0;
}

.hover-preview dl {
  margin-top: 12px;
  padding-top: 10px;
  border-top: 1px solid rgba(105, 110, 118, 0.25);
}

.hover-preview dl div {
  display: grid;
  grid-template-columns: 94px 1fr;
  gap: 10px;
  padding: 3px 0;
  font-size: 12px;
}

dt {
  color: rgba(69, 72, 78, 0.72);
}

dd {
  margin: 0;
}

.hover-preview p {
  margin: 10px 0 0;
  color: rgba(69, 72, 78, 0.72);
  font-size: 11px;
}

.hover-preview p + p {
  margin-top: 4px;
}

.macbook-base {
  position: relative;
  width: 96%;
  height: 36px;
  margin: -1px auto 0;
  border-radius: 4px 4px 52px 52px;
  background:
    linear-gradient(180deg, #f5f8fb 0%, #aeb9c6 46%, #596778 100%);
  box-shadow: 0 24px 48px rgba(16, 17, 20, 0.18);
  clip-path: polygon(7% 0, 93% 0, 100% 66%, 96% 100%, 4% 100%, 0 66%);
}

.macbook-base::before {
  position: absolute;
  top: 0;
  left: 50%;
  width: 168px;
  height: 9px;
  content: "";
  border-radius: 0 0 18px 18px;
  background: rgba(58, 66, 77, 0.32);
  transform: translateX(-50%);
}

.macbook-base span {
  position: absolute;
  right: 8%;
  bottom: 2px;
  left: 8%;
  height: 3px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.45);
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 10px;
  padding-bottom: 84px;
}

.proof-strip article {
  min-height: 154px;
  padding: 22px;
  border: 0;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 24px 60px rgba(16, 17, 20, 0.08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.proof-strip span {
  display: block;
  margin-bottom: 34px;
  color: var(--amber-deep);
  font-size: 12px;
  font-weight: 880;
}

.proof-strip strong {
  display: block;
  margin-bottom: 8px;
  font-size: 22px;
  line-height: 1;
}

.proof-strip p {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}

.product-demo,
.features,
.testimonials {
  padding: 0 0 86px;
}

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

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

.section-heading h2,
.download-panel h2 {
  margin-bottom: 14px;
  font-size: clamp(38px, 6vw, 72px);
  line-height: 0.94;
  letter-spacing: 0;
}

.section-heading p:not(.eyebrow),
.download-panel p {
  color: var(--ink-soft);
  font-size: 18px;
  line-height: 1.55;
}

.demo-stage {
  position: relative;
  display: grid;
  grid-template-columns: minmax(248px, 286px) minmax(320px, 400px);
  gap: 18px;
  align-items: start;
  justify-content: center;
  min-height: 486px;
  padding: 48px;
  overflow: hidden;
  border: 0;
  border-radius: 34px;
  background:
    linear-gradient(135deg, rgba(255, 176, 0, 0.88) 0 18%, transparent 18.2%),
    linear-gradient(150deg, #11141c 0 48%, #213755 48.2% 76%, #f6f1e5 76.2% 100%);
  box-shadow: var(--shadow-heavy);
}

.demo-stage::before {
  display: none;
  content: none;
}

.demo-menu,
.demo-preview {
  position: relative;
  z-index: 1;
}

.demo-menu {
  grid-column: 2;
  grid-row: 1;
  width: 400px;
  max-width: 100%;
}

.demo-preview {
  grid-column: 1;
  grid-row: 1;
  width: 286px;
  max-width: 100%;
  margin-top: 36px;
  padding: 11px;
  transform-origin: center left;
  transition: transform 180ms ease;
}

.demo-preview:has(.image-preview) {
  transform: translateY(10px);
}

.features {
  position: relative;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.feature-card {
  min-height: 264px;
  padding: 22px;
  border: 0;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 26px 72px rgba(16, 17, 20, 0.08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.feature-card span {
  display: inline-flex;
  margin-bottom: 54px;
  padding: 6px 10px;
  border-radius: 999px;
  color: #101114;
  font-size: 12px;
  font-weight: 880;
  text-transform: uppercase;
}

.feature-card h3 {
  margin-bottom: 12px;
  font-size: 25px;
  line-height: 1.04;
}

.feature-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.accent-amber span {
  background: rgba(255, 176, 0, 0.36);
}

.accent-blue span {
  background: rgba(40, 120, 255, 0.2);
}

.accent-green span {
  background: rgba(22, 184, 121, 0.22);
}

.accent-pink span {
  background: rgba(255, 90, 135, 0.18);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.testimonial-grid figure {
  position: relative;
  margin: 0;
  min-height: 220px;
  padding: 24px 24px 58px;
  border: 0;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 26px 72px rgba(16, 17, 20, 0.08);
}

blockquote {
  margin: 0 0 22px;
  font-size: 24px;
  line-height: 1.2;
}

figcaption {
  position: absolute;
  right: 24px;
  bottom: 22px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 520;
}

.download-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 58px;
  padding: 36px;
  overflow: hidden;
  border: 0;
  border-radius: 34px;
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(255, 176, 0, 0.95) 0 18%, transparent 18.2%),
    linear-gradient(145deg, #15171d 0%, #0a0b0f 58%, #28374d 100%);
  box-shadow: var(--shadow-heavy);
}

.download-panel .eyebrow {
  color: #2b1b00;
  background: rgba(255, 255, 255, 0.74);
}

.download-panel > div:first-child {
  max-width: 680px;
}

.download-panel p {
  color: rgba(255, 255, 255, 0.76);
}

.download-actions {
  justify-content: flex-end;
  min-width: 260px;
}

.download-panel .button.secondary {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
}

.site-footer {
  justify-content: flex-start;
  gap: 18px;
  padding: 28px 0 42px;
  color: var(--muted);
  border-top: 0;
  font-size: 14px;
}

.site-footer span {
  margin-right: auto;
  color: var(--ink);
  font-weight: 850;
}

@keyframes float-device {
  0%,
  100% {
    transform: translateY(0) rotateX(0deg);
  }

  50% {
    transform: translateY(-8px) rotateX(1deg);
  }
}

@keyframes menu-drop {
  from {
    opacity: 0.7;
    transform: translateY(-14px) scale(0.985);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes preview-in {
  from {
    opacity: 0.68;
    transform: translateX(16px) scale(0.98);
  }

  to {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

@media (max-width: 1080px) {
  .hero-menu {
    right: 3.8%;
    width: 46%;
  }

  .hero-preview {
    right: calc(46% + 36px);
    width: 224px;
  }

  .feature-grid,
  .testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 860px) {
  .site-header nav {
    gap: 14px;
  }

  .menu-left span {
    display: none;
  }

  .desktop-notes {
    display: none;
  }

  .hero-menu {
    right: 14px;
    width: min(360px, calc(100% - 28px));
  }

  .hero-preview {
    display: none;
  }

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

  .demo-stage {
    grid-template-columns: 1fr;
    justify-items: center;
    min-height: auto;
    padding: 28px;
  }

  .demo-menu {
    grid-column: auto;
    grid-row: auto;
    order: 1;
    width: min(400px, 100%);
  }

  .demo-preview {
    display: none;
  }

  .demo-preview::after {
    display: none;
  }

  .download-panel {
    align-items: flex-start;
    flex-direction: column;
  }

  .download-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .site-header,
  .hero,
  .proof-strip,
  .product-demo,
  .features,
  .testimonials,
  .download-panel,
  .site-footer {
    width: min(100% - 32px, 1180px);
  }

  .site-header {
    align-items: flex-start;
    gap: 14px;
  }

  .site-header nav {
    flex-wrap: wrap;
    justify-content: flex-end;
    font-size: 13px;
  }

  .site-header nav a:first-child {
    display: none;
  }

  .hero {
    padding-top: 28px;
    padding-bottom: 34px;
  }

  h1 {
    font-size: clamp(72px, 24vw, 104px);
  }

  .lede {
    font-size: 18px;
    line-height: 1.36;
  }

  .eyebrow {
    margin-bottom: 14px;
    padding: 7px 12px;
    font-size: 12px;
  }

  .install-line {
    width: 100%;
    border-radius: 8px;
  }

  .install-line > span:first-child,
  .install-line code {
    width: 100%;
  }

  .macbook-lid {
    width: 94%;
    padding: 6px;
    border-radius: 20px 20px 11px 11px;
  }

  .screen {
    border-radius: 15px 15px 7px 7px;
  }

  .menu-bar {
    height: 25px;
    padding: 0 9px;
    font-size: 10px;
  }

  .menu-right span:not(:last-child) {
    display: none;
  }

  .hero-menu {
    top: 34px;
    right: 3.2%;
    width: 48%;
  }

  .hero-menu::before {
    right: 20%;
  }

  .clack-row:nth-of-type(n + 5) {
    display: none;
  }

  .row-text {
    font-size: 12px;
  }

  .clack-footer button {
    height: 25px;
    font-size: 12px;
  }

  .macbook-base {
    width: 100%;
    height: 18px;
  }

  .proof-strip,
  .product-demo,
  .features,
  .testimonials {
    padding-bottom: 46px;
  }

  .section-heading h2,
  .download-panel h2 {
    font-size: clamp(31px, 10vw, 46px);
    line-height: 1;
  }

  .section-heading {
    margin-bottom: 22px;
  }

  .section-heading p:not(.eyebrow),
  .download-panel p {
    font-size: 15px;
    line-height: 1.48;
  }

  .demo-stage {
    padding: 22px 14px;
    border-radius: 28px;
  }

  .demo-menu {
    width: min(330px, 100%);
  }

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

  .feature-card {
    min-height: 178px;
    padding: 20px;
    border-radius: 26px;
  }

  .feature-card span {
    margin-bottom: 24px;
    font-size: 11px;
  }

  .feature-card h3 {
    font-size: 21px;
  }

  .feature-card p,
  .proof-strip p {
    font-size: 15px;
    line-height: 1.43;
  }

  .proof-strip {
    gap: 12px;
  }

  .proof-strip article {
    min-height: 132px;
    padding: 20px;
    border-radius: 26px;
  }

  .proof-strip span {
    margin-bottom: 24px;
  }

  .proof-strip strong {
    font-size: 20px;
  }

  blockquote {
    font-size: 18px;
    line-height: 1.24;
  }

  .testimonial-grid {
    gap: 12px;
  }

  .testimonial-grid figure {
    min-height: 168px;
    padding: 20px 20px 48px;
    border-radius: 26px;
  }

  figcaption {
    right: 20px;
    bottom: 18px;
    font-size: 12px;
  }

  .download-panel {
    padding: 26px 20px;
    border-radius: 28px;
  }

  .download-actions {
    width: 100%;
    min-width: 0;
    justify-content: center;
  }

  .download-actions .button,
  .hero-actions .button {
    width: min(260px, 100%);
  }

  .site-footer {
    flex-wrap: wrap;
  }

  .site-footer span {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 1ms !important;
  }
}
