/* landing.css - the public product page. The studio/editor keep their dense Ember
   surfaces; this sheet uses the same tokens at a more spacious marketing scale. */

body[data-screen="landing"] {
  padding: 0;
  overflow-x: hidden;
  background:
    radial-gradient(70rem 42rem at 12% -12%, color-mix(in srgb, var(--accent) 18%, transparent), transparent 62%),
    radial-gradient(55rem 34rem at 92% 7%, color-mix(in srgb, #6f74ff 14%, transparent), transparent 65%),
    var(--stage-0);
}

body[data-screen="landing"]::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: .16;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, black, transparent 58%);
}

html[data-desktop-shell="true"] [data-desktop-download] { display: none !important; }

.landing-skip-link {
  position: fixed;
  top: 8px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  color: var(--ink);
  border: 1px solid var(--accent-line);
  border-radius: var(--r-btn);
  background: var(--stage-2);
  box-shadow: var(--shadow-pop);
  transform: translateY(calc(-100% - 16px));
  transition: transform var(--dur-fast) var(--ease);
}

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

.landing-nav {
  box-sizing: border-box;
  position: sticky;
  top: 0;
  right: auto;
  z-index: 30;
  display: flex;
  align-items: center;
  gap: var(--s-4);
  width: 100%;
  margin: 0;
  padding: 12px max(20px, calc((100vw - 1180px) / 2));
  background: color-mix(in srgb, var(--stage-0) 84%, transparent);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px) saturate(125%);
}

.landing-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
  letter-spacing: -.02em;
}

.landing-brand-mark {
  display: inline-grid;
  flex: none;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 9px;
  color: var(--on-accent);
  background: var(--grad-ember);
  box-shadow: var(--shadow-accent);
}

.landing-nav-links { display: flex; align-items: center; gap: 2px; margin-left: auto; }
.landing-nav-links a {
  color: var(--ink-dim);
  font-size: var(--text-sm);
  font-weight: 650;
  text-decoration: none;
  border-radius: var(--r-chip);
  padding: 9px 12px;
}
.landing-nav-links a:hover { color: var(--ink); background: var(--stage-2); }
.landing-nav-actions { display: flex; align-items: center; gap: 8px; }
.landing-nav .nav-editor-btn { white-space: nowrap; }
.landing-nav .nav-open-studio { color: var(--on-accent); background: var(--grad-ember); border-color: transparent; }
.landing-nav .nav-open-studio:hover { color: var(--on-accent); border-color: transparent; filter: brightness(1.06); }

.landing-appearance { flex: none; }
.landing-appearance .app-theme-menu-label { display: none; }
@media (max-width: 680px) {
  .landing-appearance .app-theme-menu-current { display: none; }
  .landing-appearance .app-theme-menu > summary { width: 42px; justify-content: center; padding-inline: 0; }
}

.landing {
  width: min(1180px, calc(100% - 40px));
  max-width: 1180px;
  margin-inline: auto;
  padding: 0 0 88px;
}

.landing-section { padding: 88px 0; scroll-margin-top: 76px; }
.section-heading { max-width: 720px; margin-bottom: 36px; }
.section-heading.is-centered { margin-inline: auto; text-align: center; }
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 12px;
  color: var(--accent);
  font-size: var(--text-xs);
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.section-kicker::before { content: ""; width: 22px; height: 1px; background: currentColor; }
.section-heading h2 {
  max-width: 18ch;
  margin: 0 0 14px;
  color: var(--ink);
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.02;
  letter-spacing: -.045em;
}
.section-heading.is-centered h2 { margin-inline: auto; }
.section-heading p { margin: 0; color: var(--ink-dim); font-size: var(--text-lg); line-height: 1.6; }

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, .93fr);
  align-items: center;
  gap: clamp(44px, 7vw, 88px);
  min-height: 690px;
  margin: 0;
  padding: 72px 0 64px;
  text-align: left;
}

.hero-copy { position: relative; z-index: 2; }
.hero .kicker { margin-bottom: 18px; }
.hero h1 {
  max-width: 12ch;
  margin: 0;
  color: var(--ink);
  font-size: clamp(3.2rem, 7.2vw, 6.4rem);
  line-height: .91;
  letter-spacing: -.065em;
}
.hero h1 em {
  color: transparent;
  font-style: normal;
  background: var(--grad-ember);
  -webkit-background-clip: text;
  background-clip: text;
}
.hero .tagline { max-width: 57ch; margin: 26px 0 0; color: var(--ink-dim); line-height: 1.65; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.hero-actions a { display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: 10px 20px; text-decoration: none; }
.hero-actions .secondary-btn { border-radius: var(--r-btn); font-weight: 700; }
.hero-actions .hero-download-btn { border-color: var(--accent-line); }
.hero-proof { display: flex; flex-wrap: wrap; gap: 10px 18px; margin: 24px 0 0; padding: 0; list-style: none; }
.hero-proof li { display: inline-flex; align-items: center; gap: 7px; color: var(--ink-dim); font-size: var(--text-sm); }
.hero-proof svg { color: var(--ok); }

.marketing-stage {
  box-sizing: border-box;
  position: relative;
  padding: 12px;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 24px;
  background: color-mix(in srgb, var(--stage-1) 91%, transparent);
  box-shadow: 0 35px 90px rgba(0,0,0,.42), inset 0 1px rgba(255,255,255,.04);
  transform: perspective(1100px) rotateY(-4deg) rotateX(1deg);
}
.marketing-stage::after {
  content: "";
  position: absolute;
  inset: -40% 35% 38% -45%;
  pointer-events: none;
  background: radial-gradient(circle, color-mix(in srgb, var(--accent) 24%, transparent), transparent 67%);
}
.ms-toolbar { position: relative; z-index: 2; display: flex; align-items: center; gap: 8px; padding: 3px 4px 11px; }
.ms-rec, .ms-quality, .ms-clock { font-size: var(--text-xs); font-weight: 750; }
.ms-rec { display: inline-flex; align-items: center; gap: 6px; color: var(--on-record); background: var(--rec); border-radius: var(--r-chip); padding: 5px 9px; }
.ms-rec i { width: 7px; height: 7px; border-radius: 50%; background: #fff; box-shadow: var(--rec-glow); }
.ms-clock { color: var(--ink); font-variant-numeric: tabular-nums; }
.ms-quality { margin-left: auto; color: var(--ink-dim); }
.ms-studio-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 8px;
}
.ms-tool-rail {
  display: flex;
  flex-direction: column;
  gap: 7px;
  padding: 7px 5px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: color-mix(in srgb, var(--stage-2) 92%, transparent);
}
.ms-tool-rail span {
  display: grid;
  min-height: 45px;
  place-items: center;
  color: var(--ink-faint);
  border-radius: 9px;
  background: var(--stage-1);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .04em;
}
.ms-tool-rail span:first-child { color: var(--accent); border: 1px solid var(--accent-line); background: var(--accent-soft); }
.ms-canvas {
  position: relative;
  z-index: 1;
  min-height: 380px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  background:
    radial-gradient(circle at 77% 34%, color-mix(in srgb, #65a7ff 45%, transparent), transparent 20%),
    radial-gradient(circle at 78% 38%, #152647 0 14%, transparent 14.4%),
    linear-gradient(145deg, #090d1d 5%, #111932 49%, #2a1737 100%);
}
.ms-orbit { position: absolute; width: 360px; height: 360px; right: -112px; top: -104px; border: 1px solid rgba(131,191,255,.35); border-radius: 50%; box-shadow: 0 0 45px rgba(76,141,255,.14), inset 0 0 45px rgba(76,141,255,.10); animation: ms-orbit 28s linear infinite; }
.ms-orbit::before, .ms-orbit::after { content: ""; position: absolute; inset: 31px; border: 1px dashed rgba(255,255,255,.16); border-radius: 50%; }
.ms-orbit::after { inset: 76px; border-style: solid; border-color: rgba(255,166,81,.24); }
@keyframes ms-orbit { to { transform: rotate(360deg); } }
.ms-video { position: absolute; overflow: hidden; border: 1px solid rgba(255,255,255,.17); background: linear-gradient(145deg, rgba(255,255,255,.09), rgba(255,255,255,.02)); box-shadow: 0 14px 35px rgba(0,0,0,.32); }
.ms-video-main { inset: 28px 136px 28px 24px; border-radius: 17px; }
.ms-video-side { width: 126px; height: 104px; right: 18px; bottom: 26px; border-radius: 14px; }
.ms-person { position: absolute; left: 50%; bottom: -12%; width: 58%; aspect-ratio: .72; transform: translateX(-50%); border-radius: 48% 48% 20% 20%; background: linear-gradient(150deg, color-mix(in srgb, var(--accent) 72%, #fff), color-mix(in srgb, var(--accent) 40%, #201529)); }
.ms-person::before { content: ""; position: absolute; left: 50%; top: -26%; width: 48%; aspect-ratio: 1; transform: translateX(-50%); border-radius: 50%; background: inherit; }
.ms-video-side .ms-person { width: 62%; }
.ms-label { position: absolute; left: 10px; bottom: 9px; z-index: 2; padding: 4px 8px; border-radius: var(--r-chip); color: #fff; background: rgba(4,6,12,.72); font-size: 11px; font-weight: 700; }
.ms-camera-chip { position: absolute; z-index: 3; top: 23px; right: 18px; padding: 6px 9px; color: #fff; border: 1px solid rgba(255,255,255,.16); border-radius: var(--r-chip); background: rgba(4,6,12,.68); font-size: 11px; font-weight: 700; }
.ms-caption { position: absolute; z-index: 4; left: 21%; right: 5%; bottom: 14px; padding: 7px 10px; color: #fff; border-radius: 8px; background: rgba(4,6,12,.78); font-size: 10px; font-weight: 750; text-align: center; box-shadow: 0 6px 20px rgba(0,0,0,.28); }
.ms-note-chip { position: absolute; z-index: 4; top: 60px; right: 18px; padding: 5px 8px; color: #fff; border: 1px solid rgba(255,255,255,.15); border-radius: var(--r-chip); background: rgba(4,6,12,.7); font-size: 9px; font-weight: 750; }
.ms-transfer { position: relative; z-index: 2; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 10px; padding: 12px 4px 2px; color: var(--ink-dim); font-size: var(--text-xs); }
.ms-transfer b { color: var(--ink); }
.ms-progress { height: 7px; overflow: hidden; border-radius: var(--r-chip); background: var(--stage-3); }
.ms-progress i { display: block; width: 74%; height: 100%; border-radius: inherit; background: linear-gradient(90deg, var(--accent), #ffbb58); animation: ms-transfer 2.8s ease-in-out infinite alternate; }
@keyframes ms-transfer { from { width: 63%; } to { width: 82%; } }
.ms-float-card { position: absolute; z-index: 4; left: 16px; bottom: 60px; width: 180px; padding: 12px 14px; border: 1px solid var(--line-strong); border-radius: 13px; background: color-mix(in srgb, var(--stage-2) 92%, transparent); box-shadow: var(--shadow-pop); }
.ms-float-card span { display: block; color: var(--ink-faint); font-size: 10px; font-weight: 750; letter-spacing: .08em; text-transform: uppercase; }
.ms-float-card b { display: block; margin-top: 3px; color: var(--ink); font-size: var(--text-sm); }

.trust-strip { display: flex; align-items: center; gap: 22px; padding: 18px 0; border-block: 1px solid var(--line); }
.trust-strip > p { flex: 1; margin: 0; color: var(--ink-dim); font-size: var(--text-sm); }
.trust-pills { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 8px; }
.trust-pills span { padding: 6px 10px; color: var(--ink-dim); border: 1px solid var(--line); border-radius: var(--r-chip); background: var(--stage-1); font-size: var(--text-xs); font-weight: 700; }

.product-surface-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
.product-surface {
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: 18px;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 20px;
  background:
    radial-gradient(26rem 16rem at 100% 0, color-mix(in srgb, var(--surface-glow, var(--accent)) 13%, transparent), transparent 65%),
    linear-gradient(145deg, color-mix(in srgb, var(--stage-2) 97%, transparent), color-mix(in srgb, var(--stage-1) 97%, transparent));
  box-shadow: var(--shadow-card);
}
.product-surface.is-schedule { --surface-glow: #6f9dff; }
.product-surface.is-editor { --surface-glow: #bd77ff; }
.product-surface > header { display: flex; align-items: flex-start; gap: 12px; }
.surface-number { display: grid; width: 34px; height: 34px; flex: none; place-items: center; color: var(--accent); border: 1px solid var(--accent-line); border-radius: 10px; background: var(--accent-soft); font-size: 10px; font-weight: 850; }
.product-surface header p { margin: 1px 0 4px; color: var(--ink-faint); font-size: 10px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.product-surface h3 { margin: 0; color: var(--ink); font-size: clamp(1.25rem, 2vw, 1.65rem); line-height: 1.08; letter-spacing: -.03em; }
.product-surface > p { margin: 17px 2px 14px; color: var(--ink-dim); font-size: var(--text-sm); line-height: 1.58; }
.surface-points { display: grid; gap: 7px; margin: auto 2px 0; padding: 14px 0 0; border-top: 1px solid var(--line); list-style: none; }
.surface-points li { display: flex; align-items: center; gap: 8px; color: var(--ink-dim); font-size: var(--text-xs); }
.surface-points li::before { content: ""; width: 5px; height: 5px; flex: none; border-radius: 50%; background: var(--accent); box-shadow: 0 0 10px color-mix(in srgb, var(--accent) 55%, transparent); }
.surface-preview { position: relative; height: 190px; margin-top: 20px; overflow: hidden; border: 1px solid var(--line); border-radius: 14px; background: #080a10; box-shadow: inset 0 1px rgba(255,255,255,.04); }
.studio-preview { display: grid; grid-template-columns: 26px 1fr 58px; gap: 5px; padding: 7px; }
.surface-icon-rail, .surface-inspector { display: flex; flex-direction: column; gap: 5px; }
.surface-icon-rail i { height: 26px; border-radius: 6px; background: #1b1d25; }
.surface-icon-rail i:first-child { background: color-mix(in srgb, var(--accent) 42%, #1b1d25); }
.surface-stage { position: relative; overflow: hidden; border: 1px solid rgba(255,255,255,.11); border-radius: 8px; background: radial-gradient(circle at 70% 20%, #263c5f, #101526 48%, #191020); }
.surface-person { position: absolute; bottom: -16px; width: 42%; height: 74%; border-radius: 46% 46% 20% 20%; background: linear-gradient(145deg, var(--accent), #6f74ff); }
.surface-person::before { content: ""; position: absolute; top: -26%; left: 50%; width: 48%; aspect-ratio: 1; border-radius: 50%; background: inherit; transform: translateX(-50%); }
.surface-person.is-main { left: 8%; }
.surface-person.is-guest { right: 7%; width: 33%; height: 62%; filter: hue-rotate(45deg); }
.surface-stage b { position: absolute; right: 5px; bottom: 5px; padding: 3px 5px; color: #fff; border-radius: 4px; background: rgba(0,0,0,.62); font-size: 7px; }
.surface-inspector { padding: 4px; border-radius: 7px; background: #14161d; }
.surface-inspector span { height: 28px; border: 1px solid rgba(255,255,255,.07); border-radius: 5px; background: #20232d; }
.surface-inspector em { margin-top: auto; padding: 5px 2px; color: #b8b7c3; font-size: 7px; font-style: normal; text-align: center; }
.schedule-preview { display: grid; grid-template-columns: 35px 1fr; grid-template-rows: 1fr auto; gap: 7px; padding: 8px; }
.schedule-side { display: flex; grid-row: 1 / 3; flex-direction: column; gap: 5px; padding: 5px; border-radius: 7px; background: #14161d; }
.schedule-side i { height: 24px; border-radius: 5px; background: #242731; }
.schedule-side i:nth-child(2) { background: color-mix(in srgb, #6f9dff 45%, #242731); }
.schedule-days { display: grid; grid-template-columns: repeat(3, 1fr); gap: 5px; padding: 9px; border-radius: 8px; background: #14161d; }
.schedule-days b { grid-column: 1 / -1; color: #f0eff5; font-size: 9px; }
.schedule-days span { min-height: 25px; border-radius: 5px; background: #20232d; }
.schedule-days span.has-show { border: 1px solid color-mix(in srgb, #6f9dff 62%, transparent); background: color-mix(in srgb, #6f9dff 28%, #20232d); }
.schedule-next { display: grid; padding: 8px 10px; border: 1px solid rgba(255,255,255,.07); border-radius: 7px; background: #1a1d25; }
.schedule-next small, .schedule-next em { color: #8f909d; font-size: 7px; font-style: normal; }
.schedule-next strong { color: #f4f3f7; font-size: 10px; }
.editor-preview { display: grid; grid-template-rows: 1fr 44px; gap: 7px; padding: 8px; }
.editor-stage-mini { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 6px; padding: 7px; border-radius: 8px; background: linear-gradient(140deg, #101525, #281426); }
.editor-stage-mini span { border: 1px solid rgba(255,255,255,.1); border-radius: 6px; background: linear-gradient(145deg, rgba(255,255,255,.12), rgba(255,255,255,.025)); }
.editor-stage-mini b { position: absolute; left: 50%; bottom: 6px; padding: 4px 7px; color: #fff; border-radius: 4px; background: color-mix(in srgb, var(--accent) 75%, #2c1520); font-size: 7px; transform: translateX(-50%); }
.editor-timeline-mini { position: relative; display: grid; grid-template-columns: 1.2fr .55fr 1.5fr .7fr; gap: 3px; padding: 7px 5px; border-radius: 7px; background: #15171e; }
.editor-timeline-mini i { border-radius: 3px; background: color-mix(in srgb, var(--accent) 40%, #252833); }
.editor-timeline-mini i:nth-child(even) { background: color-mix(in srgb, #6f9dff 42%, #252833); }
.editor-timeline-mini em { position: absolute; top: 3px; bottom: 3px; left: 61%; width: 1px; background: #fff; box-shadow: 0 0 6px #fff; }
.latest-heading { display: flex; align-items: end; justify-content: space-between; gap: 20px; margin: 54px 0 22px; }
.latest-heading .section-kicker { margin: 0; }
.latest-heading h3 { margin: 0; color: var(--ink); font-size: clamp(1.45rem, 3vw, 2.25rem); letter-spacing: -.035em; }
.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.feature-card { min-height: 220px; padding: 24px; border: 1px solid var(--line); border-radius: 17px; background: linear-gradient(145deg, color-mix(in srgb, var(--stage-2) 96%, transparent), color-mix(in srgb, var(--stage-1) 96%, transparent)); box-shadow: var(--shadow-card); }
.feature-icon { display: inline-grid; width: 42px; height: 42px; place-items: center; margin-bottom: 24px; color: var(--accent); border: 1px solid var(--accent-line); border-radius: 12px; background: var(--accent-soft); }
.feature-card h3 { margin: 0 0 9px; color: var(--ink); font-size: var(--text-lg); }
.feature-card p { margin: 0; color: var(--ink-dim); font-size: var(--text-sm); line-height: 1.6; }

.local-compare { display: grid; grid-template-columns: .8fr 1.2fr; gap: 56px; align-items: center; padding: 48px; border: 1px solid var(--line); border-radius: 24px; background: linear-gradient(125deg, color-mix(in srgb, var(--accent) 8%, var(--stage-2)), var(--stage-1)); box-shadow: var(--shadow-card); }
.local-compare h2 { margin: 0 0 16px; font-size: clamp(2rem, 4vw, 3.3rem); line-height: 1.03; letter-spacing: -.045em; }
.local-compare > div > p { color: var(--ink-dim); line-height: 1.65; }
.compare-grid { display: grid; grid-template-columns: 1fr 1fr; overflow: hidden; border: 1px solid var(--line); border-radius: 15px; background: var(--stage-1); }
.compare-column { padding: 22px; }
.compare-column + .compare-column { border-left: 1px solid var(--line); background: color-mix(in srgb, var(--accent) 6%, var(--stage-2)); }
.compare-column h3 { margin: 0 0 16px; color: var(--ink); font-size: var(--text-base); }
.compare-column ul { display: grid; gap: 14px; margin: 0; padding: 0; list-style: none; }
.compare-column li { display: flex; gap: 9px; color: var(--ink-dim); font-size: var(--text-sm); line-height: 1.45; }
.compare-column svg { flex: none; margin-top: 2px; color: var(--ink-faint); }
.compare-column.is-local svg { color: var(--ok); }

.workflow-grid { display: grid; grid-template-columns: repeat(4, 1fr); counter-reset: workflow; }
.workflow-step { position: relative; padding: 0 26px; counter-increment: workflow; }
.workflow-step:first-child { padding-left: 0; }
.workflow-step:last-child { padding-right: 0; }
.workflow-step:not(:last-child)::after { content: ""; position: absolute; top: 19px; right: -5px; width: 26px; height: 1px; background: var(--line-strong); }
.workflow-step::before { content: "0" counter(workflow); display: grid; width: 40px; height: 40px; place-items: center; margin-bottom: 19px; color: var(--accent); border: 1px solid var(--accent-line); border-radius: 50%; background: var(--accent-soft); font-size: var(--text-xs); font-weight: 800; }
.workflow-step h3 { margin: 0 0 8px; font-size: var(--text-lg); }
.workflow-step p { margin: 0; color: var(--ink-dim); font-size: var(--text-sm); line-height: 1.55; }

.pricing-wrap { display: grid; grid-template-columns: .8fr 1.2fr; gap: 48px; align-items: center; }
.pricing-note { color: var(--ink-dim); line-height: 1.65; }
.pricing-card { position: relative; padding: 32px; overflow: hidden; border: 1px solid var(--accent-line); border-radius: 22px; background: linear-gradient(145deg, color-mix(in srgb, var(--accent) 10%, var(--stage-2)), var(--stage-1)); box-shadow: 0 24px 65px rgba(0,0,0,.3); }
.pricing-status { display: inline-flex; padding: 5px 9px; color: var(--accent); border: 1px solid var(--accent-line); border-radius: var(--r-chip); background: var(--accent-soft); font-size: 10px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.pricing-card h3 { margin: 16px 0 5px; font-size: var(--text-xl); }
.price { display: flex; align-items: baseline; gap: 8px; margin: 0 0 8px; }
.price strong { color: var(--ink); font-size: clamp(3rem, 7vw, 5rem); line-height: 1; letter-spacing: -.06em; }
.price span { color: var(--ink-dim); }
.pricing-card > p { color: var(--ink-dim); }
.pricing-card ul { display: grid; grid-template-columns: 1fr 1fr; gap: 11px 18px; margin: 24px 0; padding: 0; list-style: none; }
.pricing-card li { display: flex; gap: 8px; color: var(--ink-dim); font-size: var(--text-sm); }
.pricing-card li::before { content: "✓"; color: var(--ok); font-weight: 800; }
.pricing-renewal { padding-top: 18px; border-top: 1px solid var(--line); }
.pricing-renewal b { color: var(--ink); }
.pricing-card .primary-btn { display: inline-flex; min-height: 46px; align-items: center; justify-content: center; margin-top: 18px; padding: 10px 18px; text-decoration: none; }
.pricing-disclosure { margin-bottom: 0; font-size: var(--text-xs); }

.faq-shell { display: grid; grid-template-columns: minmax(250px, .72fr) minmax(0, 1.28fr); gap: clamp(34px, 7vw, 88px); align-items: start; }
.faq-intro { position: sticky; top: 96px; }
.faq-intro h2 { max-width: 12ch; margin: 0 0 18px; color: var(--ink); font-size: clamp(2.2rem, 4.4vw, 4rem); line-height: .98; letter-spacing: -.05em; }
.faq-intro > p:not(.section-kicker) { color: var(--ink-dim); line-height: 1.65; }
.faq-cta { display: inline-flex; align-items: center; justify-content: center; min-height: 44px; margin-top: 12px; padding: 8px 14px; border-radius: var(--r-btn); font-weight: 750; text-decoration: none; }
.faq-list { display: grid; gap: 10px; }
.faq-list details { margin: 0; padding: 0; overflow: hidden; border: 1px solid var(--line); border-radius: 15px; background: color-mix(in srgb, var(--stage-2) 92%, transparent); box-shadow: var(--shadow-card); transition: border-color var(--dur-fast) var(--ease), background var(--dur-fast) var(--ease); }
.faq-list details:hover { border-color: var(--line-strong); }
.faq-list details[open] { border-color: var(--accent-line); background: linear-gradient(145deg, color-mix(in srgb, var(--accent) 6%, var(--stage-2)), var(--stage-1)); }
.faq-list summary { display: grid; grid-template-columns: 34px minmax(0, 1fr) 30px; gap: 12px; align-items: center; min-height: 72px; padding: 10px 16px; color: var(--ink); font-weight: 750; cursor: pointer; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-index { color: var(--ink-faint); font-size: 10px; font-variant-numeric: tabular-nums; letter-spacing: .08em; }
.faq-toggle { display: grid; width: 28px; height: 28px; place-items: center; color: var(--accent); border: 1px solid var(--accent-line); border-radius: 50%; background: var(--accent-soft); font-size: 19px; font-weight: 450; transition: transform var(--dur-fast) var(--ease); }
.faq-list details[open] .faq-toggle { transform: rotate(45deg); }
.faq-list details p { max-width: 68ch; margin: 0; padding: 0 58px 22px 62px; color: var(--ink-dim); font-size: var(--text-sm); line-height: 1.68; }
.faq-list summary:focus-visible { outline: 2px solid var(--accent); outline-offset: -3px; border-radius: 13px; }

.studio-access { padding: 48px; border: 1px solid var(--line-strong); border-radius: 24px; background: var(--stage-1); box-shadow: var(--shadow-card); }
.studio-access-header { display: flex; align-items: end; justify-content: space-between; gap: 28px; margin-bottom: 28px; }
.studio-access-header h2 { margin: 0 0 8px; font-size: clamp(2rem, 4vw, 3.3rem); letter-spacing: -.045em; }
.studio-access-header p { max-width: 52ch; margin: 0; color: var(--ink-dim); }
#landing-actions { grid-template-columns: repeat(3, 1fr); }
#landing-actions .card { min-width: 0; }
#landing-actions .card button, #landing-actions .card .schedule-link { width: 100%; text-align: center; }
#landing-actions .card .schedule-link { display: inline-flex; align-items: center; justify-content: center; min-height: 44px; text-decoration: none; }
.landing-footer { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 28px 0 0; color: var(--ink-faint); border-top: 1px solid var(--line); font-size: var(--text-xs); }
.landing-footer a { color: var(--ink-dim); }

@media (max-width: 1000px) {
  .landing-nav-links { display: none; }
  .landing-nav-actions { margin-left: auto; }
  .hero { grid-template-columns: 1fr; min-height: 0; padding-top: 76px; }
  .hero-copy { max-width: 760px; }
  .marketing-stage { width: min(680px, 94%); margin: 0 auto; transform: none; }
  .product-surface-grid, .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .product-surface.is-editor { grid-column: 1 / -1; }
  .product-surface.is-editor .surface-preview { height: 230px; }
  .local-compare, .pricing-wrap { grid-template-columns: 1fr; }
  .faq-shell { grid-template-columns: 1fr; gap: 30px; }
  .faq-intro { position: static; }
  .faq-intro h2 { max-width: 16ch; }
  .workflow-grid { grid-template-columns: repeat(2, 1fr); gap: 36px 0; }
  .workflow-step:nth-child(2)::after { display: none; }
  #landing-actions { grid-template-columns: 1fr 1fr; }
  #landing-actions .card:first-child { grid-column: 1 / -1; }
}

@media (max-width: 680px) {
  .landing-nav { position: sticky; flex-wrap: wrap; gap: 8px; padding: 10px 14px; }
  .landing-brand span:last-child { display: inline; }
  .landing-nav-actions {
    display: grid;
    grid-template-columns: 42px repeat(3, minmax(0, 1fr));
    width: 100%;
    margin-left: 0;
    gap: 6px;
  }
  .landing-nav .nav-editor-btn { justify-content: center; min-width: 0; min-height: 42px; padding: 7px 6px; font-size: 12px; }
  .landing-nav-actions .landing-appearance { width: 42px; }
  /* The appearance trigger is the first item in the full-width phone action
     row. The shared panel normally right-aligns to its trigger, which would put
     almost the whole menu off the left edge here. Anchor this instance inward. */
  .landing-appearance .app-theme-menu-panel {
    left: 0;
    right: auto;
    width: min(340px, calc(100vw - 28px));
  }
  .landing { width: min(100% - 28px, 1180px); }
  .landing-section { padding: 64px 0; }
  .hero { gap: 42px; padding: 58px 0 44px; }
  .hero h1 { font-size: clamp(3rem, 15vw, 4.8rem); }
  .marketing-stage { width: 100%; padding: 9px; border-radius: 18px; }
  .ms-studio-shell { grid-template-columns: 42px minmax(0, 1fr); gap: 6px; }
  .ms-tool-rail { gap: 5px; padding: 5px 4px; }
  .ms-tool-rail span { min-height: 38px; font-size: 0; }
  .ms-tool-rail span::before { content: ""; width: 12px; height: 12px; border: 1px solid currentColor; border-radius: 3px; }
  .ms-canvas { min-height: 300px; }
  .ms-video-main { inset: 22px 102px 22px 16px; }
  .ms-video-side { width: 96px; height: 82px; right: 12px; bottom: 20px; }
  .ms-camera-chip { top: 16px; right: 12px; }
  .ms-note-chip { display: none; }
  .ms-caption { left: 7%; right: 7%; }
  .ms-float-card { left: 9px; bottom: 50px; width: 160px; }
  .trust-strip { align-items: flex-start; flex-direction: column; }
  .trust-pills { justify-content: flex-start; }
  .product-surface-grid, .feature-grid, .workflow-grid, #landing-actions { grid-template-columns: 1fr; }
  .product-surface.is-editor { grid-column: auto; }
  .product-surface.is-editor .surface-preview { height: 190px; }
  .product-surface { padding: 16px; }
  .latest-heading { align-items: flex-start; flex-direction: column; margin-top: 42px; }
  .feature-card { min-height: 0; }
  .local-compare, .studio-access { padding: 26px; border-radius: 18px; }
  .compare-grid { grid-template-columns: 1fr; }
  .compare-column + .compare-column { border-top: 1px solid var(--line); border-left: 0; }
  .workflow-step, .workflow-step:first-child, .workflow-step:last-child { padding: 0 0 0 58px; }
  .workflow-step::before { position: absolute; left: 0; top: 0; }
  .workflow-step:not(:last-child)::after { left: 20px; top: 44px; width: 1px; height: calc(100% + 28px); }
  .workflow-step:nth-child(2)::after { display: block; }
  .pricing-card { padding: 26px; }
  .pricing-card ul { grid-template-columns: 1fr; }
  .faq-list summary { grid-template-columns: 28px minmax(0, 1fr) 28px; gap: 8px; min-height: 68px; padding-inline: 12px; }
  .faq-list details p { padding: 0 48px 20px; }
  .studio-access-header, .landing-footer { align-items: flex-start; flex-direction: column; }
  #landing-actions .card:first-child { grid-column: auto; }
}

@media (prefers-reduced-motion: reduce) {
  .ms-orbit, .ms-progress i { animation: none; }
  .marketing-stage { transform: none; }
}
