:root {
  --blue: #0757f8;
  --blue-dark: #0437ad;
  --cyan: #0fb9d7;
  --teal: #16a394;
  --amber: #f6a621;
  --ink: #07122f;
  --muted: #64708a;
  --line: #dce5f3;
  --soft: #f5f8fd;
  --paper: #fbfdff;
  --white: #ffffff;
  --green: #13a86b;
  --orange: #f47c20;
  --purple: #7a4df3;
  --shadow: 0 18px 45px rgba(7, 18, 47, 0.09);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

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

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

.shell {
  width: min(1240px, calc(100% - 40px));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(220, 229, 243, 0.8);
  backdrop-filter: blur(16px);
}

.support-topbar {
  position: relative;
  z-index: 21;
  border-bottom: 1px solid rgba(220, 229, 243, 0.85);
  color: #dbeafe;
  background: #07122f;
}

.support-inner {
  display: flex;
  min-height: 38px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 0.88rem;
  font-weight: 800;
}

.support-links,
.support-footer-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.support-links span {
  color: #7dd3fc;
  text-transform: uppercase;
  font-size: 0.72rem;
  letter-spacing: 0;
}

.support-links a {
  color: #f8fbff;
}

.support-whatsapp {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  padding: 4px 12px 4px 5px;
  color: white;
  background: #16a85f;
  box-shadow: 0 10px 22px rgba(22, 168, 95, 0.22);
}

.wa-icon {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 50%;
  color: #16a85f;
  background: white;
  font-size: 0.62rem;
  font-weight: 950;
}

.nav {
  display: flex;
  min-height: 82px;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-weight: 900;
  letter-spacing: 0;
  white-space: nowrap;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 10px;
  color: white;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  box-shadow: 0 12px 28px rgba(7, 87, 248, 0.24);
}

.brand-text strong {
  display: block;
  font-size: 1rem;
  line-height: 1.1;
}

.brand-text span {
  display: block;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  color: #25304c;
  font-size: 0.95rem;
  font-weight: 700;
}

.nav-links a {
  border-bottom: 2px solid transparent;
  padding: 26px 0 22px;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--blue);
  border-color: var(--blue);
}

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

.btn {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid transparent;
  border-radius: 10px;
  padding: 0 18px;
  cursor: pointer;
  font-weight: 800;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease, background 160ms ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  color: white;
  background: var(--blue);
  box-shadow: 0 14px 28px rgba(7, 87, 248, 0.22);
}

.btn-primary:hover {
  background: var(--blue-dark);
}

.btn-outline {
  color: var(--blue);
  background: white;
  border-color: rgba(7, 87, 248, 0.35);
}

.btn-outline:hover {
  border-color: var(--blue);
  box-shadow: 0 12px 24px rgba(7, 87, 248, 0.12);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  color: var(--ink);
  cursor: pointer;
}

.hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(120deg, rgba(7, 87, 248, 0.08) 0 1px, transparent 1px 90px),
    linear-gradient(180deg, #ffffff 0%, #eef8fb 100%);
}

.hero-grid {
  display: grid;
  min-height: 660px;
  align-items: center;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 54px;
  padding: 62px 0 70px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(7, 87, 248, 0.16);
  border-radius: 10px;
  padding: 9px 13px;
  color: var(--blue);
  background: rgba(7, 87, 248, 0.06);
  font-size: 0.84rem;
  font-weight: 900;
}

.hero h1 {
  max-width: 650px;
  margin: 22px 0 18px;
  font-size: clamp(2.7rem, 4.2vw, 4.25rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.hero p {
  max-width: 570px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.hero-proof {
  display: grid;
  max-width: 650px;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 30px;
}

.proof-card {
  border: 1px solid rgba(220, 229, 243, 0.96);
  border-radius: 10px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 10px 26px rgba(7, 18, 47, 0.05);
}

.proof-card strong {
  display: block;
  margin-bottom: 3px;
  font-size: 0.96rem;
}

.proof-card span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.35;
}

.hero-note {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 22px;
  color: #46536f;
  font-size: 0.94rem;
  font-weight: 700;
}

.hero-note span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cyan);
}

.hero-visual {
  position: relative;
  border: 1px solid rgba(220, 229, 243, 0.92);
  border-radius: 20px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 30px 70px rgba(7, 18, 47, 0.13);
}

.hero-visual img {
  display: block;
  width: 100%;
  aspect-ratio: 1.18 / 1;
  object-fit: cover;
  border-radius: 14px;
  filter: saturate(1.04);
}

.visual-label {
  position: absolute;
  right: 30px;
  bottom: 28px;
  width: min(300px, 72%);
  border: 1px solid rgba(220, 229, 243, 0.9);
  border-radius: 12px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.visual-stack {
  position: absolute;
  left: -22px;
  top: 30px;
  display: grid;
  gap: 10px;
  width: 190px;
}

.visual-pill {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid rgba(220, 229, 243, 0.95);
  border-radius: 12px;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 14px 32px rgba(7, 18, 47, 0.09);
  font-size: 0.84rem;
  font-weight: 900;
}

.visual-pill span {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 8px;
  color: white;
  background: var(--blue);
}

.visual-label strong {
  display: block;
  margin-bottom: 4px;
}

.visual-label span {
  color: var(--muted);
  font-size: 0.88rem;
}

.section {
  padding: 72px 0;
  background: var(--paper);
}

.section.alt {
  background:
    linear-gradient(180deg, #f4f9ff, #ffffff);
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.section-head h2,
.page-hero h1 {
  margin: 0;
  font-size: clamp(1.85rem, 3vw, 2.7rem);
  line-height: 1.14;
  letter-spacing: 0;
}

.section-head p,
.page-hero p {
  max-width: 620px;
  margin: 8px 0 0;
  color: var(--muted);
}

.grid {
  display: grid;
  gap: 18px;
}

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

.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

.grid-6 {
  grid-template-columns: repeat(6, 1fr);
}

.card {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: white;
  box-shadow: 0 10px 28px rgba(7, 18, 47, 0.055);
}

.learn-card {
  position: relative;
  overflow: hidden;
  min-height: 210px;
  padding: 22px;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.learn-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--teal), var(--amber));
  opacity: 0.86;
}

.learn-card:hover {
  transform: translateY(-4px);
  border-color: rgba(7, 87, 248, 0.35);
  box-shadow: 0 18px 44px rgba(7, 18, 47, 0.09);
}

.icon-box {
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  border-radius: 12px;
  color: var(--blue);
  background: #eef5ff;
  font-size: 1.6rem;
}

.card h3 {
  margin: 18px 0 8px;
  font-size: 1.05rem;
  line-height: 1.25;
}

.card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tab {
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 8px 14px;
  color: #34415e;
  background: transparent;
  cursor: pointer;
  font-weight: 800;
}

.tab.active {
  color: var(--blue);
  border-color: rgba(7, 87, 248, 0.25);
  background: rgba(7, 87, 248, 0.07);
}

.update-card {
  overflow: hidden;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.update-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 42px rgba(7, 18, 47, 0.09);
}

.update-media {
  position: relative;
  min-height: 128px;
  padding: 18px;
  color: white;
  background:
    linear-gradient(135deg, rgba(7, 87, 248, 0.95), rgba(22, 163, 148, 0.78)),
    repeating-linear-gradient(90deg, transparent 0 18px, rgba(255, 255, 255, 0.08) 18px 20px);
}

.update-media span {
  position: absolute;
  top: 12px;
  left: 12px;
  border-radius: 6px;
  padding: 4px 8px;
  color: var(--ink);
  background: white;
  font-size: 0.72rem;
  font-weight: 900;
}

.update-media strong {
  display: block;
  max-width: 210px;
  margin-top: 40px;
  line-height: 1.25;
}

.update-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.update-body {
  padding: 15px;
}

.meta {
  margin-top: 10px;
  color: #7a859c;
  font-size: 0.82rem;
  font-weight: 700;
}

.testing-card {
  position: relative;
  padding: 20px;
}

.testing-card::after {
  content: "";
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(7, 87, 248, 0.16);
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(7, 87, 248, 0.08), rgba(22, 163, 148, 0.08));
}

.status {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 5px 10px;
  font-size: 0.78rem;
  font-weight: 900;
}

.status.green {
  color: #087348;
  background: #ddf7eb;
}

.status.orange {
  color: #994200;
  background: #fff0e4;
}

.status.blue {
  color: var(--blue);
  background: #e9f1ff;
}

.status.purple {
  color: var(--purple);
  background: #f0ebff;
}

.testing-card .top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.resource-card {
  display: flex;
  min-height: 136px;
  gap: 16px;
  padding: 20px;
}

.community-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border: 1px solid rgba(7, 87, 248, 0.18);
  border-radius: 14px;
  padding: 38px;
  background:
    linear-gradient(120deg, rgba(7, 87, 248, 0.08) 0 1px, transparent 1px 56px),
    linear-gradient(135deg, #eef6ff, #ffffff);
  box-shadow: 0 18px 48px rgba(7, 18, 47, 0.07);
}

.community-band h2 {
  margin: 0 0 8px;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
}

.community-band p {
  margin: 0;
  color: var(--muted);
}

.why-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 18px 0;
}

.why-item .icon-box {
  flex: 0 0 auto;
}

.site-footer {
  padding: 46px 0 26px;
  color: #d8e2f7;
  background: #07122f;
}

.support-footer-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  margin-bottom: 28px;
  padding: 20px;
  background: linear-gradient(135deg, rgba(7, 87, 248, 0.22), rgba(22, 168, 95, 0.12));
}

.support-footer-card span {
  display: block;
  color: #7dd3fc;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.support-footer-card h3 {
  margin: 5px 0 4px;
  color: white;
  font-size: 1.25rem;
}

.support-footer-card p {
  margin: 0;
}

.support-footer-actions a:not(.support-whatsapp) {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  padding: 0 12px;
  color: white;
  background: rgba(255, 255, 255, 0.06);
  font-weight: 800;
}

.support-only-footer {
  margin-top: 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 1fr);
  gap: 34px;
}

.site-footer .brand-mark {
  box-shadow: none;
}

.site-footer p,
.site-footer a {
  color: #aebbd6;
}

.footer-col h3 {
  margin: 0 0 14px;
  color: white;
  font-size: 0.95rem;
}

.footer-col a {
  display: block;
  margin: 7px 0;
}

.social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.social-row a {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  color: white;
  background: rgba(255, 255, 255, 0.04);
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.social-row a:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.1);
}

.social-icon svg {
  width: 19px;
  height: 19px;
  fill: currentColor;
}

.social-youtube:hover {
  color: #ff0033;
}

.social-linkedin:hover {
  color: #5fb7ff;
}

.social-instagram:hover {
  color: #ff7ac8;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.footer-bottom {
  margin-top: 34px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 18px;
  color: #aebbd6;
  font-size: 0.9rem;
}

.page-hero {
  padding: 76px 0 44px;
  background: linear-gradient(180deg, #f7fbff, #ffffff);
  border-bottom: 1px solid var(--line);
}

.placeholder-list {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.placeholder-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
  background: white;
}

a.placeholder-row {
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

a.placeholder-row:hover {
  transform: translateY(-2px);
  border-color: rgba(7, 87, 248, 0.28);
  box-shadow: var(--shadow);
}

.placeholder-row strong {
  display: block;
  margin-top: 4px;
  font-size: 1.05rem;
}

.placeholder-row p {
  margin: 5px 0 0;
  color: var(--muted);
}

.community-channel-grid {
  margin-top: 28px;
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1.25fr);
  gap: 28px;
  align-items: start;
}

.blog-hero {
  padding: 34px 0 28px;
  background:
    radial-gradient(circle at 84% 20%, rgba(7, 87, 248, 0.16), transparent 28%),
    linear-gradient(135deg, #ffffff, #eef7ff);
  border-bottom: 1px solid var(--line);
}

.blog-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.58fr);
  gap: 26px;
  align-items: center;
}

.blog-hero h1 {
  max-width: 720px;
  margin: 14px 0 10px;
  font-size: clamp(2.05rem, 3.3vw, 3.35rem);
  line-height: 1.08;
}

.blog-hero p {
  max-width: 640px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

.blog-search-card,
.blog-card,
.blog-article,
.empty-blog-card {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: white;
  box-shadow: var(--shadow);
}

.blog-search-card {
  padding: 16px;
  box-shadow: 0 18px 42px rgba(7, 18, 47, 0.08);
}

.blog-search-card label {
  display: block;
  margin-bottom: 9px;
  font-size: 0.98rem;
  font-weight: 900;
}

.blog-search-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}

.blog-search-row input {
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0 12px;
  outline: none;
}

.blog-search-row .btn {
  min-height: 42px;
  padding: 0 18px;
}

.blog-search-card p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.5;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.blog-card {
  overflow: hidden;
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.blog-card:hover {
  transform: translateY(-3px);
  border-color: rgba(7, 87, 248, 0.26);
  box-shadow: 0 20px 48px rgba(7, 18, 47, 0.12);
}

.blog-card-image {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #07122f;
}

.blog-card-image img,
.blog-article-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-image-placeholder {
  display: grid;
  height: 100%;
  align-content: center;
  gap: 8px;
  padding: 22px;
  color: white;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.06) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255,255,255,0.06) 1px, transparent 1px),
    linear-gradient(135deg, #07122f, #0757f8 58%, #16a394);
  background-size: 34px 34px, 34px 34px, auto;
}

.blog-image-placeholder span {
  color: #aeefff;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.blog-image-placeholder strong {
  font-size: 2.6rem;
  line-height: 1;
}

.blog-card-body {
  padding: 18px;
}

.blog-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: space-between;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.blog-card h3 {
  margin: 12px 0 8px;
  font-size: 1.22rem;
  line-height: 1.22;
}

.blog-card p {
  margin: 0;
  color: var(--muted);
}

.blog-card-body > strong {
  display: inline-block;
  margin-top: 16px;
  color: var(--blue);
}

.blog-detail-section {
  padding: 54px 0;
}

.blog-back {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--blue);
  font-weight: 900;
}

.blog-article {
  overflow: hidden;
}

.blog-article-cover {
  height: min(380px, 42vw);
  background: #07122f;
}

.blog-article-body {
  max-width: 860px;
  margin: 0 auto;
  padding: 38px 28px 44px;
}

.blog-article h1 {
  margin: 12px 0;
  font-size: clamp(2.1rem, 4.5vw, 4rem);
  line-height: 1.06;
}

.blog-article-intro {
  color: #33415f;
  font-size: 1.18rem;
}

.blog-article-meta {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin: 24px 0;
  padding: 12px 0;
  color: var(--muted);
  font-weight: 850;
}

.blog-content p {
  margin: 0 0 18px;
  color: #25304c;
  font-size: 1.08rem;
  line-height: 1.82;
}

.blog-content h1,
.blog-content h2,
.blog-content h3 {
  margin: 32px 0 12px;
  color: #07122f;
  line-height: 1.14;
}

.blog-content h1 {
  font-size: clamp(2rem, 4vw, 3rem);
}

.blog-content h2 {
  font-size: clamp(1.55rem, 3vw, 2.25rem);
}

.blog-content h3 {
  font-size: clamp(1.25rem, 2.2vw, 1.65rem);
}

.blog-content strong {
  color: #07122f;
  font-weight: 950;
}

.blog-content a {
  color: var(--blue);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.blog-content ul,
.blog-content ol {
  margin: 0 0 22px;
  padding-left: 22px;
}

.blog-content li {
  margin: 8px 0;
  color: #25304c;
  font-size: 1.06rem;
  line-height: 1.7;
}

.blog-content blockquote {
  border-left: 5px solid var(--blue);
  border-radius: 0 12px 12px 0;
  margin: 26px 0;
  padding: 16px 20px;
  color: #25304c;
  background: #f4f8ff;
  font-size: 1.08rem;
  font-weight: 800;
  line-height: 1.7;
}

.blog-inline-image {
  margin: 28px 0;
}

.blog-content figure {
  margin: 28px 0;
}

.blog-inline-image img,
.blog-content figure img,
.blog-content img {
  display: block;
  width: 100%;
  max-height: 520px;
  object-fit: cover;
  border-radius: 16px;
}

.blog-inline-image figcaption,
.blog-content figcaption {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
}

.blog-content font[size="2"] {
  font-size: 0.92rem;
}

.blog-content font[size="3"] {
  font-size: 1rem;
}

.blog-content font[size="5"] {
  font-size: 1.35rem;
}

.related-blogs {
  border-top: 1px solid var(--line);
  padding: 28px;
}

.related-blogs h2 {
  margin: 0 0 16px;
}

.empty-blog-card {
  padding: 24px;
}

.blog-board {
  min-height: calc(100vh - 82px);
  padding: 28px 0 70px;
  background: #ffffff;
}

.blog-board-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 26px;
  align-items: start;
}

.blog-feed-head {
  margin-bottom: 30px;
}

.blog-feed-head .section-kicker {
  margin-bottom: 10px;
  color: var(--blue);
  font-size: 0.78rem;
}

.blog-feed-head h1 {
  max-width: 720px;
  margin: 0;
  color: #20263a;
  font-size: clamp(2rem, 3.3vw, 3.15rem);
  line-height: 1.08;
}

.blog-feed-head p {
  max-width: 780px;
  margin: 12px 0 0;
  color: #626b80;
  font-size: 1.02rem;
  line-height: 1.7;
}

.blog-result-head {
  margin-bottom: 20px;
}

.blog-result-head h1,
.blog-result-head h2 {
  margin: 0;
  color: #1f2538;
  font-size: clamp(1.55rem, 2.2vw, 2.15rem);
  line-height: 1.12;
}

.blog-result-head p {
  margin: 6px 0 0;
  color: #6c7488;
  font-size: 0.98rem;
}

body[data-page="blog"]:not(.blog-reading-mode) .blog-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
}

body[data-page="blog"]:not(.blog-reading-mode) .blog-card {
  display: block;
  border: 0;
  border-radius: 0;
  padding: 0;
  background: transparent;
  box-shadow: none;
}

body[data-page="blog"]:not(.blog-reading-mode) .blog-card:hover {
  transform: translateY(-3px);
  box-shadow: none;
}

body[data-page="blog"]:not(.blog-reading-mode) .blog-card-image {
  width: 100%;
  aspect-ratio: 16 / 10.6;
  border: 0;
  border-radius: 0;
  background: #07122f;
}

body[data-page="blog"]:not(.blog-reading-mode) .blog-image-placeholder {
  gap: 8px;
  padding: 20px;
  background:
    linear-gradient(135deg, #07122f, #0757f8 62%, #16a394);
}

body[data-page="blog"]:not(.blog-reading-mode) .blog-image-placeholder span {
  font-size: 0.72rem;
}

body[data-page="blog"]:not(.blog-reading-mode) .blog-image-placeholder strong {
  font-size: 2.15rem;
}

body[data-page="blog"]:not(.blog-reading-mode) .blog-card-body {
  min-width: 0;
  padding: 13px 0 0;
}

body[data-page="blog"]:not(.blog-reading-mode) .blog-card h3 {
  margin: 0;
  color: #000000;
  font-size: clamp(1.08rem, 1.35vw, 1.45rem);
  font-weight: 950;
  line-height: 1.08;
}

.blog-sidebar {
  position: static;
  order: -1;
  display: grid;
  grid-template-columns: minmax(360px, 1.05fr) minmax(230px, 0.54fr) minmax(250px, 0.58fr);
  gap: 18px;
  align-items: start;
}

.blog-search-card,
.blog-side-card {
  border: 1px solid #e5e7ef;
  border-radius: 14px;
  background: #ffffff;
  box-shadow: none;
}

.blog-search-card {
  padding: 16px;
}

.blog-side-card {
  min-height: 100%;
  padding: 16px;
}

.blog-side-title {
  margin-bottom: 12px;
  color: #34394d;
  font-size: 1.04rem;
  font-weight: 950;
}

.blog-topic-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.blog-topic-list button,
.blog-topic-list span {
  border: 1px solid #e1e7f2;
  border-radius: 999px;
  padding: 8px 12px;
  color: #25304c;
  background: #f8fafc;
  cursor: pointer;
  font-size: 0.88rem;
  font-weight: 850;
}

.blog-topic-list button:hover {
  color: var(--blue);
  border-color: rgba(7, 87, 248, 0.32);
  background: #eef5ff;
}

.blog-mini-list {
  display: grid;
}

.blog-mini-list a {
  display: grid;
  gap: 3px;
  border-top: 1px solid #eef1f6;
  padding: 10px 0;
}

.blog-mini-list a:first-child {
  border-top: 0;
  padding-top: 0;
}

.blog-mini-list span {
  color: #00a77a;
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.blog-mini-list strong {
  color: #34394d;
  font-size: 0.9rem;
  line-height: 1.35;
}

@media (max-width: 1180px) {
  body[data-page="blog"]:not(.blog-reading-mode) .blog-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 940px) {
  body[data-page="blog"]:not(.blog-reading-mode) .blog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .blog-sidebar {
    grid-template-columns: 1fr;
  }
}

body[data-page="blog"]:not(.blog-reading-mode) .academy-section {
  padding: 34px 0 60px;
}

body[data-page="blog"]:not(.blog-reading-mode) .section-head {
  margin-bottom: 18px;
}

body[data-page="blog"]:not(.blog-reading-mode) .section-head h2 {
  max-width: 700px;
  font-size: clamp(1.55rem, 2.2vw, 2.15rem);
  line-height: 1.16;
}

body[data-page="blog"]:not(.blog-reading-mode) .section-head p {
  max-width: 760px;
  font-size: 0.98rem;
  line-height: 1.65;
}

body[data-page="blog"]:not(.blog-reading-mode) .section-kicker {
  margin-bottom: 8px;
  font-size: 0.76rem;
}

body.blog-reading-mode {
  background: #ffffff;
}

body.blog-reading-mode .blog-detail-section {
  padding: 0;
}

body.blog-reading-mode .blog-detail-section .shell {
  width: min(940px, calc(100% - 32px));
}

body.blog-reading-mode .blog-article {
  border: 0;
  border-radius: 0;
  box-shadow: none;
  background: #ffffff;
}

body.blog-reading-mode .blog-article-cover {
  height: min(420px, 48vw);
  border-radius: 0 0 18px 18px;
  overflow: hidden;
}

body.blog-reading-mode .blog-article-body {
  padding: 34px 0 70px;
}

.login-wrap {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 30px;
  background: linear-gradient(135deg, #f7fbff, #ffffff);
}

.login-card {
  width: min(440px, 100%);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 30px;
  background: white;
  box-shadow: var(--shadow);
}

.field {
  display: grid;
  gap: 7px;
  margin-top: 16px;
}

.field label {
  font-weight: 800;
  font-size: 0.9rem;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 13px;
  color: var(--ink);
  background: white;
  outline: none;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: rgba(7, 87, 248, 0.56);
  box-shadow: 0 0 0 4px rgba(7, 87, 248, 0.1);
}

.form-message {
  min-height: 24px;
  margin-top: 14px;
  color: #b42318;
  font-weight: 800;
}

@media (max-width: 980px) {
  .support-inner,
  .support-footer-card {
    align-items: flex-start;
    flex-direction: column;
  }

  .support-inner {
    padding: 8px 0;
  }

  .nav {
    min-height: 68px;
  }

  .menu-toggle {
    display: inline-grid;
    place-items: center;
  }

  .nav-links,
  .nav-actions {
    display: none;
  }

  .nav.open {
    align-items: flex-start;
    padding: 13px 0;
  }

  .nav.open .nav-links,
  .nav.open .nav-actions {
    display: flex;
    position: absolute;
    left: 20px;
    right: 20px;
    flex-direction: column;
    align-items: stretch;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 12px;
    background: white;
    box-shadow: var(--shadow);
  }

  .nav.open .nav-links {
    top: 70px;
  }

  .nav.open .nav-actions {
    top: 430px;
  }

  .nav-links a {
    padding: 9px 6px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 46px 0 44px;
  }

  .hero-proof {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .visual-stack {
    left: 22px;
    top: 24px;
  }

  .grid-6,
  .grid-4,
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .about-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .shell {
    width: min(100% - 28px, 1180px);
  }

  .hero-grid {
    min-height: auto;
  }

  .hero h1 {
    font-size: 2.55rem;
  }

  .hero-proof {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    border-radius: 14px;
    padding: 9px;
  }

  .visual-label,
  .visual-stack {
    position: static;
    width: auto;
    margin-top: 10px;
  }

  .visual-stack {
    grid-template-columns: 1fr;
  }

  .hero-actions .btn,
  .community-band .btn {
    width: 100%;
  }

  .grid-6,
  .grid-4,
  .grid-3 {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 52px 0;
  }

  .section-head,
  .community-band,
  .placeholder-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .resource-card {
    min-height: auto;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
}

.z2h-hero {
  color: white;
  border-bottom: 0;
  background:
    radial-gradient(circle at 74% 26%, rgba(7, 87, 248, 0.34), transparent 30%),
    linear-gradient(120deg, rgba(15, 185, 215, 0.14) 0 1px, transparent 1px 86px),
    linear-gradient(135deg, #07122f 0%, #0a1d4a 54%, #082238 100%);
}

.z2h-hero-grid {
  display: grid;
  min-height: 650px;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
  gap: 42px;
  align-items: center;
  padding: 58px 0 34px;
}

.z2h-hero-copy h1 {
  max-width: 760px;
  margin: 20px 0 18px;
  color: white;
  font-size: clamp(2.65rem, 4.7vw, 5rem);
  line-height: 1.02;
}

.z2h-hero-copy p {
  max-width: 620px;
  color: #c8d7f4;
  font-size: clamp(1.05rem, 1.65vw, 1.32rem);
}

.dark-eyebrow {
  color: #75d9ff;
  border-color: rgba(117, 217, 255, 0.32);
  background: rgba(117, 217, 255, 0.09);
}

.btn-ghost {
  color: white;
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.08);
}

.btn-warm {
  color: #111827;
  background: var(--amber);
}

.principle-strip {
  display: grid;
  max-width: 700px;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 30px;
}

.principle-strip span {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  padding: 12px;
  color: #dbeafe;
  background: rgba(255, 255, 255, 0.06);
  font-size: 0.86rem;
  font-weight: 850;
  text-align: center;
}

.z2h-command {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(14px);
}

.command-top {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  margin-bottom: 14px;
}

.command-top strong,
.mini-label {
  display: block;
}

.mini-label {
  color: #8ecbff;
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.command-top a {
  border: 1px solid rgba(246, 166, 33, 0.62);
  border-radius: 10px;
  padding: 9px 12px;
  color: #ffe6ab;
  font-weight: 900;
}

.compass-card {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  background: #0a1533;
}

.compass-card img {
  display: block;
  width: 100%;
  aspect-ratio: 1.56 / 1;
  object-fit: cover;
  opacity: 0.88;
}

.compass-overlay {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  padding: 14px;
  background: rgba(7, 18, 47, 0.76);
  backdrop-filter: blur(10px);
}

.compass-overlay strong,
.compass-overlay span {
  display: block;
}

.compass-overlay span {
  margin-top: 4px;
  color: #c8d7f4;
  font-size: 0.88rem;
}

.mini-road,
.learning-ticker {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 14px;
}

.mini-road span,
.learning-ticker span {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  padding: 10px;
  color: #c8d7f4;
  background: rgba(255, 255, 255, 0.06);
  font-size: 0.82rem;
  font-weight: 850;
  text-align: center;
}

.mini-road span.done {
  color: #b8ffe5;
  border-color: rgba(19, 168, 107, 0.36);
  background: rgba(19, 168, 107, 0.12);
}

.learning-ticker {
  grid-template-columns: repeat(6, 1fr);
  margin-top: 0;
  padding: 14px 0 28px;
}

.journey-section {
  margin-top: -1px;
  background: #07122f;
  color: white;
}

.journey-section .section-head p,
.journey-section .card p {
  color: #b8c7e5;
}

.journey-line {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}

.journey-line article {
  position: relative;
  min-height: 156px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  padding: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.035));
}

.journey-line article span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  color: white;
  background: var(--blue);
  font-weight: 900;
}

.journey-line article strong {
  display: block;
  margin-top: 16px;
  line-height: 1.2;
}

.journey-line article p {
  margin: 8px 0 0;
  color: #b8c7e5;
  font-size: 0.88rem;
}

.testing-layout,
.build-layout,
.founder-card {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
  gap: 34px;
  align-items: center;
}

.testing-layout h2,
.build-layout h2,
.founder-card h2 {
  margin: 18px 0 12px;
  font-size: clamp(2rem, 3.4vw, 3.35rem);
  line-height: 1.08;
}

.testing-layout p,
.build-layout p,
.founder-card p {
  color: var(--muted);
}

.testing-board {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.testing-board article,
.social-card,
.build-timeline article,
.why-grid article {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 18px;
  background: white;
  box-shadow: 0 12px 32px rgba(7, 18, 47, 0.06);
}

.testing-board strong,
.social-card strong,
.build-timeline strong,
.why-grid strong {
  display: block;
  margin: 12px 0 6px;
  line-height: 1.22;
}

.social-wall {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.social-card {
  position: relative;
  overflow: hidden;
  min-height: 220px;
  padding-top: 72px;
}

.social-card > img {
  position: absolute;
  inset: 0 0 auto;
  width: 100%;
  height: 54px;
  object-fit: cover;
}

.social-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 54px;
  background: linear-gradient(135deg, var(--blue), var(--teal));
}

.social-card span {
  position: absolute;
  top: 16px;
  left: 18px;
  color: white;
  font-weight: 900;
}

.social-card a {
  display: inline-flex;
  margin-top: 18px;
  color: var(--blue);
  font-weight: 900;
}

.social-card.x::before {
  background: linear-gradient(135deg, #111827, #334155);
}

.social-card.linkedin::before {
  background: linear-gradient(135deg, #0a66c2, #22a6d5);
}

.social-card.instagram::before {
  background: linear-gradient(135deg, #7c3aed, #f97316);
}

.build-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.build-timeline article span {
  display: block;
  width: 100%;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue), var(--teal));
}

.founder-section {
  background:
    radial-gradient(circle at 88% 24%, rgba(246, 166, 33, 0.12), transparent 28%),
    #ffffff;
}

.founder-card {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 34px;
  background: linear-gradient(135deg, #ffffff, #f3f8ff);
  box-shadow: var(--shadow);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

@media (max-width: 1040px) {
  .z2h-hero-grid,
  .testing-layout,
  .build-layout,
  .founder-card {
    grid-template-columns: 1fr;
  }

  .z2h-command {
    max-width: 760px;
  }

  .journey-line,
  .social-wall {
    grid-template-columns: repeat(3, 1fr);
  }

  .learning-ticker {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 720px) {
  .z2h-hero-grid {
    min-height: auto;
    padding: 38px 0 24px;
  }

  .z2h-hero-copy h1 {
    font-size: 2.55rem;
  }

  .principle-strip,
  .mini-road,
  .learning-ticker,
  .journey-line,
  .testing-board,
  .social-wall,
  .build-timeline,
  .why-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .compass-overlay {
    position: static;
    border-radius: 0 0 12px 12px;
  }

  .founder-card {
    padding: 22px;
  }
}

.z2h-hero {
  position: relative;
  min-height: calc(100vh - 76px);
  overflow: hidden;
  background:
    radial-gradient(circle at 77% 36%, rgba(7, 87, 248, 0.42), transparent 32%),
    radial-gradient(circle at 53% 78%, rgba(15, 185, 215, 0.14), transparent 28%),
    linear-gradient(115deg, #030814 0%, #07122f 43%, #092f6f 100%);
}

.z2h-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 76px 76px;
  mask-image: linear-gradient(90deg, transparent, #000 20%, #000 86%, transparent);
  pointer-events: none;
}

.z2h-hero::after {
  content: "";
  position: absolute;
  right: -10vw;
  bottom: -34vh;
  width: 72vw;
  height: 72vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(15, 185, 215, 0.18), transparent 62%);
  pointer-events: none;
}

.z2h-hero-grid {
  position: relative;
  z-index: 1;
  min-height: 670px;
  grid-template-columns: minmax(420px, 0.86fr) minmax(520px, 1.14fr);
  gap: 72px;
  padding: 70px 0 34px;
}

.z2h-hero-copy h1 {
  max-width: 700px;
  font-size: clamp(3rem, 5.4vw, 6.15rem);
  line-height: 0.96;
  text-wrap: balance;
}

.z2h-hero-copy p {
  max-width: 610px;
  color: #d7e7ff;
}

.dark-eyebrow {
  border-radius: 8px;
  color: #7be4ff;
  background: rgba(15, 185, 215, 0.1);
}

.z2h-command {
  position: relative;
  min-height: 520px;
  border: 0;
  padding: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.command-top {
  position: absolute;
  top: 14px;
  right: 38px;
  left: 74px;
  z-index: 4;
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: 14px;
  padding: 12px;
  background: rgba(7, 18, 47, 0.82);
  backdrop-filter: blur(12px);
}

.command-top a {
  color: #111827;
  background: var(--amber);
  border-color: transparent;
}

.compass-card {
  position: absolute;
  right: 18px;
  top: 76px;
  width: min(520px, 90%);
  min-height: 470px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 42px;
  padding: 18px;
  background: linear-gradient(145deg, #111827, #020617);
  box-shadow: 0 44px 90px rgba(0, 0, 0, 0.42);
  transform: rotate(7deg);
}

.compass-card::before {
  content: "";
  position: absolute;
  top: 15px;
  left: 50%;
  width: 98px;
  height: 22px;
  border-radius: 0 0 18px 18px;
  background: #020617;
  transform: translateX(-50%);
  z-index: 3;
}

.compass-card img {
  width: 100%;
  height: 430px;
  aspect-ratio: auto;
  border-radius: 28px;
  object-fit: cover;
  opacity: 0.72;
}

.screen-line {
  position: absolute;
  right: 60px;
  bottom: 150px;
  left: 60px;
  height: 72px;
  border-bottom: 4px solid #20d179;
  border-radius: 50%;
  transform: rotate(-8deg);
  opacity: 0.82;
}

.compass-overlay {
  right: 34px;
  bottom: 34px;
  left: 34px;
  border-radius: 18px;
  background: rgba(7, 18, 47, 0.84);
}

.float-card {
  position: absolute;
  z-index: 5;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 14px;
  padding: 14px 16px;
  color: white;
  background: rgba(8, 26, 62, 0.74);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(14px);
}

.float-card span,
.float-card strong {
  display: block;
}

.float-card span {
  color: #8ecbff;
  font-size: 0.78rem;
  font-weight: 900;
}

.float-card strong {
  margin-top: 6px;
  font-size: 0.95rem;
}

.float-left {
  left: 0;
  top: 170px;
}

.float-right {
  right: 0;
  top: 232px;
}

.float-bottom {
  right: 22px;
  bottom: 66px;
}

.principle-strip {
  max-width: 620px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.principle-strip span,
.learning-ticker span,
.mini-road span {
  border-color: rgba(255, 255, 255, 0.17);
  background: rgba(255, 255, 255, 0.075);
}

.learning-ticker {
  position: relative;
  z-index: 1;
  padding-bottom: 36px;
}

@media (max-width: 1080px) {
  .z2h-hero-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .z2h-command {
    min-height: 560px;
    max-width: 720px;
  }

  .compass-card {
    left: 72px;
    right: auto;
  }
}

@media (max-width: 720px) {
  .z2h-hero {
    min-height: auto;
  }

  .z2h-hero-grid {
    padding-top: 44px;
  }

  .z2h-hero-copy h1 {
    font-size: 3rem;
  }

  .z2h-command {
    min-height: auto;
  }

  .command-top,
  .compass-card,
  .float-card {
    position: static;
    transform: none;
    width: auto;
    margin-top: 12px;
  }

  .compass-card {
    padding: 10px;
    border-radius: 22px;
  }

  .compass-card::before,
  .screen-line {
    display: none;
  }

  .compass-card img {
    height: auto;
    border-radius: 16px;
  }
}

/* Final public hero balance: contained visual, readable headline, clean first viewport. */
.z2h-hero {
  min-height: auto;
  background:
    radial-gradient(circle at 78% 42%, rgba(7, 87, 248, 0.34), transparent 34%),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(115deg, #030814 0%, #07122f 48%, #0b3476 100%);
  background-size: auto, 78px 78px, 78px 78px, auto;
}

.z2h-hero-grid {
  min-height: 560px;
  grid-template-columns: minmax(360px, 0.9fr) minmax(420px, 1.1fr);
  gap: 56px;
  padding: 58px 0 28px;
}

.z2h-hero-copy {
  align-self: center;
}

.z2h-hero-copy h1 {
  max-width: 640px;
  font-size: clamp(3rem, 3.85vw, 4.8rem);
  line-height: 1.02;
}

.z2h-hero-copy p {
  max-width: 590px;
  font-size: clamp(1.05rem, 1.25vw, 1.22rem);
}

.hero-actions {
  margin-top: 26px;
}

.principle-strip {
  max-width: 560px;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 24px;
}

.principle-strip span {
  min-height: 58px;
  display: grid;
  place-items: center;
  padding: 10px;
}

.z2h-command {
  align-self: center;
  min-height: 440px;
  isolation: isolate;
}

.command-top {
  top: 0;
  right: 42px;
  left: 88px;
  padding: 14px 16px;
}

.compass-card {
  top: 70px;
  right: 44px;
  width: min(560px, calc(100% - 86px));
  min-height: 360px;
  border-radius: 30px;
  padding: 14px;
  transform: rotate(5deg);
}

.compass-card::before {
  width: 82px;
  height: 18px;
}

.compass-card img {
  height: 320px;
  border-radius: 22px;
}

.compass-overlay {
  right: 24px;
  bottom: 24px;
  left: 24px;
  padding: 13px 15px;
}

.screen-line {
  right: 50px;
  bottom: 115px;
  left: 50px;
  height: 50px;
}

.float-left {
  left: 18px;
  top: 190px;
}

.float-right {
  right: 0;
  top: 230px;
}

.float-bottom {
  right: 34px;
  bottom: 8px;
}

.learning-ticker {
  padding: 10px 0 42px;
}

.journey-section {
  padding-top: 58px;
}

@media (max-width: 1180px) {
  .z2h-hero-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .z2h-command {
    width: min(760px, 100%);
    min-height: 470px;
  }
}

@media (max-width: 760px) {
  .z2h-hero-grid {
    min-height: auto;
    padding: 38px 0 22px;
  }

  .z2h-hero-copy h1 {
    font-size: clamp(2.5rem, 12vw, 3.4rem);
  }

  .principle-strip,
  .learning-ticker {
    grid-template-columns: repeat(2, 1fr);
  }

  .z2h-command {
    min-height: auto;
  }

  .command-top,
  .compass-card,
  .float-card {
    position: static;
    width: auto;
    transform: none;
    margin-top: 12px;
  }

  .compass-card {
    min-height: 0;
  }

  .compass-card img {
    height: auto;
  }
}

/* Shared Hinglish / English switch */
.language-switch {
  display: inline-flex;
  flex: 0 0 auto;
  min-height: 38px;
  align-items: center;
  border: 1px solid #cfd9eb;
  border-radius: 8px;
  padding: 3px;
  background: #f5f8fd;
}

.language-switch button {
  min-width: 66px;
  min-height: 30px;
  border: 0;
  border-radius: 6px;
  padding: 0 9px;
  color: #526078;
  background: transparent;
  font: inherit;
  font-size: 0.75rem;
  font-weight: 850;
  cursor: pointer;
}

.language-switch button.active {
  color: #ffffff;
  background: var(--blue);
  box-shadow: 0 5px 12px rgba(7, 87, 248, 0.2);
}

.language-short {
  display: none;
}

.blog-reading-toolbar {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  width: min(100% - 28px, 1270px);
  min-height: 62px;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
}

.blog-reading-brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--ink);
}

.blog-reading-brand > span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 8px;
  color: #ffffff;
  background: var(--blue);
  font-weight: 950;
}

.blog-reading-brand strong {
  font-size: 0.95rem;
}

@media (max-width: 1180px) {
  .nav .language-switch button {
    min-width: 38px;
    padding: 0 7px;
  }

  .nav .language-long {
    display: none;
  }

  .nav .language-short {
    display: inline;
  }
}

@media (max-width: 980px) {
  .nav > .language-switch {
    margin-left: auto;
  }

  .nav.open {
    grid-template-columns: minmax(0, 1fr) auto auto;
  }

  .nav.open .brand {
    grid-column: 1;
    grid-row: 1;
  }

  .nav.open > .language-switch {
    grid-column: 2;
    grid-row: 1;
  }

  .nav.open .menu-toggle {
    grid-column: 3;
    grid-row: 1;
  }

  .nav.open .nav-links {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .nav.open .nav-actions {
    grid-column: 1 / -1;
    grid-row: 3;
  }
}

@media (max-width: 460px) {
  .nav {
    gap: 7px;
  }

  .nav .brand-text span {
    display: none;
  }

  .nav > .language-switch {
    min-height: 34px;
  }

  .nav > .language-switch button {
    min-width: 34px;
    min-height: 26px;
    padding: 0 5px;
    font-size: 0.7rem;
  }

  .blog-reading-toolbar {
    width: min(100% - 20px, 1270px);
    min-height: 56px;
  }
}

/* AOC-inspired, original Z2H academy homepage. */
.academy-page {
  background: #ffffff;
}

.academy-page .topbar {
  background: rgba(255, 255, 255, 0.96);
}

.academy-page .academy-hero {
  min-height: auto;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(7, 87, 248, 0.04) 1px, transparent 1px),
    linear-gradient(180deg, rgba(7, 87, 248, 0.04) 1px, transparent 1px),
    linear-gradient(135deg, #ffffff 0%, #f3f8ff 58%, #e9f7fb 100%);
  background-size: 86px 86px, 86px 86px, auto;
  border-bottom: 1px solid var(--line);
}

.academy-page .academy-hero::before,
.academy-page .academy-hero::after {
  display: none;
}

.academy-hero-grid {
  display: grid;
  min-height: 620px;
  grid-template-columns: minmax(0, 0.95fr) minmax(430px, 1.05fr);
  gap: 54px;
  align-items: center;
  padding: 58px 0 42px;
}

.academy-hero-copy h1 {
  max-width: 760px;
  margin: 20px 0 18px;
  color: var(--ink);
  font-size: clamp(3.2rem, 5.4vw, 6.1rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.academy-hero-copy p {
  max-width: 620px;
  margin: 0;
  color: #475570;
  font-size: clamp(1.08rem, 1.6vw, 1.32rem);
}

.academy-page .dark-eyebrow {
  color: var(--blue);
  border-color: rgba(7, 87, 248, 0.2);
  background: rgba(7, 87, 248, 0.07);
}

.academy-page .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.btn-soft {
  color: #0f3d5b;
  background: #e7f8fb;
  border-color: rgba(15, 185, 215, 0.28);
}

.academy-hero-media {
  position: relative;
  border: 1px solid rgba(220, 229, 243, 0.9);
  border-radius: 20px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 28px 70px rgba(7, 18, 47, 0.14);
}

.academy-hero-media img {
  display: block;
  width: 100%;
  aspect-ratio: 1.34 / 1;
  object-fit: cover;
  border-radius: 14px;
}

.media-note {
  position: absolute;
  right: 30px;
  bottom: 30px;
  left: 30px;
  border: 1px solid rgba(220, 229, 243, 0.85);
  border-radius: 12px;
  padding: 16px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 42px rgba(7, 18, 47, 0.12);
  backdrop-filter: blur(12px);
}

.media-note strong,
.media-note span {
  display: block;
}

.media-note span {
  margin-top: 4px;
  color: var(--muted);
}

.academy-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  padding: 0 0 48px;
}

.academy-stats span {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 18px 16px;
  color: var(--ink);
  background: white;
  box-shadow: 0 10px 28px rgba(7, 18, 47, 0.06);
  font-size: 1rem;
  font-weight: 900;
  text-align: center;
}

.academy-section {
  padding: 78px 0;
  background: #ffffff;
}

.academy-section.soft {
  background: #f5f8fd;
}

.section-kicker {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--blue);
  font-size: 0.82rem;
  font-weight: 950;
  text-transform: uppercase;
}

.academy-feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.academy-feature-grid article,
.story-card,
.faq-list details {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 22px;
  background: white;
  box-shadow: 0 12px 32px rgba(7, 18, 47, 0.06);
}

.academy-feature-grid strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.academy-feature-grid p {
  margin: 0;
  color: var(--muted);
}

.academy-story {
  padding: 84px 0;
  color: white;
  background:
    radial-gradient(circle at 80% 20%, rgba(7, 87, 248, 0.26), transparent 32%),
    linear-gradient(135deg, #07122f, #0a265f);
}

.academy-story-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.75fr);
  gap: 34px;
  align-items: center;
}

.academy-story h2 {
  max-width: 760px;
  margin: 0 0 14px;
  font-size: clamp(2.2rem, 4vw, 4.2rem);
  line-height: 1.08;
}

.academy-story p {
  max-width: 700px;
  color: #c8d7f4;
}

.story-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.story-card {
  color: var(--ink);
}

.story-card ul {
  margin: 16px 0 0;
  padding-left: 20px;
  color: var(--muted);
}

.academy-community {
  padding: 72px 0;
  background: #ffffff;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 900;
}

.faq-list p {
  color: var(--muted);
}

@media (max-width: 980px) {
  .academy-hero-grid,
  .academy-story-grid {
    grid-template-columns: 1fr;
  }

  .academy-feature-grid,
  .academy-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .academy-hero-grid {
    min-height: auto;
    padding: 42px 0 24px;
  }

  .academy-hero-copy h1 {
    font-size: 2.7rem;
  }

  .academy-feature-grid,
  .academy-stats {
    grid-template-columns: 1fr;
  }

  .media-note {
    position: static;
    margin-top: 10px;
  }

  .academy-page .hero-actions .btn {
    width: 100%;
  }
}

/* Final academy hero sizing: keep full message, image, and CTAs visible on desktop. */
.academy-hero-grid {
  min-height: 560px;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 0.95fr);
  gap: 58px;
  padding: 42px 0 24px;
}

.academy-hero-copy h1 {
  max-width: 640px;
  margin: 16px 0 14px;
  font-size: clamp(2.9rem, 4.05vw, 4.9rem);
  line-height: 1.03;
}

.academy-hero-copy p {
  max-width: 610px;
  font-size: clamp(1rem, 1.22vw, 1.18rem);
  line-height: 1.65;
}

.academy-page .hero-actions {
  margin-top: 24px;
}

.academy-page .hero-actions .btn {
  min-height: 46px;
  padding: 0 20px;
}

.academy-hero-media {
  max-width: 560px;
  justify-self: end;
  border-radius: 18px;
}

.academy-hero-media img {
  aspect-ratio: 1.42 / 1;
}

.media-note {
  right: 22px;
  bottom: 22px;
  left: 22px;
  padding: 14px 16px;
}

.academy-stats {
  gap: 14px;
  padding-bottom: 34px;
}

.academy-stats span {
  padding: 14px 12px;
}

@media (min-width: 1500px) {
  .academy-hero-grid {
    min-height: 590px;
  }

  .academy-hero-copy h1 {
    font-size: 5.15rem;
  }
}

@media (max-width: 980px) {
  .academy-hero-grid {
    min-height: auto;
  }

  .academy-hero-media {
    justify-self: start;
    max-width: 680px;
  }
}

/* Phone-reference hero requested by user. */
.phone-hero {
  min-height: auto;
  overflow: hidden;
  color: white;
  background:
    radial-gradient(circle at 78% 46%, rgba(7, 87, 248, 0.35), transparent 34%),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(115deg, #030713 0%, #07142f 45%, #0a3477 100%);
  background-size: auto, 78px 78px, 78px 78px, auto;
}

.phone-hero::before,
.phone-hero::after {
  display: none;
}

.phone-hero-grid {
  display: grid;
  min-height: 520px;
  grid-template-columns: minmax(340px, 0.9fr) minmax(500px, 1.1fr);
  gap: 44px;
  align-items: center;
  padding: 38px 0 18px;
}

.phone-hero-copy h1 {
  max-width: 560px;
  margin: 16px 0 14px;
  color: white;
  font-size: clamp(2.75rem, 4.3vw, 4.55rem);
  line-height: 1.04;
}

.phone-hero-copy h1::first-line {
  color: white;
}

.phone-hero-copy p {
  max-width: 540px;
  margin: 0;
  color: #d9e7ff;
  font-size: clamp(1rem, 1.18vw, 1.14rem);
}

.phone-hero .dark-eyebrow {
  color: #78ddff;
  border-color: rgba(120, 221, 255, 0.28);
  background: rgba(120, 221, 255, 0.09);
}

.phone-hero .hero-actions .btn-outline {
  color: white;
  border-color: rgba(255,255,255,0.32);
  background: rgba(255,255,255,0.07);
}

.phone-stage {
  position: relative;
  min-height: 440px;
}

.phone-device {
  position: absolute;
  right: 96px;
  top: 20px;
  width: 310px;
  height: 440px;
  border: 10px solid #0b1224;
  border-radius: 38px;
  background: #070d1d;
  box-shadow: 0 40px 90px rgba(0,0,0,0.42);
  transform: rotate(9deg);
}

.phone-notch {
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 3;
  width: 112px;
  height: 26px;
  border-radius: 0 0 18px 18px;
  background: #0b1224;
  transform: translateX(-50%);
}

.phone-screen {
  position: absolute;
  inset: 10px;
  overflow: hidden;
  border-radius: 28px;
  padding: 24px 20px;
  background:
    linear-gradient(180deg, rgba(7,87,248,0.2), transparent 42%),
    linear-gradient(135deg, #09142d, #020713);
}

.phone-screen::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 0 28px, rgba(255,255,255,0.04) 28px 29px),
    linear-gradient(180deg, transparent 0 34px, rgba(255,255,255,0.04) 34px 35px);
  background-size: 58px 58px;
}

.phone-screen-top,
.demo-value,
.demo-chart,
.demo-modules {
  position: relative;
  z-index: 1;
}

.phone-screen-top span,
.demo-value span {
  display: block;
  color: #79d9ff;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.phone-screen-top strong {
  display: block;
  margin-top: 6px;
  color: white;
  font-size: 1.05rem;
}

.demo-value {
  margin-top: 26px;
}

.demo-value strong {
  display: block;
  margin: 6px 0;
  color: #35e38f;
  font-size: 1.72rem;
  line-height: 1;
}

.demo-value small {
  color: #b9c9e7;
  font-weight: 800;
}

.demo-chart {
  display: flex;
  align-items: end;
  gap: 8px;
  height: 118px;
  margin-top: 28px;
  border-bottom: 2px solid rgba(53, 227, 143, 0.65);
}

.demo-chart span {
  width: 24px;
  border-radius: 8px 8px 0 0;
  background: linear-gradient(180deg, #35e38f, #0757f8);
}

.demo-chart span:nth-child(1) { height: 42%; }
.demo-chart span:nth-child(2) { height: 62%; }
.demo-chart span:nth-child(3) { height: 50%; }
.demo-chart span:nth-child(4) { height: 76%; }
.demo-chart span:nth-child(5) { height: 68%; }
.demo-chart span:nth-child(6) { height: 92%; }

.demo-modules {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 24px;
}

.demo-modules span {
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  padding: 10px;
  color: #dbeafe;
  background: rgba(255,255,255,0.06);
  font-size: 0.82rem;
  font-weight: 900;
  text-align: center;
}

.phone-chip {
  position: absolute;
  z-index: 5;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 12px;
  padding: 12px 14px;
  color: white;
  background: rgba(12, 31, 70, 0.82);
  box-shadow: 0 18px 45px rgba(0,0,0,0.26);
  backdrop-filter: blur(14px);
}

.phone-chip strong,
.phone-chip span {
  display: block;
}

.phone-chip strong {
  font-size: 0.9rem;
}

.phone-chip span {
  margin-top: 5px;
  color: #b9d8ff;
  font-size: 0.78rem;
  font-weight: 800;
}

.chip-tips {
  top: 42px;
  left: 80px;
}

.chip-transparent {
  left: 24px;
  bottom: 116px;
}

.chip-education {
  right: 18px;
  top: 88px;
}

.chip-content {
  right: 0;
  top: 212px;
}

.chip-community {
  right: 42px;
  bottom: 24px;
}

.phone-proof {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  padding: 0 0 30px;
}

.phone-proof span {
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 12px;
  padding: 13px 10px;
  color: #e8f2ff;
  background: rgba(255,255,255,0.07);
  font-weight: 900;
  text-align: center;
}

.ai-teacher-section {
  padding: 64px 0;
  background: #ffffff;
  border-bottom: 1px solid var(--line);
}

.ai-teacher-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.72fr);
  gap: 40px;
  align-items: center;
}

.ai-teacher-copy h2 {
  max-width: 760px;
  margin: 12px 0;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.08;
}

.ai-teacher-copy p {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.ai-feature-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 26px 0;
}

.ai-feature-list article {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px;
  background: linear-gradient(180deg, #ffffff, #f6f9ff);
}

.ai-feature-list strong,
.ai-feature-list span {
  display: block;
}

.ai-feature-list strong {
  font-size: 1rem;
}

.ai-feature-list span {
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.92rem;
}

.ai-chat-card {
  border: 1px solid rgba(7, 87, 248, 0.18);
  border-radius: 18px;
  padding: 20px;
  background:
    linear-gradient(90deg, rgba(7, 87, 248, 0.05) 1px, transparent 1px),
    linear-gradient(180deg, rgba(7, 87, 248, 0.05) 1px, transparent 1px),
    linear-gradient(145deg, #ffffff, #eef7ff);
  background-size: 34px 34px, 34px 34px, auto;
  box-shadow: var(--shadow);
}

.ai-chat-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}

.ai-chat-head span {
  color: var(--blue);
  font-weight: 900;
}

.ai-chat-head strong {
  border-radius: 999px;
  padding: 7px 10px;
  color: #0f6b44;
  background: rgba(19, 168, 107, 0.12);
  font-size: 0.82rem;
}

.ai-bubble {
  max-width: 92%;
  border-radius: 14px;
  padding: 14px 16px;
  font-weight: 750;
}

.ai-bubble.user {
  margin-left: auto;
  color: white;
  background: var(--blue);
}

.ai-bubble.bot {
  margin-top: 12px;
  color: var(--ink);
  background: white;
  border: 1px solid var(--line);
}

.ai-plan {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 18px;
}

.ai-plan span {
  border-radius: 8px;
  padding: 10px;
  color: #0b3475;
  background: rgba(7, 87, 248, 0.08);
  font-size: 0.82rem;
  font-weight: 900;
  text-align: center;
}

@media (max-width: 1040px) {
  .phone-hero-grid {
    grid-template-columns: 1fr;
  }

  .phone-stage {
    min-height: 540px;
    width: min(720px, 100%);
  }

  .ai-teacher-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .phone-hero-grid {
    min-height: auto;
    padding: 40px 0 22px;
  }

  .phone-hero-copy h1 {
    font-size: clamp(2.25rem, 10vw, 3rem);
  }

  .phone-stage {
    min-height: auto;
  }

  .phone-device,
  .phone-chip {
    position: static;
    transform: none;
    width: auto;
    margin-top: 12px;
  }

  .phone-device {
    height: 430px;
  }

  .phone-proof {
    grid-template-columns: 1fr 1fr;
  }

  .ai-feature-list,
  .ai-plan {
    grid-template-columns: 1fr;
  }

  .ai-teacher-section {
    padding: 46px 0;
  }
}

/* Blog article ending sections */
.blog-after-article {
  width: min(1100px, calc(100% - 32px));
  margin: 0 auto;
  padding: 8px 0 72px;
}

.blog-learning-recap {
  border-left: 5px solid var(--teal);
  border-radius: 8px;
  padding: 26px 28px;
  background: #f3f9fb;
}

.blog-learning-recap h2,
.blog-related h2,
.blog-next-learning h2 {
  margin: 6px 0 12px;
  color: var(--ink);
  font-size: clamp(1.45rem, 2.2vw, 2rem);
  line-height: 1.18;
}

.blog-learning-recap ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 24px;
  margin: 0;
  padding-left: 20px;
}

.blog-learning-recap li {
  color: #33415f;
  line-height: 1.6;
}

.blog-next-learning {
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  overflow: hidden;
  border-radius: 8px;
  margin-top: 28px;
  padding: 16px;
  color: #ffffff;
  background: #07122f;
}

.blog-next-image {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: 6px;
  background: #10234b;
}

.blog-next-image img,
.blog-related-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-next-copy > span {
  color: #74d8cb;
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.blog-next-learning h2 {
  color: #ffffff;
}

.blog-next-learning p {
  margin: 0;
  color: #c8d3e8;
  line-height: 1.6;
}

.blog-next-action,
.blog-coming-soon {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 7px;
  padding: 0 16px;
  white-space: nowrap;
  font-weight: 950;
}

.blog-next-action {
  color: #07122f;
  background: #74d8cb;
}

.blog-coming-soon {
  border: 1px solid #42547b;
  color: #d7e0f1;
  background: #14264d;
}

.blog-related {
  border-top: 1px solid var(--line);
  margin-top: 44px;
  padding-top: 32px;
}

.blog-related-head {
  margin-bottom: 18px;
}

.blog-related-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

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

.blog-related-image {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 7px;
  margin-bottom: 12px;
  background: #07122f;
}

.blog-related-card > span {
  display: block;
  margin-bottom: 5px;
  color: var(--teal-dark);
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
}

.blog-related-card > strong {
  display: block;
  color: var(--ink);
  font-size: 1.08rem;
  line-height: 1.3;
}

.blog-feedback {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-top: 42px;
  padding: 22px 0;
}

.blog-feedback strong,
.blog-feedback [data-blog-feedback-message] {
  display: block;
}

.blog-feedback [data-blog-feedback-message] {
  min-height: 20px;
  margin-top: 3px;
  color: var(--teal-dark);
  font-size: 0.85rem;
  font-weight: 800;
}

.blog-feedback-actions {
  display: flex;
  gap: 8px;
}

.blog-feedback-actions button {
  min-width: 70px;
  min-height: 40px;
  border: 1px solid #cbd8ee;
  border-radius: 7px;
  color: #24314f;
  background: #ffffff;
  cursor: pointer;
  font: inherit;
  font-weight: 900;
}

.blog-feedback-actions button:hover,
.blog-feedback-actions button.selected {
  border-color: var(--teal);
  color: #07564f;
  background: #eaf8f6;
}

.blog-back-to-list {
  display: inline-flex;
  margin-top: 24px;
  color: var(--blue);
  font-weight: 950;
}

@media (max-width: 760px) {
  .blog-after-article {
    width: min(100% - 20px, 680px);
    padding-bottom: 44px;
  }

  .blog-learning-recap {
    padding: 20px;
  }

  .blog-learning-recap ul,
  .blog-related-grid {
    grid-template-columns: 1fr;
  }

  .blog-next-learning {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .blog-next-image {
    aspect-ratio: 16 / 8;
  }

  .blog-next-action,
  .blog-coming-soon {
    width: 100%;
  }

  .blog-feedback {
    align-items: stretch;
    flex-direction: column;
  }

  .blog-feedback-actions button {
    flex: 1;
  }
}

.career-hero {
  padding: 76px 0 54px;
  background:
    radial-gradient(circle at 82% 18%, rgba(7, 87, 248, 0.16), transparent 28%),
    linear-gradient(135deg, #ffffff, #eef7ff);
  border-bottom: 1px solid var(--line);
}

.career-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 34px;
  align-items: center;
}

.career-hero h1 {
  max-width: 760px;
  margin: 18px 0 12px;
  font-size: clamp(2.7rem, 5vw, 5rem);
  line-height: 1.04;
}

.career-hero p {
  max-width: 680px;
  color: var(--muted);
  font-size: 1.15rem;
}

.career-note,
.application-card,
.job-card {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: white;
  box-shadow: var(--shadow);
}

.career-note {
  padding: 24px;
}

.career-note strong {
  display: block;
  font-size: 1.25rem;
}

.jobs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.job-card {
  padding: 22px;
}

.job-card-top,
.job-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
}

.job-card-top span,
.job-meta span {
  border-radius: 999px;
  padding: 6px 10px;
  color: var(--blue);
  background: #edf4ff;
  font-size: 0.82rem;
  font-weight: 900;
}

.job-card h3 {
  margin: 18px 0 8px;
  font-size: 1.45rem;
}

.job-card p {
  color: var(--muted);
}

.job-card .btn {
  margin-top: 18px;
}

.apply-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(420px, 1.15fr);
  gap: 34px;
  align-items: start;
}

.apply-layout h2 {
  margin: 0 0 12px;
  font-size: clamp(2rem, 3.6vw, 3.4rem);
  line-height: 1.1;
}

.apply-layout p {
  color: var(--muted);
}

.apply-steps {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.apply-steps span {
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 12px;
  background: white;
  font-weight: 900;
}

.application-card {
  padding: 24px;
}

@media (max-width: 880px) {
  .career-hero-grid,
  .jobs-grid,
  .apply-layout {
    grid-template-columns: 1fr;
  }
}

/* Mobile polish layer: keep phone layouts clean without changing desktop. */
@media (max-width: 760px) {
  html,
  body {
    overflow-x: hidden;
  }

  .shell {
    width: min(100% - 28px, 1240px);
  }

  .support-topbar {
    position: static;
  }

  .support-inner {
    min-height: auto;
    gap: 8px;
    padding: 9px 0;
    font-size: 0.78rem;
  }

  .support-links,
  .support-footer-actions {
    width: 100%;
    gap: 8px;
  }

  .support-links a,
  .support-footer-actions a:not(.support-whatsapp),
  .support-whatsapp {
    max-width: 100%;
    min-height: 34px;
    overflow-wrap: anywhere;
  }

  .topbar {
    position: sticky;
    top: 0;
  }

  .nav {
    position: relative;
    min-height: 64px;
    gap: 12px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
    border-radius: 9px;
  }

  .brand-text strong {
    font-size: 0.95rem;
  }

  .menu-toggle {
    flex: 0 0 auto;
  }

  .nav.open {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    padding: 10px 0;
  }

  .nav.open .nav-links,
  .nav.open .nav-actions {
    position: static;
    grid-column: 1 / -1;
    width: 100%;
    margin-top: 10px;
    box-shadow: 0 12px 28px rgba(7, 18, 47, 0.08);
  }

  .nav.open .nav-links a {
    border-bottom: 0;
    border-radius: 8px;
    padding: 10px 12px;
  }

  .nav.open .nav-links a.active {
    background: rgba(7, 87, 248, 0.08);
  }

  .nav.open .nav-actions .btn {
    width: 100%;
  }

  .page-hero {
    padding: 44px 0 30px;
  }

  .blog-hero {
    padding: 28px 0 24px;
  }

  .blog-hero-grid,
  .blog-search-row,
  .blog-grid,
  .blog-board-grid {
    grid-template-columns: 1fr;
  }

  .blog-board {
    padding: 18px 0 44px;
  }

  .blog-board-grid {
    gap: 22px;
  }

  .blog-feed-head {
    margin-bottom: 22px;
  }

  .blog-feed-head h1 {
    font-size: clamp(1.9rem, 9vw, 2.55rem);
  }

  .blog-result-head {
    margin-bottom: 16px;
  }

  .blog-result-head h1,
  .blog-result-head h2 {
    font-size: clamp(1.35rem, 7vw, 1.75rem);
  }

  .blog-feed-head p,
  .blog-result-head p {
    font-size: 0.95rem;
  }

  .blog-search-card,
  .blog-side-card {
    padding: 14px;
  }

  .blog-search-row {
    gap: 8px;
  }

  .blog-search-row .btn {
    min-width: 92px;
    padding: 0 12px;
  }

  body[data-page="blog"]:not(.blog-reading-mode) .blog-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  body[data-page="blog"]:not(.blog-reading-mode) .blog-card {
    display: block;
    padding: 0;
  }

  body[data-page="blog"]:not(.blog-reading-mode) .blog-card-image {
    width: 100%;
  }

  body[data-page="blog"]:not(.blog-reading-mode) .blog-card h3 {
    font-size: 1.18rem;
  }

  .blog-sidebar {
    position: static;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .blog-sidebar .blog-side-card:last-child {
    display: none;
  }

  .page-hero h1,
  .career-hero h1,
  .blog-hero h1 {
    font-size: clamp(1.9rem, 8.5vw, 2.45rem);
    line-height: 1.1;
  }

  .page-hero p,
  .career-hero p,
  .blog-hero p {
    font-size: 0.96rem;
  }

  body[data-page="blog"]:not(.blog-reading-mode) .academy-section {
    padding: 30px 0 46px;
  }

  body[data-page="blog"]:not(.blog-reading-mode) .section-head h2 {
    font-size: clamp(1.45rem, 7vw, 1.85rem);
  }

  .academy-section,
  .section {
    padding: 46px 0;
  }

  .section-head {
    gap: 14px;
  }

  .section-head h2,
  .academy-story-grid h2,
  .ai-teacher-copy h2,
  .apply-layout h2 {
    font-size: clamp(1.75rem, 8vw, 2.35rem);
    line-height: 1.12;
  }

  .phone-hero-grid {
    display: block;
    padding: 34px 0 18px;
  }

  .phone-hero-copy h1 {
    max-width: 100%;
    font-size: clamp(2.25rem, 11vw, 3.05rem);
    line-height: 1.04;
  }

  .phone-hero-copy p {
    max-width: 100%;
    font-size: 1rem;
  }

  .phone-hero .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 22px;
  }

  .phone-hero .hero-actions .btn {
    width: 100%;
  }

  .phone-stage {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    min-height: auto;
    margin-top: 26px;
  }

  .phone-device {
    position: relative;
    grid-column: 1 / -1;
    order: 1;
    right: auto;
    top: auto;
    width: min(300px, 100%);
    height: 410px;
    margin: 0 auto 8px;
    transform: none;
  }

  .phone-chip {
    position: static;
    order: 2;
    min-height: 74px;
    margin: 0;
    padding: 12px;
    transform: none;
  }

  .phone-chip strong {
    font-size: 0.86rem;
  }

  .phone-chip span {
    font-size: 0.74rem;
  }

  .demo-value strong {
    font-size: 1.45rem;
  }

  .demo-chart {
    height: 96px;
  }

  .phone-proof {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding-bottom: 24px;
  }

  .phone-proof span {
    min-height: 52px;
    display: grid;
    place-items: center;
    padding: 10px;
    font-size: 0.82rem;
  }

  .ai-teacher-grid,
  .academy-story-grid,
  .career-hero-grid,
  .apply-layout,
  .about-layout {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .ai-feature-list,
  .ai-plan,
  .grid-6,
  .grid-4,
  .grid-3,
  .jobs-grid {
    grid-template-columns: 1fr;
  }

  .ai-chat-card,
  .story-card,
  .career-note,
  .application-card,
  .job-card,
  .blog-search-card,
  .blog-card,
  .blog-article,
  .card {
    border-radius: 10px;
  }

  .blog-article-cover {
    height: 220px;
  }

  .blog-article-body,
  .related-blogs {
    padding: 22px;
  }

  .blog-content p {
    font-size: 1rem;
    line-height: 1.72;
  }

  .community-band,
  .support-footer-card,
  .placeholder-row,
  .job-card-top,
  .job-meta {
    align-items: flex-start;
    flex-direction: column;
  }

  .community-band,
  .support-footer-card,
  .application-card {
    padding: 20px;
  }

  .cms-two {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-bottom {
    margin-top: 24px;
  }
}

@media (max-width: 420px) {
  .shell {
    width: min(100% - 22px, 1240px);
  }

  .phone-stage,
  .phone-proof {
    grid-template-columns: 1fr;
  }

  .phone-device {
    width: min(282px, 100%);
    height: 390px;
    border-width: 8px;
    border-radius: 32px;
  }

  .phone-screen {
    inset: 8px;
    border-radius: 24px;
    padding: 22px 16px;
  }

  .demo-chart span {
    width: 20px;
  }

  .demo-modules {
    gap: 8px;
  }

  .demo-modules span {
    padding: 9px 6px;
    font-size: 0.76rem;
  }

  .btn {
    padding: 0 14px;
  }
}

/* Final blog feed layout: compact tools, cards first. */
body[data-page="blog"]:not(.blog-reading-mode) .blog-board {
  padding: 22px 0 64px;
}

body[data-page="blog"]:not(.blog-reading-mode) .blog-board-grid {
  gap: 18px;
}

body[data-page="blog"]:not(.blog-reading-mode) .blog-sidebar {
  order: -1;
  display: grid;
  grid-template-columns: minmax(420px, 0.72fr) minmax(240px, 0.28fr);
  gap: 16px;
  align-items: center;
  margin-bottom: 4px;
}

body[data-page="blog"]:not(.blog-reading-mode) .blog-sidebar .blog-side-card:last-child {
  display: none;
}

body[data-page="blog"]:not(.blog-reading-mode) .blog-search-card,
body[data-page="blog"]:not(.blog-reading-mode) .blog-side-card {
  min-height: 0;
  border: 0;
  border-radius: 0;
  padding: 0;
  background: transparent;
}

body[data-page="blog"]:not(.blog-reading-mode) .blog-search-card label,
body[data-page="blog"]:not(.blog-reading-mode) .blog-search-card p,
body[data-page="blog"]:not(.blog-reading-mode) .blog-side-title {
  display: none;
}

body[data-page="blog"]:not(.blog-reading-mode) .blog-search-row {
  max-width: 620px;
  grid-template-columns: 1fr auto;
  gap: 10px;
}

body[data-page="blog"]:not(.blog-reading-mode) .blog-search-row input {
  min-height: 48px;
  border-radius: 12px;
  background: #ffffff;
}

body[data-page="blog"]:not(.blog-reading-mode) .blog-search-row .btn {
  min-height: 48px;
  border-radius: 12px;
}

body[data-page="blog"]:not(.blog-reading-mode) .blog-topic-list {
  justify-content: flex-end;
  gap: 8px;
}

body[data-page="blog"]:not(.blog-reading-mode) .blog-topic-list button,
body[data-page="blog"]:not(.blog-reading-mode) .blog-topic-list span {
  padding: 7px 11px;
  font-size: 0.82rem;
}

body[data-page="blog"]:not(.blog-reading-mode) .blog-result-head {
  margin: 18px 0 20px;
}

body[data-page="blog"]:not(.blog-reading-mode) .blog-result-head .section-kicker {
  margin-bottom: 8px;
  font-size: 0.74rem;
}

body[data-page="blog"]:not(.blog-reading-mode) .blog-result-head h1,
body[data-page="blog"]:not(.blog-reading-mode) .blog-result-head h2 {
  font-size: clamp(1.55rem, 2vw, 2rem);
  line-height: 1.12;
}

body[data-page="blog"]:not(.blog-reading-mode) .blog-card h3 {
  font-size: clamp(1.05rem, 1.28vw, 1.36rem);
}

@media (max-width: 940px) {
  body[data-page="blog"]:not(.blog-reading-mode) .blog-sidebar {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  body[data-page="blog"]:not(.blog-reading-mode) .blog-topic-list {
    justify-content: flex-start;
  }
}

@media (max-width: 760px) {
  body[data-page="blog"]:not(.blog-reading-mode) .blog-board {
    padding: 16px 0 44px;
  }

  body[data-page="blog"]:not(.blog-reading-mode) .blog-search-row {
    grid-template-columns: 1fr auto;
  }

  body[data-page="blog"]:not(.blog-reading-mode) .blog-search-row input {
    min-width: 0;
  }

  body[data-page="blog"]:not(.blog-reading-mode) .blog-result-head {
    margin: 14px 0 16px;
  }
}

/* Keep the language control beside the mobile menu after all layout overrides. */
@media (max-width: 980px) {
  .nav > .language-switch {
    margin-left: auto;
  }

  .nav.open {
    grid-template-columns: minmax(0, 1fr) auto auto;
  }

  .nav.open .brand {
    grid-column: 1;
    grid-row: 1;
  }

  .nav.open > .language-switch {
    grid-column: 2;
    grid-row: 1;
  }

  .nav.open .menu-toggle {
    grid-column: 3;
    grid-row: 1;
  }

  .nav.open .nav-links {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .nav.open .nav-actions {
    grid-column: 1 / -1;
    grid-row: 3;
  }
}
