:root {
  --navy: #071b35;
  --blue: #123e7c;
  --accent: #41d6c3;
  --accent-dark: #179d91;
  --soft: #f4f8fb;
  --ink: #172033;
  --muted: #5a6678;
  --white: #ffffff;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
}
body {
  color: var(--ink);
  font-family:
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  line-height: 1.6;
  opacity: 1;
}

a:focus-visible,
button:focus-visible,
.btn:focus-visible,
.form-control:focus-visible,
.form-select:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
}
.skip-link {
  position: absolute;
  left: 1rem;
  top: 1rem;
  z-index: 9999;
  background: var(--white);
  color: var(--navy);
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  box-shadow: 0 0 0 3px var(--accent);
}
.skip-link:focus,
.skip-link:focus-visible {
  color: var(--navy);
  text-decoration: none;
}
.vp-navbar {
  background: rgba(7, 27, 53, 0.96);
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.18);
}
.navbar-brand {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0;
}
.brand-logo {
  display: block;
  width: auto;
  height: 42px;
  max-width: 220px;
  object-fit: contain;
}
.nav-link {
  color: rgba(255, 255, 255, 0.84) !important;
}
.nav-link:hover,
.nav-link:focus {
  color: var(--accent) !important;
}
.btn-accent {
  background: var(--accent);
  border-color: var(--accent);
  color: #061622;
  font-weight: 700;
}
.btn-accent:hover,
.btn-accent:focus,
.btn-accent:active {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  color: var(--white) !important;
}
.hero-section {
  position: relative;
  overflow: hidden;
  z-index: 0;
  padding: 8.25rem 0 5rem;
  color: var(--white);
  background: radial-gradient(circle at top right, rgba(65, 214, 195, 0.22), transparent 32%), linear-gradient(135deg, #071b35 0%, #0c2c57 56%, #061323 100%);
}
.hero-section:after {
  content: "";
  position: absolute;
  inset: auto -10% -40% -10%;
  height: 70%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08), transparent 56%);
  transform: rotate(-8deg);
  pointer-events: none;
  z-index: 0;
}
.hero-section > .container {
  position: relative;
  z-index: 2;
}
.eyebrow {
  color: var(--accent);
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 0.14em;
  font-weight: 800;
  margin-bottom: 0.75rem;
}
.eyebrow.dark {
  color: var(--blue);
}
h1 {
  font-size: clamp(2.35rem, 4.4vw, 2.875rem);
  line-height: 1.12;
  font-weight: 750;
}
h2 {
  font-weight: 750;
  font-size: clamp(1.9rem, 3vw, 2.125rem);
  line-height: 1.18;
}
h3 {
  font-size: 1.15rem;
  font-weight: 780;
}
.hero-lead {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.22rem;
  /* max-width: 46rem; */
}
.hero-card {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 1.5rem;
  padding: 2rem;
  backdrop-filter: blur(16px);
}
.hero-card-raised {
  margin-top: -1.2rem;
}
.hero-card p {
  color: rgba(255, 255, 255, 0.9);
}
.trust-row {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.trust-row li {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  padding: 0.45rem 0.75rem;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.9rem;
}
.check-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
}
.check-list li {
  position: relative;
  padding-left: 1.8rem;
  margin: 0.55rem 0;
}
.check-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent);
  font-weight: 900;
}
.video-glass-card {
  padding: 1.25rem;
}
.video-glass-card .h4 {
  margin-bottom: 1rem;
}
.video-thumb {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  background: transparent;
  overflow: hidden;
  border-radius: 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.28);
  cursor: pointer;
  text-decoration: none;
}
.video-thumb img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transform: scale(1.01);
  transition:
    transform 0.35s ease,
    filter 0.35s ease;
}
.video-thumb:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(7, 27, 53, 0.2), rgba(7, 27, 53, 0.02));
  pointer-events: none;
}
.video-thumb:hover img,
.video-thumb:focus img,
.video-thumb:focus-visible img {
  transform: scale(1.045);
  filter: brightness(1.08);
}
.video-thumb:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 4px;
}
.play-button {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(65, 214, 195, 0.92);
  box-shadow:
    0 12px 34px rgba(0, 0, 0, 0.32),
    0 0 0 10px rgba(255, 255, 255, 0.16);
  transform: translate(-50%, -50%);
  transition:
    transform 0.3s ease,
    background 0.3s ease;
}
.video-thumb:hover .play-button,
.video-thumb:focus .play-button,
.video-thumb:focus-visible .play-button {
  background: var(--white);
  transform: translate(-50%, -50%) scale(1.08);
}
.play-triangle {
  width: 0;
  height: 0;
  margin-left: 5px;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
  border-left: 23px solid #061622;
}

/* Smaller play buttons for the four lower video cards only.
   The main hero video keeps the larger default play button above. */
.video-resources-row .play-button {
  width: 56px;
  height: 56px;
  box-shadow:
    0 10px 26px rgba(0, 0, 0, 0.28),
    0 0 0 7px rgba(255, 255, 255, 0.15);
}

.video-resources-row .play-triangle {
  margin-left: 4px;
  border-top-width: 11px;
  border-bottom-width: 11px;
  border-left-width: 17px;
}

.section-pad {
  padding: 5.5rem 0;
}
.section-text {
  color: var(--muted);
  font-size: 1.08rem;
}
.bg-soft {
  background: var(--soft);
}
.bg-dark-blue {
  background: var(--navy);
}
.feature-card,
.process-card,
.contact-form {
  height: 100%;
  background: var(--white);
  border: 1px solid rgba(18, 62, 124, 0.1);
  border-radius: 1.25rem;
  padding: 1.5rem;
  box-shadow: 0 14px 40px rgba(7, 27, 53, 0.08);
}
.feature-card p {
  color: var(--muted);
  margin-bottom: 0;
}
.section-sticky {
  top: 7rem;
}
.service-list {
  display: grid;
  gap: 1rem;
}
.service-item {
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 1rem;
  background: var(--white);
  border: 1px solid rgba(18, 62, 124, 0.1);
  border-radius: 1.25rem;
  padding: 1.5rem;
  box-shadow: 0 14px 40px rgba(7, 27, 53, 0.06);
}
.service-item span {
  width: 3rem;
  height: 3rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--soft);
  color: var(--blue);
  font-weight: 800;
}
.service-item p {
  color: var(--muted);
  margin: 0;
}
.process-card {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: none;
}
.process-card span {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 1rem;
  display: grid;
  place-items: center;
  background: var(--accent);
  color: #061622;
  font-size: 1.4rem;
  font-weight: 850;
  margin-bottom: 1.5rem;
}
.process-card p {
  color: rgba(255, 255, 255, 0.9);
}
.download-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 2rem;
  border-radius: 1.5rem;
  background: linear-gradient(135deg, #ffffff, #edf8fb);
  border: 1px solid rgba(18, 62, 124, 0.12);
  box-shadow: 0 16px 50px rgba(7, 27, 53, 0.08);
}
.contact-form {
  height: auto;
}
.form-note {
  color: var(--muted);
  margin-bottom: 1rem;
}
.form-label span[aria-hidden="true"] {
  color: #842029;
  font-weight: 800;
}
.form-control,
.form-select {
  min-height: 48px;
  border-color: rgba(18, 62, 124, 0.2);
}
.form-control:focus,
.form-select:focus {
  border-color: var(--accent-dark);
  box-shadow: 0 0 0 0.25rem rgba(65, 214, 195, 0.25);
}
.footer {
  color: rgba(255, 255, 255, 0.9);
  background: #061323;
}
.footer a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.back-to-top-btn {
  position: fixed;
  right: clamp(1rem, 2vw, 1.6rem);
  bottom: clamp(1rem, 2vw, 1.6rem);
  z-index: 1050;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.25rem;
  height: 3.25rem;
  border: 2px solid var(--accent);
  border-radius: 999px;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  color: var(--white);
  box-shadow: 0 1rem 2.25rem rgba(7, 27, 53, 0.32);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(0.85rem) scale(0.94);
  transition: opacity 0.26s ease, visibility 0.26s ease, transform 0.26s ease, background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.back-to-top-btn.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.back-to-top-btn:hover,
.back-to-top-btn:focus-visible {
  background: var(--accent);
  border-color: var(--white);
  color: var(--navy);
  transform: translateY(-0.18rem) scale(1.04);
}

.back-to-top-btn:active {
  transform: translateY(0) scale(0.98);
}
@media (max-width: 991px) {
  .hero-card-raised {
    margin-top: 0;
  }
}
@media (max-width: 767px) {
  .brand-logo {
    height: 36px;
    max-width: 190px;
  }
  .hero-section {
    padding: 7rem 0 4rem;
  }
  .section-pad {
    padding: 4rem 0;
  }
  .download-box {
    flex-direction: column;
    align-items: flex-start;
  }
  .play-button {
    width: 64px;
    height: 64px;
  }
  .video-resources-row .play-button {
    width: 50px;
    height: 50px;
  }
  .video-resources-row .play-triangle {
    margin-left: 3px;
    border-top-width: 10px;
    border-bottom-width: 10px;
    border-left-width: 15px;
  }
}

/* GLightbox local MP4 sizing */
.glightbox-container .ginner-container {
  max-width: min(96vw, 1920px);
}
.glightbox-container .gslide-video {
  max-width: min(96vw, 1920px);
}
.glightbox-container .plyr,
.glightbox-container video {
  width: 100%;
  max-height: min(90vh, 1080px);
}

/* Click fix: keep the decorative hero overlay behind content so GLightbox can receive clicks. */
.hero-section::after {
  pointer-events: none;
  z-index: 0;
}
.hero-section > .container {
  position: relative;
  z-index: 2;
}
.video-thumb {
  position: relative;
  z-index: 3;
  pointer-events: auto;
}
.play-button {
  pointer-events: none;
}

/* Contact form AJAX response */
.form-response {
  display: none;
  margin-top: 0.25rem;
  padding: 0.9rem 1rem;
  border-radius: 0.75rem;
  font-weight: 650;
}

.form-response.is-visible {
  display: block;
}

.form-response.success {
  color: #063d32;
  background: rgba(65, 214, 195, 0.2);
  border: 1px solid rgba(23, 157, 145, 0.35);
}

.form-response.error {
  color: #842029;
  background: #f8d7da;
  border: 1px solid #f5c2c7;
}

.hp-field {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

/* Download Resource Card overide */

.download-box.download-box-resources {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
}

.download-resource-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  column-gap: 2rem;
  align-items: start;
  width: 100%;
}

.download-resource-copy h3 {
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  font-weight: 750;
  margin-bottom: 0.4rem;
}

.download-resource-row .btn {
  align-self: start;
  margin-top: 0.18rem;
  white-space: nowrap;
}

@media (max-width: 767.98px) {
  .download-resource-row {
    grid-template-columns: 1fr;
    row-gap: 1rem;
  }

  .download-resource-row .btn {
    justify-self: start;
    margin-top: 0;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  [data-aos] {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* 2nd Hero Paragraph */
.hero-lead-2 {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  /* max-width: 46rem; */
}

/*  */

/* Sales path improvements */
.hero-actions .btn {
  white-space: normal;
}

.hero-outcome-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin: 1.25rem 0 0;
}

.hero-outcome-chips li {
  border: 1px solid rgba(65, 214, 195, 0.36);
  border-radius: 999px;
  background: rgba(65, 214, 195, 0.12);
  color: #eaffff;
  font-size: 0.92rem;
  font-weight: 800;
  padding: 0.5rem 0.78rem;
}

.trust-proof-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.proof-card {
  min-height: 100%;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(12px);
}

.proof-card strong {
  display: block;
  color: #fff;
  font-size: 0.98rem;
  line-height: 1.35;
}

.proof-kicker {
  display: inline-block;
  margin-bottom: 0.4rem;
  color: var(--accent);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.agency-experience-strip {
  display: block;
}

.agency-experience-card {
  padding: 1.25rem 1.4rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 1.1rem;
  background: rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(12px);
}

.agency-experience-card p {
  max-width: 72rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.03rem;
  line-height: 1.6;
}

.risk-grid,
.deliverable-grid,
.package-grid {
  display: grid;
  gap: 1rem;
}

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

.risk-card,
.deliverable-card,
.package-card,
.sample-deliverable {
  background: var(--white);
  border: 1px solid rgba(18, 62, 124, 0.1);
  border-radius: 1.25rem;
  box-shadow: 0 14px 40px rgba(7, 27, 53, 0.07);
}

.risk-card {
  padding: 1.25rem;
}

.risk-card p,
.deliverable-card p,
.package-card p {
  color: var(--muted);
}

.deliverables-intro {
  max-width: 48rem;
}

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

.deliverable-card {
  padding: 1.25rem;
}

.deliverable-card span {
  display: inline-grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  margin-bottom: 0.85rem;
  border-radius: 50%;
  background: var(--soft);
  color: var(--blue);
  font-size: 0.86rem;
  font-weight: 900;
}

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

.package-card {
  display: flex;
  flex-direction: column;
  padding: 1.35rem;
}

.package-card-featured {
  border-color: rgba(65, 214, 195, 0.56);
  box-shadow: 0 18px 48px rgba(23, 157, 145, 0.18);
}

.package-label {
  display: inline-flex;
  align-self: flex-start;
  margin-bottom: 0.65rem;
  padding: 0.25rem 0.58rem;
  border-radius: 999px;
  background: #e8fffa;
  color: #0b2a47 !important;
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.package-card ul {
  padding-left: 1.15rem;
  margin: 0.35rem 0 1.2rem;
  color: var(--muted);
}

.package-card li {
  margin: 0.35rem 0;
}

.package-card a {
  margin-top: auto;
  color: var(--blue);
  font-weight: 800;
  text-decoration-thickness: 0.1em;
  text-underline-offset: 0.18em;
}

.sample-deliverable {
  overflow: hidden;
}

.sample-header {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  color: #fff;
}

.sample-header span {
  color: var(--accent);
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.sample-deliverable h3 {
  padding: 1.25rem 1.25rem 0;
  font-size: 1.35rem;
}

.sample-list {
  margin: 0;
  padding: 1rem 1.25rem 1.25rem;
}

.sample-list div {
  display: grid;
  grid-template-columns: 8.5rem minmax(0, 1fr);
  gap: 1rem;
  padding: 0.8rem 0;
  border-top: 1px solid rgba(18, 62, 124, 0.1);
}

.sample-list dt {
  color: var(--blue);
  font-weight: 900;
}

.sample-list dd {
  margin: 0;
  color: var(--muted);
}


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

@media (max-width: 991.98px) {
  .trust-proof-strip,
  .deliverable-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767.98px) {
  .trust-proof-strip,
  .risk-grid,
  .deliverable-grid,
  .package-grid {
    grid-template-columns: 1fr;
  }

  .sample-list div {
    grid-template-columns: 1fr;
    gap: 0.2rem;
  }
}


/* Resource action buttons */
.resource-actions {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.75rem;
}

/* AI Test Prompts page */
.nav-link.active,
.nav-link[aria-current="page"] {
  color: var(--accent) !important;
  font-weight: 800;
}

.prompt-hero {
  position: relative;
  overflow: hidden;
  z-index: 0;
  padding: 8.25rem 0 5rem;
  color: var(--white);
  background: radial-gradient(circle at top right, rgba(65, 214, 195, 0.24), transparent 34%), linear-gradient(135deg, #071b35 0%, #0c2c57 56%, #061323 100%);
}

.prompt-hero:after {
  content: "";
  position: absolute;
  inset: auto -10% -42% -10%;
  height: 70%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08), transparent 56%);
  transform: rotate(-8deg);
  pointer-events: none;
  z-index: 0;
}

.prompt-hero > .container {
  position: relative;
  z-index: 2;
}

.prompt-hero-card h2,
.prompt-hero-card li {
  color: #fff;
}

.prompt-intro {
  max-width: 58rem;
}

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

.how-card,
.ai-note-box,
.ai-prompt-card {
  background: var(--white);
  border: 1px solid rgba(18, 62, 124, 0.1);
  border-radius: 1.25rem;
  box-shadow: 0 14px 40px rgba(7, 27, 53, 0.08);
}

.how-card {
  padding: 1.35rem;
  height: 100%;
}

.how-card span {
  width: 3rem;
  height: 3rem;
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  border-radius: 1rem;
  background: var(--accent);
  color: #061622;
  font-weight: 900;
  font-size: 1.2rem;
}

.how-card p,
.ai-note-box p,
.prompt-card-desc {
  color: var(--muted);
}

.ai-note-box {
  padding: 1.35rem 1.5rem;
  border-left: 6px solid var(--accent);
}

.ai-note-box h3 {
  margin-bottom: 0.35rem;
}

.ai-prompt-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  align-items: start;
}

.ai-prompt-card {
  padding: 1.25rem;
  overflow: hidden;
}

.ai-prompt-card.prompt-card-featured {
  color: #fff;
  background: radial-gradient(circle at top right, rgba(65, 214, 195, 0.26), transparent 32%), linear-gradient(135deg, var(--navy), var(--blue));
  border-color: rgba(255, 255, 255, 0.16);
}

.prompt-card-featured-wide {
  grid-column: 1 / -1;
}

.prompt-card-head {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 0.85rem;
  align-items: start;
}

.prompt-number {
  display: inline-grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: var(--soft);
  color: var(--blue);
  font-weight: 900;
}

.ai-prompt-card h2 {
  margin: 0;
  font-size: clamp(1.15rem, 1.6vw, 1.45rem);
}

.prompt-kicker {
  margin: 0 0 0.15rem;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.prompt-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.38rem 0.7rem;
  border-radius: 999px;
  background: #e8fffa;
  border: 1px solid #9ee6d7;
  color: #0b2a47;
  font-size: 0.76rem;
  font-weight: 900;
  white-space: nowrap;
}

.ai-prompt-card.prompt-card-featured .prompt-number {
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
}

.ai-prompt-card.prompt-card-featured .prompt-kicker,
.ai-prompt-card.prompt-card-featured h2,
.ai-prompt-card.prompt-card-featured .prompt-card-desc {
  color: #fff;
}

.ai-prompt-card.prompt-card-featured .prompt-card-desc {
  color: rgba(255, 255, 255, 0.88);
}

.prompt-card-desc {
  margin: 1rem 0 0;
}

.prompt-copy-wrap {
  display: flex;
  justify-content: flex-end;
  margin: 1rem 0 0.75rem;
}

.prompt-copy-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.35rem;
  border: 1px solid rgba(37, 99, 235, 0.28);
  border-radius: 999px;
  background: #eef6ff;
  color: #1d4ed8;
  font-size: 0.82rem;
  font-weight: 850;
  padding: 0.55rem 0.9rem;
  cursor: pointer;
  transition: background-color 0.18s ease, color 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}

.prompt-copy-btn:hover,
.prompt-copy-btn:focus-visible {
  background: #2563eb;
  border-color: #2563eb;
  color: #fff;
  transform: translateY(-1px);
}

.prompt-copy-btn.is-copied {
  background: #dcfce7;
  border-color: rgba(22, 163, 74, 0.42);
  color: #166534;
}

.prompt-code {
  max-height: 24rem;
  margin: 0;
  padding: 1rem;
  overflow: auto;
  white-space: pre-wrap;
  border-radius: 1rem;
  background: #f7fafc;
  border: 1px solid rgba(18, 62, 124, 0.1);
  color: #273244;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 0.9rem;
  line-height: 1.65;
}

.ai-prompt-card.prompt-card-featured .prompt-code {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.93);
}


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

@media (max-width: 991.98px) {
  .resource-actions {
    justify-content: flex-start;
  }

  .ai-prompt-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767.98px) {
  .prompt-hero {
    padding: 7rem 0 4rem;
  }

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

  .prompt-card-head {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .prompt-badge {
    grid-column: 2;
    justify-self: start;
  }
}
