:root {
  --bg: #f3efe7;
  --surface: #fffaf3;
  --surface-strong: #fff;
  --surface-tint: #efe5d3;
  --text: #1d2430;
  --muted: #5d6775;
  --line: rgba(29, 36, 48, 0.12);
  --line-strong: rgba(29, 36, 48, 0.2);
  --accent: #0b6b5f;
  --accent-strong: #094e46;
  --accent-soft: #d7efe9;
  --warm: #b65a3a;
  --shadow: 0 18px 48px rgba(29, 36, 48, 0.12);
  --radius: 18px;
  --radius-sm: 12px;
  --max-width: 1180px;
  --sans: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  --serif: Georgia, "Times New Roman", serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(182, 90, 58, 0.14), transparent 28%),
    radial-gradient(circle at top right, rgba(11, 107, 95, 0.16), transparent 26%),
    linear-gradient(180deg, #f8f4ec 0%, #f3efe7 32%, #efe9de 100%);
  line-height: 1.65;
}

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

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

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

.container {
  width: min(var(--max-width), calc(100% - 2rem));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(248, 244, 236, 0.82);
  border-bottom: 1px solid rgba(29, 36, 48, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 78px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  color: var(--text);
}

.brand span {
  max-width: 16ch;
  line-height: 1.15;
}

.top-nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.95rem 1.2rem;
}

.top-nav a {
  text-decoration: none;
  color: var(--text);
  font-size: 0.96rem;
}

.top-nav .nav-cta {
  padding: 0.72rem 1rem;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
}

.hero {
  padding: 4.6rem 0 2.4rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.82fr);
  gap: 2rem;
  align-items: start;
}

.hero-copy {
  padding: 1rem 0;
}

.eyebrow,
.section-kicker,
.pricing-label {
  margin: 0 0 0.85rem;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--warm);
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.1;
}

h1,
.section-heading h2,
.cta-card h2 {
  font-family: var(--serif);
}

h1 {
  font-size: clamp(2.4rem, 5vw, 4.6rem);
  max-width: 12ch;
}

.hero-lead,
.section-heading p,
.info-card p,
.video-card p,
.cta-card p,
.rating-note {
  font-size: 1.02rem;
  color: var(--muted);
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin: 1.6rem 0;
}

.hero-points span,
.meta-list li,
.pricing-note,
figcaption {
  font-size: 0.95rem;
  color: var(--muted);
}

.hero-points span {
  display: inline-flex;
  align-items: center;
  padding: 0.65rem 0.95rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(29, 36, 48, 0.08);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin: 1.8rem 0 1.25rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.85rem 1.2rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

.button:hover,
.top-nav .nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(29, 36, 48, 0.12);
}

.button-primary {
  background: var(--accent);
  color: #fff;
}

.button-secondary {
  background: rgba(255, 255, 255, 0.82);
  color: var(--text);
  border: 1px solid rgba(29, 36, 48, 0.12);
}

.meta-list {
  margin: 1rem 0 0;
  padding-left: 1.15rem;
}

.meta-list li + li {
  margin-top: 0.55rem;
}

.hero-panel {
  display: grid;
  gap: 1rem;
}

.hero-shot,
.image-card,
.gallery-card,
.video-card,
.info-card,
.pricing-card,
.cta-card,
.hero-panel-card,
.full-image-card,
.faq-list details {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(29, 36, 48, 0.09);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-shot {
  padding: 0.8rem;
}

.hero-panel-card {
  padding: 1.2rem 1.2rem 1rem;
}

.hero-panel-card h2 {
  font-size: 1.35rem;
  margin-bottom: 0.8rem;
}

.hero-panel-card ul,
.pricing-list,
.feature-grid,
.steps-list,
.use-case-grid {
  margin: 0;
  padding-left: 1.2rem;
}

.hero-panel-card li + li,
.pricing-list li + li,
.feature-grid li + li,
.steps-list li + li {
  margin-top: 0.55rem;
}

.notice-strip {
  padding: 0 0 1.4rem;
}

.notice-strip .container {
  padding: 1rem 1.2rem;
  border-radius: var(--radius-sm);
  background: #fff6e6;
  border: 1px solid rgba(182, 90, 58, 0.22);
}

.notice-strip p {
  margin: 0;
  font-weight: 600;
}

.section {
  padding: 2.6rem 0;
}

.section-alt {
  background: linear-gradient(180deg, rgba(255, 250, 243, 0.62), rgba(255, 255, 255, 0.38));
  border-top: 1px solid rgba(29, 36, 48, 0.06);
  border-bottom: 1px solid rgba(29, 36, 48, 0.06);
}

.section-heading {
  margin-bottom: 1.5rem;
  max-width: 70ch;
}

.section-heading h2 {
  font-size: clamp(2rem, 3vw, 3rem);
  margin-bottom: 0.65rem;
}

.overview-grid,
.pricing-layout,
.cta-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.info-card,
.pricing-card,
.cta-card {
  padding: 1.2rem;
}

.info-card h3,
.video-card h3,
.cta-card h2 {
  margin-bottom: 0.7rem;
  font-size: 1.35rem;
}

.full-image-card {
  margin: 1.4rem 0 0;
  padding: 1rem;
}

.pricing-summary-card {
  display: flex;
  justify-content: center;
  background: transparent;
  border-color: transparent;
  box-shadow: none;
}

.pricing-summary-card img {
  margin: 0 auto;
}

.full-image-card figcaption,
.image-card figcaption,
.gallery-card figcaption {
  margin-top: 0.8rem;
}

.use-case-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem 1.4rem;
}

.use-case-grid li,
.feature-grid li,
.steps-list li,
.pricing-list li {
  padding-left: 0.2rem;
}

.image-pair,
.video-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.image-card,
.gallery-card {
  padding: 1rem;
}

.steps-list {
  margin-top: 1.4rem;
}

.faq-layout,
.feature-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 1rem;
  align-items: start;
}

.faq-list {
  display: grid;
  gap: 0.8rem;
}

.faq-list details {
  padding: 1rem 1rem 1rem 1.1rem;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 700;
  line-height: 1.4;
}

.faq-list p {
  margin: 0.85rem 0 0;
  color: var(--muted);
}

.faq-images {
  display: grid;
  gap: 1rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.95rem 1.6rem;
}

.sticky-image {
  position: sticky;
  top: 100px;
}

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

.gallery-card-wide {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  background: transparent;
  border-color: transparent;
  box-shadow: none;
  padding-top: 0;
  padding-bottom: 0;
}

.gallery-card-wide img {
  margin: 0 auto;
}

.zoomable-screenshot {
  cursor: zoom-in;
  transition: transform 160ms ease, box-shadow 160ms ease;
  outline: none;
}

.zoomable-screenshot:hover,
.zoomable-screenshot:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(29, 36, 48, 0.14);
}

.pricing-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 178px;
}

.pricing-card-highlight {
  background: linear-gradient(180deg, var(--accent), var(--accent-strong));
  color: #fff;
}

.pricing-card-highlight .pricing-label,
.pricing-card-highlight .pricing-note {
  color: rgba(255, 255, 255, 0.82);
}

.pricing-value {
  margin: 0;
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1;
}

.pricing-note {
  margin: 0.4rem 0 0;
}

.pricing-note-strong {
  font-size: 1.12rem;
  font-weight: 800;
}

.pricing-list {
  margin-top: 1.3rem;
}

.video-card {
  padding: 1rem;
}

.video-frame {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #0f1720;
}

.video-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.cta-section {
  padding-bottom: 3.5rem;
}

.cta-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cta-card .button {
  align-self: flex-start;
}

.lightbox-open {
  overflow: hidden;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
}

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

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(13, 17, 24, 0.82);
  backdrop-filter: blur(6px);
}

.lightbox-dialog {
  position: relative;
  z-index: 1;
  width: min(1320px, calc(100vw - 2rem));
  margin: 2rem auto;
  max-height: calc(100vh - 4rem);
  display: grid;
  justify-items: center;
  gap: 0.9rem;
}

.lightbox-image {
  max-width: 100%;
  max-height: calc(100vh - 8rem);
  width: auto;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.35);
}

.lightbox-caption {
  margin: 0;
  padding: 0.5rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--text);
  font-weight: 600;
}

.lightbox-close {
  position: absolute;
  top: 0.4rem;
  right: 0.4rem;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--text);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}

.site-footer {
  padding: 2.2rem 0;
  background: #151c22;
  color: rgba(255, 255, 255, 0.82);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1.4rem;
  align-items: start;
}

.site-footer p {
  margin: 0.6rem 0 0;
}

.site-footer a {
  color: #f2f0ea;
}

.footer-links {
  display: grid;
  gap: 0.65rem;
}

@media (max-width: 1080px) {
  .hero-grid,
  .faq-layout,
  .feature-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .overview-grid,
  .pricing-layout,
  .cta-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sticky-image {
    position: static;
  }
}

@media (max-width: 780px) {
  .header-inner {
    padding: 0.8rem 0;
    align-items: flex-start;
    flex-direction: column;
  }

  .brand span {
    max-width: none;
  }

  .top-nav {
    justify-content: flex-start;
  }

  .hero {
    padding-top: 2.2rem;
  }

  .overview-grid,
  .pricing-layout,
  .cta-grid,
  .use-case-grid,
  .image-pair,
  .video-grid,
  .gallery-grid,
  .feature-grid {
    grid-template-columns: 1fr;
  }

  h1 {
    max-width: none;
  }

  .container {
    width: min(var(--max-width), calc(100% - 1.2rem));
  }

  .lightbox-dialog {
    width: calc(100vw - 1rem);
    margin: 0.5rem auto;
    max-height: calc(100vh - 1rem);
  }

  .lightbox-image {
    max-height: calc(100vh - 5rem);
  }

  .lightbox-caption {
    font-size: 0.92rem;
    text-align: center;
  }
}
