/* ============================================================
   TeleVista Pro — marketing website
   Theme drawn straight from the TeleVista logo:
   blue gradient of the "T" mark · gold of the play triangle · deep navy
   ============================================================ */
:root {
  --ink:    #070A16;
  --navy:   #0A0E20;
  --navy2:  #0E1430;
  --blue:      #3D7BFF;
  --blue-hi:   #6BA1FF;
  --blue-lo:   #2348C8;
  --gold:      #F4B740;
  --gold-hi:   #FFCD63;
  --tx:   #EAF0FF;
  --tx2:  rgba(205,216,255,0.64);
  --tx3:  rgba(205,216,255,0.40);
  --hair: rgba(120,150,255,0.15);
  --card: rgba(255,255,255,0.035);
  --grad-blue: linear-gradient(140deg, #6BA1FF 0%, #2348C8 100%);
  --grad-text: linear-gradient(100deg, #6BA1FF 10%, #F4B740 95%);
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", system-ui, sans-serif;
  background: var(--navy); color: var(--tx); line-height: 1.55;
  -webkit-font-smoothing: antialiased; overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
.wrap { max-width: 1180px; margin: 0 auto; padding: 0 26px; }
section { position: relative; padding: 110px 0; }

/* ---- buttons ---- */
.btn {
  display: inline-flex; align-items: center; gap: 9px; cursor: pointer;
  font: inherit; font-size: 15px; font-weight: 700; border: none;
  padding: 14px 26px; border-radius: 13px; transition: 0.18s; white-space: nowrap;
}
.btn-gold {
  background: linear-gradient(180deg, var(--gold-hi), var(--gold)); color: #1a1200;
  box-shadow: 0 8px 26px rgba(244,183,64,0.32);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(244,183,64,0.42); }
.btn-ghost { background: rgba(255,255,255,0.06); color: #fff; border: 1px solid var(--hair); }
.btn-ghost:hover { background: rgba(255,255,255,0.12); border-color: rgba(120,150,255,0.4); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--gold); font-size: 12px; font-weight: 800;
  letter-spacing: 2.6px; text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 18px; height: 2px; background: var(--gold); border-radius: 2px; }

.section-head { text-align: center; max-width: 640px; margin: 0 auto 64px; }
.section-head h2 {
  font-size: 43px; font-weight: 800; letter-spacing: -1.2px; line-height: 1.12; margin-top: 16px;
}
.section-head p { color: var(--tx2); font-size: 16.5px; margin-top: 16px; }

/* reveal on scroll */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.2,0.7,0.2,1); }
.reveal.in { opacity: 1; transform: none; }

/* =================== NAV =================== */
nav {
  position: sticky; top: 0; z-index: 80;
  background: rgba(18,24,56,0.88); backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--hair);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 94px; }
.brand-img { height: 50px; width: auto; display: block; }
.nav-links { display: flex; gap: 30px; margin-left: auto; margin-right: 36px; }
.nav-links a { color: #FFFFFF; font-size: 14.5px; font-weight: 600; transition: 0.15s; }
.nav-links a:hover, .nav-links a.active { color: var(--gold-hi); }
.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-cta .signin { color: #FFFFFF; font-size: 14.5px; font-weight: 700; cursor: pointer; }
.nav-cta .signin:hover { color: var(--gold-hi); }

/* =================== HERO =================== */
.hero { padding: 100px 0 86px; }
.glow {
  position: absolute; border-radius: 50%; pointer-events: none; filter: blur(20px);
}
.hero .g1 { width: 760px; height: 520px; top: -200px; left: 50%; transform: translateX(-46%);
  background: radial-gradient(ellipse, rgba(61,123,255,0.42), transparent 66%); }
.hero .g2 { width: 420px; height: 420px; top: 120px; right: -120px;
  background: radial-gradient(circle, rgba(244,183,64,0.16), transparent 70%); }
.hero-inner { position: relative; display: grid; grid-template-columns: 1.06fr 0.94fr; gap: 56px; align-items: center; }
.hero h1 { font-size: 76px; font-weight: 800; letter-spacing: -2.6px; line-height: 1.03; margin-top: 22px; }
.hero h1 .grad {
  background: var(--grad-text); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero .sub { color: var(--tx2); font-size: 18px; margin-top: 22px; max-width: 480px; }
.hero-cta { display: flex; gap: 14px; margin-top: 32px; flex-wrap: wrap; }
.hero-meta { display: flex; gap: 24px; margin-top: 30px; color: var(--tx3); font-size: 13px; font-weight: 600; flex-wrap: wrap; }
.hero-meta span { display: flex; align-items: center; gap: 7px; }
.hero-meta b { color: var(--gold); }
.hero-meta .ck { color: var(--blue-hi); font-weight: 900; }
.hero-features { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 22px; }
.hero-features span {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12.5px; font-weight: 700; color: var(--tx);
  background: rgba(61,123,255,0.12); border: 1px solid rgba(61,123,255,0.34);
  padding: 7px 13px; border-radius: 999px;
}
.hero-features span i { color: var(--gold); font-style: normal; font-weight: 900; font-size: 11px; }

/* phone */
.phone-stage { display: flex; justify-content: center; position: relative; }
.phone-stage::after {
  content: ""; position: absolute; width: 320px; height: 320px; border-radius: 50%;
  background: radial-gradient(circle, rgba(61,123,255,0.45), transparent 65%);
  filter: blur(30px); z-index: 0;
}
.phone {
  position: relative; z-index: 1; width: 300px; height: 622px; border-radius: 46px;
  background: #000; overflow: hidden;
  box-shadow: 0 50px 90px rgba(0,0,0,0.6), 0 0 0 11px #161a2e, 0 0 0 13px #2c3358;
}
.phone .cam { position: absolute; inset: 0; background: linear-gradient(170deg,#3a332c,#241f1b 48%,#110f0d); }
.phone .face { position: absolute; left: 50%; top: 42%; transform: translate(-50%,-50%);
  width: 155px; height: 182px; border-radius: 50% 50% 47% 47%;
  background: radial-gradient(circle at 50% 38%, #d8b594, #8a6748 76%, transparent); filter: blur(3px); }
.phone .scrim { position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.6), transparent 28%, transparent 64%, rgba(0,0,0,0.74)); }
.phone .script { position: absolute; top: 70px; bottom: 128px; left: 24px; right: 70px;
  overflow: hidden;
  -webkit-mask: linear-gradient(180deg, transparent, #000 16%, #000 84%, transparent);
  mask: linear-gradient(180deg, transparent, #000 16%, #000 84%, transparent); }
.phone .script-track { text-align: center; color: #fff; font-size: 16.5px; font-weight: 700;
  line-height: 1.6; text-shadow: 0 2px 12px rgba(0,0,0,0.95);
  animation: heroScroll 20s linear infinite; }
.phone .script-track p { margin-bottom: 0.9em; }
.phone .script-track p.cue { color: var(--gold-hi); }
@keyframes heroScroll { from { transform: translateY(70%); } to { transform: translateY(-118%); } }
.phone .rail { position: absolute; right: 13px; top: 44%; transform: translateY(-50%);
  display: flex; flex-direction: column; gap: 7px;
  background: rgba(14,20,48,0.72); border: 1px solid var(--hair); border-radius: 17px; padding: 8px 7px; }
.phone .rail i { width: 34px; height: 34px; border-radius: 10px; background: rgba(255,255,255,0.07);
  display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 800; color: #fff; }
.phone .recbtn { position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
  width: 66px; height: 66px; border-radius: 50%; background: rgba(255,255,255,0.16); border: 3px solid #fff;
  display: flex; align-items: center; justify-content: center; }
.phone .recbtn::after { content: ""; width: 52px; height: 52px; border-radius: 50%; background: #FF453A; }

/* =================== TAGLINE STRIP =================== */
.strip { background: var(--grad-blue); }
.strip-inner { display: flex; align-items: center; justify-content: center; gap: 34px; padding: 32px 0; flex-wrap: wrap; }
.strip-inner .t { font-size: 17px; font-weight: 800; letter-spacing: 5px; color: #fff; }
.strip-inner .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); }

/* ---- Light sections — colour variety so it's not a wall of dark ---- */
.sec-light { background: #EEF1FA; }
.sec-light .section-head h2 { color: #0B1024; }
.sec-light .section-head p { color: #58607A; }
.sec-light .eyebrow { color: #2348C8; }
.sec-light .eyebrow::before { background: #2348C8; }
.sec-light .feature { background: #FFFFFF; border-color: #E3E7F3; }
.sec-light .feature:hover { background: #FFFFFF; box-shadow: 0 16px 38px rgba(35,72,200,0.15); }
.sec-light .feature h3 { color: #0B1024; }
.sec-light .feature p { color: #58607A; }
.sec-light .plat { background: #FFFFFF; border-color: #E3E7F3; color: #0B1024; }
.sec-light .plat:hover { border-color: #2348C8; }
.sec-light .plat svg { color: #2348C8; }

/* =================== FEATURES =================== */
.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.feature {
  position: relative; background: var(--card); border: 1px solid var(--hair);
  border-radius: 20px; padding: 30px 28px; transition: 0.2s; overflow: hidden;
}
.feature::before {
  content: ""; position: absolute; inset: 0; border-radius: 20px; padding: 1px;
  background: linear-gradient(150deg, rgba(107,161,255,0.5), transparent 50%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude; opacity: 0; transition: 0.2s;
}
.feature:hover { transform: translateY(-5px); background: rgba(61,123,255,0.06); }
.feature:hover::before { opacity: 1; }
.feature .ic {
  width: 50px; height: 50px; border-radius: 14px; margin-bottom: 18px;
  background: var(--grad-blue); display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 22px rgba(61,123,255,0.4);
}
.feature .ic svg { width: 24px; height: 24px; color: #fff; }
.feature h3 { font-size: 18.5px; font-weight: 800; letter-spacing: -0.3px; }
.feature p { color: var(--tx2); font-size: 14.5px; margin-top: 9px; }

/* =================== SHOWCASE BAND =================== */
.showcase { background: var(--ink); border-top: 1px solid var(--hair); border-bottom: 1px solid var(--hair); }
.showcase .panel {
  position: relative; border-radius: 28px; overflow: hidden;
  background: linear-gradient(135deg, #1A2E78 0%, #0E1430 55%, #14224F 100%);
  border: 1px solid rgba(120,150,255,0.25);
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 30px; align-items: center;
  padding: 54px 52px;
}
.showcase .panel .gx { position: absolute; width: 380px; height: 380px; right: -80px; top: -120px;
  background: radial-gradient(circle, rgba(244,183,64,0.18), transparent 68%); filter: blur(10px); }
.showcase h2 { position: relative; font-size: 36px; font-weight: 800; letter-spacing: -1px; line-height: 1.16; }
.showcase p { position: relative; color: rgba(220,228,255,0.78); font-size: 16px; margin-top: 14px; }
.showcase .marks { position: relative; display: flex; gap: 22px; margin-top: 24px; flex-wrap: wrap; }
.showcase .marks div { display: flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 700; }
.showcase .marks .d { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); }
.showcase .visual {
  position: relative; aspect-ratio: 4/3; border-radius: 18px;
  background: radial-gradient(ellipse at 50% 40%, #3a332c, #14110d);
  border: 1px solid rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.showcase .visual .ln {
  position: absolute; left: 14%; right: 14%; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.showcase .visual .txt { color: #fff; font-size: 17px; font-weight: 700; text-align: center;
  text-shadow: 0 2px 10px #000; padding: 0 26px; }

/* =================== PLATFORMS =================== */
.plat-row { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }
.plat {
  display: flex; align-items: center; gap: 11px;
  background: var(--card); border: 1px solid var(--hair); border-radius: 15px;
  padding: 17px 24px; font-size: 15px; font-weight: 700; transition: 0.18s;
}
.plat:hover { border-color: rgba(120,150,255,0.45); transform: translateY(-3px); }
.plat svg { width: 21px; height: 21px; color: var(--blue-hi); }

/* ---- Device showcase: laptop · tablet · phone running the teleprompter ---- */
.device-row { display: flex; align-items: flex-end; justify-content: center; gap: 34px; flex-wrap: wrap; }
.mini { position: absolute; inset: 0; overflow: hidden; background: #06070d; }
.mini-track { padding: 0 11%; text-align: center; animation: miniScroll 24s linear infinite; }
@keyframes miniScroll { from { transform: translateY(58%); } to { transform: translateY(-105%); } }
.mini-track p { color: #fff; font-weight: 700; line-height: 1.5; margin-bottom: 0.7em; }
.mini-track p.cue { color: var(--gold-hi); }
.mini-fade { position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background: linear-gradient(180deg, #06070d 2%, transparent 24%, transparent 76%, #06070d 98%); }
.mini-rec { position: absolute; left: 50%; bottom: 8%; transform: translateX(-50%); z-index: 4;
  border-radius: 50%; background: #FF453A; box-shadow: 0 4px 14px rgba(255,69,58,0.5); }
/* laptop */
.laptop { width: min(540px, 92vw); --ui: 1; }
.lt-screen { position: relative; width: 100%; aspect-ratio: 16/10; overflow: hidden;
  background: #06070d; border: 9px solid #20263f; border-bottom: none; border-radius: 14px 14px 3px 3px; }
.lt-base { width: 118%; height: 17px; margin-left: -9%;
  background: linear-gradient(180deg, #2c3454, #161b30); border-radius: 0 0 13px 13px;
  box-shadow: 0 24px 44px rgba(0,0,0,0.55); }
.lt-base::after { content: ""; display: block; width: 78px; height: 5px; margin: 0 auto;
  background: #0c0f1c; border-radius: 0 0 6px 6px; }
.lt-screen .mini-track p { font-size: 18px; }
.lt-screen .mini-rec { width: 34px; height: 34px; }
/* tablet */
.tablet { position: relative; width: 285px; aspect-ratio: 3/4; flex: none; --ui: 0.78;
  background: #20263f; border-radius: 26px; padding: 13px; box-shadow: 0 26px 46px rgba(0,0,0,0.55); }
.tb-screen { position: relative; width: 100%; height: 100%; overflow: hidden; border-radius: 15px; }
.tb-screen .mini-track p { font-size: 15px; }
.tb-screen .mini-rec { width: 28px; height: 28px; }
/* phone */
.phone-dev { position: relative; width: 198px; aspect-ratio: 1 / 2.05; flex: none; --ui: 0.62;
  background: #20263f; border-radius: 26px; padding: 9px; box-shadow: 0 26px 46px rgba(0,0,0,0.55); }
.ph-screen { position: relative; width: 100%; height: 100%; overflow: hidden; border-radius: 19px; }
.ph-screen .mini-track { animation-duration: 20s; }
.ph-screen .mini-track p { font-size: 13px; }
.ph-screen .mini-rec { width: 22px; height: 22px; }

/* mini teleprompter UI shown inside each showcase device (scales via --ui) */
.mini-top, .mini-bot {
  position: absolute; left: 0; right: 0; z-index: 5;
  display: flex; align-items: center; justify-content: space-between;
  padding: calc(7px * var(--ui)) calc(10px * var(--ui));
}
.mini-top { top: 0; background: linear-gradient(180deg, rgba(0,0,0,0.82), transparent); }
.mini-bot { bottom: 0; background: linear-gradient(0deg, rgba(0,0,0,0.9), transparent);
  padding-top: calc(18px * var(--ui)); }
.m-x { width: calc(15px*var(--ui)); height: calc(15px*var(--ui)); border-radius: 50%;
  background: rgba(255,255,255,0.18); flex: none; }
.m-time { width: calc(46px*var(--ui)); height: calc(15px*var(--ui));
  border-radius: calc(5px*var(--ui)); background: rgba(255,255,255,0.13); flex: none; }
.m-dots, .m-ctrls { display: flex; gap: calc(5px*var(--ui)); flex: none; }
.m-dots i { width: calc(9px*var(--ui)); height: calc(9px*var(--ui)); border-radius: 50%;
  background: rgba(255,255,255,0.24); }
.m-ctrls i { width: calc(20px*var(--ui)); height: calc(20px*var(--ui));
  border-radius: calc(6px*var(--ui)); background: rgba(255,255,255,0.12); }
.m-speed { width: calc(54px*var(--ui)); height: calc(20px*var(--ui)); border-radius: 999px;
  background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.14); flex: none; }
/* Round red recording button — matches the hero phone mockup. */
.m-rec-btn { width: calc(40px*var(--ui)); height: calc(40px*var(--ui)); border-radius: 50%; flex: none;
  background: rgba(255,255,255,0.16); border: calc(2.6px*var(--ui)) solid #fff;
  display: flex; align-items: center; justify-content: center; }
.m-rec-btn::after { content: ""; width: calc(28px*var(--ui)); height: calc(28px*var(--ui));
  border-radius: 50%; background: #FF453A;
  box-shadow: 0 calc(3px*var(--ui)) calc(11px*var(--ui)) rgba(255,69,58,0.6); }

/* =================== PRICING =================== */
.price-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; max-width: 840px; margin: 0 auto; }
.price {
  position: relative; background: var(--card); border: 1px solid var(--hair);
  border-radius: 22px; padding: 38px 32px; display: flex; flex-direction: column;
}
.price.pro {
  background: linear-gradient(180deg, rgba(244,183,64,0.09), var(--card));
  border-color: rgba(244,183,64,0.5);
}
.price .badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(180deg, var(--gold-hi), var(--gold)); color: #1a1200;
  font-size: 11px; font-weight: 800; letter-spacing: 1px; padding: 6px 15px; border-radius: 999px;
  box-shadow: 0 6px 18px rgba(244,183,64,0.4); white-space: nowrap;
}
.price .pname { font-size: 13px; font-weight: 800; letter-spacing: 1.8px; text-transform: uppercase; color: var(--tx2); }
.price.pro .pname { color: var(--gold); }
.price .amt { font-size: 48px; font-weight: 800; letter-spacing: -1.6px; margin: 12px 0 2px; }
.price .amt small { font-size: 15px; font-weight: 600; color: var(--tx3); letter-spacing: 0; }
.price .pdesc { color: var(--tx2); font-size: 13.5px; margin-bottom: 24px; }
.price ul { list-style: none; margin: 0 0 26px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.price li { font-size: 14px; color: var(--tx2); padding-left: 28px; position: relative; }
.price li::before { content: "✓"; position: absolute; left: 0; top: 0; color: var(--gold); font-weight: 900; font-size: 13px; }
.price li b { color: var(--tx); font-weight: 700; }
.price .btn { width: 100%; justify-content: center; }
.price-note { text-align: center; color: var(--tx3); font-size: 13px; margin-top: 26px; }

/* =================== SIGN IN =================== */
.signin-sec { background: var(--ink); border-top: 1px solid var(--hair); }
.signin-card {
  max-width: 430px; margin: 0 auto; text-align: center;
  background: linear-gradient(180deg, rgba(61,123,255,0.08), var(--card));
  border: 1px solid var(--hair); border-radius: 24px; padding: 38px 34px;
}
.signin-logo { width: 66px; height: 66px; border-radius: 16px; display: block; margin: 0 auto 18px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.5); }
.signin-card h3 { font-size: 23px; font-weight: 800; }
.signin-card .sd { color: var(--tx2); font-size: 14px; margin: 7px 0 24px; }
.oauth {
  display: flex; align-items: center; justify-content: center; gap: 10px; width: 100%;
  padding: 13px; border-radius: 12px; font-size: 14.5px; font-weight: 700; cursor: pointer;
  border: 1px solid var(--hair); margin-bottom: 10px; transition: 0.15s;
}
.oauth svg { width: 18px; height: 18px; }
.oauth.apple { background: #fff; color: #000; border-color: #fff; }
.oauth.google { background: rgba(255,255,255,0.06); color: #fff; }
.oauth.google:hover { background: rgba(255,255,255,0.12); }
.or { display: flex; align-items: center; gap: 12px; margin: 16px 0; color: var(--tx3); font-size: 12px; font-weight: 700; }
.or::before, .or::after { content: ""; flex: 1; height: 1px; background: var(--hair); }
.field {
  width: 100%; background: rgba(0,0,0,0.35); border: 1px solid var(--hair);
  border-radius: 12px; padding: 13px 14px; color: #fff; font: inherit; font-size: 14px; margin-bottom: 10px;
}
.field::placeholder { color: var(--tx3); }
.field:focus { outline: none; border-color: var(--blue); }
.signin-card .btn { width: 100%; justify-content: center; }
.signin-card .legal { color: var(--tx3); font-size: 11.5px; margin-top: 16px; line-height: 1.6; }

/* =================== CLOSING CTA =================== */
.cta-band { text-align: center; }
.cta-box {
  position: relative; border-radius: 30px; overflow: hidden; padding: 70px 40px;
  background: var(--grad-blue);
}
.cta-box::after {
  content: ""; position: absolute; width: 500px; height: 500px; right: -140px; bottom: -260px;
  background: radial-gradient(circle, rgba(244,183,64,0.32), transparent 65%); filter: blur(10px);
}
.cta-box h2 { position: relative; font-size: 42px; font-weight: 800; letter-spacing: -1.2px; }
.cta-box p { position: relative; color: rgba(255,255,255,0.85); font-size: 17px; margin: 14px auto 0; max-width: 460px; }
.cta-box .btn { position: relative; margin-top: 30px; }

/* =================== FOOTER =================== */
footer { border-top: 1px solid var(--hair); padding: 46px 0; background: var(--ink); }
.foot-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 18px; }
.foot-inner .links { display: flex; gap: 24px; flex-wrap: wrap; }
.foot-inner .links a { color: var(--tx2); font-size: 13.5px; }
.foot-inner .links a:hover { color: #fff; }
.foot-inner .cr { color: var(--tx3); font-size: 13px; }

/* =================== BLOG — index =================== */
.page-hero { padding: 84px 0 8px; text-align: center; position: relative; }
.page-hero .glow.g1 { width: 700px; height: 420px; top: -160px; }
.page-hero .eyebrow { justify-content: center; }
.page-hero h1 { font-size: 58px; font-weight: 800; letter-spacing: -2px; line-height: 1.05; margin-top: 16px; }
.page-hero p { color: var(--tx2); font-size: 17.5px; margin: 18px auto 0; max-width: 560px; }

.post-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.post-card {
  display: flex; flex-direction: column; background: var(--card);
  border: 1px solid var(--hair); border-radius: 20px; overflow: hidden; transition: 0.2s;
}
.post-card:hover { transform: translateY(-6px); border-color: rgba(120,150,255,0.42);
  background: rgba(61,123,255,0.06); }
.post-thumb { height: 170px; position: relative; display: flex; align-items: flex-end;
  padding: 16px; overflow: hidden; }
.post-thumb.t1 { background: linear-gradient(140deg, #1A2E78, #0E1430); }
.post-thumb.t2 { background: linear-gradient(140deg, #2348C8, #14224F); }
.post-thumb.t3 { background: radial-gradient(ellipse at 60% 30%, #3a332c, #14110d); }
.post-thumb.t4 { background: linear-gradient(140deg, #14224F, #1A2E78); }
.post-thumb.t5 { background: radial-gradient(ellipse at 40% 28%, #2c2438, #15121d); }
.post-thumb.t6 { background: linear-gradient(140deg, #0E1430, #2348C8); }
.post-thumb::before {
  content: ""; position: absolute; width: 210px; height: 210px; right: -70px; top: -90px;
  background: radial-gradient(circle, rgba(244,183,64,0.22), transparent 68%); filter: blur(8px);
}
.post-thumb .tag { position: relative; font-size: 10.5px; font-weight: 800; letter-spacing: 1.4px;
  text-transform: uppercase; color: var(--gold-hi); background: rgba(0,0,0,0.42);
  border: 1px solid rgba(244,183,64,0.4); padding: 6px 12px; border-radius: 999px; }
.post-thumb .mk {
  position: absolute; left: 50%; top: 44%; transform: translate(-50%,-50%);
  width: 56px; height: 56px; border-radius: 50%;
  background: rgba(255,255,255,0.1); border: 2px solid rgba(255,255,255,0.85);
  display: flex; align-items: center; justify-content: center;
}
.post-thumb .mk::after { content: ""; width: 38px; height: 38px; border-radius: 50%; background: #FF453A; }
.post-thumb .mk.play::after {
  width: 0; height: 0; border-radius: 0; background: none;
  border-style: solid; border-width: 11px 0 11px 18px;
  border-color: transparent transparent transparent #fff; margin-left: 4px;
}
.post-body { padding: 22px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.post-body h3 { font-size: 19px; font-weight: 800; letter-spacing: -0.4px; line-height: 1.32; }
.post-body p { color: var(--tx2); font-size: 14px; margin-top: 9px; flex: 1; }
.post-meta { display: flex; gap: 9px; align-items: center; color: var(--tx3);
  font-size: 12.5px; font-weight: 600; margin-top: 18px; }
.post-meta .read { color: var(--gold); }
.post-card .more { color: var(--blue-hi); font-size: 13.5px; font-weight: 800; margin-top: 14px; }

/* =================== BLOG — article =================== */
.article { max-width: 752px; margin: 0 auto; padding: 56px 26px 24px; position: relative; }
.article .eyebrow { color: var(--gold); }
.article h1 { font-size: 45px; font-weight: 800; letter-spacing: -1.6px; line-height: 1.1; margin-top: 14px; }
.article-meta { display: flex; gap: 8px; flex-wrap: wrap; align-items: center;
  color: var(--tx3); font-size: 13px; font-weight: 600; margin-top: 20px; }
.article-meta .read { color: var(--gold); }
.article-cover { height: 280px; border-radius: 20px; margin: 32px 0 4px; position: relative; overflow: hidden;
  border: 1px solid var(--hair); display: flex; align-items: center; justify-content: center; }
.article-cover .ln { position: absolute; left: 12%; right: 12%; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent); }
.article-cover .ct { position: relative; color: #fff; font-size: 17px; font-weight: 700;
  text-align: center; text-shadow: 0 2px 12px #000; padding: 0 30px; }
.cover-a { background: radial-gradient(ellipse at 50% 36%, #1A2E78, #0E1430); }
.cover-b { background: radial-gradient(ellipse at 50% 36%, #2348C8, #14224F); }
.cover-c { background: radial-gradient(ellipse at 50% 36%, #3a332c, #14110d); }
.cover-d { background: radial-gradient(ellipse at 50% 36%, #14224F, #1A2E78); }
.cover-e { background: radial-gradient(ellipse at 50% 36%, #2c2438, #15121d); }
.cover-f { background: radial-gradient(ellipse at 50% 36%, #0E1430, #2348C8); }
.article-body { font-size: 16.5px; color: rgba(220,228,255,0.82); }
.article-body h2 { font-size: 26px; font-weight: 800; letter-spacing: -0.6px; color: var(--tx);
  margin: 40px 0 6px; }
.article-body h3 { font-size: 18.5px; font-weight: 800; color: var(--tx); margin: 26px 0 4px; }
.article-body p { margin-top: 14px; line-height: 1.78; }
.article-body ul, .article-body ol { margin: 14px 0; padding-left: 24px; }
.article-body li { margin-top: 9px; line-height: 1.72; }
.article-body strong { color: var(--tx); font-weight: 700; }
.article-body a.inline { color: var(--blue-hi); font-weight: 700; }
.article-body a.inline:hover { color: var(--gold-hi); }
.article-body blockquote {
  margin: 26px 0; padding: 18px 24px; border-left: 3px solid var(--gold);
  background: rgba(244,183,64,0.07); border-radius: 0 12px 12px 0;
  font-size: 17.5px; font-weight: 600; color: var(--tx); line-height: 1.6;
}
.article-cta {
  margin: 46px 0 8px; border-radius: 22px; padding: 36px 32px;
  background: var(--grad-blue); text-align: center; position: relative; overflow: hidden;
}
.article-cta::after {
  content: ""; position: absolute; width: 320px; height: 320px; right: -110px; bottom: -180px;
  background: radial-gradient(circle, rgba(244,183,64,0.3), transparent 65%); filter: blur(10px);
}
.article-cta h3 { position: relative; font-size: 23px; font-weight: 800; }
.article-cta p { position: relative; color: rgba(255,255,255,0.86); font-size: 14.5px;
  margin: 9px auto 18px; max-width: 400px; }
.article-cta .btn { position: relative; }
.back-link { display: inline-flex; align-items: center; gap: 7px; color: var(--blue-hi);
  font-size: 14px; font-weight: 800; margin-top: 30px; }
.back-link:hover { color: var(--gold-hi); }
.read-next { border-top: 1px solid var(--hair); margin-top: 30px; padding-top: 34px; }
.read-next .eyebrow { margin-bottom: 22px; }
.read-next .post-grid { grid-template-columns: repeat(2, 1fr); }

/* =================== AUTH PAGES (split layout) =================== */
.auth-page { min-height: 100vh; display: grid; grid-template-columns: 1.05fr 0.95fr; }

/* left — brand / visual panel */
.auth-visual {
  position: relative; overflow: hidden; padding: 52px 56px;
  background: linear-gradient(155deg, #1A2E78 0%, #0E1430 56%, #14224F 100%);
  display: flex; flex-direction: column; align-items: center; text-align: center;
  justify-content: center; gap: 44px;
}
.auth-visual .glow { width: 460px; height: 460px; top: -170px; left: -130px;
  background: radial-gradient(circle, rgba(61,123,255,0.5), transparent 66%); }
.auth-visual .glow.gold { width: 380px; height: 380px; top: auto; left: auto;
  right: -130px; bottom: -150px;
  background: radial-gradient(circle, rgba(244,183,64,0.22), transparent 68%); }
.av-logo { position: relative; height: 58px; width: auto; display: block; }
.av-body { position: relative; max-width: 440px; }
.av-body h2 { font-size: 40px; font-weight: 800; letter-spacing: -1.4px; line-height: 1.14; }
.av-body h2 .grad { background: var(--grad-text); -webkit-background-clip: text;
  background-clip: text; color: transparent; }
.av-feats { list-style: none; margin: 28px 0 0; display: flex; flex-direction: column;
  align-items: center; gap: 14px; }
.av-feats li { display: flex; align-items: center; gap: 12px;
  font-size: 14.5px; font-weight: 600; color: rgba(220,228,255,0.84); }
.av-feats li i { width: 24px; height: 24px; border-radius: 8px; flex: none;
  background: rgba(244,183,64,0.16); border: 1px solid rgba(244,183,64,0.42);
  color: var(--gold); font-style: normal; font-weight: 900; font-size: 12px;
  display: flex; align-items: center; justify-content: center; }
.av-foot { position: relative; display: flex; align-items: center; gap: 11px;
  color: var(--tx3); font-size: 12px; font-weight: 800; letter-spacing: 3px; }
.av-foot .dot { width: 5px; height: 5px; border-radius: 50%; background: var(--gold); }

/* right — form panel */
.auth-form-side { display: flex; align-items: center; justify-content: center;
  padding: 46px 40px; background: var(--navy); }
.auth-form { width: 100%; max-width: 392px; }
.auth-m-logo { display: none; }
.auth-back { display: inline-flex; align-items: center; gap: 7px; color: var(--tx3);
  font-size: 13px; font-weight: 700; margin-bottom: 26px; }
.auth-back:hover { color: var(--gold-hi); }
.auth-form h1 { font-size: 30px; font-weight: 800; letter-spacing: -0.8px; }
.auth-form .lead { color: var(--tx2); font-size: 14.5px; margin: 8px 0 24px; }
.auth-form .btn { width: 100%; justify-content: center; margin-top: 6px; }
.auth-field-label { display: block; font-size: 12.5px; font-weight: 700;
  color: var(--tx2); margin: 0 0 6px; }
.auth-form .switch { text-align: center; color: var(--tx2); font-size: 13.5px; margin-top: 22px; }
.auth-form .switch a { color: var(--blue-hi); font-weight: 800; }
.auth-form .switch a:hover { color: var(--gold-hi); }
.auth-form .legal { color: var(--tx3); font-size: 11.5px; line-height: 1.6;
  text-align: center; margin-top: 18px; }
.auth-error { display: none; margin-bottom: 16px; line-height: 1.45;
  background: rgba(255,69,58,0.12); border: 1px solid rgba(255,69,58,0.42);
  color: #FF9D93; font-size: 13px; font-weight: 600; padding: 10px 13px; border-radius: 10px; }
.auth-form.busy { opacity: 0.55; pointer-events: none; }
.oauth, .auth-form .btn { cursor: pointer; }

/* =================== RESPONSIVE =================== */
@media (max-width: 880px) {
  section { padding: 76px 0; }
  .hero-inner { grid-template-columns: 1fr; gap: 46px; text-align: center; }
  .hero h1 { font-size: 50px; }
  .hero .sub { margin-left: auto; margin-right: auto; }
  .hero-cta, .hero-meta, .hero-features { justify-content: center; }
  .nav-links { display: none; }
  .grid, .price-grid, .post-grid { grid-template-columns: 1fr; }
  .section-head h2 { font-size: 31px; }
  .showcase .panel { grid-template-columns: 1fr; padding: 38px 28px; }
  .showcase h2 { font-size: 28px; }
  .cta-box h2 { font-size: 30px; }
  .page-hero h1 { font-size: 38px; }
  .article h1 { font-size: 32px; }
  .article-cover { height: 200px; }
  .article-body h2 { font-size: 22px; }
  .auth-page { grid-template-columns: 1fr; }
  .auth-visual { display: none; }
  .auth-form-side { min-height: 100vh; padding: 40px 24px; }
  .auth-m-logo { display: block; height: 50px; width: auto; margin-bottom: 24px; }
}
