/* ==========================================================
   TEACHIX HOMEPAGE — Dark Theme with Blue/Purple Gradients
   File: teachix-home.css | Astra child theme | v2
   ========================================================== */

/* ---------- VARIABLES ---------- */
:root {
  --tx-bg: #0a0b14;
  --tx-bg-card: #111225;
  --tx-bg-card-hover: #181a32;
  --tx-surface: #14152a;
  --tx-border: rgba(99, 102, 241, 0.10);
  --tx-text: #e2e4f0;
  --tx-text-dim: #8b8fa8;
  --tx-text-muted: #5c5f7a;
  --tx-blue: #3b82f6;
  --tx-purple: #8b5cf6;
  --tx-indigo: #6366f1;
  --tx-cyan: #22d3ee;
  --tx-snow: #29B5E8;
  --tx-gradient: linear-gradient(135deg, #3b82f6, #8b5cf6);

  --tx-font-mono: 'JetBrains Mono', monospace;
  --tx-radius: 12px;
  --tx-radius-lg: 16px;
  --tx-max-w: 1120px;
}

#mysticky-nav.wrapfixed {
  background-color: rgb(13, 9, 25, .75);
  border-bottom-width: 1px;
  border-bottom-color: rgba(41, 181, 232, 0.15);
  border-bottom-style: solid;
}

/* ---------- RESET / BASE ---------- */
.tx-home {
  background: var(--tx-bg);
  color: var(--tx-text);
  line-height: 1.6;
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
  min-width: 100%;
  margin-top: -65px;
}
.tx-home *, .tx-home *::before, .tx-home *::after { box-sizing: border-box; }
.tx-home a { text-decoration: none; color: inherit; }

/* ============================
   ANIMATIONS
   ============================ */
@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: .4; } }
@keyframes orbDrift1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(30px, -20px) scale(1.05); }
  50% { transform: translate(-15px, 15px) scale(0.97); }
  75% { transform: translate(20px, 25px) scale(1.03); }
}
@keyframes orbDrift2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(-25px, 20px) scale(1.04); }
  50% { transform: translate(20px, -15px) scale(0.96); }
  75% { transform: translate(-10px, -25px) scale(1.02); }
}
@keyframes floatUp {
  0% { transform: translateY(0) scale(1); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translateY(-100vh) scale(0.5); opacity: 0; }
}
@keyframes glowPulse {
  0%, 100% { opacity: .12; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: .18; transform: translate(-50%, -50%) scale(1.08); }
}

/* ============================
   HERO
   ============================ */
.tx-hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 100px 32px 80px;
  width: 100%;
  background: var(--tx-bg);
}
.tx-hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
}
.tx-hero__orb--1 { width: 480px; height: 480px; background: rgba(59, 130, 246, .18); top: -8%; left: -4%; animation: orbDrift1 18s ease-in-out infinite; }
.tx-hero__orb--2 { width: 380px; height: 380px; background: rgba(139, 92, 246, .14); bottom: -10%; right: -3%; animation: orbDrift2 22s ease-in-out infinite; }
/* Centered glow behind headline */
.tx-hero__glow-center {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 400px;
  background: radial-gradient(ellipse, rgba(139, 92, 246, .14) 0%, transparent 65%);
  pointer-events: none;
  animation: glowPulse 6s ease-in-out infinite;
}
/* Secondary blue glow */
.tx-hero__glow-secondary {
  position: absolute;
  top: 40%; left: 60%;
  transform: translate(-50%, -50%);
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(59, 130, 246, .10) 0%, transparent 60%);
  pointer-events: none;
  animation: orbDrift2 15s ease-in-out infinite;
}
/* Decorative ring */
.tx-hero__ring {
  position: absolute;
  bottom: 12%; right: 8%;
  width: 180px; height: 180px;
  border-radius: 50%;
  border: 1px solid rgba(99, 102, 241, .06);
  pointer-events: none;
  animation: orbDrift1 25s ease-in-out infinite;
}
.tx-hero__ring::after {
  content: '';
  position: absolute;
  inset: 20px;
  border-radius: 50%;
  border: 1px solid rgba(99, 102, 241, .04);
}
/* Floating particles */
.tx-hero__particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.tx-hero__particle {
  position: absolute;
  width: 3px; height: 3px;
  border-radius: 50%;
  background: rgba(99, 102, 241, .25);
  animation: floatUp linear infinite;
}
.tx-hero__grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(99, 102, 241, .03) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(99, 102, 241, .03) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse 60% 55% at 50% 40%, black, transparent);
  -webkit-mask-image: radial-gradient(ellipse 60% 55% at 50% 40%, black, transparent);
}
.tx-hero__content { position: relative; z-index: 1; max-width: 680px; }
.tx-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--tx-font-mono);
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--tx-cyan);
  background: rgba(34, 211, 238, .06);
  border: 1px solid rgba(34, 211, 238, .14);
  padding: 7px 18px;
  border-radius: 100px;
  margin-bottom: 32px;
  animation: fadeUp .7s ease both;
}
.tx-hero__badge::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--tx-cyan);
  animation: pulse 2s ease-in-out infinite;
}
.tx-hero__title {
  
  font-size: clamp(2.6rem, 6vw, 4.2rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -.035em;
  margin: 0 0 24px;
}
.tx-hero__word { display: inline-block; animation: fadeUp .7s ease both; }
.tx-hero__word--1 { color: var(--tx-blue); animation-delay: .12s; }
.tx-hero__word--2 { color: var(--tx-purple); animation-delay: .24s; }
.tx-hero__word--3 { background: var(--tx-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; animation-delay: .36s; }
.tx-hero__desc {
  font-size: 1.05rem;
  color: var(--tx-text-dim);
  max-width: 500px;
  margin: 0 auto 40px;
  line-height: 1.7;
  animation: fadeUp .7s ease .5s both;
}
.tx-hero__cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; animation: fadeUp .7s ease .65s both; }

/* ============================
   BUTTONS
   ============================ */
.tx-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  
  font-size: .9rem;
  font-weight: 600;
  padding: 13px 28px;
  border-radius: 100px;
  transition: all .25s ease;
  cursor: pointer;
  border: none;
}
.tx-btn--primary { background: var(--tx-gradient); color: #fff; box-shadow: 0 4px 20px rgba(99, 102, 241, .25); }
.tx-btn--primary:hover { box-shadow: 0 6px 28px rgba(99, 102, 241, .45); transform: translateY(-2px); filter: brightness(1.1); }
.tx-btn--primary:active { transform: translateY(0); filter: brightness(.95); }
.tx-btn--ghost { background: transparent; color: var(--tx-text-dim); border: 1px solid rgba(99, 102, 241, .15); }
.tx-btn--ghost:hover { border-color: var(--tx-indigo); color: #fff; background: rgba(99, 102, 241, .06); }
.tx-btn--snow { background: var(--tx-snow); color: #0a0b14; font-weight: 700; box-shadow: 0 4px 16px rgba(41, 181, 232, .25); }
.tx-btn--snow:hover { box-shadow: 0 6px 24px rgba(41, 181, 232, .4); transform: translateY(-2px); }
.tx-btn--linkedin { background: #0A66C2; color: #fff;max-width: fit-content; }
.tx-btn--linkedin:hover { background: #0852a0; transform: translateY(-2px); }

/* ============================
   SECTION LAYOUT
   ============================ */
.tx-section { padding: 100px 32px; position: relative; }
/* Alternating backgrounds */
.tx-section:nth-child(odd) { background: var(--tx-bg); }
.tx-section:nth-child(even) { background: #0d0e1a; }
/* Section divider */
.tx-section + .tx-section::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: min(90%, var(--tx-max-w));
  height: 1px;
  background: rgba(255, 255, 255, .06);
}
.tx-section__inner { max-width: var(--tx-max-w); margin: 0 auto; }
.tx-section__label {
	max-width:fit-content;
  font-family: var(--tx-font-mono);
  font-size: .7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--tx-indigo);
  margin-bottom: 12px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(99, 102, 241, .06);
  border: 1px solid rgba(99, 102, 241, .12);
  padding: 5px 14px;
  border-radius: 100px;
}
.tx-section__title {
  
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: #fff;
  letter-spacing: -.025em;
  margin: 12px 0 8px;
}
.tx-section__sub { color: var(--tx-text-dim); font-size: .92rem; margin: 0 0 48px; }

/

/* ============================
   SNOWPRO BANNER — REDESIGNED
   Replace the existing "SNOWPRO BANNER" block in teachix-home.css
   ============================ */

.tx-snowpro {
  padding: 0 32px;
  margin-top: -40px;
  position: relative;
  z-index: 2;
}

.tx-snowpro__inner {
  max-width: var(--tx-max-w);
  margin: 0 auto;
  position: relative;
  background: var(--tx-surface);
  border: 1px solid rgba(41, 181, 232, .14);
  border-radius: var(--tx-radius-lg);
  padding: 44px 48px 40px;
  overflow: hidden;
  /* NEW: single-column centered layout */
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.tx-snowpro__glow {
  position: absolute;
  top: -40%;
  left: 50%;
  transform: translateX(-50%);
  width: 500px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(41, 181, 232, .10) 0%, transparent 70%);
  pointer-events: none;
}

/* --- Logo row --- */
.tx-snowpro__logo {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 8px;
  position: relative;
  z-index: 1;
  justify-content: center;
}



.tx-snowpro__series {
  display: block;

  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.5;
  text-align: left;
}

.tx-snowpro__days {
  display: block;

  font-size: 1.4rem;
  font-weight: 700;
  color: var(--tx-snow);
  line-height: 1.5;
  text-align: left;
}



/* --- Description --- */
.tx-snowpro__desc {
  color: var(--tx-text-dim);
  font-size: .9rem;
  margin: 0 0 20px;
  max-width: 520px;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

/* --- Launch date badge: more prominent --- */
.tx-snowpro__launch {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--tx-font-mono);
  font-size: .82rem;
  letter-spacing: .03em;
  color: #c8d8e0;
  background: rgba(41, 181, 232, .07);
  border: 1px solid rgba(41, 181, 232, .25);
  border-radius: 100px;
  padding: 10px 24px;
  margin: 0 0 24px;
  position: relative;
  z-index: 1;
}

.tx-snowpro__launch::before {
  content: '🚀';
  font-size: .9rem;
}

.tx-snowpro__launch strong {
  color: var(--tx-snow);
  font-weight: 700;
  font-size: .88rem;
}

/* --- Notify Me button: bigger, glowing --- */
.tx-btn--snow {
  background: var(--tx-snow);
  color: #0a0b14;
  font-weight: 700;
  font-size: 1rem;
  padding: 15px 56px;
  letter-spacing: .01em;
  box-shadow: 0 4px 24px rgba(41, 181, 232, .35),
              0 0 0 0 rgba(41, 181, 232, .2);
  position: relative;
  z-index: 1;
  transition: box-shadow .25s, transform .25s;
}

.tx-btn--snow:hover {
	background: var(--tx-snow);
  color: #0a0b14;
  box-shadow: 0 6px 32px rgba(41, 181, 232, .55),
              0 0 0 6px rgba(41, 181, 232, .08)!important;
  transform: translateY(-2px)!important;
}

/* ============================
   RESPONSIVE — SnowPro
   ============================ */
@media (max-width: 1024px) {
  .tx-snowpro__inner { padding: 40px 36px; }
}

@media (max-width: 768px) {
  .tx-snowpro         { padding: 0 24px; margin-top: -28px; }
  .tx-snowpro__inner  { padding: 32px 28px; gap:12px;}
  .tx-snowpro__series,
  .tx-snowpro__days   { font-size: 1.2rem; }
  .tx-snowpro__icon   { width: 100px; height: 100px; }
	.ast-primary-header-bar, #ast-hf-mobile-menu {
		background-color: rgba(10, 10, 30);
	color:#ffffff;}
	.ast-builder-menu-mobile .main-navigation .main-header-menu .menu-item > .menu-link,     .ast-builder-menu-mobile .main-navigation .main-header-menu .menu-item:hover > .menu-link{
		background-color: rgba(10, 10, 30);
	color:#ffffff!important;
	}
	#ast-hf-mobile-menu{
		box-shadow: 0 0px 64px rgba(99, 102, 241, .45);
	}
}

@media (max-width: 600px) {
  .tx-snowpro         { padding: 0 16px; }
  .tx-snowpro__inner  { padding: 28px 20px; gap:8px;}
  .tx-snowpro__logo   { flex-direction: column; align-items: center; gap: 10px; }
  .tx-snowpro__series,
  .tx-snowpro__days   { text-align: center; font-size: 1.1rem; }
  .tx-snowpro__stat-num { font-size: 1.8rem; }
  .tx-btn--snow       { padding: 14px 36px; font-size: .95rem; width: 100%; max-width: 320px; justify-content: center; }
		.ast-primary-header-bar, #ast-hf-mobile-menu {
		background-color: rgba(10, 10, 30);
	color:#ffffff;}
	.ast-builder-menu-mobile .main-navigation .main-header-menu .menu-item > .menu-link,     .ast-builder-menu-mobile .main-navigation .main-header-menu .menu-item:hover > .menu-link{
		background-color: rgba(10, 10, 30);
	color:#ffffff!important;
	}
	#ast-hf-mobile-menu{
		box-shadow: 0 0px 64px rgba(99, 102, 241, .45);
	}
}


/* ============================
   CATEGORY CARDS
   ============================ */
.tx-categories__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.tx-card {
  position: relative;
  background: linear-gradient(180deg, rgba(17, 18, 37, 1) 0%, rgba(10, 11, 20, 1) 100%);
  border: 1px solid var(--tx-border);
  border-radius: var(--tx-radius-lg);
  padding: 32px 28px 28px;
  transition: all .3s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.tx-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  opacity: .6;
  transition: opacity .3s;
}
.tx-card--snow { border-color: rgba(41, 181, 232, .12); }
.tx-card--de { border-color: rgba(139, 92, 246, .12); }
.tx-card--py { border-color: rgba(59, 130, 246, .12); }
.tx-card--snow::after { background: var(--tx-snow); }
.tx-card--de::after { background: var(--tx-purple); }
.tx-card--py::after { background: var(--tx-blue); }
@media (hover: hover) {
  .tx-card:hover { transform: translateY(-4px); }
  .tx-card:hover::after { opacity: 1; }
  .tx-card--snow:hover { border-color: rgba(41, 181, 232, .3); box-shadow: 0 12px 36px rgba(41, 181, 232, .08); }
  .tx-card--de:hover { border-color: rgba(139, 92, 246, .3); box-shadow: 0 12px 36px rgba(139, 92, 246, .08); }
  .tx-card--py:hover { border-color: rgba(59, 130, 246, .3); box-shadow: 0 12px 36px rgba(59, 130, 246, .08); }
}
.tx-card__icon { width: 40px; height: 40px; margin-bottom: 18px; opacity: .9; }
.tx-card__title { font-size: 1.05rem; font-weight: 600; color: #fff; margin: 0 0 8px; }
.tx-card__desc { color: var(--tx-text-dim); font-size: .84rem; line-height: 1.65; margin: 0; flex: 1; }
.tx-card__status {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: var(--tx-font-mono);
  font-size: .68rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-top: 18px;
  padding: 5px 12px;
  border-radius: 100px;
  width: fit-content;
}
/* Launching — green */
.tx-card__status--launching { color: #34d399; background: rgba(52, 211, 153, .06); border: 1px solid rgba(52, 211, 153, .15); }
.tx-card__status--launching::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: #34d399; animation: pulse 2s ease-in-out infinite; }
/* Coming Soon — muted */
.tx-card__status--soon { color: var(--tx-text-muted); background: rgba(92, 95, 122, .08); border: 1px solid rgba(92, 95, 122, .15); }
.tx-card__status--soon::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--tx-text-muted); opacity: .7; }

/* ============================
   CS FUNDAMENTALS
   ============================ */
.tx-section--cs { background: #0e1020 !important; }
.tx-cs__header { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 12px; gap: 16px; flex-wrap: wrap; }
.tx-cs__live-badge {
  font-family: var(--tx-font-mono);
  font-size: .65rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: #34d399;
  background: rgba(52, 211, 153, .06);
  border: 1px solid rgba(52, 211, 153, .15);
  padding: 5px 14px;
  border-radius: 100px;
  white-space: nowrap;
  margin-top: 4px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.tx-cs__live-badge::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: #34d399; animation: pulse 2s ease-in-out infinite; }
.tx-cs__grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(190px, 1fr)); gap: 12px; }
.tx-cs-card { display: flex; align-items: center; gap: 12px; background: var(--tx-bg-card); border: 1px solid rgba(148,163,184,.06); border-radius: var(--tx-radius); padding: 16px 18px; transition: all .25s; }
@media (hover: hover) {
  .tx-cs-card:hover { background: var(--tx-bg-card-hover); border-color: rgba(148,163,184,.15); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,.2); }
  .tx-cs-card:hover .tx-cs-card__arrow { color: #94a3b8; transform: translateX(3px); }
}
.tx-cs-card__icon { width: 32px; height: 32px; flex-shrink: 0; }
.tx-cs-card__title { font-size: .8rem; font-weight: 600; color: #c8cce0; flex: 1; line-height: 1.3; }
.tx-cs-card__arrow { font-size: .9rem; color: var(--tx-text-muted); transition: all .25s; flex-shrink: 0; }

/* ============================
   LATEST POSTS
   ============================ */
.tx-posts__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.tx-post { background: var(--tx-bg-card); border: 1px solid var(--tx-border); border-left: 3px solid var(--tx-indigo); border-radius: var(--tx-radius); padding: 22px 24px; transition: all .25s; display: flex; flex-direction: column; gap: 10px; }
@media (hover: hover) {
  .tx-post:hover { border-color: rgba(99,102,241,.2); border-left-color: var(--tx-indigo); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,.18); background: var(--tx-bg-card-hover); }
  .tx-post:hover .tx-post__title { color: var(--tx-indigo); }
}
.tx-post__meta { display: flex; align-items: center; gap: 10px; }
.tx-post__cat { font-family: var(--tx-font-mono); font-size: .65rem; text-transform: uppercase; letter-spacing: .1em; color: var(--tx-indigo); background: rgba(99,102,241,.06); padding: 3px 9px; border-radius: 4px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.tx-post__date { font-size: .72rem; color: var(--tx-text-muted); }
.tx-post__title { font-size: .95rem; font-weight: 600; color: #fff; line-height: 1.4; transition: color .25s; }

/* ============================
   FAQ + ROADMAP
   ============================ */
.tx-faq-road { background: var(--tx-surface); border-top: 1px solid var(--tx-border); border-bottom: 1px solid var(--tx-border); }
.tx-faq-road__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; }
.tx-faq__list { display: flex; flex-direction: column; gap: 10px; }
.tx-faq-item { background: var(--tx-bg-card); border: 1px solid var(--tx-border); border-radius: var(--tx-radius); overflow: hidden; transition: border-color .25s; }
.tx-faq-item[open] { border-color: rgba(99,102,241,.2); }
.tx-faq-item__q {  font-size: .88rem; font-weight: 600; color: #fff; padding: 16px 20px; cursor: pointer; list-style: none; display: flex; align-items: center; justify-content: space-between; transition: background .2s; }
.tx-faq-item__q:hover { background: rgba(99,102,241,.03); }
.tx-faq-item__q::-webkit-details-marker { display: none; }
.tx-faq-item__q::after { content: '+'; font-size: 1.2rem; color: var(--tx-indigo); font-weight: 400; flex-shrink: 0; margin-left: 12px; }
.tx-faq-item[open] .tx-faq-item__q::after { content: '−'; }
.tx-faq-item__a { padding: 0 20px 18px; color: var(--tx-text-dim); font-size: .84rem; line-height: 1.7; }

.tx-roadmap__list { position: relative; padding-left: 24px; }
.tx-roadmap__list::before { content: ''; position: absolute; left: 5px; top: 8px; bottom: 8px; width: 2px; background: rgba(99,102,241,.12); border-radius: 2px; }
.tx-roadmap-item { position: relative; padding-bottom: 24px; }
.tx-roadmap-item:last-child { padding-bottom: 0; }
.tx-roadmap-item__dot { position: absolute; left: -22px; top: 5px; width: 12px; height: 12px; border-radius: 50%; background: var(--tx-bg-card); border: 2px solid var(--tx-text-muted); z-index: 1; }
/* Active/Launching — green */
.tx-roadmap-item--active .tx-roadmap-item__dot { background: #34d399; border-color: #34d399; box-shadow: 0 0 10px rgba(52, 211, 153, .35); }
/* Up Next — amber */
.tx-roadmap-item--next .tx-roadmap-item__dot { background: #f59e0b; border-color: #f59e0b; box-shadow: 0 0 8px rgba(245, 158, 11, .25); }
/* Planned — muted */
.tx-roadmap-item--planned .tx-roadmap-item__dot { background: var(--tx-bg-card); border-color: var(--tx-text-muted); }
.tx-roadmap-item__status {
  font-family: var(--tx-font-mono);
  font-size: .6rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--tx-text-muted);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 3px 10px;
  border-radius: 100px;
  margin-bottom: 4px;
}
.tx-roadmap-item--active .tx-roadmap-item__status { color: #34d399; background: rgba(52, 211, 153, .08); border: 1px solid rgba(52, 211, 153, .15); }
.tx-roadmap-item--next .tx-roadmap-item__status { color: #f59e0b; background: rgba(245, 158, 11, .08); border: 1px solid rgba(245, 158, 11, .15); }
.tx-roadmap-item--planned .tx-roadmap-item__status { background: rgba(92, 95, 122, .08); border: 1px solid rgba(92, 95, 122, .12); }
.tx-roadmap-item__title { font-size: .88rem; font-weight: 600; color: #fff; margin: 0 0 3px; }
.tx-roadmap-item__desc { font-size: .78rem; color: var(--tx-text-dim); margin: 0; line-height: 1.5; }
/* Featured active item */
.tx-roadmap-item--active {
  background: rgba(52, 211, 153, .03);
  border: 1px solid rgba(52, 211, 153, .08);
  border-radius: var(--tx-radius);
  padding: 16px 16px 16px 24px;
  margin-left: -16px;
  margin-bottom: 8px;
}

/* ============================
   ABOUT + NEWSLETTER (bottom row)
   ============================ */
.tx-bottom-row { padding: 100px 32px; background: #0d0e1a; }
.tx-bottom-row__inner { max-width: var(--tx-max-w); margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: start; }
.tx-about-card { background: var(--tx-bg-card); border: 1px solid var(--tx-border); border-radius: var(--tx-radius-lg); padding: 40px 36px; display: flex; flex-direction: column; }
.tx-about__header { display: flex; align-items: center; gap: 18px; margin-bottom: 18px; }
.tx-about__avatar {
  width: 60px; height: 60px; border-radius: 50%;
  background: linear-gradient(135deg, var(--tx-indigo), var(--tx-purple));
  border: 2px solid rgba(99,102,241,.25);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 1.2rem; color: #fff; flex-shrink: 0;
}
.tx-about__name { font-size: 1.3rem; font-weight: 700; color: #fff; margin: 0; }
.tx-about__bio { color: var(--tx-text-dim); font-size: .88rem; line-height: 1.7; margin: 0 0 16px; }
.tx-about__tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 22px; }
.tx-about__tag {
  font-family: var(--tx-font-mono);
  font-size: .62rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--tx-text-dim);
  background: rgba(99, 102, 241, .05);
  border: 1px solid rgba(99, 102, 241, .1);
  padding: 4px 10px;
  border-radius: 6px;
}
.tx-nl-card { background: linear-gradient(160deg, #14152a 0%, #1a1040 100%); border: 1px solid rgba(99, 102, 241, .15); border-radius: var(--tx-radius-lg); padding: 40px 36px; position: relative; overflow: hidden; text-align: center; }
.tx-nl-card__glow { position: absolute; top: -60%; right: -20%; width: 300px; height: 300px; background: radial-gradient(circle, rgba(139, 92, 246, .10) 0%, transparent 60%); pointer-events: none; }
.tx-nl-card__content { position: relative; z-index: 1; }
.tx-nl-card__title { font-size: 1.3rem; font-weight: 700; color: #fff; margin: 16px 0 8px; }
.tx-nl-card__desc { color: var(--tx-text-dim); font-size: .88rem; margin: 0 0 28px; line-height: 1.6; }
.tx-nl-card__form { display: flex; flex-direction: column; gap: 10px; }
.tx-nl-card__input {
  padding: 14px 18px !important;
  border: 1px solid rgba(99, 102, 241, .2) !important;
  border-radius: var(--tx-radius) !important;
  background: var(--tx-bg-card) !important;
  color: var(--tx-text) !important;
  font-size: .9rem !important;
  outline: none !important;
  transition: border-color .25s, box-shadow .25s !important;
  width: 100% !important;
}

.tx-nl-card__input::placeholder {
  color: var(--tx-text-muted) !important;
}

.tx-nl-card__input:focus {
  border-color: var(--tx-indigo) !important;
  box-shadow: 0 0 0 3px rgba(99, 102, 241, .1) !important;
}
.tx-nl-card__note { font-size: .72rem; color: var(--tx-text-muted); margin-top: 8px; }

form button.tx-btn.tx-btn--primary {
    margin: 12px 0px 4px 0px;
}

/* ============================
   RESPONSIVE
   ============================ */
@media (max-width: 1024px) {
  .tx-snowpro__inner { gap: 28px; padding: 36px 32px; }
  .tx-categories__grid { gap: 16px; }
}
@media (max-width: 900px) {
  .tx-snowpro__inner { grid-template-columns: 1fr; }
  .tx-snowpro__stats { justify-content: flex-start; }
  .tx-categories__grid { grid-template-columns: 1fr 1fr; }
  .tx-faq-road__grid { grid-template-columns: 1fr; gap: 48px; }
  .tx-bottom-row__inner { grid-template-columns: 1fr; }
  .tx-posts__grid { grid-template-columns: 1fr; }
  .tx-nl-card { text-align: center; }
}
@media (max-width: 768px) {
  .tx-section { padding: 72px 24px; }
  .tx-bottom-row { padding: 72px 24px; }
  .tx-snowpro { padding: 0 24px; margin-top: -28px; }
  .tx-snowpro__inner { padding: 28px 24px;gap:8px; }
  .tx-cs__grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); }
  .tx-hero__glow-center { width: 400px; height: 280px; }
  .tx-hero__glow-secondary { width: 250px; height: 250px; }
  .tx-roadmap-item--active { margin-left: -8px; padding: 14px 14px 14px 20px; }
}
@media (max-width: 600px) {
  .tx-hero { min-height: 75vh; padding: 100px 20px 60px; }
  .tx-hero__orb--1 { width: 280px; height: 280px; }
  .tx-hero__orb--2 { width: 220px; height: 220px; }
  .tx-hero__glow-center { width: 300px; height: 200px; }
  .tx-hero__glow-secondary { width: 180px; height: 180px; }
  .tx-hero__ring { display: none; }
  .tx-hero__cta { flex-direction: column; align-items: center; }
  .tx-snowpro { padding: 0 16px; }
  .tx-snowpro__inner { padding: 24px 20px; gap:8px;}
  .tx-snowpro__stats { flex-wrap: wrap; gap: 10px; }
  .tx-snowpro__stat { flex: 1; min-width: 80px; padding: 12px 14px; }
  .tx-section { padding: 60px 16px; }
  .tx-bottom-row { padding: 60px 16px; }
  .tx-categories__grid { grid-template-columns: 1fr; }
  .tx-cs__grid { grid-template-columns: 1fr 1fr; }
  .tx-faq-road__grid { gap: 40px; }
  .tx-about-card, .tx-nl-card { padding: 28px 22px; }
  .tx-about__header { gap: 12px; }
  .tx-about__avatar { width: 48px; height: 48px; font-size: 1rem; }
  .tx-about__name { font-size: 1.1rem; }
  .tx-about__tags { gap: 5px; }
  .tx-roadmap-item--active { margin-left: 0; padding: 12px 12px 12px 20px; }
}

/* Kill all Astra container padding and width limits */
 .site-content,
 #content,
 #primary,
.site-content .ast-container,
 .site-main,
 .entry-content,
.page-container,
 .ast-single-post,
 article {
  max-width: 100% !important;
  width: 100% !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

/* ==========================================================
   TEACHIX HOME — Newsletter Form States
   Append to teachix-home.css
   ========================================================== */

/* Submit button spinner */
.tx-nl-submit { position: relative; overflow: hidden; }

.tx-nl-submit__spinner {
  display: none;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255, 255, 255, .3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: tx-spin .7s linear infinite;
  margin: 0 auto;
}
@keyframes tx-spin { to { transform: rotate(360deg); } }

/* Status message */
.tx-nl-status {
  display: none;
  font-family: var(--tx-font-mono);
  font-size: .75rem;
  line-height: 1.5;
  padding: 10px 14px;
  border-radius: var(--tx-radius);
  margin-top: 10px;
}
.tx-nl-status--success {
  color: #34d399;
  background: rgba(52, 211, 153, .07);
  border: 1px solid rgba(52, 211, 153, .15);
}
.tx-nl-status--error {
  color: #f87171;
  background: rgba(248, 113, 113, .07);
  border: 1px solid rgba(248, 113, 113, .15);
}

/* Input error shake */
.tx-nl-card__input--error {
  border-color: rgba(248, 113, 113, .4) !important;
  animation: tx-shake .3s ease;
}
@keyframes tx-shake {
  0%, 100% { transform: translateX(0); }
  25%       { transform: translateX(-5px); }
  75%       { transform: translateX(5px); }
}
