@charset "UTF-8";
:root {
  color-scheme: light;
  --bg: #f6ead8;
  --surface: #fff7eb;
  --surface-2: #f3e3cd;
  --text: #3f2615;
  --muted: #7b5b42;
  --border: #dfc8ab;
  --accent: #8a4f23;
  --accent-hover: #6d3310;
  --max-width: 1060px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

picture,
img {
  max-width: 100%;
}

img {
  height: auto;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  background-color: var(--bg);
  background-image: linear-gradient(145deg, #f9eddd 0%, #f2dec2 45%, #efd6b8 70%, #f7e7d0 100%);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
}

html {
  scroll-padding-top: 5.25rem;
}

a {
  color: var(--accent);
}

a:hover,
a:focus-visible {
  color: var(--accent-hover);
}

a:visited {
  color: #6d3d1a;
}

.container {
  width: min(var(--max-width), 100% - 2rem);
  margin: 0 auto;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: 1px solid var(--border);
  background: rgba(255, 247, 235, 0.82);
  backdrop-filter: blur(8px);
  position: sticky;
  top: 0;
  z-index: 50;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  text-decoration: none;
  color: var(--text);
}

.brand__icon {
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 0.3rem;
  flex: 0 0 auto;
}

.brand__icon-wrap {
  display: inline-flex;
  line-height: 0;
}

.site-nav {
  display: flex;
  align-items: center;
  position: relative;
}

.site-nav__menu {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.site-nav a,
.site-nav summary {
  text-decoration: none;
  color: var(--accent);
}

.site-nav__toggle {
  display: none;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 0.7rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--surface);
  color: var(--accent);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.site-nav__toggle::after {
  content: "▾";
  display: inline-block;
  font-size: 0.8em;
}

.site-nav.is-open .site-nav__toggle::after {
  transform: rotate(180deg);
}

.site-nav summary {
  list-style: none;
  cursor: pointer;
}

.site-nav summary::-webkit-details-marker {
  display: none;
}

.site-nav__group {
  position: relative;
}

.site-nav__group > summary::after {
  content: " ▾";
  font-size: 0.8em;
  margin-left: 0.2rem;
}

.site-nav__submenu {
  position: absolute;
  top: calc(100% + 0.45rem);
  left: 0;
  min-width: 13rem;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 0.45rem;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: rgba(255, 247, 235, 0.98);
  box-shadow: 0 10px 18px rgba(61, 35, 16, 0.14);
  z-index: 60;
}

.site-nav__submenu a {
  padding: 0.28rem 0.45rem;
  border-radius: 6px;
}

.site-nav__submenu a:hover,
.site-nav__submenu a:focus-visible {
  background: rgba(138, 79, 35, 0.12);
}

.site-nav__group:not([open]) .site-nav__submenu {
  display: none;
}

@media (max-width: 767px) {
  .site-header {
    align-items: center;
    gap: 1rem;
  }
  .site-nav {
    flex: 0 0 auto;
  }
  .site-nav__toggle {
    display: inline-flex;
  }
  .site-nav__menu {
    position: absolute;
    top: calc(100% + 0.55rem);
    right: 0;
    width: min(100vw - 2rem, 21rem);
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0.2rem;
    padding: 0.55rem;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: rgba(255, 247, 235, 0.98);
    box-shadow: 0 14px 24px rgba(61, 35, 16, 0.16);
    z-index: 70;
  }
  .site-nav.is-open .site-nav__menu {
    display: flex;
  }
  .site-nav__menu > a,
  .site-nav__group > summary {
    display: block;
    padding: 0.45rem 0.55rem;
    border-radius: 8px;
  }
  .site-nav__menu > a:hover,
  .site-nav__menu > a:focus-visible,
  .site-nav__group > summary:hover,
  .site-nav__group > summary:focus-visible {
    background: rgba(138, 79, 35, 0.12);
  }
  .site-nav__group > summary {
    display: block;
  }
  .site-nav__submenu {
    position: static;
    margin-top: 0.4rem;
    min-width: 0;
    width: 100%;
    padding: 0.35rem 0.45rem 0.4rem 0.9rem;
    border-radius: 10px;
    box-shadow: none;
  }
}
.hero {
  padding: 3rem 0 3.2rem;
  text-align: center;
  position: relative;
}

.hero h1 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  flex-wrap: wrap;
  margin: 0 0 2rem;
}

.hero-title__icon {
  width: clamp(2rem, 3.8vw, 2.8rem);
  height: auto;
  border-radius: 0.6rem;
  vertical-align: middle;
}

.hero-title__icon-wrap {
  display: inline-flex;
  line-height: 0;
}

.coming-soon-banner {
  margin: 1.2rem auto 1.2rem auto;
  width: 100%;
  padding: 1.3rem 1rem 1.2rem;
  border: 1px solid rgba(95, 52, 26, 0.28);
  border-radius: 16px;
  background: rgba(255, 246, 232, 0.95);
  text-align: center;
  opacity: 0;
  animation: coming-soon-fade-in 1.2s linear forwards;
}

.coming-soon-banner h2 {
  margin: 0;
  font-size: clamp(1.8rem, 5vw, 3.1rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.coming-soon-banner a {
  display: inline-block;
  margin-top: 0.45rem;
  font-size: 1.02rem;
  font-weight: 600;
}

@keyframes coming-soon-fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.hero-video-wrap {
  position: relative;
  display: block;
  margin: 0 auto;
  border: 1px solid #d9b992;
  border-radius: 18px;
  overflow: hidden;
  background: #2d1a12;
  box-shadow: 0 22px 44px rgba(88, 47, 22, 0.16);
}

.hero-video-wrap picture {
  display: block;
}

.hero-video-trigger {
  display: block;
  width: min(100%, 1100px);
  margin: 1.5rem auto 0;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  text-align: inherit;
}

.hero-video {
  display: block;
  width: 100%;
  height: auto;
}

.hero-video-play {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.34));
  color: #fff;
  font-size: clamp(1.9rem, 3.4vw, 2.8rem);
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.hero-video-play .hero-video-play__icon {
  display: grid;
  place-items: center;
  width: clamp(3.2rem, 7vw, 4.4rem);
  aspect-ratio: 1;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.48);
  padding-left: 0.16em;
}

.hero-video-play .hero-video-play__icon::before {
  content: "";
  width: 0;
  height: 0;
  border-top: 0.55em solid transparent;
  border-bottom: 0.55em solid transparent;
  border-left: 0.8em solid currentColor;
  margin-left: 0.18em;
}

.hero-video-trigger:hover .hero-video-play,
.hero-video-trigger:focus-visible .hero-video-play {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.22));
}

.hero-video-trigger:focus-visible {
  outline: 2px solid #6ea8ff;
  outline-offset: 6px;
  border-radius: 20px;
}

.intro {
  color: var(--muted);
  max-width: 70ch;
  margin: 0 auto;
}

.purchase-cta {
  margin-top: 1.4rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.6rem 0.9rem;
}

.purchase-cta--page-top {
  margin-top: 0.8rem;
  justify-content: flex-start;
}

.purchase-cta--home-bottom {
  margin-top: 0.4rem;
}

.store-button {
  display: inline-flex;
}

.store-button img {
  width: auto;
  max-width: 100%;
  height: auto;
}

@media (max-width: 597px) {
  .purchase-cta .store-button {
    flex: 0 1 40%;
    max-width: 40%;
  }
  .purchase-cta .store-button picture {
    display: block;
    width: 100%;
  }
  .purchase-cta .store-button img {
    display: block;
    width: 100%;
    height: auto;
  }
}
h1,
h2,
h3 {
  line-height: 1.2;
}

.features,
.newsletter-signup,
.platform-notes,
.screenshots,
.terminal-example,
.page {
  padding: 1rem 0 2rem;
}

.newsletter-signup {
  text-align: center;
}

.newsletter-signup p {
  color: var(--muted);
  margin-bottom: 1rem;
}

.newsletter-form {
  width: min(100%, 30rem);
  margin: 0 auto;
  padding: 1rem 1rem 1.1rem;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: rgba(255, 246, 232, 0.9);
  text-align: left;
}

.newsletter-form label {
  font-weight: 600;
  font-size: 0.92rem;
}

.newsletter-form input[type=text],
.newsletter-form input[type=email] {
  width: 100%;
  margin: 0.3rem 0 0.65rem;
  padding: 0.58rem 0.64rem;
  border: 1px solid rgba(95, 52, 26, 0.28);
  border-radius: 8px;
  background: rgba(255, 252, 247, 0.94);
  color: var(--text);
}

.newsletter-form__details {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

.newsletter-form__details summary {
  color: var(--text);
  cursor: pointer;
  font-weight: 600;
}

.newsletter-form__details p {
  margin: 0.45rem 0 0;
}

.newsletter-form input[type=submit] {
  margin-top: 0.3rem;
  border: 1px solid #7d4a24;
  border-radius: 999px;
  background: #8a4f23;
  color: #fff3e6;
  padding: 0.5rem 1rem;
  font-weight: 600;
  cursor: pointer;
}

.newsletter-form input[type=submit]:hover,
.newsletter-form input[type=submit]:focus-visible {
  background: #6d3310;
  border-color: #6d3310;
}

.page {
  background: rgba(255, 248, 237, 0.9);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 1.25rem;
  margin: 1rem auto 2rem auto;
  min-height: 60vh;
  position: relative;
  overflow: hidden;
}

.feature-grid,
.platform-note-list {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.9rem;
  width: min(100%, 72rem);
}

.feature-card {
  background: rgba(255, 246, 232, 0.9);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 0.95rem 1.05rem;
  width: 100%;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.feature-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 20px rgba(112, 68, 36, 0.12);
}

.feature-card__icon {
  width: 2rem;
  height: 2rem;
  flex: 0 0 2rem;
  border-radius: 999px;
  border: 1px solid rgba(95, 52, 26, 0.22);
  background: rgba(255, 240, 216, 0.9);
  display: inline-grid;
  place-items: center;
  color: #7e4d2b;
  margin-top: 0.02rem;
}

.feature-card__svg {
  width: 1.1rem;
  height: 1.1rem;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.feature-card__text {
  display: block;
}

.screenshot-intro {
  color: var(--muted);
}

.screenshot-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
}

.screenshot-card {
  margin: 0;
  background: rgba(255, 247, 235, 0.92);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}

.screenshot-card img {
  display: block;
  width: 100%;
  height: auto;
}

.screenshot-card figcaption {
  padding: 0.55rem 0.75rem 0.7rem;
  color: var(--muted);
  font-size: 0.92rem;
}

blockquote {
  margin: 1.25rem 0;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(223, 200, 171, 0.82);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.34);
  color: var(--text);
}

blockquote > :first-child {
  margin-top: 0;
}

blockquote > :last-child {
  margin-bottom: 0;
}

pre {
  background: #1f1712;
  border: 1px solid #4a3426;
  border-radius: 10px;
  padding: 1rem;
  overflow-x: auto;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

code,
pre {
  font-family: "SFMono-Regular", Menlo, Consolas, Monaco, monospace;
  font-size: 0.93rem;
}

pre code {
  color: #f2e7da;
}

:not(pre) > code {
  background: rgba(95, 52, 26, 0.12);
  border-radius: 5px;
  padding: 0.1rem 0.35rem;
  color: #55321c;
}

.highlight {
  margin: 0 0 1rem;
  background: #1f1712;
  border: 1px solid #4a3426;
  border-radius: 10px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.highlight pre {
  margin: 0;
  padding: 1rem;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.highlight pre code {
  color: #f2e7da;
}

.highlight .k,
.highlight .kd,
.highlight .kt,
.highlight .nb {
  color: #9dd5ff;
}

.highlight .s,
.highlight .s1,
.highlight .s2 {
  color: #f4dd9f;
}

.highlight .m,
.highlight .mi,
.highlight .mf {
  color: #b6f0c2;
}

.highlight .c,
.highlight .c1 {
  color: #9a8c80;
}

.highlight .nv,
.highlight .n,
.highlight .na {
  color: #f2e7da;
}

.docs-link {
  text-align: center;
}

.widget-float-stage {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: clamp(0.75rem, 2.5vw, 2rem);
  width: 100%;
  max-width: min(60vw, 760px);
  min-height: clamp(150px, 20vh, 280px);
  margin: 6rem auto 4.6rem;
  pointer-events: none;
  z-index: 0;
}

.widget-float-stage.webkit-repaint-pass {
  transform: translateZ(0);
  will-change: transform;
}

.hero > * {
  position: relative;
  z-index: 1;
}

.widget-float {
  position: relative;
  display: block;
  --shadow-bleed: clamp(14px, 2.2vw, 28px);
  --float-start-transform: rotate(0deg);
  --float-final-transform: rotate(0deg);
  --float-overshoot-transform: rotate(0deg);
  padding: var(--shadow-bleed);
  box-sizing: border-box;
  transform-origin: center;
  transform: var(--float-final-transform);
  transition: transform 240ms ease;
}

.widget-float__image {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  background: transparent;
  filter: drop-shadow(0 18px 24px rgba(88, 47, 22, 0.2));
  transition: filter 240ms ease;
}

.is-webkit-engine .widget-float {
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  will-change: transform;
}

.is-webkit-engine .widget-float__image {
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  will-change: filter;
}

.widget-float-stage .widget-float--small {
  width: clamp(72px, 11vw, 240px);
  align-self: flex-start;
  margin-top: 0.35rem;
  --float-start-transform: translateX(100%) scale(1.8) rotate(-5deg);
  --float-final-transform: translateX(0%) scale(2) rotate(-20deg);
  --float-overshoot-transform: translateX(-30%) scale(2.3) rotate(-30deg);
}

.widget-float-stage .widget-float--medium {
  width: clamp(120px, 20vw, 320px);
  --float-start-transform: scale(1.8) rotate(-3deg);
  --float-final-transform: scale(2) rotate(0deg);
  --float-overshoot-transform: scale(2.3) rotate(13deg);
}

.widget-float-stage .widget-float--large {
  width: clamp(90px, 18vw, 200px);
  align-self: center;
  margin-bottom: 0.45rem;
  --float-start-transform: scale(1.8) translateX(-30%) rotate(5deg);
  --float-final-transform: scale(2) translateX(0%) rotate(20deg);
  --float-overshoot-transform: scale(2.3) translateX(20%) rotate(30deg);
  z-index: -1;
}

.widget-showcase {
  margin-top: 0.8rem;
}

.widget-showcase > p {
  color: var(--muted);
  max-width: 64ch;
}

.widget-showcase-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  margin-top: 0.9rem;
}

@media (min-width: 724px) {
  .widget-showcase-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
.widget-showcase-card {
  margin: 0;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: rgba(255, 247, 235, 0.95);
  padding: 1rem;
  text-align: center;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.widget-showcase-card img {
  width: 100%;
  max-width: 320px;
  height: auto;
}

.widget-showcase-card--link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.9rem;
  min-height: 100%;
  text-decoration: none;
  color: var(--text);
}

.widget-showcase-icon {
  width: 4.2rem;
  height: 4.2rem;
  border-radius: 14px;
  border: 1px solid rgba(95, 52, 26, 0.22);
  background: rgba(255, 240, 216, 0.85);
  display: grid;
  place-items: center;
}

.widget-showcase-icon svg {
  width: 2.5rem;
  height: 2.5rem;
  fill: none;
  stroke: currentColor;
  color: #7e4d2b;
  stroke-width: 2.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.widget-showcase-link-label {
  font-weight: 600;
  color: var(--text);
}

.widget-showcase-card:hover {
  transform: translateY(-6px) rotate(-0.5deg);
  box-shadow: 0 16px 24px rgba(112, 68, 36, 0.15);
}

.widget-showcase-card figcaption {
  color: var(--muted);
  font-weight: 600;
  margin-top: 0.5rem;
}

.widget-showcase-card__ios-image {
  width: min(100%, 320px);
  aspect-ratio: 1/1;
  object-fit: cover;
  object-position: top center;
  border-radius: 10px;
}

.widget-showcase-grid--ios {
  margin-top: 1.25rem;
}

@media (min-width: 1100px) {
  .widget-showcase-grid--ios {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
.page-widget-accent {
  position: absolute;
  top: 0.7rem;
  right: -1.7rem;
  width: min(26vw, 170px);
  aspect-ratio: 1/1;
  background-image: url("https://cdn.terminalwidget.app/assets/images/home/terminalwidget-icon-large.41.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0.15;
  pointer-events: none;
  transform: rotate(-20deg) translate(-10px, 10px);
}

[data-reveal] {
  opacity: 0;
  transition: opacity 520ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
}

.widget-float[data-reveal] {
  transform: var(--float-start-transform);
}

.widget-float[data-reveal].is-visible {
  animation: widget-float-in 1s both;
}

@keyframes widget-float-in {
  0% {
    transform: var(--float-start-transform);
    animation-timing-function: cubic-bezier(0.55, 0.06, 0.89, 0.42);
  }
  80% {
    transform: var(--float-overshoot-transform);
    animation-timing-function: cubic-bezier(0.12, 0.8, 0.25, 1);
  }
  100% {
    transform: var(--float-final-transform);
  }
}
.js-floaty {
  transition: transform 220ms ease;
}

.js-floaty:hover {
  transform: translateY(-8px) scale(1.02);
}

.js-floaty:hover .widget-float__image {
  filter: drop-shadow(0 22px 28px rgba(85, 44, 21, 0.24));
}

.page-newsletter .page-widget-accent {
  display: none;
}

.page-newsletter .page-content {
  margin: 0 auto;
}

.page-newsletter .page {
  max-width: min(70%, 40rem);
  margin-bottom: 2.5rem;
}

.video-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0, 0, 0, 0.88);
  display: grid;
  place-items: center;
}

.video-modal[hidden] {
  display: none;
}

.video-modal__viewport {
  width: 100vw;
  max-height: 100vh;
  display: grid;
  place-items: center;
}

.video-modal__video {
  width: 100vw;
  max-height: 100vh;
  height: auto;
  display: block;
  background: #000;
}

.video-modal__close {
  position: absolute;
  top: 0.75rem;
  right: 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(8, 12, 20, 0.9);
  color: #f8fbff;
  border-radius: 10px;
  font-size: 1.6rem;
  line-height: 1;
  padding: 0.24rem 0.58rem;
  cursor: pointer;
}

body.is-modal-open {
  overflow: hidden;
}

.coming-soon-modal {
  position: fixed;
  inset: 0;
  z-index: 10001;
  display: grid;
  place-items: center;
  background: rgba(8, 12, 20, 0.72);
  padding: 1rem;
}

.coming-soon-modal[hidden] {
  display: none;
}

.coming-soon-modal__dialog {
  width: min(100%, 38rem);
  border: 1px solid rgba(95, 52, 26, 0.35);
  border-radius: 14px;
  background: rgba(255, 248, 237, 0.98);
  padding: 1rem 1rem 0.95rem;
  box-shadow: 0 14px 36px rgba(43, 24, 14, 0.24);
}

.coming-soon-modal__dialog p {
  margin: 0;
}

.coming-soon-modal__actions {
  margin-top: 0.9rem;
  display: flex;
  justify-content: flex-end;
  gap: 0.65rem;
}

.coming-soon-modal__actions button {
  border-radius: 999px;
  border: 1px solid #7d4a24;
  padding: 0.42rem 0.9rem;
  font-weight: 600;
  cursor: pointer;
}

.coming-soon-modal__actions button[data-coming-soon-ok] {
  background: transparent;
  color: #643a1f;
}

.coming-soon-modal__actions button[data-coming-soon-signup] {
  background: #8a4f23;
  color: #fff3e6;
}

@media (max-width: 720px) {
  .widget-float-stage {
    display: none;
  }
  .page-widget-accent {
    display: none;
  }
}
.page-toc {
  position: relative;
  z-index: 20;
  width: min(100%, 28rem);
  margin: 1rem 0 1.65rem;
  padding: 0.85rem 1rem 0.95rem;
}
.page-toc.is-docked {
  position: fixed;
  top: 5rem;
  right: max(1rem, (100vw - var(--max-width)) / 2);
  width: min(22rem, 100vw - 2rem);
  margin: 0;
  padding: 0;
  border-radius: 999px;
  background: transparent;
  box-shadow: none;
  font-size: 80%;
}
@media (min-width: 768px) {
  .page-toc.is-docked {
    top: 4rem;
  }
}
.page-toc.is-docked .page-toc__title {
  width: auto;
  margin: 0 0 0 auto;
  padding: 0.54rem 0.8rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 247, 235, 0.96);
  box-shadow: 0 10px 18px rgba(61, 35, 16, 0.14);
  color: var(--accent);
  cursor: pointer;
  text-align: center;
}
.page-toc.is-docked .page-toc__links {
  position: absolute;
  top: 100%;
  right: 0;
  display: none;
  width: min(22rem, 100vw - 2rem);
  max-height: min(70vh, 32rem);
  overflow: auto;
  padding: 0.75rem 1rem 0.85rem 2rem;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: rgba(255, 247, 235, 0.98);
  box-shadow: 0 14px 24px rgba(61, 35, 16, 0.16);
}
.page-toc:hover .page-toc__links, .page-toc:focus-within .page-toc__links, .page-toc.is-open .page-toc__links {
  display: grid;
}
.page-toc__title {
  display: block;
  width: 100%;
  margin: 0 0 0.45rem;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--text);
  font: inherit;
  font-weight: 800;
  text-align: left;
}
.page-toc__links {
  display: grid;
  gap: 0.22rem;
  margin: 0;
  padding-left: 1.25rem;
}
.page-toc__links a {
  text-decoration: none;
  font-weight: 650;
  display: block;
}
.page-toc__links a:hover, .page-toc__links a:focus-visible {
  text-decoration: underline;
}

.page-toc-placeholder[hidden] {
  display: none;
}

.page-content {
  color: var(--text);
}

.page-content p,
.page-content li,
.page-content h2,
.page-content h3,
.page-content h4 {
  color: var(--text);
}

.page-content ul,
.page-content ol {
  padding-left: 1.4rem;
}

.page-content h2[id],
.page-content h3[id],
.page-content h4[id] {
  scroll-margin-top: 5.25rem;
}

.changelog-page__intro {
  margin: 0 0 1.25rem;
  max-width: 52rem;
  color: var(--muted);
  font-size: 1.02rem;
}

.changelog-page__intro a {
  font-weight: 650;
}

.page-changelog .changelog-page {
  max-width: min(var(--max-width), 52rem);
}

.page-changelog .changelog-page__body h2 {
  margin: 2.75rem 0 1rem;
  padding: 0.65rem 0 0.5rem;
  border-bottom: 2px solid rgba(138, 79, 35, 0.35);
  font-size: clamp(1.35rem, 2.6vw, 1.65rem);
  letter-spacing: -0.02em;
}

.page-changelog .changelog-page__body h2:first-of-type {
  margin-top: 0.35rem;
}

.page-changelog .changelog-page__body h4 {
  margin: 1.35rem 0 0.5rem;
  padding: 0.2rem 0 0.15rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  border-left: 3px solid rgba(138, 79, 35, 0.45);
  padding-left: 0.65rem;
}

.page-changelog .changelog-page__body ul {
  margin: 0.35rem 0 0.85rem;
}

.page-changelog .changelog-page__body li {
  margin: 0.25rem 0;
}

.integrations-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.integration-card {
  display: block;
  text-decoration: none;
  color: var(--text);
  background: rgba(255, 247, 235, 0.95);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.15rem 1.2rem;
  box-shadow: 0 8px 14px rgba(95, 52, 26, 0.09);
  transition: transform 170ms ease, box-shadow 170ms ease, border-color 170ms ease;
}

.integration-card:hover,
.integration-card:focus-visible {
  transform: translateY(-4px);
  box-shadow: 0 14px 24px rgba(95, 52, 26, 0.15);
  border-color: rgba(138, 79, 35, 0.45);
}

.integration-card h2 {
  margin: 0 0 0.45rem;
  font-size: 1.35rem;
}

.integration-card p {
  margin: 0;
  color: var(--muted);
}

.widget-shot-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.9rem;
  margin: 1rem 0 1.4rem;
  padding-left: 0;
  list-style: none;
}

.widget-shot-grid > li {
  margin: 0;
}

.shortcuts-shot-grid {
  grid-template-columns: repeat(3, minmax(220px, 300px));
  justify-content: start;
}

.widget-shot {
  display: block;
  position: relative;
  text-decoration: none;
  color: inherit;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: rgba(18, 25, 34, 0.85);
  overflow: hidden;
  transition: transform 120ms ease;
}

.widget-shot::after {
  content: "+";
  position: absolute;
  right: 0.52rem;
  bottom: 2.15rem;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 999px;
  border: 1px solid rgba(223, 239, 255, 0.38);
  background: rgba(11, 17, 28, 0.72);
  color: #f2f8ff;
  display: grid;
  place-items: center;
  font-size: 0.68rem;
  line-height: 1;
  opacity: 0.5;
  transition: opacity 140ms ease;
  pointer-events: none;
}

.widget-shot-video::after {
  content: "";
  right: 50%;
  bottom: 50%;
  width: 3rem;
  height: 3rem;
  border: 1px solid rgba(223, 239, 255, 0.55);
  background: rgba(11, 17, 28, 0.68);
  transform: translate(50%, 50%);
  font-size: 1rem;
  opacity: 0.9;
}

.widget-shot-video::after {
  border-left: 1.9rem solid #f2f8ff;
  border-top: 1.15rem solid transparent;
  border-bottom: 1.15rem solid transparent;
  border-right: 0;
  width: 0;
  height: 0;
  border-radius: 0;
  background: transparent;
}

.widget-shot-video::before {
  content: attr(data-lightbox-caption);
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.5rem 0.65rem 0.62rem;
  color: #f9eddd;
  font-size: 0.84rem;
  line-height: 1.25;
  text-align: center;
  background: rgba(10, 15, 24, 0.66);
  pointer-events: none;
}

.widget-shot:hover {
  transform: translateY(-2px);
}

.widget-shot:hover::after,
.widget-shot:focus-visible::after {
  opacity: 1;
}

.widget-shot picture,
.widget-shot img {
  display: block;
  width: 100%;
}

.widget-shot img {
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  object-fit: cover;
  object-position: center;
}

.widget-shot span {
  display: block;
  padding: 0.5rem 0.65rem 0.62rem;
  color: #f9eddd;
  font-size: 0.84rem;
  line-height: 1.25;
  text-align: center;
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(5, 8, 14, 0.86);
  display: grid;
  place-items: center;
  z-index: 9999;
  padding: 1.2rem;
}

.lightbox[hidden] {
  display: none;
}

.lightbox__image {
  max-width: min(92vw, 1400px);
  max-height: 88vh;
  border-radius: 12px;
  border: 1px solid rgba(219, 234, 254, 0.28);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.45);
}

.lightbox__media {
  display: grid;
  place-items: center;
}

.lightbox__video {
  max-width: min(92vw, 1400px);
  max-height: 88vh;
  border-radius: 12px;
  border: 1px solid rgba(219, 234, 254, 0.28);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.45);
  background: #000;
}

.lightbox__caption {
  margin: 0.75rem 0 0;
  max-width: min(92vw, 1400px);
  color: #e5edf8;
  background: rgba(9, 13, 22, 0.84);
  border: 1px solid rgba(219, 234, 254, 0.22);
  border-radius: 10px;
  padding: 0.58rem 0.72rem;
  font-family: "SFMono-Regular", Menlo, Consolas, Monaco, monospace;
  font-size: 0.83rem;
  line-height: 1.35;
  white-space: normal;
  overflow-wrap: anywhere;
}

.lightbox__close {
  position: absolute;
  top: 0.9rem;
  right: 1rem;
  border: 1px solid rgba(219, 234, 254, 0.4);
  background: rgba(9, 13, 22, 0.8);
  color: #eef6ff;
  border-radius: 8px;
  font-size: 1.2rem;
  line-height: 1;
  padding: 0.3rem 0.58rem;
  cursor: pointer;
}

.lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 2.2rem;
  height: 2.2rem;
  border: 1px solid rgba(219, 234, 254, 0.4);
  background: rgba(9, 13, 22, 0.8);
  color: #eef6ff;
  border-radius: 999px;
  font-size: 1.25rem;
  line-height: 1;
  display: grid;
  place-items: center;
  cursor: pointer;
}

.lightbox__nav--prev {
  left: 1rem;
}

.lightbox__nav--next {
  right: 1rem;
}

@media (max-width: 1180px) {
  .widget-shot-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 860px) {
  .widget-shot-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 560px) {
  .widget-shot-grid {
    grid-template-columns: 1fr;
  }
  .integrations-grid {
    grid-template-columns: 1fr;
  }
}
.site-footer {
  border-top: 1px solid #4f2109;
  padding: 1.25rem 1rem 2rem;
  background: #6d3310;
}

.footer-links {
  display: flex;
  justify-content: center;
}

.footer-links ul {
  list-style: none;
  display: grid;
  grid-auto-flow: column;
  grid-template-rows: repeat(4, auto);
  grid-template-columns: repeat(2, minmax(0, max-content));
  justify-content: start;
  justify-items: start;
  gap: 0.5rem 2.4rem;
  width: fit-content;
  max-width: 100%;
  margin: 0;
  padding: 0;
}

.footer-links a {
  text-decoration: none;
  color: #fff0df;
  white-space: nowrap;
}

.footer-links a:hover {
  color: #ffffff;
}

@media (max-width: 720px) {
  .footer-links ul {
    grid-auto-flow: column;
    grid-template-rows: repeat(4, auto);
    grid-template-columns: repeat(2, minmax(0, max-content));
    gap: 0.45rem 1.2rem;
  }
  .footer-links a {
    font-size: 0.9rem;
  }
}
@media (max-width: 860px) {
  .feature-grid,
  .platform-note-list {
    grid-template-columns: 1fr;
  }
}
@media (min-width: 680px) {
  .feature-grid,
  .platform-note-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 980px) {
  .feature-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (min-width: 1280px) {
  .feature-grid,
  .platform-note-list {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
@media (min-width: 1024px) {
  .page-index .home-section {
    min-height: 0;
    padding-top: 0.75rem;
    padding-bottom: 2rem;
    display: block;
  }
  .page-index .hero.home-section {
    padding-top: 1.25rem;
    padding-bottom: 1.5rem;
  }
  .page-index .site-footer {
    min-height: 0;
  }
}/*# sourceMappingURL=main.css.map */
