:root {
  color-scheme: light;
  --brand-980: #21053f;
  --brand-950: #3b0d76;
  --brand-900: #581c87;
  --brand-800: #7e22ce;
  --brand-700: #9333ea;
  --brand-600: #a855f7;
  --brand-500: #b56cff;
  --brand-400: #c084fc;
  --brand-300: #d8b4fe;
  --brand-200: #eadcff;
  --brand-100: #f7edff;
  --ink: #171126;
  --ink-soft: #514868;
  --paper: #faf7ff;
  --surface: #fffefe;
  --surface-tint: #fbf8ff;
  --line: #e4d6f3;
  --line-strong: #d6b8f4;
  --focus: #c084fc;
  --shadow: 0 18px 42px rgba(126, 34, 206, 0.16);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  background: var(--paper);
  color: var(--ink);
  text-rendering: optimizeLegibility;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--paper);
}

body,
button,
input,
textarea {
  letter-spacing: 0;
}

button {
  font: inherit;
}

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 4px;
}

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 14px 32px;
  color: #fffefe;
  background: rgba(168, 85, 247, 0.88);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  font-weight: 800;
  font-size: 1.05rem;
}

.logo-lockup {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fffefe;
  white-space: nowrap;
}

.logo-camera {
  flex: 0 0 auto;
  width: 42px;
  height: auto;
  aspect-ratio: 512 / 396;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 8px 18px rgba(61, 8, 110, 0.22));
  user-select: none;
}

.logo-name {
  color: #fffefe;
  font-weight: 900;
  line-height: 1;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 0.92rem;
  color: rgba(255, 254, 254, 0.82);
}

.nav-links a:hover,
.site-footer a:hover {
  color: #ffffff;
}

.header-cta,
.primary-button,
.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 8px;
  font-weight: 800;
  white-space: nowrap;
}

.header-cta,
.primary-button {
  color: #fffefe;
  background: linear-gradient(135deg, var(--brand-500), var(--brand-700));
  box-shadow: 0 14px 30px rgba(147, 51, 234, 0.32);
}

.header-cta svg,
.primary-button svg {
  width: 18px;
  height: 18px;
}

.header-cta:hover,
.primary-button:hover {
  filter: brightness(1.05);
}

.secondary-button {
  color: #fffefe;
  border: 1px solid rgba(228, 215, 255, 0.48);
  background: rgba(243, 237, 255, 0.08);
}

.secondary-button:hover {
  background: rgba(243, 237, 255, 0.14);
}

.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 84svh;
  padding: 128px 32px 72px;
  color: #fffefe;
  background-image: url("/assets/screens/dashboard-calendar.webp");
  background-size: cover;
  background-position: center top;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(33, 5, 63, 0.94) 0%, rgba(88, 28, 135, 0.78) 48%, rgba(168, 85, 247, 0.34) 100%),
    linear-gradient(0deg, rgba(88, 28, 135, 0.38), rgba(88, 28, 135, 0.38));
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(760px, 100%);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--brand-600);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero .eyebrow,
.accounting-band .eyebrow,
.final-cta .eyebrow {
  color: var(--brand-200);
}

.hero-logo {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  margin: 0;
  font-size: 5.1rem;
  line-height: 0.98;
  text-shadow: 0 16px 40px rgba(0, 0, 0, 0.22);
}

.hero-logo .logo-camera {
  width: clamp(96px, 10vw, 112px);
  filter: drop-shadow(0 16px 34px rgba(33, 5, 63, 0.3));
}

.hero-logo span {
  display: block;
}

.hero-copy {
  width: min(640px, 100%);
  margin: 24px 0 0;
  color: rgba(255, 254, 254, 0.9);
  font-size: 1.18rem;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  width: min(640px, 100%);
  margin-top: 36px;
}

.hero-stats div {
  min-height: 82px;
  padding: 16px;
  border: 1px solid rgba(228, 215, 255, 0.2);
  border-radius: 8px;
  background: rgba(243, 237, 255, 0.09);
}

.hero-stats strong,
.hero-stats span {
  display: block;
}

.hero-stats strong {
  font-size: 1.1rem;
}

.hero-stats span {
  margin-top: 8px;
  color: rgba(255, 254, 254, 0.72);
  font-size: 0.86rem;
}

.section {
  width: min(1160px, calc(100% - 48px));
  margin: 0 auto;
  padding: 84px 0;
}

section[id] {
  scroll-margin-top: 86px;
}

.section-heading {
  width: min(760px, 100%);
}

.section-heading.wide {
  width: min(860px, 100%);
}

.section-heading h2,
.showcase-copy h2,
.accounting-inner h2,
.final-cta h2 {
  margin: 0;
  font-size: 2.45rem;
  line-height: 1.18;
}

.section-heading p:not(.eyebrow),
.showcase-copy p,
.accounting-inner p,
.final-cta p {
  color: var(--ink-soft);
  line-height: 1.8;
}

.problem-grid,
.feature-grid,
.flow-grid,
.pricing-grid,
.use-case-grid,
.media-layer-grid,
.feature-detail-grid,
.voice-grid {
  display: grid;
  gap: 16px;
  margin-top: 32px;
}

.problem-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.problem-card,
.feature-card,
.flow-card,
.price-card,
.screen-card,
.use-case-card,
.media-layer-card,
.feature-detail-card,
.voice-card,
.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 10px 28px rgba(36, 15, 82, 0.06);
}

.problem-card {
  min-height: 164px;
  padding: 22px;
}

.problem-card span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  color: var(--brand-700);
  background: var(--brand-100);
  font-size: 0.82rem;
  font-weight: 900;
}

.problem-card p,
.feature-card p,
.flow-card p,
.price-card p,
.use-case-card p,
.media-layer-card p,
.feature-detail-card p,
.voice-card p,
.faq-list p {
  color: var(--ink-soft);
  line-height: 1.75;
}

.owned-media-band {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 254, 254, 0.86), rgba(247, 237, 255, 0.72)),
    var(--surface-tint);
}

.use-case-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.media-layer-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 16px;
}

.use-case-card,
.media-layer-card,
.feature-detail-card,
.voice-card {
  min-height: 260px;
  padding: 24px;
}

.card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  color: var(--brand-700);
}

.card-top span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  color: var(--brand-700);
  background: var(--brand-100);
  font-size: 0.76rem;
  font-weight: 900;
}

.use-case-card code,
.path-list code,
.article-path,
.text-link {
  overflow-wrap: anywhere;
  font-size: 0.82rem;
  font-weight: 900;
}

.use-case-card code,
.path-list code,
.article-path {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 8px;
  color: var(--brand-700);
  background: var(--brand-100);
}

.article-path {
  margin-top: 20px;
}

.path-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.feature-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-card {
  min-height: 260px;
  padding: 24px;
}

.feature-icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 8px;
  color: #fffefe;
}

.accent-violet .feature-icon {
  background: linear-gradient(135deg, var(--brand-500), var(--brand-700));
}

.accent-lavender .feature-icon {
  color: var(--brand-700);
  background: var(--brand-200);
}

.accent-indigo .feature-icon {
  background: var(--brand-700);
}

.accent-plum .feature-icon {
  background: #b34be9;
}

.feature-icon svg,
.flow-top svg,
.card-top svg,
.check-list svg,
.price-card li svg,
.feature-detail-card li svg {
  width: 22px;
  height: 22px;
}

.feature-card h3,
.flow-card h3,
.price-card h3,
.use-case-card h3,
.media-layer-card h3,
.feature-detail-card h3,
.voice-card h3 {
  margin: 20px 0 10px;
  font-size: 1.25rem;
  line-height: 1.35;
}

.feature-detail-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.feature-detail-card ul {
  display: grid;
  gap: 10px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.feature-detail-card li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--ink-soft);
  line-height: 1.6;
}

.feature-detail-card li svg {
  flex: 0 0 auto;
  color: var(--brand-600);
}

.text-link {
  display: inline-flex;
  margin-top: 20px;
  color: var(--brand-700);
}

.link-button {
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.feature-card .text-link {
  margin-top: 14px;
}

.faq-detail-link {
  margin: 0 0 20px;
}

.text-link:hover,
.link-button:hover {
  color: var(--brand-900);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.showcase-section {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: start;
  gap: 34px;
}

.showcase-copy {
  position: sticky;
  top: 110px;
}

.screen-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.screen-card {
  overflow: hidden;
}

.screen-card.large {
  grid-column: 1 / -1;
}

.screen-card img {
  width: 100%;
  height: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: top center;
  background: var(--brand-700);
}

.screen-card figcaption {
  padding: 12px 14px;
  color: var(--ink-soft);
  font-size: 0.9rem;
  font-weight: 800;
}

.flow-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.flow-card {
  min-height: 270px;
  padding: 24px;
}

.flow-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--brand-700);
}

.flow-top span {
  font-size: 1.8rem;
  font-weight: 900;
}

.flow-label {
  margin: 24px 0 0;
  color: var(--brand-600);
  font-weight: 900;
}

.accounting-band {
  color: #fffefe;
  background:
    radial-gradient(circle at 16% 0%, rgba(216, 180, 254, 0.28), transparent 34%),
    linear-gradient(135deg, var(--brand-900), var(--brand-700));
}

.accounting-inner {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 44px;
  width: min(1160px, calc(100% - 48px));
  margin: 0 auto;
  padding: 76px 0;
}

.accounting-inner p {
  color: rgba(255, 254, 254, 0.78);
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 54px;
  padding: 14px 16px;
  border: 1px solid rgba(228, 215, 255, 0.16);
  border-radius: 8px;
  background: rgba(243, 237, 255, 0.08);
  font-weight: 800;
}

.check-list svg {
  flex: 0 0 auto;
  color: var(--brand-300);
}

.voice-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.voice-card blockquote {
  margin: 18px 0 0;
  padding-left: 16px;
  border-left: 3px solid var(--brand-400);
  color: var(--ink);
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.7;
}

.voice-card small {
  display: block;
  margin-top: 18px;
  color: var(--brand-700);
  font-weight: 900;
  line-height: 1.5;
}

.pricing-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.price-card {
  position: relative;
  min-height: 430px;
  padding: 26px;
}

.price-card.featured {
  border-color: var(--brand-500);
  box-shadow: var(--shadow);
}

.price-badge {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  color: #fffefe;
  background: linear-gradient(135deg, var(--brand-500), var(--brand-700));
  font-size: 0.78rem;
  font-weight: 900;
}

.plan-note {
  min-height: 58px;
}

.price-line {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-top: 22px;
}

.price-line strong {
  font-size: 2.2rem;
  line-height: 1;
}

.price-line span,
.yearly {
  color: var(--ink-soft);
}

.yearly {
  margin-top: 10px;
  font-weight: 800;
}

.price-card ul {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.price-card li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--ink-soft);
}

.price-card li svg {
  flex: 0 0 auto;
  color: var(--brand-600);
}

.faq-search-panel {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) auto;
  gap: 14px;
  align-items: center;
  margin-top: 30px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 10px 28px rgba(36, 15, 82, 0.06);
}

.faq-search-field {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  color: var(--brand-700);
  background: var(--surface-tint);
}

.faq-search-field svg {
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
}

.faq-search-field input {
  width: 100%;
  min-width: 0;
  border: 0;
  color: var(--ink);
  background: transparent;
  font: inherit;
  font-weight: 800;
  outline: none;
}

.faq-search-field input::placeholder {
  color: rgba(81, 72, 104, 0.72);
}

.faq-category-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.faq-category-button {
  min-height: 38px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--brand-700);
  background: var(--surface);
  font: inherit;
  font-size: 0.86rem;
  font-weight: 900;
  cursor: pointer;
}

.faq-category-button:hover,
.faq-category-button.active {
  color: #fffefe;
  border-color: var(--brand-600);
  background: var(--brand-600);
}

.faq-list {
  display: grid;
  gap: 12px;
  margin-top: 30px;
}

.faq-list details {
  padding: 0 20px;
}

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 68px;
  cursor: pointer;
  font-weight: 900;
  list-style: none;
}

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

.faq-list summary svg {
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  color: var(--brand-600);
}

.faq-list p {
  margin: 0;
  padding: 0 0 14px;
}

.faq-summary-content {
  display: grid;
  gap: 8px;
}

.faq-category-badge {
  width: fit-content;
  min-height: 24px;
  padding: 3px 8px;
  border-radius: 999px;
  color: var(--brand-700);
  background: var(--brand-100);
  font-size: 0.74rem;
  line-height: 1.2;
}

.faq-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0 0 20px;
}

.faq-tags span {
  min-height: 26px;
  padding: 4px 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink-soft);
  background: var(--surface-tint);
  font-size: 0.76rem;
  font-weight: 800;
}

.faq-empty {
  padding: 20px;
  border: 1px dashed var(--line-strong);
  border-radius: 8px;
  background: var(--surface);
  font-weight: 800;
}

.subpage-hero {
  padding: 126px 32px 58px;
  color: #fffefe;
  background:
    linear-gradient(135deg, rgba(168, 85, 247, 0.94), rgba(147, 51, 234, 0.9)),
    var(--brand-600);
}

.subpage-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: end;
  width: min(1160px, calc(100% - 48px));
  margin: 0 auto;
}

.subpage-hero h1 {
  width: min(840px, 100%);
  margin: 10px 0 0;
  font-size: 3rem;
  line-height: 1.12;
}

.subpage-hero p:last-child {
  width: min(760px, 100%);
  color: rgba(255, 254, 254, 0.82);
  line-height: 1.8;
}

.subpage-hero .eyebrow {
  color: var(--brand-100);
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
  color: rgba(255, 254, 254, 0.72);
  font-size: 0.86rem;
  font-weight: 800;
}

.breadcrumbs a:hover {
  color: #ffffff;
}

.page-path {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 8px;
  color: var(--brand-950);
  background: rgba(255, 254, 254, 0.82);
  font-size: 0.82rem;
  font-weight: 900;
  overflow-wrap: anywhere;
}

.back-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 8px;
  color: #fffefe;
  background: rgba(255, 255, 255, 0.08);
  font-weight: 900;
  cursor: pointer;
}

.back-button:hover {
  background: rgba(255, 255, 255, 0.16);
}

.directory-section {
  display: grid;
  gap: 22px;
}

.directory-overview,
.directory-grid,
.faq-category-teasers {
  display: grid;
  gap: 16px;
}

.directory-overview {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.directory-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.faq-category-teasers {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-top: 28px;
}

.directory-rule-card,
.directory-card,
.detail-aside,
.detail-chapter,
.detail-footer,
.faq-page-card,
.faq-teaser-card,
.not-found-section .detail-footer {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 10px 28px rgba(36, 15, 82, 0.06);
}

.directory-rule-card,
.directory-card,
.detail-aside,
.detail-chapter,
.faq-page-card,
.faq-teaser-card {
  padding: 24px;
}

.directory-rule-card h2,
.directory-card h2,
.detail-chapter h2,
.faq-page-card h2 {
  margin: 0;
  font-size: 1.25rem;
  line-height: 1.35;
}

.directory-rule-card p,
.directory-card p,
.detail-chapter p,
.faq-page-card p {
  color: var(--ink-soft);
  line-height: 1.75;
}

.directory-rule-card ul,
.detail-chapter ul {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.directory-rule-card li,
.detail-chapter li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--ink-soft);
  line-height: 1.6;
}

.directory-rule-card li svg,
.detail-chapter li svg {
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  color: var(--brand-600);
}

.directory-card {
  min-height: 280px;
}

.directory-card code {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 8px;
  color: var(--brand-700);
  background: var(--brand-100);
  font-size: 0.82rem;
  font-weight: 900;
  overflow-wrap: anywhere;
}

.detail-section {
  display: grid;
  grid-template-columns: minmax(220px, 320px) minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.detail-aside {
  position: sticky;
  top: 104px;
  display: grid;
  gap: 12px;
}

.detail-aside svg {
  width: 44px;
  height: 44px;
  color: var(--brand-600);
}

.detail-aside span,
.detail-footer span {
  color: var(--ink-soft);
  font-size: 0.84rem;
  font-weight: 900;
}

.detail-aside strong {
  color: var(--ink);
  font-size: 1.12rem;
  line-height: 1.5;
}

.detail-body {
  display: grid;
  gap: 16px;
}

.detail-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px;
}

.related-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.related-link {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 8px;
  color: var(--brand-700);
  background: var(--brand-100);
  font-size: 0.82rem;
  font-weight: 900;
  overflow-wrap: anywhere;
}

.related-link:hover {
  color: var(--brand-900);
  background: var(--brand-200);
}

.faq-page-section {
  padding-top: 64px;
}

.faq-page-card {
  display: grid;
  gap: 14px;
}

.faq-page-card .faq-tags {
  padding: 0;
}

.faq-teaser-card {
  display: grid;
  gap: 8px;
  min-height: 116px;
  color: var(--ink);
}

.faq-teaser-card span {
  color: var(--brand-700);
  font-weight: 900;
}

.faq-teaser-card strong {
  font-size: 1.2rem;
}

.faq-teaser-card:hover {
  border-color: var(--brand-400);
  box-shadow: var(--shadow);
}

.faq-index-button {
  margin-top: 22px;
}

.not-found-section {
  min-height: 280px;
}

.final-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  width: min(1160px, calc(100% - 48px));
  margin: 0 auto 44px;
  padding: 42px;
  border-radius: 8px;
  color: #fffefe;
  background:
    radial-gradient(circle at 84% 18%, rgba(203, 179, 255, 0.2), transparent 28%),
    linear-gradient(135deg, var(--brand-800), var(--brand-600));
}

.final-cta p {
  color: rgba(255, 254, 254, 0.78);
}

.final-cta .primary-button {
  color: var(--brand-950);
  background: #fffefe;
  box-shadow: none;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 96px;
  padding: 26px 32px;
  color: rgba(255, 254, 254, 0.76);
  background: var(--brand-900);
}

.site-footer .brand {
  color: #fffefe;
}

.site-footer p {
  margin: 0;
}

.site-footer div:last-child {
  display: flex;
  gap: 18px;
}

@media (max-width: 920px) {
  .site-header {
    padding: 12px 18px;
  }

  .nav-links {
    display: none;
  }

  .hero {
    min-height: 82svh;
    padding: 118px 24px 56px;
  }

  .hero-logo {
    font-size: 4rem;
  }

  .hero-logo .logo-camera {
    width: 86px;
  }

  .hero-copy {
    font-size: 1.05rem;
  }

  .section {
    width: min(100% - 32px, 760px);
    padding: 64px 0;
  }

  .section-heading h2,
  .showcase-copy h2,
  .accounting-inner h2,
  .final-cta h2 {
    font-size: 2rem;
  }

  .problem-grid,
  .feature-grid,
  .flow-grid,
  .pricing-grid,
  .use-case-grid,
  .media-layer-grid,
  .feature-detail-grid,
  .voice-grid,
  .showcase-section,
  .accounting-inner,
  .faq-search-panel,
  .subpage-hero-inner,
  .directory-overview,
  .directory-grid,
  .detail-section,
  .faq-category-teasers {
    grid-template-columns: 1fr;
  }

  .subpage-hero {
    padding: 108px 18px 46px;
  }

  .subpage-hero-inner {
    width: min(100% - 16px, 760px);
    align-items: start;
  }

  .subpage-hero h1 {
    font-size: 2.2rem;
  }

  .detail-aside {
    position: static;
  }

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

  .faq-category-list {
    justify-content: flex-start;
  }

  .showcase-copy {
    position: static;
  }

  .screen-grid {
    grid-template-columns: 1fr;
  }

  .accounting-inner {
    width: min(100% - 32px, 760px);
    padding: 62px 0;
  }

  .final-cta,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .site-header {
    min-height: 64px;
  }

  .brand .logo-name {
    font-size: 0.98rem;
  }

  .header-cta {
    min-height: 40px;
    padding: 0 12px;
    font-size: 0.88rem;
  }

  .hero {
    padding: 96px 18px 34px;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(168, 85, 247, 0.7), rgba(88, 28, 135, 0.82)),
      rgba(168, 85, 247, 0.28);
  }

  .hero-logo {
    gap: 12px;
    font-size: 2.9rem;
  }

  .hero-logo .logo-camera {
    width: 66px;
  }

  .hero-copy {
    font-size: 1rem;
  }

  .hero-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    margin-top: 22px;
  }

  .hero-stats div {
    min-height: 72px;
    padding: 12px 10px;
  }

  .hero-stats strong {
    font-size: 0.98rem;
  }

  .hero-stats span {
    font-size: 0.75rem;
  }

  .primary-button,
  .secondary-button {
    width: 100%;
  }

  .section {
    width: min(100% - 28px, 560px);
    padding: 54px 0;
  }

  .section-heading h2,
  .showcase-copy h2,
  .accounting-inner h2,
  .subpage-hero h1,
  .final-cta h2 {
    font-size: 1.66rem;
  }

  .feature-card,
  .flow-card,
  .price-card,
  .problem-card,
  .use-case-card,
  .media-layer-card,
  .feature-detail-card,
  .voice-card,
  .directory-rule-card,
  .directory-card,
  .detail-aside,
  .detail-chapter,
  .faq-page-card,
  .faq-teaser-card {
    padding: 20px;
  }

  .price-line {
    display: block;
  }

  .price-line span {
    display: block;
    margin-top: 8px;
  }

  .accounting-inner,
  .final-cta {
    width: min(100% - 28px, 560px);
  }

  .final-cta {
    padding: 26px;
  }

  .site-footer {
    padding: 24px 18px;
  }
}
