/* PeakCMS - design layer.
   Tailwind (static/tailwind.css) owns spacing, layout, and breakpoints.
   This file owns character: color variables, texture, typography detail,
   component treatments, and motion. Keep spacing out of here.

   Brand: deep blue ink, cool light paper, a call-to-action orange.
   Variable NAMES are kept from the base template; only values change. */

:root {
  --pine-deep: #081b33;
  --pine: #0f2547;
  --pine-mid: #163a6b;
  --moss: #2b6cf0;
  --moss-deep: #1e56c8;
  --moss-soft: #9cc0ee;
  --cream: #f6f8fc;
  --cream-dim: #eaf1fa;
  --clay: #f97316;
  --clay-deep: #dd5f0a;
  --gold: #f5a623;
  --ink: #14213a;

  /* aliases matching Tailwind token names, used by component rules below */
  --ink-600: #56617a;
  --pine-900: #0f2547;
  --moss-500: #2b6cf0;
  --cream-200: #d6e2f1;

  --radius-leaf: 16px;
  --radius-leaf-sm: 12px;
  --radius-leaf-xs: 10px;

  --topo: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='620' height='420' viewBox='0 0 620 420'%3E%3Cg fill='none' stroke='%23cde0fb' stroke-opacity='.06' stroke-width='1.3'%3E%3Cpath d='M-20 60c90-38 180 26 280-6s220-52 380 8'/%3E%3Cpath d='M-20 110c110-44 200 34 300-2s200-60 360 12'/%3E%3Cpath d='M-20 170c80-30 190 40 290 6s230-64 370 4'/%3E%3Cpath d='M-20 240c100-42 180 30 290-4s210-46 370 10'/%3E%3Cpath d='M-20 310c90-34 200 36 300 2s220-58 360 6'/%3E%3Cpath d='M-20 380c110-40 190 28 290-6s230-44 370 12'/%3E%3C/g%3E%3C/svg%3E");
  --grain: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='.5'/%3E%3C/svg%3E");
}

/* ---------- Global atmosphere ---------- */

html {
  scroll-behavior: smooth;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 80;
  pointer-events: none;
  background-image: var(--grain);
  opacity: 0.05;
}

::selection {
  background: var(--clay);
  color: var(--ink);
}

:focus-visible {
  outline: 2px solid var(--clay);
  outline-offset: 2px;
  border-radius: 4px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  z-index: 100;
  background: var(--clay);
  color: var(--ink);
  font-weight: 700;
  padding: 0.6rem 1.1rem;
  border-radius: var(--radius-leaf-xs);
}

.skip-link:focus {
  left: 0.75rem;
  top: 0.75rem;
}

/* ---------- Typography detail ---------- */

h1.font-display,
h2.font-display,
h3.font-display,
p.font-display {
  font-weight: 700;
  letter-spacing: -0.02em;
}

h1.hero-line,
.hero-line {
  font-weight: 800;
  letter-spacing: -0.03em;
  text-wrap: balance;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-family: "Inter", sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--moss-soft);
}

.eyebrow::before {
  content: "";
  width: 2.25rem;
  height: 2px;
  background: var(--clay);
  flex-shrink: 0;
}

.section-label {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  color: var(--clay-deep);
}

.section-label::before {
  content: "";
  width: 1.9rem;
  height: 2px;
  background: var(--clay);
  flex-shrink: 0;
}

/* ---------- Header and nav ---------- */

.site-header {
  background: color-mix(in srgb, var(--pine-deep) 94%, transparent);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(250, 247, 239, 0.09);
}

.brand svg {
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.brand:hover svg {
  transform: translateY(-2px);
}

.site-nav a[data-nav] {
  position: relative;
  color: var(--cream-dim);
  text-decoration: none;
  transition: color 0.2s ease;
}

.site-nav a[data-nav]::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -5px;
  height: 2px;
  background: var(--clay);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.site-nav a[data-nav]:hover {
  color: var(--cream);
}

.site-nav a[data-nav]:hover::after {
  transform: scaleX(1);
}

body.page-index .site-nav a[data-nav="index"],
body.page-features .site-nav a[data-nav="features"],
body.page-pricing .site-nav a[data-nav="pricing"],
body.page-portfolio .site-nav a[data-nav="portfolio"],
body.page-contact .site-nav a[data-nav="contact"] {
  color: var(--cream);
}

body.page-index .site-nav a[data-nav="index"]::after,
body.page-features .site-nav a[data-nav="features"]::after,
body.page-pricing .site-nav a[data-nav="pricing"]::after,
body.page-portfolio .site-nav a[data-nav="portfolio"]::after,
body.page-contact .site-nav a[data-nav="contact"]::after {
  transform: scaleX(1);
}

/* ---------- Buttons and links ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  white-space: nowrap;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-decoration: none;
  border-radius: var(--radius-leaf-xs);
  transition: transform 0.15s ease, background-color 0.2s ease,
    border-color 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
}

.btn:active {
  transform: translateY(1px);
}

.btn-clay {
  background: var(--clay);
  color: var(--ink);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.14), 0 8px 18px -8px rgba(249, 115, 22, 0.7);
}

.btn-clay:hover {
  background: var(--clay-deep);
  color: var(--ink);
  transform: translateY(-1px);
  box-shadow: 0 2px 0 rgba(0, 0, 0, 0.14), 0 12px 24px -8px rgba(221, 95, 10, 0.8);
}

.btn-ghost-light {
  border: 1.5px solid rgba(250, 247, 239, 0.35);
  color: var(--cream);
}

.btn-ghost-light:hover {
  border-color: rgba(250, 247, 239, 0.7);
  background: rgba(250, 247, 239, 0.07);
}

.btn-outline-pine {
  border: 1.5px solid var(--pine-mid);
  color: var(--pine);
}

.btn-outline-pine:hover {
  background: var(--pine);
  color: var(--cream);
}

/* Links the client adds inside editable text carry no class - style them so
   they stand out from body copy. Classed links (buttons, nav) are untouched. */
main p a:not([class]),
main blockquote a:not([class]),
main li a:not([class]) {
  color: var(--clay-deep);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
  text-decoration-color: color-mix(in srgb, var(--clay) 45%, transparent);
  transition: color 0.2s ease, text-decoration-color 0.2s ease;
}

main p a:not([class]):hover,
main blockquote a:not([class]):hover,
main li a:not([class]):hover {
  color: var(--clay);
  text-decoration-color: var(--clay);
}

/* Same links on the dark bands need light text for contrast */
.hero-band p a:not([class]),
.cta-band p a:not([class]),
.site-footer p a:not([class]) {
  color: var(--cream);
  text-decoration-color: color-mix(in srgb, var(--moss-soft) 60%, transparent);
}

.hero-band p a:not([class]):hover,
.cta-band p a:not([class]):hover,
.site-footer p a:not([class]):hover {
  color: var(--cream);
  text-decoration-color: var(--cream);
}

.text-link {
  color: var(--clay-deep);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
  text-decoration-color: color-mix(in srgb, var(--clay) 45%, transparent);
  transition: color 0.2s ease, text-decoration-color 0.2s ease;
}

.text-link:hover {
  color: var(--clay);
  text-decoration-color: var(--clay);
}

/* ---------- Dark bands (hero, CTA, footer) ---------- */

.hero-band,
.cta-band,
.site-footer {
  background-color: var(--pine-deep);
  background-image: radial-gradient(
      90rem 40rem at 85% -20%,
      rgba(43, 108, 240, 0.28),
      transparent 60%
    ),
    var(--topo);
}

.site-footer {
  color: var(--cream-dim);
}

.footer-heading {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  color: var(--moss-soft);
}

.footer-link {
  color: var(--cream-dim);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-link:hover {
  color: var(--cream);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ---------- Hero panel illustration ---------- */

.hero-panel {
  background: linear-gradient(165deg, var(--pine-mid) 0%, var(--pine) 55%, var(--pine-deep) 100%);
  border: 1px solid rgba(250, 247, 239, 0.1);
}

.hero-card {
  background: var(--cream);
  border-radius: var(--radius-leaf-xs);
  box-shadow: 0 14px 30px -12px rgba(0, 0, 0, 0.5);
}

.hero-sun circle:last-child {
  transform-origin: 48px 48px;
  animation: sun-spin 70s linear infinite;
}

@keyframes sun-spin {
  to {
    transform: rotate(360deg);
  }
}

/* ---------- Leaf corners ---------- */

.corner-leaf {
  border-radius: var(--radius-leaf);
}

.corner-leaf-sm {
  border-radius: var(--radius-leaf-sm);
}

/* ---------- Cards ---------- */

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--pine);
}

.trust-icon {
  width: 1.6rem;
  height: 1.6rem;
  flex-shrink: 0;
  color: var(--clay);
}

.service-card {
  display: block;
  background: #fff;
  border: 1px solid var(--cream-dim);
  text-decoration: none;
  box-shadow: 0 1px 2px rgba(31, 38, 30, 0.04);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: var(--moss-soft);
  box-shadow: 0 16px 30px -14px rgba(31, 38, 30, 0.25);
}

.service-icon {
  width: 2.4rem;
  height: 2.4rem;
  color: var(--moss-deep);
}

.card-cue {
  display: inline-block;
  margin-top: 1rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--clay-deep);
}

.card-cue::after {
  content: "\00a0\2192";
  display: inline-block;
  transition: transform 0.2s ease;
}

.service-card:hover .card-cue::after {
  transform: translateX(4px);
}

.quote-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--cream-dim);
  box-shadow: 0 1px 2px rgba(31, 38, 30, 0.04);
}

.quote-card::before {
  content: "\201C";
  position: absolute;
  top: 0.4rem;
  right: 1.4rem;
  font-family: "Sora", sans-serif;
  font-size: 5rem;
  line-height: 1;
  color: var(--cream-dim);
  pointer-events: none;
}

.quote-card blockquote {
  position: relative;
}

.stars {
  display: inline-flex;
  gap: 2px;
  color: var(--gold);
}

.stars svg {
  width: 1rem;
  height: 1rem;
}

.price-card {
  background: #fff;
  border: 1px solid var(--cream-dim);
  box-shadow: 0 1px 2px rgba(31, 38, 30, 0.04);
  scroll-margin-top: 5rem;
}

.price-card .service-icon {
  color: var(--moss);
}

.guarantee-band {
  background: color-mix(in srgb, var(--moss) 7%, #fff);
  border: 1px solid color-mix(in srgb, var(--moss) 22%, #fff);
}

.step-number {
  font-family: "Sora", sans-serif;
  font-weight: 700;
  font-size: 2.4rem;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--clay);
}

.step {
  background: #fff;
  border: 1px solid var(--cream-dim);
  border-radius: var(--radius-leaf);
  padding: 1.7rem 1.6rem;
  box-shadow: 0 1px 2px rgba(20, 33, 58, 0.04);
}

.detail-card,
.contact-card {
  background: #fff;
  border: 1px solid var(--cream-dim);
  box-shadow: 0 1px 2px rgba(31, 38, 30, 0.04);
}

.detail-heading {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--pine-mid);
}

.detail-icon {
  width: 1.3rem;
  height: 1.3rem;
  color: var(--clay);
}

/* ---------- Staff and FAQs ---------- */

.staff-card {
  background: #fff;
  border: 1px solid var(--cream-dim);
  box-shadow: 0 1px 2px rgba(31, 38, 30, 0.04);
}

.faq-item {
  background: #fff;
  border: 1px solid var(--cream-dim);
  margin-bottom: 0.85rem;
  overflow: hidden;
}

.faq-question {
  cursor: pointer;
  list-style: none;
  position: relative;
  padding: 1.1rem 3rem 1.1rem 1.4rem;
  font-family: "Sora", sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--pine);
  -webkit-tap-highlight-color: transparent;
}

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

.faq-question::after {
  content: "";
  position: absolute;
  right: 1.4rem;
  top: 50%;
  width: 0.55rem;
  height: 0.55rem;
  margin-top: -0.4rem;
  border-right: 2px solid var(--clay);
  border-bottom: 2px solid var(--clay);
  transform: rotate(45deg);
  transition: transform 0.2s ease;
}

.faq-item[open] .faq-question::after {
  transform: rotate(225deg);
  margin-top: -0.15rem;
}

.faq-answer {
  padding: 0 1.4rem 1.2rem;
  color: var(--ink-600, #56617a);
  line-height: 1.65;
}

/* ---------- Blog ---------- */

.post-card {
  background: #fff;
  border: 1px solid var(--cream-dim);
  box-shadow: 0 1px 2px rgba(31, 38, 30, 0.04);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.post-card:hover {
  transform: translateY(-4px);
  border-color: var(--moss-soft);
  box-shadow: 0 16px 30px -14px rgba(31, 38, 30, 0.25);
}

.post-date {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--clay-deep);
}

.post-title-link {
  color: inherit;
  text-decoration: none;
}

.post-title-link:hover {
  color: var(--clay-deep);
}

.prose-body p {
  margin-bottom: 1.35rem;
  font-size: 1.1rem;
  line-height: 1.75;
  color: var(--ink);
}

.prose-body p:first-child {
  font-size: 1.2rem;
  color: var(--pine);
  font-weight: 500;
}

.prose-body a {
  color: var(--clay-deep);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.prose-body h2,
.prose-body h3,
.prose-body h4 {
  font-family: "Sora", sans-serif;
  font-weight: 600;
  color: var(--pine);
  margin: 2.2rem 0 0.9rem;
  line-height: 1.25;
}

.prose-body h2 {
  font-size: 1.7rem;
}

.prose-body h3 {
  font-size: 1.35rem;
}

.prose-body h4 {
  font-size: 1.15rem;
  color: var(--pine-mid);
}

.phone-hero {
  text-decoration: none;
  transition: color 0.2s ease;
}

.phone-hero:hover {
  color: var(--clay-deep);
}

/* ---------- Quote form (renders when a Web3Forms key is set) ---------- */

.form-card {
  background: #fff;
  border: 1px solid var(--cream-dim);
  box-shadow: 0 1px 2px rgba(31, 38, 30, 0.04);
}

.botcheck {
  display: none !important;
}

.form-field label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--pine-mid);
  margin-bottom: 0.4rem;
}

.form-field input,
.form-field textarea {
  width: 100%;
  font: inherit;
  font-size: 1rem;
  padding: 0.75rem 0.9rem;
  border: 1.5px solid #d9d1ba;
  border-radius: 12px 12px 12px 3px;
  background: var(--cream);
  color: var(--ink);
  transition: border-color 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--clay);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(192, 91, 46, 0.14);
}

.form-field textarea {
  resize: vertical;
}

/* ---------- Gallery + lightbox ---------- */

.gallery-thumb {
  border: 1px solid var(--cream-dim);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.gallery-thumb:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 24px -12px rgba(31, 38, 30, 0.3);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1rem;
  background: rgba(16, 35, 21, 0.94);
}

.lightbox.open {
  display: flex;
}

body.lb-lock {
  overflow: hidden;
}

.lb-figure {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  max-width: min(82vw, 70rem);
}

.lb-figure img {
  max-width: 100%;
  max-height: 76vh;
  object-fit: contain;
  border-radius: 14px 14px 14px 4px;
}

.lb-figure figcaption {
  color: var(--cream-dim);
  font-size: 0.95rem;
  text-align: center;
  max-width: 40rem;
}

.lb-count {
  color: var(--moss-soft);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
}

.lightbox button {
  flex-shrink: 0;
  width: 2.75rem;
  height: 2.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  line-height: 1;
  color: var(--cream);
  background: rgba(250, 247, 239, 0.08);
  border: 1.5px solid rgba(250, 247, 239, 0.3);
  border-radius: 12px 12px 12px 3px;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease;
}

.lightbox button:hover {
  background: rgba(250, 247, 239, 0.18);
  border-color: rgba(250, 247, 239, 0.6);
}

.lb-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
}

@media (max-width: 640px) {
  .lightbox {
    padding: 0.5rem;
    gap: 0.4rem;
  }

  .lb-figure img {
    max-height: 66vh;
  }
}

/* ---------- Mobile sticky call/text bar ---------- */

.mobile-cta-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 60;
  gap: 0.5rem;
  padding: 0.6rem 0.75rem calc(0.6rem + env(safe-area-inset-bottom));
  background: color-mix(in srgb, var(--pine-deep) 96%, transparent);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-top: 1px solid rgba(250, 247, 239, 0.12);
}

@media (max-width: 639px) {
  body {
    padding-bottom: 4.4rem;
  }
}

/* ---------- Motion ---------- */

.reveal {
  animation: rise 0.7s cubic-bezier(0.22, 0.9, 0.35, 1) both;
}

.reveal-1 {
  animation-delay: 0.09s;
}

.reveal-2 {
  animation-delay: 0.18s;
}

.reveal-3 {
  animation-delay: 0.27s;
}

.reveal-4 {
  animation-delay: 0.36s;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

  .reveal,
  .reveal-1,
  .reveal-2,
  .reveal-3,
  .reveal-4 {
    animation: none;
  }

  .hero-sun circle:last-child {
    animation: none;
  }

  .btn,
  .service-card,
  .brand svg {
    transition: none;
  }
}

/* ---------- Product: browser + editor mock (hero) ---------- */

.browser-mock {
  background: #fff;
  border: 1px solid rgba(250, 247, 239, 0.14);
  border-radius: var(--radius-leaf);
  box-shadow: 0 30px 60px -24px rgba(0, 0, 0, 0.6);
  overflow: hidden;
}

.browser-bar {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.7rem 0.85rem;
  background: var(--cream-dim);
  border-bottom: 1px solid #dde2db;
}

.browser-dot {
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 50%;
  background: #c7ccc5;
}

.browser-url {
  margin-left: 0.5rem;
  flex: 1;
  font-size: 0.72rem;
  color: var(--ink-600, #56617a);
  background: #fff;
  border: 1px solid #e2e6df;
  border-radius: 7px;
  padding: 0.3rem 0.6rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.admin-panel {
  padding: 1.25rem 1.35rem 1.5rem;
}

.admin-eyebrow {
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--moss-deep);
}

.admin-field {
  margin-top: 0.9rem;
}

.admin-label {
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--pine-mid);
}

.admin-input {
  margin-top: 0.35rem;
  padding: 0.6rem 0.75rem;
  font-size: 0.92rem;
  color: var(--ink);
  background: var(--cream);
  border: 1.5px solid #dbe0d8;
  border-radius: 9px;
}

.admin-input.is-active {
  border-color: var(--clay);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(239, 167, 46, 0.18);
}

.admin-caret {
  display: inline-block;
  width: 2px;
  height: 1.05em;
  vertical-align: -0.18em;
  margin-left: 1px;
  background: var(--clay-deep);
  animation: caret-blink 1.1s steps(1) infinite;
}

@keyframes caret-blink {
  50% {
    opacity: 0;
  }
}

.admin-save {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1.15rem;
  padding: 0.55rem 1.1rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--ink);
  background: var(--clay);
  border-radius: 9px;
}

.save-toast {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.1rem;
  padding: 0.65rem 0.85rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--pine);
  background: color-mix(in srgb, var(--moss-500) 16%, #fff);
  border: 1px solid color-mix(in srgb, var(--moss-500) 32%, #fff);
  border-radius: 9px;
}

.save-toast svg {
  width: 1.05rem;
  height: 1.05rem;
  color: var(--moss-deep);
  flex-shrink: 0;
}

/* ---------- Product: metrics band ---------- */

.metric-num {
  font-family: "Sora", sans-serif;
  font-weight: 600;
  font-size: 2.4rem;
  line-height: 1;
  color: var(--pine-900, #0f2547);
  letter-spacing: -0.02em;
}

.metric-label {
  margin-top: 0.5rem;
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--ink-600, #56617a);
}

/* ---------- Product: pricing plan card ---------- */

.plan-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--cream-dim);
  box-shadow: 0 1px 2px rgba(31, 38, 30, 0.04);
}

.plan-featured {
  border: 2px solid var(--moss);
  box-shadow: 0 24px 50px -22px rgba(15, 37, 71, 0.4);
}

.plan-badge {
  display: inline-block;
  padding: 0.3rem 0.75rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--clay);
  border-radius: 999px;
}

.price-figure {
  font-family: "Sora", sans-serif;
  font-weight: 600;
  font-size: 3.2rem;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--pine-900, #0f2547);
}

.price-unit {
  font-size: 1rem;
  font-weight: 500;
  color: var(--ink-600, #56617a);
}

.check-list {
  display: grid;
  gap: 0.85rem;
}

.check-item {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  line-height: 1.5;
  color: var(--ink);
}

.check-item svg {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
  color: var(--moss-deep);
}

.addon-card {
  background: #fff;
  border: 1px solid var(--cream-dim);
  box-shadow: 0 1px 2px rgba(31, 38, 30, 0.04);
}

.addon-price {
  font-family: "Sora", sans-serif;
  font-weight: 600;
  color: var(--clay-deep);
}

/* ---------- Product imagery ---------- */

/* Photographic shots (laptop, tablet in-context): rounded + soft shadow */
.media-frame {
  border-radius: var(--radius-leaf);
  overflow: hidden;
  box-shadow: 0 34px 64px -30px rgba(8, 27, 51, 0.55),
    0 10px 24px -16px rgba(8, 27, 51, 0.3);
}

.media-frame img {
  display: block;
  width: 100%;
  height: auto;
}

/* UI screenshots: a light frame so the interface reads as a captured screen */
.shot {
  border-radius: var(--radius-leaf);
  border: 1px solid var(--cream-200);
  background: #fff;
  box-shadow: 0 24px 50px -28px rgba(8, 27, 51, 0.45);
  overflow: hidden;
}

.shot img {
  display: block;
  width: 100%;
  height: auto;
}

.hero-band .media-frame,
.cta-band .media-frame {
  box-shadow: 0 40px 70px -30px rgba(0, 0, 0, 0.6);
}

.media-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--ink-600);
}

.media-tag svg {
  width: 1rem;
  height: 1rem;
  color: var(--moss);
}
