
/* variables.css */

:root {
  --bg: #09090b;
  --bg-card: #18181b;
  --bg-surface: #111113;
  --border: rgba(255, 255, 255, 0.07);
  --accent: #0a84ff;
  --accent-2: #45c7ff;
  --gradient: #0a84ff;
  --text: #fafafa;
  --text-muted: #71717a;
  --text-secondary: #a1a1aa;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --radius: 14px;
  --radius-lg: 22px;
  --max-w: 1140px;
}


/* base.css */

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* â”€â”€ Utility â”€â”€ */
.grad {
  color: var(--accent);
}

section {
  padding: 96px 24px;
}

.si {
  max-width: var(--max-w);
  margin: 0 auto;
}

.centered {
  text-align: center;
}

.centered .ssub {
  margin-left: auto;
  margin-right: auto;
}

.eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #f2e004;
  margin-bottom: 14px;
}

.stitle {
  font-size: clamp(30px, 4vw, 50px);
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1.1;
  margin-bottom: 18px;
}

.ssub {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 520px;
}

/* â”€â”€ Buttons â”€â”€ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 20px;
  border-radius: 9px;
  font-size: 14px;
  font-weight: 600;
  font-family: var(--font);
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
  white-space: nowrap;
}

.btn-primary {
  background: var(--gradient);
  color: #fff;
}

.btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-1px);
  box-shadow: 0 8px 28px rgba(10, 132, 255, 0.32);
}

.btn-ghost {
  background: transparent;
  color: var(--text-secondary);
}

.btn-ghost:hover {
  color: var(--text);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.btn-outline:hover {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.04);
}

.btn-lg {
  padding: 14px 28px;
  font-size: 15px;
  border-radius: 999px;
}

/* â”€â”€ Shared check icon â”€â”€ */
.chk {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #0a84ff;
  border: 1px solid #0a84ff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 10px;
  color: #fff;
  margin-top: 2px;
}

/* â”€â”€ Scroll reveal â”€â”€ */
.will-reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.will-reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* â”€â”€ Keyframes â”€â”€ */
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.4; transform: scale(0.75); }
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.15; }
}


/* nav.css */

nav {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  background: rgba(9, 9, 11, 0.85);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.brand-logo-img {
  display: block;
  width: 118px;
  height: auto;
  max-height: 36px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  list-style: none;
}

.nav-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s, text-shadow 0.2s;
}

.nav-links a:hover {
  color: var(--accent);
  text-shadow: 0 0 14px rgba(10, 132, 255, 0.35);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-right .btn {
  border-radius: 999px;
}


/* hero.css */

/* â”€â”€ Hero wrapper â”€â”€ */
.hero {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 96px 24px 72px;
  text-align: center;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 14px;
  background: #f2e004;
  border: 1px solid #f2e004;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  color: #050506;
  margin-bottom: 28px;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #050506;
  animation: pulse 2s infinite;
}

.hero h1 {
  font-size: clamp(42px, 6.2vw, 76px);
  font-weight: 900;
  line-height: 1.06;
  letter-spacing: -2.5px;
  margin-bottom: 24px;
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
}

.hero-line {
  display: block;
  white-space: nowrap;
}

.hero p {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 520px;
  margin: 0 auto 40px;
  line-height: 1.72;
}

.hero-ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.platform-support {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin: 18px 0 0;
}

.platform-support span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 42px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid rgba(10, 132, 255, 0.2);
  background: rgba(10, 132, 255, 0.08);
  color: var(--text-secondary);
  font-size: 16px;
  font-weight: 700;
}

.platform-support img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

/* â”€â”€ Photoshop mockup â”€â”€ */
.hero-mockup {
  max-width: 880px;
  margin: 0 auto 72px;
  border-radius: var(--radius-lg);
  overflow: visible;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow:
    0 48px 140px rgba(0, 0, 0, 0.7),
    0 0 0 1px rgba(255, 255, 255, 0.03);
  background: var(--bg-card);
}

.titlebar {
  background: #1c1c1e;
  padding: 11px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  flex-shrink: 0;
}

.dot.r { background: #ff5f57; }
.dot.y { background: #febc2e; }
.dot.g { background: #28c840; }

.titlebar-label {
  flex: 1;
  text-align: center;
  font-size: 12px;
  color: var(--text-muted);
}

/* â”€â”€ Canvas area â”€â”€ */
.canvas-area {
  position: relative;
  height: 462px;
  background: #0f1424;
  overflow: visible;
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}

.hero-preview-video {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 400px;
  object-fit: cover;
  opacity: 0.92;
  z-index: 0;
}

.canvas-glow,
.rec-badge,
.pr-panel,
.timeline {
  z-index: 1;
}

.canvas-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
}

.glow-1 {
  width: 360px;
  height: 360px;
  top: 50%;
  left: 40%;
  transform: translate(-50%, -50%);
  background: rgba(10, 132, 255, 0.34);
}

.glow-2 {
  width: 280px;
  height: 280px;
  top: 20%;
  left: 20%;
  background: rgba(69, 199, 255, 0.22);
}

.glow-3 {
  width: 240px;
  height: 240px;
  bottom: 10%;
  right: 20%;
  background: rgba(10, 132, 255, 0.18);
}

/* â”€â”€ Recording badge â”€â”€ */
.rec-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  background: rgba(10, 132, 255, 0.14);
  border: 1px solid rgba(10, 132, 255, 0.28);
  border-radius: 8px;
  padding: 8px 13px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  color: #45c7ff;
  backdrop-filter: blur(12px);
}

.rec-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #0a84ff;
  animation: blink 1.3s infinite;
}

/* â”€â”€ PixelRec panel â”€â”€ */
.pr-panel {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 158px;
  background: rgba(20, 20, 24, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 11px;
  padding: 14px;
  backdrop-filter: blur(20px);
}

.pr-panel-title {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.pr-row {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  margin-bottom: 7px;
}

.pr-row span:first-child { color: var(--text-secondary); }
.pr-row span:last-child  { color: var(--text); font-weight: 600; }

/* â”€â”€ Timeline bar â”€â”€ */
.timeline {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  min-height: 62px;
  background: #06080d;
  backdrop-filter: blur(12px);
  padding: 14px 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}

.tl-bar {
  height: 3px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 2px;
  margin-bottom: 9px;
  overflow: hidden;
}

.tl-fill {
  height: 100%;
  width: 0%;
  background: var(--gradient);
  border-radius: 2px;
}

.tl-info {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: var(--text-muted);
}

/* â”€â”€ Social proof bar â”€â”€ */
.social-bar {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-surface);
}

.social-bar-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 92px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 112px;
  flex-wrap: wrap;
}

.sstat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
}

.sstat-num {
  font-size: 72px;
  font-weight: 900;
  line-height: 1;
}

.sstat-lbl {
  font-size: 21px;
  color: var(--text-muted);
}

.sdiv {
  width: 1px;
  height: 96px;
  background: var(--border);
}


/* sections.css */

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   BENEFITS
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.benefits-bg { background: var(--bg-surface); }

.benefits-hdr {
  text-align: center;
  margin-bottom: 56px;
}

.benefits-hdr .ssub {
  margin: 0 auto;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.bcard {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(10, 132, 255, 0.14), transparent 38%),
    #15161b;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 34px 30px 30px;
  text-align: center;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}

.bcard::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(10, 132, 255, 0.32), transparent);
  height: 1px;
  top: 0;
}

.bcard::after {
  content: '';
  position: absolute;
  width: 170px;
  height: 170px;
  left: 50%;
  top: -92px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: rgba(10, 132, 255, 0.16);
  filter: blur(42px);
  pointer-events: none;
}

.bcard:hover {
  border-color: rgba(10, 132, 255, 0.36);
  transform: translateY(-4px);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.26), 0 0 28px rgba(10, 132, 255, 0.1);
}

.bicon {
  position: relative;
  z-index: 1;
  width: 54px;
  height: 54px;
  background: linear-gradient(180deg, rgba(10, 132, 255, 0.24), rgba(10, 132, 255, 0.08));
  border: 1px solid rgba(10, 132, 255, 0.32);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  color: #58b5ff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 12px 28px rgba(10, 132, 255, 0.12);
}

.bicon svg {
  width: 24px;
  height: 24px;
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.bcard h3 {
  position: relative;
  z-index: 1;
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 12px;
  letter-spacing: -0.2px;
}

.bcard p {
  position: relative;
  z-index: 1;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 285px;
  margin: 0 auto;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   FEATURE SPLIT
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.why-pixelrec {
  background:
    linear-gradient(180deg, rgba(10, 132, 255, 0.08), transparent 42%),
    #071226;
}

.why-head {
  text-align: center;
  margin: 0 auto 48px;
}

.why-head .stitle {
  font-size: clamp(42px, 6vw, 64px);
  margin-bottom: 16px;
}

.why-head .ssub {
  margin: 0 auto;
  max-width: 560px;
}

.compare-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.compare-card {
  background: rgba(7, 12, 28, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  padding: 28px 32px 32px;
  text-align: center;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.26);
  display: flex;
  flex-direction: column;
  min-height: 496px;
}

.compare-card h3 {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 10px;
}

.compare-card p {
  max-width: 340px;
  min-height: 66px;
  margin: 0 auto 22px;
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.55;
}

.compare-visual {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  aspect-ratio: 1 / 1;
  background: #9b9b9b;
  width: 100%;
  margin-top: auto;
}

.compare-visual video,
.compare-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.compare-visual.muted video,
.compare-visual.muted img {
  filter: grayscale(1) contrast(0.88) brightness(1.1);
  opacity: 0.72;
}

.compare-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(10, 132, 255, 0.88);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.4px;
}

.seo-section {
  background:
    linear-gradient(180deg, rgba(10, 132, 255, 0.04), transparent 45%),
    var(--bg-surface);
}

.seo-panel {
  border: 1px solid rgba(10, 132, 255, 0.18);
  border-radius: var(--radius-lg);
  padding: 42px;
  background: linear-gradient(135deg, rgba(10, 132, 255, 0.1), rgba(21, 22, 27, 0.96) 42%);
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 34px;
  align-items: center;
}

.seo-copy .stitle {
  font-size: clamp(30px, 4vw, 48px);
  margin-bottom: 16px;
}

.seo-copy .ssub {
  max-width: 500px;
}

.seo-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.seo-card {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 20px 22px;
  background: rgba(4, 8, 18, 0.58);
}

.seo-card h3 {
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 8px;
}

.seo-card p {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.65;
}

.fsplit {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.fsplit.rev { direction: rtl; }
.fsplit.rev > * { direction: ltr; }

.flist {
  list-style: none;
  margin-top: 26px;
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.flist li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  font-size: 15px;
  color: var(--text-secondary);
}

/* â”€â”€ Feature visuals â”€â”€ */
.fvisual {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  aspect-ratio: 4 / 3;
  background: var(--bg-card);
  position: relative;
}

/* Shared mini titlebar used inside visuals */
.fv-bar {
  background: #1c1c1e;
  padding: 9px 14px;
  display: flex;
  align-items: center;
  gap: 6px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 11px;
  color: var(--text-muted);
}

.fv-bar .dot {
  width: 8px;
  height: 8px;
}

/* â”€â”€ Visual 1: Auto Recording â”€â”€ */
.fv1 {
  background: #101727;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.fv-body {
  flex: 1;
  position: relative;
  overflow: hidden;
}

.stroke {
  position: absolute;
  border-radius: 100px;
  filter: blur(7px);
  opacity: 0.75;
}

.fv-frames {
  padding: 10px 12px;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  gap: 6px;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.fthumb {
  width: 50px;
  height: 34px;
  border-radius: 5px;
  flex-shrink: 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.fthumb.active {
  border-color: var(--accent);
}

/* â”€â”€ Visual 2: Export â”€â”€ */
.fv2 {
  background: #0d1220;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 28px;
}

.exp-label {
  font-size: 12px;
  font-weight: 300;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin-bottom: 2px;
}

.exp-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 18px 22px;
  width: 100%;
  max-width: 240px;
}

.exp-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 9px;
  font-size: 13px;
}

.exp-row span:first-child { color: var(--text-muted); }
.exp-row span:last-child  { color: var(--text); font-weight: 600; }

.exp-btn {
  width: 100%;
  padding: 11px;
  background: var(--gradient);
  border: none;
  border-radius: 8px;
  color: #fff;
  font-size: 13px;
  font-weight: inherit;
  cursor: pointer;
  font-family: var(--font);
  margin-top: 6px;
  transition: opacity 0.2s;
}

.exp-btn:hover { opacity: 0.88; }

.exp-note {
  font-size: 12px;
  color: var(--text-muted);
}

/* â”€â”€ Visual 3: Performance â”€â”€ */
.fv3 {
  background:
    radial-gradient(circle at 18% 8%, rgba(10, 132, 255, 0.18), transparent 34%),
    linear-gradient(180deg, #08111f 0%, #071019 100%);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.fv3 .fv-bar {
  background: #151a23;
}

.fv-brand-title {
  margin-left: 8px;
  color: #9fcfff;
  font-weight: 700;
  letter-spacing: 0.2px;
}

.cpu-body {
  flex: 1;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cpu-row { display: flex; flex-direction: column; gap: 6px; }

.cpu-lbl {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: #c7d4e8;
}

.cpu-bar-bg {
  height: 6px;
  background: rgba(10, 132, 255, 0.1);
  border-radius: 3px;
  overflow: hidden;
}

.cpu-fill { height: 100%; border-radius: 3px; }
.cpu-fill.low { width: 0%; background: #30d158; }
.cpu-fill.mid { width: 0%; background: #30d158; }
.cpu-fill.high{ width: 78%; background: #0a84ff; }

.cpu-note {
  margin: 0 20px 20px;
  padding: 12px;
  background: rgba(10, 132, 255, 0.1);
  border: 1px solid rgba(10, 132, 255, 0.24);
  border-radius: 9px;
  font-size: 12px;
  color: #8fd0ff;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   WHAT'S NEW IN V2
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.v2-bg { background: var(--bg-surface); }

.v2-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 52px;
  text-align: left;
}

.v2card {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(10, 132, 255, 0.13), rgba(10, 132, 255, 0.035) 40%, rgba(255, 255, 255, 0.018)),
    rgba(20, 22, 28, 0.86);
  border: 1px solid rgba(10, 132, 255, 0.28);
  border-radius: 24px;
  padding: 30px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 22px 60px rgba(0, 0, 0, 0.24);
  transition: border-color 0.22s, transform 0.22s, box-shadow 0.22s;
}

.v2card::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 0%, rgba(10, 132, 255, 0.16), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent 44%);
  opacity: 0.72;
  pointer-events: none;
}

.v2card:hover {
  border-color: rgba(10, 132, 255, 0.42);
  transform: translateY(-3px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 28px 72px rgba(0, 0, 0, 0.3),
    0 0 34px rgba(10, 132, 255, 0.08);
}

.v2tag {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 11px;
  background: rgba(10, 132, 255, 0.16);
  border: 1px solid rgba(10, 132, 255, 0.38);
  border-radius: 100px;
  font-size: 11px;
  font-weight: 800;
  color: #4da3ff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 18px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.v2tag.imp {
  background: rgba(10, 132, 255, 0.16);
  border-color: rgba(10, 132, 255, 0.38);
  color: #4da3ff;
}

.v2card h3 {
  position: relative;
  z-index: 1;
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.2px;
  margin-bottom: 10px;
}

.v2card p {
  position: relative;
  z-index: 1;
  font-size: 14px;
  color: rgba(228, 233, 244, 0.72);
  line-height: 1.68;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   TESTIMONIALS
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.tgrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 52px;
}

.tcard {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
}

.stars {
  color: #ffd60a;
  font-size: 13px;
  letter-spacing: 2px;
  margin-bottom: 14px;
}

.tcard p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.68;
  margin-bottom: 20px;
}

.tauthor { display: flex; align-items: center; gap: 11px; }

.tavatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
  border: 1px solid rgba(10, 132, 255, 0.34);
  box-shadow: 0 0 0 3px rgba(10, 132, 255, 0.08);
  flex-shrink: 0;
  display: block;
}

.tname { font-weight: 600; font-size: 14px; }
.trole { font-size: 12px; color: var(--text-muted); }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   PRICING
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.pricing-bg { background: var(--bg-surface); }

.pricing-grid {
  max-width: 980px;
  margin: 126px auto 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}

.pricing-carousel-wrap {
  position: relative;
}

.pricing-swipe-hint {
  display: none;
}

.pcard {
  background: var(--bg-card);
  border: 1px solid rgba(10, 132, 255, 0.2);
  border-radius: var(--radius-lg);
  padding: 40px;
  position: relative;
  overflow: hidden;
  text-align: left;
}

.pcard::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gradient);
}

.pcard-lite {
  border-color: var(--border);
}

.pcard-lite::before {
  display: none;
}

.pcard-featured {
  background: linear-gradient(90deg, #0a84ff 0%, #006ee6 100%);
  border-color: rgba(10, 132, 255, 0.45);
  border-width: 1px;
  padding: 74px 40px 48px;
  margin-top: -38px;
  box-shadow: 0 0 38px rgba(10, 132, 255, 0.24);
}

.pcard-featured::before {
  display: none;
}

.pcard-featured::after {
  content: '';
  position: absolute;
  left: 1px;
  right: 1px;
  top: 38px;
  bottom: 1px;
  border-radius: 20px;
  background:
    linear-gradient(90deg, rgba(0, 120, 255, 0.12) 0%, rgba(0, 120, 255, 0.07) 32%, rgba(0, 120, 255, 0) 68%),
    linear-gradient(90deg, #121723 0%, #131722 52%, #141419 100%);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  z-index: 0;
}

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

.pcard-ribbon {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 38px;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  background: transparent;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.7px;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.18);
  box-shadow: none;
  z-index: 2;
}

.pcard-ribbon img {
  width: 15px;
  height: 15px;
  display: block;
}

.pcard-ribbon + .pname {
  margin-top: 0;
}

.pbadge {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(10, 132, 255, 0.09);
  border: 1px solid rgba(10, 132, 255, 0.18);
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 18px;
}

.pname  {
  font-size: 30px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.6px;
  margin-bottom: 8px;
}

.pname-with-discount {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.pro-weight {
  font-weight: 900;
}

.discount-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 7px;
  border-radius: 4px;
  background: #f2e004;
  border: 1px solid #f2e004;
  color: #141419;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1;
}

.support-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 5px 10px;
  border-radius: 3px;
  background: linear-gradient(90deg, #3159d8 0%, #29b7ff 100%);
  border: 0;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
  text-transform: uppercase;
}

.pdesc {
  max-width: 360px;
  margin: 0 0 30px;
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.5;
}

.pprice {
  font-size: 58px;
  font-weight: 700;
  letter-spacing: -2px;
  line-height: 1;
  margin-bottom: 4px;
  color: #fff;
}

.pprice-sale {
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.pprice-row {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: nowrap;
  margin-bottom: 4px;
  width: 100%;
}

.pprice-row .pprice {
  margin-bottom: 0;
}

.old-price {
  position: relative;
  color: rgba(255, 255, 255, 0.72);
  font-size: 58px;
  font-weight: 700;
  letter-spacing: -2px;
  line-height: 1;
}

.old-price::after {
  content: '';
  position: absolute;
  left: -2px;
  right: -2px;
  top: 53%;
  height: 3px;
  border-radius: 999px;
  background: #f2e004;
  transform: rotate(-7deg);
}

.sale-price {
  color: #fff;
  font-size: 58px;
  font-weight: inherit;
  letter-spacing: -2px;
  line-height: 1;
}

.pprice .grad {
  color: #fff;
  background: none;
  -webkit-background-clip: initial;
  background-clip: initial;
  -webkit-text-fill-color: currentColor;
}

.pperiod { font-size: 14px; color: var(--text-muted); margin-bottom: 8px; }

.pcard .pperiod {
  margin-bottom: 8px;
}

.standard-price {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 28px;
  padding: 0 10px;
  margin-bottom: 22px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-secondary);
  font-size: 13px;
  font-weight: 500;
}

.pprice-row .standard-price {
  flex: 0 0 auto;
  margin-bottom: 0;
  transform: translateY(-1px);
  white-space: nowrap;
}

.standard-price span {
  margin-left: 4px;
  color: #fff;
  font-weight: 700;
}

.pmth {
  display: inline-block;
  font-size: 13px;
  color: var(--text-secondary);
  background: rgba(255, 255, 255, 0.05);
  padding: 3px 10px;
  border-radius: 100px;
  margin-bottom: 28px;
}

.pdivider { height: 1px; background: var(--border); margin-bottom: 26px; }

.pfeatures {
  list-style: none;
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.pfeatures li {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 14px;
  color: #fff;
}

.feature-pill {
  display: inline-flex;
  align-items: center;
  min-height: 18px;
  padding: 0 5px;
  background: linear-gradient(90deg, #0a84ff 0%, #006ee6 100%);
  border: 0;
  color: #fff;
  border-radius: 3px;
  font-weight: 700;
}

.pfeatures li.feature-off {
  color: rgba(255, 255, 255, 0.38);
}

.off-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.45);
  font-size: 14px;
  line-height: 1;
}

.pnote {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 14px;
  text-align: center;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   FAQ
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.faq-bg { background: var(--bg-surface); }

.faq-hdr {
  text-align: center;
  margin-bottom: 52px;
}

.faq-list {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.fitem {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s;
}

.fitem.open { border-color: rgba(10, 132, 255, 0.18); }

.fq {
  width: 100%;
  text-align: left;
  padding: 18px 22px;
  background: transparent;
  border: none;
  color: var(--text);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  font-family: var(--font);
}

.fq-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  background: rgba(10, 132, 255, 0.09);
  border: 1px solid rgba(10, 132, 255, 0.14);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--accent);
  transition: transform 0.2s;
}

.fitem.open .fq-icon { transform: rotate(45deg); }

.fa {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.32s ease, padding 0.32s ease;
  padding: 0 22px;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.72;
}

.fitem.open .fa {
  max-height: 220px;
  padding: 0 22px 18px;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   FINAL CTA
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.fcta {
  text-align: center;
  position: relative;
  overflow: hidden;
}

.fcta::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 700px; height: 700px;
  background: rgba(10, 132, 255, 0.05);
  pointer-events: none;
}

.fcta .stitle {
  max-width: 620px;
  margin: 0 auto 18px;
  font-size: clamp(34px, 5vw, 58px);
}

.fcta .ssub {
  margin: 0 auto 40px;
}


/* demo.css */

/* ══════════════════════════════════════════
   DEMO SECTION — wrapper
══════════════════════════════════════════ */
.demo-section { background: var(--bg-surface); }

.demo-section .si {
  max-width: var(--max-w);
}

.demo-hdr {
  position: relative;
  text-align: center;
  margin-bottom: 52px;
}
.demo-hdr .ssub { margin: 0 auto; }

/* ══════════════════════════════════════════
   PHOTOSHOP WORKSPACE WRAPPER
══════════════════════════════════════════ */
.demo-workspace {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 40px 100px rgba(0,0,0,0.7), 0 0 0 1px rgba(255,255,255,0.03);
  user-select: none;
}

/* macOS-style titlebar */
.demo-titlebar {
  height: 38px;
  background: #2c2c2e;
  display: flex;
  align-items: center;
  padding: 0 14px;
  gap: 8px;
  border-bottom: 1px solid rgba(0,0,0,0.4);
  position: relative;
}

.demo-titlebar-dots { display: flex; gap: 7px; }
.demo-titlebar-dot { width: 12px; height: 12px; border-radius: 50%; }
.demo-titlebar-dot.r { background: #ff5f57; }
.demo-titlebar-dot.y { background: #febc2e; }
.demo-titlebar-dot.g { background: #28c840; }

.demo-titlebar-label {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  font-weight: 500;
  pointer-events: none;
}

/* PS-style menu bar */
.demo-menubar {
  height: 26px;
  background: #1e1e20;
  display: flex;
  align-items: center;
  padding: 0 12px;
  gap: 20px;
  border-bottom: 1px solid rgba(0,0,0,0.4);
}

.demo-menu-item {
  font-size: 11.5px;
  color: rgba(255,255,255,0.6);
  cursor: default;
}

.demo-menu-item:first-child { color: rgba(255,255,255,0.85); font-weight: 600; }

.demo-optionsbar {
  min-height: 38px;
  background: #2b2b2d;
  border-bottom: 1px solid rgba(0,0,0,0.45);
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0 12px;
  color: rgba(255,255,255,0.72);
}

.demo-options-group,
.demo-size-control {
  display: flex;
  align-items: center;
  gap: 8px;
}

.demo-options-label,
.demo-size-control span {
  font-size: 11px;
  color: rgba(255,255,255,0.56);
}

.demo-mode-btn {
  min-height: 24px;
  padding: 0 10px;
  border-radius: 5px;
  border: 1px solid rgba(255,255,255,0.12);
  background: #1f1f21;
  color: rgba(255,255,255,0.72);
  font: 600 11px var(--font);
  cursor: pointer;
}

.demo-mode-btn.active {
  border-color: rgba(10,132,255,0.65);
  background: rgba(10,132,255,0.22);
  color: #d8ecff;
}

.demo-size-control input {
  width: 96px;
  accent-color: #0a84ff;
}

/* ── main body ── */
.demo-body {
  display: flex;
  height: 520px;
}

/* ── PS toolbar image ── */
.demo-toolbar-img {
  height: 100%;
  width: 52px;
  display: block;
  flex-shrink: 0;
  object-fit: cover;
  object-position: top left;
  border-right: 1px solid #111;
  user-select: none;
  pointer-events: none;
}

/* ── PS left toolbar ── */
.demo-toolbar {
  width: 50px;
  background: #1f1f1f;
  border-right: 1px solid #111;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 4px 0 6px;
  gap: 0;
  overflow: hidden;
  flex-shrink: 0;
}

.demo-tool-pair {
  display: flex;
  gap: 0;
}

.demo-tool {
  width: 23px;
  height: 23px;
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(188,196,208,0.82);
  cursor: pointer;
  transition: background 0.1s, color 0.1s;
  flex-shrink: 0;
}

.demo-tool svg {
  width: 13px;
  height: 13px;
  flex-shrink: 0;
}

.demo-tool:hover { background: rgba(255,255,255,0.12); color: #fff; }
.demo-tool.active {
  background: #2563a8;
  color: #d6eaff;
}

.demo-tool-sep-full {
  width: 42px;
  height: 1px;
  background: rgba(255,255,255,0.1);
  margin: 3px 0;
}

/* Foreground / Background swatches */
.demo-color-swatches {
  position: relative;
  width: 42px;
  height: 32px;
  margin-top: 4px;
  flex-shrink: 0;
}

.demo-swatch-bg {
  position: absolute;
  bottom: 0; right: 4px;
  width: 18px; height: 18px;
  background: #fff;
  border: 1px solid rgba(255,255,255,0.5);
  box-shadow: 0 0 0 1px rgba(0,0,0,0.8);
}

.demo-swatch-fg {
  position: absolute;
  top: 0; left: 4px;
  width: 18px; height: 18px;
  background: #111;
  border: 1px solid rgba(255,255,255,0.15);
  box-shadow: 0 0 0 1px rgba(0,0,0,0.8);
}

.demo-color {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.18);
  background: var(--swatch);
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
}

.demo-color.active {
  border-color: #fff;
  box-shadow: 0 0 0 2px rgba(10,132,255,0.5);
}


/* ── Canvas area ── */
.demo-canvas-wrap {
  flex: 1;
  background: #3c3c3e;
  position: relative;
  overflow: hidden;
  cursor: crosshair;
}

.demo-canvas-checkerboard {
  position: absolute;
  inset: 20px 20px 20px 20px;
  background: rgba(255,255,255,0.04);
  border-radius: 2px;
}

.demo-canvas-art {
  position: absolute;
  inset: 20px;
  background: #ffffff;
  border-radius: 2px;
  overflow: hidden;
  cursor: crosshair;
  touch-action: none;
}

.demo-draw-canvas {
  position: absolute;
  inset: 0;
  z-index: 8;
  width: 100%;
  height: 100%;
  touch-action: none;
}

.demo-canvas-art.is-eraser {
  cursor: cell;
}

/* draw hint overlay */
.demo-draw-hint {
  position: absolute;
  inset: 0;
  z-index: 9;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.demo-draw-hint span {
  font-family: 'Permanent Marker', cursive;
  font-size: 52px;
  color: rgba(0,0,0,0.22);
  line-height: 1;
}

.demo-draw-hint svg {
  width: 80px;
  height: 80px;
  animation: hintBounce 1.8s ease-in-out infinite;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.12));
}

.demo-draw-hint.hidden {
  opacity: 0;
}

@keyframes hintBounce {
  0%, 100% { transform: translateY(0) rotate(-8deg); }
  50%       { transform: translateY(-8px) rotate(-8deg); }
}

/* animated brush strokes */
.demo-brush {
  position: absolute;
  border-radius: 100px;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.demo-brush.visible { opacity: 0.75; }

.b1 { top: 22%; left: 8%;  width: 160px; height: 22px; background: #0a84ff; transform: rotate(-12deg); filter: blur(6px); }
.b2 { top: 38%; left: 22%; width: 120px; height: 18px; background: #45c7ff; transform: rotate(7deg);  filter: blur(5px); }
.b3 { top: 55%; left: 10%; width: 180px; height: 16px; background: #0a84ff; transform: rotate(-6deg); filter: blur(5px); }
.b4 { top: 30%; left: 52%; width: 110px; height: 20px; background: #30d158; transform: rotate(11deg); filter: blur(6px); }
.b5 { top: 65%; left: 30%; width: 140px; height: 14px; background: #0a84ff; transform: rotate(-4deg); filter: blur(5px); }
.b6 { top: 48%; left: 58%; width: 100px; height: 16px; background: #45c7ff; transform: rotate(9deg);  filter: blur(5px); }
.b7 { top: 72%; left: 55%; width: 130px; height: 14px; background: #30d158; transform: rotate(-8deg); filter: blur(5px); }
.b8 { top: 18%; left: 42%; width: 90px;  height: 18px; background: #0a84ff; transform: rotate(14deg); filter: blur(6px); }

/* glow layers */
.demo-canvas-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(50px);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.demo-canvas-glow.active { opacity: 0; }

.cg1 { width: 280px; height: 280px; top: 20%; left: 20%; background: rgba(10,132,255,0.35); }
.cg2 { width: 220px; height: 220px; top: 40%; left: 50%; background: rgba(69,199,255,0.25); }
.cg3 { width: 200px; height: 200px; top: 60%; left: 10%; background: rgba(10,132,255,0.2); }

/* canvas status bar */
.demo-canvas-statusbar {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 20px;
  background: rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  padding: 0 10px;
  gap: 16px;
  font-size: 10px;
  color: rgba(255,255,255,0.35);
}

/* ══════════════════════════════════════════
   PLUGIN PANEL DOCK (right side)
══════════════════════════════════════════ */
.demo-plugin-dock {
  width: 278px;
  flex-shrink: 0;
  background: #0b0b0f;
  border-left: 1px solid rgba(0,0,0,0.5);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

/* PS panel header bar */
.demo-plugin-dock-header {
  height: 26px;
  background: #1e1e20;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 10px;
  font-size: 10.5px;
  font-weight: 600;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.02em;
}

.demo-plugin-dock-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.3);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0;
}

/* ══════════════════════════════════════════
   PIXELREC PLUGIN PANEL (exact replica)
══════════════════════════════════════════ */
.pxr-panel {
  flex: 0 0 auto;
  min-height: auto;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 12px 12px 10px;
  background: #0b0b0f;
  color: #f5f7fb;
  font-family: "SF Pro Text", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 12px;
  line-height: 1.4;
  --p-accent: #0a84ff;
  --p-accent-bright: #45a4ff;
  --p-border: rgba(255,255,255,0.09);
  --p-surface: rgba(18,20,26,0.9);
  --p-text: #f5f7fb;
  --p-text2: rgba(245,247,251,0.72);
  --p-text3: rgba(245,247,251,0.42);
  --p-danger: #ff453a;
  --p-radius: 16px;
  --p-radius-md: 12px;
}

/* ── Segmented tabs ── */
.pxr-segmented {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border: 1px solid var(--p-border);
  border-radius: 18px;
  background: rgba(13,15,21,0.78);
  box-shadow: 0 10px 28px rgba(0,0,0,0.22), inset 0 1px 0 rgba(255,255,255,0.04);
  flex-shrink: 0;
}

.pxr-seg-tab {
  flex: 1;
  min-height: 38px;
  padding: 0 10px;
  border: 0;
  border-radius: 14px;
  background: transparent;
  color: var(--p-accent-bright);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 600;
  font-family: inherit;
  transition: background 160ms ease, color 160ms ease;
  white-space: nowrap;
}

.pxr-seg-tab:hover { color: var(--p-text); background: rgba(255,255,255,0.04); }

.pxr-seg-tab.is-active {
  color: #1a1a2e;
  background: rgba(240,244,255,0.92);
  box-shadow: 0 10px 22px rgba(0,0,0,0.22), inset 0 1px 0 rgba(255,255,255,0.06);
}

.pxr-tab-icon { font-size: 13px; line-height: 1; }

/* ── View frame ── */
.pxr-view-frame {
  flex: 1;
  min-height: 0;
  overflow: hidden;
  position: relative;
}

.pxr-view-pane {
  height: 100%;
  overflow-y: auto;
  overflow-x: hidden;
  padding-right: 2px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pxr-view-pane::-webkit-scrollbar { width: 8px; }
.pxr-view-pane::-webkit-scrollbar-track { background: transparent; }
.pxr-view-pane::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.12); border-radius: 99px; }

/* ── Cards ── */
.pxr-card {
  border: 1px solid var(--p-border);
  border-radius: var(--p-radius);
  background: var(--p-surface);
  box-shadow: 0 10px 28px rgba(0,0,0,0.22), inset 0 1px 0 rgba(255,255,255,0.05);
  padding: 12px;
}

/* ── Recording hero card ── */
.pxr-rec-hero { overflow: visible; z-index: 2; }

.pxr-recording-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 12px;
}

.pxr-recording-info { display: flex; align-items: center; gap: 8px; min-width: 0; }

.pxr-rec-indicator {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(245,247,251,0.3);
  flex-shrink: 0;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.pxr-rec-indicator.is-recording {
  background: var(--p-danger);
  box-shadow: 0 0 0 0 rgba(255,69,58,0.5);
  animation: recPulse 1.4s ease-out infinite;
}

@keyframes recPulse {
  0%   { box-shadow: 0 0 0 0 rgba(255,69,58,0.5); }
  60%  { box-shadow: 0 0 0 6px rgba(255,69,58,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,69,58,0); }
}

.pxr-recording-copy { display: flex; flex-direction: column; gap: 2px; }

.pxr-recording-title {
  font-size: 14px;
  font-weight: 650;
  color: var(--p-text);
  line-height: 1.2;
}

.pxr-recording-sub {
  font-size: 10.5px;
  color: var(--p-text3);
}

/* ── iOS-style toggle ── */
.pxr-ios-toggle--hero {
  width: 50px;
  height: 29px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  cursor: pointer;
  position: relative;
  flex-shrink: 0;
  transition: background 240ms ease, border-color 240ms ease, box-shadow 240ms ease;
  outline: none;
}

.pxr-ios-toggle--hero.is-on {
  background: #34c759;
  border-color: rgba(52,199,89,0.52);
  box-shadow: 0 0 0 3px rgba(52,199,89,0.14), inset 0 1px 0 rgba(255,255,255,0.16);
}

.pxr-ios-toggle-thumb {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 21px;
  height: 21px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 2px 7px rgba(0,0,0,0.36);
  transition: left 240ms cubic-bezier(0.2,0.9,0.2,1), box-shadow 240ms ease;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0; /* hide the ● character */
}

.pxr-ios-toggle--hero.is-on .pxr-ios-toggle-thumb {
  left: 24px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.28);
}

/* ── Export button ── */
.pxr-export-button {
  width: 100%;
  min-height: 34px;
  padding: 0 14px;
  border: 1px solid rgba(10,132,255,0.44);
  border-radius: 12px;
  background: #0a84ff;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 650;
  font-family: inherit;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(10,132,255,0.22), inset 0 1px 0 rgba(255,255,255,0.18);
  transition: transform 160ms ease, box-shadow 160ms ease, opacity 160ms ease, filter 160ms ease;
}

.pxr-export-button:hover:not(:disabled) {
  transform: translateY(-1px);
  filter: brightness(1.08);
  box-shadow: 0 14px 28px rgba(10,132,255,0.28), inset 0 1px 0 rgba(255,255,255,0.18);
}

.pxr-export-button:disabled,
.pxr-export-button.is-disabled {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.07);
  color: var(--p-text3);
  box-shadow: none;
  cursor: not-allowed;
}

/* ── Export progress ── */
.pxr-export-progress {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 2px 0;
}

.pxr-export-progress-labels {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: var(--p-text2);
}

.pxr-progress-track {
  height: 4px;
  background: rgba(255,255,255,0.08);
  border-radius: 2px;
  overflow: hidden;
}

.pxr-progress-fill {
  height: 100%;
  border-radius: 2px;
  background: #0a84ff;
  transition: width 0.4s ease;
}

/* ── Export dialog (dropdown) ── */
.pxr-export-message {
  margin-top: 7px;
  color: var(--p-text3);
  font-size: 11px;
  text-align: center;
}

.pxr-export-dialog {
  margin-top: 10px;
  border-top: 1px solid var(--p-border);
  padding-top: 10px;
}

.pxr-export-dialog-title {
  font-size: 11px;
  font-weight: 700;
  color: var(--p-text3);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
}

.pxr-export-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
  font-size: 12px;
  color: var(--p-text2);
}

.pxr-export-row:last-child { margin-bottom: 0; }

.pxr-export-pick {
  display: flex;
  gap: 4px;
}

.pxr-export-opt {
  padding: 3px 9px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.04);
  color: var(--p-text3);
  font-size: 11px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: all 0.15s;
}

.pxr-export-opt:hover { border-color: rgba(255,255,255,0.2); color: var(--p-text); }

.pxr-export-opt.active {
  border-color: rgba(10,132,255,0.5);
  background: rgba(10,132,255,0.15);
  color: #45a4ff;
}

.pxr-export-confirm {
  width: 100%;
  min-height: 32px;
  margin-top: 10px;
  border-radius: 10px;
  border: 1px solid rgba(10,132,255,0.42);
  background: #0a84ff;
  color: #fff;
  font-size: 12px;
  font-weight: 650;
  font-family: inherit;
  cursor: pointer;
  transition: filter 0.15s, transform 0.15s;
}

.pxr-export-confirm:hover { filter: brightness(1.08); transform: translateY(-1px); }

/* ── Info card (dashboard metrics) ── */
.pxr-info-card { padding: 6px 0; }

.pxr-info-row {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 12px;
}

.pxr-info-icon {
  width: 24px;
  height: 24px;
  border-radius: 7px;
  background: rgba(10,132,255,0.14);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 12px;
  color: #c8e8ff;
}

.pxr-info-label {
  flex: 1;
  font-size: 11.5px;
  font-weight: 600;
  color: var(--p-text);
}

.pxr-info-value {
  font-size: 12px;
  font-weight: 600;
  color: var(--p-text2);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  min-width: 0;
  text-align: right;
}

.pxr-info-spinner {
  width: 12px; height: 12px;
  border: 1.5px solid rgba(10,132,255,0.3);
  border-top-color: #45a4ff;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  flex-shrink: 0;
}

@keyframes spin { to { transform: rotate(360deg); } }

.pxr-info-row-sep {
  height: 1px;
  background: rgba(255,255,255,0.05);
  margin: 0 12px;
}

/* ── Tips card ── */
.pxr-tips-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pxr-tips-title {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--p-text3);
  margin-bottom: 2px;
}

.pxr-tip-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 11.5px;
  color: var(--p-text3);
  line-height: 1.4;
}

.pxr-tip-icon {
  font-size: 11px;
  flex-shrink: 0;
  margin-top: 1px;
  color: var(--p-accent);
  opacity: 0.7;
}

/* ── Version label ── */
.pxr-version-label {
  padding: 6px 12px;
  font-size: 10px;
  color: var(--p-text3);
  text-align: center;
  flex-shrink: 0;
}

/* ══════════════════════════════════════════
   SETTINGS VIEW
══════════════════════════════════════════ */
.pxr-settings-view { display: flex; flex-direction: column; gap: 8px; }

.pxr-settings-section {
  border: 1px solid var(--p-border);
  border-radius: var(--p-radius);
  background: var(--p-surface);
  box-shadow: 0 10px 28px rgba(0,0,0,0.22), inset 0 1px 0 rgba(255,255,255,0.05);
  overflow: hidden;
}

.pxr-settings-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 12px;
  cursor: pointer;
  transition: background 0.15s;
  min-height: 50px;
}

.pxr-settings-row:hover { background: rgba(255,255,255,0.03); }

.pxr-settings-row + .pxr-settings-row {
  border-top: 1px solid rgba(255,255,255,0.05);
}

.pxr-settings-row-icon {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}

.pxr-settings-row-icon.blue   { background: #0a84ff; }
.pxr-settings-row-icon.purple { background: #6b7cff; }
.pxr-settings-row-icon.orange { background: #45c7ff; }
.pxr-settings-row-icon.green  { background: #30d158; }
.pxr-settings-row-icon.red    { background: #ff453a; }

.pxr-settings-copy {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.pxr-settings-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--p-text);
}

.pxr-settings-sub {
  font-size: 10.5px;
  color: var(--p-text3);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.pxr-settings-tail {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 6px;
}

.pxr-chevron {
  font-size: 11px;
  color: var(--p-text3);
}

.pxr-settings-value {
  font-size: 12px;
  font-weight: 600;
  color: var(--p-text2);
  white-space: nowrap;
}

/* ── Inline setting picker ── */
.pxr-inline-picker {
  display: flex;
  gap: 3px;
}

.pxr-pick-opt {
  padding: 4px 9px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.09);
  background: rgba(255,255,255,0.04);
  color: var(--p-text3);
  font-size: 11px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: all 0.15s;
}

.pxr-pick-opt:hover { border-color: rgba(255,255,255,0.18); color: var(--p-text2); }

.pxr-pick-opt.active {
  border-color: rgba(10,132,255,0.45);
  background: rgba(10,132,255,0.14);
  color: #45a4ff;
}

/* ── iOS toggle (settings) ── */
.pxr-ios-toggle--sm {
  width: 40px;
  height: 24px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  cursor: pointer;
  position: relative;
  flex-shrink: 0;
  transition: background 240ms ease, border-color 240ms ease;
  outline: none;
}

.pxr-ios-toggle--sm.is-on {
  background: #34c759;
  border-color: rgba(52,199,89,0.5);
}

.pxr-ios-toggle--sm .pxr-ios-toggle-thumb {
  top: 2px;
  left: 2px;
  width: 18px;
  height: 18px;
}

.pxr-ios-toggle--sm.is-on .pxr-ios-toggle-thumb { left: 18px; }

/* ── Logout button ── */
.pxr-logout-btn {
  padding: 5px 12px;
  border-radius: 8px;
  border: 1px solid rgba(255,69,58,0.3);
  background: rgba(255,69,58,0.08);
  color: #ff6b6b;
  font-size: 11.5px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: all 0.15s;
}

.pxr-logout-btn:hover {
  background: rgba(255,69,58,0.14);
  border-color: rgba(255,69,58,0.4);
}

/* ── Tab slide animation ── */
@keyframes slideFromRight {
  from { opacity: 0; transform: translateX(18px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes slideFromLeft {
  from { opacity: 0; transform: translateX(-18px); }
  to   { opacity: 1; transform: translateX(0); }
}

.pxr-view-pane.slide-right { animation: slideFromRight 200ms ease; }
.pxr-view-pane.slide-left  { animation: slideFromLeft  200ms ease; }


/* Match the actual PixelRec plugin panel */
.demo-body { height: 640px; }
.demo-plugin-dock { width: 340px; }

.pxr-panel {
  flex: 1;
  min-height: 0;
  border-radius: 0;
  border-bottom: 0;
  gap: 18px;
  padding: 14px 16px 16px;
  background:
    radial-gradient(circle at 50% 92%, rgba(18, 88, 166, 0.56), transparent 42%),
    linear-gradient(180deg, #050b17 0%, #07101f 55%, #0f3771 100%);
  font-size: 14px;
  --p-border: rgba(118,154,207,0.26);
  --p-surface: #192131;
  --p-radius: 18px;
}

.pxr-segmented {
  gap: 14px;
  padding: 12px 14px;
  background: #080d17;
  box-shadow: none;
}

.pxr-seg-tab {
  min-height: 48px;
  border-radius: 9px;
  color: #a8b4cd;
  gap: 0;
  font-size: 15px;
  font-weight: 500;
}

.pxr-seg-tab.is-active {
  color: #fff;
  background: #182237;
  box-shadow: none;
}

.pxr-tab-icon { display: none; }
.pxr-view-pane { gap: 18px; }

.pxr-view-frame,
.pxr-view-pane {
  overflow: visible;
}

.pxr-dashboard-view {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.pxr-card {
  padding: 16px 18px;
  box-shadow: none;
}

.pxr-recording-head { margin-bottom: 14px; }
.pxr-recording-info { gap: 0; }
.pxr-rec-indicator { display: none; }

.pxr-recording-title {
  font-size: 16px;
  font-weight: 400;
}

.pxr-recording-sub { display: none; }

.pxr-ios-toggle--hero,
.pxr-ios-toggle--sm {
  width: 48px;
  height: 28px;
}

.pxr-ios-toggle-thumb {
  width: 21px;
  height: 21px;
}

.pxr-ios-toggle--hero.is-on .pxr-ios-toggle-thumb,
.pxr-ios-toggle--sm.is-on .pxr-ios-toggle-thumb {
  left: 23px;
}

.pxr-export-button {
  min-height: 36px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 500;
}

.pxr-export-button:disabled,
.pxr-export-button.is-disabled {
  background: transparent;
  border-color: rgba(255,255,255,0.1);
  color: rgba(210,219,234,0.28);
  opacity: 0.6;
}

.pxr-info-card { padding: 0; }

.pxr-info-row {
  gap: 14px;
  min-height: 68px;
  padding: 0 18px;
}

.pxr-info-icon,
.pxr-settings-row-icon {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: #12385c;
  border: 1px solid #3689d9;
  box-shadow: none;
  color: #8ad0ff;
  font-size: 14px;
}

.pxr-settings-row-icon.blue,
.pxr-settings-row-icon.purple,
.pxr-settings-row-icon.orange,
.pxr-settings-row-icon.green {
  background: #12385c;
}

.pxr-info-label,
.pxr-settings-label {
  font-size: 13px;
  font-weight: 400;
  color: #e8edf7;
}

.pxr-info-value {
  font-size: 13px;
  font-weight: 400;
  color: #9aa5ba;
}

.pxr-info-row-sep {
  background: rgba(118,154,207,0.14);
  margin: 0;
}

.pxr-settings-view { gap: 18px; }
.pxr-settings-section { box-shadow: none; }

.pxr-settings-row {
  gap: 14px;
  padding: 13px 18px;
  min-height: 68px;
}

.pxr-settings-sub {
  font-size: 11px;
  color: rgba(154,165,186,0.58);
}

.pxr-settings-tail { gap: 8px; }

.pxr-settings-value {
  font-size: 13px;
  font-weight: 500;
  color: #fff;
}

.pxr-ios-toggle--sm .pxr-ios-toggle-thumb {
  top: 3px;
  left: 3px;
}

.pxr-help {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1px solid #4f89c7;
  color: #a9bdd8;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 600;
}

.pxr-version-label {
  display: block;
  margin-top: auto;
  padding: 4px 12px 0;
  font-size: 12px;
  font-weight: 500;
  color: rgba(120,151,202,0.54);
}



/* footer.css */

footer {
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
  padding: 60px 24px 32px;
}

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 12px 0 20px;
  max-width: 230px;
}

.footer-logo-img {
  width: 132px;
  max-height: 40px;
}

.footer-socials {
  display: flex;
  gap: 9px;
}

.fsl {
  width: 34px;
  height: 34px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
  transition: all 0.2s;
}

.fsl svg {
  width: 16px;
  height: 16px;
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.fsl:hover {
  border-color: rgba(10, 132, 255, 0.28);
  color: var(--accent);
}

.footer-col h4 {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col a {
  font-size: 14px;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-col a:hover { color: var(--text); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-bottom p {
  font-size: 13px;
  color: var(--text-muted);
}

.fbl { display: flex; gap: 22px; }

.fbl a {
  font-size: 13px;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.fbl a:hover { color: var(--text); }


/* responsive.css */

/* ══════════════════════════════════════════
   RESPONSIVE — fully consolidated
   Breakpoints: 1100 · 900 · 700 · 500 · 380
══════════════════════════════════════════ */

/* ── 1100px: large tablet / small laptop ── */
@media (max-width: 1100px) {
  :root { --max-w: 940px; }

  section { padding: 80px 24px; }

  /* Hero */
  .hero { padding: 80px 24px 60px; }
  .hero h1 { font-size: clamp(38px, 6vw, 64px); }
  .hero-mockup { max-width: 100%; }

  /* Feature splits */
  .fsplit { gap: 48px; }

  /* Pricing */
  .pricing-grid {
    max-width: 820px;
    gap: 18px;
  }

  /* Footer */
  .footer-top { grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 32px; }
}

/* ── 900px: tablet ── */
@media (max-width: 900px) {
  section { padding: 72px 20px; }

  /* Nav */
  .nav-inner { height: 58px; padding: 0 20px; }
  .nav-links { display: none; }
  .nav-right .btn { padding: 9px 16px; font-size: 13px; }

  /* Hero */
  .hero { padding: 72px 20px 56px; }
  .hero h1 { font-size: clamp(36px, 6.5vw, 56px); letter-spacing: -1.8px; }
  .hero p { font-size: 16px; }
  .hero-mockup { max-width: 100%; border-radius: 16px; }
  .canvas-area { height: auto; aspect-ratio: 16/9; }
  .hero-preview-video { height: 100%; }

  /* Social bar */
  .social-bar-inner { gap: 48px; padding: 64px 20px; }
  .sstat-num { font-size: 56px; }
  .sstat-lbl { font-size: 17px; }
  .sdiv { height: 64px; }

  /* Demo */
  .demo-hdr { margin-bottom: 36px; }
  .demo-titlebar-label { max-width: 55%; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
  .demo-optionsbar { overflow-x: auto; gap: 12px; padding: 6px 10px; }
  .demo-body { height: auto; min-height: 520px; }
  .demo-toolbar { display: none; }
  .demo-toolbar-img { display: none; }
  .demo-canvas-wrap { min-height: 360px; }
  .demo-plugin-dock { width: 260px; }

  /* Benefits */
  .benefits-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .benefits-hdr { margin-bottom: 40px; }

  /* Feature splits */
  .fsplit { grid-template-columns: 1fr; gap: 36px; }
  .fsplit.rev { direction: ltr; }
  .fsplit.rev > * { direction: ltr; }
  .fvisual { max-width: 560px; margin: 0 auto; width: 100%; }

  /* V2 grid */
  .v2-grid { grid-template-columns: 1fr 1fr; gap: 14px; }

  /* Testimonials */
  .tgrid { grid-template-columns: 1fr 1fr; gap: 14px; }

  /* Pricing */
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 440px;
    margin: 72px auto 0;
    gap: 0;
  }
  .pcard-featured {
    transform: none;
    margin-top: 40px;
    padding-top: 72px;
  }

  /* Compare */
  .compare-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
  .compare-card { min-height: 0; }
  .compare-visual { aspect-ratio: 16/9; }

  /* SEO content */
  .seo-panel { grid-template-columns: 1fr; padding: 32px; }

  /* Footer */
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: 1 / -1; }
}

/* ── 700px: large phone / small tablet ── */
@media (max-width: 700px) {
  section { padding: 60px 16px; }

  /* Nav */
  .nav-inner { padding: 0 16px; height: 54px; }
  .brand-logo-img { width: 100px; }
  .nav-right { gap: 8px; }
  .nav-right .btn { padding: 8px 13px; font-size: 12px; }

  /* Hero */
  .hero { padding: 60px 16px 48px; }
  .hero h1 {
    font-size: clamp(32px, 9vw, 46px);
    letter-spacing: -1.2px;
    line-height: 1.08;
  }
  .hero-line { white-space: normal; }
  .hero p { font-size: 15px; max-width: 100%; }
  .hero-ctas { flex-direction: column; align-items: stretch; gap: 10px; }
  .hero-ctas .btn { justify-content: center; width: 100%; }
  .btn-lg { padding: 14px 22px; font-size: 14px; }
  .platform-support span { font-size: 14px; min-height: 38px; padding: 0 14px; }
  .platform-support img { width: 17px; height: 17px; }
  .hero-mockup { border-radius: 14px; margin-bottom: 0; }
  .canvas-area { aspect-ratio: 4/3; min-height: 220px; }
  .rec-badge { top: 10px; left: 10px; padding: 6px 10px; font-size: 10px; }
  .tl-info { flex-wrap: wrap; gap: 6px; font-size: 10px; }
  .pr-panel { display: none; }

  /* Social bar */
  .social-bar-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px 16px;
    padding: 48px 16px;
    text-align: center;
  }
  .sdiv { display: none; }
  .sstat-num { font-size: 44px; }
  .sstat-lbl { font-size: 14px; }

  /* Demo — mobile-optimised: show only plugin panel */
  .demo-section .si { padding: 0; }
  .demo-hdr { padding: 0 16px; margin-bottom: 28px; }
  .demo-hdr .ssub { font-size: 14px; }
  .demo-workspace {
    border-radius: 18px;
    max-width: 390px;
    margin: 0 auto;
    overflow: hidden;
  }
  .demo-titlebar { height: 32px; }
  .demo-menubar { display: none; }
  .demo-optionsbar { display: none; }
  .demo-body { display: block; height: auto; min-height: 0; }
  .demo-canvas-wrap { display: none; }
  .demo-plugin-dock {
    width: 100%;
    border-left: none;
    border-top: 1px solid rgba(0,0,0,0.4);
    background: #070b12;
  }
  .pxr-panel {
    min-height: 520px;
    width: 100%;
    border-radius: 0;
    padding: 14px 14px 18px;
  }
  .pxr-segmented { padding: 8px; gap: 8px; }
  .pxr-seg-tab { min-height: 44px; font-size: 14px; }
  .pxr-card { padding: 14px; }
  .pxr-info-row { min-height: 60px; padding: 0 14px; }
  .pxr-info-icon, .pxr-settings-row-icon { width: 34px; height: 34px; }
  .pxr-info-label, .pxr-settings-label { font-size: 13px; }
  .pxr-info-value, .pxr-settings-value { font-size: 13px; }
  .pxr-settings-row { min-height: 60px; padding: 10px 14px; }

  /* Eyebrow */
  .eyebrow { font-size: 11px; }

  /* stitle / ssub */
  .stitle { font-size: clamp(26px, 8vw, 38px); letter-spacing: -0.8px; }
  .ssub { font-size: 15px; }

  /* Benefits — 3-column compact grid */
  .benefits-grid { grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .benefits-hdr { margin-bottom: 28px; }
  .bcard { padding: 18px 10px 16px; border-radius: 14px; text-align: center; }
  .bcard p { display: block; font-size: 10px; line-height: 1.5; margin-top: 6px; opacity: 0.75; }
  .bicon { width: 38px; height: 38px; margin: 0 auto 10px; }
  .bicon svg { width: 18px; height: 18px; }
  .bcard h3 { font-size: 11.5px; line-height: 1.35; letter-spacing: -0.1px; }

  /* Feature split */
  .flist li { font-size: 14px; }

  /* Compare */
  .compare-card { padding: 22px; border-radius: 14px; }
  .compare-visual { aspect-ratio: 16/9; }
  .why-head .stitle { font-size: clamp(28px, 9vw, 44px); }

  /* SEO content */
  .seo-panel { padding: 24px 18px; border-radius: 18px; }
  .seo-card { padding: 16px; }
  .seo-card h3 { font-size: 14px; }
  .seo-card p { font-size: 12px; }

  /* V2 grid */
  .v2-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; margin-top: 36px; }
  .v2card { padding: 16px 12px; border-radius: 16px; }
  .v2card h3 { font-size: 14px; line-height: 1.2; }
  .v2card p { font-size: 11.5px; line-height: 1.45; }
  .v2tag { min-height: 20px; padding: 0 8px; font-size: 9px; margin-bottom: 10px; }

  /* Testimonials */
  .tgrid { grid-template-columns: 1fr; gap: 12px; margin-top: 36px; }
  .tcard { padding: 22px; border-radius: 16px; }

  /* Pricing */
  .pricing-carousel-wrap { margin: 0 -16px; overflow: hidden; position: relative; }
  .pricing-grid {
    display: flex;
    flex-direction: row;
    max-width: none;
    width: 100%;
    margin: 36px 0 0;
    padding: 0 16px 18px;
    gap: 14px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }
  .pricing-grid::-webkit-scrollbar { height: 5px; }
  .pricing-grid::-webkit-scrollbar-track { background: rgba(255,255,255,0.04); border-radius: 99px; }
  .pricing-grid::-webkit-scrollbar-thumb { background: rgba(10,132,255,0.5); border-radius: 99px; }
  .pricing-grid .pcard { flex: 0 0 min(82vw, 340px); scroll-snap-align: start; }
  .pricing-swipe-hint {
    display: inline-flex;
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    width: 32px;
    height: 32px;
    border: 0;
    border-radius: 999px;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.16);
    color: #fff;
    font-size: 22px;
    font-family: var(--font);
    backdrop-filter: blur(10px);
    pointer-events: none;
  }
  .pcard { padding: 28px 20px; border-radius: 16px; }
  .pcard-featured {
    padding: 60px 20px 28px;
    margin-top: 0;
  }
  .pcard-featured::after { top: 36px; border-radius: 14px; }
  .pcard-ribbon { height: 36px; font-size: 11px; border-radius: 14px 14px 0 0; }
  .pname { font-size: 24px; }
  .pprice { font-size: 48px; }
  .old-price, .sale-price { font-size: 48px; }
  .pfeatures li { font-size: 13px; }
  .feature-pill { white-space: normal; }

  /* FAQ */
  .faq-hdr { margin-bottom: 36px; }
  .fq { font-size: 14px; padding: 16px 18px; }
  .fa { font-size: 13px; padding: 0 18px; }
  .fitem.open .fa { padding: 0 18px 16px; }

  /* Final CTA */
  .fcta .stitle { font-size: clamp(28px, 9vw, 42px); }
  .fcta .stitle br { display: none; }   /* prevents "is" dangling on its own line */
  .fcta .ssub { font-size: 15px; }
  .fcta .hero-ctas { flex-direction: column; align-items: stretch; }
  .fcta .hero-ctas .btn { justify-content: center; }

  /* Footer */
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 12px; }
  .fbl { flex-wrap: wrap; gap: 14px; }
  footer { padding: 48px 16px 28px; }
}

/* ── 500px: phone ── */
@media (max-width: 500px) {
  section { padding: 52px 14px; }

  /* Nav */
  .nav-inner { padding: 0 14px; }
  .brand-logo-img { width: 90px; }
  .nav-right .btn { padding: 7px 11px; font-size: 11px; }

  /* Hero */
  .hero { padding: 52px 14px 40px; }
  .hero h1 { font-size: clamp(28px, 9.5vw, 38px); letter-spacing: -0.8px; }
  .badge { font-size: 10px; padding: 4px 11px; }
  .hero p { font-size: 14px; line-height: 1.65; }
  .canvas-area { min-height: 190px; }

  /* Social bar */
  .social-bar-inner { grid-template-columns: 1fr 1fr; gap: 20px 12px; padding: 36px 14px; }
  .sstat-num { font-size: 46px; }
  .sstat-lbl { font-size: 13px; }
  /* 3rd stat spans full width to stay centred in a 2-col grid */
  .sstat:last-child { grid-column: 1 / -1; }

  /* Demo */
  .demo-workspace { max-width: 100%; border-radius: 14px; }
  .pxr-panel { min-height: 480px; padding: 12px 12px 16px; }
  .platform-support { gap: 6px; }
  .platform-support span { font-size: 12px; padding: 0 10px; min-height: 34px; }
  .platform-support img { width: 15px; height: 15px; }

  /* Benefits */
  .bcard { padding: 14px 8px 12px; border-radius: 12px; }
  .bicon { width: 34px; height: 34px; }
  .bcard h3 { font-size: 11px; }

  /* Pricing */
  .pricing-grid .pcard { flex-basis: min(88vw, 320px); }
  .pprice { font-size: 44px; }
  .old-price, .sale-price { font-size: 44px; }

  /* Footer */
  footer { padding: 40px 14px 24px; }
  .footer-logo-img { width: 110px; }
}

/* ── 380px: small phone ── */
@media (max-width: 380px) {
  .hero h1 { font-size: 28px; }
  .hero p { font-size: 13px; }
  .stitle { font-size: 26px; }
  .nav-right { display: none; }
  .social-bar-inner { gap: 20px; }
  .sstat-num { font-size: 44px; }
  .pricing-grid .pcard { flex-basis: 90vw; }
  .pxr-panel { min-height: 460px; }
  .fq { font-size: 13px; padding: 14px 14px; }
}
