:root {
  --bg: #120804;
  --bg-soft: #1b0e07;
  --surface: rgba(255, 120, 30, 0.05);
  --surface-hover: rgba(255, 120, 30, 0.09);
  --text: #f5ede4;
  --muted: #9e9088;
  --muted-strong: #c8b9ad;
  --line: rgba(255, 140, 60, 0.1);
  --line-strong: rgba(255, 140, 60, 0.18);
  --primary: #f5a020;
  --primary-deep: #e85520;
  --accent: #e0225a;
  --positive: #3ecf8e;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.5);
  --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.5);
  --shadow-lg: 0 30px 70px rgba(0, 0, 0, 0.65);
  --container: 1160px;
  --font:
    ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, Helvetica, Arial, sans-serif;
  --font-mono:
    ui-monospace, SFMono-Regular, Menlo, Consolas, "Liberation Mono", monospace;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font);
  font-feature-settings: "ss01", "cv11";
  color: var(--text);
  background: var(--bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 55% at 72% 44%, rgba(185, 45, 15, 0.32), transparent 65%),
    radial-gradient(ellipse 50% 40% at 18% 8%, rgba(220, 100, 20, 0.14), transparent 60%),
    radial-gradient(ellipse 40% 35% at 85% 90%, rgba(200, 20, 50, 0.1), transparent 60%);
  pointer-events: none;
  z-index: -1;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.15s ease;
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 3px;
  border-radius: 6px;
}

button {
  font: inherit;
  cursor: pointer;
}

::selection {
  background: rgba(245, 157, 42, 0.3);
  color: #fff;
}

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
}


.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(16, 7, 3, 0.78);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.5rem;
  min-height: 64px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-weight: 650;
  font-size: 1.02rem;
  letter-spacing: -0.01em;
}

.brand-logo-mobile {
  display: none;
  height: 28px;
  width: auto;
}

.brand-mark {
  width: 1.1rem;
  height: 1.1rem;
  border-radius: 6px;
  background: conic-gradient(from 210deg, var(--primary), var(--accent), var(--primary));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.14),
    0 2px 8px rgba(221, 47, 90, 0.35);
}

.site-nav {
  display: inline-flex;
  justify-self: center;
  gap: 1.75rem;
  color: var(--muted-strong);
  font-size: 0.92rem;
}

.site-nav a {
  padding: 0.4rem 0;
  transition: color 0.15s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--text);
}

.header-actions {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  font-size: 1.1rem;
  transition: background 0.15s ease, border-color 0.15s ease;
}

.menu-toggle:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 140, 60, 0.35);
}

.menu-toggle[aria-expanded="true"] {
  background: rgba(245, 157, 42, 0.12);
  border-color: rgba(245, 157, 42, 0.4);
  color: var(--primary);
}


h1,
h2,
h3,
p {
  margin: 0;
}

h1 {
  font-size: clamp(2.4rem, 4.6vw, 3.9rem);
  line-height: 1.04;
  letter-spacing: -0.025em;
  font-weight: 650;
  margin-bottom: 1.1rem;
}

h2 {
  font-size: clamp(1.7rem, 2.6vw, 2.4rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  font-weight: 650;
  margin-bottom: 0.7rem;
}

h3 {
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -0.005em;
  margin-bottom: 0.5rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 1rem;
  padding: 0.3rem 0.7rem;
  border: 1px solid rgba(245, 157, 42, 0.28);
  border-radius: 999px;
  background: rgba(245, 157, 42, 0.06);
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.7rem;
  font-weight: 600;
}

.eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 10px var(--primary);
}


.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 44px;
  padding: 0.65rem 1.2rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: -0.005em;
  transition:
    transform 0.15s ease,
    box-shadow 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease;
}

.button-primary {
  color: #1a0f06;
  background: linear-gradient(135deg, #ffb347 0%, #f59d2a 55%, #ea6d28 100%);
  box-shadow:
    0 0 0 1px rgba(255, 180, 90, 0.25) inset,
    0 10px 24px rgba(234, 109, 40, 0.28);
}

.button-primary:hover,
.button-primary:focus-visible {
  transform: translateY(-1px);
  box-shadow:
    0 0 0 1px rgba(255, 210, 120, 0.4) inset,
    0 14px 30px rgba(234, 109, 40, 0.38);
}

.button-secondary {
  color: var(--text);
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.03);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.22);
}

.button-ghost {
  color: var(--muted-strong);
  min-height: 36px;
  padding: 0.35rem 0.85rem;
  font-size: 0.88rem;
  border-color: var(--line);
  background: transparent;
}

.button-ghost:hover {
  color: var(--text);
  border-color: var(--line-strong);
}


.hero {
  padding: 5rem 0 3rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3.5rem;
  align-items: center;
}

.hero-copy h1 {
  max-width: 14ch;
}

.hero-text {
  color: var(--muted-strong);
  max-width: 52ch;
  font-size: 1.08rem;
  margin-bottom: 1.75rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-bottom: 1.5rem;
}

.hero-points {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1rem;
  color: var(--muted-strong);
  font-size: 0.92rem;
}

.hero-points li {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.hero-point-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  font-size: 8px;
  border-radius: 50%;
  color: var(--positive);
  background: rgba(62, 207, 142, 0.14);
  box-shadow: inset 0 0 0 1px rgba(62, 207, 142, 0.45);
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem 1.1rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.82rem;
  letter-spacing: 0.01em;
}

.trust-strip strong {
  color: var(--muted-strong);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.72rem;
  margin-right: 0.25rem;
}

.trust-strip span {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.trust-strip span::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--positive);
  box-shadow: 0 0 8px rgba(62, 207, 142, 0.6);
}


.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-logo {
  width: 100%;
  max-width: 480px;
  height: auto;
  display: block;
}

.mock {
  position: relative;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line-strong);
  background:
    linear-gradient(180deg, rgba(22, 22, 26, 0.95), rgba(14, 14, 17, 0.95));
  box-shadow: var(--shadow-lg);
  padding: 1.1rem;
  overflow: hidden;
  animation: mock-float 8s ease-in-out infinite;
}

.mock::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(
    140deg,
    rgba(245, 157, 42, 0.35),
    transparent 40%,
    transparent 60%,
    rgba(221, 47, 90, 0.25)
  );
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
}

.mock-topbar {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.2rem 0.3rem 0.75rem;
  border-bottom: 1px solid var(--line);
  margin-bottom: 0.9rem;
}

.mock-dots {
  display: inline-flex;
  gap: 0.3rem;
}

.mock-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
}

.mock-dots span:nth-child(1) {
  background: #ff5f57;
}
.mock-dots span:nth-child(2) {
  background: #ffbd2e;
}
.mock-dots span:nth-child(3) {
  background: #28c840;
}

.mock-url {
  flex: 1;
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--muted);
  text-align: center;
  border: 1px solid var(--line);
}

.mock-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.mock-metric {
  grid-column: 1 / -1;
  padding: 1rem 1.1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background:
    radial-gradient(120% 200% at 0% 0%, rgba(245, 157, 42, 0.1), transparent 50%),
    rgba(255, 255, 255, 0.015);
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1rem;
}

.mock-metric-label {
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0.02em;
  margin-bottom: 0.25rem;
  display: block;
}

.panel-value {
  font-family: var(--font-mono);
  font-size: 2.1rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  background: linear-gradient(90deg, #fff 0%, #ffc98a 100%);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
}

.mock-spark {
  flex: 1;
  max-width: 140px;
  height: 44px;
}

.mock-card {
  padding: 0.85rem 0.95rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.02);
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.mock-card-title {
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mock-row {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.82rem;
}

.mock-row-name {
  flex: 1;
  color: var(--text);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mock-pill {
  padding: 0.12rem 0.5rem;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.mock-pill-sent {
  color: var(--positive);
  background: rgba(62, 207, 142, 0.12);
  border: 1px solid rgba(62, 207, 142, 0.3);
}

.mock-pill-queue {
  color: var(--primary);
  background: rgba(245, 157, 42, 0.1);
  border: 1px solid rgba(245, 157, 42, 0.3);
}

.mock-pill-verify {
  color: #8ec5ff;
  background: rgba(142, 197, 255, 0.08);
  border: 1px solid rgba(142, 197, 255, 0.28);
}

.mock-bars {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 4px;
  height: 58px;
  padding-top: 0.25rem;
}

.mock-bars span {
  flex: 1;
  border-radius: 4px 4px 2px 2px;
  background: linear-gradient(180deg, var(--primary), var(--accent));
  opacity: 0.9;
}

.mock-legend {
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  font-size: 0.7rem;
  font-family: var(--font-mono);
  letter-spacing: 0.04em;
}

.mock-badge {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.5rem 0.8rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  background: rgba(20, 20, 24, 0.92);
  border: 1px solid var(--line-strong);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(8px);
}

.mock-badge::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.mock-badge-top {
  top: -14px;
  right: 22px;
  color: var(--primary);
}
.mock-badge-top::before {
  background: var(--primary);
  box-shadow: 0 0 10px var(--primary);
}

.mock-badge-bottom {
  bottom: -14px;
  left: 22px;
  color: var(--positive);
}
.mock-badge-bottom::before {
  background: var(--positive);
  box-shadow: 0 0 10px var(--positive);
}


.stats {
  padding: 1.5rem 0 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.stat-card {
  padding: 1.1rem 1.2rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.stat-card:hover {
  border-color: var(--line-strong);
  background: var(--surface-hover);
}

.stat-card strong {
  font-size: 1.05rem;
  font-weight: 650;
  letter-spacing: -0.005em;
}

.stat-card span {
  color: var(--muted);
  font-size: 0.9rem;
}


.section {
  padding: 6rem 0;
}

.section-muted {
  background:
    linear-gradient(180deg, rgba(255, 120, 30, 0.04), transparent),
    var(--bg-soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-heading {
  max-width: 44rem;
  margin-bottom: 2.5rem;
}

.section-heading p:not(.eyebrow) {
  color: var(--muted-strong);
  font-size: 1rem;
  margin-top: 0.75rem;
  max-width: 48ch;
}


.features-panel {
  animation: fade-in 0.25s ease;
}


.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.feature-card {
  position: relative;
  padding: 1.5rem 1.4rem 1.6rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.feature-card:hover {
  border-color: var(--line-strong);
  background: var(--surface-hover);
  transform: translateY(-2px);
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-bottom: 1.1rem;
  font-size: 18px;
  border-radius: 10px;
  color: var(--primary);
  background:
    linear-gradient(135deg, rgba(245, 157, 42, 0.18), rgba(221, 47, 90, 0.1)),
    rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(245, 157, 42, 0.28);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.feature-card p {
  color: var(--muted);
  font-size: 0.95rem;
}


.workflow-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 3rem;
  align-items: start;
}

.steps {
  display: grid;
  gap: 0.75rem;
}

.step-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.1rem;
  padding: 1.2rem 1.3rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
  transition: border-color 0.2s ease, background 0.2s ease;
}

.step-card:hover {
  border-color: var(--line-strong);
  background: var(--surface-hover);
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.55rem 0.85rem;
  min-height: 2.4rem;
  border-radius: 12px;
  font-family: var(--font-mono);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--primary);
  background: rgba(245, 157, 42, 0.08);
  border: 1px solid rgba(245, 157, 42, 0.25);
}

.step-number i {
  font-size: 1rem;
}

.step-card p {
  color: var(--muted);
  font-size: 0.93rem;
}


.benefits-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 3rem;
  align-items: start;
}

.benefits-copy p {
  color: var(--muted-strong);
  font-size: 1rem;
  max-width: 42ch;
}

.benefits-list {
  display: grid;
  gap: 0.25rem;
}

.benefit-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  padding: 1.1rem 0.25rem;
  border-bottom: 1px solid var(--line);
}

.benefit-item:last-child {
  border-bottom: 0;
}

.benefit-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  margin-top: 2px;
  font-size: 10px;
  border-radius: 50%;
  color: var(--primary);
  background: rgba(245, 157, 42, 0.14);
  border: 1px solid rgba(245, 157, 42, 0.35);
}

.benefit-item strong {
  display: block;
  margin-bottom: 0.2rem;
  font-weight: 600;
}

.benefit-item span {
  color: var(--muted);
  font-size: 0.93rem;
}


.screenshots-tabs {
  display: inline-flex;
  gap: 0.4rem;
  padding: 0.3rem;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.02);
  margin-bottom: 2rem;
}

.screenshots-tab {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 1.1rem;
  border-radius: 999px;
  border: 1px solid transparent;
  background: transparent;
  color: var(--muted-strong);
  font-size: 0.9rem;
  font-weight: 600;
  transition: color 0.15s ease, background 0.2s ease, border-color 0.2s ease;
}

.screenshots-tab:hover {
  color: var(--text);
}

.screenshots-tab.is-active {
  color: var(--text);
  background: linear-gradient(135deg, rgba(245, 157, 42, 0.18), rgba(221, 47, 90, 0.1));
  border-color: rgba(245, 157, 42, 0.35);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.screenshots-panel {
  animation: fade-in 0.25s ease;
}

@keyframes fade-in {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}

.screenshots-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.screenshot-frame {
  margin: 0;
  border-radius: var(--radius-md);
  border: 1px solid var(--line-strong);
  background: linear-gradient(180deg, rgba(22, 22, 26, 0.95), rgba(14, 14, 17, 0.95));
  box-shadow: var(--shadow-md);
  overflow: hidden;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.screenshot-frame.is-clickable {
  cursor: zoom-in;
}

.screenshot-frame:hover {
  border-color: rgba(245, 157, 42, 0.55);
  box-shadow: 0 0 0 1px rgba(245, 157, 42, 0.18), 0 0 18px rgba(245, 157, 42, 0.14), var(--shadow-md);
}

.screenshot-topbar {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.55rem 0.75rem;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
}

.screenshot-label {
  font-size: 0.72rem;
  color: var(--muted);
  font-family: var(--font-mono);
  letter-spacing: 0.02em;
}

.screenshot-body {
  display: block;
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}

.screenshot-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  color: var(--muted);
  font-size: 0.82rem;
  background:
    radial-gradient(80% 80% at 50% 50%, rgba(245, 157, 42, 0.05), transparent 70%),
    rgba(255, 255, 255, 0.01);
}

.screenshot-placeholder-icon {
  font-size: 2rem;
  color: rgba(245, 157, 42, 0.35);
}


.ss-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 500;
  align-items: center;
  justify-content: center;
}

.ss-lightbox.is-open {
  display: flex;
  animation: lb-in 0.18s ease;
}

@keyframes lb-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.ss-lb-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(6px);
  cursor: zoom-out;
}

.ss-lb-img {
  position: relative;
  z-index: 1;
  max-width: min(92vw, 1280px);
  max-height: 88vh;
  object-fit: contain;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 140, 60, 0.2);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.75);
  display: block;
}

.ss-lb-close,
.ss-lb-prev,
.ss-lb-next {
  position: absolute;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  background: rgba(14, 14, 17, 0.85);
  color: var(--text);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s ease, border-color 0.15s ease;
  line-height: 1;
}

.ss-lb-close {
  top: 1.25rem;
  right: 1.25rem;
  width: 40px;
  height: 40px;
  font-size: 1.3rem;
}

.ss-lb-prev,
.ss-lb-next {
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  font-size: 1.5rem;
}

.ss-lb-prev { left: 1.25rem; }
.ss-lb-next { right: 1.25rem; }

.ss-lb-close:hover,
.ss-lb-prev:hover,
.ss-lb-next:hover {
  background: rgba(245, 157, 42, 0.18);
  border-color: rgba(245, 157, 42, 0.45);
}

.ss-lb-prev.is-hidden,
.ss-lb-next.is-hidden {
  opacity: 0;
  pointer-events: none;
}

@media (max-width: 1000px) {
  .screenshots-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .ss-lb-prev, .ss-lb-next {
    display: none;
  }
}


.tg-channel-box {
  display: grid;
  gap: 1rem;
}

.tg-channel-heading {
  margin: 0 auto 1.5rem;
  text-align: center;
}

.tg-channel-frame-wrap {
  width: min(100%, 920px);
  margin: 0 auto;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(24, 24, 24, 0.84);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
  overflow: hidden;
}

.tg-channel-frame {
  width: 100%;
  min-height: 720px;
  border: 0;
  display: block;
  background: #101010;
}


.cta-section {
  padding: 3rem 0 5rem;
}

.cta-box {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 2rem;
  padding: 2.25rem 2.5rem;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(80% 120% at 0% 0%, rgba(245, 157, 42, 0.14), transparent 60%),
    radial-gradient(80% 120% at 100% 100%, rgba(221, 47, 90, 0.12), transparent 60%),
    var(--bg-soft);
  box-shadow: var(--shadow-md);
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  align-items: center;
}

.cta-box h2 {
  margin-bottom: 0;
}


.site-footer {
  padding: 2rem 0 2.5rem;
  border-top: 1px solid var(--line);
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  color: var(--muted);
  font-size: 0.88rem;
}


.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 0.55s ease,
    transform 0.55s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}


@keyframes mock-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

@keyframes spark-draw {
  from {
    stroke-dashoffset: 220;
  }
  to {
    stroke-dashoffset: 0;
  }
}


@media (max-width: 1000px) {
  .hero-grid,
  .workflow-grid,
  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .hero {
    padding: 3rem 0 2rem;
  }

  .hero-visual {
    display: none;
  }

  .section {
    padding: 4.5rem 0;
  }

  .stats-grid,
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cta-box {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    padding: 1.75rem;
  }

  .cta-actions {
    justify-content: flex-start;
  }

  .tg-channel-frame {
    min-height: 640px;
  }
}

@media (max-width: 720px) {
  .header-inner {
    grid-template-columns: 1fr;
    padding-right: 3.5rem;
  }

  .site-nav {
    display: none;
    grid-column: 1 / -1;
    flex-direction: column;
    gap: 0.1rem;
    padding-bottom: 0.75rem;
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 0.7rem 0;
    border-top: 1px solid var(--line);
  }

  .header-actions {
    display: none;
  }

  .brand-mark {
    display: none;
  }

  .brand-logo-mobile {
    display: block;
  }

  .menu-toggle {
    display: inline-flex;
    position: fixed;
    top: 0.7rem;
    right: 0.75rem;
    z-index: 200;
  }

  .stats-grid,
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy h1 {
    max-width: 100%;
  }

  .hero-actions .button {
    flex: 1;
  }

  .tg-channel-frame {
    min-height: 580px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
  .reveal {
    opacity: 1 !important;
    transform: none !important;
  }
}
