:root {
  color-scheme: dark;
  --bg: #080c0b;
  --card: rgba(19, 27, 25, 0.72);
  --card-soft: rgba(13, 20, 19, 0.78);
  --line: rgba(219, 240, 226, 0.11);
  --line-strong: rgba(219, 240, 226, 0.2);
  --text: #f5f4ec;
  --muted: rgba(226, 237, 226, 0.68);
  --soft: rgba(226, 237, 226, 0.45);
  --blue: #9cd9df;
  --sage: #a6d8bd;
  --mint: #9ce4d1;
  --lavender: #beb4ff;
  --sun: #dacb95;
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

*,
*::before,
*::after {
  min-width: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: clip;
  background:
    linear-gradient(132deg, rgba(166, 216, 189, 0.16), transparent 28%),
    linear-gradient(235deg, rgba(156, 217, 223, 0.13), transparent 34%),
    linear-gradient(180deg, #101816 0%, #0b1111 42%, #08090c 100%),
    var(--bg);
  color: var(--text);
  font-family:
    ui-sans-serif, -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI",
    system-ui, sans-serif;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(rgba(219, 240, 226, 0.024) 1px, transparent 1px),
    linear-gradient(90deg, rgba(219, 240, 226, 0.018) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.64), transparent 70%);
  pointer-events: none;
}

.page-glow {
  position: fixed;
  inset: auto 0 0;
  z-index: -1;
  height: 36rem;
  background: linear-gradient(180deg, transparent, rgba(166, 216, 189, 0.055));
  pointer-events: none;
}

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

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

.header-wrap {
  position: sticky;
  top: 20px;
  z-index: 20;
  display: flex;
  justify-content: center;
  padding: 20px 18px 0;
}

.site-header {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  width: min(100%, 780px);
  min-height: 58px;
  align-items: center;
  gap: 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(19, 28, 26, 0.58);
  box-shadow:
    0 18px 50px rgba(0, 0, 0, 0.26),
    inset 0 1px 0 rgba(245, 244, 236, 0.11);
  padding: 0 14px 0 18px;
  backdrop-filter: blur(34px) saturate(1.25);
}

.brand,
.nav-links,
.header-download {
  position: relative;
  z-index: 1;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: fit-content;
}

.brand img {
  width: 172px;
  height: auto;
  object-fit: contain;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 620;
}

.nav-links a:hover,
.header-download:hover {
  color: var(--text);
}

.header-download {
  justify-self: end;
  border: 1px solid rgba(219, 240, 226, 0.15);
  border-radius: 999px;
  background: rgba(245, 244, 236, 0.08);
  color: rgba(245, 244, 236, 0.84);
  font-size: 0.92rem;
  font-weight: 720;
  padding: 0.58rem 1rem;
}

main,
.site-footer {
  width: min(100%, calc(var(--max) + 48px));
  margin: 0 auto;
  padding-right: 24px;
  padding-left: 24px;
}

.hero-section {
  display: grid;
  width: 100%;
  justify-items: center;
  overflow: hidden;
  padding: 118px 0 76px;
  text-align: center;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(245, 244, 236, 0.065);
  color: rgba(236, 244, 235, 0.78);
  font-size: 0.94rem;
  font-weight: 720;
  padding: 8px 14px 8px 9px;
  backdrop-filter: blur(20px);
}

.hero-kicker img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

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

h1 {
  max-width: 1020px;
  margin-top: 30px;
  font-size: clamp(4rem, 9vw, 8rem);
  font-weight: 740;
  letter-spacing: 0;
  line-height: 0.92;
}

.hero-subheadline {
  width: min(100%, 760px);
  max-width: 760px;
  margin-top: 30px;
  color: rgba(226, 237, 226, 0.72);
  font-size: clamp(1.18rem, 2vw, 1.7rem);
  font-weight: 520;
  line-height: 1.36;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  padding: 0 22px;
  font-size: 1rem;
  font-weight: 760;
  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease;
}

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

.button-primary {
  border-color: transparent;
  background: #eaf2df;
  color: #0d1613;
  box-shadow: 0 16px 42px rgba(166, 216, 189, 0.16);
}

.button-secondary {
  background: rgba(245, 244, 236, 0.075);
  color: rgba(245, 244, 236, 0.84);
}

.button-secondary:hover {
  background: rgba(245, 244, 236, 0.12);
}

.button[aria-disabled="true"] {
  cursor: not-allowed;
  opacity: 0.55;
}

.button[aria-disabled="true"]:hover {
  transform: none;
}

.install-note {
  width: min(100%, 42rem);
  margin-top: 18px;
  color: var(--soft);
  font-size: 0.95rem;
}

.hero-showcase {
  position: relative;
  width: min(100%, 1080px);
  margin-top: 64px;
}

.hero-showcase::before {
  content: "";
  position: absolute;
  inset: 12% 10% -8%;
  z-index: -1;
  border-radius: 42% 58% 48% 52%;
  background: linear-gradient(115deg, rgba(166, 216, 189, 0.26), rgba(156, 217, 223, 0.14), rgba(190, 180, 255, 0.12));
  filter: blur(54px);
  opacity: 0.72;
}

.product-stack {
  position: relative;
  min-height: clamp(520px, 58vw, 720px);
}

.product-shot {
  position: absolute;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  background: rgba(245, 244, 236, 0.045);
  box-shadow:
    0 34px 110px rgba(0, 0, 0, 0.42),
    inset 0 1px 0 rgba(245, 244, 236, 0.11);
}

.product-shot img,
.ui-shot img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-shot figcaption,
.ui-shot figcaption {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 2;
  border: 1px solid rgba(219, 240, 226, 0.14);
  border-radius: 999px;
  background: rgba(10, 17, 16, 0.62);
  color: rgba(236, 244, 235, 0.78);
  font-size: 0.88rem;
  font-weight: 720;
  padding: 9px 13px;
  backdrop-filter: blur(18px);
}

.product-shot-main {
  inset: 0 auto auto 0;
  width: min(78%, 860px);
  aspect-ratio: 2938 / 1912;
  border-radius: 32px;
}

.product-shot-settings {
  right: 0;
  bottom: 0;
  z-index: 3;
  width: min(38%, 360px);
  aspect-ratio: 1120 / 1524;
  border-radius: 30px;
  transform: rotate(2.5deg);
}

.product-shot-settings img {
  object-position: top center;
}

.desktop-frame {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 36px;
  background:
    linear-gradient(135deg, rgba(166, 216, 189, 0.12), transparent 38%),
    linear-gradient(230deg, rgba(156, 217, 223, 0.1), transparent 42%),
    #111817;
  box-shadow:
    0 44px 120px rgba(0, 0, 0, 0.44),
    inset 0 1px 0 rgba(245, 244, 236, 0.12);
}

.desktop-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(219, 240, 226, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(219, 240, 226, 0.022) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.74), transparent 82%);
  pointer-events: none;
}

.desktop-menubar {
  position: relative;
  z-index: 2;
  display: flex;
  height: 58px;
  align-items: center;
  gap: 18px;
  border-bottom: 1px solid rgba(219, 240, 226, 0.08);
  background: rgba(245, 244, 236, 0.055);
  padding: 0 22px;
}

.menubar-brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-right: auto;
  font-size: 1.06rem;
  font-weight: 740;
}

.menubar-brand img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.desktop-menubar > span {
  width: 38px;
  height: 10px;
  border-radius: 999px;
  background: rgba(219, 240, 226, 0.16);
}

.desktop-menubar > span:last-child {
  width: 22px;
}

.break-preview {
  position: absolute;
  inset: 118px 110px auto;
  z-index: 1;
  display: grid;
  justify-items: center;
  border: 1px solid rgba(219, 240, 226, 0.13);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(245, 244, 236, 0.1), transparent),
    rgba(8, 8, 11, 0.76);
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.36),
    inset 0 1px 0 rgba(245, 244, 236, 0.12);
  padding: 44px 26px 36px;
  backdrop-filter: blur(24px) saturate(1.25);
}

.timer-ring {
  position: relative;
  display: grid;
  width: 154px;
  aspect-ratio: 1;
  place-items: center;
  border-radius: 50%;
  background: conic-gradient(var(--sage) 74%, rgba(245, 244, 236, 0.1) 0);
  box-shadow: 0 0 50px rgba(166, 216, 189, 0.16);
}

.timer-ring::before {
  content: "";
  position: absolute;
  width: 126px;
  aspect-ratio: 1;
  border-radius: inherit;
  background: #09090c;
}

.timer-ring span {
  position: relative;
  z-index: 1;
  font-size: 3.85rem;
  font-weight: 780;
  letter-spacing: 0;
  font-variant-numeric: tabular-nums;
}

.break-preview h2 {
  margin-top: 26px;
  font-size: clamp(3.4rem, 7vw, 5.6rem);
  font-weight: 780;
  letter-spacing: 0;
  line-height: 0.9;
}

.break-preview p {
  margin-top: 14px;
  color: var(--muted);
  font-size: 1.18rem;
}

.progress-track {
  width: min(100%, 330px);
  height: 8px;
  margin-top: 30px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(245, 244, 236, 0.1);
}

.progress-track span {
  display: block;
  width: 72%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--sage), var(--blue));
}

.reminder-preview {
  position: absolute;
  right: 56px;
  bottom: 50px;
  z-index: 3;
  display: grid;
  grid-template-columns: auto 1fr;
  width: min(78%, 520px);
  gap: 16px;
  align-items: center;
  border: 1px solid rgba(219, 240, 226, 0.13);
  border-radius: 30px;
  background:
    linear-gradient(135deg, rgba(166, 216, 189, 0.16), transparent 52%),
    rgba(17, 28, 27, 0.74);
  box-shadow:
    0 28px 80px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(245, 244, 236, 0.13);
  padding: 20px;
  text-align: left;
  backdrop-filter: blur(24px) saturate(1.35);
}

.clock-mark {
  width: 64px;
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    linear-gradient(145deg, var(--sage), var(--blue));
}

.reminder-preview strong {
  display: block;
  font-size: 1.8rem;
  letter-spacing: 0;
  font-variant-numeric: tabular-nums;
}

.reminder-preview p {
  margin-top: 4px;
  color: var(--muted);
  font-size: 1rem;
}

.reminder-actions {
  display: flex;
  grid-column: 1 / -1;
  gap: 10px;
}

.reminder-actions span {
  border: 1px solid rgba(219, 240, 226, 0.14);
  border-radius: 999px;
  background: rgba(245, 244, 236, 0.09);
  color: rgba(245, 244, 236, 0.8);
  font-size: 0.9rem;
  font-weight: 700;
  padding: 9px 14px;
}

.intro-grid,
.section-block {
  width: min(100%, var(--max));
  margin: 0 auto;
}

.intro-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding: 48px 0 100px;
}

.product-ui-section {
  padding-top: 32px;
}

.ui-shot-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.7fr);
  gap: 18px;
  align-items: stretch;
}

.ui-shot {
  position: relative;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: var(--card);
  box-shadow:
    0 28px 90px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(245, 244, 236, 0.12);
}

.ui-shot.wide {
  aspect-ratio: 2938 / 1912;
}

.ui-shot.tall {
  aspect-ratio: 1120 / 1524;
}

.ui-shot figcaption {
  right: 18px;
  display: grid;
  justify-items: start;
  border-radius: 18px;
  line-height: 1.25;
  text-align: left;
}

.ui-shot figcaption strong {
  color: var(--text);
  font-size: 0.96rem;
}

.ui-shot figcaption span {
  max-width: 24ch;
  color: rgba(226, 237, 226, 0.62);
  font-size: 0.84rem;
}

.intro-grid article {
  min-height: 250px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: var(--card);
  padding: 26px;
}

.soft-icon {
  display: inline-grid;
  min-width: 52px;
  height: 52px;
  place-items: center;
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(245, 244, 236, 0.13), transparent),
    rgba(166, 216, 189, 0.09);
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 820;
  padding: 0 12px;
}

.intro-grid h2 {
  margin-top: 30px;
  font-size: clamp(1.75rem, 2.45vw, 2.3rem);
  letter-spacing: 0;
  line-height: 1.05;
}

.intro-grid p {
  margin-top: 16px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.55;
}

.proof-section {
  padding-top: 32px;
}

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

.proof-card {
  display: grid;
  min-height: 260px;
  align-content: start;
  gap: 16px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background:
    linear-gradient(145deg, rgba(166, 216, 189, 0.105), transparent 48%),
    linear-gradient(180deg, rgba(245, 244, 236, 0.05), transparent),
    var(--card);
  padding: 26px;
}

.proof-card h3 {
  margin-top: 26px;
  color: var(--text);
  font-size: clamp(1.45rem, 2.2vw, 2rem);
  font-weight: 720;
  letter-spacing: 0;
  line-height: 1.02;
}

.proof-card p {
  color: var(--muted);
  font-size: 1rem;
  font-weight: 520;
  letter-spacing: 0;
  line-height: 1.5;
}

.proof-card span {
  color: var(--soft);
  font-size: 0.88rem;
  font-weight: 760;
  letter-spacing: 0;
  text-transform: uppercase;
}

.honesty-note {
  display: flex;
  max-width: 840px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 1px solid rgba(166, 216, 189, 0.2);
  border-radius: 999px;
  background: rgba(166, 216, 189, 0.075);
  color: var(--muted);
  margin: 18px auto 0;
  padding: 13px 18px;
  text-align: center;
}

.honesty-note strong {
  color: var(--text);
  white-space: nowrap;
}

.honesty-note span {
  line-height: 1.45;
}

.section-block {
  padding: 112px 0;
}

.section-heading {
  display: grid;
  max-width: 760px;
  gap: 16px;
  margin: 0 auto 42px;
  text-align: center;
}

.eyebrow {
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 820;
  letter-spacing: 0;
  text-transform: uppercase;
}

.section-heading h2 {
  font-size: clamp(2.65rem, 6vw, 5.9rem);
  font-weight: 760;
  letter-spacing: 0;
  line-height: 0.9;
}

.section-heading p:last-child {
  color: var(--muted);
  font-size: 1.16rem;
  line-height: 1.45;
}

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

.feature-panel article {
  min-height: 230px;
  background:
    linear-gradient(180deg, rgba(245, 244, 236, 0.05), transparent),
    var(--card-soft);
  padding: 26px;
}

.feature-panel article:first-child,
.feature-panel article:nth-child(2),
.feature-panel article:nth-child(5) {
  grid-column: span 2;
}

.feature-panel span {
  color: var(--soft);
  font-size: 0.8rem;
  font-weight: 820;
  letter-spacing: 0;
}

.feature-panel h3 {
  margin-top: 50px;
  font-size: 1.32rem;
  line-height: 1.1;
  letter-spacing: 0;
}

.feature-panel p {
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.5;
}

.research-section {
  padding-bottom: 92px;
}

.research-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin: 0 auto;
}

.research-card {
  display: grid;
  min-height: 280px;
  align-content: start;
  gap: 15px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background:
    linear-gradient(145deg, rgba(156, 217, 223, 0.1), transparent 46%),
    linear-gradient(180deg, rgba(245, 244, 236, 0.05), transparent),
    var(--card);
  padding: 26px;
}

.research-card span {
  color: var(--soft);
  font-size: 0.8rem;
  font-weight: 820;
}

.research-card h3 {
  margin-top: 30px;
  color: var(--text);
  font-size: clamp(1.55rem, 2.4vw, 2.2rem);
  font-weight: 740;
  line-height: 1.02;
}

.research-card p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.52;
}

.research-card a {
  width: fit-content;
  align-self: end;
  border: 1px solid rgba(219, 240, 226, 0.14);
  border-radius: 999px;
  background: rgba(245, 244, 236, 0.07);
  color: rgba(245, 244, 236, 0.86);
  font-size: 0.9rem;
  font-weight: 740;
  padding: 0.62rem 0.9rem;
}

.research-note {
  display: grid;
  max-width: 860px;
  justify-items: center;
  gap: 8px;
  border: 1px solid rgba(166, 216, 189, 0.2);
  border-radius: 28px;
  background: rgba(166, 216, 189, 0.075);
  color: var(--muted);
  margin: 18px auto 0;
  padding: 22px 26px;
  text-align: center;
}

.research-note strong {
  color: var(--text);
  font-size: 1.08rem;
  white-space: nowrap;
}

.research-note span {
  max-width: 58rem;
  font-size: 1.06rem;
  line-height: 1.45;
}

.site-footer {
  display: flex;
  min-height: 92px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid var(--line);
  color: var(--soft);
  font-size: 0.94rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 18px;
}

.footer-brand img {
  width: 172px;
  height: auto;
}

.linkedin-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(219, 240, 226, 0.14);
  border-radius: 999px;
  background: rgba(245, 244, 236, 0.06);
  color: rgba(245, 244, 236, 0.72);
  font-size: 0.86rem;
  font-weight: 680;
  padding: 0.44rem 0.68rem;
  text-decoration: none;
  transition:
    border-color 160ms ease,
    background 160ms ease,
    color 160ms ease,
    transform 160ms ease;
}

.linkedin-link svg {
  width: 17px;
  height: 17px;
  fill: currentColor;
}

.linkedin-link:hover {
  border-color: rgba(151, 224, 224, 0.36);
  background: rgba(151, 224, 224, 0.1);
  color: var(--text);
  transform: translateY(-1px);
}

.footer-copy {
  display: grid;
  justify-items: end;
  gap: 6px;
  text-align: right;
}

.footer-copy small {
  color: var(--muted);
  font-size: 0.82rem;
}

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
  }

  .hero-section {
    padding-top: 92px;
  }

  .desktop-frame {
    min-height: 590px;
  }

  .product-stack {
    min-height: 620px;
  }

  .product-shot-main {
    width: 100%;
  }

  .product-shot-settings {
    width: min(48%, 330px);
  }

  .break-preview {
    inset: 100px 34px auto;
  }

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

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

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

  .honesty-note {
    align-items: flex-start;
    border-radius: 22px;
    flex-direction: column;
    text-align: left;
  }

  .research-note {
    align-items: flex-start;
    border-radius: 22px;
    flex-direction: column;
    text-align: left;
  }

  .ui-shot-grid {
    grid-template-columns: 1fr;
  }

  .ui-shot.tall {
    max-width: 420px;
    margin: 0 auto;
    width: 100%;
  }

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

  .feature-panel article:first-child,
  .feature-panel article:nth-child(2),
  .feature-panel article:nth-child(5) {
    grid-column: auto;
  }
}

@media (max-width: 680px) {
  html,
  body {
    width: 100%;
    max-width: 100%;
  }

  .header-wrap {
    top: 12px;
    padding: 12px 12px 0;
  }

  .site-header {
    grid-template-columns: 1fr;
    width: 100%;
    max-width: calc(100vw - 24px);
    min-height: 54px;
    padding-left: 14px;
  }

  .nav-links {
    display: none;
  }

  .header-download {
    display: none;
  }

  .brand img {
    width: 154px;
  }

  main,
  .site-footer {
    width: 100%;
    max-width: 100%;
    padding-right: 16px;
    padding-left: 16px;
  }

  h1 {
    max-width: calc(100vw - 56px);
    font-size: clamp(2.75rem, 12vw, 3.15rem);
  }

  .hero-kicker {
    max-width: calc(100vw - 32px);
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    text-align: center;
  }

  .hero-kicker span {
    min-width: 0;
    font-size: 0;
  }

  .hero-kicker span::after {
    content: "Mac + Windows";
    font-size: 0.88rem;
  }

  .hero-subheadline {
    width: min(100%, 18.5rem);
    max-width: calc(100vw - 72px);
    font-size: 1.08rem;
  }

  .hero-actions {
    width: 100%;
    max-width: 100%;
    align-items: center;
    flex-direction: column;
  }

  .button {
    width: min(16rem, calc(100vw - 112px));
  }

  .install-note {
    width: min(100%, 17rem);
    max-width: calc(100vw - 72px);
    line-height: 1.45;
  }

  .hero-showcase {
    margin-top: 44px;
  }

  .desktop-frame {
    min-height: 550px;
    border-radius: 28px;
  }

  .product-stack {
    min-height: 580px;
    overflow: hidden;
    border-radius: 24px;
  }

  .product-shot-main {
    left: 0;
    width: 100%;
    aspect-ratio: 2938 / 1912;
    border-radius: 24px;
  }

  .product-shot-settings {
    bottom: 16px;
    left: 50%;
    right: auto;
    width: min(58%, 250px);
    border-radius: 22px;
    transform: translateX(-50%) rotate(1.5deg);
  }

  .product-shot figcaption {
    display: none;
  }

  .desktop-menubar {
    height: 52px;
  }

  .desktop-menubar > span {
    display: none;
  }

  .break-preview {
    inset: 82px 16px auto;
    padding: 34px 18px 28px;
  }

  .timer-ring {
    width: 118px;
  }

  .timer-ring::before {
    width: 96px;
  }

  .timer-ring span {
    font-size: 3rem;
  }

  .break-preview h2 {
    font-size: 3.2rem;
  }

  .reminder-preview {
    right: 14px;
    bottom: 18px;
    left: 14px;
    width: auto;
    border-radius: 24px;
  }

  .clock-mark {
    width: 50px;
  }

  .reminder-actions {
    display: none;
  }

  .intro-grid {
    padding-bottom: 72px;
  }

  .section-block {
    padding: 82px 0;
  }

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

  .feature-panel article {
    min-height: 190px;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
  }

  .footer-brand {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .footer-copy {
    justify-items: start;
    text-align: left;
  }
}
