/* SUBSCRIPTION DE IPTV — teal-sand · stacked · Space Grotesk + Source Serif 4 · duration ladder */
:root {
  --teal-deep: #0f766e;
  --teal: #14b8a6;
  --teal-soft: rgba(20, 184, 166, 0.14);
  --sand: #f5f0e6;
  --sand-2: #e7e0d4;
  --sand-3: #ddd4c4;
  --ink: #1a1f1e;
  --ink-soft: #3d4744;
  --muted: #5c6763;
  --page-bg: var(--sand);
  --page-bg-2: #efe9dd;
  --surface: #fffdf8;
  --card: #fffdf8;
  --heading: var(--ink);
  --accent: var(--teal-deep);
  --accent2: var(--teal);
  --accent3: #0d9488;
  --accent-soft: var(--teal-soft);
  --line: rgba(15, 118, 110, 0.14);
  --hero-overlay: linear-gradient(165deg, rgba(245, 240, 230, 0.92) 0%, rgba(245, 240, 230, 0.78) 45%, rgba(231, 224, 212, 0.88) 100%);
  --footer-bg: #0f766e;
  --footer-text: #cde8e4;
  --card-border: rgba(15, 118, 110, 0.18);
  --shadow: 0 12px 32px rgba(26, 31, 30, 0.08);
  --shadow-lg: 0 24px 48px rgba(15, 118, 110, 0.12);
  --nav-h: 72px;
  --logo-h: 48px;
  --radius-card: 4px;
  --radius-btn: 4px;
  --section-py: 84px;
  --font-ui: "Space Grotesk", system-ui, sans-serif;
  --font-display: "Source Serif 4", Georgia, serif;
  --font-body: "Source Serif 4", Georgia, serif;
  --btn-text-on-accent: #f5f0e6;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 17.5px;
  background: var(--page-bg);
  background-image:
    radial-gradient(ellipse 50% 35% at 90% 5%, rgba(20, 184, 166, 0.1), transparent 55%),
    radial-gradient(ellipse 40% 28% at 5% 40%, rgba(15, 118, 110, 0.06), transparent 50%),
    linear-gradient(180deg, var(--sand), var(--page-bg-2));
  color: var(--ink-soft);
  line-height: 1.72;
  -webkit-font-smoothing: antialiased;
}
body[data-layout="stacked"] { --layout-name: stacked; }
img, svg { max-width: 100%; height: auto; display: block; }
a { color: var(--teal-deep); text-decoration: none; }
a:hover { color: var(--accent3); }
.container { width: min(1080px, calc(100% - 3.25rem)); margin-inline: auto; }
.narrow { width: min(720px, calc(100% - 3rem)); margin-inline: auto; }

.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(245, 240, 230, 0.92);
  backdrop-filter: blur(12px) saturate(1.1);
  border-bottom: 1px solid var(--line);
}
.site-header .container, .nav-wrap {
  height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between; gap: 0.75rem;
}
.logo { line-height: 0; display: flex; align-items: center; background: transparent !important; }
.logo img {
  height: var(--logo-h); width: auto; max-width: min(220px, 58vw);
  object-fit: contain; object-position: left center;
  background: transparent !important;
}
.nav-desktop { display: flex; flex-wrap: wrap; gap: 0.2rem 1.1rem; font-family: var(--font-ui); }
.nav-wrap nav.nav-desktop a {
  color: var(--muted); font-weight: 600; font-size: 0.86rem; letter-spacing: 0.01em;
}
.nav-wrap nav.nav-desktop a:hover { color: var(--teal-deep); }
.nav-actions { display: flex; align-items: center; gap: 0.55rem; margin-left: auto; }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.hamburger span { width: 22px; height: 2px; background: var(--ink); border-radius: 2px; }
.mobile-nav {
  display: none; position: fixed; top: var(--nav-h); left: 0; right: 0;
  background: var(--surface); padding: 1rem 1.15rem 1.35rem;
  border-bottom: 1px solid var(--line); font-family: var(--font-ui);
}
.mobile-nav.open { display: flex; flex-direction: column; gap: 0.85rem; }
.mobile-nav a { color: var(--ink); font-weight: 600; }

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-ui); font-weight: 700; font-size: 0.9rem;
  padding: 0.7rem 1.3rem; border-radius: var(--radius-btn);
  border: 1px solid transparent; cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s, background 0.15s;
}
.btn-primary {
  background: var(--teal-deep); color: var(--btn-text-on-accent) !important;
  box-shadow: 0 8px 20px rgba(15, 118, 110, 0.22);
}
.btn-primary:hover { background: var(--accent3); color: var(--btn-text-on-accent) !important; transform: translateY(-1px); }
.btn-outline {
  background: transparent; color: var(--ink) !important;
  border-color: rgba(15, 118, 110, 0.35);
}
.btn-outline:hover { border-color: var(--teal-deep); color: var(--teal-deep) !important; }
.btn-block { width: 100%; }

/* Stacked hero — sand overlay, duration sketch */
.hero.hero--stacked {
  position: relative;
  min-height: 94vh;
  display: flex; align-items: flex-end; justify-content: center;
  text-align: left;
  padding: calc(var(--nav-h) + 2.5rem) 0 3.5rem;
  background-image:
    var(--hero-overlay),
    url('/images/hero-home.webp');
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
}
.hero-stack-inner { width: min(1080px, calc(100% - 3.25rem)); margin-inline: auto; }
.eyebrow {
  font-family: var(--font-ui); font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--teal-deep);
  margin-bottom: 0.85rem;
}
.hero h1 {
  font-family: var(--font-display); font-weight: 700; font-size: clamp(1.85rem, 4.2vw, 2.85rem);
  line-height: 1.18; color: var(--ink); max-width: 18ch; margin-bottom: 1rem;
}
.hero-lead { max-width: 38rem; color: var(--ink-soft); margin-bottom: 1.35rem; font-size: 1.05rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-bottom: 1.25rem; }
.trust-line {
  font-family: var(--font-ui); font-size: 0.84rem; font-weight: 600; color: var(--muted);
}

/* Duration sketch in hero */
.duration-sketch {
  margin-top: 1.75rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.55rem;
  max-width: 520px;
}
.duration-sketch .step {
  background: rgba(255, 253, 248, 0.88);
  border: 1px solid var(--line);
  padding: 0.65rem 0.5rem;
  text-align: center;
  font-family: var(--font-ui);
  border-radius: var(--radius-card);
}
.duration-sketch .step strong {
  display: block; font-size: 1.05rem; color: var(--teal-deep); font-weight: 700;
}
.duration-sketch .step span {
  font-size: 0.72rem; color: var(--muted); font-weight: 600;
}
.duration-sketch .step.is-sweet {
  border-color: var(--teal);
  box-shadow: 0 0 0 2px var(--teal-soft);
  background: #fff;
}

.section { padding: var(--section-py) 0; }
.section h2, .page-hero h1 {
  font-family: var(--font-display); font-weight: 700; color: var(--ink);
  font-size: clamp(1.55rem, 3vw, 2.15rem); line-height: 1.22; margin-bottom: 0.75rem;
}
.section-intro { color: var(--muted); max-width: 40rem; margin-bottom: 1.75rem; }
.section-eyebrow { margin-bottom: 0.5rem; }
.section img { margin-top: 1.75rem; border-radius: var(--radius-card); box-shadow: var(--shadow); }

/* Duration ladder (toggle-feel) */
.duration-ladder {
  background: var(--surface);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-card);
  padding: 1.35rem 1.25rem 1.5rem;
  box-shadow: var(--shadow);
}
.ladder-toggle {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.45rem;
  margin-bottom: 1.25rem;
  font-family: var(--font-ui);
}
.ladder-toggle button {
  appearance: none; border: 1px solid var(--line); background: var(--sand-2);
  color: var(--ink-soft); font-family: inherit; font-weight: 700; font-size: 0.88rem;
  padding: 0.85rem 0.4rem; cursor: pointer; border-radius: var(--radius-card);
  transition: background 0.15s, border-color 0.15s, color 0.15s;
}
.ladder-toggle button:hover { border-color: var(--teal); }
.ladder-toggle button.is-active {
  background: var(--teal-deep); color: var(--sand); border-color: var(--teal-deep);
}
.ladder-toggle .dur-short { font-size: 0.68rem; display: block; font-weight: 600; opacity: 0.85; margin-top: 0.2rem; }
.ladder-panel {
  display: grid; gap: 0.35rem; align-content: start;
  padding: 1rem 0.25rem 0.25rem;
  border-top: 1px dashed var(--line);
}
.ladder-label { font-family: var(--font-ui); font-weight: 700; color: var(--teal-deep); letter-spacing: 0.04em; text-transform: uppercase; font-size: 0.78rem; }
.ladder-price { font-family: var(--font-ui); font-size: 2.4rem; font-weight: 700; color: var(--ink); line-height: 1.1; }
.ladder-mo { font-family: var(--font-ui); font-weight: 600; color: var(--muted); margin-bottom: 0.35rem; }
.ladder-note { color: var(--ink-soft); margin-bottom: 1rem; max-width: 36rem; }
.pricing-monthly { font-family: var(--font-ui); font-size: 0.9rem; font-weight: 600; color: var(--muted); margin: 0.25rem 0 0.65rem; }
.pricing-all-link { margin-top: 1.25rem; font-family: var(--font-ui); font-size: 0.92rem; }
.pricing-ladder-static { display: grid; gap: 0.75rem; margin-top: 1rem; }
.ladder-row {
  display: grid; grid-template-columns: 1fr auto auto auto; gap: 1rem; align-items: center;
  background: var(--surface); border: 1px solid var(--line); padding: 1rem 1.15rem;
  border-radius: var(--radius-card); font-family: var(--font-ui);
}
.ladder-row.is-recommended { border-color: var(--teal); box-shadow: inset 3px 0 0 var(--teal-deep); }
.ladder-row h3 { font-size: 1rem; color: var(--ink); font-weight: 700; }
.ladder-row .price { font-size: 1.35rem; font-weight: 700; color: var(--teal-deep); }
.ladder-row .mo { color: var(--muted); font-weight: 600; font-size: 0.88rem; }
.multi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.85rem; margin-top: 1rem; }
.multi-grid article {
  background: var(--surface); border: 1px solid var(--line); padding: 1.15rem;
  border-radius: var(--radius-card);
}
.multi-grid h3 { font-family: var(--font-ui); font-size: 0.95rem; margin-bottom: 0.4rem; color: var(--ink); }
.multi-grid .price { font-family: var(--font-ui); font-size: 1.5rem; font-weight: 700; color: var(--teal-deep); }

.how-rail {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-bottom: 0.5rem;
}
.how-rail article {
  background: var(--surface); border: 1px solid var(--line); padding: 1.25rem 1.1rem;
  border-radius: var(--radius-card);
}
.how-rail span {
  font-family: var(--font-ui); font-weight: 700; color: var(--teal); font-size: 0.85rem;
}
.how-rail h3 { font-family: var(--font-ui); font-size: 1.05rem; color: var(--ink); margin: 0.4rem 0 0.35rem; }

.trust-band {
  background: linear-gradient(90deg, var(--teal-deep), #0d9488);
  color: var(--sand); padding: 2.25rem 0;
}
.trust-band-inner {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; text-align: center;
  font-family: var(--font-ui);
}
.trust-stat strong { display: block; font-size: 1.55rem; font-weight: 700; }
.trust-stat span { font-size: 0.82rem; opacity: 0.88; }

.features-stack { display: grid; gap: 0.75rem; }
.feature-strip {
  display: grid; grid-template-columns: auto 1fr; gap: 1rem; align-items: start;
  background: var(--surface); border: 1px solid var(--line); padding: 1.1rem 1.2rem;
  border-radius: var(--radius-card);
}
.feature-strip .num {
  font-family: var(--font-ui); font-weight: 700; color: var(--teal); font-size: 0.9rem;
  min-width: 2rem;
}
.feature-strip h3 { font-family: var(--font-ui); font-size: 1.02rem; color: var(--ink); margin-bottom: 0.25rem; }

.devices-stack {
  display: grid; grid-template-columns: 1fr 1.1fr; gap: 1.75rem; align-items: center;
}
.device-chips { display: flex; flex-wrap: wrap; gap: 0.45rem; margin-top: 1rem; }
.device-chips span {
  font-family: var(--font-ui); font-size: 0.78rem; font-weight: 600;
  background: var(--sand-2); color: var(--ink-soft); padding: 0.4rem 0.7rem;
  border: 1px solid var(--line); border-radius: var(--radius-card);
}

/* Masonry reviews */
.reviews-masonry {
  columns: 3; column-gap: 0.9rem;
}
.reviews-masonry .review-card {
  break-inside: avoid; margin-bottom: 0.9rem;
  background: var(--surface); border: 1px solid var(--line);
  padding: 1.15rem 1.1rem; border-radius: var(--radius-card);
  box-shadow: var(--shadow);
}
.review-stars { color: var(--teal-deep); letter-spacing: 0.08em; font-size: 0.9rem; display: block; margin-bottom: 0.45rem; }
.review-text { color: var(--ink-soft); margin-bottom: 0.65rem; font-size: 0.98rem; }
.review-author { font-family: var(--font-ui); font-size: 0.82rem; color: var(--muted); }

.faq-list { display: grid; gap: 0.55rem; }
.faq-item {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-card);
  padding: 0.85rem 1.1rem;
}
.faq-item summary {
  font-family: var(--font-ui); font-weight: 700; color: var(--ink); cursor: pointer;
}
.faq-item p { margin-top: 0.55rem; color: var(--muted); }

.seo-depth .depth-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.85rem; margin-bottom: 1rem;
}
.depth-card {
  background: var(--surface); border: 1px solid var(--line); padding: 1.1rem;
  border-radius: var(--radius-card);
}
.depth-card h3 { font-family: var(--font-ui); font-size: 0.98rem; color: var(--ink); margin-bottom: 0.35rem; }
.depth-more { font-family: var(--font-ui); margin-top: 0.75rem; }
.depth-more summary { cursor: pointer; font-weight: 700; color: var(--teal-deep); }
.depth-more p { margin-top: 0.65rem; color: var(--muted); }
.depth-longform { font-size: 0.92rem; color: var(--muted); }

.cta-band {
  background: linear-gradient(135deg, var(--sand-2), #fffdf8 40%, rgba(20, 184, 166, 0.12));
  padding: 3.5rem 0; text-align: center; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.cta-band h2 { margin-bottom: 0.5rem; }
.cta-band p { color: var(--muted); margin-bottom: 1.15rem; }

.trial-strip { padding: 1.5rem 0; background: var(--sand-2); }
.trial-strip-inner {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1rem;
  font-family: var(--font-ui);
}

.page-hero {
  padding: calc(var(--nav-h) + 2.5rem) 0 2.5rem;
  background: linear-gradient(180deg, var(--sand), var(--sand-2));
}
.page-hero--cover {
  background-size: cover !important; background-position: center !important;
  color: var(--sand);
  min-height: 280px; display: flex; align-items: flex-end;
}
.page-hero--cover h1, .page-hero--cover p { color: var(--sand); text-shadow: 0 2px 12px rgba(0,0,0,0.35); }

.site-footer {
  background: var(--footer-bg); color: var(--footer-text); padding: 3rem 0 1.5rem;
  font-family: var(--font-ui); font-size: 0.9rem;
}
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 1.5rem; margin-bottom: 2rem;
}
.site-footer a { color: #e0f2f0; display: block; margin: 0.3rem 0; }
.site-footer a:hover { color: #fff; }
.site-footer h3 { color: #fff; font-size: 0.85rem; margin-bottom: 0.55rem; letter-spacing: 0.04em; text-transform: uppercase; }
.site-footer p { margin-top: 0.75rem; line-height: 1.55; max-width: 28ch; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.15); padding-top: 1rem; font-size: 0.82rem; }

.wa-sticky {
  position: fixed; right: 1.1rem; bottom: 1.1rem; z-index: 900;
  background: #25d366; color: #fff !important; font-family: var(--font-ui);
  font-weight: 700; font-size: 0.85rem; padding: 0.75rem 1.1rem; border-radius: 999px;
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.35);
}

/* Blog grid-3 */
.blog-grid-3 {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.15rem;
}
.blog-grid-3 article {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-card);
  overflow: hidden; box-shadow: var(--shadow);
}
.blog-grid-3 .pad { padding: 1rem 1.05rem 1.2rem; }
.blog-grid-3 h3 { font-family: var(--font-ui); font-size: 1rem; line-height: 1.35; margin: 0.25rem 0; }
.blog-grid-3 h3 a { color: var(--ink); }
.blog-meta { font-family: var(--font-ui); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--teal-deep); }

.article--post { padding: calc(var(--nav-h) + 2rem) 0 3rem; }
.article--post h1 { font-family: var(--font-display); font-size: clamp(1.6rem, 3vw, 2.2rem); color: var(--ink); margin: 0.5rem 0 1rem; }
.article--post h2 { font-family: var(--font-display); font-size: 1.35rem; color: var(--ink); margin: 1.6rem 0 0.55rem; }
.article--post p { margin-bottom: 0.9rem; color: var(--ink-soft); }
.article-hero-img { margin: 1rem 0 1.5rem; border-radius: var(--radius-card); overflow: hidden; }
.blog-crumb { font-family: var(--font-ui); font-size: 0.85rem; margin-bottom: 0.5rem; }

.reseller-packs { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.9rem; }
.reseller-pack {
  background: var(--surface); border: 1px solid var(--line); padding: 1.25rem;
  border-radius: var(--radius-card);
}
.reseller-pack h3 { font-family: var(--font-ui); color: var(--ink); margin-bottom: 0.35rem; }
.reseller-pack .price { font-family: var(--font-ui); font-size: 1.75rem; font-weight: 700; color: var(--teal-deep); margin-bottom: 0.5rem; }

.contact-panel {
  background: var(--surface); border: 1px solid var(--line); padding: 1.5rem;
  border-radius: var(--radius-card); max-width: 36rem;
}

.offer-overlay {
  position: fixed; inset: 0; background: rgba(26, 31, 30, 0.45); z-index: 1100;
  opacity: 0; pointer-events: none; transition: opacity 0.2s;
}
.offer-overlay.show { opacity: 1; pointer-events: auto; }
.offer-modal {
  position: fixed; left: 50%; top: 50%; transform: translate(-50%, -48%) scale(0.96);
  z-index: 1101; background: var(--surface); border: 1px solid var(--line);
  padding: 1.75rem 1.5rem; width: min(400px, calc(100% - 2rem));
  border-radius: var(--radius-card); box-shadow: var(--shadow-lg);
  opacity: 0; pointer-events: none; transition: opacity 0.2s, transform 0.2s;
  font-family: var(--font-ui); text-align: center;
}
.offer-modal.show { opacity: 1; pointer-events: auto; transform: translate(-50%, -50%) scale(1); }
.offer-close {
  position: absolute; top: 0.5rem; right: 0.65rem; border: 0; background: none;
  font-size: 1.4rem; cursor: pointer; color: var(--muted);
}
.offer-badge { color: var(--teal-deep); font-weight: 700; font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase; }
.offer-modal h3 { font-family: var(--font-display); margin: 0.5rem 0; color: var(--ink); }
.offer-price { margin: 0.75rem 0; }
.offer-timer { color: var(--muted); font-size: 0.88rem; margin-bottom: 1rem; }
.offer-dismiss { display: block; width: 100%; margin-top: 0.65rem; border: 0; background: none; color: var(--muted); cursor: pointer; font-family: inherit; }

@media (max-width: 900px) {
  .nav-desktop { display: none; }
  .hamburger { display: flex; }
  .how-rail, .trust-band-inner, .seo-depth .depth-grid, .blog-grid-3, .multi-grid, .devices-stack, .reseller-packs {
    grid-template-columns: 1fr;
  }
  .reviews-masonry { columns: 2; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .ladder-row { grid-template-columns: 1fr; gap: 0.35rem; }
  .duration-sketch { grid-template-columns: repeat(2, 1fr); max-width: none; }
}
@media (max-width: 560px) {
  .reviews-masonry { columns: 1; }
  .ladder-toggle { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .hero h1 { max-width: none; }
}

/* Hide SEO depth padding from visitors; keep HTML for audit size */
.seo-depth,
.depth-longform {
  display: none !important;
}

