:root {
  --cream: #f9f6ef;
  --charcoal: #1c1c1c;
  --off-white: #fefdf9;
  --muted-gray: #5e5a57;
  --light-cream: #e8dfd1;
  --charcoal-83: rgba(28, 28, 28, 0.83);
  --charcoal-82: rgba(28, 28, 28, 0.82);
  --charcoal-40: rgba(28, 28, 28, 0.4);
  --charcoal-04: rgba(28, 28, 28, 0.04);
  --charcoal-03: rgba(28, 28, 28, 0.03);
  --ring-blue: rgba(59, 130, 246, 0.5);
  --focus-shadow: rgba(0, 0, 0, 0.1) 0 4px 12px;
  --button-inset: rgba(255, 255, 255, 0.2) 0 0.5px 0 0 inset,
    rgba(0, 0, 0, 0.2) 0 0 0 0.5px inset,
    rgba(0, 0, 0, 0.05) 0 1px 2px 0;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Camera Plain Variable", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  background:
    radial-gradient(72% 58% at 8% 4%, rgba(255, 212, 166, 0.24), transparent 68%),
    radial-gradient(62% 52% at 88% 14%, rgba(162, 186, 255, 0.24), transparent 66%),
    radial-gradient(55% 48% at 50% 100%, rgba(255, 173, 137, 0.18), transparent 72%),
    var(--cream);
  color: var(--charcoal);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  scroll-behavior: smooth;
}

a {
  color: var(--charcoal);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.container {
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: saturate(130%) blur(8px);
  background: color-mix(in srgb, var(--cream) 88%, transparent);
  border-bottom: 1px solid var(--light-cream);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 72px;
}

.brand {
  font-size: 20px;
  letter-spacing: -0.4px;
  font-weight: 600;
  text-decoration: none;
  color: var(--charcoal);
}

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

.nav-item {
  position: relative;
}

.nav-item > a {
  text-decoration: underline;
  text-underline-offset: 2px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.nav-item > a::after {
  content: "▾";
  font-size: 11px;
  line-height: 1;
  opacity: 0.8;
  transform: translateY(-1px);
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 150px;
  display: none;
  flex-direction: column;
  gap: 2px;
  border: 1px solid var(--light-cream);
  border-radius: 10px;
  padding: 6px;
  background: color-mix(in srgb, var(--off-white) 94%, var(--charcoal-03));
  box-shadow: rgba(28, 28, 28, 0.08) 0 8px 24px;
  z-index: 50;
}

.nav-dropdown a {
  text-decoration: none;
  color: var(--charcoal-82);
  font-size: 14px;
  padding: 6px 8px;
  border-radius: 6px;
}

.nav-dropdown a:hover {
  background: color-mix(in srgb, var(--cream) 96%, var(--charcoal-03));
  color: var(--charcoal);
}

.nav-item:hover .nav-dropdown {
  display: flex;
}

.nav-links a {
  font-size: 16px;
}

.nav-links a.is-active {
  color: var(--charcoal);
  font-weight: 600;
}

.menu-btn {
  display: none;
  background: var(--cream);
  color: var(--charcoal);
  border: 1px solid var(--charcoal-40);
  border-radius: 6px;
  font-size: 14px;
  padding: 8px 12px;
}

.hero {
  padding: 96px 0;
  text-align: center;
  background:
    radial-gradient(45% 45% at 12% 8%, rgba(255, 174, 143, 0.24), transparent 74%),
    radial-gradient(50% 50% at 88% 15%, rgba(124, 163, 255, 0.18), transparent 70%),
    radial-gradient(35% 35% at 50% 100%, rgba(255, 205, 142, 0.16), transparent 80%);
  animation: heroDrift 14s ease-in-out infinite alternate;
}

.home-minimal main {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 0;
}

.home-minimal .hero {
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 108px 0 64px;
  background:
    radial-gradient(58% 50% at 10% 8%, rgba(255, 203, 143, 0.32), transparent 72%),
    radial-gradient(50% 46% at 86% 10%, rgba(140, 178, 255, 0.24), transparent 70%),
    radial-gradient(46% 40% at 50% 96%, rgba(255, 160, 124, 0.2), transparent 74%),
    linear-gradient(180deg, rgba(255, 249, 239, 0.78) 0%, rgba(249, 246, 239, 0.3) 100%);
}

.home-minimal .site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: transparent;
  border-bottom: 0;
  backdrop-filter: none;
}

.home-minimal .footer-wrap {
  padding-top: 40px;
}

.auth-main {
  min-height: calc(100vh - 72px);
  display: grid;
  place-items: center;
  padding: 32px 0;
}

.auth-section {
  width: 100%;
}

.auth-card {
  width: min(560px, calc(100% - 32px));
  margin: 0 auto;
  border: 1px solid var(--light-cream);
  border-radius: 16px;
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.65), rgba(255, 250, 241, 0.5)),
    color-mix(in srgb, var(--off-white) 92%, var(--charcoal-03));
  box-shadow: rgba(28, 28, 28, 0.08) 0 12px 36px;
}

.auth-card h1 {
  margin: 0;
  font-size: clamp(34px, 6vw, 48px);
  line-height: 1;
  letter-spacing: -1.2px;
  font-weight: 600;
}

.auth-subtitle {
  margin: 12px 0 20px;
  color: var(--muted-gray);
}

.social-auth {
  display: grid;
  gap: 10px;
}

.social-btn {
  width: 100%;
}

.auth-divider {
  margin: 16px 0;
  border-top: 1px solid var(--light-cream);
  position: relative;
}

.auth-divider span {
  position: absolute;
  top: -11px;
  left: 50%;
  transform: translateX(-50%);
  background: color-mix(in srgb, var(--off-white) 92%, var(--cream));
  padding: 0 8px;
  color: var(--muted-gray);
  font-size: 13px;
}

.auth-form {
  display: grid;
  gap: 10px;
}

.auth-form label {
  font-size: 14px;
  color: var(--charcoal-82);
}

.auth-submit {
  margin-top: 6px;
  width: 100%;
}

.auth-options {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 2px;
}

.remember-me {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--muted-gray);
  cursor: pointer;
}

.remember-me input {
  width: 15px;
  height: 15px;
  accent-color: var(--charcoal);
}

.forgot-link {
  font-size: 14px;
  color: var(--charcoal-82);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.hero h1 {
  margin: 0;
  font-size: clamp(36px, 7vw, 60px);
  line-height: 1.05;
  letter-spacing: -1.5px;
  font-weight: 600;
}

.hero-live {
  margin: 0 auto 16px;
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 9999px;
  border: 1px solid var(--light-cream);
  background: linear-gradient(90deg, rgba(255, 226, 183, 0.34), rgba(216, 230, 255, 0.32));
  font-size: 14px;
  color: var(--charcoal-82);
}

.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.6);
  animation: livePulse 1.8s infinite;
}

.hero p {
  max-width: 760px;
  margin: 20px auto 0;
  font-size: 18px;
  line-height: 1.38;
  color: var(--muted-gray);
  font-weight: 400;
}

.hero-composer {
  width: min(840px, 100%);
  margin: 32px auto 0;
  border: 1px solid var(--light-cream);
  border-radius: 16px;
  padding: 16px;
  text-align: left;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.64), rgba(255, 250, 241, 0.54)),
    color-mix(in srgb, var(--off-white) 90%, var(--charcoal-03));
  box-shadow:
    rgba(255, 255, 255, 0.72) 0 1px 0 inset,
    rgba(28, 28, 28, 0.08) 0 12px 36px;
}

.hero-preview {
  margin: 28px auto 0;
  border: 1px solid var(--light-cream);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: rgba(28, 28, 28, 0.08) 0 12px 34px;
  max-width: 980px;
}

.hero-preview img {
  width: 100%;
  height: clamp(220px, 40vw, 460px);
  object-fit: cover;
  display: block;
}

.hero-textarea {
  min-height: 110px;
  resize: vertical;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.hero-textarea:focus-visible {
  transform: translateY(-1px);
}

.hero-actions {
  margin-top: 12px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

button,
.btn-primary,
.btn-ghost,
.btn-pill {
  border: 0;
  cursor: pointer;
  transition: opacity 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
  font-family: inherit;
  font-size: 16px;
  line-height: 1.5;
  padding: 8px 16px;
  border-radius: 6px;
}

button,
.btn-primary,
.btn-ghost,
.btn-pill,
.slider-btn,
.toggle-btn {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

button:hover,
.btn-primary:hover,
.btn-ghost:hover,
.btn-pill:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(180deg, #2b2b2d 0%, #1c1c1f 100%);
  color: var(--off-white);
  box-shadow: var(--button-inset);
}

.btn-ghost {
  background: transparent;
  color: var(--charcoal);
  border: 1px solid var(--charcoal-40);
}

.btn-pill {
  background: var(--cream);
  color: var(--charcoal);
  border-radius: 9999px;
  box-shadow: var(--button-inset);
  opacity: 0.5;
  padding: 8px 14px;
  border: 1px solid var(--light-cream);
  font-size: 14px;
}

button:active,
.btn-primary:active,
.btn-ghost:active,
.btn-pill:active {
  opacity: 0.8;
}

button:focus-visible,
.btn-primary:focus-visible,
.btn-ghost:focus-visible,
.btn-pill:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 0;
  box-shadow: var(--focus-shadow);
  border-color: var(--ring-blue);
}

.section {
  padding: 80px 0;
  position: relative;
}

.section::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 8%, var(--light-cream) 45%, transparent 92%);
  opacity: 0.55;
}

.meet-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 20px;
  align-items: stretch;
}

.meet-media {
  border: 1px solid var(--light-cream);
  border-radius: 14px;
  overflow: hidden;
  background: var(--cream);
}

.meet-media img {
  width: 100%;
  height: 100%;
  min-height: 380px;
  object-fit: cover;
  display: block;
}

.meet-steps {
  display: grid;
  gap: 12px;
}

.meet-step {
  border: 1px solid var(--light-cream);
  border-radius: 12px;
  padding: 18px;
  background: color-mix(in srgb, var(--cream) 97%, var(--charcoal-03));
}

.meet-step h3 {
  margin: 0;
  font-size: 38px;
  line-height: 1.05;
  letter-spacing: -0.8px;
  font-weight: 600;
}

.meet-step p {
  margin: 8px 0 0;
  color: var(--muted-gray);
}

.section-tight {
  padding-top: 24px;
}

.page-hero {
  padding: 80px 0 56px;
}

.compare-table-wrap {
  border: 1px solid var(--light-cream);
  border-radius: 14px;
  overflow: hidden;
  background: var(--cream);
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
}

.compare-table th,
.compare-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--light-cream);
  text-align: left;
  font-size: 15px;
}

.compare-table th {
  background: color-mix(in srgb, var(--cream) 97%, var(--charcoal-03));
  font-weight: 600;
}

.compare-table tbody tr:last-child td {
  border-bottom: 0;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.trust-line {
  margin: 0;
  text-align: center;
  color: var(--muted-gray);
  font-size: 14px;
}

.logo-strip {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.logo-strip span {
  border: 1px solid var(--light-cream);
  border-radius: 9999px;
  padding: 8px 12px;
  text-align: center;
  font-size: 14px;
  color: var(--charcoal-82);
  background: color-mix(in srgb, var(--cream) 98%, var(--charcoal-03));
}

.section h2 {
  margin: 0 0 16px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1;
  letter-spacing: -1.2px;
  font-weight: 600;
}

.section-copy {
  margin: 0 0 32px;
  color: var(--charcoal-82);
  max-width: 780px;
  font-size: 16px;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.card {
  background: var(--cream);
  border: 1px solid var(--light-cream);
  border-radius: 12px;
  padding: 20px;
  min-height: 190px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.card:hover {
  transform: translateY(-4px);
  border-color: var(--charcoal-40);
  box-shadow: rgba(28, 28, 28, 0.08) 0 8px 24px;
}

.card h3 {
  margin: 0;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.25;
  color: var(--charcoal);
}

.card p {
  margin: 10px 0 0;
  font-size: 14px;
  color: var(--muted-gray);
}

.chat-demo {
  margin-top: 40px;
  border: 1px solid var(--light-cream);
  border-radius: 12px;
  padding: 16px;
  background: color-mix(in srgb, var(--cream) 96%, var(--charcoal-03));
}

.pills {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.chat-input {
  width: 100%;
  border: 1px solid var(--light-cream);
  border-radius: 6px;
  background: color-mix(in srgb, var(--off-white) 95%, var(--cream));
  color: var(--charcoal);
  padding: 10px 12px;
  font: inherit;
}

.chat-input::placeholder {
  color: var(--muted-gray);
}

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

.template-card {
  border: 1px solid var(--light-cream);
  border-radius: 12px;
  overflow: hidden;
  background: var(--cream);
  transition: transform 0.25s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.template-card:hover {
  transform: translateY(-4px);
  border-color: var(--charcoal-40);
  box-shadow: var(--focus-shadow);
}

.template-image {
  aspect-ratio: 16 / 9;
  border-bottom: 1px solid var(--light-cream);
  object-fit: cover;
  display: block;
  width: 100%;
}

.template-body {
  padding: 16px;
}

.template-body h3 {
  margin: 0;
  font-size: 20px;
  line-height: 1.25;
  font-weight: 400;
}

.template-body p {
  margin: 8px 0 0;
  color: var(--muted-gray);
  font-size: 14px;
}

.demo-meta {
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  border-top: 1px solid var(--light-cream);
  padding-top: 10px;
}

.demo-meta span {
  font-size: 13px;
  color: var(--muted-gray);
}

.demo-meta strong {
  font-size: 13px;
  color: var(--charcoal);
  font-weight: 600;
  letter-spacing: -0.1px;
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  padding: 32px;
  border: 1px solid var(--light-cream);
  border-radius: 16px;
  background: color-mix(in srgb, var(--cream) 96%, var(--charcoal-03));
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.stat {
  text-align: center;
}

.stat strong {
  display: block;
  font-size: clamp(36px, 6vw, 48px);
  line-height: 1;
  letter-spacing: -1.2px;
  font-weight: 600;
  color: var(--charcoal);
}

.stat span {
  color: var(--muted-gray);
  font-size: 16px;
}

.type-grid {
  border: 1px solid var(--light-cream);
  border-radius: 16px;
  padding: 24px;
  display: grid;
  gap: 16px;
  background: var(--cream);
}

.type-row {
  border-bottom: 1px solid var(--light-cream);
  padding-bottom: 12px;
}

.type-row:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.type-label {
  display: inline-block;
  font-size: 14px;
  color: var(--muted-gray);
  margin-bottom: 4px;
}

.display-demo {
  font-size: clamp(42px, 7vw, 60px);
  line-height: 1.05;
  letter-spacing: -1.5px;
  font-weight: 600;
}

.section-demo {
  font-size: clamp(32px, 5vw, 48px);
  line-height: 1;
  letter-spacing: -1.2px;
  font-weight: 600;
}

.sub-demo {
  font-size: clamp(28px, 4vw, 36px);
  line-height: 1.1;
  letter-spacing: -0.9px;
  font-weight: 600;
}

.body-demo {
  font-size: 16px;
  color: var(--charcoal-82);
  font-weight: 400;
}

.footer-wrap {
  padding: 80px 0 40px;
  background:
    radial-gradient(60% 70% at 20% 15%, rgba(255, 180, 145, 0.18), transparent 78%),
    radial-gradient(65% 65% at 90% 90%, rgba(138, 180, 255, 0.14), transparent 76%),
    var(--cream);
}

.footer {
  border: 1px solid var(--light-cream);
  border-radius: 16px;
  padding: 24px;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 24px;
}

.footer h4 {
  margin: 0 0 10px;
  font-size: 16px;
  font-weight: 400;
  color: var(--charcoal);
}

.footer p,
.footer li,
.footer a {
  margin: 0;
  font-size: 14px;
  color: var(--muted-gray);
}

.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}

.fine-print {
  margin-top: 20px;
  font-size: 14px;
  color: var(--muted-gray);
  text-align: center;
}

.floating-prompt {
  position: fixed;
  left: 50%;
  bottom: 20px;
  width: min(860px, calc(100% - 32px));
  transform: translate(-50%, 24px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
  z-index: 20;
}

.floating-prompt.is-active {
  opacity: 1;
  transform: translate(-50%, 0);
  pointer-events: auto;
}

.floating-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  border: 1px solid var(--light-cream);
  border-radius: 14px;
  padding: 10px;
  background: color-mix(in srgb, var(--cream) 93%, var(--charcoal-03));
  backdrop-filter: blur(12px);
  box-shadow: rgba(28, 28, 28, 0.15) 0 12px 32px;
}

.cta-banner {
  border: 1px solid var(--light-cream);
  border-radius: 16px;
  padding: 28px;
  background:
    radial-gradient(55% 65% at 15% 25%, rgba(255, 180, 145, 0.14), transparent 75%),
    radial-gradient(50% 55% at 85% 80%, rgba(138, 180, 255, 0.12), transparent 74%),
    var(--cream);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.cta-banner .section-copy {
  margin-bottom: 0;
}

.feature-tabs {
  border: 1px solid var(--light-cream);
  border-radius: 16px;
  padding: 18px;
  background: color-mix(in srgb, var(--cream) 96%, var(--charcoal-03));
}

.tab-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.tab-btn {
  border: 1px solid var(--light-cream);
  background: transparent;
  color: var(--charcoal);
  padding: 8px 14px;
  border-radius: 9999px;
}

.tab-btn.is-active {
  background: var(--charcoal);
  color: var(--off-white);
  box-shadow: var(--button-inset);
}

.tab-panel {
  display: none;
  border: 1px solid var(--light-cream);
  border-radius: 12px;
  padding: 18px;
  background: var(--cream);
}

.tab-panel.is-active {
  display: block;
}

.tab-panel h3 {
  margin: 0;
  font-size: 20px;
  line-height: 1.25;
  font-weight: 400;
}

.tab-panel p {
  margin: 8px 0 0;
  color: var(--muted-gray);
}

.pricing-toggle {
  display: inline-flex;
  border: 1px solid var(--light-cream);
  border-radius: 9999px;
  padding: 4px;
  margin-bottom: 18px;
  background: color-mix(in srgb, var(--cream) 97%, var(--charcoal-03));
}

.toggle-btn {
  background: transparent;
  border-radius: 9999px;
  padding: 8px 14px;
}

.toggle-btn.is-active {
  background: var(--charcoal);
  color: var(--off-white);
}

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

.price-card {
  border: 1px solid var(--light-cream);
  border-radius: 12px;
  padding: 20px;
  background: var(--cream);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.price-card:hover {
  transform: translateY(-3px);
  border-color: var(--charcoal-40);
  box-shadow: rgba(28, 28, 28, 0.08) 0 8px 24px;
}

.price-card.featured {
  border-color: var(--charcoal-40);
  box-shadow: var(--focus-shadow);
}

.price-card h3 {
  margin: 0;
  font-size: 20px;
  font-weight: 400;
}

.price {
  margin: 10px 0 0;
  font-size: 48px;
  line-height: 1;
  letter-spacing: -1.2px;
  font-weight: 600;
}

.price-copy {
  margin: 10px 0 0;
  color: var(--muted-gray);
}

.testimonial-slider {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
}

.slider-btn {
  border: 1px solid var(--charcoal-40);
  background: transparent;
  color: var(--charcoal);
}

.testimonial-track {
  border: 1px solid var(--light-cream);
  border-radius: 16px;
  background: color-mix(in srgb, var(--cream) 97%, var(--charcoal-03));
  min-height: 170px;
  display: grid;
  align-items: center;
}

.testimonial {
  display: none;
  padding: 24px;
}

.testimonial.is-active {
  display: block;
}

.testimonial p {
  margin: 0;
  font-size: 24px;
  line-height: 1.25;
  letter-spacing: -0.4px;
}

.testimonial span {
  display: block;
  margin-top: 12px;
  color: var(--muted-gray);
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-item {
  border: 1px solid var(--light-cream);
  border-radius: 12px;
  padding: 14px;
  background: var(--cream);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.faq-item:hover {
  border-color: var(--charcoal-40);
  box-shadow: rgba(28, 28, 28, 0.06) 0 6px 18px;
}

.faq-question {
  width: 100%;
  display: block;
  text-align: left;
  background: transparent;
  padding: 0;
  border: 0;
  color: var(--charcoal);
  font-size: 18px;
  line-height: 1.35;
}

.faq-answer {
  margin: 10px 0 0;
  color: var(--muted-gray);
  display: none;
}

.faq-item.is-open .faq-answer {
  display: block;
}

.docs-layout {
  display: grid;
  grid-template-columns: 270px minmax(0, 1fr);
  gap: 20px;
  align-items: start;
}

.docs-main {
  padding-top: 8px;
}

.docs-topbar-wrap {
  border-bottom: 1px solid var(--light-cream);
}

.docs-topbar {
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.docs-top-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.docs-top-actions a {
  font-size: 14px;
  color: var(--charcoal-82);
  text-decoration: none;
}

.docs-tabs {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.docs-tabs a {
  text-decoration: none;
  color: var(--charcoal-82);
  font-size: 14px;
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
}

.docs-tabs a.is-active {
  color: var(--charcoal);
  border-bottom-color: var(--charcoal);
}

.docs-search {
  max-width: 280px;
}

.docs-page-shell {
  padding-top: 28px;
}

.docs-shell {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr) 220px;
  gap: 18px;
  align-items: start;
}

.docs-sidebar {
  position: sticky;
  top: 92px;
  border: 1px solid var(--light-cream);
  border-radius: 12px;
  padding: 14px;
  background: color-mix(in srgb, var(--off-white) 92%, var(--charcoal-03));
  display: grid;
  gap: 8px;
}

.docs-sidebar h3 {
  margin: 0 0 4px;
  font-size: 16px;
  font-weight: 600;
  color: var(--charcoal);
  cursor: pointer;
}

.docs-sidebar a {
  font-size: 14px;
  color: var(--charcoal-82);
  text-decoration: none;
  padding: 6px 4px;
  border-radius: 6px;
}

.docs-sidebar a:hover {
  background: color-mix(in srgb, var(--cream) 96%, var(--charcoal-03));
}

.docs-sidebar a.is-active {
  background: color-mix(in srgb, var(--off-white) 88%, var(--charcoal-03));
  color: var(--charcoal);
  font-weight: 600;
}

.docs-content {
  border: 1px solid var(--light-cream);
  border-radius: 14px;
  padding: 20px;
  background: var(--cream);
  display: grid;
  gap: 18px;
}

.docs-article-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  border-bottom: 1px solid var(--light-cream);
  padding-bottom: 12px;
}

.docs-kicker {
  font-size: 14px;
  color: var(--charcoal-82);
}

.docs-copy {
  font-size: 13px;
  padding: 6px 10px;
}

.docs-section {
  border-bottom: 1px solid var(--light-cream);
  padding-bottom: 14px;
}

.docs-section:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.docs-section h2 {
  margin: 0;
  font-size: 30px;
  line-height: 1.1;
  letter-spacing: -0.7px;
}

.docs-section p {
  margin: 8px 0 0;
  color: var(--muted-gray);
}

.docs-list {
  margin: 10px 0 0;
  padding-left: 18px;
  color: var(--muted-gray);
}

.docs-list li {
  margin: 6px 0;
}

.docs-callout {
  margin-top: 10px;
  border: 1px solid var(--light-cream);
  border-radius: 10px;
  padding: 12px;
  background: color-mix(in srgb, var(--off-white) 94%, var(--charcoal-03));
  color: var(--charcoal-82);
}

.docs-media {
  margin-top: 12px;
  border: 1px solid var(--light-cream);
  border-radius: 12px;
  overflow: hidden;
}

.docs-media img {
  width: 100%;
  display: block;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.docs-toc {
  position: sticky;
  top: 92px;
  border: 1px solid var(--light-cream);
  border-radius: 12px;
  padding: 14px;
  background: color-mix(in srgb, var(--off-white) 92%, var(--charcoal-03));
  display: grid;
  gap: 8px;
}

.docs-toc h3 {
  margin: 0 0 4px;
  font-size: 14px;
  font-weight: 600;
  color: var(--charcoal);
}

.docs-toc a {
  font-size: 13px;
  color: var(--charcoal-82);
  text-decoration: none;
}

.docs-toc a.is-active {
  color: var(--charcoal);
  font-weight: 600;
}

.docs-group-title.is-collapsed {
  opacity: 0.7;
}

.docs-top-actions .docs-search {
  min-width: 220px;
}

.reveal-item {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  transition-delay: calc(var(--reveal-delay, 0) * 90ms);
}

.reveal-item.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes heroDrift {
  0% {
    background-position: 0 0, 0 0, 0 0;
  }
  100% {
    background-position: 6px -8px, -5px 6px, 3px -6px;
  }
}

@keyframes livePulse {
  0% {
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.55);
  }
  70% {
    box-shadow: 0 0 0 8px rgba(34, 197, 94, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
  }
}

@media (max-width: 1024px) {
  .card-grid,
  .template-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .steps-grid,
  .logo-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

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

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

  .docs-layout {
    grid-template-columns: 1fr;
  }

  .docs-sidebar {
    position: static;
  }

  .docs-shell {
    grid-template-columns: 1fr;
  }

  .docs-toc {
    position: static;
  }

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

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

@media (max-width: 768px) {
  .container {
    width: min(1200px, calc(100% - 32px));
  }

  .nav-links {
    display: none;
  }

  .menu-btn {
    display: inline-flex;
  }

  .hero {
    padding: 64px 0;
  }

  .hero h1 {
    font-size: clamp(36px, 12vw, 48px);
    letter-spacing: -0.9px;
  }

  .card-grid,
  .about-grid,
  .docs-layout,
  .docs-shell,
  .template-gallery,
  .steps-grid,
  .logo-strip,
  .pricing-grid,
  .stats,
  .footer {
    grid-template-columns: 1fr;
  }

  .meet-step h3 {
    font-size: 30px;
    letter-spacing: -0.6px;
  }

  .testimonial-slider {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 64px 0;
  }

  .hero-actions {
    justify-content: flex-start;
  }

  .floating-inner {
    grid-template-columns: 1fr;
  }
}
