/* =============================================================
   Tabloide.pro — Homepage rebrand (self-contained)
   Register: brand · Strategy: Committed red · Lane: flyer-meta
   ============================================================= */

:root {
  /* Brand palette (OKLCH-derived hex from DESIGN.md) */
  --tp-red:        #e60000;
  --tp-red-deep:   #b80000;
  --tp-red-soft:   #ff2a2a;
  --tp-black:      #111111;
  --tp-ink:        #1a1a1a;
  --tp-ink-soft:   #2a2a2a;
  --tp-white:      #ffffff;
  --tp-cream:      #fafafa;
  --tp-yellow:     #feb800;
  --tp-yellow-soft:#ffd66b;
  --tp-gray-light: #f2f2f2;
  --tp-gray-50:    #f6f6f6;
  --tp-gray-200:   #e4e4e4;
  --tp-gray-400:   #b3b3b3;
  --tp-gray-600:   #555555;
  --tp-gray-700:   #3d3d3d;

  /* Tinted neutrals (chroma toward red, near-zero) */
  --tp-paper:      #fdfbfb;
  --tp-paper-band: #f4f1f1;

  /* Type */
  --tp-font: "Poppins", "Inter", system-ui, -apple-system, sans-serif;

  /* Radii */
  --tp-r-sm: 6px;
  --tp-r-md: 8px;
  --tp-r-lg: 12px;
  --tp-r-pill: 999px;

  /* Shadows */
  --tp-sh-card:  0 1px 2px rgb(17 17 17 / 6%), 0 8px 24px rgb(17 17 17 / 8%);
  --tp-sh-red:   0 12px 28px rgb(230 0 0 / 22%);
  --tp-sh-float: 0 24px 60px rgb(17 17 17 / 14%);

  /* Layout */
  --tp-wrap: 1180px;
  --tp-gut: clamp(20px, 4vw, 48px);

  /* Motion */
  --tp-ease: cubic-bezier(0.22, 1, 0.36, 1); /* ease-out-quart */
  --tp-dur-fast: 140ms;
  --tp-dur:      220ms;
  --tp-dur-slow: 420ms;
}

/* =====================  Reset  ===================== */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--tp-font);
  font-weight: 400;
  font-size: clamp(15px, 1vw + 0.6rem, 17px);
  line-height: 1.55;
  color: var(--tp-ink);
  background: var(--tp-white);
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; height: auto; }
button { font: inherit; cursor: pointer; }
a { color: inherit; text-decoration: none; }
a:focus-visible, button:focus-visible, summary:focus-visible {
  outline: 3px solid var(--tp-yellow);
  outline-offset: 3px;
  border-radius: 4px;
}
ul { padding: 0; margin: 0; list-style: none; }
p { margin: 0; }

/* =====================  Typography  ===================== */
h1, h2, h3, h4 {
  font-family: var(--tp-font);
  font-weight: 700;
  color: var(--tp-black);
  letter-spacing: -0.01em;
  margin: 0;
  line-height: 1.08;
  text-wrap: balance;
}
h1 { font-size: clamp(2.2rem, 5vw + 0.6rem, 4.4rem); line-height: 1.02; letter-spacing: -0.025em; }
h2 { font-size: clamp(1.7rem, 2.6vw + 0.6rem, 2.9rem); }
h3 { font-size: clamp(1.15rem, 0.6vw + 0.9rem, 1.4rem); font-weight: 600; }
.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--tp-red);
  padding: 6px 12px;
  border: 1.5px solid var(--tp-red);
  border-radius: var(--tp-r-pill);
  background: rgb(230 0 0 / 6%);
}
.eyebrow.on-dark { color: var(--tp-yellow); border-color: var(--tp-yellow); background: rgb(254 184 0 / 12%); }
.section-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--tp-red);
  margin-bottom: 12px;
}
.section-label.on-dark { color: var(--tp-yellow); }

/* =====================  Layout  ===================== */
.wrap {
  width: 100%;
  max-width: var(--tp-wrap);
  margin-inline: auto;
  padding-inline: var(--tp-gut);
}
.section { padding-block: clamp(56px, 8vw, 110px); }
.section-head { max-width: 720px; margin-bottom: clamp(32px, 5vw, 56px); }
.section-head p { margin-top: 12px; color: var(--tp-gray-600); font-size: 1.05rem; }

/* =====================  Buttons  ===================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: var(--tp-r-md);
  font-weight: 600;
  font-size: 0.98rem;
  border: 2px solid transparent;
  transition: transform var(--tp-dur) var(--tp-ease),
              box-shadow var(--tp-dur) var(--tp-ease),
              background var(--tp-dur) var(--tp-ease),
              color var(--tp-dur) var(--tp-ease);
  white-space: nowrap;
}
.btn-primary {
  background: var(--tp-red);
  color: var(--tp-white);
  box-shadow: var(--tp-sh-red);
}
.btn-primary:hover { transform: translateY(-1px) scale(1.01); background: var(--tp-red-deep); }
.btn-ghost {
  background: transparent;
  color: var(--tp-black);
  border-color: var(--tp-black);
}
.btn-ghost:hover { background: var(--tp-black); color: var(--tp-white); }
.btn-on-red-primary {
  background: var(--tp-white);
  color: var(--tp-red);
}
.btn-on-red-primary:hover { transform: translateY(-1px) scale(1.01); background: var(--tp-yellow); color: var(--tp-black); }
.btn-on-red-ghost {
  background: transparent;
  color: var(--tp-white);
  border-color: var(--tp-white);
}
.btn-on-red-ghost:hover { background: var(--tp-white); color: var(--tp-red); }
.btn-on-dark-primary {
  background: var(--tp-red);
  color: var(--tp-white);
}
.btn-on-dark-primary:hover { background: var(--tp-yellow); color: var(--tp-black); }

/* =====================  Nav  ===================== */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgb(255 255 255 / 92%);
  backdrop-filter: saturate(160%) blur(8px);
  border-bottom: 1px solid var(--tp-gray-200);
  transition: padding var(--tp-dur) var(--tp-ease), background var(--tp-dur) var(--tp-ease);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-block: 14px;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.12rem;
  color: var(--tp-black);
}
.logo-lockup {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  line-height: 1;
  color: var(--tp-black);
  text-decoration: none;
}
.logo-lockup img {
  width: 36px;
  height: 36px;
  display: block;
}
.logo-lockup .wordmark {
  font-weight: 700;
  font-size: 1.18rem;
  letter-spacing: -0.02em;
  color: var(--tp-black);
}
.logo-lockup .wordmark em {
  font-style: normal;
  color: var(--tp-red);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.2vw, 30px);
  font-size: 0.95rem;
  color: var(--tp-gray-700);
}
.nav-links a:not(.btn) {
  position: relative;
  padding-block: 6px;
  font-weight: 500;
  transition: color var(--tp-dur) var(--tp-ease);
}
.nav-links a:not(.btn):hover { color: var(--tp-red); }
.nav-links a:not(.btn)::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 2px;
  background: var(--tp-red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--tp-dur) var(--tp-ease);
}
.nav-links a:not(.btn):hover::after { transform: scaleX(1); }
.nav .btn { padding: 10px 18px; font-size: 0.92rem; }

.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  padding: 8px;
  color: var(--tp-black);
}
.nav-toggle svg { width: 26px; height: 26px; }

@media (max-width: 860px) {
  .nav-links {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(86vw, 360px);
    background: var(--tp-white);
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding: 80px 28px 28px;
    transform: translateX(100%);
    transition: transform 320ms var(--tp-ease);
    box-shadow: var(--tp-sh-float);
  }
  .nav-links a:not(.btn) { font-size: 1.15rem; padding: 14px 0; width: 100%; border-bottom: 1px solid var(--tp-gray-200); }
  .nav-links .btn { width: 100%; margin-top: 16px; padding: 14px 18px; }
  .nav[data-open="true"] .nav-links { transform: translateX(0); }
  .nav[data-open="true"]::before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgb(17 17 17 / 55%);
    z-index: -1;
  }
  .nav-toggle { display: inline-flex; }
}

/* =====================  Hero  ===================== */
.hero {
  position: relative;
  padding-block: clamp(40px, 6vw, 88px) clamp(64px, 9vw, 120px);
  background: linear-gradient(180deg, var(--tp-white) 0%, var(--tp-paper) 100%);
  overflow: hidden;
}

/* Photo-side variant: copy column on the left; phone column bleeds to viewport right */
.hero--photo-bg {
  padding-block: 0;
  background: linear-gradient(180deg, var(--tp-white) 0%, var(--tp-paper) 100%);
}
.hero-content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
  gap: clamp(28px, 4vw, 64px);
  align-items: center;
  min-height: clamp(460px, 58vh, 640px);
}
.hero-copy {
  max-width: 100%;
  padding-block: clamp(44px, 6vw, 80px);
}
.hero-photo-col {
  position: relative;
  align-self: stretch;
  margin-right: calc((100vw - 100%) / -2);
  overflow: hidden;
}
.hero-photo-col::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 80px;
  background: linear-gradient(90deg, var(--tp-paper), rgb(250 250 250 / 0%));
  z-index: 1;
  pointer-events: none;
}
.hero-photo-img {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: auto;
  max-width: none;
  object-fit: contain;
}

/* Mobile-only generic encarte photo, hidden on desktop */
.hero-mobile-photo { display: none; }

/* Tablet + mobile: single column, photo column hidden so copy doesn't break */
@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 0;
    min-height: 0;
  }
  .hero-photo-col { display: none; }
  .hero-copy {
    padding-block: clamp(28px, 6vw, 48px) clamp(40px, 9vw, 72px);
    text-align: center;
  }
  .hero-mobile-photo {
    display: block;
    max-width: min(320px, 64vw);
    margin: 0 auto clamp(24px, 4vw, 36px);
  }
  .hero-mobile-photo img {
    width: 100%;
    height: auto;
    border-radius: 18px;
    box-shadow: 0 18px 48px rgb(17 17 17 / 14%), 0 4px 12px rgb(17 17 17 / 6%);
  }
  .hero-copy .hero-body,
  .hero-copy .eyebrow { margin-inline: auto; }
  .hero-cta,
  .hero-ticks { justify-content: center; }
}
.hero-headline {
  margin-top: 18px;
  font-size: clamp(2.4rem, 6vw + 0.4rem, 4.8rem);
  line-height: 0.98;
  letter-spacing: -0.03em;
}
.hero-headline .accent { color: var(--tp-red); }
.hero-body {
  margin-top: 22px;
  font-size: clamp(1.02rem, 0.4vw + 0.9rem, 1.18rem);
  color: var(--tp-gray-700);
  max-width: 540px;
  line-height: 1.55;
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
.hero-ticks {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
  margin-top: 22px;
  font-size: 0.93rem;
  color: var(--tp-gray-700);
}
.hero-tick {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.hero-tick svg {
  width: 18px;
  height: 18px;
  color: var(--tp-red);
  flex-shrink: 0;
}

/* =====================  Section: Definition (red+gold mesh)  ===================== */
.definition {
  position: relative;
  padding-block: clamp(64px, 8vw, 110px);
  background: var(--tp-red-deep);
  color: var(--tp-white);
  overflow: hidden;
}
.definition--soft {
  background-image:
    linear-gradient(
      100deg,
      rgb(17 17 17 / 35%) 0%,
      rgb(17 17 17 / 10%) 38%,
      rgb(17 17 17 / 0%) 60%
    ),
    url("../brand/webp/PATTERN-MESH-D-16x9.webp");
  background-size: cover, cover;
  background-position: center, center right;
  background-repeat: no-repeat, no-repeat;
}
.definition .section-label {
  color: var(--tp-yellow);
}
.definition h2 {
  color: var(--tp-white);
  font-size: clamp(1.8rem, 3vw + 0.6rem, 3rem);
  max-width: 920px;
  text-shadow: 0 2px 24px rgb(0 0 0 / 18%);
}
.definition .lead {
  margin-top: 22px;
  font-size: clamp(1.05rem, 0.5vw + 0.9rem, 1.25rem);
  max-width: 820px;
  line-height: 1.5;
  color: rgb(255 255 255 / 92%);
}
.definition .lead strong { color: var(--tp-yellow); font-weight: 700; }
.definition-inner { position: relative; z-index: 1; }

/* =====================  Section: Problem  ===================== */
.problem { background: var(--tp-paper-band); }
.problem .text {
  font-size: clamp(1.05rem, 0.5vw + 0.9rem, 1.22rem);
  color: var(--tp-gray-700);
  max-width: 780px;
  line-height: 1.55;
}
.problem .text strong { color: var(--tp-black); font-weight: 700; }
.problem-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
  gap: clamp(36px, 5vw, 80px);
  align-items: center;
}
.problem-copy .section-head { margin-bottom: clamp(20px, 3vw, 28px); }
.problem-visual {
  position: relative;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.problem-visual img {
  width: min(100%, 320px);
  border-radius: 28px;
  box-shadow: 0 28px 60px rgb(17 17 17 / 18%), 0 4px 12px rgb(17 17 17 / 8%);
  background: var(--tp-white);
  transform: rotate(-2deg);
}
.problem-visual figcaption {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--tp-gray-600);
  letter-spacing: 0.02em;
}
@media (max-width: 820px) {
  .problem-grid { grid-template-columns: 1fr; gap: 36px; }
  .problem-visual img { transform: rotate(-1deg); max-width: 260px; }
}

/* =====================  Section: How it Works  ===================== */
.how { background: var(--tp-white); }
.how-list {
  display: flex;
  flex-direction: column;
  gap: clamp(36px, 6vw, 64px);
}
.how-row {
  display: grid;
  grid-template-columns: clamp(110px, 14vw, 180px) 1fr;
  gap: clamp(20px, 4vw, 48px);
  align-items: start;
}
.how-num {
  font-size: clamp(5rem, 11vw, 9rem);
  font-weight: 800;
  line-height: 0.85;
  color: var(--tp-red);
  letter-spacing: -0.06em;
  font-variant-numeric: lining-nums;
}
.how-content h3 { font-size: clamp(1.3rem, 1.2vw + 0.9rem, 1.7rem); margin-bottom: 10px; }
.how-content p { color: var(--tp-gray-700); max-width: 560px; }
@media (max-width: 640px) {
  .how-row { grid-template-columns: 80px 1fr; gap: 20px; align-items: center; }
  .how-num { font-size: 4.5rem; }
}

/* =====================  Section: Features (asymmetric)  ===================== */
.features { background: var(--tp-gray-light); }
.feature-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}
.feature {
  background: var(--tp-white);
  border-radius: var(--tp-r-lg);
  padding: 28px;
  position: relative;
  border: 1px solid var(--tp-gray-200);
  transition: transform var(--tp-dur) var(--tp-ease), box-shadow var(--tp-dur) var(--tp-ease);
}
.feature:hover { transform: translateY(-2px); box-shadow: var(--tp-sh-card); }
.feature h3 { margin-block: 14px 8px; font-size: 1.15rem; color: var(--tp-black); }
.feature p { color: var(--tp-gray-700); font-size: 0.96rem; }
.feature-icon {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--tp-r-md);
  background: var(--tp-yellow);
  color: var(--tp-black);
}
.feature-icon svg { width: 24px; height: 24px; }
.feature.flagship {
  grid-column: span 4;
  background: var(--tp-black);
  color: var(--tp-white);
  border-color: var(--tp-black);
}
.feature.flagship h3 { color: var(--tp-white); }
.feature.flagship p { color: rgb(255 255 255 / 80%); }
.feature.flagship .feature-icon { background: var(--tp-red); color: var(--tp-white); }
.feature.wide { grid-column: span 4; }
.feature.tall { grid-column: span 2; }
.feature.med  { grid-column: span 2; }
.feature.med2 { grid-column: span 3; }
.feature.med3 { grid-column: span 3; }
@media (max-width: 920px) {
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .feature.flagship, .feature.wide, .feature.med2, .feature.med3 { grid-column: span 2; }
  .feature.tall, .feature.med { grid-column: span 1; }
}
@media (max-width: 520px) {
  .feature-grid { grid-template-columns: 1fr; }
  .feature.flagship, .feature.wide, .feature.med2, .feature.med3,
  .feature.tall, .feature.med { grid-column: span 1; }
}

/* =====================  Section: For Whom (chip cluster)  ===================== */
.forwhom { background: var(--tp-white); }
.forwhom-cluster {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  max-width: 920px;
}
.chip {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px 14px 14px;
  background: var(--tp-paper);
  border: 1.5px solid var(--tp-gray-200);
  border-radius: var(--tp-r-pill);
  font-weight: 500;
  color: var(--tp-ink);
  transition: border-color var(--tp-dur) var(--tp-ease), background var(--tp-dur) var(--tp-ease);
}
.chip:hover { border-color: var(--tp-red); background: var(--tp-white); }
.chip-icon {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--tp-red);
  color: var(--tp-white);
  flex-shrink: 0;
}
.chip-icon svg { width: 18px; height: 18px; }
.chip-text { display: flex; flex-direction: column; gap: 2px; }
.chip-name { font-weight: 700; color: var(--tp-black); font-size: 1rem; line-height: 1.15; }
.chip-detail { font-size: 0.85rem; color: var(--tp-gray-600); line-height: 1.3; }
@media (max-width: 520px) {
  .chip { width: 100%; }
}

/* =====================  Section: Testimonials  ===================== */
.proof { background: var(--tp-paper-band); }
.proof-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.quote-card {
  background: var(--tp-white);
  border-radius: var(--tp-r-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  border: 1px solid var(--tp-gray-200);
}
.quote-card .stars {
  color: var(--tp-yellow);
  font-size: 1.1rem;
  letter-spacing: 2px;
  line-height: 1;
}
.quote-card blockquote {
  margin: 0;
  font-size: 1.02rem;
  color: var(--tp-ink);
  line-height: 1.55;
}
.quote-card blockquote::before {
  content: "“";
  font-size: 2.4rem;
  line-height: 0.3;
  color: var(--tp-red);
  margin-right: 4px;
  vertical-align: -0.4em;
  font-weight: 700;
}
.quote-foot { display: flex; align-items: center; gap: 12px; margin-top: 4px; }
.quote-avatar-img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid var(--tp-white);
  box-shadow: 0 0 0 1px var(--tp-gray-200), 0 4px 10px rgb(17 17 17 / 8%);
}
.quote-name { font-weight: 700; color: var(--tp-black); font-size: 0.98rem; }
.quote-where { font-size: 0.85rem; color: var(--tp-gray-600); }
.proof-disclaimer {
  margin-top: 22px;
  font-size: 0.8rem;
  color: var(--tp-gray-600);
  font-style: italic;
}

/* =====================  Section: Pricing (BLACK band)  ===================== */
.pricing {
  background: var(--tp-black);
  color: var(--tp-white);
}
.pricing h2 { color: var(--tp-white); }
.pricing .section-head p { color: rgb(255 255 255 / 70%); }
.plans {
  display: grid;
  grid-template-columns: 1fr 1.1fr 1fr;
  gap: 22px;
  align-items: stretch;
}
@media (max-width: 920px) { .plans { grid-template-columns: 1fr; } }
/* Two-card lineup (Starter hidden from public storefront) */
.plans.plans--two {
  grid-template-columns: 1.1fr 1fr;
  max-width: 880px;
  margin-inline: auto;
}
@media (max-width: 920px) { .plans.plans--two { grid-template-columns: 1fr; } }
.plan {
  background: var(--tp-ink);
  border: 1px solid var(--tp-gray-700);
  border-radius: var(--tp-r-lg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
}
.plan .tier {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--tp-yellow);
}
.plan h3 { color: var(--tp-white); font-size: 1.25rem; }
.plan .price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  font-weight: 800;
  color: var(--tp-white);
  margin-block: 4px 6px;
  letter-spacing: -0.02em;
}
.plan .price .num { font-size: clamp(2.4rem, 3vw + 1rem, 3.2rem); line-height: 1; }
.plan .price .suffix { font-size: 0.95rem; color: rgb(255 255 255 / 65%); }
.plan .billing { color: rgb(255 255 255 / 70%); font-size: 0.92rem; }
.plan .tag-save {
  display: inline-block;
  margin-top: 4px;
  background: rgb(254 184 0 / 16%);
  color: var(--tp-yellow);
  border: 1px solid rgb(254 184 0 / 40%);
  padding: 4px 10px;
  border-radius: var(--tp-r-pill);
  font-size: 0.82rem;
  font-weight: 600;
  align-self: flex-start;
}
.plan ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 18px 0;
}
.plan li {
  position: relative;
  padding-left: 26px;
  color: rgb(255 255 255 / 88%);
  font-size: 0.95rem;
  line-height: 1.4;
}
.plan li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 16px;
  height: 16px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%23e60000'><path fill-rule='evenodd' d='M10 18a8 8 0 100-16 8 8 0 000 16zm3.707-9.293a1 1 0 00-1.414-1.414L9 10.586 7.707 9.293a1 1 0 00-1.414 1.414l2 2a1 1 0 001.414 0l4-4z' clip-rule='evenodd'/></svg>");
  background-size: contain;
  background-repeat: no-repeat;
}
.plan li strong { color: var(--tp-yellow); font-weight: 600; }
.plan .btn { margin-top: auto; width: 100%; }
.plan.featured {
  background: linear-gradient(180deg, var(--tp-red) 0%, var(--tp-red-deep) 100%);
  border-color: var(--tp-red);
  transform: translateY(-8px);
  box-shadow: var(--tp-sh-red), 0 24px 60px rgb(0 0 0 / 35%);
}
.plan.featured .tier { color: var(--tp-yellow); }
.plan.featured h3 { color: var(--tp-white); }
.plan.featured li::before {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%23feb800'><path fill-rule='evenodd' d='M10 18a8 8 0 100-16 8 8 0 000 16zm3.707-9.293a1 1 0 00-1.414-1.414L9 10.586 7.707 9.293a1 1 0 00-1.414 1.414l2 2a1 1 0 001.414 0l4-4z' clip-rule='evenodd'/></svg>");
}
.plan-badge {
  position: absolute;
  top: -14px;
  right: 22px;
  background: var(--tp-yellow);
  color: var(--tp-black);
  padding: 6px 14px;
  border-radius: var(--tp-r-pill);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: 0 8px 20px rgb(254 184 0 / 35%);
}
.pricing-foot {
  margin-top: clamp(28px, 4vw, 44px);
  font-size: 0.9rem;
  color: rgb(255 255 255 / 65%);
  max-width: 760px;
}

/* =====================  Section: FAQ  ===================== */
.faq { background: var(--tp-white); }
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
  max-width: 820px;
  border-top: 1px solid var(--tp-gray-200);
}
.faq-item {
  border-bottom: 1px solid var(--tp-gray-200);
}
.faq-item > summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 44px 22px 0;
  position: relative;
  font-weight: 600;
  color: var(--tp-black);
  font-size: 1.05rem;
  line-height: 1.4;
}
.faq-item > summary::-webkit-details-marker { display: none; }
.faq-item > summary::after {
  content: "";
  position: absolute;
  right: 4px;
  top: 50%;
  width: 14px;
  height: 14px;
  border-right: 2px solid var(--tp-red);
  border-bottom: 2px solid var(--tp-red);
  transform: translateY(-70%) rotate(45deg);
  transition: transform var(--tp-dur) var(--tp-ease);
}
.faq-item[open] > summary::after { transform: translateY(-30%) rotate(-135deg); }
.faq-item > summary:hover { color: var(--tp-red); }
.faq-answer {
  padding-bottom: 22px;
  color: var(--tp-gray-700);
  font-size: 1rem;
  line-height: 1.6;
  max-width: 720px;
}
.faq-answer ul {
  list-style: disc;
  padding-left: 22px;
  margin: 10px 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.faq-answer strong { color: var(--tp-black); }

/* =====================  Section: Final CTA (RED band)  ===================== */
.final {
  background: var(--tp-red);
  color: var(--tp-white);
  text-align: center;
  padding-block: clamp(72px, 10vw, 130px);
  position: relative;
  overflow: hidden;
}
.final::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 20%, rgb(255 255 255 / 4%) 0, transparent 40%),
    radial-gradient(circle at 80% 80%, rgb(254 184 0 / 8%) 0, transparent 40%);
  pointer-events: none;
}
.final-inner { position: relative; }
.final h2 {
  color: var(--tp-white);
  font-size: clamp(2rem, 4vw + 0.6rem, 3.6rem);
  max-width: 820px;
  margin-inline: auto;
  letter-spacing: -0.02em;
}
.final .lead {
  margin-top: 18px;
  font-size: clamp(1.02rem, 0.4vw + 0.9rem, 1.18rem);
  max-width: 620px;
  margin-inline: auto;
  color: rgb(255 255 255 / 92%);
}
.final-cta {
  margin-top: 30px;
  display: inline-flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}
.final-ticks {
  margin-top: 22px;
  font-size: 0.88rem;
  color: rgb(255 255 255 / 82%);
  display: inline-flex;
  flex-wrap: wrap;
  gap: 6px 18px;
  justify-content: center;
}
.final-ticks li::before { content: "·  "; color: var(--tp-yellow); font-weight: 700; }
.final-ticks li:first-child::before { content: ""; }
.final-ticks li { display: inline; }

/* =====================  Footer  ===================== */
.foot {
  background: var(--tp-black);
  color: rgb(255 255 255 / 75%);
  padding-block: clamp(48px, 6vw, 80px) 32px;
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(4, 1fr);
  gap: clamp(28px, 3vw, 48px);
}
@media (max-width: 900px) { .foot-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .foot-grid { grid-template-columns: 1fr; } }
.foot-brand { display: flex; flex-direction: column; gap: 14px; max-width: 320px; }
.foot-brand-lockup { display: flex; align-items: center; gap: 10px; color: var(--tp-white); font-weight: 700; font-size: 1.18rem; }
.foot-brand-lockup img { width: 36px; height: 36px; }
.foot-brand-lockup em { font-style: normal; color: var(--tp-red-soft); }
.foot-brand p { color: rgb(255 255 255 / 65%); font-size: 0.92rem; line-height: 1.5; }
.foot h4 { color: var(--tp-white); font-size: 0.9rem; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; margin-bottom: 14px; }
.foot ul { display: flex; flex-direction: column; gap: 8px; }
.foot ul a { color: rgb(255 255 255 / 70%); font-size: 0.94rem; transition: color var(--tp-dur) var(--tp-ease); }
.foot ul a:hover { color: var(--tp-yellow); }
.foot-bottom {
  border-top: 1px solid rgb(255 255 255 / 12%);
  margin-top: clamp(36px, 5vw, 56px);
  padding-top: 22px;
  font-size: 0.86rem;
  color: rgb(255 255 255 / 50%);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

/* =====================  Brand pattern layers (T-mark texture)  ===================== */
/* Applied to red and black band sections to add depth + brand watermark */
.has-tmark-red,
.has-tmark-dark {
  position: relative;
  overflow: hidden;
}
.has-tmark-red > .tmark-layer,
.has-tmark-dark > .tmark-layer {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-size: 280px 280px;
  background-repeat: repeat;
  opacity: 0.6;
  mix-blend-mode: overlay;
  z-index: 0;
}
.has-tmark-red > .tmark-layer {
  background-image: url("../brand/svg/PATTERN-T-MARK-RED.svg");
  mask-image: linear-gradient(120deg, transparent 0%, #000 30%, #000 70%, transparent 100%);
  -webkit-mask-image: linear-gradient(120deg, transparent 0%, #000 30%, #000 70%, transparent 100%);
}
.has-tmark-dark > .tmark-layer {
  background-image: url("../brand/svg/PATTERN-T-MARK-DARK.svg");
  opacity: 0.45;
  mask-image: radial-gradient(ellipse at 80% 20%, #000 0%, transparent 65%);
  -webkit-mask-image: radial-gradient(ellipse at 80% 20%, #000 0%, transparent 65%);
}
.has-tmark-red > .wrap,
.has-tmark-dark > .wrap,
.has-tmark-red > .final-inner,
.has-tmark-dark > .final-inner {
  position: relative;
  z-index: 1;
}

/* =====================  Feature: Flagship visual variant  ===================== */
.feature.flagship.flagship-visual {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1.25fr);
  gap: clamp(20px, 3vw, 36px);
  align-items: center;
  padding: 32px;
}
.flagship-copy { display: flex; flex-direction: column; gap: 6px; }
.flagship-art img {
  width: 100%;
  height: auto;
  border-radius: var(--tp-r-md);
  box-shadow: 0 20px 40px rgb(0 0 0 / 35%);
  border: 1px solid rgb(255 255 255 / 12%);
}
@media (max-width: 920px) {
  .feature.flagship.flagship-visual { grid-template-columns: 1fr; }
}

/* =====================  Section: Verticals (by category)  ===================== */
.verticals {
  background: var(--tp-paper-band);
}
.vertical-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(14px, 1.8vw, 22px);
}
.vertical-card {
  position: relative;
  display: block;
  border-radius: var(--tp-r-lg);
  overflow: hidden;
  background: var(--tp-black);
  aspect-ratio: 16 / 11;
  box-shadow: var(--tp-sh-card);
  transition: transform var(--tp-dur) var(--tp-ease), box-shadow var(--tp-dur) var(--tp-ease);
}
.vertical-card > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 480ms var(--tp-ease);
}
.vertical-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 40%, rgb(17 17 17 / 90%) 100%),
    linear-gradient(180deg, rgb(230 0 0 / 0%) 0%, rgb(230 0 0 / 6%) 100%);
  pointer-events: none;
}
.vertical-card:hover { transform: translateY(-3px); box-shadow: var(--tp-sh-float); }
.vertical-card:hover > img { transform: scale(1.04); }
.vertical-card-meta {
  position: absolute;
  inset: auto 0 0 0;
  padding: clamp(16px, 2.4vw, 22px);
  display: flex;
  flex-direction: column;
  gap: 4px;
  color: var(--tp-white);
  z-index: 1;
}
.vertical-name {
  font-weight: 700;
  font-size: clamp(1.05rem, 1vw + 0.7rem, 1.3rem);
  line-height: 1.15;
  letter-spacing: -0.01em;
}
.vertical-detail {
  font-size: 0.88rem;
  color: rgb(255 255 255 / 82%);
  max-width: 28ch;
  line-height: 1.35;
}
@media (max-width: 860px) { .vertical-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .vertical-grid { grid-template-columns: 1fr; } }

/* =====================  Section: Fachada strip (geographic proof)  ===================== */
.fachada {
  background: var(--tp-white);
  position: relative;
}
.fachada-head {
  max-width: 760px;
  margin-bottom: clamp(32px, 4vw, 44px);
}
.fachada-mosaic {
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  gap: 8px;
  border-radius: var(--tp-r-md);
  overflow: hidden;
}
.fachada-mosaic li {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--tp-gray-light);
}
.fachada-mosaic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.7) contrast(0.95) brightness(0.96);
  transition: filter 360ms var(--tp-ease), transform 480ms var(--tp-ease);
}
.fachada-mosaic li:hover img { filter: grayscale(0) contrast(1) brightness(1); transform: scale(1.04); }
@media (max-width: 1080px) {
  .fachada-mosaic { grid-template-columns: repeat(5, 1fr); }
}
@media (max-width: 600px) {
  .fachada-mosaic { grid-template-columns: repeat(4, 1fr); gap: 6px; }
  .fachada-mosaic li:nth-child(n+9) { display: none; }
}

/* =====================  Paper-torn divider (retail-flyer texture)  ===================== */
.paper-torn {
  display: block;
  width: 100%;
  height: 28px;
  background: var(--tp-red);
  -webkit-mask: url("../brand/svg/PAPER-TORN-DIVIDER.svg") center / 100% 100% no-repeat;
  mask: url("../brand/svg/PAPER-TORN-DIVIDER.svg") center / 100% 100% no-repeat;
  margin: 0;
}
.paper-torn-top { transform: scaleY(-1); }

/* =====================  Motion / a11y  ===================== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
@media (max-width: 720px) {
  /* mobile-first: disable subtle hover-scale to avoid sticky :active states */
  .btn:hover { transform: none; }
}
