/* 蘑菇视频 · original Aurora Reel visual system */
:root {
  --ink: #171525;
  --ink-2: #272344;
  --night: #12101f;
  --paper: #fcfbff;
  --mist: #f2effa;
  --lilac: #d7ceff;
  --violet: #6846cf;
  --violet-dark: #382478;
  --coral: #ff6b73;
  --coral-deep: #db3e60;
  --mint: #adf1d9;
  --gold: #f5c96f;
  --white: #ffffff;
  --line: #e8e3f1;
  --muted: #746f86;
  --shadow: 0 18px 50px rgba(34, 23, 70, .12);
  --shadow-lg: 0 26px 80px rgba(22, 15, 57, .24);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 11px;
  --wrap: min(1180px, calc(100% - 44px));
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, "PingFang SC", "Microsoft YaHei", system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
button { cursor: pointer; }
::selection { background: var(--coral); color: var(--white); }
.container { width: var(--wrap); margin-inline: auto; }
.skip-link {
  position: fixed;
  z-index: 999;
  top: -80px;
  left: 18px;
  padding: 10px 15px;
  color: var(--ink);
  background: var(--mint);
  border-radius: var(--radius-sm);
  font-weight: 800;
  transition: top .2s ease;
}
.skip-link:focus { top: 18px; }
:focus-visible { outline: 3px solid var(--gold); outline-offset: 4px; }
.topline {
  color: #e9e3ff;
  background: var(--night);
  font-size: 12px;
  letter-spacing: .045em;
}
.topline .container {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-block: 8px;
}
.signal {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 7px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 0 4px rgba(173, 241, 217, .15);
  animation: live 2s infinite;
}
@keyframes live {
  50% { opacity: .45; box-shadow: 0 0 0 8px rgba(173,241,217,0); }
}
.site-header {
  position: absolute;
  z-index: 20;
  top: 33px;
  width: 100%;
  color: var(--white);
}
.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  min-height: 84px;
}
.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 11px;
}
.brand img {
  width: 48px;
  height: 48px;
  padding: 3px;
  object-fit: contain;
  border-radius: 15px;
  background: rgba(255,255,255,.1);
  box-shadow: 0 5px 14px rgba(0,0,0,.16);
  transition: transform .22s ease;
}
.brand:hover img { transform: rotate(-5deg) scale(1.06); }
.brand-lines { display: grid; gap: 0; line-height: 1.05; }
.brand-name { font-size: 20px; font-weight: 850; letter-spacing: -.04em; }
.brand-tag { color: var(--lilac); font-size: 8px; font-weight: 800; letter-spacing: .15em; }
.primary-nav ul {
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 0;
  margin: 0;
  list-style: none;
}
.primary-nav a {
  position: relative;
  padding-block: 7px;
  color: #f5f2ff;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}
.primary-nav a::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--mint);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .2s ease;
}
.primary-nav a:hover::after,
.primary-nav a[aria-current="page"]::after { transform: scaleX(1); }
.header-action,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 43px;
  padding: 10px 17px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease, color .2s ease;
}
.header-action { color: var(--ink); background: var(--white); }
.header-action:hover { transform: translateY(-2px); box-shadow: 0 12px 22px rgba(0,0,0,.2); }
.button-primary { color: var(--white); background: var(--coral-deep); box-shadow: 0 11px 23px rgba(219,62,96,.24); }
.button-primary:hover { background: #bd284b; transform: translateY(-2px); box-shadow: 0 15px 28px rgba(219,62,96,.34); }
.button-outline { color: var(--white); border-color: rgba(255,255,255,.5); background: rgba(255,255,255,.04); }
.button-outline:hover { color: var(--ink); background: var(--white); transform: translateY(-2px); }
.hero {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  color: var(--white);
  background: #241545;
  isolation: isolate;
}
.hero::before {
  position: absolute;
  z-index: -2;
  inset: 0;
  content: "";
  background-image: linear-gradient(90deg, rgba(14,10,34,.97) 0%, rgba(20,14,41,.82) 39%, rgba(26,16,47,.15) 75%), url('/assets/images/hero.jpg');
  background-position: center, center;
  background-size: cover;
}
.hero::after {
  position: absolute;
  z-index: -1;
  right: 0;
  bottom: -150px;
  width: 500px;
  height: 500px;
  content: "";
  border: 1px solid rgba(173,241,217,.32);
  border-radius: 50%;
  box-shadow: 0 0 0 60px rgba(104,70,207,.08), 0 0 0 120px rgba(255,107,115,.06);
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 720px) 1fr;
  align-items: end;
  min-height: 760px;
  padding-top: 155px;
  padding-bottom: 72px;
}
.hero-content { max-width: 680px; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--mint);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .14em;
}
.eyebrow::before {
  width: 23px;
  height: 2px;
  content: "";
  background: currentColor;
}
.hero h1,
.page-banner h1 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(42px, 6vw, 76px);
  font-weight: 850;
  letter-spacing: -.065em;
  line-height: 1.06;
  text-wrap: balance;
}
.hero h1 em { color: #ffc9cd; font-style: normal; }
.hero-copy {
  max-width: 600px;
  margin: 25px 0 30px;
  color: #e8e2f8;
  font-size: 18px;
  line-height: 1.85;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.metric-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin-top: 52px;
  border-top: 1px solid rgba(255,255,255,.2);
}
.metric {
  min-width: 150px;
  padding: 17px 27px 2px 0;
  margin-right: 26px;
  border-right: 1px solid rgba(255,255,255,.19);
}
.metric:last-child { border: 0; }
.metric b { display: block; font-size: 25px; line-height: 1.1; }
.metric span { color: #d0c9e8; font-size: 12px; }
.search-strip {
  position: absolute;
  z-index: 4;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 18px 0;
  background: rgba(8, 6, 17, .46);
  backdrop-filter: blur(12px);
}
.search-row { display: flex; align-items: center; gap: 15px; }
.search-label { flex: 0 0 auto; color: var(--mint); font-size: 12px; font-weight: 850; letter-spacing: .1em; }
.search-form {
  display: flex;
  flex: 1;
  max-width: 600px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.29);
  border-radius: 999px;
  background: rgba(255,255,255,.09);
}
.search-form:focus-within { border-color: var(--mint); box-shadow: 0 0 0 4px rgba(173,241,217,.12); }
.search-form input { width: 100%; padding: 9px 16px; color: var(--white); border: 0; outline: 0; background: transparent; }
.search-form input::placeholder { color: #d4cde7; }
.search-form button { padding: 8px 17px; color: var(--ink); border: 0; border-radius: 999px; background: var(--mint); font-size: 13px; font-weight: 850; }
.search-form button:hover { color: var(--white); background: var(--coral-deep); }
.section { padding: 104px 0; }
.section-tint { background: var(--mist); }
.section-dark { color: var(--white); background: var(--night); }
.section-mint { background: linear-gradient(135deg, #f3fff9, #e9f8fa); }
.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 39px;
}
.section-kicker { margin-bottom: 7px; color: var(--coral-deep); font-size: 11px; font-weight: 900; letter-spacing: .13em; }
.section-dark .section-kicker { color: var(--mint); }
.section-title {
  max-width: 750px;
  margin: 0;
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 850;
  letter-spacing: -.055em;
  line-height: 1.16;
  text-wrap: balance;
}
.section-note { max-width: 360px; margin: 0; color: var(--muted); font-size: 14px; }
.section-dark .section-note { color: #c6bfd8; }
.film-grid { display: grid; grid-template-columns: 1.24fr .76fr .76fr; grid-auto-rows: 250px; gap: 18px; }
.video-tile {
  position: relative;
  display: flex;
  overflow: hidden;
  align-items: end;
  min-height: 0;
  padding: 20px;
  color: var(--white);
  border-radius: var(--radius-lg);
  background: var(--ink-2);
  isolation: isolate;
  transition: transform .25s ease, box-shadow .25s ease;
}
.video-tile:first-child { grid-row: span 2; }
.video-tile:hover { box-shadow: var(--shadow-lg); transform: translateY(-5px); }
.video-tile::before { position: absolute; z-index: -1; inset: 0; content: ""; background: linear-gradient(0deg, rgba(11,8,27,.85), rgba(11,8,27,.02) 68%); }
.video-tile::after { position: absolute; z-index: -2; inset: 0; content: ""; background: var(--tile-image) center/cover; transition: transform .55s ease; }
.video-tile:hover::after { transform: scale(1.06); }
.tile-live { --tile-image: url('/assets/images/studio.jpg'); }
.tile-edit { --tile-image: url('/assets/images/edit.jpg'); }
.tile-community { --tile-image: url('/assets/images/community.jpg'); }
.tile-hero { --tile-image: url('/assets/images/hero.jpg'); }
.tile-chip { display: inline-block; padding: 3px 8px; margin-bottom: 8px; color: var(--ink); border-radius: 999px; background: var(--mint); font-size: 10px; font-weight: 900; }
.video-tile h3 { max-width: 410px; margin: 0; font-size: 21px; letter-spacing: -.035em; line-height: 1.25; }
.video-tile:not(:first-child) h3 { font-size: 17px; }
.tile-stats { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 9px; color: #eeeafa; font-size: 12px; }
.play-mark { position: absolute; top: 20px; right: 20px; display: grid; width: 39px; height: 39px; place-items: center; border: 1px solid rgba(255,255,255,.35); border-radius: 50%; background: rgba(15,11,33,.4); backdrop-filter: blur(8px); font-size: 12px; }
.path-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.path-card { position: relative; min-height: 270px; padding: 27px; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--white); transition: transform .22s ease, border-color .22s ease; }
.path-card:hover { border-color: var(--lilac); transform: translateY(-5px); }
.path-card::before { position: absolute; right: -18px; bottom: -35px; color: rgba(104,70,207,.08); content: attr(data-no); font-size: 115px; font-weight: 900; line-height: 1; }
.path-no { display: block; margin-bottom: 38px; color: var(--coral-deep); font-size: 11px; font-weight: 900; letter-spacing: .1em; }
.path-card h3 { margin: 0 0 11px; font-size: 21px; letter-spacing: -.04em; line-height: 1.3; }
.path-card p { margin: 0 0 18px; color: var(--muted); font-size: 13px; line-height: 1.75; }
.text-link { color: var(--violet-dark); font-size: 13px; font-weight: 850; }
.text-link:hover { color: var(--coral-deep); text-decoration: underline; text-underline-offset: 4px; }
.lab-layout { display: grid; grid-template-columns: .95fr 1.05fr; gap: clamp(36px, 7vw, 90px); align-items: center; }
.lab-visual { position: relative; }
.lab-visual::before { position: absolute; z-index: 0; top: -20px; right: -20px; width: 72%; height: 75%; content: ""; border: 1px solid var(--coral); border-radius: var(--radius-xl); transform: rotate(5deg); }
.lab-visual img { position: relative; z-index: 1; width: 100%; min-height: 425px; object-fit: cover; border-radius: var(--radius-xl); box-shadow: var(--shadow-lg); }
.lab-signal { position: absolute; z-index: 2; right: -22px; bottom: 27px; padding: 17px 18px; color: var(--ink); border-radius: var(--radius-md); background: var(--mint); box-shadow: var(--shadow); font-size: 12px; font-weight: 700; }
.lab-signal b { display: block; font-size: 22px; line-height: 1.3; }
.capability { padding: 19px 0; border-bottom: 1px solid var(--line); }
.capability:first-of-type { margin-top: 21px; border-top: 1px solid var(--line); }
.capability-row { display: grid; grid-template-columns: 42px 1fr; gap: 14px; }
.capability-number { color: var(--coral-deep); font-size: 12px; font-weight: 900; }
.capability h3 { margin: 0 0 3px; font-size: 18px; letter-spacing: -.035em; }
.capability p { margin: 0; color: var(--muted); font-size: 13px; }
.topic-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 13px; }
.topic { min-height: 188px; padding: 23px; border: 1px solid rgba(215,206,255,.18); border-radius: var(--radius-md); background: rgba(255,255,255,.06); transition: transform .2s ease, background .2s ease; }
.topic:hover { background: rgba(255,255,255,.11); transform: translateY(-4px); }
.topic-symbol { display: block; margin-bottom: 27px; color: var(--mint); font-size: 12px; font-weight: 900; letter-spacing: .11em; }
.topic h3 { margin: 0 0 7px; font-size: 19px; line-height: 1.25; }
.topic p { margin: 0; color: #cfc7de; font-size: 13px; line-height: 1.7; }
.expert-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px; }
.expert-card { padding: 24px; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--white); transition: transform .2s, box-shadow .2s; }
.expert-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.expert-initial { display: grid; width: 47px; height: 47px; place-items: center; margin-bottom: 20px; color: var(--white); border-radius: 15px; background: linear-gradient(135deg, var(--violet), var(--coral)); font-size: 14px; font-weight: 900; }
.expert-role { margin: 0 0 4px; color: var(--coral-deep); font-size: 11px; font-weight: 900; }
.expert-card h3 { margin: 0; font-size: 21px; letter-spacing: -.035em; }
.expert-meta { margin: 11px 0 16px; color: var(--muted); font-size: 12px; line-height: 1.75; }
.expert-links { display: flex; gap: 13px; font-size: 12px; font-weight: 850; }
.expert-links a:first-child { color: var(--violet-dark); }
.expert-links a:hover { text-decoration: underline; text-underline-offset: 4px; }
.partner-row { display: grid; grid-template-columns: repeat(6, 1fr); gap: 10px; margin-bottom: 60px; }
.partner { display: grid; min-height: 86px; place-items: center; padding: 10px; color: #605870; border: 1px solid var(--line); border-radius: var(--radius-sm); background: var(--white); font-size: 13px; font-weight: 900; letter-spacing: .05em; transition: color .2s, border-color .2s, transform .2s; }
.partner:hover { color: var(--violet-dark); border-color: var(--violet); transform: translateY(-3px); }
.guide-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.guide { position: relative; padding: 25px 20px; border-left: 2px solid var(--coral); background: #f7f4fc; }
.guide:last-child { border-color: var(--mint); }
.guide-step { display: block; margin-bottom: 28px; color: var(--violet); font-size: 11px; font-weight: 900; letter-spacing: .1em; }
.guide h3 { margin: 0 0 8px; font-size: 18px; line-height: 1.3; }
.guide p { margin: 0; color: var(--muted); font-size: 13px; }
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.testimonial { display: flex; flex-direction: column; min-height: 220px; padding: 25px; border-radius: var(--radius-md); background: var(--white); box-shadow: 0 5px 19px rgba(31,21,65,.05); transition: transform .2s, box-shadow .2s; }
.testimonial:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.testimonial::before { color: var(--coral); content: "“"; font-family: Georgia, serif; font-size: 44px; font-weight: 800; line-height: .7; }
.testimonial blockquote { flex: 1; margin: 12px 0 18px; color: #413c53; font-size: 14px; line-height: 1.86; }
.testimonial footer { color: var(--muted); font-size: 12px; }
.testimonial footer b { color: var(--ink); }
.transparency { padding: 16px 19px; margin-top: 23px; color: #58493c; border-radius: var(--radius-sm); background: #fff4dc; font-size: 13px; }
.faq-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 11px; }
.faq { border: 1px solid var(--line); border-radius: var(--radius-sm); background: var(--white); transition: box-shadow .2s, border-color .2s; }
.faq:hover, .faq[open] { border-color: #cabdf9; box-shadow: 0 10px 25px rgba(44,29,91,.08); }
.faq summary { padding: 17px 20px; font-size: 14px; font-weight: 800; cursor: pointer; list-style: none; }
.faq summary::after { float: right; color: var(--coral-deep); content: "+"; font-size: 19px; line-height: 1; }
.faq[open] summary::after { content: "–"; }
.faq p { padding: 0 20px 18px; margin: 0; color: var(--muted); font-size: 13px; }
.contact-zone { position: relative; overflow: hidden; color: var(--white); background: linear-gradient(135deg, #382476, #25184d 65%, #572c64); }
.contact-zone::after { position: absolute; right: -60px; bottom: -90px; color: rgba(255,255,255,.05); content: "●"; font-size: 400px; line-height: 1; }
.contact-layout { position: relative; z-index: 1; display: grid; grid-template-columns: 1.08fr .92fr; gap: 60px; align-items: center; }
.contact-zone .section-title { max-width: 650px; }
.contact-lead { max-width: 630px; color: #dbd2f0; }
.contact-details { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; overflow: hidden; margin-top: 32px; border-radius: var(--radius-md); background: rgba(255,255,255,.15); }
.contact-item { min-height: 81px; padding: 15px; background: rgba(22,12,52,.35); }
.contact-item span { display: block; margin-bottom: 3px; color: var(--mint); font-size: 10px; font-weight: 900; letter-spacing: .11em; }
.contact-item b { font-size: 13px; font-weight: 700; }
.contact-card { padding: 26px; color: var(--ink); border-radius: var(--radius-lg); background: var(--white); box-shadow: var(--shadow-lg); }
.contact-card small { color: var(--coral-deep); font-weight: 900; letter-spacing: .1em; }
.contact-card h3 { margin: 6px 0 7px; font-size: 26px; letter-spacing: -.045em; }
.contact-card p { margin: 0 0 19px; color: var(--muted); font-size: 13px; }
.qr-row { display: flex; gap: 12px; }
.qr { display: grid; flex: 1; min-height: 112px; place-items: center; padding: 9px; text-align: center; border: 1px solid var(--line); border-radius: var(--radius-sm); font-size: 11px; font-weight: 800; }
.qr img { width: 62px; height: 62px; margin-bottom: 2px; image-rendering: pixelated; }
.share-row { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 17px; }
.share { padding: 7px 9px; color: var(--violet-dark); border: 1px solid var(--line); border-radius: 7px; background: var(--white); font-size: 11px; font-weight: 800; transition: color .2s, background .2s, transform .2s; }
.share:hover { color: var(--white); background: var(--violet); transform: translateY(-2px); }
.site-footer { color: #cbc5dc; background: #0e0c17; }
.footer-grid { display: grid; grid-template-columns: 1.5fr .8fr .9fr .95fr; gap: 38px; padding: 57px 0 37px; }
.site-footer .brand img { width: 42px; height: 42px; }
.site-footer .brand-tag { color: #8c83aa; }
.footer-intro { max-width: 350px; margin: 15px 0 0; color: #a39ab7; font-size: 13px; }
.site-footer h3 { margin: 0 0 14px; color: var(--white); font-size: 14px; }
.footer-list { padding: 0; margin: 0; list-style: none; }
.footer-list li { margin: 7px 0; font-size: 12px; }
.footer-list a:hover { color: var(--mint); }
.footer-qr { display: flex; gap: 8px; }
.footer-qr .qr { max-width: 90px; min-height: auto; color: var(--ink); background: var(--white); }
.footer-qr .qr img { width: 47px; height: 47px; }
.footer-base { display: flex; justify-content: space-between; gap: 14px; padding: 17px 0; border-top: 1px solid rgba(255,255,255,.1); color: #8e859f; font-size: 11px; }
.toast { position: fixed; z-index: 100; right: 20px; bottom: 20px; max-width: min(360px, calc(100% - 40px)); padding: 12px 16px; color: var(--white); border-radius: 10px; background: #25213a; box-shadow: var(--shadow-lg); font-size: 13px; font-weight: 700; opacity: 0; transform: translateY(20px); pointer-events: none; transition: opacity .25s, transform .25s; }
.toast.is-visible { opacity: 1; transform: translateY(0); }
.page-banner { position: relative; min-height: 440px; overflow: hidden; color: var(--white); background: #24174a; isolation: isolate; }
.page-banner::before { position: absolute; z-index: -2; inset: 0; content: ""; background: linear-gradient(90deg, rgba(18,11,38,.96), rgba(18,11,38,.68) 48%, rgba(18,11,38,.2)), var(--banner-image) center/cover; }
.page-banner::after { position: absolute; z-index: -1; right: 5%; bottom: -80px; width: 280px; height: 280px; content: ""; border: 1px solid rgba(173,241,217,.35); border-radius: 50%; }
.banner-video { --banner-image: url('/assets/images/studio.jpg'); }
.banner-create { --banner-image: url('/assets/images/hero.jpg'); }
.banner-community { --banner-image: url('/assets/images/community.jpg'); }
.banner-lab { --banner-image: url('/assets/images/edit.jpg'); }
.banner-about { --banner-image: url('/assets/images/hero.jpg'); }
.inner-header { position: relative; top: auto; background: rgba(18,10,38,.18); }
.page-banner-content { padding: 71px 0 67px; }
.breadcrumb { display: flex; flex-wrap: wrap; gap: 9px; margin-bottom: 18px; color: #cfc7e2; font-size: 12px; }
.breadcrumb a:hover { color: var(--mint); }
.breadcrumb i { font-style: normal; opacity: .5; }
.page-banner h1 { font-size: clamp(39px, 5.2vw, 65px); }
.page-banner p { max-width: 650px; margin: 19px 0 0; color: #ded6ec; }
.page-main { padding: 78px 0 102px; }
.content-layout { display: grid; grid-template-columns: minmax(0, 1fr) 290px; gap: 55px; }
.article-lead { margin: 0 0 32px; color: var(--muted); font-size: 17px; }
.post-list { display: grid; gap: 14px; }
.post { display: grid; grid-template-columns: 178px 1fr; gap: 22px; padding: 13px; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--white); transition: transform .2s, box-shadow .2s; }
.post:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.post img { width: 178px; height: 135px; object-fit: cover; border-radius: 11px; }
.post-tag { color: var(--coral-deep); font-size: 11px; font-weight: 900; }
.post h2 { margin: 5px 0 7px; font-size: 20px; letter-spacing: -.04em; line-height: 1.35; }
.post h2 a:hover { color: var(--violet); }
.post p { margin: 0; color: var(--muted); font-size: 13px; }
.post-meta { margin-top: 9px !important; color: #9a92a9 !important; font-size: 11px !important; }
.side-stack { display: grid; align-content: start; gap: 15px; }
.side-panel { padding: 21px; border: 1px solid var(--line); border-radius: var(--radius-md); background: #faf9fd; }
.side-panel h2 { margin: 0 0 12px; font-size: 18px; letter-spacing: -.03em; }
.side-panel p { color: var(--muted); font-size: 13px; }
.side-panel ul { padding: 0; margin: 0; list-style: none; }
.side-panel li { padding: 7px 0; border-bottom: 1px dashed #dfd9eb; color: #514b62; font-size: 13px; }
.side-panel li:last-child { border: 0; }
.side-panel .button { width: 100%; margin-top: 10px; }
.player { overflow: hidden; border-radius: var(--radius-lg); background: #151122; box-shadow: var(--shadow-lg); }
.player video { display: block; width: 100%; aspect-ratio: 16 / 9; background: #000; }
.player-caption { padding: 22px; color: var(--white); }
.player-caption h2 { margin: 0 0 6px; font-size: 23px; letter-spacing: -.04em; }
.player-caption p { margin: 0; color: #c8c1d8; font-size: 13px; }
.notice { padding: 17px 19px; margin-top: 24px; color: #62481c; border-left: 3px solid var(--gold); background: #fff7e4; font-size: 13px; }
@media (max-width: 1030px) {
  .primary-nav { display: none; }
  .film-grid { grid-template-columns: 1.2fr .8fr; }
  .film-grid .video-tile:last-child { display: none; }
  .path-grid { grid-template-columns: repeat(2, 1fr); }
  .expert-grid { grid-template-columns: repeat(2, 1fr); }
  .partner-row { grid-template-columns: repeat(3, 1fr); }
  .guide-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonial-grid { grid-template-columns: repeat(2, 1fr); }
  .content-layout { grid-template-columns: 1fr; }
  .side-stack { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
  :root { --wrap: min(100% - 32px, 1180px); }
  .topline .container span:last-child { display: none; }
  .site-header { top: 29px; }
  .header-row { min-height: 67px; }
  .header-action { display: none; }
  .brand img { width: 41px; height: 41px; }
  .brand-name { font-size: 18px; }
  .hero, .hero-grid { min-height: 720px; }
  .hero::before { background-image: linear-gradient(90deg, rgba(14,10,34,.96), rgba(20,14,41,.74) 65%, rgba(26,16,47,.26)), url('/assets/images/hero.jpg'); background-position: center, 62% center; }
  .hero-grid { padding-top: 126px; padding-bottom: 100px; align-items: center; }
  .hero h1 { font-size: clamp(39px, 12vw, 57px); }
  .hero-copy { font-size: 15px; }
  .metric-row { margin-top: 32px; }
  .metric { min-width: 105px; padding-right: 14px; margin-right: 14px; }
  .metric b { font-size: 19px; }
  .search-strip { padding: 11px 0; }
  .search-label { display: none; }
  .section { padding: 67px 0; }
  .section-head { display: block; margin-bottom: 28px; }
  .section-note { margin-top: 13px; }
  .film-grid { grid-template-columns: 1fr; grid-auto-rows: 200px; }
  .video-tile:first-child { grid-row: span 1; min-height: 270px; }
  .film-grid .video-tile:last-child { display: flex; }
  .path-grid, .topic-grid, .expert-grid, .guide-grid, .testimonial-grid { grid-template-columns: 1fr; }
  .path-card { min-height: 216px; }
  .lab-layout, .contact-layout { grid-template-columns: 1fr; gap: 35px; }
  .lab-visual img { min-height: 320px; }
  .lab-signal { right: 9px; bottom: 14px; }
  .partner-row { grid-template-columns: repeat(2, 1fr); margin-bottom: 40px; }
  .contact-details { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px 22px; }
  .footer-grid > :first-child { grid-column: 1 / -1; }
  .footer-base { display: grid; }
  .page-banner { min-height: auto; }
  .page-banner-content { padding: 49px 0 56px; }
  .page-banner h1 { font-size: 39px; }
  .page-main { padding: 51px 0 72px; }
  .post { grid-template-columns: 1fr; gap: 14px; }
  .post img { width: 100%; height: 190px; }
  .side-stack { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
}
@media (max-width: 390px) {
  .hero-actions .button { width: 100%; }
  .metric { min-width: 92px; }
  .metric span { font-size: 10px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-grid > :first-child { grid-column: auto; }
}
