:root {
  --ttz-black: #000002;
  --ttz-dark: #151719;
  --ttz-card: #25282c;
  --ttz-card-border: #33363a;
  --ttz-white: #ffffff;
  --ttz-muted: #9ba9b4;
  --ttz-purple: #6e3bf7;
  --ttz-purple-hover: #562fe7;
  --ttz-purple-soft: #c4b5fd;
  --ttz-container: 72rem;
  --ttz-header-height: 5rem;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--ttz-black);
  color: var(--ttz-white);
  font-family: Inter, system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

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

[data-reveal] {
  opacity: 0;
  transform: translate3d(0, 10px, 0);
  transition: opacity .6s ease-out, transform .6s ease-out;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

.site-shell {
  min-height: 100vh;
  overflow-x: hidden;
}

.ttz-container {
  width: min(100% - 2rem, var(--ttz-container));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  width: 100%;
  min-height: var(--ttz-header-height);
  border-bottom: 1px solid rgba(21, 23, 25, .8);
  background: rgba(0, 0, 2, .94);
  box-shadow: 0 1px 10px rgba(19, 21, 23, .45), 0 2px 1px rgba(0, 0, 0, .35);
}

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

.site-header__inner {
  min-height: var(--ttz-header-height);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.25rem;
}

.site-logo,
.site-footer__brand {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  font-weight: 800;
  font-size: 1.6rem;
  line-height: 1;
  letter-spacing: 0;
}

.site-logo__mark {
  width: 1.25rem;
  height: 1.25rem;
  display: grid;
  grid-template-columns: repeat(2, .5rem);
  grid-template-rows: repeat(2, .5rem);
  gap: .25rem;
}

.site-logo__mark span {
  display: block;
  background: #6d5dfc;
}

.site-logo__mark span:first-child {
  grid-column: 1;
  grid-row: 1;
}

.site-logo__mark span:nth-child(2) {
  grid-column: 2;
  grid-row: 1;
}

.site-logo__mark span:nth-child(3) {
  grid-column: 2;
  grid-row: 2;
}

.site-nav {
  display: none;
  justify-self: end;
}

.site-nav__list,
.mobile-nav__list,
.site-footer__menu {
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-nav__list {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  color: var(--ttz-muted);
  font-size: .95rem;
  font-weight: 500;
}

.site-header__cta,
.site-nav__list .menu-cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.5rem;
  padding: .5rem 1.125rem;
  background: var(--ttz-purple);
  color: var(--ttz-white);
  font-weight: 700;
  white-space: nowrap;
}

.site-header__cta:hover {
  background: var(--ttz-purple-hover);
}

.site-nav__list a:hover,
.mobile-nav__list a:hover,
.site-footer__menu a:hover {
  color: var(--ttz-white);
}

.site-menu-toggle {
  display: inline-flex;
  width: 2.75rem;
  height: 2.75rem;
  flex-direction: column;
  justify-content: center;
  gap: .3rem;
  border: 0;
  color: var(--ttz-white);
  background: transparent;
  cursor: pointer;
}

.site-header__cta {
  display: none;
}

.site-menu-toggle span:not(.screen-reader-text) {
  display: block;
  width: 1.5rem;
  height: 2px;
  background: currentColor;
}

.mobile-nav {
  display: none;
  padding: 0 1rem 1rem;
}

.mobile-nav.is-open {
  display: block;
}

.mobile-nav__list {
  background: var(--ttz-card);
  padding: .75rem 1rem;
}

.mobile-nav__list a {
  display: block;
  padding: .6rem 0;
  color: var(--ttz-muted);
}

.ttz-hero {
  position: relative;
  min-height: 100vh;
  background: var(--ttz-black);
  overflow: hidden;
}

.ttz-hero::after {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 2, .98) 0%, rgba(0, 0, 2, .92) 38%, rgba(0, 0, 2, .2) 68%, transparent 100%);
  pointer-events: none;
}

.ttz-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-position: 100% center;
  background-repeat: no-repeat;
  background-size: cover;
}

.ttz-hero__bg--off {
  background-image:
    linear-gradient(90deg, #000002 0%, rgba(0, 0, 2, .9) 39%, rgba(0, 0, 2, .35) 78%, rgba(0, 0, 2, .08) 100%),
    radial-gradient(circle at 78% 36%, rgba(142, 77, 255, .18), transparent 27%),
    radial-gradient(circle at 68% 70%, rgba(255, 45, 101, .16), transparent 18%),
    linear-gradient(135deg, rgba(37, 40, 44, .18), transparent 48%);
}

.ttz-hero__bg--on {
  opacity: .35;
  background-image: radial-gradient(circle at 72% 42%, rgba(110, 59, 247, .4), transparent 26%);
  animation: ttz-flicker 5s 2s infinite;
}

.ttz-hero__content {
  position: relative;
  z-index: 4;
  width: min(100% - 2rem, var(--ttz-container));
  max-width: var(--ttz-container);
  margin-inline: auto;
  padding-top: 28vh;
}

.ttz-hero__content h1,
.ttz-hero__content p,
.ttz-hero__content .ttz-actions {
  max-width: 40rem;
}

.ttz-neon-rocket {
  position: absolute;
  z-index: 1;
  top: 7.5rem;
  right: max(1rem, calc((100vw - var(--ttz-container)) / 2 - 3rem));
  width: min(48vw, 42rem);
  pointer-events: none;
  opacity: .96;
}

.ttz-neon-rocket svg {
  width: 100%;
  height: auto;
  overflow: visible;
}

.ttz-neon-rocket__tilt {
  transform-origin: 50% 50%;
  animation: ttz-rocket-float 7s ease-in-out infinite;
}

.ttz-neon-rocket__body,
.ttz-neon-rocket__window,
.ttz-neon-rocket__flame,
.ttz-neon-rocket__trail {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: url(#ttz-neon-glow);
}

.ttz-neon-rocket__body {
  stroke: url(#ttz-rocket-stroke);
  stroke-width: 15;
  animation: ttz-neon-pulse 4.8s ease-in-out infinite;
}

.ttz-neon-rocket__window {
  stroke: #8c5cff;
  stroke-width: 13;
  animation: ttz-neon-pulse 3.7s ease-in-out infinite .4s;
}

.ttz-neon-rocket__flame {
  stroke: url(#ttz-flame-stroke);
  stroke-width: 15;
  animation: ttz-flame-pulse 1.7s ease-in-out infinite;
}

.ttz-neon-rocket__flame--inner {
  stroke-width: 10;
  animation-delay: .25s;
}

.ttz-neon-rocket__trail {
  stroke: rgba(212, 75, 255, .35);
  stroke-width: 4;
  filter: none;
}

.ttz-hero h1,
.ttz-section__heading h1,
.ttz-section__heading h2,
.ttz-content h1 {
  margin: 0 0 1rem;
  font-size: clamp(2.5rem, 6vw, 3.75rem);
  line-height: 1.05;
  font-weight: 800;
  overflow-wrap: anywhere;
}

.ttz-hero p,
.ttz-section__heading p {
  max-width: 46rem;
  margin: 0;
  color: var(--ttz-muted);
  font-size: 1.25rem;
  line-height: 1.55;
}

.ttz-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.ttz-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: .75rem 1.5rem;
  font-weight: 500;
  line-height: 1.2;
  transition: background-color .15s ease-in-out, color .15s ease-in-out;
}

.ttz-btn--small {
  min-height: 2.5rem;
  padding: .5rem 1rem;
  font-size: .875rem;
}

.ttz-btn--primary {
  background: var(--ttz-purple);
  color: var(--ttz-white);
}

.ttz-btn--primary:hover {
  background: var(--ttz-purple-hover);
}

.ttz-btn--secondary {
  background: #33363a;
  color: var(--ttz-white);
}

.ttz-btn--secondary:hover {
  background: #25282c;
}

.ttz-section {
  padding: 4rem 0;
  background: var(--ttz-black);
}

.ttz-section--top {
  padding-top: 8rem;
}

.ttz-section--black {
  background: var(--ttz-black);
}

.ttz-section--transition {
  background: linear-gradient(var(--ttz-dark), var(--ttz-black));
}

.ttz-section__heading {
  max-width: 48rem;
  margin: 0 auto 3rem;
  text-align: center;
}

.ttz-section__heading--compact {
  margin-top: 4rem;
  margin-bottom: 2rem;
}

.ttz-card-grid {
  display: grid;
  gap: 1.25rem;
}

.ttz-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  align-items: flex-start;
  padding: 1.5rem;
  background: var(--ttz-card);
}

.ttz-card--compact {
  min-height: auto;
}

.ttz-card--compact .ttz-btn {
  margin-top: auto;
}

.ttz-card h2,
.ttz-card h3 {
  margin: 0 0 .75rem;
  font-size: 1.5rem;
  line-height: 1.25;
}

.ttz-card p {
  color: var(--ttz-muted);
  line-height: 1.6;
}

.ttz-card__price {
  margin-top: auto;
  color: var(--ttz-purple-soft) !important;
  font-family: "Architects Daughter", cursive;
  font-size: 1.25rem;
}

.ttz-eyebrow {
  margin: 0 0 .75rem !important;
  color: var(--ttz-purple-soft) !important;
  font-family: "Architects Daughter", cursive;
  font-size: 1.05rem;
}

.ttz-link {
  margin-top: auto;
  color: var(--ttz-purple-soft);
  font-weight: 600;
}

.ttz-logo-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .5rem;
}

.ttz-logo-card {
  min-height: 6rem;
  display: grid;
  place-items: center;
  gap: .35rem;
  padding: 1rem;
  color: var(--ttz-muted);
}

.ttz-logo-card span {
  display: grid;
  width: 3rem;
  height: 3rem;
  place-items: center;
  border: 1px solid var(--ttz-card-border);
  color: var(--ttz-purple-soft);
  font-weight: 800;
}

.ttz-logo-card strong {
  color: var(--ttz-muted);
  font-size: .9rem;
}

.ttz-service-cta {
  display: grid;
  justify-items: center;
  gap: 2rem;
  margin-top: 6rem;
}

.ttz-service-cta ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.25rem;
  margin: 0;
  padding: 0;
  list-style: none;
  color: #9ec6e1;
  font-size: 1.125rem;
}

.ttz-service-cta li::before {
  content: "✓";
  margin-right: .5rem;
  color: #42e48a;
}

.ttz-service-card {
  display: flex;
  min-height: 13rem;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.35rem;
  background: var(--ttz-card);
}

.ttz-service-card__content h3 {
  margin: 0 0 .6rem;
  color: var(--ttz-white);
  font-size: 1.35rem;
  line-height: 1.25;
  font-weight: 800;
}

.ttz-service-card__content h3 span {
  margin-left: .25rem;
  font-size: 1.1rem;
}

.ttz-service-card__content p {
  max-width: 35rem;
  margin: 0;
  color: #9ec6e1;
  font-size: 1rem;
  line-height: 1.55;
}

.ttz-service-card__footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 1rem;
  margin-top: 2rem;
}

.ttz-service-card__price {
  color: var(--ttz-purple-soft);
  font-family: "Architects Daughter", cursive;
  font-size: 1.15rem;
  line-height: 1;
}

.ttz-service-card__footer .ttz-btn {
  min-width: 7.125rem;
}

.ttz-split,
.ttz-detail,
.ttz-cta__inner {
  display: grid;
  gap: 2rem;
}

.ttz-split h2,
.ttz-cta h2,
.ttz-detail h1 {
  margin: 0 0 1rem;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
}

.ttz-split p,
.ttz-cta p {
  color: var(--ttz-muted);
  font-size: 1.125rem;
  line-height: 1.65;
}

.ttz-steps {
  display: grid;
  gap: 1rem;
}

.ttz-step {
  display: grid;
  gap: .35rem;
  padding: 1rem 0;
  border-top: 1px solid var(--ttz-card-border);
}

.ttz-step span {
  color: var(--ttz-purple-soft);
  font-family: "Architects Daughter", cursive;
}

.ttz-step strong {
  font-size: 1.25rem;
}

.ttz-get-started {
  background: var(--ttz-dark);
}

.ttz-get-started .ttz-container {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, .08);
}

.ttz-get-started .ttz-section__heading {
  max-width: 46rem;
}

.ttz-get-started .ttz-section__heading h2 {
  font-size: clamp(2.25rem, 5vw, 3rem);
}

.ttz-get-started__steps {
  display: grid;
  gap: 2rem;
  margin: 4.5rem 0 0;
  text-align: center;
}

.ttz-get-started__step {
  position: relative;
  display: grid;
  justify-items: center;
}

.ttz-get-started__icon {
  display: grid;
  width: 3.5rem;
  height: 3.5rem;
  place-items: center;
  margin-bottom: 1.15rem;
  border-radius: 999px;
  background: #34383e;
  color: var(--ttz-white);
  font-size: 1.25rem;
}

.ttz-get-started__step h3 {
  margin: 0 0 .75rem;
  font-size: 1.35rem;
  line-height: 1.25;
}

.ttz-get-started__step p {
  max-width: 19rem;
  margin: 0;
  color: #9ec6e1;
  line-height: 1.55;
}

.ttz-get-started__step a {
  color: var(--ttz-purple);
}

.ttz-service-cta--compact {
  margin-top: 4.5rem;
}

.ttz-testimonial blockquote {
  margin: 0;
  color: var(--ttz-muted);
  line-height: 1.65;
}

.ttz-stars {
  color: var(--ttz-purple-soft) !important;
  letter-spacing: .15em;
}

.ttz-proof .ttz-section__heading {
  margin-bottom: 5rem;
}

.ttz-quote-grid {
  display: grid;
  gap: 4rem;
}

.ttz-proof .ttz-testimonial {
  align-items: center;
  background: transparent;
  text-align: center;
}

.ttz-proof .ttz-testimonial::before {
  content: "";
  display: block;
  width: 3.25rem;
  height: 3.25rem;
  margin-bottom: .75rem;
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .95), rgba(155, 169, 180, .38)),
    radial-gradient(circle at 35% 35%, #fff, transparent 28%);
  box-shadow: 18px -3px 0 -12px var(--ttz-purple), 28px -3px 0 -12px var(--ttz-purple);
}

.ttz-proof .ttz-testimonial blockquote {
  max-width: 36rem;
  font-size: 1.125rem;
}

.ttz-proof .ttz-person {
  justify-content: center;
}

.ttz-proof .ttz-person span {
  display: none;
}

.ttz-proof-logos {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
  margin: 5rem 0;
  color: rgba(255, 255, 255, .25);
  font-size: clamp(1.75rem, 4vw, 2.65rem);
  font-weight: 800;
  line-height: 1;
  text-align: center;
  filter: grayscale(1);
}

.ttz-proof-logos span {
  opacity: .55;
}

.ttz-person {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-top: 1.5rem;
}

.ttz-person span {
  display: grid;
  width: 2.5rem;
  height: 2.5rem;
  place-items: center;
  background: var(--ttz-purple);
  color: var(--ttz-white);
  font-weight: 800;
}

.ttz-person strong {
  display: block;
}

.ttz-person p {
  margin: .15rem 0 0;
  font-size: .9rem;
}

.ttz-content {
  max-width: 48rem;
  padding-top: 6rem;
}

.ttz-detail .ttz-content {
  padding-top: 0;
}

.ttz-content p {
  color: var(--ttz-muted);
  line-height: 1.75;
}

.ttz-detail__price {
  color: var(--ttz-purple-soft);
  font-family: "Architects Daughter", cursive;
  font-size: 1.4rem;
}

.ttz-side-card {
  align-self: start;
  padding: 1.5rem;
  background: var(--ttz-card);
}

.ttz-side-card h2 {
  margin: 0 0 .75rem;
  font-size: 1.5rem;
}

.ttz-side-card p {
  color: var(--ttz-muted);
  line-height: 1.6;
}

.ttz-form {
  display: grid;
  gap: 1rem;
}

.ttz-form label {
  display: grid;
  gap: .5rem;
  color: var(--ttz-muted);
}

.ttz-form input {
  min-height: 3rem;
  border: 1px solid var(--ttz-card-border);
  background: var(--ttz-black);
  color: var(--ttz-white);
  padding: .75rem 1rem;
}

.ttz-cta {
  padding: 4rem 0;
  background: var(--ttz-purple);
}

.ttz-cta p {
  color: rgba(255, 255, 255, .78);
}

.ttz-btn--light {
  background: #ede9fe;
  color: var(--ttz-purple);
}

.ttz-template-archive {
  min-height: 100vh;
  padding: 7.5rem 0 5rem;
  background: var(--ttz-black);
}

.ttz-template-hero {
  max-width: 54rem;
  margin: 0 auto 6rem;
  text-align: center;
}

.ttz-template-hero h1 {
  margin: 0 0 1.25rem;
  color: var(--ttz-white);
  font-size: clamp(3.25rem, 7vw, 5rem);
  line-height: .98;
  font-weight: 900;
}

.ttz-template-hero p {
  margin: 0;
  color: #9ec6e1;
  font-size: 1.25rem;
  line-height: 1.35;
}

.ttz-template-grid {
  display: grid;
  gap: 1.25rem;
}

.ttz-template-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  background: var(--ttz-card);
}

.ttz-template-card__media {
  position: relative;
  display: block;
  min-height: 19rem;
  overflow: hidden;
  background: #d7d2c7;
}

.ttz-template-card__media::before,
.ttz-template-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
}

.ttz-template-card__media::after {
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 2, .08) 100%);
}

.ttz-template-card__media span {
  position: absolute;
  z-index: 2;
  top: 1rem;
  right: 1rem;
  padding: .35rem .75rem;
  border-radius: 999px;
  background: rgba(0, 0, 2, .78);
  color: var(--ttz-white);
  font-size: .75rem;
  font-weight: 800;
}

.ttz-template-card__media--planner {
  background:
    linear-gradient(90deg, rgba(244, 231, 201, .5), transparent 60%),
    linear-gradient(135deg, #efe9d9, #a7c3c9);
}

.ttz-template-card__media--planner::before {
  inset: 3rem 4rem 2rem 5rem;
  border-radius: .25rem;
  background:
    repeating-linear-gradient(0deg, rgba(42, 57, 71, .12) 0 1px, transparent 1px 24px),
    repeating-linear-gradient(90deg, rgba(42, 57, 71, .12) 0 1px, transparent 1px 24px),
    #f4ead8;
  transform: rotate(-8deg);
  box-shadow: 12rem 2rem 0 -8rem rgba(92, 64, 51, .55);
}

.ttz-template-card__media--planner::after {
  inset: 6rem 9rem auto auto;
  width: 9rem;
  height: 1.2rem;
  border-radius: 999px;
  background: #1d2430;
  transform: rotate(-32deg);
  box-shadow: -4rem 3rem 0 -.45rem rgba(110, 59, 247, .65), -7rem 4.8rem 0 -.48rem rgba(21, 23, 25, .45);
}

.ttz-template-card__media--salesnav {
  background:
    linear-gradient(115deg, rgba(255,255,255,.8), rgba(255,255,255,.1) 36%, rgba(0,0,0,.05) 37%),
    linear-gradient(135deg, #ececec, #7b8797);
}

.ttz-template-card__media--salesnav::before {
  inset: 2.5rem 3rem;
  border: .75rem solid #141821;
  border-radius: .25rem;
  background:
    radial-gradient(circle at 22% 52%, #1b1f2a 0 1.8rem, transparent 1.9rem),
    linear-gradient(90deg, #eef3f8 0 45%, #ffffff 45% 100%);
  box-shadow: inset 0 3rem 0 #1d2330, inset 0 3.4rem 0 #364151;
  transform: perspective(700px) rotateY(-8deg);
}

.ttz-template-card__media--salesnav::after {
  inset: 5.7rem auto auto 15rem;
  width: 8rem;
  height: 3rem;
  background: linear-gradient(90deg, #2867b2, #4285f4, #db4437, #f4b400, #0f9d58);
  filter: blur(.2px);
}

.ttz-template-card__media--research {
  background:
    radial-gradient(circle at 30% 35%, rgba(110, 59, 247, .45), transparent 24%),
    linear-gradient(135deg, #26303a, #0d1117);
}

.ttz-template-card__media--research::before {
  inset: 3.5rem 4rem;
  background:
    repeating-linear-gradient(0deg, rgba(255,255,255,.14) 0 1px, transparent 1px 2.25rem),
    linear-gradient(90deg, rgba(255,255,255,.08), rgba(255,255,255,.02));
}

.ttz-template-card__media--outreach {
  background:
    radial-gradient(circle at 70% 30%, rgba(110, 59, 247, .45), transparent 20%),
    linear-gradient(135deg, #f5f2e8, #87909f);
}

.ttz-template-card__media--outreach::before {
  inset: 4rem 5rem;
  background:
    linear-gradient(#fff, #fff) 0 0 / 100% 3rem no-repeat,
    repeating-linear-gradient(0deg, #e8edf2 0 1px, transparent 1px 2.1rem),
    #ffffff;
  transform: rotate(4deg);
  box-shadow: -3rem 2rem 0 -1rem rgba(37, 40, 44, .32);
}

.ttz-template-card__body {
  display: flex;
  min-height: 15rem;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
  padding: 1.5rem;
}

.ttz-template-card__body h2 {
  margin: 0 0 .85rem;
  font-size: 1.5rem;
  line-height: 1.32;
}

.ttz-template-card__body p {
  margin: 0 0 1.75rem;
  color: #9ec6e1;
  font-size: 1.1rem;
  line-height: 1.48;
}

.ttz-template-card__body .ttz-btn {
  margin-top: auto;
}

.ttz-article-shell {
  padding: 7rem 0 5rem;
  background: var(--ttz-black);
}

.ttz-article-layout {
  display: grid;
  gap: 3rem;
}

.ttz-article-sidebar {
  display: none;
}

.ttz-toc,
.ttz-newsletter-box,
.ttz-newsletter-wide,
.ttz-article-offer {
  padding: 1.25rem;
  background: var(--ttz-card);
}

.ttz-toc h2,
.ttz-newsletter-box h2,
.ttz-newsletter-wide h2,
.ttz-article-offer h3 {
  margin: 0 0 .75rem;
  font-size: 1rem;
  line-height: 1.3;
}

.ttz-toc a {
  color: var(--ttz-muted);
  font-size: .95rem;
}

.ttz-newsletter-box p,
.ttz-newsletter-wide p,
.ttz-article-offer p {
  color: var(--ttz-muted);
  line-height: 1.55;
}

.ttz-article-main {
  min-width: 0;
}

.ttz-article-header {
  max-width: 52rem;
}

.ttz-article-header h1 {
  margin: 0 0 1rem;
  color: var(--ttz-white);
  font-size: clamp(2.75rem, 6vw, 4.25rem);
  line-height: 1.05;
  font-weight: 900;
}

.ttz-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin: 1rem 0 1.25rem;
}

.ttz-tags a {
  color: var(--ttz-purple-soft);
  font-weight: 700;
}

.ttz-post-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .6rem;
  color: var(--ttz-muted);
  font-size: .95rem;
}

.ttz-post-meta a {
  color: var(--ttz-purple-soft);
}

.ttz-author-avatar {
  display: grid;
  width: 2.5rem;
  height: 2.5rem;
  place-items: center;
  border-radius: 999px;
  background: linear-gradient(135deg, #e5e7eb, #4b5563);
  color: var(--ttz-black);
  font-weight: 900;
}

.ttz-article-hero {
  position: relative;
  min-height: 21rem;
  margin: 2rem 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 70% 25%, rgba(110, 59, 247, .3), transparent 18%),
    linear-gradient(135deg, #f0ead7, #8aa2ad);
}

.ttz-article-hero::before {
  content: "";
  position: absolute;
  inset: 3rem 7rem 2rem 7rem;
  background:
    repeating-linear-gradient(0deg, rgba(42, 57, 71, .12) 0 1px, transparent 1px 24px),
    repeating-linear-gradient(90deg, rgba(42, 57, 71, .12) 0 1px, transparent 1px 24px),
    #f5ead9;
  transform: rotate(-6deg);
}

.ttz-article-hero::after {
  content: "";
  position: absolute;
  top: 8rem;
  right: 11rem;
  width: 10rem;
  height: 1.3rem;
  border-radius: 999px;
  background: #1d2430;
  transform: rotate(-32deg);
  box-shadow: -5rem 3rem 0 -.45rem rgba(110, 59, 247, .65), -8rem 5rem 0 -.48rem rgba(21, 23, 25, .45);
}

.ttz-article-hero span {
  position: absolute;
  z-index: 2;
  left: 2rem;
  bottom: 2rem;
  max-width: 22rem;
  color: var(--ttz-white);
  font-size: 2rem;
  font-weight: 900;
  line-height: 1.1;
  text-shadow: 0 2px 16px rgba(0, 0, 0, .45);
}

.ttz-article-content {
  max-width: 52rem;
  padding-top: 0;
}

.ttz-article-content h2,
.ttz-article-content h3,
.ttz-article-content h4 {
  color: var(--ttz-white);
  line-height: 1.25;
}

.ttz-article-content h2 {
  margin-top: 4rem;
  font-size: 2.25rem;
}

.ttz-article-content h3 {
  margin-top: 2rem;
  font-size: 1.5rem;
}

.ttz-article-content h4 {
  margin-top: 2rem;
  font-size: 1.35rem;
}

.ttz-article-content ul {
  color: var(--ttz-muted);
  line-height: 1.75;
}

.ttz-article-content a {
  color: var(--ttz-purple-soft);
  text-decoration: underline;
}

.ttz-article-offer {
  margin: 2rem 0;
  border: 1px solid rgba(110, 59, 247, .35);
  box-shadow: 0 0 60px rgba(110, 59, 247, .12);
}

.ttz-newsletter-wide {
  max-width: 52rem;
  margin: 4rem 0 2rem;
}

.ttz-article-back {
  max-width: 52rem;
  padding-top: 2rem;
  border-top: 1px solid var(--ttz-card-border);
}

.ttz-article-back a {
  color: var(--ttz-muted);
}

.ttz-signpost-shell {
  padding: 8rem 0 6rem;
  background: var(--ttz-dark);
}

.ttz-signpost-container {
  max-width: 43rem;
}

.ttz-signpost-header {
  margin-bottom: 7rem;
}

.ttz-signpost-header h1 {
  margin: 0 0 1.35rem;
  color: var(--ttz-white);
  font-size: clamp(2.7rem, 6vw, 3.85rem);
  line-height: 1.08;
  font-weight: 900;
}

.ttz-signpost-header p,
.ttz-signpost-content p,
.ttz-signpost-content li {
  color: #9ec6e1;
  font-size: 1.05rem;
  line-height: 1.65;
}

.ttz-signpost-content h2 {
  margin: 6.5rem 0 2rem;
  color: var(--ttz-white);
  font-size: clamp(2.25rem, 5vw, 3rem);
  line-height: 1.12;
  font-weight: 900;
}

.ttz-signpost-content h3 {
  margin: 3rem 0 1rem;
  color: var(--ttz-white);
  font-size: 1.65rem;
  line-height: 1.25;
}

.ttz-signpost-content h4 {
  margin: 2rem 0 1rem;
  color: var(--ttz-white);
  font-size: 1.25rem;
}

.ttz-signpost-content strong {
  color: var(--ttz-white);
}

.ttz-signpost-content a {
  color: var(--ttz-purple-soft);
  text-decoration: underline;
}

.ttz-signpost-content figure,
.ttz-signpost-content .wp-block-image,
.ttz-signpost-content .wp-block-embed,
.ttz-signpost-content .wp-block-table,
.ttz-signpost-content table {
  width: 100%;
  margin: 2rem 0;
}

.ttz-signpost-content img,
.ttz-signpost-content iframe {
  max-width: 100%;
}

.ttz-signpost-content table {
  border-collapse: collapse;
  color: #9ec6e1;
}

.ttz-signpost-content th,
.ttz-signpost-content td {
  border: 1px solid rgba(255, 255, 255, .55);
  padding: .8rem;
  vertical-align: top;
}

.ttz-element {
  color: var(--ttz-white);
}

.ttz-active-tab {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(110, 59, 247, .45), transparent);
}

.ttz-element-cta {
  max-width: 52rem;
  margin: 3rem 0;
  padding: 1.5rem;
  background: var(--ttz-card);
  border: 1px solid rgba(110, 59, 247, .35);
}

.ttz-element-cta h2 {
  margin: 0 0 .75rem;
  font-size: 1.75rem;
}

.ttz-element-cta p,
.ttz-archive-note {
  color: var(--ttz-muted);
  line-height: 1.65;
}

.ttz-archive-note {
  max-width: 44rem;
  margin: 0 auto 2rem;
  text-align: center;
}

.ttz-directory-archive .ttz-section__heading h1 {
  font-size: clamp(3.25rem, 8vw, 4.75rem);
  font-weight: 900;
}

.ttz-directory-archive--tool .ttz-section__heading {
  max-width: 56rem;
}

.ttz-tool-built-grid,
.ttz-tool-stack-grid {
  display: grid;
  gap: 1.25rem;
}

.ttz-tool-built-grid {
  margin-top: 3.5rem;
}

.ttz-tool-built-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  background: var(--ttz-card);
}

.ttz-tool-built-card__media {
  position: relative;
  display: block;
  min-height: 11rem;
  overflow: hidden;
  background:
    linear-gradient(90deg, #f7f7f7 0 55%, #060112 55% 100%),
    radial-gradient(circle at 80% 40%, rgba(110, 59, 247, .35), transparent 20%);
}

.ttz-tool-built-card__media::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(30deg, rgba(255, 255, 255, .14) 0 1px, transparent 1px 1.25rem),
    radial-gradient(circle at 76% 62%, rgba(255, 255, 255, .8) 0 .2rem, transparent .25rem);
  opacity: .75;
}

.ttz-tool-built-card__media--research {
  background:
    linear-gradient(90deg, #c61030 0 36%, #f7f7f7 36% 100%),
    radial-gradient(circle at 72% 40%, rgba(110, 59, 247, .25), transparent 22%);
}

.ttz-tool-built-card__media span {
  position: absolute;
  z-index: 2;
  top: .8rem;
  right: .8rem;
  padding: .25rem .6rem;
  border-radius: 999px;
  background: rgba(0, 0, 2, .78);
  color: var(--ttz-white);
  font-size: .72rem;
  font-weight: 800;
}

.ttz-tool-built-card__media strong {
  position: absolute;
  z-index: 2;
  left: 1rem;
  bottom: 1rem;
  width: min(68%, 17rem);
  color: #050507;
  font-size: 1.45rem;
  line-height: 1.1;
  font-weight: 900;
}

.ttz-tool-built-card__body {
  display: flex;
  min-height: 14.75rem;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
  padding: 1.25rem;
}

.ttz-tool-built-card__body h3,
.ttz-tool-stack-card h3 {
  margin: 0 0 .75rem;
  color: var(--ttz-white);
  font-size: 1.35rem;
  line-height: 1.25;
}

.ttz-tool-built-card__body p,
.ttz-tool-stack-card p {
  margin: 0 0 1.5rem;
  color: #9ec6e1;
  line-height: 1.55;
}

.ttz-tool-built-card__body .ttz-btn {
  width: 100%;
  margin-top: auto;
}

.ttz-tool-stack-heading {
  margin-top: 5rem;
}

.ttz-tool-stack-grid {
  margin-top: 3rem;
}

.ttz-tool-stack-card {
  display: flex;
  min-height: 11.875rem;
  flex-direction: column;
  padding: 1.25rem;
  background: var(--ttz-card);
}

.ttz-tool-stack-card__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  margin-top: auto;
}

.ttz-tool-stack-card__actions .ttz-btn {
  min-width: 8rem;
}

.ttz-blog-archive {
  min-height: 100vh;
  padding: 8rem 0 5rem;
  background: var(--ttz-dark);
}

.ttz-blog-hero {
  max-width: 46rem;
  margin-bottom: 3rem;
}

.ttz-blog-hero h1 {
  margin: 0;
  color: var(--ttz-white);
  font-size: clamp(3rem, 6vw, 4rem);
  line-height: 1.12;
  font-weight: 900;
}

.ttz-tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  margin-bottom: 3rem;
}

.ttz-tag-chip {
  display: inline-flex;
  align-items: center;
  min-height: 1.65rem;
  padding: .3rem .6rem;
  border-radius: 999px;
  background: #20252b;
  color: #9ec6e1;
  font-size: .8rem;
  font-weight: 600;
  line-height: 1;
}

.ttz-tag-chip span {
  color: var(--ttz-muted);
}

.ttz-tag-chip.is-active,
.ttz-tag-chip:hover {
  background: var(--ttz-purple);
  color: var(--ttz-white);
}

.ttz-latest-posts h2 {
  margin: 0 0 1.75rem;
  padding-top: 2rem;
  border-top: 1px solid var(--ttz-card-border);
  font-size: 1.4rem;
}

.ttz-blog-grid {
  display: grid;
  gap: 2rem 1.25rem;
}

.ttz-blog-card {
  min-width: 0;
}

.ttz-blog-card__media {
  position: relative;
  display: block;
  min-height: 10.25rem;
  overflow: hidden;
  background:
    linear-gradient(90deg, #f536a9 0 50%, #f7f7f7 50% 100%),
    radial-gradient(circle at 85% 30%, rgba(110, 59, 247, .3), transparent 18%);
}

.ttz-blog-card__media::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 70% 50%, rgba(0, 0, 2, .18) 0 .25rem, transparent .3rem),
    repeating-linear-gradient(30deg, rgba(255, 255, 255, .16) 0 1px, transparent 1px 1.35rem);
  opacity: .8;
}

.ttz-blog-card__media--salesnav,
.ttz-blog-card__media--tool {
  background:
    linear-gradient(90deg, #f536a9 0 48%, #2d3142 48% 100%),
    radial-gradient(circle at 80% 44%, #8c5cff, transparent 20%);
}

.ttz-blog-card__media--planner,
.ttz-blog-card__media--article {
  background:
    linear-gradient(90deg, #f536a9 0 50%, #f8f4ee 50% 100%),
    linear-gradient(135deg, #f536a9, #f8b3db);
}

.ttz-blog-card__media span {
  position: absolute;
  z-index: 2;
  left: 1rem;
  bottom: 1rem;
  width: min(45%, 12rem);
  color: var(--ttz-white);
  font-weight: 900;
  line-height: 1.2;
}

.ttz-blog-card__body {
  padding-top: .75rem;
}

.ttz-blog-card h3 {
  margin: 0 0 .6rem;
  font-size: 1.18rem;
  line-height: 1.28;
}

.ttz-blog-card p {
  margin: 0;
  color: #9ec6e1;
  line-height: 1.55;
}

.ttz-blog-card__meta {
  display: grid;
  grid-template-columns: 1.75rem minmax(0, 1fr) auto;
  align-items: center;
  gap: .5rem;
  margin-top: 1rem;
  color: #9ec6e1;
  font-size: .8rem;
}

.ttz-blog-card__meta .ttz-author-avatar {
  width: 1.75rem;
  height: 1.75rem;
  font-size: .8rem;
}

.ttz-blog-card__meta strong {
  min-width: 0;
  overflow: hidden;
  color: var(--ttz-white);
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ttz-blog-card__meta time {
  white-space: nowrap;
}

.site-footer {
  background: var(--ttz-black);
  padding: 4.5rem 0 3rem;
}

.site-footer__grid {
  display: grid;
  gap: 2.5rem;
  color: var(--ttz-muted);
}

.site-footer__brand-col {
  min-height: 21rem;
  display: flex;
  flex-direction: column;
}

.site-footer__description {
  max-width: 24rem;
  color: #9ec6e1;
  font-size: .9rem;
  line-height: 1.55;
}

.site-footer h2 {
  margin: 0 0 .55rem;
  color: var(--ttz-white);
  font-size: .8rem;
  line-height: 1.2;
  font-weight: 900;
  text-transform: uppercase;
}

.site-footer__nav h2:not(:first-child) {
  margin-top: 1.45rem;
}

.site-footer__menu,
.site-footer__tool-list {
  display: grid;
  gap: .42rem;
  margin: 0;
  padding: 0;
  list-style: none;
  color: #9ec6e1;
  font-size: .9rem;
  line-height: 1.35;
}

.site-footer__tool-list {
  grid-template-columns: 1fr;
  column-gap: 2rem;
}

.site-footer__all {
  color: var(--ttz-purple-soft);
}

.site-footer__social {
  display: flex;
  gap: .75rem;
  margin-top: auto;
  padding-top: 3rem;
}

.site-footer__social a {
  display: grid;
  width: 1.75rem;
  height: 1.75rem;
  place-items: center;
  border-radius: 999px;
  background: #20242a;
  color: var(--ttz-purple-soft);
  font-size: .78rem;
  font-weight: 800;
}

.site-footer__social a:first-child {
  background:
    radial-gradient(circle at 34% 48%, #fff23b 0 33%, transparent 34%),
    radial-gradient(circle at 66% 48%, #22d160 0 33%, transparent 34%),
    #20242a;
}

.site-footer__copy {
  margin: 1rem 0 0;
  color: #9ec6e1;
  font-size: .78rem;
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@keyframes ttz-flicker {
  0%, 19%, 23%, 100% { opacity: .35; }
  20% { opacity: .08; }
  21% { opacity: .55; }
}

@keyframes ttz-neon-pulse {
  0%, 100% {
    opacity: .92;
  }
  18% {
    opacity: .65;
  }
  20% {
    opacity: 1;
  }
  22% {
    opacity: .72;
  }
  48% {
    opacity: 1;
  }
  50% {
    opacity: .78;
  }
}

@keyframes ttz-flame-pulse {
  0%, 100% {
    opacity: .9;
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    opacity: 1;
    transform: translate3d(-5px, 8px, 0) scale(1.05);
  }
}

@keyframes ttz-rocket-float {
  0%, 100% {
    transform: translate3d(0, 0, 0) rotate(-4deg);
  }
  50% {
    transform: translate3d(0, -10px, 0) rotate(-3deg);
  }
}

@media (min-width: 48rem) {
  .site-nav {
    display: block;
  }

  .site-header__cta {
    display: inline-flex;
  }

  .site-menu-toggle,
  .mobile-nav {
    display: none !important;
  }

  .ttz-card-grid--two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ttz-card-grid--three,
  .ttz-split,
  .ttz-detail,
  .ttz-cta__inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ttz-logo-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .ttz-get-started__steps {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .ttz-get-started__step:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 1.75rem;
    left: calc(50% + 3rem);
    width: calc(100% - 6rem);
    border-top: 1px dashed rgba(255, 255, 255, .14);
  }

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

  .ttz-proof-logos {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .ttz-cta__inner {
    align-items: center;
  }

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

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

  .ttz-tool-built-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .ttz-tool-stack-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ttz-article-layout {
    grid-template-columns: 16rem minmax(0, 1fr);
    align-items: start;
  }

  .ttz-article-sidebar {
    position: sticky;
    top: 7rem;
    display: grid;
    gap: 1rem;
  }

  .site-footer__grid {
    grid-template-columns: minmax(0, 1fr) minmax(12rem, .65fr) minmax(24rem, 1.6fr);
    align-items: start;
  }

  .site-footer__tool-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 64rem) {
  .ttz-section {
    padding: 5rem 0;
  }

  .ttz-card-grid--three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

@media (min-width: 72rem) {
  .ttz-hero__content {
    margin-inline: auto;
  }
}

@media (max-width: 68rem) and (min-width: 48rem) {
  .site-nav__list {
    gap: 1rem;
    font-size: .875rem;
  }

  .site-header__cta {
    padding-inline: .9rem;
    font-size: .9rem;
  }

  .ttz-neon-rocket {
    right: -9rem;
    width: 42rem;
    opacity: .62;
  }
}

@media (max-width: 47.9375rem) {
  .admin-bar .site-header {
    top: 46px;
  }

  .site-header {
    min-height: 4.5rem;
  }

  .site-header__inner {
    min-height: 4.5rem;
    grid-template-columns: 1fr auto;
    gap: 1rem;
  }

  .site-logo {
    min-width: 0;
    font-size: 1.35rem;
  }

  .site-logo span:last-child {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .mobile-nav {
    padding-inline: 1rem;
  }

  .ttz-hero {
    min-height: 46rem;
  }

  .ttz-hero::after {
    background: linear-gradient(180deg, rgba(0, 0, 2, .86) 0%, rgba(0, 0, 2, .98) 52%, rgba(0, 0, 2, .98) 100%);
  }

  .ttz-neon-rocket {
    top: 4.5rem;
    right: -8rem;
    width: 30rem;
    opacity: .28;
  }

  .ttz-hero__content {
    padding-top: 14rem;
  }

  .ttz-hero__content h1 {
    font-size: clamp(2.45rem, 13vw, 3.25rem);
    line-height: 1.08;
  }

  .ttz-hero p,
  .ttz-section__heading p,
  .ttz-template-hero p {
    font-size: 1.05rem;
  }

  .ttz-actions,
  .ttz-service-cta ul {
    flex-direction: column;
    align-items: stretch;
  }

  .ttz-btn {
    width: 100%;
  }

  .ttz-service-card {
    min-height: 12rem;
  }

  .ttz-service-card__footer {
    grid-template-columns: 1fr;
    align-items: stretch;
  }

  .ttz-section,
  .ttz-cta {
    padding-block: 3.5rem;
  }

  .ttz-section__heading {
    margin-bottom: 2rem;
  }

  .ttz-card,
  .ttz-template-card__body,
  .ttz-side-card,
  .ttz-toc,
  .ttz-newsletter-box,
  .ttz-newsletter-wide,
  .ttz-article-offer {
    padding: 1.25rem;
  }

  .ttz-template-archive,
  .ttz-article-shell {
    padding-top: 6.5rem;
  }

  .ttz-signpost-shell {
    padding: 6.5rem 0 4rem;
  }

  .ttz-signpost-header {
    margin-bottom: 4rem;
  }

  .ttz-signpost-header h1 {
    font-size: clamp(2.5rem, 12vw, 3.25rem);
  }

  .ttz-signpost-content h2 {
    margin-top: 4rem;
  }

  .ttz-template-hero {
    margin-bottom: 3rem;
  }

  .ttz-template-hero h1,
  .ttz-article-header h1,
  .ttz-blog-hero h1,
  .ttz-directory-archive .ttz-section__heading h1 {
    font-size: clamp(2.55rem, 13vw, 3.4rem);
  }

  .ttz-blog-archive {
    padding-top: 6.5rem;
  }

  .ttz-tag-cloud {
    gap: .45rem;
  }

  .ttz-blog-card__media {
    min-height: 12rem;
  }

  .ttz-tool-built-grid,
  .ttz-tool-stack-grid {
    gap: 1rem;
  }

  .ttz-tool-stack-card__actions {
    flex-direction: column;
  }

  .ttz-tool-stack-card__actions .ttz-btn {
    width: 100%;
  }

  .ttz-blog-card__meta {
    grid-template-columns: 1.75rem minmax(0, 1fr);
  }

  .ttz-blog-card__meta time {
    grid-column: 2;
  }

  .ttz-template-card__media {
    min-height: 13.5rem;
  }

  .ttz-template-card__media--planner::before,
  .ttz-template-card__media--outreach::before {
    inset: 2.25rem 2rem;
  }

  .ttz-template-card__media--planner::after {
    inset: 5rem 5rem auto auto;
  }

  .ttz-template-card__media--salesnav::before {
    inset: 2rem 1.5rem;
  }

  .ttz-template-card__media--salesnav::after {
    inset: 5rem auto auto 8rem;
  }

  .ttz-article-hero {
    min-height: 15rem;
  }

  .ttz-article-hero::before {
    inset: 2.5rem 2rem 2rem;
  }

  .ttz-article-hero::after {
    top: 6rem;
    right: 4rem;
  }

  .ttz-article-hero span {
    left: 1.25rem;
    bottom: 1.25rem;
    font-size: 1.45rem;
  }

  .ttz-post-meta {
    align-items: flex-start;
    flex-direction: column;
  }

  .ttz-proof-logos {
    grid-template-columns: 1fr;
    font-size: 2rem;
  }

  .site-footer__grid {
    gap: 1.25rem;
  }
}
