/* LLM-SPEC: Cataloga static site styles, shared across all pages. */
:root {
  --bg: #fcfcfd;
  --bg-muted: #f7f7f9;
  --text: #101114;
  --muted: #5f636d;
  --accent: #2f6bff;
  --accent-soft: rgba(47, 107, 255, 0.12);
  --border: #e9e9ec;
  --shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  --radius: 16px;
  --radius-sm: 12px;
  --container: 1120px;
  --space-96: 96px;
  --space-64: 64px;
  --space-48: 48px;
  --space-32: 32px;
  --space-24: 24px;
  --space-16: 16px;
  --space-12: 12px;
  --space-8: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: ui-sans-serif, -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Segoe UI", Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

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

p {
  margin: 0 0 var(--space-16);
}

h1, h2, h3 {
  line-height: 1.2;
  margin: 0 0 var(--space-16);
  font-weight: 600;
}

h1 {
  font-size: clamp(2.6rem, 4vw, 3.4rem);
}

h2 {
  font-size: clamp(1.8rem, 2.6vw, 2.4rem);
}

h3 {
  font-size: 1.2rem;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -40px;
  background: var(--accent);
  color: #fff;
  padding: 8px 12px;
  border-radius: 8px;
  z-index: 1000;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 16px;
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--space-24);
}

.narrow {
  max-width: 760px;
}

.section {
  padding: var(--space-96) 0;
}

.section--muted {
  background: var(--bg-muted);
}

.section-header {
  margin-bottom: var(--space-32);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  color: var(--muted);
  margin-bottom: var(--space-12);
}

.lead {
  font-size: 1.1rem;
  color: var(--text);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 10px 20px rgba(47, 107, 255, 0.25);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(47, 107, 255, 0.3);
  color: #fff;
}

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

.btn-secondary:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(252, 252, 253, 0.86);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-24);
  padding: var(--space-16) 0;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 1.05rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-links a {
  font-size: 0.95rem;
  color: var(--muted);
  transition: color 0.2s ease;
}

.nav-links a.active {
  color: var(--accent);
}

.nav-toggle {
  display: none;
  border: 1px solid var(--border);
  background: #fff;
  border-radius: 999px;
  padding: 8px 14px;
  font-weight: 600;
}

.nav-toggle-lines {
  position: relative;
  width: 18px;
  height: 2px;
  background: var(--text);
  display: inline-block;
  margin-left: 8px;
}

.nav-toggle-lines::before,
.nav-toggle-lines::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background: var(--text);
}

.nav-toggle-lines::before {
  top: -6px;
}

.nav-toggle-lines::after {
  top: 6px;
}

.nav-cta-mobile {
  display: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: var(--space-48);
  align-items: center;
}

.hero-actions {
  display: flex;
  gap: var(--space-16);
  flex-wrap: wrap;
  margin: var(--space-24) 0;
}

.hero-note {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 0.95rem;
}

.hero-note .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
}

.hero-mock {
  display: flex;
  justify-content: center;
}

.hero-window {
  width: 100%;
  max-width: 420px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-window--image img {
  width: 100%;
  height: auto;
  display: block;
}

.hero-carousel {
  width: 100%;
  max-width: 720px;
  margin-left: auto;
}

.carousel-frame {
  position: relative;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: #fff;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.carousel-frame::before {
  content: "";
  display: block;
  height: 40px;
  background: linear-gradient(#fbfbfc, #f4f4f6);
  border-bottom: 1px solid #ececf0;
}

.carousel-frame::after {
  content: "";
  position: absolute;
  top: 14px;
  left: 16px;
  width: 52px;
  height: 12px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 6px 6px, #ff5f57 0 4px, transparent 5px),
    radial-gradient(circle at 26px 6px, #febc2e 0 4px, transparent 5px),
    radial-gradient(circle at 46px 6px, #28c840 0 4px, transparent 5px);
  opacity: 0.85;
}

.carousel-track {
  position: relative;
  aspect-ratio: 16 / 10;
  background: #fff;
}

.carousel-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.01);
  transition: opacity 220ms ease, transform 220ms ease;
  pointer-events: none;
  margin: 0;
}

.carousel-slide.is-active {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-10%);
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  opacity: 0;
  transition: opacity 160ms ease, transform 160ms ease;
}

.carousel-btn.prev {
  left: 12px;
}

.carousel-btn.next {
  right: 12px;
}

.carousel-frame:hover .carousel-btn,
.carousel-btn:focus-visible {
  opacity: 1;
  transform: translateY(-10%) scale(1.02);
}

.carousel-ui {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  pointer-events: none;
}

.carousel-dots {
  display: flex;
  gap: 8px;
  pointer-events: auto;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.18);
  background: rgba(255, 255, 255, 0.7);
  cursor: pointer;
}

.carousel-dot[aria-current="true"] {
  background: rgba(0, 0, 0, 0.78);
  border-color: rgba(0, 0, 0, 0.35);
}

.carousel-caption {
  font-size: 13px;
  color: rgba(0, 0, 0, 0.72);
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 999px;
  padding: 6px 10px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  pointer-events: none;
  white-space: nowrap;
}

.hero-window-bar {
  display: flex;
  gap: 6px;
  padding: 12px;
  background: #f2f3f6;
}

.hero-window-bar span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #d7d8dd;
}

.hero-window-content {
  padding: var(--space-24);
  display: grid;
  gap: var(--space-16);
}

.mock-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font-weight: 600;
  font-size: 0.85rem;
}

.mock-line {
  height: 10px;
  background: #eceef2;
  border-radius: 999px;
}

.mock-line.short {
  width: 70%;
}

.mock-card {
  height: 54px;
  background: #f4f5f7;
  border-radius: var(--radius-sm);
}

.mock-row {
  display: flex;
  gap: 8px;
}

.mock-pill {
  flex: 1;
  height: 28px;
  border-radius: 999px;
  background: #eceef2;
}

.bullet-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: var(--space-16);
}

.bullet-list li {
  padding-left: 28px;
  position: relative;
  color: var(--text);
}

.bullet-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--accent);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: var(--space-16);
}

.process-step {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: var(--space-16);
  box-shadow: var(--shadow);
  min-height: 220px;
}

.step-number {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  margin-bottom: var(--space-12);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--space-24);
}

.feature-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: var(--space-24);
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.feature-card details {
  margin-top: var(--space-16);
  border-top: 1px solid var(--border);
  padding-top: var(--space-12);
}

.feature-card summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--accent);
  list-style: none;
}

.feature-card summary::-webkit-details-marker {
  display: none;
}

.feature-card summary::after {
  content: "+";
  float: right;
  font-weight: 600;
}

.feature-card details[open] summary::after {
  content: "–";
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--space-24);
}

.shot {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  padding: var(--space-16);
}

.shot img {
  border-radius: 10px;
  background: #f2f3f6;
}

.shot figcaption {
  margin-top: var(--space-12);
  color: var(--muted);
  font-size: 0.95rem;
}

.faq {
  display: grid;
  gap: var(--space-16);
}

.faq details {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: var(--space-16);
  box-shadow: var(--shadow);
}

.faq summary {
  cursor: pointer;
  font-weight: 600;
  list-style: none;
}

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

.cta {
  background: linear-gradient(180deg, #fff 0%, #f7f8fb 100%);
}

.cta-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-32);
  padding: var(--space-32);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.cta-actions {
  display: flex;
  gap: var(--space-16);
  flex-wrap: wrap;
}

.site-footer {
  padding: var(--space-48) 0;
  border-top: 1px solid var(--border);
  background: #fff;
}

.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-24);
  flex-wrap: wrap;
}

.footer-title {
  font-weight: 600;
}

.footer-links {
  display: flex;
  gap: var(--space-16);
}

.page .page-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: var(--space-32);
  box-shadow: var(--shadow);
}

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

.page-card ul {
  margin: 0 0 var(--space-16);
  padding-left: 20px;
}

.page-card li {
  margin-bottom: 8px;
}

.divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: var(--space-24) 0;
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(12, 12, 16, 0.75);
  display: none;
  align-items: center;
  justify-content: center;
  padding: var(--space-32);
  z-index: 200;
}

.lightbox.is-open {
  display: flex;
}

.lightbox-figure {
  max-width: 920px;
  width: 100%;
  margin: 0;
}

.lightbox-figure img {
  width: 100%;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  background: #fff;
}

.lightbox-caption {
  margin-top: var(--space-12);
  color: #f5f5f7;
  text-align: center;
}

.lightbox button {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  padding: 10px 16px;
  cursor: pointer;
  font-weight: 600;
}

.lightbox-close {
  top: 24px;
  right: 24px;
}

.lightbox-prev {
  left: 24px;
}

.lightbox-next {
  right: 24px;
}

.no-scroll {
  overflow: hidden;
}

@media (max-width: 980px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .process-steps {
    grid-template-columns: 1fr;
  }

  .cta-box {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 900px) {
  .nav-links {
    position: absolute;
    top: calc(100% + 10px);
    right: 24px;
    left: 24px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: var(--space-24);
    box-shadow: var(--shadow);
    display: none;
    flex-direction: column;
    align-items: flex-start;
  }

  body.nav-open .nav-links {
    display: flex;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
  }

  .nav-cta {
    display: none;
  }

  .nav-cta-mobile {
    display: inline-flex;
    width: 100%;
  }
}

@media (max-width: 720px) {
  .section {
    padding: var(--space-64) 0;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .footer-links {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *, *::before, *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }

  .carousel-slide {
    transition: none;
  }

  .carousel-btn {
    transition: none;
  }
}
