:root {
  --blue: #3676b6;
  --blue-deep: #2a5f94;
  --blue-soft: #e8f1f9;
  --blue-mist: #f3f7fb;
  --ink: #1a2a3a;
  --muted: #5a6f84;
  --line: rgba(54, 118, 182, 0.16);
  --surface: #ffffff;
  --radius: 24px;
  --radius-sm: 14px;
  --font: "Nunito", system-ui, sans-serif;
  --shadow: 0 24px 70px rgba(46, 95, 142, 0.14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font);
  color: var(--ink);
  background: #f8fbfd;
  line-height: 1.6;
}

button, a { -webkit-tap-highlight-color: transparent; }
a { color: var(--blue); text-decoration: none; }
a:hover { text-decoration: underline; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.65rem 1rem;
  border-radius: 999px;
  color: #fff;
  background: var(--blue-deep);
  font-weight: 800;
  transform: translateY(-160%);
  transition: transform 0.2s ease;
}

.skip-link:focus { transform: translateY(0); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  padding: 0.75rem 1.5rem;
  background: rgba(248, 251, 253, 0.8);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.site-header.is-scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 5px 24px rgba(42, 95, 148, 0.06);
}

.header-inner {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--ink);
  text-decoration: none;
  font-weight: 800;
  font-size: 1.22rem;
  letter-spacing: -0.025em;
}

.brand:hover { text-decoration: none; }
.brand-mark { width: 34px; height: 34px; border-radius: 9px; display: block; }
.nav { display: flex; align-items: center; gap: 1.55rem; }
.nav a { color: var(--muted); font-weight: 700; font-size: 0.9rem; }
.nav a:hover { color: var(--blue); text-decoration: none; }
.header-actions { display: flex; align-items: center; gap: 0.65rem; }
.menu-toggle, .mobile-nav { display: none; }

.lang-toggle {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--muted);
  border-radius: 999px;
  padding: 0.42rem 0.7rem;
  cursor: pointer;
  font-family: inherit;
  font-weight: 800;
  font-size: 0.74rem;
}

.lang-toggle:hover { color: var(--blue); border-color: var(--blue); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 999px;
  padding: 0.65rem 1.2rem;
  font: 800 0.92rem var(--font);
  border: 1.5px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.btn:hover { text-decoration: none; transform: translateY(-2px); }
.btn:focus-visible,
.nav a:focus-visible,
.mobile-nav a:focus-visible,
.lang-toggle:focus-visible,
.menu-toggle:focus-visible,
.faq-list summary:focus-visible,
.text-link:focus-visible,
.footer-links a:focus-visible {
  outline: 3px solid rgba(54, 118, 182, 0.35);
  outline-offset: 4px;
}
.btn:disabled { cursor: wait; opacity: 0.65; transform: none; }
.btn-primary { background: var(--blue); color: #fff; box-shadow: 0 9px 24px rgba(54, 118, 182, 0.28); }
.btn-primary:hover { background: var(--blue-deep); box-shadow: 0 13px 30px rgba(54, 118, 182, 0.34); }
.btn-ghost { border-color: var(--line); color: var(--ink); background: rgba(255, 255, 255, 0.76); }
.btn-ghost:hover { border-color: var(--blue); color: var(--blue); }
.btn-lg { padding: 0.92rem 1.55rem; font-size: 1rem; }

.hero {
  min-height: 620px;
  position: relative;
  overflow: hidden;
  display: grid;
  align-items: center;
  padding: 2.5rem 1.5rem 2.75rem;
  background:
    radial-gradient(circle at 84% 25%, rgba(54, 118, 182, 0.17), transparent 28%),
    radial-gradient(circle at 10% 80%, rgba(54, 118, 182, 0.09), transparent 30%),
    linear-gradient(150deg, #fbfdff 0%, #edf5fb 58%, #e1eef8 100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.45;
  background-image: radial-gradient(rgba(54, 118, 182, 0.2) 0.7px, transparent 0.7px);
  background-size: 24px 24px;
  mask-image: linear-gradient(to right, transparent, #000 55%, #000);
}

.hero-glow {
  position: absolute;
  width: 500px;
  height: 500px;
  right: 7%;
  top: 13%;
  border: 1px solid rgba(54, 118, 182, 0.13);
  border-radius: 50%;
}

.hero-glow::before, .hero-glow::after {
  content: "";
  position: absolute;
  inset: 55px;
  border: 1px solid rgba(54, 118, 182, 0.11);
  border-radius: 50%;
}

.hero-glow::after { inset: 115px; }

.hero-inner {
  position: relative;
  z-index: 2;
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  align-items: center;
  gap: 4.2rem;
}

.hero-copy { animation: rise 0.8s ease both; }
.eyebrow, .section-kicker {
  color: var(--blue);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.eyebrow { display: flex; align-items: center; gap: 0.6rem; margin: 0 0 1.2rem; }
.eyebrow > span:first-child { width: 25px; height: 2px; border-radius: 2px; background: var(--blue); }

.eyebrow { text-transform: none; }

.hero h1 {
  margin: 0 0 1.25rem;
  max-width: 22em;
  font-size: clamp(2.1rem, 3.2vw, 2.9rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  white-space: pre-line;
}

.lead { margin: 0; max-width: 41rem; color: var(--muted); font-size: 1.12rem; font-weight: 600; line-height: 1.65; white-space: pre-line; }
.hero-cta { display: flex; align-items: center; gap: 1.4rem; margin-top: 2rem; }
.text-link { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.93rem; font-weight: 800; }
.text-link:hover { text-decoration: none; gap: 0.7rem; }
.hero-notes { display: flex; flex-wrap: wrap; gap: 0.55rem 1.1rem; list-style: none; margin: 1.5rem 0 0; padding: 0; color: var(--muted); font-size: 0.78rem; font-weight: 700; }
.hero-notes li::before { content: "✓"; margin-right: 0.35rem; color: var(--blue); }

.hero-demo { position: relative; min-width: 0; padding: 0.75rem 0 2.5rem; animation: rise 0.9s 0.1s ease both; }
.desktop-window { overflow: hidden; border: 1px solid rgba(54, 118, 182, 0.2); border-radius: 21px; background: #fff; box-shadow: 0 35px 80px rgba(43, 89, 134, 0.2); transform: perspective(900px) rotateY(-2deg) rotateX(1deg); }
.window-top { height: 43px; display: flex; align-items: center; gap: 7px; padding: 0 15px; border-bottom: 1px solid #e5eef5; background: #f9fbfd; }
.traffic { width: 9px; height: 9px; border-radius: 50%; }
.traffic.red { background: #f18377; }.traffic.yellow { background: #efc65f; }.traffic.green { background: #73bf78; }
.window-title { margin-left: auto; margin-right: auto; transform: translateX(-20px); color: #7b8c9b; font-size: 0.64rem; font-weight: 700; }
.window-layout { display: grid; grid-template-columns: 22% 1fr; height: 325px; }
.mock-sidebar { padding: 24px 20px; background: #eef4f8; display: flex; flex-direction: column; gap: 17px; }
.mock-sidebar span:not(.side-logo) { width: 75%; height: 7px; border-radius: 9px; background: #ccdbe7; }
.mock-sidebar .side-logo { width: 30px; height: 30px; margin-bottom: 18px; border-radius: 9px; background: linear-gradient(135deg, var(--blue), #77aadb); }
.mock-content { padding: 32px 31px; }
.mock-heading { width: 42%; height: 15px; border-radius: 8px; background: #4a6680; margin-bottom: 27px; }
.mock-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 13px; }
.mock-cards span { height: 65px; border: 1px solid #dce7ef; border-radius: 10px; background: linear-gradient(145deg, #f9fbfd, #eef5fa); }
.mock-chart { height: 145px; display: flex; align-items: end; gap: 13px; margin-top: 28px; padding: 12px 17px 0; border: 1px solid #e0e9f0; border-radius: 11px; }
.mock-chart i { flex: 1; border-radius: 5px 5px 0 0; background: #abcce7; }
.mock-chart i:nth-child(1) { height: 35%; }.mock-chart i:nth-child(2) { height: 53%; }.mock-chart i:nth-child(3) { height: 45%; }.mock-chart i:nth-child(4) { height: 78%; background: var(--blue); }.mock-chart i:nth-child(5) { height: 62%; }.mock-chart i:nth-child(6) { height: 88%; }

.taskbar-preview {
  position: absolute;
  z-index: 3;
  left: -6%;
  right: -2%;
  bottom: 1.25rem;
  min-height: 67px;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 8px 10px;
  border: 1px solid rgba(54, 118, 182, 0.2);
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
  box-shadow: 0 20px 40px rgba(35, 76, 114, 0.2);
}

.task-app { flex: 0 0 42px; height: 42px; display: grid; place-items: center; border-radius: 11px; background: #f2f6f9; }
.task-app img { width: 31px; height: 31px; border-radius: 9px; }
.task-divider { width: 1px; height: 34px; margin: 0 1px; background: var(--line); }
.finder-app b { width: 27px; height: 27px; border-radius: 7px; background: linear-gradient(90deg, #75b7e5 50%, #b9dcf3 50%); }
.terminal-app b { width: 28px; height: 28px; display: grid; place-items: center; border-radius: 7px; background: #33485a; color: #fff; font-size: 0.75rem; }
.task-window { min-width: 0; height: 42px; display: flex; align-items: center; gap: 7px; padding: 0 12px; border-radius: 10px; color: #536b80; background: #f2f6f9; font-size: 0.64rem; font-weight: 800; white-space: nowrap; }
.task-window.active { color: var(--ink); background: #e4f0f8; box-shadow: inset 0 0 0 1px rgba(54, 118, 182, 0.25); }
.app-dot { flex: 0 0 auto; width: 13px; height: 13px; border-radius: 4px; display: inline-block; }
.app-dot.blue { background: #548ec5; }.app-dot.violet { background: #8675c7; }.app-dot.green { background: #69a88b; }
.task-clock { margin-left: auto; min-width: 57px; text-align: center; color: #536b80; font-size: 0.64rem; font-weight: 800; line-height: 1.15; }
.task-clock small { font-size: 0.5rem; font-weight: 700; }
.demo-callout { position: absolute; z-index: 5; right: -5%; top: 9%; display: flex; align-items: center; gap: 0.55rem; padding: 0.65rem 0.85rem; border: 1px solid var(--line); border-radius: 11px; background: #fff; box-shadow: 0 10px 28px rgba(42, 95, 148, 0.13); color: var(--muted); font-size: 0.67rem; font-weight: 800; }
.callout-icon { width: 21px; height: 21px; display: grid; place-items: center; border-radius: 50%; background: var(--blue-soft); color: var(--blue); }

@keyframes rise { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: translateY(0); } }

main > section:not(.hero, .product-shot) { width: min(1120px, 100%); margin: 0 auto; padding: 7rem 1.5rem; }
main > section.intro { padding-top: 2rem; padding-bottom: 1.5rem; }

.product-shot {
  width: 100%;
  margin: 0;
  padding: 3rem 1.5rem 3rem;
  background: linear-gradient(180deg, transparent, rgba(237, 245, 251, 0.65));
  border-top: 1px solid var(--line);
}
.product-shot .section-head {
  max-width: min(1080px, 100%);
  margin: 0 auto 1.5rem;
}
.product-shot .section-head h2 {
  font-size: clamp(1.55rem, 2.8vw, 2.15rem);
}

.product-shot-frame {
  width: min(1080px, 100%);
  margin: 0 auto;
  padding: 1.25rem 1.15rem;
  border: 1px solid rgba(54, 118, 182, 0.18);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 45px rgba(42, 95, 148, 0.12);
}

.product-shot img {
  display: block;
  width: 100%;
  max-width: 1024px;
  height: auto;
  margin: 0 auto;
  aspect-ratio: 1024 / 29;
  object-fit: contain;
  border-radius: 10px;
  image-rendering: -webkit-optimize-contrast;
}
.section-kicker { margin-bottom: 0.65rem; }
.section-head { max-width: 43rem; margin-bottom: 2rem; }
.section-head.centered { margin-right: auto; margin-left: auto; text-align: center; }
.section-head h2, .download h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(2rem, 3.6vw, 3.05rem);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1.12;
  text-wrap: balance;
}
.section-head p, .privacy-band p { margin: 0; color: var(--muted); font-size: 1.04rem; font-weight: 600; }
.privacy-band p { white-space: pre-line; }
.intro > .section-kicker, .pricing > .section-kicker { text-align: center; }

.feature-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.feature-card { position: relative; min-height: 285px; padding: 2rem; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; box-shadow: 0 12px 35px rgba(54, 118, 182, 0.07); }
.feature-card.feature-main {
  grid-column: 1 / -1;
  min-height: 0;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 3rem;
  align-items: center;
  padding: 1.25rem 1.75rem;
  background: linear-gradient(135deg, #fff, #f1f7fb);
}
.feature-card.feature-main.feature-half {
  grid-column: auto;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  align-content: start;
  align-items: stretch;
}
.feature-half .start-menu-visual,
.feature-half .calendar-visual {
  width: min(260px, 100%);
  margin: 0 auto;
}
.feature-half .media-controls-visual {
  width: min(140px, 100%);
  margin: 0 auto;
}
.feature-card:last-child { grid-column: 1 / -1; min-height: 0; padding: 1.25rem 1.75rem; }
.feature-card h3 { margin: 0 0 0.55rem; font-size: 1.3rem; font-weight: 800; letter-spacing: -0.025em; }
.feature-card p { margin: 0; color: var(--muted); font-weight: 600; white-space: pre-line; }
.feature-shot {
  min-width: 0;
  width: min(480px, 100%);
  justify-self: center;
  display: grid;
  place-items: center;
}
.feature-shot img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 14px;
}
.shortcut-mark { display: flex; align-items: center; gap: 0.55rem; margin: 1.5rem 0 2.6rem; }
.feature-card.feature-main .shortcut-mark { margin: 0; justify-content: center; }
.shortcut-mark kbd { min-width: 55px; padding: 0.55rem 0.9rem; border: 1px solid rgba(54, 118, 182, 0.23); border-bottom-width: 3px; border-radius: 10px; background: var(--blue-mist); color: var(--blue-deep); text-align: center; font: 800 1rem var(--font); }
.shortcut-mark b { color: #9aaaba; }
.pin-visual { margin: 1.35rem 0 1.8rem; color: var(--blue); }
.feature-card.feature-main .pin-visual { margin: 0; min-width: 0; }
.pin-taskbar { display: grid; grid-template-columns: auto minmax(50px, 1fr) auto; align-items: center; gap: 0.5rem; padding: 0.55rem; border: 1px solid rgba(54, 118, 182, 0.2); border-radius: 15px; background: #f8fbfd; box-shadow: 0 12px 30px rgba(54, 118, 182, 0.1); }
.pin-side { display: flex; gap: 0.35rem; padding: 0.3rem; border-radius: 10px; background: var(--blue-soft); }
.pin-side span { width: 29px; height: 29px; display: grid; place-items: center; border: 1px solid rgba(54, 118, 182, 0.13); border-radius: 8px; background: #fff; color: var(--blue-deep); font-size: 0.7rem; font-weight: 800; }
.pin-side-left { box-shadow: inset 3px 0 0 var(--blue); }
.pin-side-right { box-shadow: inset -3px 0 0 #8aabc9; }
.pin-current { min-width: 0; display: flex; justify-content: center; gap: 0.3rem; padding: 0 0.2rem; }
.pin-current i { width: min(33px, 42%); height: 19px; border-radius: 6px; background: #dce8f1; }
.pin-current i:first-child { background: #c7ddeb; }

.shortcuts-visual {
  width: min(360px, 100%);
  justify-self: center;
  display: grid;
  place-items: center;
}
.shortcuts-visual img {
  display: block;
  width: min(306px, 100%);
  height: auto;
}

.tray-visual { width: min(430px, 100%); display: flex; align-items: center; gap: 0.55rem; margin: 1.65rem 0 2rem; padding: 0.65rem; border: 1px solid rgba(54, 118, 182, 0.19); border-radius: 16px; background: #f8fbfd; box-shadow: 0 14px 35px rgba(54, 118, 182, 0.09); color: var(--blue-deep); font-size: 0.82rem; font-weight: 800; }
.feature-card.feature-main .tray-visual { width: min(360px, 100%); margin: 0; justify-self: center; }
.tray-visual-media { justify-content: center; }
.tray-visual .tray-label { width: auto; padding: 0 0.55rem; background: transparent; color: var(--blue-deep); font-size: 0.78rem; }
.tray-visual > span:not(.tray-divider):not(.tray-label) { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 9px; background: var(--blue-soft); }
.tray-visual .start-tile { width: 40px; height: 40px; background: #fff; }
.tray-visual img { width: 30px; height: 30px; border-radius: 8px; }
.tray-divider { width: 1px; height: 30px; background: var(--line); }
.tray-visual time { margin-left: 0; padding: 0.35rem 0.75rem; text-align: center; line-height: 1.15; border-radius: 9px; background: var(--blue-soft); }
.tray-visual time small { display: block; color: var(--muted); font-size: 0.6rem; }

.start-menu-visual {
  width: min(280px, 100%);
  justify-self: center;
  display: grid;
  place-items: center;
}
.start-menu-visual img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 14px;
}

.calendar-visual {
  width: min(280px, 100%);
  justify-self: center;
  display: grid;
  place-items: center;
}
.calendar-visual img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 14px;
}

.media-controls-visual {
  width: min(140px, 100%);
  justify-self: center;
  display: grid;
  place-items: center;
}
.media-controls-visual img {
  display: block;
  width: 100%;
  height: auto;
}

.shelf-visual {
  width: min(420px, 100%);
  justify-self: center;
  display: grid;
  place-items: center;
}
.shelf-visual img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 14px;
}

.highlight-visual {
  width: min(360px, 100%);
  justify-self: center;
  display: grid;
  place-items: center;
}
.highlight-visual img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 14px;
}

.privacy-band { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 1.25rem; margin-top: 0.75rem; padding: 1.5rem 1.75rem; border-radius: 22px; background: linear-gradient(130deg, #e5f1f9, #f8fbfd); border: 1px solid var(--line); }
.privacy-icon { width: 62px; height: 62px; display: grid; place-items: center; border-radius: 18px; background: #fff; color: var(--blue); box-shadow: 0 12px 30px rgba(54,118,182,0.12); font-size: 1.8rem; }
.privacy-band p { max-width: 43rem; font-size: 0.9rem; }

.pricing { margin-top: 5rem !important; }
.pricing-cards { display: grid; grid-template-columns: repeat(3, 1fr); align-items: stretch; gap: 1rem; }
.price-card { position: relative; padding: 2.2rem 1.5rem 1.6rem; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; text-align: center; box-shadow: 0 12px 35px rgba(54,118,182,0.06); }
.price-card.featured { border-color: var(--blue); box-shadow: var(--shadow); transform: translateY(-9px); }
.plan-icon { width: 40px; height: 40px; display: grid; place-items: center; margin: 0 auto 1rem; border-radius: 12px; background: var(--blue-soft); color: var(--blue); font-weight: 800; }
.price-card h3 { margin: 0; font-size: 1rem; }
.badge { position: absolute; top: 0; left: 50%; transform: translate(-50%, -50%); padding: 0.25rem 0.75rem; border-radius: 999px; background: var(--blue); color: #fff; white-space: nowrap; font-size: 0.67rem; font-weight: 800; }
.price { margin: 0.65rem 0 0; font-size: 2.25rem; font-weight: 800; letter-spacing: -0.045em; line-height: 1.2; }
.price span { color: var(--muted); font-size: 0.82rem; font-weight: 700; letter-spacing: 0; }
.plan-note { min-height: 2.6rem; margin: 0.55rem 0 1.25rem; color: var(--muted); font-size: 0.78rem; font-weight: 600; }
.price-card .btn { width: 100%; }
.pricing-foot { margin: 1.4rem 0 0; color: var(--muted); text-align: center; font-size: 0.76rem; font-weight: 700; }

main > section.faq { border-top: 1px solid var(--line); padding-top: 3.5rem; padding-bottom: 3.5rem; }
.faq-layout { display: grid; grid-template-columns: 0.65fr 1.35fr; gap: 5rem; }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { position: relative; padding: 1.4rem 2.2rem 1.4rem 0; cursor: pointer; list-style: none; font-size: 0.98rem; font-weight: 800; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; position: absolute; right: 0; top: 1.25rem; width: 25px; height: 25px; display: grid; place-items: center; border-radius: 50%; background: var(--blue-soft); color: var(--blue); }
.faq-list details[open] summary::after { content: "−"; }
.faq-list p { margin: -0.45rem 2rem 1.35rem 0; color: var(--muted); font-size: 0.86rem; font-weight: 600; }

main > .download { width: min(1120px, calc(100% - 3rem)); margin-bottom: 7rem; padding: 5rem 1.5rem; overflow: hidden; position: relative; border: 1px solid rgba(54, 118, 182, 0.16); border-radius: 32px; background: linear-gradient(135deg, #e3f0f9, #f8fbfd 55%, #d9eaf7); text-align: center; }
.download::before, .download::after { content: ""; position: absolute; width: 280px; height: 280px; border: 1px solid rgba(54,118,182,0.13); border-radius: 50%; }
.download::before { left: -120px; bottom: -145px; }.download::after { right: -100px; top: -160px; }
.download-mark { width: 66px; height: 66px; display: grid; place-items: center; margin: 0 auto 1.5rem; border-radius: 18px; background: #fff; box-shadow: 0 14px 35px rgba(54, 118, 182, 0.14); }
.download-mark img { width: 53px; height: 53px; border-radius: 15px; }
.download h2 { position: relative; z-index: 1; max-width: 18em; margin-right: auto; margin-left: auto; white-space: pre-line; text-wrap: unset; }
.download > p:not(.section-kicker) { position: relative; z-index: 1; color: var(--muted); font-weight: 600; }
.download .btn { position: relative; z-index: 1; margin-top: 0.75rem; }
.site-footer { width: min(1120px, 100%); margin: 0 auto; padding: 3.5rem 1.5rem 2rem; display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; color: var(--muted); }
.footer-main p { margin: 0.8rem 0 0; font-size: 0.85rem; font-weight: 600; }
.footer-links { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; justify-self: end; min-width: 300px; }
.footer-links div { display: flex; flex-direction: column; gap: 0.55rem; }
.footer-links strong { margin-bottom: 0.3rem; color: var(--ink); font-size: 0.8rem; }
.footer-links a { color: var(--muted); font-size: 0.76rem; font-weight: 700; }
.footer-bottom { grid-column: 1 / -1; display: flex; justify-content: space-between; padding-top: 1.7rem; border-top: 1px solid var(--line); font-size: 0.7rem; font-weight: 600; }

.legal, .thanks { max-width: 640px; margin: 4rem auto; padding: 0 1.5rem; line-height: 1.7; }
.thanks-page { display: grid; place-items: center; min-height: 100vh; }
.thanks { text-align: center; }

@media (max-width: 980px) {
  .nav { display: none; }
  .menu-toggle { width: 39px; height: 39px; display: grid; place-items: center; padding: 0; border: 1px solid var(--line); border-radius: 50%; color: var(--blue); background: rgba(255, 255, 255, 0.7); cursor: pointer; }
  .menu-toggle-lines { width: 15px; display: grid; gap: 3px; }
  .menu-toggle-lines i { height: 2px; border-radius: 2px; background: currentColor; transition: transform 0.2s ease, opacity 0.2s ease; }
  .menu-toggle[aria-expanded="true"] .menu-toggle-lines i:first-child { transform: translateY(5px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] .menu-toggle-lines i:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] .menu-toggle-lines i:last-child { transform: translateY(-5px) rotate(-45deg); }
  .mobile-nav { width: min(1180px, 100%); margin: 0.65rem auto 0; padding: 0.8rem; border: 1px solid var(--line); border-radius: 18px; background: rgba(255, 255, 255, 0.96); box-shadow: 0 18px 38px rgba(42, 95, 148, 0.12); }
  .mobile-nav:not([hidden]) { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.35rem; }
  .mobile-nav a { padding: 0.65rem 0.75rem; border-radius: 10px; color: var(--muted); font-size: 0.85rem; font-weight: 800; }
  .mobile-nav a:hover { color: var(--blue); background: var(--blue-mist); text-decoration: none; }
  .mobile-nav .btn { color: #fff; }
  .hero { min-height: auto; padding-top: 3rem; }
  .hero-inner { grid-template-columns: 1fr; gap: 3.5rem; }
  .hero-copy { text-align: center; display: flex; flex-direction: column; align-items: center; }
  .hero h1 { max-width: 18em; }
  .hero-demo { width: min(660px, 100%); margin: 0 auto; }
  .faq-layout { gap: 2.5rem; }
}

@media (max-width: 760px) {
  .site-header { padding: 0.65rem 1rem; }
  .header-download { display: none; }
  .mobile-nav:not([hidden]) { grid-template-columns: 1fr 1fr; }
  .mobile-nav .btn { grid-column: 1 / -1; }
  .hero { min-height: 0; padding: 2.25rem 1rem 2.5rem; }
  .hero h1 { font-size: clamp(1.9rem, 6.4vw, 2.6rem); }
  .hero-cta { flex-direction: column; gap: 1rem; }
  .hero-notes { justify-content: center; }
  .hero-demo { padding-bottom: 2rem; }
  .window-layout { height: 235px; }
  .mock-content { padding: 22px 18px; }.mock-sidebar { padding: 18px 12px; }.mock-chart { height: 90px; }
  .taskbar-preview { left: -1%; right: -1%; bottom: 0.6rem; }
  .task-window { display: none; }.task-app { flex-basis: 37px; height: 37px; }.task-app img { width: 28px; height: 28px; }
  .demo-callout { right: 1%; top: 3%; }
  main > section:not(.hero, .product-shot) { padding: 5rem 1rem; }
  main > section.intro { padding-top: 1.75rem; padding-bottom: 1.25rem; }
  main > section.faq { padding-top: 2.5rem; padding-bottom: 2.5rem; }
  .product-shot { padding: 2.25rem 1rem 2.5rem; }
  .product-shot-frame { padding: 0.9rem 0.75rem; border-radius: 16px; }
  .feature-grid, .feature-card.feature-main, .faq-layout, .pricing-cards { grid-template-columns: 1fr; }
  .feature-card:last-child { grid-column: auto; }
  .feature-card.feature-main { gap: 2rem; }
  .privacy-band { grid-template-columns: 1fr; padding: 1.25rem 1.35rem; }
  .privacy-band .btn { justify-self: start; }
  .pricing { margin-top: 3rem !important; }.price-card.featured { transform: none; margin: 0.5rem 0; }
  main > .download { width: calc(100% - 2rem); margin-bottom: 4rem; }
  .site-footer { grid-template-columns: 1fr; }
  .footer-links { justify-self: stretch; min-width: 0; }
  .footer-bottom { flex-direction: column; gap: 0.4rem; }
}

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