:root {
  color-scheme: dark;
  --bg: #050605;
  --surface: #0a0c09;
  --surface-soft: #0d100c;
  --line: rgba(232, 255, 190, 0.12);
  --text: #f2f4ed;
  --muted: #9ca294;
  --lime: #dfff9d;
  --lime-soft: #b8e96d;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
a:focus-visible, button:focus-visible, summary:focus-visible {
  outline: 2px solid var(--lime);
  outline-offset: 4px;
}
.skip-link { position: fixed; left: 16px; top: -80px; z-index: 100; padding: 10px 16px; background: var(--lime); color: #0a0b08; border-radius: 8px; }
.skip-link:focus { top: 16px; }

.site-header {
  position: relative;
  z-index: 10;
  width: min(calc(100% - 40px), var(--max));
  height: 92px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.site-header::after {
  content: "";
  position: absolute;
  z-index: -1;
  bottom: -96px;
  left: 50%;
  width: 100vw;
  height: 112px;
  transform: translateX(-50%);
  background: linear-gradient(to bottom, var(--bg) 0%, rgba(5,6,5,.86) 22%, rgba(5,6,5,.42) 58%, transparent 100%);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  -webkit-mask-image: linear-gradient(to bottom, #000 0%, rgba(0,0,0,.88) 38%, transparent 100%);
  mask-image: linear-gradient(to bottom, #000 0%, rgba(0,0,0,.88) 38%, transparent 100%);
  pointer-events: none;
}
.brand { display: inline-flex; align-items: center; gap: .18em; font-family: "Bricolage Grotesque", -apple-system, BlinkMacSystemFont, "SF Pro Display", sans-serif; font-size: 27px; font-weight: 700; line-height: .94; letter-spacing: -.075em; }
.brand-main { font-weight: 700; }
.brand-accent { color: var(--lime); font-weight: 600; text-shadow: 0 0 22px rgba(203, 255, 119, .3); }
.site-header nav { display: flex; align-items: center; gap: 30px; }
.nav-link { color: #aeb4a7; font-size: 12px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; transition: color .2s ease; }
.nav-link:hover { color: var(--text); }

.button { display: inline-flex; justify-content: center; align-items: center; gap: 12px; min-height: 50px; padding: 0 22px; border: 1px solid rgba(255,255,255,.14); border-radius: 999px; font-size: 14px; font-weight: 600; transition: transform .2s ease, background .2s ease, border-color .2s ease; }
.button:hover { transform: translateY(-2px); }
.button-small { min-height: 40px; padding: 0 19px; font-size: 13px; font-weight: 600; letter-spacing: -.015em; background: rgba(255,255,255,.06); }
.button-primary { border-color: var(--lime); background: var(--lime); color: #0a0b08; box-shadow: 0 0 34px rgba(194, 245, 112, .12); }
.button-primary:hover { background: #e9ffbc; }
.button-primary span { opacity: .58; font-weight: 500; }
.button-wide { width: 100%; }

.hero {
  position: relative;
  min-height: calc(100svh - 92px);
  padding: 80px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  isolation: isolate;
}
.hero::after { content: ""; position: absolute; z-index: 0; inset: auto 0 0; height: 260px; background: linear-gradient(to bottom, transparent, rgba(163,210,84,.025)); }
.hero-glow { position: absolute; z-index: 0; width: 620px; height: 620px; top: -250px; left: calc(50% - 310px); border-radius: 50%; background: rgba(205,255,130,.035); filter: blur(100px); pointer-events: none; }
.hero-pillar { position: absolute; z-index: 0; inset: 0; overflow: hidden; opacity: .88; pointer-events: none; -webkit-mask-image: radial-gradient(ellipse 68% 84% at 50% 48%, #000 0%, rgba(0,0,0,.82) 62%, transparent 100%); mask-image: radial-gradient(ellipse 68% 84% at 50% 48%, #000 0%, rgba(0,0,0,.82) 62%, transparent 100%); }
.hero-pillar canvas { display: block; width: 100%; height: 100%; }
.hero > :not(.hero-glow):not(.hero-pillar) { position: relative; z-index: 1; }
.eyebrow { margin: 0 0 22px; color: var(--lime-soft); font-size: 11px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; }
.hero .eyebrow { color: #fff; text-shadow: 0 0 18px rgba(255,255,255,.42); }
h1, h2, h3, p { margin-top: 0; }
h1, h2 { font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Helvetica Neue", Arial, sans-serif; letter-spacing: -.055em; font-weight: 560; }
h1 { max-width: 970px; margin-bottom: 30px; color: #fff; font-size: clamp(54px, 7.4vw, 104px); line-height: .98; text-shadow: 0 0 32px rgba(255,255,255,.22); }
.keep-together { white-space: nowrap; }
.headline-line { display: block; }
.hero-copy { max-width: 570px; margin-bottom: 38px; color: #fff; font-size: clamp(17px, 2vw, 20px); line-height: 1.55; text-shadow: 0 0 20px rgba(255,255,255,.3); }
.hero-actions { display: flex; align-items: center; gap: 30px; }
.text-link { color: #fff; font-size: 14px; text-shadow: 0 0 14px rgba(255,255,255,.35); }
.text-link span { margin-left: 7px; color: var(--lime); }
.purchase-note { margin: 22px 0 0; color: #fff; font-size: 11px; letter-spacing: .02em; text-shadow: 0 0 14px rgba(255,255,255,.32); }

.section-shell { width: min(calc(100% - 40px), var(--max)); margin-inline: auto; }
.section-intro { max-width: 580px; margin-bottom: 50px; }
.section-intro h2 { margin-bottom: 16px; font-size: clamp(38px, 5vw, 62px); line-height: 1.04; }
.section-intro > p:last-child { color: var(--muted); }

.demo-section { position: relative; padding: 90px 0 130px; }
.demo-section::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: -112px;
  left: 50%;
  width: 100vw;
  height: 112px;
  transform: translateX(-50%);
  background: linear-gradient(to bottom, transparent 0%, rgba(5,6,5,.42) 42%, rgba(5,6,5,.86) 78%, var(--bg) 100%);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,.88) 62%, #000 100%);
  mask-image: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,.88) 62%, #000 100%);
  pointer-events: none;
}
.demo-section > * { position: relative; z-index: 1; }
.demo-card { position: relative; min-height: 540px; overflow: hidden; contain: layout paint; border: 1px solid var(--line); border-radius: 26px; background: radial-gradient(circle at 50% 45%, #182016 0, #090c08 55%, #050605 100%); cursor: none; box-shadow: inset 0 1px rgba(255,255,255,.025), 0 50px 100px rgba(0,0,0,.22); touch-action: none; }
.demo-card::before { content: ""; position: absolute; z-index: 1; inset: 0; opacity: .22; background-image: linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px); background-size: 56px 56px; pointer-events: none; }
#trail-canvas { position: absolute; z-index: 5; inset: 0; width: 100%; height: 100%; pointer-events: none; }
.demo-instruction { position: absolute; z-index: 6; top: 84px; left: 194px; margin: 0; color: rgba(255,255,255,.58); font-size: 9px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; text-shadow: 0 1px 10px rgba(0,0,0,.7); pointer-events: none; }
.freeform-window {
  position: absolute;
  z-index: 2;
  inset: 24px 30px 74px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 14px;
  background: rgba(28,29,28,.94);
  box-shadow: 0 26px 70px rgba(0,0,0,.46), inset 0 1px rgba(255,255,255,.12);
  opacity: 0;
  transform: translateY(18px) scale(.985);
  transition: opacity .65s ease, transform .8s cubic-bezier(.16,1,.3,1), box-shadow .8s ease;
}
.demo-card.is-visible .freeform-window { opacity: 1; transform: translateY(0) scale(1); }
.freeform-titlebar { position: relative; height: 46px; display: flex; align-items: center; justify-content: center; border-bottom: 1px solid rgba(255,255,255,.09); background: linear-gradient(#383938, #2a2b2a); color: #eceeeb; font-size: 12px; }
.freeform-titlebar strong { font-weight: 600; letter-spacing: -.01em; }
.traffic-lights { position: absolute; left: 14px; display: flex; gap: 8px; }
.traffic-lights i { width: 12px; height: 12px; border-radius: 50%; background: #ff5f57; box-shadow: inset 0 0 0 .5px rgba(0,0,0,.28); }
.traffic-lights i:nth-child(2) { background: #febc2e; }
.traffic-lights i:nth-child(3) { background: #28c840; }
.freeform-tools { position: absolute; right: 116px; display: flex; align-items: center; gap: 4px; }
.freeform-tools span { width: 26px; height: 25px; display: grid; place-items: center; border-radius: 6px; color: #d6d8d4; font-size: 13px; transition: color .22s ease, background .22s ease, transform .22s cubic-bezier(.16,1,.3,1); }
.freeform-tools svg { width: 15px; height: 15px; fill: none; stroke: currentColor; stroke-width: 1.55; stroke-linecap: round; stroke-linejoin: round; }
.freeform-tools span:hover { background: rgba(255,255,255,.09); color: #fff; transform: translateY(-1px); }
.freeform-tools .tool-active { background: rgba(255,255,255,.12); color: #fff; }
.freeform-body { height: calc(100% - 46px); display: flex; }
.freeform-sidebar { flex: 0 0 145px; padding: 16px 10px; border-right: 1px solid rgba(255,255,255,.08); background: rgba(37,38,37,.78); color: #c4c7c1; }
.freeform-sidebar p { margin: 0 9px 13px; color: #f2f3f0; font-size: 13px; font-weight: 650; }
.freeform-sidebar span { height: 29px; padding: 0 9px; display: flex; align-items: center; gap: 8px; border-radius: 6px; font-size: 11px; }
.freeform-sidebar span.is-selected { background: rgba(255,255,255,.12); color: #fff; }
.freeform-sidebar span i { width: 14px; height: 14px; display: grid; flex: 0 0 14px; place-items: center; color: #aeb3aa; font-style: normal; }
.freeform-sidebar span i svg { width: 14px; height: 14px; fill: none; stroke: currentColor; stroke-width: 1.4; stroke-linecap: round; stroke-linejoin: round; }
.freeform-sidebar .is-selected i { color: #dfff9d; }
.freeform-sidebar small { display: block; margin: 19px 9px 6px; color: #747871; font-size: 9px; font-weight: 600; text-transform: uppercase; }
.freeform-canvas { position: relative; flex: 1; overflow: hidden; background-color: #20231f; background-image: radial-gradient(rgba(255,255,255,.13) .7px, transparent .7px), radial-gradient(circle at 48% 40%, rgba(223,255,157,.055), transparent 46%); background-size: 18px 18px, 100% 100%; }
.freeform-links { position: absolute; inset: 0; width: 100%; height: 100%; overflow: visible; pointer-events: none; }
.freeform-links path { fill: none; stroke: rgba(223,255,157,.32); stroke-width: 2; stroke-linecap: round; stroke-dasharray: 5 7; }
.freeform-item { position: absolute; z-index: 1; left: var(--x); top: var(--y); transform: rotate(var(--r)); transform-origin: 50% 50%; user-select: none; -webkit-user-select: none; cursor: none; transition: left .34s cubic-bezier(.16,1,.3,1), top .34s cubic-bezier(.16,1,.3,1), transform .3s cubic-bezier(.16,1,.3,1), filter .26s ease, box-shadow .26s ease; }
.freeform-item:hover { z-index: 3; transform: translateY(-5px) rotate(var(--r)) scale(1.045); filter: saturate(1.08); }
.freeform-item.is-dragging { z-index: 8; transform: rotate(0deg) scale(1.06); filter: saturate(1.12); transition: transform .14s cubic-bezier(.16,1,.3,1), filter .14s ease; }
.sticky { width: 138px; min-height: 126px; padding: 17px; color: #24281d; font-size: 12px; line-height: 1.45; box-shadow: 0 10px 24px rgba(0,0,0,.25); }
.sticky b { display: block; margin-bottom: 11px; font-size: 14px; }
.sticky p { margin: 0; }
.sticky-yellow { background: linear-gradient(145deg, #edffb9, #cde983); }
.photo-card { width: 166px; padding: 7px 7px 9px; border-radius: 4px; background: #e7e5df; color: #252821; box-shadow: 0 11px 25px rgba(0,0,0,.28); }
.photo-art { height: 100px; display: grid; place-items: center; overflow: hidden; background: radial-gradient(circle at 65% 30%, #ffeeb1 0 6%, transparent 7%), radial-gradient(circle at 32% 72%, #ff69b4, transparent 28%), linear-gradient(135deg, #7651e8, #21c6dc 55%, #dfff9d); }
.photo-art span { color: #fff; font-size: 39px; text-shadow: 0 0 20px rgba(255,255,255,.8); }
.photo-card p { margin: 7px 2px 0; font-family: "Bricolage Grotesque", sans-serif; font-size: 11px; font-weight: 700; letter-spacing: -.02em; }
.sticker-card { width: 82px; height: 82px; display: grid; place-items: center; border: 5px solid #f3efff; border-radius: 50%; background: linear-gradient(145deg, #8b5cf6, #f472b6); box-shadow: 0 9px 22px rgba(0,0,0,.28); }
.sticker-card span { font-size: 46px; filter: drop-shadow(0 3px 3px rgba(0,0,0,.18)); }
.quote-card { padding: 13px 17px; border: 2px solid #dfff9d; border-radius: 12px; background: rgba(12,15,11,.88); color: #fff; font-family: "Bricolage Grotesque", sans-serif; font-size: 18px; font-weight: 700; line-height: 1.08; box-shadow: 0 8px 22px rgba(0,0,0,.25); }
.quote-card em { color: #dfff9d; font-style: normal; }
.color-card { display: flex; gap: 7px; padding: 10px; border: 1px solid rgba(255,255,255,.2); border-radius: 999px; background: rgba(11,13,10,.78); box-shadow: 0 8px 20px rgba(0,0,0,.25); }
.color-card i { width: 27px; height: 27px; border-radius: 50%; background: var(--swatch); box-shadow: inset 0 1px rgba(255,255,255,.35), 0 0 13px color-mix(in srgb, var(--swatch), transparent 55%); }
.smile-sticker { width: 66px; height: 66px; display: grid; place-items: center; border-radius: 50%; background: #ffdf65; color: #282412; font-size: 45px; line-height: 1; box-shadow: 0 8px 20px rgba(0,0,0,.25); }
.board-spark { position: absolute; z-index: 9; width: 5px; height: 5px; margin: -2px 0 0 -2px; border-radius: 50%; background: #dfff9d; box-shadow: 0 0 10px #dfff9d; pointer-events: none; animation: board-spark .52s ease-out forwards; }
@keyframes board-spark { to { opacity: 0; transform: translate(var(--spark-x), var(--spark-y)) scale(.15); } }
.macos-dock {
  --dock-icon: clamp(30px, 5.2vw, 62px);
  --dock-shelf-scale: 1;
  --dock-motion-duration: .28s;
  --dock-motion-ease: cubic-bezier(.16,1,.3,1);
  position: absolute;
  z-index: 3;
  bottom: 18px;
  left: 50%;
  display: flex;
  align-items: flex-end;
  gap: 4px;
  max-width: calc(100% - 28px);
  padding: 7px 8px 6px;
  opacity: 0;
  transform: translate(-50%, 14px) scale(.96);
  transition: opacity .55s .18s ease, transform .75s .18s cubic-bezier(.16,1,.3,1);
}
.macos-dock::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  transform: translateZ(0) scaleX(var(--dock-shelf-scale));
  transform-origin: 50% 50%;
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 19px;
  background: linear-gradient(180deg, rgba(238,244,235,.3), rgba(182,192,179,.2));
  box-shadow: inset 0 1px rgba(255,255,255,.35), 0 10px 30px rgba(0,0,0,.42);
  -webkit-backdrop-filter: blur(24px) saturate(145%);
  backdrop-filter: blur(24px) saturate(145%);
  will-change: transform;
  transition: transform var(--dock-motion-duration) var(--dock-motion-ease);
  pointer-events: none;
}
.macos-dock.is-magnifying { --dock-motion-duration: .1s; --dock-motion-ease: cubic-bezier(.2,.7,.2,1); }
.demo-card.is-visible .macos-dock { opacity: 1; transform: translate(-50%, 0) scale(1); }
.dock-app {
  --dock-scale: 1;
  --dock-shift: 0px;
  position: relative;
  flex: 0 0 var(--dock-icon);
  width: var(--dock-icon);
  height: var(--dock-icon);
  transform-origin: 50% 100%;
  transform: translate3d(var(--dock-shift),0,0) scale(var(--dock-scale));
  backface-visibility: hidden;
  will-change: transform;
  transition: transform var(--dock-motion-duration) var(--dock-motion-ease);
}
.dock-app img { display: block; width: 100%; height: 100%; object-fit: contain; filter: drop-shadow(0 3px 4px rgba(0,0,0,.32)); }
.dock-app::before {
  content: attr(data-label);
  position: absolute;
  bottom: calc(100% + 13px);
  left: 50%;
  padding: 5px 9px;
  transform: translate(-50%, 5px);
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 6px;
  background: rgba(37,37,37,.82);
  color: #fff;
  font-size: 11px;
  line-height: 1.2;
  white-space: nowrap;
  opacity: 0;
  box-shadow: 0 4px 14px rgba(0,0,0,.28);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  transition: opacity .2s ease, transform .28s cubic-bezier(.16,1,.3,1);
  pointer-events: none;
}
.dock-app::after { content: ""; position: absolute; left: 50%; bottom: -5px; width: 4px; height: 4px; transform: translateX(-50%); border-radius: 50%; background: transparent; box-shadow: 0 1px 2px rgba(0,0,0,.35); }
.dock-app.is-running::after { background: rgba(255,255,255,.82); }
.dock-app:hover { z-index: 20; }
.dock-app:hover::before { opacity: 1; transform: translate(-50%, 0); }
.dock-separator { align-self: stretch; width: 1px; margin: 2px 4px; transform: translate3d(var(--dock-divider-shift, 0px),0,0); background: rgba(24,27,23,.38); box-shadow: 1px 0 rgba(255,255,255,.17); transition: transform var(--dock-motion-duration) var(--dock-motion-ease); }
.preset-picker { position: absolute; z-index: 6; top: 18px; right: 18px; display: flex; gap: 4px; padding: 5px; border: 1px solid rgba(255,255,255,.08); border-radius: 999px; background: rgba(5,6,5,.72); backdrop-filter: blur(16px); }
.preset { width: 35px; height: 35px; padding: 0; display: grid; place-items: center; border: 0; border-radius: 50%; background: transparent; cursor: pointer; }
.preset span { width: 14px; height: 14px; border-radius: 50%; background: var(--dot); box-shadow: 0 0 9px var(--dot); transition: transform .2s ease; }
.preset:hover span, .preset.is-active span { transform: scale(1.25); }
.preset.is-active { background: rgba(255,255,255,.08); }
.neon { --dot: linear-gradient(135deg, #a855f7, #ec4899 48%, #38bdf8); }.lime { --dot: #dfff9d; }.blue { --dot: #5fc9ff; }.pink { --dot: #ff76b8; }

.features { padding: 130px 0; border-top: 1px solid rgba(255,255,255,.06); }
.feature-heading { max-width: 650px; }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.feature-grid article { min-height: 270px; padding: 34px 34px 40px 0; }
.feature-grid article + article { padding-left: 34px; border-left: 1px solid var(--line); }
.feature-number { display: block; margin-bottom: 72px; color: var(--lime-soft); font-size: 10px; letter-spacing: .1em; }
.feature-grid h3 { margin-bottom: 12px; font-size: 18px; font-weight: 570; letter-spacing: -.02em; }
.feature-grid p { max-width: 290px; margin-bottom: 0; color: var(--muted); font-size: 14px; }
.detail-strip { display: flex; justify-content: center; align-items: center; flex-wrap: wrap; gap: 18px; padding-top: 34px; color: #7f867a; font-size: 11px; letter-spacing: .06em; text-transform: uppercase; }
.detail-strip i { width: 3px; height: 3px; border-radius: 50%; background: var(--lime-soft); }

.pricing { padding: 100px 0 130px; }
.price-card { display: grid; grid-template-columns: minmax(230px,.7fr) minmax(0,1.3fr); gap: 50px; align-items: center; min-height: 500px; padding: clamp(38px, 5vw, 70px); border: 1px solid var(--line); border-radius: 28px; background: radial-gradient(circle at 15% 0%, rgba(202,255,119,.095), transparent 43%), var(--surface); }
.price-card h2 { margin-bottom: 18px; font-size: clamp(46px, 6vw, 78px); line-height: 1; }
.price-card > div:first-child > p:last-child { max-width: 390px; color: var(--muted); font-size: 18px; }
.price-options { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 14px; align-items: stretch; }
.price-side { position: relative; min-width: 0; padding: 24px; display: flex; flex-direction: column; border: 1px solid rgba(255,255,255,.08); border-radius: 20px; background: rgba(3,4,3,.55); }
.price-side.is-featured { border-color: rgba(223,255,157,.34); background: radial-gradient(circle at 80% 0%, rgba(223,255,157,.1), transparent 45%), rgba(3,4,3,.7); }
.plan-name { margin-bottom: 20px; display: flex; align-items: center; justify-content: space-between; color: #f1f3ed; font-size: 14px; font-weight: 650; }
.plan-name span { color: #8f9689; font-size: 11px; font-weight: 550; }
.plan-badge { position: absolute; top: -10px; right: 16px; margin: 0; padding: 3px 9px; border-radius: 999px; background: var(--lime); color: #11140d; font-size: 9px; font-weight: 750; letter-spacing: .04em; text-transform: uppercase; }
.price { margin-bottom: 20px; font-size: 56px; line-height: 1; letter-spacing: -.06em; }
.price > span { margin-right: 4px; color: var(--lime); font-size: 26px; vertical-align: top; }
.price-side ul { margin: 0 0 26px; padding: 0; list-style: none; color: #b1b7aa; font-size: 12px; }
.price-side li { padding: 8px 0 8px 25px; position: relative; }
.price-side li::before { content: "✓"; position: absolute; left: 0; color: var(--lime-soft); }
.price-side .button { margin-top: auto; }
.price-side small { display: block; margin-top: 14px; color: #666c62; text-align: center; font-size: 10px; }

.faq { display: grid; grid-template-columns: .8fr 1.2fr; gap: 90px; padding: 130px 0; border-top: 1px solid rgba(255,255,255,.06); }
.faq-heading { position: sticky; top: 50px; align-self: start; }
.faq-heading h2 { font-size: clamp(38px, 4.5vw, 58px); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { position: relative; padding: 26px 45px 26px 0; list-style: none; cursor: pointer; font-size: 15px; font-weight: 540; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { position: absolute; right: 4px; color: var(--lime-soft); font-size: 20px; font-weight: 300; transition: transform .2s ease; }
.faq-list details[open] summary span { transform: rotate(45deg); }
.faq-list details p { max-width: 600px; padding: 0 40px 26px 0; margin: 0; color: var(--muted); font-size: 14px; }

.site-footer { padding: 50px 0 38px; display: grid; grid-template-columns: 1fr 1fr; gap: 26px; align-items: center; border-top: 1px solid rgba(255,255,255,.06); color: #70766c; font-size: 11px; }
.site-footer .brand { color: var(--text); font-size: 18px; }
.site-footer > p { margin: 0; text-align: right; }
.site-footer > div { display: flex; gap: 22px; }
.site-footer > small { text-align: right; }

@media (max-width: 800px) {
  .site-header { height: 76px; }
  .nav-link { display: none; }
  .hero { min-height: calc(100svh - 76px); padding-block: 72px; }
  .demo-card { min-height: 500px; }
  .freeform-window { inset-inline: 18px; }
  .freeform-tools { right: 96px; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature-grid article { min-height: 210px; padding: 30px 0; }
  .feature-grid article + article { padding-left: 0; border-left: 0; border-top: 1px solid var(--line); }
  .feature-number { margin-bottom: 42px; }
  .price-card { grid-template-columns: 1fr; gap: 34px; }
  .faq { grid-template-columns: 1fr; gap: 25px; }
  .faq-heading { position: static; }
}

@media (max-width: 1000px) {
  .price-card { grid-template-columns: 1fr; gap: 34px; }
}

@media (max-width: 520px) {
  .site-header, .section-shell { width: min(calc(100% - 28px), var(--max)); }
  .button-small { min-height: 36px; padding-inline: 14px; }
  .site-header .brand { font-size: 22px; }
  .hero { padding-inline: 14px; }
  h1 { font-size: 49px; }
  .hero-actions { flex-direction: column; gap: 20px; }
  .demo-section, .features, .pricing, .faq { padding-block: 85px; }
  .demo-card { min-height: 440px; border-radius: 20px; }
  .demo-instruction { left: 24px; top: 72px; }
  .freeform-window { inset: 14px 12px 58px; }
  .freeform-sidebar, .freeform-tools { display: none; }
  .freeform-titlebar strong { transform: translateX(22px); }
  .freeform-item.sticker-card, .freeform-item.smile-sticker { display: none; }
  .sticky { width: 118px; min-height: 110px; padding: 13px; font-size: 10px; }
  .sticky b { margin-bottom: 7px; font-size: 12px; }
  .photo-card { width: 135px; }
  .photo-art { height: 78px; }
  .quote-card { font-size: 15px; }
  .color-card { gap: 5px; padding: 7px; }
  .color-card i { width: 22px; height: 22px; }
  .macos-dock { --dock-icon: 27px; gap: 2px; padding: 5px 6px 4px; border-radius: 13px; }
  .price-card { padding: 26px; border-radius: 22px; }
  .price-options { grid-template-columns: 1fr; }
  .price-side { padding: 22px; }
  .detail-strip { gap: 11px; }
  .site-footer { grid-template-columns: 1fr; }
  .site-footer > p, .site-footer > small { text-align: left; }
  .site-footer > div { flex-wrap: wrap; gap: 10px 18px; }
}

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