/* Pyppler Marketing — Design System */

:root {
  /* Official logo triad */
  --brand: #b84040;
  --brand-dark: #9a3232;
  --brand-deep: #8f2f2f;
  --brand-soft: #f8eaea;
  --brand-glow: rgba(184, 64, 64, 0.35);
  --energy: #f09830;
  --energy-soft: #fff4e5;
  --lavender: #a07890;
  --lavender-soft: #f3ecf1;
  --ink: #0a0a0a;
  --ink-soft: #1a1a1a;
  --muted: #5c5c5c;
  --muted-soft: #737373;
  --line: #e8e8e8;
  --line-soft: #f3f3f3;
  --surface: #ffffff;
  --surface-2: #f7f5f6;
  --bg: #f6f4f5;
  --danger: #dc2626;
  --radius: 14px;
  --radius-lg: 22px;
  --shadow: 0 22px 55px -30px rgba(10, 10, 10, 0.38);
  --shadow-sm: 0 10px 28px -18px rgba(10, 10, 10, 0.24);
  --header-h: 84px;
  --container: 1120px;
  --font-display: 'Plus Jakarta Sans', system-ui, sans-serif;
  --font-body: 'Plus Jakarta Sans', system-ui, sans-serif;
  --section-y: clamp(4.5rem, 8vw, 7rem);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  font-size: 1.02rem;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.18;
  letter-spacing: -0.025em;
  font-weight: 700;
  margin: 0 0 0.6em;
  color: var(--ink);
}
p { margin: 0 0 1em; color: var(--muted); }

.container { width: min(100% - 2.5rem, var(--container)); margin-inline: auto; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 0.45rem;
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--brand-deep); margin-bottom: 1rem;
}
.eyebrow::before {
  content: ''; width: 0.5rem; height: 0.5rem; border-radius: 50%;
  background: var(--brand); box-shadow: 0 0 0 4px var(--brand-soft);
}
.section { padding: var(--section-y) 0; }
.section-tight { padding: calc(var(--section-y) * 0.72) 0; }
.section-head { max-width: 38rem; margin-bottom: 2.75rem; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 { font-size: clamp(1.9rem, 3.4vw, 2.85rem); font-weight: 700; }
.section-head p { font-size: 1.08rem; }

/* Animated brand gradient on display headings */
.hero-copy h1,
.page-hero h1,
.section-head h2,
.final-cta h2,
.hero-copy h1 .accent-underline,
.page-hero h1 .accent-underline {
  background-image: linear-gradient(
    110deg,
    #b84040 0%,
    #f09830 28%,
    #a07890 52%,
    #b84040 76%,
    #f09830 100%
  );
  background-size: 220% auto;
  background-position: 0% 50%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  animation: headingGradientShift 11s ease-in-out infinite;
}
@keyframes headingGradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-copy h1,
  .page-hero h1,
  .section-head h2,
  .final-cta h2,
  .hero-copy h1 .accent-underline,
  .page-hero h1 .accent-underline {
    animation: none;
    background-image: none;
    -webkit-background-clip: unset;
    background-clip: unset;
    -webkit-text-fill-color: var(--brand);
    color: var(--brand);
  }
}

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  min-height: 48px; padding: 0.75rem 1.35rem; border-radius: 999px;
  border: 1.5px solid transparent; font-weight: 700; font-size: 0.95rem;
  cursor: pointer; transition: transform 0.25s var(--ease), background 0.25s var(--ease),
    border-color 0.25s var(--ease), color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--brand); color: #fff; box-shadow: 0 12px 30px -12px var(--brand-glow); }
.btn-primary:hover { background: var(--brand-dark); color: #fff; }
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { background: var(--ink-soft); }
.btn-ghost { background: transparent; border-color: rgba(15, 23, 42, 0.14); color: var(--ink); }
.btn-ghost:hover { border-color: var(--ink); background: rgba(15, 23, 42, 0.03); }
.btn-light { background: #fff; color: var(--ink); }
.cta-row { display: flex; flex-wrap: wrap; gap: 0.75rem; align-items: center; }

.site-header {
  position: sticky; top: 0; z-index: 50; height: var(--header-h);
  backdrop-filter: none; -webkit-backdrop-filter: none;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition:
    background 0.25s var(--ease),
    border-color 0.25s var(--ease),
    box-shadow 0.25s var(--ease),
    backdrop-filter 0.25s var(--ease),
    transform 0.28s var(--ease);
  will-change: transform;
}
.site-header.is-scrolled {
  background: rgba(246, 244, 245, 0.28);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-bottom-color: rgba(232, 232, 232, 0.45);
  box-shadow: none;
}
.site-header.is-hidden {
  transform: translateY(-100%);
  pointer-events: none;
}
@media (prefers-reduced-motion: reduce) {
  .site-header { transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease; }
  .site-header.is-hidden { transform: none; pointer-events: auto; }
}
.header-inner {
  height: var(--header-h); display: flex; align-items: center;
  justify-content: space-between; gap: 1.5rem;
  overflow: visible;
}
.brand {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  overflow: visible;
  line-height: 0;
  max-height: none;
  height: auto;
}
.site-header .brand img {
  display: block;
  height: auto;
  width: auto;
  max-height: 56px;
  max-width: min(280px, 42vw);
  object-fit: contain;
  object-position: left center;
  padding: 0;
  margin: 0;
  overflow: visible;
}
.nav { display: flex; align-items: center; gap: 0.35rem 1.35rem; }
.nav a {
  position: relative;
  font-size: 0.94rem; font-weight: 600; color: var(--muted);
  padding: 0.35rem 0;
  transition: color 0.2s var(--ease);
}
.nav a:hover { color: var(--ink); }
.nav a.active { color: var(--ink); }
.nav a.active::after {
  content: '';
  position: absolute; left: 0; right: 0; bottom: -0.15rem;
  height: 2px; border-radius: 2px; background: var(--brand);
}
.header-actions { display: flex; align-items: center; gap: 0.65rem; }
.login-link {
  font-weight: 700; font-size: 0.92rem; color: var(--ink);
  padding: 0.55rem 0.85rem; border-radius: 999px; transition: background 0.2s var(--ease);
}
.login-link:hover { background: var(--brand-soft); }
.nav-toggle {
  display: none; width: 44px; height: 44px; border: 1px solid var(--line);
  border-radius: 12px; background: #fff; cursor: pointer; align-items: center;
  justify-content: center; flex-direction: column; gap: 5px;
}
.nav-toggle span { display: block; width: 18px; height: 2px; background: var(--ink); border-radius: 2px; }
.mobile-nav {
  display: none; border-top: 1px solid var(--line);
  background: #fff; padding: 1rem 0 1.35rem;
  box-shadow: 0 18px 40px -28px rgba(10, 10, 10, 0.4);
}
.mobile-nav.open { display: block; }
.mobile-nav-tag {
  margin: 0 1.25rem 0.65rem;
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--brand-deep);
}
.mobile-nav a {
  display: block; padding: 0.75rem 1.25rem; font-weight: 600; color: var(--ink);
  border-left: 3px solid transparent;
}
.mobile-nav a.active {
  color: var(--brand-deep);
  background: var(--brand-soft);
  border-left-color: var(--brand);
}
.mobile-nav .mobile-actions { display: flex; flex-direction: column; gap: 0.6rem; padding: 0.85rem 1.25rem 0; }

.hero {
  position: relative; overflow: hidden; min-height: calc(100vh - var(--header-h));
  display: flex; align-items: stretch;
  background:
    radial-gradient(ellipse 80% 60% at 85% 15%, rgba(240, 152, 48, 0.22), transparent 55%),
    radial-gradient(ellipse 50% 45% at 8% 90%, rgba(160, 120, 144, 0.14), transparent 50%),
    linear-gradient(165deg, #fafafa 0%, #fff7ef 42%, #f6eef2 100%);
}
.hero-grid {
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 3rem; align-items: center;
  width: min(100% - 2.5rem, var(--container)); margin: 0 auto; padding: 4rem 0 3.5rem;
}
.hero-copy h1 { font-size: clamp(2.6rem, 5.5vw, 4.4rem); margin-bottom: 1rem; max-width: 11ch; }
.hero-copy .lead { font-size: 1.15rem; max-width: 34rem; margin-bottom: 1.75rem; }
.hero-visual { position: relative; min-height: 420px; }
.hero-stage {
  position: absolute; inset: 0; border-radius: 28px;
  background: linear-gradient(145deg, rgba(15, 23, 42, 0.92), rgba(30, 41, 59, 0.88));
  box-shadow: var(--shadow); overflow: hidden; padding: 1.4rem;
  animation: floatIn 0.9s var(--ease) both;
}
.hero-stage::before {
  content: ''; position: absolute; inset: auto -20% -30% 20%; height: 70%;
  background: radial-gradient(circle, var(--brand-glow), transparent 65%); pointer-events: none;
}
.ui-chrome { display: flex; gap: 0.35rem; margin-bottom: 1.1rem; }
.ui-chrome i { width: 9px; height: 9px; border-radius: 50%; background: rgba(255,255,255,0.2); }
.ui-chrome i:nth-child(1) { background: #ff5f57; }
.ui-chrome i:nth-child(2) { background: #febc2e; }
.ui-chrome i:nth-child(3) { background: #28c840; }
.ui-panel { position: relative; z-index: 1; color: #e2e8f0; }
.ui-panel h3 { color: #fff; font-size: 1.05rem; margin-bottom: 0.85rem; }
.metric-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.65rem; margin-bottom: 1rem; }
.metric {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px; padding: 0.75rem;
}
.metric strong { display: block; font-family: var(--font-display); font-size: 1.25rem; color: var(--energy); }
.metric span { font-size: 0.72rem; color: rgba(226,232,240,0.7); }
.flow-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.55rem; }
.flow-list li {
  display: flex; align-items: center; gap: 0.7rem; padding: 0.7rem 0.8rem;
  border-radius: 12px; background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.06); font-size: 0.88rem;
  animation: rise 0.7s var(--ease) both;
}
.flow-list li:nth-child(2) { animation-delay: 0.12s; }
.flow-list li:nth-child(3) { animation-delay: 0.24s; }
.flow-list li:nth-child(4) { animation-delay: 0.36s; }
.dot { width: 8px; height: 8px; border-radius: 50%; background: var(--brand); flex-shrink: 0; }

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
.feature-link {
  display: block; padding: 1.5rem; border-radius: var(--radius-lg); background: var(--surface);
  border: 1px solid var(--line); box-shadow: var(--shadow-sm); height: 100%;
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.feature-link:hover {
  transform: translateY(-4px); border-color: rgba(184, 64, 64, 0.45); box-shadow: var(--shadow);
}
.feature-icon {
  width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center;
  background: var(--brand-soft); color: var(--brand-deep); font-weight: 800;
  font-family: var(--font-display); margin-bottom: 1rem;
}
.feature-link h3 { font-size: 1.2rem; margin-bottom: 0.45rem; }
.feature-link p { margin: 0; font-size: 0.95rem; }
.feature-link .more { display: inline-block; margin-top: 1rem; font-weight: 700; color: var(--brand-deep); font-size: 0.9rem; }

.band { background: var(--ink); color: #fff; }
.band p, .band .section-head p { color: rgba(226, 232, 240, 0.78); }
.band h2, .band h3 { color: #fff; }
.soft-band { background: linear-gradient(180deg, var(--surface-2), var(--bg)); }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.checklist { list-style: none; margin: 1.25rem 0 0; padding: 0; display: grid; gap: 0.75rem; }
.checklist li {
  display: flex; gap: 0.7rem; align-items: flex-start; color: var(--ink-soft); font-weight: 500;
}
.checklist li::before {
  content: ''; width: 1.15rem; height: 1.15rem; margin-top: 0.15rem; flex-shrink: 0; border-radius: 50%;
  background: var(--brand) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none'%3E%3Cpath d='M5 10.5l3 3 7-7' stroke='%23ffffff' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/12px no-repeat;
}

.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; align-items: stretch; }
.price-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 1.75rem; display: flex; flex-direction: column; gap: 1rem; position: relative;
}
.price-card.featured {
  border-color: var(--brand); box-shadow: 0 24px 60px -30px var(--brand-glow); transform: translateY(-6px);
}
.price-badge {
  position: absolute; top: 1rem; right: 1rem; background: var(--energy); color: #0a0a0a;
  font-size: 0.72rem; font-weight: 800; letter-spacing: 0.04em; text-transform: uppercase;
  padding: 0.3rem 0.6rem; border-radius: 999px;
}
.price-card h3 { margin: 0; font-size: 1.35rem; }
.price { font-family: var(--font-display); font-size: 2.4rem; letter-spacing: -0.04em; color: var(--ink); }
.price span { font-size: 1rem; font-family: var(--font-body); color: var(--muted); font-weight: 500; }
.price-card ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.55rem; flex: 1; }
.price-card li { font-size: 0.92rem; color: var(--muted); padding-left: 1.2rem; position: relative; }
.price-card li::before { content: '•'; position: absolute; left: 0; color: var(--brand-deep); font-weight: 700; }

.page-hero {
  padding: 4.5rem 0 3rem;
  background:
    radial-gradient(ellipse 60% 80% at 100% 0%, rgba(240, 152, 48, 0.18), transparent 55%),
    radial-gradient(ellipse 40% 50% at 0% 100%, rgba(160, 120, 144, 0.10), transparent 50%),
    linear-gradient(180deg, #fff8f2, var(--bg));
  border-bottom: 1px solid var(--line-soft);
}
.page-hero h1 { font-size: clamp(2.2rem, 4vw, 3.4rem); max-width: 16ch; }
.page-hero .lead { font-size: 1.1rem; max-width: 40rem; }

.form-card {
  position: relative;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 1.75rem; box-shadow: var(--shadow-sm);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field { display: grid; gap: 0.4rem; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: 0.85rem; font-weight: 700; color: var(--ink-soft); }
.field input, .field select, .field textarea {
  width: 100%; border: 1px solid var(--line); border-radius: 12px;
  padding: 0.8rem 0.95rem; background: #fff; color: var(--ink);
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--brand); box-shadow: 0 0 0 4px var(--brand-soft);
}
.form-note { font-size: 0.85rem; color: var(--muted-soft); margin: 0.5rem 0 0; }
.form-success, .form-error {
  display: none; padding: 0.85rem 1rem; border-radius: 12px; font-weight: 600; margin-bottom: 1rem;
}
.form-success { background: var(--brand-soft); color: var(--brand-deep); }
.form-error { background: #fef2f2; color: var(--danger); }

.faq-list { display: grid; gap: 0.75rem; max-width: 48rem; }
.faq-item { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.faq-item summary {
  list-style: none; cursor: pointer; padding: 1.1rem 1.25rem; font-weight: 700;
  font-family: var(--font-display); letter-spacing: -0.02em;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item p { margin: 0; padding: 0 1.25rem 1.2rem; }

/* Compact CTA band + substantial footer */
.footer-cta-band {
  background:
    radial-gradient(ellipse 55% 90% at 12% 0%, rgba(184, 64, 64, 0.38), transparent 58%),
    radial-gradient(ellipse 45% 80% at 92% 100%, rgba(240, 152, 48, 0.24), transparent 52%),
    #161616;
  color: #fff;
  padding: 2.35rem 0 2.15rem;
  margin-top: 3.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem 2.5rem;
  flex-wrap: wrap;
}
.footer-cta-copy { flex: 1 1 22rem; max-width: 38rem; }
.footer-cta-eyebrow { color: var(--energy); margin-bottom: 0.55rem; }
.footer-cta-inner h2 {
  color: #fff;
  font-size: clamp(1.55rem, 2.8vw, 2.15rem);
  max-width: 20ch;
  margin: 0 0 0.55rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.footer-cta-lead {
  color: rgba(226, 232, 240, 0.78);
  margin: 0;
  max-width: 34rem;
  font-size: 1.02rem;
  line-height: 1.55;
}
.footer-cta-actions {
  flex: 0 0 auto;
  justify-content: flex-end;
  gap: 0.75rem;
}

.site-footer {
  background:
    radial-gradient(ellipse 55% 45% at 0% 0%, rgba(184, 64, 64, 0.28), transparent 55%),
    radial-gradient(ellipse 45% 40% at 100% 8%, rgba(240, 152, 48, 0.14), transparent 50%),
    radial-gradient(ellipse 40% 30% at 50% 100%, rgba(160, 120, 144, 0.12), transparent 55%),
    #121212;
  color: rgba(226, 232, 240, 0.8);
  padding: clamp(4.5rem, 8vw, 6.5rem) 0 clamp(2.75rem, 4vw, 3.5rem);
  margin-top: 0;
}
.footer-top {
  display: grid;
  grid-template-columns: minmax(17rem, 1.35fr) minmax(0, 2fr);
  gap: clamp(2.75rem, 5vw, 4.5rem);
  margin-bottom: clamp(3rem, 5vw, 4.25rem);
  align-items: start;
}
.footer-brand { max-width: 28rem; overflow: visible; }
.footer-logo {
  display: inline-flex;
  align-items: center;
  margin-bottom: 1.35rem;
  overflow: visible;
  line-height: 0;
  height: auto;
  max-height: none;
}
.footer-logo img,
.site-footer .footer-logo img {
  filter: none;
  opacity: 1;
  display: block;
  width: min(100%, 320px);
  height: auto;
  max-height: none;
  max-width: min(100%, 320px);
  object-fit: contain;
  object-position: left center;
  padding: 0;
  margin: 0;
}
.footer-tag {
  margin: 0 0 1.15rem;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--energy);
}
.footer-signature {
  --signature-gap: 1.75rem;
  margin: 0 0 1.5rem;
  max-width: 28rem;
  overflow: hidden;
}
.footer-signature-track {
  display: flex;
  width: max-content;
  gap: var(--signature-gap);
  animation: footerSignatureMarquee 32s linear infinite;
  will-change: transform;
}
.footer-signature:hover .footer-signature-track,
.footer-signature:focus-within .footer-signature-track {
  animation-play-state: paused;
}
.footer-signature-group {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: var(--signature-gap);
  flex-shrink: 0;
}
.footer-signature-group li {
  display: inline-flex;
  align-items: baseline;
  gap: 0.4rem;
  flex-shrink: 0;
  white-space: nowrap;
}
.footer-signature-mark {
  display: inline;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--energy);
  background: none;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  width: auto;
  height: auto;
}
.footer-signature strong {
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.2;
  color: rgba(255, 248, 243, 0.88);
}
@keyframes footerSignatureMarquee {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-50% - var(--signature-gap) / 2)); }
}
@media (prefers-reduced-motion: reduce) {
  .footer-signature-track {
    animation: none;
    transform: none;
    width: 100%;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 1rem;
    -webkit-overflow-scrolling: touch;
  }
  .footer-signature-group[aria-hidden="true"] { display: none; }
  .footer-signature-group {
    gap: 1rem;
  }
}
.footer-blurb {
  margin: 0 0 1.75rem;
  max-width: 28rem;
  color: rgba(226, 232, 240, 0.72);
  font-size: 1.05rem;
  line-height: 1.65;
}
.footer-cta-mini {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.footer-btn-ghost {
  color: #fff !important;
  border-color: rgba(255,255,255,0.28) !important;
  background: transparent !important;
}
.footer-btn-ghost:hover {
  border-color: var(--energy) !important;
  color: var(--energy) !important;
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 2rem 1.75rem;
}
.footer-col h4,
.site-footer h4 {
  color: #fff;
  font-size: 1.12rem;
  margin: 0 0 1.35rem;
  letter-spacing: -0.01em;
  font-weight: 700;
}
.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.85rem;
}
.footer-col-legal ul {
  gap: 0.65rem;
}
.footer-col-legal a {
  font-size: 0.95rem;
  font-weight: 600;
}

.footer-trust-bar {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.15rem 1.35rem;
  padding: 1.75rem 0 2rem;
  margin-bottom: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-trust-item {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  padding: 0.35rem 0;
}
.footer-trust-icon {
  flex: 0 0 2.5rem;
  box-sizing: border-box;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
  color: var(--energy);
  background: rgba(240, 152, 48, 0.12);
  border: 1px solid rgba(240, 152, 48, 0.22);
}
.footer-trust-icon svg {
  display: block;
  width: 1.375rem;
  height: 1.375rem;
  flex-shrink: 0;
}
.footer-trust-item strong {
  display: block;
  color: #fff;
  font-size: 0.98rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
  letter-spacing: -0.01em;
}
.footer-trust-item > div span {
  display: block;
  font-size: 0.88rem;
  line-height: 1.45;
  color: rgba(226, 232, 240, 0.62);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.25rem 2rem;
  flex-wrap: wrap;
  padding-top: 0.35rem;
  font-size: 0.98rem;
  color: rgba(226, 232, 240, 0.55);
}
.footer-bottom-legal {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem 1.35rem;
}
.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1.15rem;
}
.footer-legal-links a {
  color: rgba(255,255,255,0.88);
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: underline;
  text-underline-offset: 0.2em;
  text-decoration-color: rgba(240, 152, 48, 0.45);
}
.footer-legal-links a:hover { color: var(--energy); }
.footer-bottom-tagline {
  margin: 0;
  color: rgba(226, 232, 240, 0.7);
  font-weight: 600;
  font-size: 0.98rem;
}

@media (max-width: 1100px) {
  .footer-nav { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 2.25rem 2rem; }
  .footer-trust-bar { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 960px) {
  .footer-top { grid-template-columns: 1fr; gap: 3rem; }
  .footer-cta-inner { flex-direction: column; align-items: flex-start; }
  .footer-cta-actions { justify-content: flex-start; width: 100%; }
}
@media (max-width: 640px) {
  .footer-nav { grid-template-columns: 1fr; gap: 2rem; }
  .footer-trust-bar { grid-template-columns: 1fr; gap: 1.25rem; padding: 1.5rem 0 1.75rem; }
  .footer-cta-band { padding: 2rem 0 1.85rem; }
  .site-footer { padding: 3.75rem 0 6.5rem; }
}

.final-cta { text-align: center; padding: 2.5rem 0; }
.final-cta h2 { font-size: clamp(1.9rem, 3.5vw, 2.8rem); max-width: 16ch; margin-inline: auto; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.visible { opacity: 1; transform: none; }
.contact-layout {
  align-items: start;
}
.contact-layout .form-card {
  max-width: none;
}
@media (max-width: 960px) {
  .contact-layout {
    grid-template-columns: 1fr;
  }
}

.prose { max-width: 44rem; }
.prose h2 { font-size: 1.55rem; margin-top: 2rem; }
.prose ul { color: var(--muted); padding-left: 1.2rem; }
.legal { font-size: 0.95rem; }
.legal h2 { margin-top: 2rem; }
.steps { display: grid; gap: 1.25rem; counter-reset: step; }
.step {
  display: grid; grid-template-columns: auto 1fr; gap: 1rem; padding: 1.25rem;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
}
.step-num {
  width: 42px; height: 42px; border-radius: 12px; background: var(--brand-soft);
  color: var(--brand-deep); display: grid; place-items: center; font-family: var(--font-display);
  font-weight: 800;
}

@keyframes floatIn {
  from { opacity: 0; transform: translateY(24px) scale(0.98); }
  to { opacity: 1; transform: none; }
}
@keyframes rise {
  from { opacity: 0; transform: translateX(12px); }
  to { opacity: 1; transform: none; }
}

@media (max-width: 960px) {
  .nav, .header-actions .btn, .header-actions .login-link { display: none; }
  .nav-toggle { display: inline-flex; }
  .hero-grid, .split, .grid-3, .grid-2, .price-grid, .form-grid { grid-template-columns: 1fr; }
  .price-card.featured { transform: none; }
  .hero { min-height: auto; }
  .hero-copy h1 { max-width: none; }
  .hero-visual { min-height: 360px; }
  .hero-stage { position: relative; inset: auto; }
}
@media (max-width: 640px) {
  .container { width: min(100% - 1.5rem, var(--container)); }
  .section { padding: 3.75rem 0; }
  .metric-row { grid-template-columns: 1fr; }
}

/* —— Depth panels for feature / use-case pages —— */
.mock-panel {
  background: linear-gradient(160deg, #0f172a 0%, #1e293b 100%);
  color: #e2e8f0;
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.mock-panel::after {
  content: '';
  position: absolute;
  width: 220px;
  height: 220px;
  right: -60px;
  bottom: -80px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(240, 152, 48, 0.35), transparent 70%);
  pointer-events: none;
}
.mock-panel h3 { color: #fff; font-size: 1.1rem; margin-bottom: 1rem; }
.mock-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 0.9rem;
  border-radius: 12px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.07);
  margin-bottom: 0.55rem;
  font-size: 0.9rem;
  position: relative;
  z-index: 1;
}
.mock-row strong { color: var(--brand); font-family: var(--font-display); }
.mock-tag {
  display: inline-flex;
  align-items: center;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  background: rgba(240, 152, 48, 0.18);
  color: var(--energy);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem;
}
.benefit {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.35rem;
}
.benefit h3 { font-size: 1.05rem; margin-bottom: 0.4rem; }
.benefit p { margin: 0; font-size: 0.92rem; }

.workflow {
  display: grid;
  gap: 0;
  counter-reset: wf;
}
.workflow-item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 1rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--line);
}
.workflow-item:last-child { border-bottom: 0; }
.workflow-item .n {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--brand-soft);
  color: var(--brand-deep);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 800;
}
.workflow-item h3 { margin-bottom: 0.35rem; font-size: 1.15rem; }
.workflow-item p { margin: 0; }

.practice-list {
  display: grid;
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.practice-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.85rem 1rem;
  align-items: start;
  padding: 1rem 1.1rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.practice-list .tag {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--brand-deep);
  background: var(--brand-soft);
  padding: 0.35rem 0.55rem;
  border-radius: 8px;
  white-space: nowrap;
}
.practice-list strong {
  display: block;
  font-size: 1.02rem;
  margin-bottom: 0.2rem;
  color: var(--ink);
}
.practice-list p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.related-block .section-head { margin-bottom: 1.5rem; }
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
.related-card {
  display: block;
  padding: 1.15rem 1.2rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--surface);
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s var(--ease), transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.related-card:hover {
  border-color: color-mix(in srgb, var(--brand) 35%, var(--line));
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}
.related-card span {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 0.35rem;
}
.related-card strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.05rem;
  margin-bottom: 0.35rem;
}
.related-card p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
}

@media (max-width: 900px) {
  .related-grid { grid-template-columns: 1fr; }
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  align-items: center;
  padding: 1rem 0 0;
  color: var(--muted-soft);
  font-size: 0.88rem;
  font-weight: 600;
}
.trust-strip span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.trust-strip span::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand);
}

.quote-block {
  background: var(--surface-2);
  border-left: 4px solid var(--brand);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0 0;
}
.quote-block p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 1.05rem;
  font-weight: 500;
}
.quote-block cite {
  display: block;
  margin-top: 0.75rem;
  font-style: normal;
  font-size: 0.85rem;
  color: var(--muted-soft);
  font-weight: 600;
}

@media (max-width: 960px) {
  .benefit-grid { grid-template-columns: 1fr; }
}


.dot { background: var(--energy); }
.feature-link .more { color: var(--brand); }
.price-card li::before { color: var(--brand); }
.trust-strip span::before { background: var(--energy); }
.form-success { background: var(--energy-soft); color: #8a5a12; }
.ui-chrome i:nth-child(3) { background: var(--energy); }

/* Brand-first hero */
.hero-brand .hero-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.hero-brand .hero-copy > .eyebrow {
  display: inline-flex;
  margin-bottom: 0.85rem;
}
.hero-brand .hero-copy h1 {
  max-width: 15ch;
  font-size: clamp(2rem, 4vw, 3.15rem);
  font-weight: 700;
}

/* Curved accent underlines (sit under gradient text, not clipped away) */
.accent-underline {
  position: relative;
  display: inline;
  white-space: nowrap;
}
.accent-underline::after {
  content: '';
  position: absolute;
  left: -2%;
  right: -2%;
  bottom: -0.18em;
  height: 0.42em;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 12' fill='none'%3E%3Cpath d='M2 8c18-6 36 4 54-1s36-7 62 1' stroke='%23b84040' stroke-width='3' stroke-linecap='round'/%3E%3C/svg%3E") center bottom / 100% 100% no-repeat;
  pointer-events: none;
  z-index: 0;
  opacity: 0.95;
  transform-origin: left center;
  animation: underlineDraw 0.9s var(--ease) 0.35s both;
}
.accent-underline--energy::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 12' fill='none'%3E%3Cpath d='M1 9c22-7 40 3 58-2s34-6 60 2' stroke='%23f09830' stroke-width='3' stroke-linecap='round'/%3E%3C/svg%3E");
}
@keyframes underlineDraw {
  from { transform: scaleX(0.25); opacity: 0; }
  to { transform: scaleX(1); opacity: 0.95; }
}
@media (prefers-reduced-motion: reduce) {
  .accent-underline::after { animation: none; }
}

/* Personal WhatsApp USP note (timeline shares .story-timeline) */
.wa-usp-note {
  text-align: center;
  margin: 2.5rem auto 0;
  max-width: 40rem;
  font-size: 0.95rem;
  color: var(--muted);
}

/* Hero carousel — controls sit under the device, never over the UI */
.hero-carousel {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.15rem;
}
.hero-carousel-track {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: #0c0c0c;
  min-height: 0;
}
.hero-carousel-slide {
  margin: 0;
  display: none;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero-carousel-slide.is-active { display: block; }
.hero-carousel-slide picture {
  width: 100%;
  height: 100%;
  display: block;
}
.hero-carousel-slide .product-shot {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center 0%;
  background: #0c0c0c;
  will-change: object-position;
}
/* Tall full-page shots pan top → bottom inside the fixed 16:10 screen */
.hero-carousel-slide.is-active .product-shot {
  animation: productShotScroll 10s ease-in-out infinite;
}
.device-screen:hover .product-shot,
.hero-carousel:hover .product-shot {
  animation-play-state: paused;
}
@keyframes productShotScroll {
  0%, 6% { object-position: center 0%; }
  46%, 54% { object-position: center 100%; }
  94%, 100% { object-position: center 0%; }
}
.hero-carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  flex-shrink: 0;
  padding: 0;
  margin: 0;
  background: transparent;
  border: 0;
}
.hero-carousel-btn {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  border: 1px solid rgba(10, 10, 10, 0.08);
  background: rgba(255, 255, 255, 0.65);
  color: var(--muted);
  display: grid;
  place-items: center;
  cursor: pointer;
  flex-shrink: 0;
  box-shadow: 0 3px 10px -6px rgba(10, 10, 10, 0.28);
  transition: background 0.2s var(--ease), border-color 0.2s var(--ease), color 0.2s var(--ease), transform 0.2s var(--ease);
}
.hero-carousel-btn:hover {
  background: #fff;
  border-color: rgba(184, 64, 64, 0.32);
  color: var(--brand);
}
.hero-carousel-btn:active { transform: scale(0.96); }
.hero-carousel-dots {
  display: flex;
  gap: 0.34rem;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: 0 0.1rem;
}
.hero-carousel-dots button {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  border: 0;
  background: rgba(10, 10, 10, 0.16);
  cursor: pointer;
  padding: 0;
  transition: width 0.25s var(--ease), background 0.2s var(--ease);
}
.hero-carousel-dots button[aria-selected="true"] {
  background: var(--brand);
  width: 16px;
}
.hero-carousel-dots button:hover {
  background: rgba(184, 64, 64, 0.42);
}

.quote-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.blog-card {
  display: block;
  padding: 1.35rem 1.25rem 1.5rem;
  border-top: 3px solid var(--brand);
  background: #fff;
  transition: transform 0.25s var(--ease);
}
.blog-card:hover { transform: translateY(-2px); }
.blog-meta {
  display: block;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--energy);
  margin-bottom: 0.55rem;
}
.blog-card strong {
  display: block;
  font-size: 1.15rem;
  color: var(--ink);
  margin-bottom: 0.45rem;
  letter-spacing: -0.02em;
}
.blog-card p { margin: 0; font-size: 0.95rem; }
.blog-list { display: grid; gap: 2.5rem; max-width: 42rem; }
.blog-article h2 { margin-bottom: 0.75rem; }

.back-to-top {
  position: fixed;
  right: 1.15rem;
  bottom: 1.15rem;
  z-index: 65;
  width: 48px; height: 48px;
  border-radius: 999px;
  border: 0;
  background: var(--brand);
  color: #fff;
  display: grid; place-items: center;
  box-shadow: 0 12px 28px -14px rgba(184, 64, 64, 0.8);
  cursor: pointer;
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity 0.25s var(--ease), transform 0.25s var(--ease), background 0.2s var(--ease);
}
.back-to-top.is-visible {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}
.back-to-top:hover { background: var(--brand-deep); }
body.has-cookie-banner .back-to-top { bottom: 6.5rem; }
@media (max-width: 960px) {
  body.has-cookie-banner .back-to-top { bottom: 7.5rem; }
  .back-to-top { bottom: 5.75rem; }
}
@media (prefers-reduced-motion: reduce) {
  .back-to-top { transition: opacity 0.15s ease; }
}

/* Premium MacBook-style device mockup */
.product-frame {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: transparent;
  border: 0;
  border-radius: 0;
  overflow: visible;
  box-shadow: none;
  animation: floatIn 0.95s var(--ease) 0.08s both;
}
.device-laptop {
  position: relative;
  width: 100%;
  transform-origin: center bottom;
  animation: softFloat 7s ease-in-out 1.15s infinite;
}
.device-lid {
  position: relative;
  z-index: 2;
  background:
    linear-gradient(165deg, #3e3e42 0%, #2c2c30 45%, #222226 100%);
  border-radius: 14px 14px 0 0;
  padding: 6px 6px 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 0;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    0 1px 0 rgba(0, 0, 0, 0.3);
}
.device-bezel {
  position: relative;
  background: #050505;
  border-radius: 8px 8px 2px 2px;
  padding: 6px 5px 4px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.045);
}
.device-camera {
  position: absolute;
  top: 2.5px;
  left: 50%;
  transform: translateX(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 35%, #5a6578 0%, #1a1a1e 55%, #0a0a0a 100%);
  box-shadow:
    0 0 0 1.5px rgba(255, 255, 255, 0.07),
    inset 0 0 2px rgba(80, 140, 220, 0.4);
  z-index: 3;
}
.device-camera::after {
  content: '';
  position: absolute;
  inset: 1.5px;
  border-radius: 50%;
  background: rgba(100, 150, 210, 0.4);
}
.device-screen {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  aspect-ratio: 16 / 10;
  width: 100%;
  background: #0c0c0c;
  isolation: isolate;
}
.device-chin {
  height: 9px;
  background:
    linear-gradient(180deg, #2e2e32 0%, #242428 55%, #1b1b1e 100%);
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  z-index: 2;
}
.device-chin::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 48%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 3.5px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.38);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.07);
}
.device-base {
  position: relative;
  z-index: 1;
  height: 8px;
  margin: 0 -2.6%;
  width: 105.2%;
  background:
    linear-gradient(180deg, #e4e4e8 0%, #c5c5cb 42%, #a8a8ae 100%);
  border-radius: 0 0 14px 14px / 0 0 10px 10px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.65),
    inset 0 -1px 0 rgba(0, 0, 0, 0.1),
    0 1px 0 rgba(0, 0, 0, 0.06);
}
.device-base::before,
.device-base::after {
  content: '';
  position: absolute;
  top: 0;
  width: 10px;
  height: 100%;
  pointer-events: none;
}
.device-base::before {
  left: 0;
  background: linear-gradient(90deg, rgba(0,0,0,0.12), transparent);
  border-radius: 0 0 0 16px;
}
.device-base::after {
  right: 0;
  background: linear-gradient(270deg, rgba(0,0,0,0.12), transparent);
  border-radius: 0 0 16px 0;
}
.device-notch {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(20%, 100px);
  height: 4.5px;
  background: linear-gradient(180deg, #9a9aa0 0%, #78787e 100%);
  border-radius: 0 0 5px 5px;
  box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.18);
}
.device-shadow {
  position: absolute;
  left: 8%;
  right: 8%;
  bottom: -20px;
  height: 32px;
  background: radial-gradient(ellipse at center, rgba(10, 10, 10, 0.26) 0%, transparent 70%);
  filter: blur(8px);
  pointer-events: none;
  z-index: 0;
}
.product-shot {
  width: 100%;
  height: 100%;
  max-height: none;
  display: block;
  object-fit: cover;
  object-position: center 0%;
  background: #0c0c0c;
}
.hero-brand .hero-visual {
  min-height: auto;
}
.hero-brand .hero-stage { display: none; }

.shot-embed {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  background: #fff;
}
.shot-embed img {
  width: 100%;
  height: auto;
  display: block;
}

/* Signature strip — locked promise, directly under hero */
.signature-strip {
  position: relative;
  padding: clamp(2.25rem, 4.5vw, 3.25rem) 0;
  overflow: hidden;
  border-block: 1px solid rgba(184, 64, 64, 0.12);
  background:
    radial-gradient(ellipse 70% 120% at 0% 50%, rgba(184, 64, 64, 0.14), transparent 55%),
    radial-gradient(ellipse 55% 100% at 100% 40%, rgba(240, 152, 48, 0.16), transparent 50%),
    radial-gradient(ellipse 40% 80% at 55% 100%, rgba(160, 120, 144, 0.12), transparent 45%),
    linear-gradient(180deg, #fff8f3 0%, #f7f0f4 100%);
}
.signature-strip::before {
  content: '';
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: linear-gradient(180deg, var(--brand), var(--energy), var(--lavender));
}
.signature-line {
  margin: 0 auto 1.35rem;
  max-width: 46rem;
  text-align: center;
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.2vw, 1.45rem);
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.signature-points {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.55rem 1rem;
  position: relative;
}
.signature-points::before {
  content: '';
  position: absolute;
  top: 1.35rem;
  left: 8%;
  right: 8%;
  height: 2px;
  background: linear-gradient(90deg, var(--brand), var(--energy), var(--lavender), var(--brand-deep));
  opacity: 0.35;
  pointer-events: none;
}
.signature-point {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.55rem;
  padding: 0.25rem 0.4rem 0;
}
.signature-mark {
  display: grid;
  place-items: center;
  width: 2.7rem;
  height: 2.7rem;
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: #fff;
  background: var(--brand);
  box-shadow: 0 0 0 6px rgba(255, 248, 243, 0.95), 0 10px 22px -12px var(--brand-glow);
}
.signature-point:nth-child(2) .signature-mark { background: var(--energy); color: #0a0a0a; box-shadow: 0 0 0 6px rgba(255, 248, 243, 0.95), 0 10px 22px -12px rgba(240, 152, 48, 0.4); }
.signature-point:nth-child(3) .signature-mark { background: var(--lavender); box-shadow: 0 0 0 6px rgba(255, 248, 243, 0.95), 0 10px 22px -12px rgba(160, 120, 144, 0.4); }
.signature-point:nth-child(4) .signature-mark { background: var(--brand-deep); box-shadow: 0 0 0 6px rgba(255, 248, 243, 0.95), 0 10px 22px -12px var(--brand-glow); }
.signature-point strong {
  font-family: var(--font-display);
  font-size: clamp(0.92rem, 1.35vw, 1.05rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.3;
  color: var(--ink);
  max-width: 16ch;
}
.signature-point.reveal:nth-child(2) { transition-delay: 0.08s; }
.signature-point.reveal:nth-child(3) { transition-delay: 0.16s; }
.signature-point.reveal:nth-child(4) { transition-delay: 0.24s; }

@media (max-width: 960px) {
  .quote-grid, .blog-grid { grid-template-columns: 1fr; }
  .signature-points {
    grid-template-columns: 1fr 1fr;
    gap: 1.1rem 1rem;
  }
  .signature-points::before { display: none; }
  .signature-point strong { max-width: 18ch; }
}

@media (max-width: 560px) {
  .signature-points { grid-template-columns: 1fr; gap: 0.85rem; }
  .signature-point {
    flex-direction: row;
    text-align: left;
    align-items: center;
    gap: 0.85rem;
    padding: 0.65rem 0.85rem;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.55);
    border: 1px solid rgba(184, 64, 64, 0.1);
  }
  .signature-point strong { max-width: none; flex: 1; }
  .signature-point.reveal { transition-delay: 0s; }
}

/* Product gallery */
.product-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.gallery-card {
  display: block;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.gallery-card:hover {
  transform: translateY(-4px);
  border-color: rgba(184, 64, 64, 0.35);
  box-shadow: var(--shadow);
}
.gallery-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: top left;
  background: #f3f3f3;
}
.gallery-card span {
  display: block;
  padding: 0.85rem 1rem;
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--ink);
}

/* Mobile nav: keep closed unless .open; hide from layout when closed */
.mobile-nav:not(.open) {
  display: none !important;
}
body.nav-open {
  overflow: hidden;
}
.mobile-nav nav {
  display: contents;
}

@media (max-width: 960px) {
  .product-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero-brand .hero-grid {
    gap: 1.5rem;
    padding: 40px 0;
  }
  .device-lid {
    padding: 5px 5px 0;
    border-radius: 12px 12px 0 0;
  }
  .device-bezel {
    padding: 5px 4px 3px;
  }
  .device-chin { height: 8px; }
  .device-base {
    height: 7px;
    border-radius: 0 0 12px 12px / 0 0 10px 10px;
  }
  .device-shadow { bottom: -14px; height: 22px; }
}

@media (max-width: 640px) {
  .product-gallery {
    grid-template-columns: 1fr;
  }
  .hero-brand .product-frame {
    max-width: min(100%, 400px, calc((min(40vh, 280px) - 24px) * 1.6));
  }
  .device-lid {
    padding: 4px 4px 0;
    border-radius: 10px 10px 0 0;
  }
  .device-bezel {
    padding: 5px 4px 3px;
    border-radius: 6px 6px 2px 2px;
  }
  .device-camera {
    width: 4.5px;
    height: 4.5px;
    top: 1.5px;
  }
  .device-chin { height: 9px; }
  .device-chin::after { width: 34px; height: 2.5px; }
  .device-base {
    height: 7px;
    margin: 0 -3%;
    width: 106%;
    border-radius: 0 0 10px 10px / 0 0 8px 8px;
  }
  .device-notch {
    height: 3.5px;
    width: min(22%, 80px);
  }
  .hero-carousel { gap: 0.85rem; }
  .hero-carousel-btn { width: 26px; height: 26px; }
  .hero-carousel-btn svg { width: 14px; height: 14px; }
}

/* Sticky mobile conversion bar */
.mobile-cta {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  gap: 0.65rem;
  padding: 0.75rem 1rem calc(0.75rem + env(safe-area-inset-bottom));
  background: rgba(250, 250, 250, 0.94);
  backdrop-filter: blur(14px);
  border-top: 1px solid var(--line);
  box-shadow: 0 -12px 30px -20px rgba(0,0,0,0.35);
}
.mobile-cta .btn {
  flex: 1;
  min-height: 44px;
}

@media (max-width: 960px) {
  .mobile-cta {
    display: flex;
  }
  body {
    padding-bottom: 5.5rem;
  }
  .site-footer {
    margin-bottom: 0;
  }
}

button.btn-primary:disabled {
  opacity: 0.7;
  cursor: wait;
  transform: none;
}

/* Cookie notice */
.cookie-consent {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 70;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem 1rem;
  max-width: 520px;
  margin-inline: auto;
  padding: 1rem 1.15rem;
  background: var(--ink);
  color: #f5f5f5;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.cookie-consent[hidden] {
  display: none !important;
}
.cookie-consent p {
  margin: 0;
  flex: 1 1 220px;
  font-size: 0.9rem;
  line-height: 1.45;
  color: #e8e8e8;
}
.cookie-consent a {
  color: var(--energy);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.cookie-consent .btn {
  flex: 0 0 auto;
  min-height: 40px;
  padding-inline: 1.1rem;
}

@media (max-width: 960px) {
  .cookie-consent {
    bottom: calc(4.75rem + env(safe-area-inset-bottom));
  }
}

/* Accessibility */
.skip-link {
  position: absolute;
  left: 1rem;
  top: -3rem;
  z-index: 100;
  background: var(--brand);
  color: #fff;
  padding: 0.65rem 1rem;
  border-radius: 999px;
  font-weight: 700;
  transition: top 0.2s var(--ease);
}
.skip-link:focus {
  top: 1rem;
  outline: 3px solid var(--energy);
  outline-offset: 2px;
}

:focus-visible {
  outline: 3px solid var(--brand);
  outline-offset: 3px;
}
.btn:focus-visible,
.login-link:focus-visible,
.nav a:focus-visible {
  outline: 3px solid var(--brand);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}

.price-tag {
  margin: -0.35rem 0 0.35rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--muted-soft);
}

.compare-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.compare-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 640px;
  font-size: 0.95rem;
}
.compare-table th,
.compare-table td {
  padding: 0.95rem 1.1rem;
  text-align: left;
  border-bottom: 1px solid var(--line-soft);
  vertical-align: top;
}
.compare-table thead th {
  background: #0a0a0a;
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.02em;
}
.compare-table thead th:first-child {
  border-radius: var(--radius-lg) 0 0 0;
}
.compare-table thead th:last-child {
  border-radius: 0 var(--radius-lg) 0 0;
}
.compare-table tbody th {
  font-weight: 700;
  color: var(--ink);
  background: var(--surface-2);
  width: 28%;
}
.compare-table tbody tr:last-child th,
.compare-table tbody tr:last-child td {
  border-bottom: 0;
}
.compare-table td {
  color: var(--muted);
}
.compare-table tbody tr:hover td,
.compare-table tbody tr:hover th {
  background: var(--energy-soft);
}

/* Follow-up USP homepage — size to content; avoid empty bands under header / before next section */
.hero.hero-brand {
  min-height: 0;
  align-items: flex-start;
}
.hero-brand .hero-grid {
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.18fr);
  align-items: center;
  width: min(100% - 2rem, 1240px);
  /* Breathing room under sticky --header-h; avoid min-height empty bands */
  padding: 60px 0;
  gap: clamp(1.1rem, 2.2vw, 2rem);
}
.hero-brand .hero-copy h1 {
  max-width: 14ch;
  font-size: clamp(1.95rem, 3.6vw, 3rem);
}
.hero-brand .lead {
  font-size: 1.05rem;
  max-width: 32rem;
  color: var(--muted);
  margin-bottom: 1.35rem;
}
.hero-brand .hero-visual {
  min-height: auto;
  width: 100%;
}
.hero-brand .product-frame {
  width: 100%;
  /* Cap width so 16:10 screen + lid/chin/base fits without forcing tall hero */
  max-width: min(100%, 560px, calc((min(42vh, 340px) - 28px) * 1.6));
  margin-inline: auto;
  border-radius: 0;
}
.hero-brand .hero-carousel {
  gap: 0.85rem;
}
.hero-brand .product-shot {
  min-height: 0;
  max-height: none;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}
@media (min-width: 1100px) {
  .hero-brand .device-laptop {
    filter: drop-shadow(0 28px 40px rgba(10, 10, 10, 0.14));
  }
  .hero-brand .device-shadow { opacity: 0.55; }
}
.hero-brand {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 70% 60% at 10% 0%, rgba(184, 64, 64, 0.12), transparent 55%),
    radial-gradient(ellipse 50% 50% at 100% 20%, rgba(240, 152, 48, 0.14), transparent 50%),
    linear-gradient(180deg, #fff 0%, var(--bg) 100%);
}
.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}
.problem-card {
  padding: 1.5rem 1.4rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
.problem-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.45rem;
}
.problem-card p { margin: 0; font-size: 0.98rem; }

.engine-track {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
  counter-reset: eng;
}
.engine-step {
  position: relative;
  padding: 1.15rem 1.05rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  min-height: 100%;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.engine-step::before {
  counter-increment: eng;
  content: counter(eng);
  display: inline-grid;
  place-items: center;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 8px;
  background: var(--brand-soft);
  color: var(--brand-deep);
  font-weight: 700;
  font-size: 0.85rem;
  margin: 0 0 0.55rem;
}
.engine-step h3 {
  font-size: 1.05rem;
  margin: 0 0 0.35rem;
}
.engine-step p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
}
a.engine-step {
  display: block;
  transition: border-color 0.2s var(--ease), transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
  color: inherit;
  text-decoration: none;
}
a.engine-step:hover {
  border-color: color-mix(in srgb, var(--brand) 35%, var(--line));
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

/* Shared homepage story timelines (WA USP + How it works) */
.story-timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: clamp(2.75rem, 5.5vw, 4.5rem);
  position: relative;
  max-width: 68rem;
  margin-inline: auto;
}
.story-timeline::before {
  content: '';
  position: absolute;
  top: 1.35rem;
  bottom: 1.35rem;
  left: 50%;
  width: 2px;
  transform: translateX(-50%);
  background: linear-gradient(
    180deg,
    var(--brand),
    var(--energy),
    var(--lavender),
    var(--brand-deep)
  );
  opacity: 0.35;
  pointer-events: none;
}
.story-timeline-item {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) 3.25rem minmax(0, 0.9fr);
  gap: clamp(1rem, 2.5vw, 2rem);
  align-items: center;
  position: relative;
  z-index: 1;
}
.story-timeline-item:nth-child(even) {
  grid-template-columns: minmax(0, 0.9fr) 3.25rem minmax(0, 1.2fr);
}
.story-timeline-item:nth-child(even) .story-timeline-visual { order: 3; }
.story-timeline-item:nth-child(even) .story-timeline-marker { order: 2; }
.story-timeline-item:nth-child(even) .story-timeline-copy {
  order: 1;
  text-align: right;
  justify-self: end;
}
.story-timeline-marker {
  display: grid;
  place-items: center;
  justify-self: center;
  align-self: center;
}
.story-timeline-marker span {
  display: grid;
  place-items: center;
  width: 3.1rem;
  height: 3.1rem;
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: #fff;
  background: var(--brand);
  box-shadow:
    0 0 0 6px color-mix(in srgb, var(--surface-2) 92%, #fff),
    0 10px 22px -12px var(--brand-glow);
}
.story-timeline-item:nth-child(2) .story-timeline-marker span {
  background: var(--energy);
  color: #0a0a0a;
  box-shadow:
    0 0 0 6px color-mix(in srgb, var(--surface-2) 92%, #fff),
    0 10px 22px -12px rgba(240, 152, 48, 0.4);
}
.story-timeline-item:nth-child(3) .story-timeline-marker span {
  background: var(--lavender);
  box-shadow:
    0 0 0 6px color-mix(in srgb, var(--surface-2) 92%, #fff),
    0 10px 22px -12px rgba(160, 120, 144, 0.4);
}
.story-timeline-item:nth-child(4) .story-timeline-marker span {
  background: var(--brand-deep);
}
.story-timeline-item:nth-child(5) .story-timeline-marker span {
  background: var(--brand);
}
.story-timeline-visual {
  width: 100%;
  max-width: 36rem;
  background:
    radial-gradient(ellipse 70% 80% at 30% 20%, rgba(184, 64, 64, 0.08), transparent 55%),
    radial-gradient(ellipse 60% 70% at 80% 80%, rgba(240, 152, 48, 0.1), transparent 50%),
    #faf6f2;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3 / 2;
}
.story-timeline-item:nth-child(odd) .story-timeline-visual {
  justify-self: end;
}
.story-timeline-item:nth-child(even) .story-timeline-visual {
  justify-self: start;
}
.story-timeline-visual img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  transition: transform 0.55s var(--ease);
}
.story-timeline-item:hover .story-timeline-visual img {
  transform: scale(1.02);
}
.story-timeline-copy {
  max-width: 22rem;
}
.story-timeline-copy h3 {
  font-size: clamp(1.35rem, 2.2vw, 1.75rem);
  margin: 0 0 0.55rem;
  letter-spacing: -0.02em;
}
.story-timeline-copy p {
  margin: 0;
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.55;
}
@media (max-width: 860px) {
  .story-timeline {
    gap: 2.5rem;
    padding-left: 0.25rem;
  }
  .story-timeline::before {
    left: 1.55rem;
    transform: none;
  }
  .story-timeline-item,
  .story-timeline-item:nth-child(even) {
    grid-template-columns: 3.1rem minmax(0, 1fr);
    grid-template-rows: auto auto;
    column-gap: 1rem;
    row-gap: 0.85rem;
  }
  .story-timeline-item .story-timeline-marker,
  .story-timeline-item:nth-child(even) .story-timeline-marker {
    order: 1;
    grid-row: 1;
    grid-column: 1;
    align-self: start;
    justify-self: center;
  }
  .story-timeline-item .story-timeline-copy,
  .story-timeline-item:nth-child(even) .story-timeline-copy {
    order: 2;
    grid-row: 1;
    grid-column: 2;
    text-align: left;
    justify-self: start;
    max-width: none;
    align-self: center;
  }
  .story-timeline-item .story-timeline-visual,
  .story-timeline-item:nth-child(even) .story-timeline-visual {
    order: 3;
    grid-row: 2;
    grid-column: 1 / -1;
    justify-self: stretch;
    max-width: none;
  }
  .story-timeline-marker span {
    width: 2.75rem;
    height: 2.75rem;
    font-size: 0.75rem;
  }
}

.outcome-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
.outcome-item {
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, var(--brand-soft), #fff 55%);
  border: 1px solid color-mix(in srgb, var(--brand) 18%, var(--line));
}
.outcome-item strong {
  display: block;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--brand-deep);
  margin-bottom: 0.35rem;
}
.outcome-item p { margin: 0; font-size: 0.95rem; }

.audience-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}
.audience-card {
  padding: 1.6rem 1.5rem;
  background: var(--surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
}
.audience-card h3 { font-size: 1.2rem; }

@media (max-width: 960px) {
  .problem-grid,
  .outcome-strip,
  .audience-grid { grid-template-columns: 1fr; }
  .engine-track { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .engine-track { grid-template-columns: 1fr; }
}

@keyframes softFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.engine-track .engine-step.reveal:nth-child(2) { transition-delay: 0.08s; }
.engine-track .engine-step.reveal:nth-child(3) { transition-delay: 0.16s; }
.engine-track .engine-step.reveal:nth-child(4) { transition-delay: 0.24s; }
.engine-track .engine-step.reveal:nth-child(5) { transition-delay: 0.32s; }
.story-timeline-item.reveal:nth-child(2) { transition-delay: 0.08s; }
.story-timeline-item.reveal:nth-child(3) { transition-delay: 0.16s; }
.story-timeline-item.reveal:nth-child(4) { transition-delay: 0.24s; }
.story-timeline-item.reveal:nth-child(5) { transition-delay: 0.32s; }
.problem-grid .problem-card.reveal:nth-child(2) { transition-delay: 0.1s; }
.problem-grid .problem-card.reveal:nth-child(3) { transition-delay: 0.2s; }
.gallery-card img {
  transition: transform 0.5s var(--ease);
}
.gallery-card:hover img {
  transform: scale(1.03);
}
@media (prefers-reduced-motion: reduce) {
  .product-frame,
  .device-laptop {
    animation: none !important;
  }
  .hero-carousel-slide .product-shot,
  .hero-carousel-slide.is-active .product-shot {
    animation: none !important;
    object-position: center 0% !important;
  }
  .gallery-card:hover img,
  .story-timeline-item:hover .story-timeline-visual img {
    transform: none;
  }
  .engine-track .engine-step.reveal,
  .story-timeline-item.reveal,
  .problem-grid .problem-card.reveal,
  .signature-point.reveal {
    transition-delay: 0s !important;
  }
}
