:root {
  color-scheme: light dark;
  --bg: #f7f8fb;
  --surface: #ffffff;
  --surface-soft: #eef3f8;
  --text: #111827;
  --muted: #596579;
  --line: rgba(28, 39, 57, 0.14);
  --accent: #1677d2;
  --accent-strong: #075aa8;
  --green: #1b7f5f;
  --shadow: 0 24px 70px rgba(38, 52, 73, 0.18);
  --max: 1180px;
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #151719;
    --surface: #191c1f;
    --surface-soft: #20262d;
    --text: #f2f5f8;
    --muted: #a7b0bd;
    --line: rgba(219, 230, 244, 0.16);
    --accent: #59a9ff;
    --accent-strong: #88c2ff;
    --green: #64d2a1;
    --shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
  }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family:
    Inter,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    "Apple SD Gothic Neo",
    "Noto Sans KR",
    sans-serif;
  letter-spacing: 0;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 64px;
  padding: 0 32px;
  border-bottom: 1px solid var(--line);
  background: color-mix(in srgb, var(--bg) 86%, transparent);
  backdrop-filter: blur(18px);
}

.brand,
.nav-links,
.hero-actions {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  min-width: 260px;
  font-weight: 760;
}

.brand-icon {
  width: 28px;
  height: 28px;
  border-radius: 7px;
  box-shadow: 0 8px 18px rgba(22, 119, 210, 0.22);
}

.nav-links {
  gap: 6px;
  color: var(--muted);
  font-size: 14px;
}

.nav-links a,
.header-action,
.primary-action,
.secondary-action {
  border-radius: 7px;
  transition:
    background 160ms ease,
    border-color 160ms ease,
    color 160ms ease,
    transform 160ms ease;
}

.nav-links a {
  padding: 9px 11px;
  white-space: nowrap;
}

.nav-links a:hover {
  background: var(--surface-soft);
  color: var(--text);
}

.header-action {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: var(--text);
  color: var(--bg);
  font-size: 14px;
  font-weight: 720;
}

.hero {
  display: grid;
  grid-template-columns: minmax(320px, 0.86fr) minmax(520px, 1.14fr);
  align-items: start;
  gap: 42px;
  padding: 48px max(32px, calc((100vw - var(--max)) / 2)) 28px;
  overflow: hidden;
}

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

.eyebrow,
.section-kicker {
  margin: 0 0 16px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 800;
}

.hero h1,
.section-heading h2,
.dark-copy h2,
.final-cta h2 {
  margin: 0;
  font-weight: 820;
  line-height: 1.04;
}

.hero h1 {
  max-width: 720px;
  font-size: clamp(48px, 7vw, 92px);
}

.hero-copy-stage {
  display: grid;
}

.hero-copy-slide {
  grid-area: 1 / 1;
  opacity: 0;
  pointer-events: none;
  transform: translateY(14px);
  visibility: hidden;
  transition:
    opacity 560ms ease,
    transform 560ms ease,
    visibility 560ms step-end;
}

.hero-copy-slide.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  visibility: visible;
  transition:
    opacity 560ms ease,
    transform 560ms ease,
    visibility 0ms;
}

.hero-lede,
.hero-note,
.section-heading p,
.dark-copy p,
.final-cta p {
  color: var(--muted);
  line-height: 1.72;
}

.hero-lede {
  margin: 26px 0 0;
  max-width: 610px;
  color: color-mix(in srgb, var(--text) 88%, var(--muted));
  font-size: 22px;
  font-weight: 640;
}

.hero-note {
  margin: 14px 0 0;
  max-width: 560px;
  font-size: 17px;
}

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

.primary-action,
.secondary-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 46px;
  padding: 0 18px;
  font-weight: 760;
}

.primary-action {
  background: var(--accent);
  color: #ffffff;
}

.secondary-action {
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--text);
}

.button-icon {
  width: 21px;
  height: 21px;
  border-radius: 5px;
  flex: 0 0 auto;
}

.primary-action:hover,
.secondary-action:hover,
.header-action:hover {
  transform: translateY(-1px);
}

.hero-visual {
  margin: 0;
  width: min(58vw, 900px);
  transform: perspective(1200px) rotateY(-6deg) rotateX(2deg);
  transform-origin: center;
}

.hero-slider {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1280 / 724;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  background: var(--surface-soft);
}

.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.015);
  transition:
    opacity 680ms ease,
    transform 900ms ease;
}

.hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero-dots {
  display: flex;
  justify-content: center;
  gap: 9px;
  margin-top: 16px;
}

.hero-dots button {
  width: 30px;
  height: 4px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: color-mix(in srgb, var(--muted) 35%, transparent);
  cursor: pointer;
}

.hero-dots button.is-active {
  background: var(--accent);
}

.dark-visual img {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.switchers-section,
.product-facts-section,
.hotkey-section,
.trust-section,
.icon-cache-section,
.capabilities-section,
.git-checkout-section,
.multitab-section,
.dark-section,
.features-section,
.install-section,
.gratitude-section,
.feature-request-section,
.faq-section,
.final-cta {
  padding: 96px max(32px, calc((100vw - var(--max)) / 2));
}

.product-facts-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.76fr) minmax(460px, 1.24fr);
  align-items: start;
  gap: 54px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}

.product-facts-copy h2 {
  margin: 0;
  font-size: clamp(34px, 4.2vw, 58px);
  font-weight: 820;
  line-height: 1.05;
}

.product-facts-copy p {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.72;
}

.facts-table {
  margin: 0;
  border-top: 1px solid var(--line);
}

.facts-table div {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 26px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.facts-table dt {
  color: var(--accent);
  font-weight: 830;
}

.facts-table dd {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.58;
}

.switchers-section {
  padding-top: 162px;
}

.section-heading {
  max-width: 780px;
}

.section-heading h2,
.capability-intro h2,
.gratitude-copy h2,
.dark-copy h2,
.final-cta h2 {
  font-size: clamp(34px, 4.6vw, 62px);
}

.section-heading p,
.capability-intro p,
.gratitude-copy p,
.dark-copy p,
.final-cta p {
  margin: 20px 0 0;
  max-width: 720px;
  font-size: 18px;
}

.flow-list,
.proof-grid,
.feature-rows,
.install-steps {
  margin-top: 44px;
}

.flow-list,
.feature-rows,
.install-steps {
  border-top: 1px solid var(--line);
}

.flow-row,
.feature-rows > div,
.install-steps article {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 28px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.flow-row span,
.feature-rows span,
.install-steps span {
  color: var(--accent);
  font-weight: 800;
}

.flow-row strong {
  font-size: clamp(20px, 2.4vw, 30px);
  line-height: 1.34;
}

.hotkey-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.82fr) minmax(420px, 1.18fr);
  align-items: start;
  gap: 54px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}

.hotkey-copy h2,
.hotkey-page-hero h1 {
  margin: 0;
  font-size: clamp(34px, 4.5vw, 62px);
  font-weight: 820;
  line-height: 1.05;
}

.hotkey-copy p,
.hotkey-page-hero p,
.hotkey-intro p,
.hotkey-note p {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.72;
}

.hotkey-link {
  width: fit-content;
  margin-top: 28px;
}

.hotkey-summary {
  display: grid;
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.hotkey-summary article {
  display: grid;
  gap: 10px;
  padding: 26px;
  background: var(--bg);
}

.hotkey-summary span,
.hotkey-intro span,
.hotkey-table td:first-child,
.hotkey-status-list span {
  color: var(--accent);
  font-size: 13px;
  font-weight: 840;
}

.hotkey-summary strong {
  font-size: 22px;
  line-height: 1.32;
}

.hotkey-summary p {
  margin: 0;
  color: var(--muted);
  line-height: 1.62;
}

.hotkey-page {
  padding-bottom: 88px;
}

.hotkey-page-hero,
.hotkey-detail-section,
.hotkey-note {
  padding: 88px max(32px, calc((100vw - var(--max)) / 2));
}

.hotkey-page-hero {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(360px, 1.1fr);
  align-items: end;
  gap: 48px;
  border-bottom: 1px solid var(--line);
}

.hotkey-intro {
  display: grid;
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.hotkey-intro article {
  padding: 24px;
  background: var(--surface);
}

.hotkey-intro strong {
  display: block;
  margin-top: 8px;
  font-size: 22px;
}

.hotkey-intro p {
  margin-top: 10px;
  font-size: 16px;
}

.hotkey-detail-section {
  border-bottom: 1px solid var(--line);
}

.hotkey-detail-section:nth-of-type(even) {
  background: var(--surface);
}

.hotkey-detail-heading {
  max-width: 780px;
}

.hotkey-detail-heading h2,
.hotkey-note h2 {
  margin: 0;
  font-size: clamp(30px, 3.8vw, 52px);
  font-weight: 820;
  line-height: 1.08;
}

.hotkey-detail-heading p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.68;
}

.hotkey-table-wrap {
  margin-top: 34px;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.hotkey-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
}

.hotkey-table th,
.hotkey-table td {
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.hotkey-table th {
  background: var(--surface-soft);
  color: var(--text);
  font-size: 14px;
  font-weight: 820;
}

.hotkey-table tr:last-child td {
  border-bottom: 0;
}

.hotkey-table td {
  color: var(--muted);
  line-height: 1.58;
}

kbd {
  display: inline-block;
  min-width: 1.7em;
  margin: 0 2px 3px 0;
  padding: 3px 7px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--bg);
  color: var(--text);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 0.92em;
  font-weight: 720;
  line-height: 1.35;
  text-align: center;
  white-space: nowrap;
}

.hotkey-status-list {
  display: grid;
  gap: 1px;
  margin-top: 34px;
  border: 1px solid var(--line);
  background: var(--line);
}

.hotkey-status-list article {
  display: grid;
  grid-template-columns: 210px 1fr;
  gap: 24px;
  padding: 22px;
  background: var(--surface);
}

.hotkey-status-list strong {
  display: block;
  margin-bottom: 8px;
  font-size: 19px;
}

.hotkey-status-list p {
  margin: 0;
  color: var(--muted);
  line-height: 1.62;
}

.hotkey-comparison-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin-top: 34px;
  border: 1px solid var(--line);
  background: var(--line);
}

.hotkey-comparison-grid article {
  padding: 26px;
  background: var(--surface);
}

.hotkey-comparison-grid h3 {
  margin: 0;
  font-size: 23px;
}

.hotkey-comparison-grid p {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.64;
}

.hotkey-note {
  background: var(--surface-soft);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.proof-grid article {
  min-height: 220px;
  padding: 30px 26px;
  background: var(--surface);
}

.proof-grid h3 {
  margin: 0;
  font-size: 21px;
}

.proof-grid p,
.feature-rows p {
  margin: 16px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.icon-cache-section {
  display: grid;
  grid-template-columns: minmax(440px, 1.12fr) minmax(320px, 0.88fr);
  align-items: center;
  gap: 54px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(180deg, color-mix(in srgb, var(--surface) 76%, transparent), transparent 48%),
    var(--surface-soft);
}

.icon-cache-visual {
  margin: 0;
}

.icon-cache-visual img {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.icon-cache-visual figcaption {
  margin-top: 14px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.icon-cache-copy h2 {
  margin: 0;
  font-size: clamp(34px, 4.4vw, 60px);
  font-weight: 820;
  line-height: 1.05;
}

.icon-cache-copy p {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.72;
}

.icon-cache-points {
  display: grid;
  gap: 18px;
  margin-top: 34px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.icon-cache-points div {
  display: grid;
  gap: 7px;
}

.icon-cache-points strong {
  font-size: 18px;
}

.icon-cache-points span {
  color: var(--muted);
  line-height: 1.58;
}

.capabilities-section {
  background: var(--surface);
}

.capability-intro {
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) minmax(320px, 1.15fr);
  gap: 40px;
  align-items: end;
}

.capability-intro h2 {
  margin: 0;
  font-weight: 820;
  line-height: 1.04;
}

.capability-intro p {
  color: var(--muted);
  line-height: 1.72;
}

.capability-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin-top: 44px;
  border: 1px solid var(--line);
  background: var(--line);
}

.capability-list article {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 20px;
  min-height: 166px;
  padding: 28px;
  background: var(--surface);
}

.capability-list span {
  color: var(--accent);
  font-size: 14px;
  font-weight: 840;
}

.capability-list h3 {
  margin: 0;
  font-size: 23px;
}

.capability-list p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.66;
}

.git-checkout-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.86fr) minmax(430px, 1.14fr);
  align-items: center;
  gap: 54px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(180deg, color-mix(in srgb, var(--surface-soft) 72%, transparent), transparent 42%),
    var(--bg);
}

.git-checkout-copy h2 {
  margin: 0;
  font-size: clamp(34px, 4.4vw, 60px);
  font-weight: 820;
  line-height: 1.05;
}

.git-checkout-copy p {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.72;
}

.git-checkout-points {
  display: grid;
  gap: 18px;
  margin-top: 34px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.git-checkout-points div {
  display: grid;
  gap: 7px;
}

.git-checkout-points strong {
  font-size: 18px;
}

.git-checkout-points span {
  color: var(--muted);
  line-height: 1.58;
}

.git-checkout-visuals {
  display: grid;
  gap: 18px;
  align-items: start;
}

.git-checkout-shot {
  margin: 0;
}

.git-checkout-shot img {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #151719;
  box-shadow: var(--shadow);
}

.git-checkout-menu-shot {
  width: min(100%, 430px);
  justify-self: end;
}

.git-checkout-menu-shot img {
  max-height: 620px;
  object-fit: contain;
}

.git-checkout-list-shot {
  width: 100%;
}

.git-checkout-shot figcaption {
  margin-top: 12px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.multitab-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.78fr) minmax(420px, 1.22fr);
  align-items: center;
  gap: 48px;
}

.multitab-copy h2 {
  margin: 0;
  font-size: clamp(34px, 4.6vw, 62px);
  font-weight: 820;
  line-height: 1.04;
}

.multitab-copy p {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.72;
}

.multitab-points {
  display: grid;
  gap: 18px;
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.multitab-points div {
  display: grid;
  gap: 6px;
}

.multitab-points strong {
  font-size: 18px;
}

.multitab-points span {
  color: var(--muted);
  line-height: 1.58;
}

.multitab-visual {
  margin: 0;
}

.multitab-frame {
  position: relative;
  display: grid;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface-soft);
  box-shadow: var(--shadow);
}

.multitab-slide {
  grid-area: 1 / 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0;
  transform: scale(1.01);
  transition:
    opacity 720ms ease,
    transform 720ms ease;
}

.multitab-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.multitab-visual figcaption {
  margin-top: 14px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.dark-section {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  align-items: center;
  gap: 48px;
  background:
    radial-gradient(circle at 12% 10%, rgba(22, 119, 210, 0.18), transparent 28%),
    #121416;
  color: #f4f7fb;
}

.dark-section .section-kicker,
.dark-section .dark-copy p,
.check-list {
  color: #b8c5d6;
}

.dark-section .section-kicker {
  color: #8cc8ff;
}

.check-list {
  display: grid;
  gap: 14px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  line-height: 1.5;
}

.check-list li {
  position: relative;
  padding-left: 28px;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 14px;
  height: 8px;
  border: solid #64d2a1;
  border-width: 0 0 2px 2px;
  transform: rotate(-45deg);
}

.dark-visual {
  margin: 0;
}

.feature-rows > div {
  align-items: start;
}

.feature-rows p {
  margin-top: 0;
  font-size: 19px;
}

.install-section {
  background: var(--surface-soft);
}

.download-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-top: 44px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.download-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 7px;
  background: var(--accent);
  color: #ffffff;
  font-weight: 800;
  white-space: nowrap;
  transition:
    background 160ms ease,
    transform 160ms ease;
}

.download-icon {
  width: 30px;
  height: 30px;
  border-radius: 7px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.18);
  flex: 0 0 auto;
}

.download-button:hover {
  background: var(--accent-strong);
  transform: translateY(-1px);
}

.download-panel p {
  max-width: 640px;
  margin: 0;
  color: var(--muted);
  line-height: 1.66;
}

.install-steps article {
  align-items: start;
}

.install-steps h3 {
  margin: 0;
  font-size: 24px;
}

.install-steps p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.66;
}

.install-steps code {
  display: block;
  width: 100%;
  margin-top: 14px;
  padding: 14px 16px;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--surface);
  color: var(--text);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 14px;
  line-height: 1.5;
  white-space: nowrap;
}

.gratitude-section {
  position: relative;
  overflow: hidden;
  background: var(--surface);
}

.feature-request-section {
  background: var(--surface-soft);
}

.faq-section {
  background: var(--surface);
}

.faq-list {
  display: grid;
  gap: 0;
  margin-top: 44px;
  border-top: 1px solid var(--line);
}

.faq-item {
  display: grid;
  grid-template-columns: minmax(240px, 0.78fr) minmax(320px, 1.22fr);
  gap: 36px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.faq-item h3 {
  margin: 0;
  font-size: 22px;
  line-height: 1.28;
}

.faq-item p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.68;
}

.gratitude-copy {
  max-width: 790px;
}

.gratitude-copy h2 {
  margin: 0;
  font-weight: 820;
  line-height: 1.04;
}

.gratitude-copy p {
  color: var(--muted);
  line-height: 1.72;
}

.gratitude-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(360px, 1.1fr);
  gap: 1px;
  margin-top: 44px;
  border: 1px solid var(--line);
  background: var(--line);
}

.gratitude-form,
.gratitude-wall {
  padding: 30px;
  background: var(--surface);
}

.gratitude-form {
  display: grid;
  gap: 12px;
}

.gratitude-form label {
  color: var(--text);
  font-size: 14px;
  font-weight: 780;
}

.gratitude-form input,
.gratitude-form select,
.gratitude-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--bg);
  color: var(--text);
  font: inherit;
}

.gratitude-form input,
.gratitude-form select {
  min-height: 44px;
  padding: 0 12px;
}

.gratitude-form textarea {
  min-height: 132px;
  padding: 12px;
  resize: vertical;
}

.gratitude-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

.gratitude-actions button {
  border: 0;
  cursor: pointer;
  font: inherit;
}

.gratitude-actions button:disabled {
  cursor: progress;
  opacity: 0.65;
}

.heart-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 7px;
  background: color-mix(in srgb, var(--green) 16%, var(--surface));
  color: var(--green);
  font-weight: 800;
}

.heart-button strong {
  min-width: 42px;
  padding: 4px 8px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--green) 18%, transparent);
  font-size: 13px;
  line-height: 1;
  text-align: center;
}

.storage-note {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.storage-note[data-mode="shared"] {
  color: var(--green);
}

.storage-note[data-mode="local"] {
  color: var(--muted);
}

.wall-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.wall-header h3 {
  margin: 0;
  font-size: 24px;
}

.wall-header button {
  border: 0;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font: inherit;
  font-weight: 760;
}

.gratitude-list {
  display: grid;
  gap: 14px;
  max-height: 430px;
  margin-top: 18px;
  overflow: auto;
}

.gratitude-entry {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--bg);
}

.gratitude-entry header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
}

.gratitude-entry strong {
  color: var(--text);
}

.gratitude-entry span {
  color: var(--accent);
  font-size: 13px;
  font-weight: 800;
}

.gratitude-entry time {
  color: var(--muted);
  font-size: 12px;
}

.gratitude-entry p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.empty-gratitude {
  color: var(--muted);
  line-height: 1.6;
}

.heart-float {
  position: fixed;
  z-index: 30;
  pointer-events: none;
  color: #f0517a;
  font-size: 24px;
  font-weight: 900;
  animation: heart-rise 1100ms ease-out forwards;
}

@keyframes heart-rise {
  from {
    opacity: 0;
    transform: translate3d(0, 8px, 0) scale(0.8);
  }

  20% {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(var(--heart-drift), -96px, 0) scale(1.4);
  }
}

.final-cta {
  text-align: center;
}

.final-cta p {
  margin-left: auto;
  margin-right: auto;
}

.final-cta .primary-action {
  margin-top: 30px;
}

.site-footer {
  padding: 28px 32px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  text-align: center;
}

.site-footer p {
  margin: 0;
  font-size: 14px;
}

.app-catalog-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(460px, 1.18fr);
  align-items: center;
  gap: 54px;
  padding: 104px max(32px, calc((100vw - var(--max)) / 2));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}

.app-catalog-copy h2,
.apps-page-copy h1,
.app-release-section h2,
.mspaint-hero-copy h1,
.mspaint-download-section h2 {
  margin: 0;
  font-weight: 820;
  line-height: 1.04;
}

.app-catalog-copy h2,
.apps-page-copy h1,
.app-release-section h2,
.mspaint-download-section h2 {
  font-size: clamp(34px, 4.6vw, 62px);
}

.app-catalog-copy p,
.apps-page-copy p,
.app-release-section p,
.mspaint-download-section p {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.72;
}

.app-catalog-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.app-catalog-visual {
  margin: 0;
}

.app-catalog-visual img,
.app-directory-row figure img,
.mspaint-screen-grid img {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface-soft);
  box-shadow: var(--shadow);
}

.app-catalog-visual figcaption,
.app-directory-row figcaption,
.mspaint-screen-grid figcaption {
  margin-top: 14px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.apps-page-hero {
  display: grid;
  grid-template-columns: minmax(320px, 0.96fr) minmax(360px, 1.04fr);
  align-items: end;
  gap: 48px;
  padding: 96px max(32px, calc((100vw - var(--max)) / 2)) 84px;
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}

.apps-page-copy {
  max-width: 760px;
}

.apps-hero-strip {
  display: grid;
  grid-template-columns: repeat(2, 72px) repeat(2, minmax(0, 1fr));
  align-items: center;
  gap: 18px;
  padding: 22px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.apps-hero-strip img {
  width: 58px;
  height: 58px;
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(22, 119, 210, 0.16);
}

.apps-hero-strip span {
  color: var(--text);
  font-size: clamp(20px, 2.4vw, 30px);
  font-weight: 820;
  line-height: 1.2;
}

.app-directory-section,
.app-release-section,
.mspaint-facts-section,
.mspaint-detail-section,
.mspaint-screens-section,
.mspaint-download-section {
  padding: 96px max(32px, calc((100vw - var(--max)) / 2));
}

.app-directory-section {
  background: var(--bg);
}

.app-directory-row {
  display: grid;
  grid-template-columns: minmax(220px, 0.68fr) minmax(260px, 1fr) minmax(220px, 0.72fr);
  align-items: center;
  gap: 32px;
  margin-top: 44px;
  padding: 32px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.app-directory-title {
  display: flex;
  align-items: center;
  gap: 18px;
}

.app-directory-title img {
  width: 64px;
  height: 64px;
  border-radius: 8px;
  box-shadow: 0 12px 26px rgba(28, 39, 57, 0.16);
}

.app-directory-title span {
  color: var(--accent);
  font-size: 13px;
  font-weight: 840;
}

.app-directory-title h3 {
  margin: 6px 0 0;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.08;
}

.app-directory-row > p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.68;
}

.app-directory-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.app-directory-row figure {
  grid-column: 1 / -1;
  margin: 10px 0 0;
}

.app-release-section {
  border-top: 1px solid var(--line);
  background: var(--surface-soft);
}

.app-release-section a,
.mspaint-download-section a:not(.primary-action) {
  color: var(--accent);
  font-weight: 780;
}

.mspaint-hero {
  position: relative;
  min-height: min(760px, calc(78svh - 64px));
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding: 92px max(32px, calc((100vw - var(--max)) / 2)) 70px;
  background: #050607;
  color: #ffffff;
}

.mspaint-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 6, 7, 0.86) 0%, rgba(5, 6, 7, 0.58) 34%, rgba(5, 6, 7, 0.08) 78%),
    linear-gradient(180deg, rgba(5, 6, 7, 0.08) 0%, rgba(5, 6, 7, 0.48) 100%);
}

.mspaint-hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.mspaint-hero-copy {
  position: relative;
  z-index: 1;
  max-width: 680px;
}

.mspaint-hero-copy .eyebrow {
  color: #8fd0ff;
}

.mspaint-hero-copy h1 {
  font-size: clamp(48px, 7vw, 92px);
}

.mspaint-hero-copy p {
  margin: 24px 0 0;
  max-width: 620px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 20px;
  line-height: 1.68;
}

.mspaint-hero-copy .secondary-action {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
}

.mspaint-facts-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.76fr) minmax(460px, 1.24fr);
  align-items: start;
  gap: 54px;
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}

.mspaint-detail-section {
  background: var(--bg);
}

.mspaint-feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin-top: 44px;
  border: 1px solid var(--line);
  background: var(--line);
}

.mspaint-feature-list article {
  min-height: 174px;
  padding: 28px;
  background: var(--surface);
}

.mspaint-feature-list span {
  color: var(--accent);
  font-size: 13px;
  font-weight: 840;
}

.mspaint-feature-list h3 {
  margin: 12px 0 0;
  font-size: 23px;
}

.mspaint-feature-list p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.66;
}

.mspaint-screens-section {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--surface-soft);
}

.mspaint-screen-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 44px;
}

.mspaint-screen-grid figure {
  margin: 0;
}

.mspaint-download-section {
  background: var(--surface);
}

.mspaint-download-section p {
  max-width: 760px;
}

.mspaint-download-section .primary-action {
  width: fit-content;
  margin-top: 28px;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 520ms ease,
    transform 520ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.001ms !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
  }
}

@media (max-width: 980px) {
  .site-header {
    position: static;
    flex-wrap: wrap;
    padding: 18px 22px;
  }

  .brand {
    min-width: 0;
  }

  .nav-links {
    order: 3;
    width: 100%;
    overflow-x: auto;
  }

  .hero,
  .dark-section,
  .capability-intro,
  .product-facts-section,
  .hotkey-section,
  .hotkey-page-hero,
  .apps-page-hero,
  .app-catalog-section,
  .app-directory-row,
  .mspaint-facts-section,
  .icon-cache-section,
  .git-checkout-section,
  .multitab-section,
  .gratitude-grid,
  .mspaint-screen-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 56px;
    padding-bottom: 24px;
  }

  .hero-visual {
    width: 100%;
    transform: none;
  }

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

  .capability-list {
    grid-template-columns: 1fr;
  }

  .hotkey-comparison-grid {
    grid-template-columns: 1fr;
  }

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

  .git-checkout-menu-shot {
    width: min(100%, 520px);
    justify-self: start;
  }

  .mspaint-hero {
    min-height: 640px;
  }

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

@media (max-width: 760px) {
  .facts-table div,
  .faq-item,
  .hotkey-status-list article {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .facts-table dd,
  .faq-item p {
    font-size: 16px;
  }

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

  .apps-hero-strip img {
    justify-self: center;
  }

  .apps-hero-strip span {
    font-size: 18px;
    text-align: center;
  }
}

@media (max-width: 640px) {
  .site-header,
  .hero,
  .product-facts-section,
  .switchers-section,
  .trust-section,
  .hotkey-section,
  .hotkey-page-hero,
  .hotkey-detail-section,
  .hotkey-note,
  .icon-cache-section,
  .capabilities-section,
  .git-checkout-section,
  .multitab-section,
  .dark-section,
  .features-section,
  .install-section,
  .gratitude-section,
  .feature-request-section,
  .faq-section,
  .apps-page-hero,
  .app-catalog-section,
  .app-directory-section,
  .app-release-section,
  .mspaint-hero,
  .mspaint-facts-section,
  .mspaint-detail-section,
  .mspaint-screens-section,
  .mspaint-download-section,
  .final-cta {
    padding-left: 20px;
    padding-right: 20px;
  }

  .header-action {
    display: none;
  }

  .hero h1 {
    font-size: 44px;
  }

  .mspaint-hero-copy h1 {
    max-width: 100%;
    font-size: 36px;
    line-height: 1.08;
  }

  .hero-lede {
    font-size: 18px;
  }

  .switchers-section {
    padding-top: 117px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .flow-row,
  .feature-rows > div,
  .install-steps article {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .app-directory-actions,
  .app-catalog-actions {
    align-items: stretch;
    flex-direction: column;
  }

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

  .capability-list article {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 24px;
  }

  .git-checkout-menu-shot {
    width: 100%;
  }

  .gratitude-form,
  .gratitude-wall {
    padding: 24px;
  }
}
