/*
Theme Name: SmarterTVBox
Theme URI: https://smartertvbox.com/
Author: SmarterTVBox
Description: Premium dark streaming subscription storefront.
Version: 1.1.0
Text Domain: smartertvbox
*/

/* ==========================================================
   ROOT
   ========================================================== */

:root {
  --stb-bg: #0f0f1a;
  --stb-bg-soft: #121221;
  --stb-bg-deep: #0a0a12;

  --stb-card: rgba(26, 26, 46, 0.80);
  --stb-card-solid: #1a1a2e;

  --stb-white: #ffffff;
  --stb-text: #f8fafc;
  --stb-text-soft: #d1d5db;
  --stb-text-muted: #9ca3af;

  --stb-border: #333344;
  --stb-border-soft: rgba(255, 255, 255, 0.09);

  --stb-teal: #06d6a0;
  --stb-teal-dark: #04b987;
  --stb-teal-soft: rgba(6, 214, 160, 0.12);
  --stb-teal-glow: rgba(6, 214, 160, 0.50);

  --stb-orange: #f97316;
  --stb-orange-dark: #ea580c;
  --stb-orange-soft: rgba(249, 115, 22, 0.12);

  --stb-gold: #fbbf24;
  --stb-gold-dark: #d99b08;
  --stb-gold-soft: rgba(251, 191, 36, 0.12);

  --stb-red: #ef4444;

  --stb-radius: 16px;
  --stb-radius-small: 10px;

  --stb-shadow:
    0 20px 50px rgba(0, 0, 0, 0.35);

  --stb-display:
    "Inter",
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;

  --stb-sans:
    "Inter",
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
}


/* ==========================================================
   GLOBAL
   ========================================================== */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;

  color: var(--stb-text);
  background: var(--stb-bg);

  font-family: var(--stb-sans);
  font-size: 16px;
  line-height: 1.6;

  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.admin-bar .stb-site-header {
  top: 32px;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  color: inherit;
  font: inherit;
}

button {
  cursor: pointer;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
  color: var(--stb-white);
  font-family: var(--stb-display);
  font-weight: 700;
  letter-spacing: -0.025em;
}

p {
  line-height: 1.7;
}

::selection {
  color: var(--stb-bg);
  background: var(--stb-teal);
}

.stb-shell {
  width: 100%;
  max-width: 1240px;
  margin-inline: auto;
  padding-inline: 24px;
}

.stb-icon {
  display: inline-block;
  width: 20px;
  height: 20px;
  flex: 0 0 auto;

  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}


/* ==========================================================
   BUTTONS
   ========================================================== */

.stb-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;

  min-height: 50px;
  padding: 13px 24px;

  border: 0;
  border-radius: var(--stb-radius-small);

  color: var(--stb-bg);
  background: var(--stb-teal);

  font-weight: 800;
  line-height: 1.2;

  transition:
    transform .2s ease,
    background-color .2s ease,
    box-shadow .2s ease;
}

.stb-btn:hover {
  color: var(--stb-bg);
  background: var(--stb-teal-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(6, 214, 160, 0.22);
}

.stb-btn--trial {
  color: var(--stb-bg);
  background: var(--stb-teal);
  box-shadow: 0 0 25px var(--stb-teal-glow);
  animation: stb-trial-pulse 2.6s ease-in-out infinite;
}

.stb-btn--trial:hover {
  color: var(--stb-bg);
  background: var(--stb-teal-dark);
  box-shadow: 0 0 32px rgba(6, 214, 160, 0.60);
}

.stb-btn--plans {
  color: var(--stb-white);
  background: var(--stb-orange);
}

.stb-btn--plans:hover {
  color: var(--stb-white);
  background: var(--stb-orange-dark);
  box-shadow: 0 12px 28px rgba(249, 115, 22, 0.22);
}

.stb-btn--outline {
  border: 1px solid var(--stb-border);
  color: var(--stb-white);
  background: transparent;
}

.stb-btn--outline:hover {
  border-color: var(--stb-teal);
  color: var(--stb-teal);
  background: rgba(6, 214, 160, 0.05);
  box-shadow: none;
}

.stb-btn--uppercase {
  letter-spacing: .04em;
  text-transform: uppercase;
}

@keyframes stb-trial-pulse {
  0%,
  100% {
    box-shadow:
      0 0 20px rgba(6, 214, 160, 0.35);
  }

  50% {
    box-shadow:
      0 0 34px rgba(6, 214, 160, 0.62);
  }
}


/* ==========================================================
   HEADER
   ========================================================== */

.stb-site-header {
  position: sticky;
  top: 0;
  z-index: 100;
}

/* Announcement bar */

.stb-announcement {
  position: relative;

  padding: 9px 42px;

  color: var(--stb-bg);
  background: var(--stb-teal);

  text-align: center;

  font-size: 13px;
  font-weight: 800;
  line-height: 20px;
}

.stb-announcement a {
  color: var(--stb-bg);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.stb-announcement button {
  position: absolute;
  top: 50%;
  right: 12px;

  width: 28px;
  height: 28px;

  padding: 0;

  border: 0;

  color: var(--stb-bg);
  background: transparent;

  font-size: 20px;
  line-height: 1;

  transform: translateY(-50%);
}

/* Header */

.stb-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(15, 15, 26, 0.94);

  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);

  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.25);
}

.stb-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 24px;

  min-height: 76px;
}

/* Logo */

.stb-logo {
  display: flex;
  align-items: center;
  gap: 11px;

  min-width: 0;
}

.stb-logo__mark {
  display: grid;

  width: 42px;
  height: 42px;

  flex: 0 0 auto;
  place-items: center;

  border-radius: 11px;

  color: var(--stb-bg);
  background: var(--stb-teal);

  font-family: var(--stb-display);
  font-size: 17px;
  font-weight: 900;

  box-shadow:
    0 0 22px rgba(6, 214, 160, 0.20);
}

.stb-logo__copy {
  display: block;
  min-width: 0;
  line-height: 1.15;
}

.stb-logo__name {
  display: block;

  overflow: hidden;

  color: var(--stb-white);

  font-size: 18px;
  font-weight: 800;

  text-overflow: ellipsis;
  white-space: nowrap;
}

.stb-logo__tag {
  display: block;

  margin-top: 3px;

  color: var(--stb-text-muted);

  font-size: 9px;
  font-weight: 700;

  letter-spacing: .14em;
  text-transform: uppercase;
}

/* Navigation */

.stb-nav {
  display: flex;
  align-items: center;
  justify-content: center;

  gap: 28px;
}

.stb-nav a {
  position: relative;

  color: #d9dce3;

  font-size: 14px;
  font-weight: 600;

  white-space: nowrap;

  transition:
    color .2s ease;
}

.stb-nav a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;

  height: 2px;

  border-radius: 2px;

  background: var(--stb-teal);

  content: "";

  transform: scaleX(0);
  transform-origin: center;

  transition:
    transform .2s ease;
}

.stb-nav a:hover,
.stb-nav a[aria-current="page"] {
  color: var(--stb-teal);
}

.stb-nav a:hover::after,
.stb-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

/* Header actions */

.stb-actions {
  display: flex;
  align-items: center;
  gap: 10px;

  flex: 0 0 auto;
}

.stb-shop-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-height: 44px;

  padding: 10px 18px;

  border-radius: 9px;

  color: var(--stb-white);
  background: var(--stb-orange);

  font-size: 13px;
  font-weight: 800;

  letter-spacing: .02em;
  text-transform: uppercase;

  transition:
    transform .2s ease,
    background .2s ease,
    box-shadow .2s ease;
}

.stb-shop-link:hover {
  color: var(--stb-white);
  background: var(--stb-orange-dark);

  transform: translateY(-1px);

  box-shadow:
    0 10px 24px rgba(249, 115, 22, 0.20);
}

/* Mobile toggle */

.stb-menu-toggle {
  display: none;

  width: 42px;
  height: 42px;

  padding: 9px;

  border: 1px solid var(--stb-border);

  border-radius: 10px;

  color: var(--stb-white);
  background: var(--stb-card-solid);
}

.stb-menu-toggle span {
  display: block;

  width: 20px;
  height: 2px;

  margin: 4px auto;

  border-radius: 2px;

  background: currentColor;
}


/* ==========================================================
   SHARED SECTIONS
   ========================================================== */

.stb-home-section {
  padding-block: 84px;
}

.stb-section--surface {
  background: #11111e;
}

.stb-section-heading {
  max-width: 760px;

  margin:
    0
    auto
    46px;

  text-align: center;
}

.stb-section-heading > p,
.stb-eyebrow {
  margin:
    0
    0
    12px;

  color: var(--stb-teal);

  font-size: 12px;
  font-weight: 800;

  line-height: 16px;

  letter-spacing: .16em;

  text-transform: uppercase;
}

.stb-section-heading h2 {
  margin: 0;

  color: var(--stb-white);

  font-size: 38px;
  font-weight: 800;

  line-height: 1.16;
}

.stb-section-heading > span {
  display: block;

  margin-top: 15px;

  color: var(--stb-text-soft);

  font-size: 16px;

  line-height: 1.7;
}


/* ==========================================================
   HERO
   ========================================================== */

.stb-home-hero {
  position: relative;

  overflow: hidden;

  background:
    radial-gradient(
      circle at 78% 18%,
      rgba(6, 214, 160, 0.09),
      transparent 28%
    ),
    radial-gradient(
      circle at 22% 85%,
      rgba(249, 115, 22, 0.06),
      transparent 25%
    ),
    var(--stb-bg);
}

.stb-home-hero::before {
  position: absolute;
  inset: 0;

  pointer-events: none;

  background:
    linear-gradient(
      rgba(255,255,255,0.02) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(255,255,255,0.02) 1px,
      transparent 1px
    );

  background-size: 60px 60px;

  content: "";

  opacity: .20;
}

.stb-home-hero__grid {
  position: relative;
  z-index: 1;

  display: grid;
  align-items: center;

  gap: 60px;

  padding-block: 96px;
}

.stb-home-hero__copy {
  min-width: 0;
}

.stb-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  padding: 8px 14px;

  border: 1px solid rgba(6, 214, 160, 0.28);
  border-radius: 999px;

  color: var(--stb-teal);
  background: var(--stb-teal-soft);

  font-size: 13px;
  font-weight: 700;
}

.stb-pill .stb-icon {
  width: 16px;
  height: 16px;
}

.stb-home-hero h1 {
  margin:
    22px
    0
    0;

  color: var(--stb-white);

  font-size: 58px;
  font-weight: 800;

  line-height: 1.03;
}

.stb-home-hero h1 span {
  color: var(--stb-teal);
}

.stb-home-hero__copy > p {
  max-width: 680px;

  margin:
    22px
    0
    0;

  color: var(--stb-text-soft);

  font-size: 18px;

  line-height: 1.75;
}

/* Hero checklist */

.stb-hero-checks {
  display: grid;
  gap: 11px;

  margin:
    26px
    0
    0;

  padding: 0;

  list-style: none;
}

.stb-hero-checks li {
  display: flex;
  align-items: center;
  gap: 11px;

  color: var(--stb-text-soft);

  font-weight: 600;
}

.stb-hero-checks li > span {
  display: grid;

  width: 24px;
  height: 24px;

  flex: 0 0 auto;
  place-items: center;

  border-radius: 50%;

  color: var(--stb-bg);
  background: var(--stb-teal);
}

.stb-hero-checks .stb-icon {
  width: 14px;
  height: 14px;
}

/* Hero buttons */

.stb-button-row {
  display: flex;

  flex-wrap: wrap;

  gap: 12px;
}

.stb-home-hero .stb-button-row {
  margin-top: 32px;
}

/* Hero badges */

.stb-hero-badges {
  display: flex;
  align-items: center;

  flex-wrap: wrap;

  gap: 18px;

  margin-top: 26px;

  color: var(--stb-text-muted);

  font-size: 13px;
}

.stb-hero-badges span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.stb-hero-badges .stb-icon {
  width: 16px;
  height: 16px;

  color: var(--stb-teal);
}

/* Hero visual */

.stb-home-hero__visual {
  width: 100%;
  max-width: 540px;

  margin-inline: auto;
}

.stb-hero-orbit {
  position: relative;

  display: grid;

  width: 100%;

  aspect-ratio: 1;

  place-items: center;

  padding: 30px;

  border: 1px solid rgba(255,255,255,.07);
  border-radius: 50%;

  background:
    radial-gradient(
      circle at center,
      #202038 0%,
      #17172a 46%,
      #0f0f1a 72%
    );

  box-shadow:
    inset 0 0 80px rgba(6, 214, 160, 0.06),
    0 30px 80px rgba(0,0,0,.45);
}

.stb-orbit-item {
  position: absolute;

  display: grid;

  width: 58px;
  height: 58px;

  place-items: center;

  border: 3px solid #11111c;
  border-radius: 15px;

  color: var(--stb-bg);

  background:
    linear-gradient(
      135deg,
      #06d6a0,
      #04a77e
    );

  box-shadow:
    0 14px 28px rgba(0,0,0,.40),
    0 0 20px rgba(6,214,160,.14);

  font-size: 10px;
  font-weight: 900;

  text-align: center;

  transform:
    translate(-50%, -50%);
}

.stb-orbit-item--1 {
  left: 50%;
  top: 3%;
}

.stb-orbit-item--2 {
  left: 90.7%;
  top: 26.5%;
}

.stb-orbit-item--3 {
  left: 90.7%;
  top: 73.5%;
}

.stb-orbit-item--4 {
  left: 50%;
  top: 97%;
}

.stb-orbit-item--5 {
  left: 9.3%;
  top: 73.5%;
}

.stb-orbit-item--6 {
  left: 9.3%;
  top: 26.5%;
}


/* ==========================================================
   TRUST BAR
   ========================================================== */

.stb-trustbar {
  padding-block: 26px;

  border-block: 1px solid rgba(255,255,255,.07);

  background: #121221;
}

.stb-trustbar__grid {
  display: grid;

  gap: 22px;
}

.stb-trustbar__grid > div {
  display: flex;
  align-items: center;
  gap: 12px;

  min-width: 0;
}

.stb-trustbar__grid .stb-icon {
  width: 24px;
  height: 24px;

  color: var(--stb-teal);
}

.stb-trustbar__grid strong,
.stb-trustbar__grid small {
  display: block;
}

.stb-trustbar__grid strong {
  color: var(--stb-white);

  font-size: 14px;
  line-height: 20px;
}

.stb-trustbar__grid small {
  color: var(--stb-text-muted);

  font-size: 12px;
  line-height: 17px;
}


/* ==========================================================
   PRICING
   ========================================================== */

.stb-pricing-section {
  position: relative;

  background:
    linear-gradient(
      180deg,
      #0f0f1a 0%,
      #11111f 100%
    );
}

.stb-pricing-group + .stb-pricing-group {
  margin-top: 76px;
}

.stb-pricing-group__heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;

  gap: 24px;

  margin-bottom: 28px;
}

.stb-pricing-group__heading h3 {
  margin:
    4px
    0
    0;

  color: var(--stb-white);

  font-size: 25px;
  font-weight: 800;

  line-height: 1.2;
}

.stb-pricing-group__heading p {
  margin: 0;

  color: var(--stb-text-muted);

  font-size: 14px;
}


/* Pricing grid */

.stb-plan-grid {
  display: grid;

  grid-template-columns: 1fr;

  gap: 22px;
}


/* ==========================================================
   PRICING CARDS
   ========================================================== */

.stb-pricing-card {
  position: relative;

  display: flex;

  min-height: 650px;

  overflow: hidden;

  flex-direction: column;

  padding:
    0
    24px
    24px;

  border:
    1px
    solid
    var(--stb-border);

  border-radius: 18px;

  color: var(--stb-white);

  background:
    radial-gradient(
      circle at top,
      rgba(6,214,160,.08),
      transparent 44%
    ),
    var(--stb-card-solid);

  box-shadow: var(--stb-shadow);

  transition:
    transform .25s ease,
    box-shadow .25s ease,
    border-color .25s ease;
}

.stb-pricing-card:hover {
  transform: translateY(-7px);

  border-color: rgba(6,214,160,.55);

  box-shadow:
    0 28px 65px rgba(0,0,0,.45),
    0 0 26px rgba(6,214,160,.06);
}

/* Badge */

.stb-pricing-card__badge {
  position: absolute;

  top: 0;
  left: 50%;

  z-index: 3;

  min-width: 135px;

  padding:
    9px
    16px;

  border-radius:
    0
    0
    10px
    10px;

  color: var(--stb-bg);

  background: var(--stb-teal);

  font-size: 10px;
  font-weight: 900;

  letter-spacing: .09em;

  text-align: center;

  transform:
    translateX(-50%);
}

.stb-pricing-card__badge--best,
.stb-pricing-card[data-plan="best"] .stb-pricing-card__badge {
  color: var(--stb-bg);
  background: var(--stb-gold);
}

/* Header */

.stb-pricing-card__header {
  padding-top: 34px;

  text-align: center;
}

.stb-pricing-card__header h3 {
  margin: 0;

  color: var(--stb-white);

  font-size: 24px;
  font-weight: 800;

  line-height: 1.2;
}

.stb-pricing-card__line {
  width: 72%;

  height: 1px;

  margin:
    18px
    auto
    0;

  background: #343449;
}

.stb-pricing-card__line::after {
  display: block;

  width: 110px;
  height: 2px;

  margin-inline: auto;

  background: var(--stb-teal);

  content: "";
}

/* Price */

.stb-pricing-card__price {
  margin-top: 34px;

  text-align: center;
}

.stb-pricing-card__price strong {
  display: block;

  color: var(--stb-gold);

  font-family: var(--stb-display);

  font-size: 52px;
  font-weight: 900;

  line-height: 1;
}

.stb-pricing-card__price span {
  display: block;

  margin-top: 9px;

  color: var(--stb-text-muted);

  font-size: 13px;
}

/* Devices */

.stb-pricing-card__devices {
  margin-top: 7px;

  color: var(--stb-text-soft);

  font-size: 14px;
  font-weight: 700;

  text-align: center;
}

/* Features */

.stb-pricing-card__features {
  display: grid;
  gap: 0;

  margin:
    28px
    0
    0;

  padding: 0;

  list-style: none;
}

.stb-pricing-card__features li {
  display: flex;
  align-items: flex-start;

  gap: 10px;

  padding:
    10px
    0;

  border-bottom:
    1px
    solid
    rgba(255,255,255,.07);

  color: var(--stb-text-soft);

  font-size: 13px;
  line-height: 1.45;
}

.stb-pricing-card__check {
  flex: 0 0 auto;

  color: var(--stb-teal);

  font-size: 17px;
  font-weight: 900;
}

/* Button */

.stb-pricing-card__button {
  width: 100%;

  min-height: 54px;

  margin-top: auto;

  border-radius: 10px;

  color: var(--stb-bg) !important;
  background: var(--stb-orange) !important;

  font-size: 14px;
  font-weight: 900;

  letter-spacing: .04em;

  text-transform: uppercase;

  transition:
    transform .2s ease,
    background .2s ease,
    box-shadow .2s ease;
}

.stb-pricing-card__button:hover {
  color: var(--stb-white) !important;
  background: var(--stb-orange-dark) !important;

  transform: translateY(-2px);

  box-shadow:
    0 12px 28px rgba(249,115,22,.22);
}


/* ==========================================================
   BEST VALUE
   ========================================================== */

.stb-pricing-card--best,
.stb-pricing-card[data-best-value="true"] {
  border-color: var(--stb-gold);

  box-shadow:
    0 25px 60px rgba(0,0,0,.42),
    0 0 26px rgba(251,191,36,.10);
}

.stb-pricing-card--best:hover,
.stb-pricing-card[data-best-value="true"]:hover {
  border-color: var(--stb-gold);
  box-shadow:
    0 30px 68px rgba(0,0,0,.48),
    0 0 34px rgba(251,191,36,.14);
}


/* ==========================================================
   FEATURE CARDS
   ========================================================== */

.stb-feature-grid {
  display: grid;

  gap: 22px;
}

.stb-feature-card {
  padding: 28px;

  border:
    1px
    solid
    var(--stb-border);

  border-radius: var(--stb-radius);

  color: var(--stb-text);

  background: var(--stb-card);

  box-shadow:
    0 14px 35px rgba(0,0,0,.22);

  transition:
    transform .22s ease,
    border-color .22s ease,
    box-shadow .22s ease;
}

.stb-feature-card:hover {
  transform: translateY(-5px);

  border-color: rgba(6,214,160,.45);

  box-shadow:
    0 22px 46px rgba(0,0,0,.32);
}

.stb-feature-card__icon {
  display: grid;

  width: 48px;
  height: 48px;

  place-items: center;

  border:
    1px
    solid
    rgba(6,214,160,.22);

  border-radius: 12px;

  color: var(--stb-teal);

  background: var(--stb-teal-soft);
}

.stb-feature-card__icon .stb-icon {
  color: var(--stb-teal);
}

.stb-feature-card h3 {
  margin:
    18px
    0
    0;

  color: var(--stb-white);

  font-size: 18px;
  font-weight: 800;

  line-height: 1.35;
}

.stb-feature-card p {
  margin:
    8px
    0
    0;

  color: var(--stb-text-soft);

  font-size: 14px;

  line-height: 1.65;
}


/* ==========================================================
   HOW IT WORKS
   ========================================================== */

.stb-steps {
  display: grid;

  gap: 22px;
}

.stb-step {
  position: relative;

  padding: 26px;

  border:
    1px
    solid
    var(--stb-border);

  border-radius: var(--stb-radius);

  background: var(--stb-card);

  box-shadow:
    0 14px 35px rgba(0,0,0,.20);
}

.stb-step__number {
  color: rgba(6,214,160,.25);

  font-size: 44px;
  font-weight: 900;

  line-height: 1;
}

.stb-step h3 {
  margin:
    14px
    0
    0;

  color: var(--stb-white);

  font-size: 18px;
  font-weight: 800;

  line-height: 1.35;
}

.stb-step p {
  margin:
    9px
    0
    0;

  color: var(--stb-text-soft);

  font-size: 14px;

  line-height: 1.65;
}


/* ==========================================================
   STATS
   ========================================================== */

.stb-stats {
  padding-block: 62px;

  color: var(--stb-white);

  background:
    linear-gradient(
      135deg,
      #131326,
      #090912
    );

  text-align: center;
}

.stb-stats h2 {
  margin: 0;

  color: var(--stb-white);

  font-size: 32px;
  line-height: 1.2;
}

.stb-stats > div > p {
  margin:
    12px
    0
    0;

  color: var(--stb-text-muted);
}

.stb-stats dl {
  display: grid;

  grid-template-columns: repeat(2, 1fr);

  gap: 28px;

  margin:
    40px
    0
    0;
}

.stb-stats dt {
  color: var(--stb-gold);

  font-size: 36px;
  font-weight: 900;

  line-height: 1.1;
}

.stb-stats dd {
  margin:
    6px
    0
    0;

  color: var(--stb-text-muted);

  font-size: 14px;
}


/* ==========================================================
   TESTIMONIALS
   ========================================================== */

.stb-testimonials {
  display: grid;

  gap: 22px;
}

.stb-testimonial {
  margin: 0;

  padding: 26px;

  border:
    1px
    solid
    var(--stb-border);

  border-radius: var(--stb-radius);

  background: var(--stb-card);

  box-shadow:
    0 14px 35px rgba(0,0,0,.20);
}

.stb-testimonial > .stb-icon {
  width: 24px;
  height: 24px;

  color: var(--stb-gold);
}

.stb-testimonial blockquote {
  margin:
    15px
    0
    0;

  color: var(--stb-text-soft);

  font-size: 14px;

  line-height: 1.75;
}

.stb-testimonial figcaption {
  margin-top: 20px;

  font-size: 14px;
}

.stb-testimonial figcaption strong,
.stb-testimonial figcaption span {
  display: block;
}

.stb-testimonial figcaption strong {
  color: var(--stb-white);
  font-weight: 800;
}

.stb-testimonial figcaption span {
  margin-top: 3px;

  color: var(--stb-text-muted);

  font-size: 12px;
}


/* ==========================================================
   FAQ
   ========================================================== */

.stb-faq-wrap {
  width: 100%;
  max-width: 820px;

  margin-inline: auto;

  padding-inline: 24px;
}

.stb-faq {
  overflow: hidden;

  border:
    1px
    solid
    var(--stb-border);

  border-radius: var(--stb-radius);

  background: var(--stb-card);
}

.stb-faq details + details {
  border-top:
    1px
    solid
    var(--stb-border);
}

.stb-faq summary {
  display: grid;

  grid-template-columns:
    minmax(0,1fr)
    auto;

  align-items: center;

  gap: 16px;

  padding:
    19px
    22px;

  list-style: none;

  cursor: pointer;

  color: var(--stb-white);

  font-size: 15px;
  font-weight: 700;

  line-height: 1.5;
}

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

.stb-faq summary::after {
  display: grid;

  width: 24px;
  height: 24px;

  place-items: center;

  border:
    1px
    solid
    var(--stb-border);

  border-radius: 50%;

  content: "+";

  color: var(--stb-text-soft);

  font-size: 17px;
}

.stb-faq details[open] summary::after {
  color: var(--stb-bg);
  border-color: var(--stb-teal);
  background: var(--stb-teal);

  content: "−";
}

.stb-faq details p {
  margin: 0;

  padding:
    0
    22px
    21px;

  color: var(--stb-text-soft);

  font-size: 14px;

  line-height: 1.7;
}


/* ==========================================================
   GENERIC / INNER PAGES
   ========================================================== */

.stb-generic-content {
  min-height: 50vh;
  color: var(--stb-text);
  background: var(--stb-bg);
}

.stb-inner-page {
  width: 100%;
  max-width: 900px;

  margin-inline: auto;

  padding:
    70px
    24px;
}

.stb-inner-page--wide {
  max-width: 1240px;
}

.stb-inner-page > h1 {
  margin: 0;

  color: var(--stb-white);

  font-size: 42px;
  line-height: 1.15;
}

.stb-inner-page > h1 + p {
  margin:
    14px
    0
    0;

  color: var(--stb-text-muted);
}

.stb-inner-page article h2,
.stb-inner-page article h3 {
  color: var(--stb-white);
}

.stb-inner-page article p {
  color: var(--stb-text-soft);
}

.stb-help-box {
  margin-top: 44px;

  padding: 32px;

  border:
    1px
    solid
    var(--stb-border);

  border-radius: var(--stb-radius);

  background: var(--stb-card);

  text-align: center;
}

.stb-help-box h2 {
  margin: 0;

  color: var(--stb-white);

  font-size: 22px;
}

.stb-help-box p {
  color: var(--stb-text-soft);
}


/* ==========================================================
   CONTACT
   ========================================================== */

.stb-contact-layout {
  display: grid;

  gap: 26px;

  margin-top: 42px;
}

.stb-contact-form {
  display: grid;

  gap: 17px;

  padding: 26px;

  border:
    1px
    solid
    var(--stb-border);

  border-radius: var(--stb-radius);

  background: var(--stb-card);

  box-shadow:
    0 15px 40px rgba(0,0,0,.24);
}

.stb-contact-form__row {
  display: grid;

  gap: 16px;
}

.stb-contact-form label {
  display: block;

  color: var(--stb-white);

  font-size: 14px;
  font-weight: 700;
}

.stb-contact-form input,
.stb-contact-form textarea {
  display: block;

  width: 100%;

  margin-top: 7px;

  padding:
    12px
    13px;

  border:
    1px
    solid
    var(--stb-border);

  border-radius: 9px;

  color: var(--stb-white);
  background: #11111e;

  outline: none;

  transition:
    border-color .2s ease,
    box-shadow .2s ease;
}

.stb-contact-form input {
  min-height: 46px;
}

.stb-contact-form textarea {
  min-height: 145px;

  resize: vertical;
}

.stb-contact-form input::placeholder,
.stb-contact-form textarea::placeholder {
  color: #71717d;
}

.stb-contact-form input:focus,
.stb-contact-form textarea:focus {
  border-color: var(--stb-teal);

  box-shadow:
    0
    0
    0
    3px
    rgba(6,214,160,.10);
}

.stb-contact-aside {
  display: grid;

  gap: 16px;
}

.stb-contact-aside article {
  padding: 24px;

  border:
    1px
    solid
    var(--stb-border);

  border-radius: var(--stb-radius);

  background: var(--stb-card);
}

.stb-contact-aside article > .stb-icon {
  color: var(--stb-teal);
}

.stb-contact-aside h2 {
  margin:
    12px
    0
    0;

  color: var(--stb-white);

  font-size: 17px;
}

.stb-contact-aside p,
.stb-contact-aside a {
  margin:
    5px
    0
    0;

  color: var(--stb-text-muted);

  font-size: 14px;

  line-height: 1.6;
}


/* ==========================================================
   FOOTER
   ========================================================== */

.stb-footer {
  color: var(--stb-white);

  background: #090910;
}

.stb-footer__grid {
  display: grid;

  gap: 38px;

  padding-block: 58px;
}

.stb-footer-logo {
  display: flex;

  align-items: center;

  gap: 11px;

  color: var(--stb-white);

  font-size: 18px;
  font-weight: 800;
}

.stb-footer-logo .stb-logo__mark {
  width: 38px;
  height: 38px;
}

.stb-footer__brand > p {
  max-width: 390px;

  margin:
    16px
    0
    0;

  color: rgba(255,255,255,.58);

  font-size: 14px;

  line-height: 1.7;
}

.stb-footer h3 {
  margin: 0;

  color: var(--stb-white);

  font-size: 13px;
  font-weight: 800;

  letter-spacing: .08em;

  text-transform: uppercase;
}

.stb-footer ul {
  display: grid;

  gap: 9px;

  margin:
    16px
    0
    0;

  padding: 0;

  list-style: none;
}

.stb-footer li {
  font-size: 14px;
}

.stb-footer li a {
  color: rgba(255,255,255,.58);

  transition: color .2s ease;
}

.stb-footer li a:hover {
  color: var(--stb-teal);
}

.stb-footer__email {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  margin-top: 16px;

  color: rgba(255,255,255,.80);
}

.stb-footer__email .stb-icon {
  width: 16px;
  height: 16px;

  color: var(--stb-teal);
}

.stb-footer__support p {
  margin:
    12px
    0
    0;

  color: rgba(255,255,255,.55);

  font-size: 13px;
}

.stb-footer__bottom {
  padding:
    20px
    24px;

  border-top:
    1px
    solid
    rgba(255,255,255,.08);

  color: rgba(255,255,255,.45);

  text-align: center;

  font-size: 12px;
}


/* ==========================================================
   STICKY FREE TRIAL BAR
   ========================================================== */

.stb-sticky-trial,
.stb-mobile-buy {
  position: fixed;

  right: 18px;
  bottom: 18px;

  z-index: 90;

  display: inline-flex;

  align-items: center;
  justify-content: center;

  gap: 8px;

  min-height: 48px;

  padding:
    12px
    20px;

  border:
    1px
    solid
    rgba(6,214,160,.35);

  border-radius: 999px;

  color: var(--stb-bg);

  background: var(--stb-teal);

  box-shadow:
    0
    12px
    32px
    rgba(0,0,0,.38),
    0
    0
    24px
    rgba(6,214,160,.22);

  font-size: 13px;
  font-weight: 900;

  transition:
    transform .2s ease,
    background .2s ease;
}

.stb-sticky-trial:hover,
.stb-mobile-buy:hover {
  color: var(--stb-bg);

  background: var(--stb-teal-dark);

  transform: translateY(-2px);
}


/* ==========================================================
   WOOCOMMERCE
   ========================================================== */

.woocommerce {
  color: var(--stb-text);
}

.woocommerce .woocommerce-breadcrumb,
.woocommerce-result-count,
.woocommerce-ordering {
  display: none;
}

.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
  margin:
    0
    0
    24px;

  padding:
    15px
    18px;

  border: 1px solid var(--stb-border);

  border-radius: 11px;

  color: var(--stb-text-soft);

  background: var(--stb-card);
}

.woocommerce-error {
  color: #fecaca;
  border-color: rgba(239,68,68,.28);
  background: rgba(127,29,29,.20);
}

.woocommerce form .form-row {
  margin:
    0
    0
    16px;

  padding: 0;
}

.woocommerce form .form-row label {
  color: var(--stb-white);

  font-size: 14px;
  font-weight: 700;
}

.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select,
.select2-container--default .select2-selection--single {
  min-height: 46px;

  padding:
    11px
    12px;

  border:
    1px
    solid
    var(--stb-border);

  border-radius: 9px;

  color: var(--stb-white);

  background: #11111e;
}

.woocommerce table.shop_table {
  overflow: hidden;

  border:
    1px
    solid
    var(--stb-border);

  border-collapse: separate;
  border-radius: 12px;

  background: var(--stb-card);
}

.woocommerce table.shop_table th,
.woocommerce table.shop_table td {
  padding: 14px;

  color: var(--stb-text-soft);

  border-color: var(--stb-border);
}


/* ==========================================================
   PRODUCT PAGE
   ========================================================== */

.stb-product-page {
  min-height: 60vh;

  padding:
    60px
    0
    90px;

  background: var(--stb-bg);
}

.stb-breadcrumbs {
  margin-bottom: 28px;

  color: var(--stb-text-muted);

  font-size: 13px;
}

.stb-breadcrumbs a {
  color: var(--stb-text-soft);
}

.stb-breadcrumbs a:hover {
  color: var(--stb-teal);
}

.stb-product-page__grid {
  display: grid;

  gap: 42px;
}

.stb-product-visual {
  position: relative;
}

.stb-product-visual__screen {
  min-height: 420px;

  display: grid;

  place-items: center;

  padding: 40px;

  border:
    1px
    solid
    var(--stb-border);

  border-radius: 22px;

  background:
    radial-gradient(
      circle at center,
      rgba(6,214,160,.10),
      transparent 58%
    ),
    var(--stb-card-solid);

  box-shadow:
    0
    25px
    60px
    rgba(0,0,0,.35);
}

.stb-product-visual__badges {
  display: flex;

  flex-wrap: wrap;

  gap: 8px;

  margin-top: 15px;
}

.stb-product-visual__badges span {
  padding:
    6px
    10px;

  border-radius: 999px;

  color: var(--stb-text-soft);

  background: #171726;

  font-size: 11px;
  font-weight: 700;
}

.stb-product-page__summary {
  padding: 34px;

  border:
    1px
    solid
    var(--stb-border);

  border-radius: 20px;

  background: var(--stb-card);

  box-shadow:
    0
    20px
    50px
    rgba(0,0,0,.28);
}

.stb-product-sale {
  display: inline-flex;

  padding:
    6px
    11px;

  border-radius: 999px;

  color: var(--stb-bg);

  background: var(--stb-orange);

  font-size: 11px;
  font-weight: 900;

  letter-spacing: .04em;

  text-transform: uppercase;
}

.stb-product-page__summary h1 {
  margin:
    16px
    0
    0;

  color: var(--stb-white);

  font-size: 42px;

  line-height: 1.1;
}

.stb-product-tagline {
  margin-top: 13px;

  color: var(--stb-text-soft);

  font-size: 16px;
}

.stb-product-plan-info {
  display: flex;

  flex-wrap: wrap;

  gap: 10px;

  margin-top: 20px;
}

.stb-product-plan-info span {
  padding:
    7px
    11px;

  border:
    1px
    solid
    var(--stb-border);

  border-radius: 8px;

  color: var(--stb-text-soft);

  background: #141422;

  font-size: 12px;
  font-weight: 700;
}

.stb-product-price {
  margin-top: 24px;

  color: var(--stb-gold);

  font-size: 46px;
  font-weight: 900;

  line-height: 1;
}

.stb-product-description {
  margin-top: 20px;

  color: var(--stb-text-soft);

  line-height: 1.75;
}

.stb-feature-list {
  display: grid;

  gap: 10px;

  margin:
    24px
    0
    0;

  padding: 0;

  list-style: none;
}

.stb-feature-list li {
  display: flex;

  align-items: flex-start;

  gap: 9px;

  color: var(--stb-text-soft);

  font-size: 14px;
}

.stb-feature-list li::before {
  content: "✓";

  flex: 0 0 auto;

  color: var(--stb-teal);

  font-weight: 900;
}

.stb-product-actions {
  display: flex;

  flex-wrap: wrap;

  gap: 12px;

  margin-top: 30px;
}

.stb-product-buy-button {
  min-width: 190px;

  color: var(--stb-white) !important;
  background: var(--stb-orange) !important;

  font-weight: 900;
}

.stb-product-buy-button:hover {
  color: var(--stb-white) !important;
  background: var(--stb-orange-dark) !important;
}

.stb-product-meta {
  display: flex;

  flex-wrap: wrap;

  gap: 15px;

  margin-top: 25px;

  padding-top: 20px;

  border-top:
    1px
    solid
    var(--stb-border);

  color: var(--stb-text-muted);

  font-size: 12px;
}

.stb-product-details {
  margin-top: 50px;
}

.stb-product-details__content {
  display: grid;

  gap: 22px;

  margin-top: 24px;
}

.stb-product-details__card {
  padding: 26px;

  border:
    1px
    solid
    var(--stb-border);

  border-radius: var(--stb-radius);

  background: var(--stb-card);
}

.stb-product-details__card h2 {
  margin: 0;

  color: var(--stb-white);

  font-size: 21px;
}

.stb-product-details__card p {
  color: var(--stb-text-soft);
}

.stb-product-faq {
  margin-top: 45px;
}

.stb-related-products {
  margin-top: 65px;
}

.stb-related-products h2 {
  color: var(--stb-white);
}

.stb-mobile-buy {
  display: none;
}


/* ==========================================================
   RESPONSIVE — 640+
   ========================================================== */

@media (min-width: 640px) {

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

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

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

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

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

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


/* ==========================================================
   RESPONSIVE — 768+
   ========================================================== */

@media (min-width: 768px) {

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

}


/* ==========================================================
   RESPONSIVE — 1024+
   ========================================================== */

@media (min-width: 1024px) {

  .stb-home-section {
    padding-block: 100px;
  }

  .stb-home-hero__grid {
    grid-template-columns:
      minmax(0,1.05fr)
      minmax(0,.95fr);

    padding-block: 106px;
  }

  .stb-home-hero h1 {
    font-size: 64px;
  }

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

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

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

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

  .stb-contact-layout {
    grid-template-columns:
      minmax(0,1fr)
      340px;
  }

  .stb-footer__grid {
    grid-template-columns:
      1.5fr
      1fr
      1fr
      1fr;
  }

  .stb-product-page__grid {
    grid-template-columns:
      minmax(0,1fr)
      minmax(0,1fr);
  }
}


/* ==========================================================
   RESPONSIVE — NAVIGATION
   ========================================================== */

@media (max-width: 1023px) {

  .stb-menu-toggle {
    display: block;
  }

  .stb-nav {
    position: absolute;

    top: 100%;
    left: 0;
    right: 0;

    display: none;

    flex-direction: column;
    align-items: stretch;

    gap: 0;

    padding:
      12px
      24px
      18px;

    border-top:
      1px
      solid
      var(--stb-border);

    background:
      rgba(15,15,26,.98);

    box-shadow:
      0
      20px
      35px
      rgba(0,0,0,.38);
  }

  .stb-nav.is-open {
    display: flex;
  }

  .stb-nav a {
    display: block;

    padding:
      12px
      0;

    border-bottom:
      1px
      solid
      rgba(255,255,255,.05);
  }

  .stb-nav a::after {
    display: none;
  }
}


/* ==========================================================
   RESPONSIVE — MOBILE
   ========================================================== */

@media (max-width: 639px) {

  body.admin-bar .stb-site-header {
    top: 46px;
  }

  .stb-shell {
    padding-inline: 18px;
  }

  .stb-announcement {
    padding:
      8px
      38px
      8px
      15px;

    font-size: 11px;
  }

  .stb-header__inner {
    min-height: 68px;
  }

  .stb-logo__name {
    font-size: 16px;
  }

  .stb-logo__tag {
    font-size: 8px;
  }

  .stb-shop-link {
    display: none;
  }

  .stb-home-hero__grid {
    gap: 44px;

    padding-block: 64px;
  }

  .stb-home-hero h1 {
    font-size: 38px;
  }

  .stb-home-hero__copy > p {
    font-size: 16px;
  }

  .stb-button-row {
    flex-direction: column;
    align-items: stretch;
  }

  .stb-button-row .stb-btn {
    width: 100%;
  }

  .stb-home-hero__visual {
    max-width: 400px;
  }

  .stb-hero-orbit {
    padding: 24px;
  }

  .stb-orbit-item {
    width: 46px;
    height: 46px;

    border-width: 2px;
    border-radius: 12px;

    font-size: 8px;
  }

  .stb-section-heading {
    margin-bottom: 35px;
  }

  .stb-section-heading h2 {
    font-size: 29px;
  }

  .stb-section-heading > span {
    font-size: 15px;
  }

  .stb-pricing-group__heading {
    display: block;
  }

  .stb-pricing-group__heading p {
    margin-top: 8px;
  }

  .stb-pricing-card {
    min-height: auto;

    padding-inline: 20px;
  }

  .stb-pricing-card__price strong {
    font-size: 46px;
  }

  .stb-pricing-card__features li {
    font-size: 13px;
  }

  .stb-stats dl {
    gap:
      24px
      14px;
  }

  .stb-stats dt {
    font-size: 30px;
  }

  .stb-inner-page {
    padding:
      48px
      18px;
  }

  .stb-inner-page > h1 {
    font-size: 34px;
  }

  .stb-contact-layout {
    gap: 22px;
  }

  .stb-sticky-trial {
    right: 12px;
    bottom: 12px;

    min-height: 44px;

    padding:
      10px
      17px;

    font-size: 12px;
  }

  .stb-product-page {
    padding:
      40px
      0
      110px;
  }

  .stb-product-visual__screen {
    min-height: 300px;
  }

  .stb-product-page__summary {
    padding: 24px;
  }

  .stb-product-page__summary h1 {
    font-size: 34px;
  }

  .stb-product-price {
    font-size: 40px;
  }

  .stb-product-actions {
    flex-direction: column;
  }

  .stb-product-buy-button {
    width: 100%;
  }

  .stb-mobile-buy {
    left: 12px;
    right: 12px;

    bottom: 12px;

    display: flex;

    border-radius: 12px;
  }
}


/* ==========================================================
   ACCESSIBILITY
   ========================================================== */

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
summary:focus-visible {
  outline:
    3px
    solid
    rgba(6,214,160,.75);

  outline-offset: 3px;
}


/* ==========================================================
   REDUCED MOTION
   ========================================================== */

@media (prefers-reduced-motion: reduce) {

  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}