/*
Theme Name: Informative Generic
Theme URI: mr.sarkar.webdev
Author: MR.SARKAR.WEBDEV
Author URI: mr.sarkar.webdev@gmail.com
Description: Custom WordPress Theme For Informative Generic
Version: 1.0
Text Domain: mgtech
*/

/* ============================================================
   TOKEN SYSTEM — brand colors extracted from logo
   Primary red: #8F1617  (exact brand crimson)
   Dark red:    #6B0F10  (hover / deep states)
   Light red:   #B94244  (tints, accents)
   Red pale:    #F9ECEC  (backgrounds, chips)
   Navy:        #0A1628  (dark sections)
   Navy mid:    #1E3A5F  (cards on dark)
   Off-white:   #F8F5F2  (cream sections)
============================================================ */
:root {
  --red:        #8F1617;
  --red-dark:   #6B0F10;
  --red-light:  #B94244;
  --red-pale:   #F9ECEC;
  --red-border: rgba(143,22,23,0.2);
  --navy:       #0A1628;
  --navy-mid:   #1E3A5F;
  --cream:      #F8F5F2;
  --white:      #FFFFFF;
  --text-dark:  #0D1B2A;
  --text-muted: #5A6A7A;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;
  --max-w: 1160px;
  --radius: 4px;
  --radius-lg: 12px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--text-dark); background: var(--white); line-height: 1.6; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.eyebrow { font-size: 11px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--red); margin-bottom: 14px; display: block; }
.eyebrow.light { color: #E87C7D; }
.section-title { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; line-height: 1.15; color: var(--navy); }
.section-title.light { color: var(--white); }
.section-body { font-size: 1.0625rem; color: var(--text-muted); line-height: 1.75; max-width: 600px; }
.section-body.light { color: rgba(255,255,255,0.7); }
.divider-line { width: 48px; height: 3px; background: var(--red); margin: 20px 0; border-radius: 2px; }

/* BUTTONS */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 14px 28px; font-family: var(--font-body); font-size: 0.875rem; font-weight: 600; letter-spacing: 0.04em; border-radius: var(--radius); border: none; cursor: pointer; transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease; text-decoration: none; }
.btn-primary { background: var(--red); color: var(--white); box-shadow: 0 4px 20px rgba(143,22,23,0.35); }
.btn-primary:hover { background: var(--red-dark); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(143,22,23,0.45); }
.btn-outline { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,0.4); }
.btn-outline:hover { background: rgba(255,255,255,0.08); border-color: #E87C7D; color: #E87C7D; }
.btn-outline-dark { background: transparent; color: var(--navy); border: 1.5px solid rgba(10,22,40,0.3); }
.btn-outline-dark:hover { background: var(--navy); color: var(--white); }
.btn-outline-red { background: transparent; color: var(--red); border: 1.5px solid var(--red); }
.btn-outline-red:hover { background: var(--red); color: var(--white); }
.btn-white { background: var(--white); color: var(--red); font-weight: 700; }
.btn-white:hover { background: var(--red-pale); transform: translateY(-2px); }
.btn-yt { background: #FF0000; color: var(--white); box-shadow: 0 4px 20px rgba(255,0,0,0.3); }
.btn-yt:hover { background: #CC0000; transform: translateY(-2px); }

/* NAV */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; background: rgba(10,22,40,0.97); backdrop-filter: blur(12px); border-bottom: 1px solid rgba(143,22,23,0.25); transition: box-shadow 0.3s; }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 70px; max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.nav-logo { display: flex; align-items: center; }
.nav-logo img { height: 48px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 28px; list-style: none; }
.nav-links a { font-size: 0.78rem; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase; color: rgba(255,255,255,0.68); transition: color 0.2s; }
.nav-links a:hover { color: #E87C7D; }

/* HERO */
.hero { min-height: 100vh; background: var(--navy); display: flex; align-items: center; padding: 120px 24px 80px; position: relative; overflow: hidden; }
.hero::before { content: ''; position: absolute; inset: 0; background-image: linear-gradient(rgba(143,22,23,0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(143,22,23,0.05) 1px, transparent 1px); background-size: 60px 60px; pointer-events: none; }
/* Red glow top-right */
.hero::after { content: ''; position: absolute; top: -100px; right: -100px; width: 500px; height: 500px; border-radius: 50%; background: radial-gradient(circle, rgba(143,22,23,0.12) 0%, transparent 70%); pointer-events: none; }
.hero-inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; max-width: var(--max-w); margin: 0 auto; width: 100%; }
.hero-tag { display: inline-flex; align-items: center; gap: 8px; background: rgba(143,22,23,0.15); border: 1px solid rgba(143,22,23,0.35); border-radius: 100px; padding: 6px 14px; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: #E87C7D; margin-bottom: 24px; }
.hero-tag-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--red-light); animation: pulse-dot 2s ease-in-out infinite; }
@keyframes pulse-dot { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.5;transform:scale(.7)} }
.hero-headline { font-family: var(--font-display); font-size: clamp(2.6rem, 5.5vw, 4rem); font-weight: 800; line-height: 1.08; color: var(--white); margin-bottom: 10px; }
.hero-headline em { font-style: italic; color: #E87C7D; }
.hero-sub { font-size: 1.05rem; color: rgba(255,255,255,0.6); line-height: 1.75; margin-bottom: 36px; max-width: 520px; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-stats { display: flex; gap: 36px; padding-top: 28px; border-top: 1px solid rgba(255,255,255,0.1); }
.hero-stat-num { font-family: var(--font-display); font-size: 1.875rem; font-weight: 700; color: #E87C7D; line-height: 1; margin-bottom: 4px; }
.hero-stat-label { font-size: 0.7rem; color: rgba(255,255,255,0.42); letter-spacing: 0.06em; text-transform: uppercase; }

/* Hero visual */
.hero-visual { position: relative; }
.hero-site-preview { border-radius: var(--radius-lg); overflow: hidden; box-shadow: 0 32px 80px rgba(0,0,0,0.55); border: 1px solid rgba(143,22,23,0.3); }
.hero-site-preview img { width: 100%; display: block; }
.hero-yt-badge { position: absolute; bottom: -16px; left: -16px; background: var(--navy-mid); border: 1px solid rgba(143,22,23,0.35); border-radius: var(--radius-lg); padding: 14px 18px; display: flex; align-items: center; gap: 12px; box-shadow: 0 8px 32px rgba(0,0,0,0.4); }
.hero-yt-icon { width: 36px; height: 36px; background: #FF0000; border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.hero-yt-text-top { font-size: 0.68rem; color: rgba(255,255,255,0.45); letter-spacing: 0.06em; text-transform: uppercase; }
.hero-yt-text-main { font-size: 0.85rem; font-weight: 600; color: var(--white); }

/* PROBLEM */
.problem { background: var(--cream); padding: 96px 24px; }
.problem-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; max-width: var(--max-w); margin: 0 auto; }
.problem-stat-block { display: flex; flex-direction: column; gap: 28px; }
.problem-stat { display: flex; gap: 20px; align-items: flex-start; }
.problem-stat-num { font-family: var(--font-display); font-size: 2.75rem; font-weight: 800; color: var(--red); line-height: 1; flex-shrink: 0; min-width: 90px; }
.problem-stat-desc { font-size: 0.9375rem; color: var(--text-muted); padding-top: 4px; line-height: 1.6; }
.problem-stat-desc strong { color: var(--text-dark); display: block; font-weight: 600; margin-bottom: 3px; }

/* YOUTUBE */
.youtube-section { background: var(--navy); padding: 96px 24px; position: relative; overflow: hidden; }
.youtube-section::before { content: ''; position: absolute; right: -150px; bottom: -150px; width: 500px; height: 500px; border-radius: 50%; background: radial-gradient(circle, rgba(143,22,23,0.1) 0%, transparent 70%); pointer-events: none; }
.yt-inner { max-width: var(--max-w); margin: 0 auto; }
.yt-header { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: end; margin-bottom: 52px; }
.yt-channel-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius-lg); padding: 20px; display: flex; align-items: center; gap: 14px; margin-bottom: 20px; }
.yt-channel-avatar { width: 60px; height: 60px; border-radius: 50%; overflow: hidden; flex-shrink: 0; border: 2px solid rgba(143,22,23,0.5); }
.yt-channel-avatar img { width: 100%; height: 100%; object-fit: cover; }
.yt-channel-name { font-family: var(--font-display); font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: 3px; }
.yt-channel-handle { font-size: 0.75rem; color: rgba(255,255,255,0.42); margin-bottom: 6px; }
.yt-channel-desc { font-size: 0.78rem; color: rgba(255,255,255,0.52); line-height: 1.5; }
.yt-videos-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.yt-video-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: var(--radius-lg); overflow: hidden; transition: border-color 0.25s, transform 0.25s; cursor: pointer; text-decoration: none; display: block; }
.yt-video-card:hover { border-color: rgba(255,0,0,0.45); transform: translateY(-4px); }
.yt-video-thumb { position: relative; aspect-ratio: 16/9; overflow: hidden; background: var(--navy-mid); }
.yt-video-thumb img { width: 100%; height: 100%; object-fit: cover; }
.yt-thumb-fallback { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-size: 2.5rem; background: linear-gradient(135deg, #1a3050 0%, #0A1628 100%); }
.yt-play-btn { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 44px; height: 44px; background: rgba(255,0,0,0.85); border-radius: 50%; display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity 0.2s; }
.yt-play-btn svg { width: 16px; height: 16px; fill: white; margin-left: 3px; }
.yt-video-card:hover .yt-play-btn { opacity: 1; }
.yt-video-badge { position: absolute; top: 8px; right: 8px; background: #FF0000; color: white; font-size: 0.6rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 2px 8px; border-radius: 100px; }
.yt-video-body { padding: 16px; }
.yt-video-title { font-size: 0.875rem; font-weight: 600; color: var(--white); line-height: 1.4; margin-bottom: 6px; }
.yt-video-meta { font-size: 0.72rem; color: rgba(255,255,255,0.38); }
.yt-sub-cta { text-align: center; margin-top: 40px; }
.yt-sub-strip { display: inline-flex; align-items: center; gap: 14px; background: rgba(255,0,0,0.1); border: 1px solid rgba(255,0,0,0.25); border-radius: 100px; padding: 10px 22px; margin-bottom: 20px; }
.yt-sub-strip-icon { width: 26px; height: 26px; background: #FF0000; border-radius: 6px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.yt-sub-strip-text { font-size: 0.8rem; color: rgba(255,255,255,0.65); }
.yt-sub-strip-text strong { color: var(--white); }

/* FRAMEWORK */
.framework { background: var(--navy-mid); padding: 96px 24px; position: relative; overflow: hidden; }
.framework::before { content: ''; position: absolute; left: -200px; top: -200px; width: 600px; height: 600px; border-radius: 50%; background: radial-gradient(circle, rgba(143,22,23,0.08) 0%, transparent 70%); pointer-events: none; }
.framework-inner { max-width: var(--max-w); margin: 0 auto; }
.framework-header { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; margin-bottom: 52px; align-items: end; }
.framework-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 2px; background: rgba(143,22,23,0.2); border-radius: var(--radius-lg); overflow: hidden; }
.framework-card { background: var(--navy); padding: 32px 22px; transition: background .3s; }
.framework-card:hover { background: #0d1e35; }
.framework-card-top { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.framework-card-icon { width: 40px; height: 40px; border-radius: 50%; background: rgba(143,22,23,0.15); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0; }
.framework-card-letter { font-family: var(--font-display); font-size: 1.875rem; font-weight: 800; color: #E87C7D; line-height: 1; }
.framework-card-title { font-size: 0.72rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,0.45); margin-bottom: 8px; }
.framework-card-text { font-size: 0.85rem; color: rgba(255,255,255,0.6); line-height: 1.65; }

/* SERVICES */
.services { background: var(--white); padding: 96px 24px; }
.services-inner { max-width: var(--max-w); margin: 0 auto; }
.services-header { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: end; margin-bottom: 48px; }
.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.service-card { border: 1px solid rgba(143,22,23,0.15); border-radius: var(--radius-lg); padding: 30px 26px; transition: border-color .25s, box-shadow .25s, transform .25s; position: relative; overflow: hidden; }
.service-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--red); transform: scaleX(0); transform-origin: left; transition: transform .3s ease; }
.service-card:hover { border-color: var(--red); box-shadow: 0 8px 32px rgba(143,22,23,0.12); transform: translateY(-4px); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon { font-size: 1.875rem; margin-bottom: 14px; }
.service-title { font-family: var(--font-display); font-size: 1.125rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; line-height: 1.25; }
.service-text { font-size: 0.855rem; color: var(--text-muted); line-height: 1.65; margin-bottom: 18px; }
.service-link { font-size: 0.78rem; font-weight: 600; color: var(--red); display: inline-flex; align-items: center; gap: 6px; transition: gap .2s; }
.service-card:hover .service-link { gap: 10px; }

/* ABOUT */
.about { background: var(--cream); padding: 96px 24px; }
.about-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; max-width: var(--max-w); margin: 0 auto; }
.about-img-block { position: relative; }
.about-img-wrap { border-radius: var(--radius-lg); overflow: hidden; box-shadow: 0 20px 60px rgba(10,22,40,0.2); }
.about-img-wrap img { width: 100%; display: block; }
.about-badge { position: absolute; bottom: -20px; right: -20px; background: var(--red); border-radius: var(--radius-lg); padding: 16px 20px; box-shadow: 0 8px 32px rgba(143,22,23,0.4); text-align: center; }
.about-badge-icon { font-size: 1.5rem; line-height: 1; margin-bottom: 4px; }
.about-badge-label { font-size: 0.62rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,0.82); }
.about-credentials { display: flex; flex-wrap: wrap; gap: 8px; margin: 24px 0; }
.cred-tag { display: inline-flex; align-items: center; gap: 6px; background: var(--white); border: 1px solid rgba(143,22,23,0.2); border-radius: 100px; padding: 5px 12px; font-size: 0.72rem; font-weight: 600; color: var(--red-dark); }
.cred-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--red); flex-shrink: 0; }
.about-quote { border-left: 3px solid var(--red); padding-left: 18px; margin: 20px 0; font-family: var(--font-display); font-size: 1.1rem; font-style: italic; color: var(--navy); line-height: 1.5; }

/* TEAM */
.team { background: var(--white); padding: 96px 24px; }
.team-inner { max-width: var(--max-w); margin: 0 auto; }
.team-header { text-align: center; margin-bottom: 52px; }
.team-header .section-body { margin: 14px auto 0; }
.team-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.team-card { border: 1px solid #E8EDF3; border-radius: var(--radius-lg); overflow: hidden; text-align: center; transition: box-shadow .25s, transform .25s; }
.team-card:hover { box-shadow: 0 12px 40px rgba(143,22,23,0.12); transform: translateY(-4px); }
.team-card-img { aspect-ratio: 3/4; overflow: hidden; background: var(--navy-mid); }
.team-card-img img { width: 100%; height: 100%; object-fit: cover; object-position: top; transition: transform .4s ease; }
.team-card:hover .team-card-img img { transform: scale(1.04); }
.team-card-body { padding: 18px 14px; }
.team-card-name { font-family: var(--font-display); font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.team-card-role { font-size: 0.72rem; color: var(--red); font-weight: 600; letter-spacing: 0.04em; }

/* FAQ */
.faq { background: var(--navy); padding: 96px 24px; }
.faq-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; max-width: var(--max-w); margin: 0 auto; }
.faq-list { display: flex; flex-direction: column; gap: 2px; }
.faq-item { border-bottom: 1px solid rgba(255,255,255,0.08); overflow: hidden; }
.faq-question { width: 100%; background: none; border: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; padding: 18px 0; text-align: left; gap: 16px; }
.faq-q-text { font-size: 0.9375rem; font-weight: 500; color: var(--white); line-height: 1.45; }
.faq-chevron { flex-shrink: 0; width: 24px; height: 24px; border: 1.5px solid rgba(143,22,23,0.5); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #E87C7D; font-size: 0.7rem; transition: transform .3s, background .2s; }
.faq-item.open .faq-chevron { transform: rotate(180deg); background: rgba(143,22,23,0.2); }
.faq-answer { font-size: 0.875rem; color: rgba(255,255,255,0.6); line-height: 1.7; max-height: 0; overflow: hidden; transition: max-height .35s ease, padding-bottom .3s; }
.faq-item.open .faq-answer { max-height: 300px; padding-bottom: 18px; }

/* CTA BAND */
.cta-band { background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%); padding: 80px 24px; text-align: center; position: relative; overflow: hidden; }
.cta-band::before { content: ''; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px); background-size: 40px 40px; }
.cta-band-inner { position: relative; z-index: 1; max-width: 680px; margin: 0 auto; }
.cta-band-title { font-family: var(--font-display); font-size: clamp(2rem,4vw,3rem); font-weight: 800; color: var(--white); line-height: 1.15; margin-bottom: 14px; }
.cta-band-sub { font-size: 1rem; color: rgba(255,255,255,0.82); line-height: 1.65; margin-bottom: 32px; }
.cta-band-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* FOOTER */
.footer { background: #060E1A; padding: 64px 24px 32px; }
.footer-inner { max-width: var(--max-w); margin: 0 auto; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.07); margin-bottom: 28px; }
.footer-logo img { height: 44px; width: auto; margin-bottom: 16px; }
.footer-tagline { font-size: 0.78rem; font-style: italic; color: rgba(255,255,255,0.38); margin-bottom: 16px; letter-spacing: 0.03em; }
.footer-brand-text { font-size: 0.83rem; color: rgba(255,255,255,0.4); line-height: 1.65; margin-bottom: 20px; }
.footer-socials { display: flex; gap: 10px; }
.footer-social { width: 34px; height: 34px; border-radius: 50%; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; font-size: 0.78rem; color: rgba(255,255,255,0.48); transition: background .2s, color .2s, border-color .2s; cursor: pointer; text-decoration: none; }
.footer-social:hover { background: rgba(143,22,23,0.25); color: #E87C7D; border-color: var(--red); }
.footer-col-title { font-size: 0.68rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; color: #E87C7D; margin-bottom: 18px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 0.83rem; color: rgba(255,255,255,0.4); transition: color .2s; }
.footer-links a:hover { color: var(--white); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; font-size: 0.72rem; color: rgba(255,255,255,0.26); flex-wrap: wrap; gap: 12px; }
.vet-badge { display: inline-flex; align-items: center; gap: 7px; background: rgba(143,22,23,0.15); border: 1px solid rgba(143,22,23,0.3); border-radius: 100px; padding: 4px 14px; font-size: 0.68rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: #E87C7D; }

/* SCROLL REVEAL */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .12s; }
.reveal-delay-2 { transition-delay: .24s; }
.reveal-delay-3 { transition-delay: .36s; }

/* RESPONSIVE */
@media(max-width:1000px) {
  .hero-inner, .problem-inner, .about-inner, .framework-header, .services-header, .faq-inner, .yt-header { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { display: none; }
  .framework-grid { grid-template-columns: repeat(2,1fr); }
  .services-grid { grid-template-columns: repeat(2,1fr); }
  .team-grid { grid-template-columns: repeat(2,1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .yt-videos-grid { grid-template-columns: repeat(2,1fr); }
}
@media(max-width:600px) {
  .services-grid, .framework-grid, .yt-videos-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .hero-ctas, .cta-band-btns { flex-direction: column; align-items: flex-start; }
  .cta-band-btns { align-items: center; }
}
@media(prefers-reduced-motion:reduce) {
  .reveal { opacity: 1; transform: none; }
}