:root {
  color-scheme: light;
  --bg: #f7fbff;
  --surface: #ffffff;
  --surface-soft: #f1f7ff;
  --text: #0b1728;
  --muted: #697789;
  --line: rgba(25, 65, 105, 0.12);
  --line-strong: rgba(21, 94, 180, 0.22);
  --blue: #176bff;
  --cyan: #17c7d0;
  --shadow: 0 24px 70px rgba(33, 84, 145, 0.15);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  background:
    linear-gradient(120deg, transparent 0 66%, rgba(70, 187, 255, 0.13) 66% 68%, transparent 68%),
    radial-gradient(circle at 0 28%, rgba(69, 181, 255, 0.18), transparent 28rem),
    radial-gradient(circle at 100% 36%, rgba(23, 199, 208, 0.14), transparent 24rem),
    linear-gradient(180deg, #fff 0%, #f6fbff 44%, #fff 100%);
  color: var(--text);
  font-family: "Microsoft YaHei", "PingFang SC", "Segoe UI", Arial, sans-serif;
  letter-spacing: 0;
}

body.modal-open {
  overflow: hidden;
}

[hidden] {
  display: none !important;
}

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

button {
  font: inherit;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 10px max(24px, calc((100vw - 1680px) / 2));
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand-logo {
  width: 168px;
  height: 48px;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 58px);
  color: #1f3044;
  font-size: 16px;
  font-weight: 700;
  white-space: nowrap;
}

.site-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 4px;
  width: 0;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  transform: translateX(-50%);
  transition: width 180ms ease;
}

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

.site-nav a:hover::after,
.site-nav a.active::after {
  width: 28px;
}

.admin-link {
  color: var(--blue);
}

.hero {
  position: relative;
  width: min(1680px, calc(100% - 56px));
  min-height: min(650px, calc(100vh - 72px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(400px, 0.86fr) minmax(620px, 1.14fr);
  align-items: center;
  gap: clamp(34px, 5vw, 86px);
  padding: clamp(34px, 4.6vw, 64px) 0 38px;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: -1;
  filter: blur(0.2px);
}

.hero::before {
  left: -9%;
  bottom: 0;
  width: 55%;
  height: 35%;
  background:
    linear-gradient(150deg, transparent 14%, rgba(81, 189, 255, 0.22) 15% 18%, transparent 19%),
    linear-gradient(160deg, transparent 28%, rgba(23, 199, 208, 0.18) 29% 32%, transparent 33%),
    linear-gradient(168deg, transparent 42%, rgba(23, 107, 255, 0.12) 43% 46%, transparent 47%);
  border-radius: 50%;
}

.hero::after {
  right: -8%;
  bottom: 0;
  width: 44%;
  height: 42%;
  background:
    linear-gradient(28deg, transparent 36%, rgba(23, 199, 208, 0.13) 37% 40%, transparent 41%),
    linear-gradient(35deg, transparent 52%, rgba(23, 107, 255, 0.12) 53% 56%, transparent 57%);
}

.hero-copy {
  padding-left: clamp(6px, 2vw, 36px);
}

.hero h1 {
  margin: 0;
  font-size: clamp(86px, 9.3vw, 176px);
  line-height: 0.94;
  font-weight: 900;
  color: transparent;
  background: linear-gradient(90deg, #176bff 0%, #1382ff 45%, #18cfc1 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

.hero-kicker {
  margin: 28px 0 0;
  color: var(--text);
  font-size: clamp(24px, 2.2vw, 38px);
  line-height: 1.25;
  font-weight: 900;
}

.lead {
  max-width: 660px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: clamp(16px, 1.15vw, 21px);
  line-height: 1.9;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 34px;
}

.primary-action,
.secondary-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 170px;
  min-height: 54px;
  padding: 0 26px;
  border-radius: 8px;
  border: 1px solid var(--line-strong);
  font-weight: 900;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.primary-action {
  color: #fff;
  border-color: transparent;
  background: linear-gradient(135deg, #176bff, #0b82ff);
  box-shadow: 0 18px 32px rgba(23, 107, 255, 0.24);
}

.secondary-action {
  color: #2a3b4e;
  background: rgba(255, 255, 255, 0.82);
}

.primary-action:hover,
.secondary-action:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.hero-stage {
  position: relative;
  min-height: 500px;
  display: grid;
  align-items: center;
  perspective: 1300px;
}

.hero-reel {
  position: relative;
  height: min(48vw, 540px);
  min-height: 410px;
}

.reel-card {
  position: absolute;
  top: 50%;
  width: clamp(150px, 13.5vw, 238px);
  aspect-ratio: 9 / 16;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 14px;
  background: #10213a;
  box-shadow: 0 28px 54px rgba(19, 60, 118, 0.24);
  transform-style: preserve-3d;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.reel-card.is-clickable {
  cursor: pointer;
}

.reel-card.is-clickable:hover {
  box-shadow: 0 36px 80px rgba(19, 60, 118, 0.32);
}

.reel-card-1 {
  left: 3%;
  transform: translateY(-42%) rotateY(-12deg) rotateZ(-4deg) scale(0.92);
  z-index: 2;
}

.reel-card-2 {
  left: 29%;
  transform: translateY(-50%) scale(1.08);
  z-index: 4;
}

.reel-card-3 {
  left: 55%;
  transform: translateY(-42%) rotateY(10deg) rotateZ(4deg) scale(0.94);
  z-index: 3;
}

.reel-card-4 {
  left: 78%;
  transform: translateY(-35%) rotateY(14deg) rotateZ(2deg) scale(0.76);
  z-index: 1;
  opacity: 0.9;
}

.reel-card img,
.reel-card .poster-fallback,
.concept-poster {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.reel-card img,
.work-card img {
  filter: brightness(1.18) contrast(1.04) saturate(1.06);
}

.reel-card::after,
.work-card::after,
.concept-poster::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 22%),
    linear-gradient(180deg, transparent 34%, rgba(2, 9, 22, 0.7));
  pointer-events: none;
}

.reel-caption {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 2;
  display: grid;
  gap: 4px;
  color: #fff;
  text-align: center;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
}

.reel-caption strong {
  font-size: clamp(17px, 1.25vw, 24px);
  line-height: 1.18;
}

.reel-caption span {
  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
}

.stage-dots {
  position: absolute;
  right: 8px;
  top: 50%;
  display: grid;
  gap: 15px;
  transform: translateY(-50%);
}

.stage-dots span {
  width: 7px;
  height: 7px;
  border: 1px solid rgba(23, 107, 255, 0.36);
  border-radius: 999px;
  background: transparent;
}

.stage-dots .active {
  border-color: var(--blue);
  background: var(--blue);
}

.works-section,
.capabilities,
.about-section {
  width: min(1680px, calc(100% - 56px));
  margin: 0 auto;
  padding: 48px 0 64px;
}

.works-section {
  border-top: 1px solid rgba(18, 68, 110, 0.08);
}

.center-heading {
  display: grid;
  place-items: center;
  margin-bottom: 26px;
  text-align: center;
}

.center-heading h2 {
  position: relative;
  margin: 0;
  font-size: clamp(30px, 3.2vw, 48px);
  line-height: 1.15;
  font-weight: 900;
}

.center-heading h2::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -10px;
  width: 78px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--blue), var(--cyan), transparent);
  transform: translateX(-50%);
}

.filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 auto 26px;
}

.filter-button {
  min-height: 34px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  color: #496174;
  cursor: pointer;
}

.filter-button.active {
  border-color: transparent;
  background: linear-gradient(135deg, var(--blue), #08a7db);
  color: #fff;
  font-weight: 800;
}

.works-grid {
  display: grid;
  gap: 30px;
  padding: 8px clamp(0px, 2vw, 42px) 0;
}

.work-group {
  display: grid;
  gap: 16px;
}

.work-group-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 10px;
}

.work-group-head h3 {
  margin: 0;
  font-size: 24px;
}

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

.works-grid-inner {
  display: grid;
  gap: clamp(14px, 2vw, 28px);
}

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

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

.work-card {
  position: relative;
  aspect-ratio: 9 / 16;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 8px;
  background: #10213a;
  box-shadow: 0 16px 36px rgba(28, 73, 128, 0.12);
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.work-card.is-landscape {
  aspect-ratio: 16 / 9;
}

.work-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 56px rgba(28, 73, 128, 0.2);
}

.work-card img,
.work-card .poster-fallback {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  display: grid;
  gap: 5px;
  padding: 12px 9px 10px;
  color: #fff;
  text-align: center;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.32);
}

.status {
  justify-self: center;
  max-width: 100%;
  padding: 3px 7px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
}

.card-content h3 {
  margin: 0;
  font-size: clamp(14px, 1vw, 18px);
  line-height: 1.2;
}

.meta-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 11px;
}

.poster-fallback,
.concept-poster {
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: #fff;
  text-align: center;
}

.poster-fallback {
  background:
    radial-gradient(circle at 50% 20%, rgba(255, 255, 255, 0.28), transparent 20%),
    linear-gradient(145deg, #176bff, #17c7d0 58%, #081a35);
}

.poster-fallback span {
  position: relative;
  z-index: 1;
  writing-mode: vertical-rl;
  font-size: clamp(34px, 3vw, 56px);
  font-weight: 900;
  letter-spacing: 0;
}

.concept-poster {
  background:
    radial-gradient(circle at 50% 12%, rgba(255, 255, 255, 0.42), transparent 18%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(0, 0, 0, 0.1));
}

.concept-poster::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(160deg, transparent 34%, rgba(255, 255, 255, 0.14) 35% 37%, transparent 38%),
    radial-gradient(circle at 50% 68%, rgba(255, 255, 255, 0.22), transparent 34%);
}

.concept-title {
  position: relative;
  z-index: 2;
  writing-mode: vertical-rl;
  font-size: clamp(30px, 2.7vw, 54px);
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: 0;
  text-shadow: 0 3px 12px rgba(0, 0, 0, 0.34);
}

.concept-meta {
  position: absolute;
  z-index: 2;
  left: 10px;
  right: 10px;
  bottom: 12px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 12px;
}

.tone-azure { background-color: #123f70; background-image: linear-gradient(160deg, #0b2b50, #1f7fc2 52%, #d7f6ff); }
.tone-sunrise { background-color: #496ca0; background-image: linear-gradient(160deg, #28538d, #9dc9ff 48%, #ffd29d); }
.tone-ink { background-color: #d6e2ea; background-image: linear-gradient(160deg, #eaf3f7, #8aa1b2 58%, #263848); color: #132133; }
.tone-future { background-color: #12345c; background-image: linear-gradient(160deg, #061a35, #277cc4 60%, #d9f8ff); }
.tone-gold { background-color: #4b3114; background-image: linear-gradient(160deg, #261507, #98641c 54%, #f3c774); }
.tone-violet { background-color: #2b355e; background-image: linear-gradient(160deg, #101833, #4d5fa2 54%, #b9d8ff); }

.empty-state {
  grid-column: 1 / -1;
  margin: 0;
  padding: 36px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  color: var(--muted);
  text-align: center;
}

.capabilities {
  padding-top: 48px;
}

.capability-strip {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1px;
  margin-top: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--line);
  box-shadow: 0 18px 50px rgba(33, 84, 145, 0.08);
}

.capability-strip article {
  min-height: 170px;
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 24px 20px;
  background: rgba(255, 255, 255, 0.94);
}

.cap-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(23, 107, 255, 0.25);
  border-radius: 8px;
  color: var(--blue);
  font-size: 28px;
  font-weight: 900;
  background: #fff;
}

.capability-strip h3 {
  margin: 6px 0 0;
  font-size: 19px;
}

.capability-strip p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
  font-size: 14px;
}

.about-section {
  display: grid;
  gap: 26px;
  padding-bottom: 84px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.about-copy h2 {
  margin: 0;
  font-size: clamp(34px, 4vw, 66px);
  line-height: 1.18;
}

.about-copy p {
  max-width: 760px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.85;
}

.about-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.42fr);
  gap: 28px;
  align-items: stretch;
}

.about-metrics {
  display: grid;
  gap: 1px;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--line);
  box-shadow: 0 18px 50px rgba(33, 84, 145, 0.08);
}

.about-metrics span {
  display: grid;
  gap: 7px;
  min-height: 92px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--muted);
  line-height: 1.45;
}

.about-metrics b {
  color: var(--text);
  font-size: 28px;
  line-height: 1;
}

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

.topic-cloud span {
  padding: 10px 15px;
  border: 1px solid rgba(23, 107, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  color: #27425d;
  font-weight: 800;
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(390px, 0.42fr);
  gap: 18px;
}

.team-panel,
.contact-panel,
.flow-panel {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 50px rgba(33, 84, 145, 0.08);
}

.team-panel,
.contact-panel {
  padding: 24px;
}

.flow-panel {
  padding: 24px;
}

.section-minihead h3 {
  margin: 0;
  font-size: 28px;
}

.founder-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.founder-grid article {
  min-height: 230px;
  padding: 22px;
  border: 1px solid rgba(23, 107, 255, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(23, 107, 255, 0.06), transparent 50%),
    #fff;
}

.founder-grid span {
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
}

.founder-grid h4 {
  margin: 20px 0 12px;
  font-size: 30px;
}

.founder-grid p,
.flow-steps p {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
}

.qr-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.qr-grid article {
  display: grid;
  gap: 8px;
  justify-items: center;
  padding: 12px;
  border: 1px solid rgba(23, 107, 255, 0.14);
  border-radius: 8px;
  background: #fff;
  text-align: center;
}

.qr-grid img {
  width: 100%;
  max-width: 210px;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 6px;
}

.qr-grid strong {
  font-size: 18px;
}

.qr-grid span {
  color: var(--muted);
  font-size: 13px;
}

.flow-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.flow-steps article {
  min-height: 150px;
  padding: 20px;
  border: 1px solid rgba(23, 107, 255, 0.14);
  border-radius: 8px;
  background: #fff;
}

.flow-steps b {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--blue);
}

.flow-steps span {
  display: block;
  margin-bottom: 8px;
  color: var(--text);
  font-size: 20px;
  font-weight: 900;
}

.work-modal {
  position: fixed;
  inset: 0;
  z-index: 30;
  display: grid;
  place-items: center;
  padding: 24px;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(4, 13, 26, 0.78);
  backdrop-filter: blur(18px);
  cursor: pointer;
}

.modal-panel {
  position: relative;
  width: min(980px, 100%);
  max-height: calc(100vh - 48px);
  display: grid;
  grid-template-columns: minmax(250px, 410px) minmax(0, 1fr);
  gap: 26px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 10px;
  background: rgba(8, 17, 31, 0.96);
  padding: 18px;
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.52);
}

.modal-panel.is-landscape {
  width: min(1180px, calc(100vw - 48px));
  grid-template-columns: minmax(0, 1fr) minmax(260px, 320px);
  align-items: center;
}

.modal-close {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 28px;
  cursor: pointer;
}

.modal-media {
  aspect-ratio: 9 / 16;
  max-height: calc(100vh - 84px);
  overflow: hidden;
  border-radius: 8px;
  background: #05070c;
}

.modal-media.is-landscape {
  aspect-ratio: 16 / 9;
  width: 100%;
  max-height: min(72vh, 720px);
}

.modal-media video,
.modal-media img,
.modal-media .poster-fallback {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.modal-copy {
  align-self: center;
  padding-right: 32px;
  color: #fff;
}

.modal-copy h2 {
  margin: 16px 0 14px;
  font-size: clamp(34px, 5vw, 62px);
  line-height: 1.05;
}

.modal-copy p {
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.85;
  font-size: 18px;
}

.modal-copy .meta-row {
  justify-content: flex-start;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

@media (max-width: 1380px) {
  .hero {
    grid-template-columns: minmax(360px, 0.78fr) minmax(520px, 1fr);
  }

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

@media (max-width: 1180px) {
  .topbar {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  .site-nav {
    width: 100%;
    overflow-x: auto;
    gap: 24px;
    padding-bottom: 2px;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-stage {
    min-height: 440px;
  }

  .hero-reel {
    height: 430px;
    min-height: 430px;
  }

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

  .works-grid-landscape {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-section,
  .about-hero,
  .about-layout,
  .founder-grid,
  .flow-steps {
    grid-template-columns: 1fr;
  }

  .qr-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  body {
    background:
      radial-gradient(circle at 0 20%, rgba(69, 181, 255, 0.2), transparent 18rem),
      linear-gradient(180deg, #fff 0%, #f6fbff 48%, #fff 100%);
  }

  .topbar {
    padding: 10px 16px;
  }

  .brand-logo {
    width: 150px;
    height: 42px;
  }

  .site-nav {
    font-size: 14px;
    gap: 18px;
  }

  .hero,
  .works-section,
  .capabilities,
  .about-section {
    width: min(100% - 28px, 1680px);
  }

  .hero {
    padding: 34px 0 34px;
    gap: 18px;
  }

  .hero-copy {
    padding-left: 0;
  }

  .hero h1 {
    font-size: clamp(66px, 20vw, 104px);
  }

  .hero-kicker {
    margin-top: 18px;
    font-size: 24px;
  }

  .lead {
    font-size: 16px;
    line-height: 1.75;
  }

  .hero-actions {
    gap: 12px;
    margin-top: 24px;
  }

  .primary-action,
  .secondary-action {
    min-width: 0;
    min-height: 48px;
    padding: 0 18px;
  }

  .hero-stage {
    min-height: 300px;
    overflow: hidden;
  }

  .hero-reel {
    height: 300px;
    min-height: 300px;
  }

  .reel-card {
    width: clamp(104px, 28vw, 140px);
    border-radius: 10px;
  }

  .reel-card-1 {
    left: 0;
    transform: translateY(-45%) rotateY(-8deg) rotateZ(-3deg) scale(0.86);
  }

  .reel-card-2 {
    left: 26%;
    transform: translateY(-50%) scale(1);
  }

  .reel-card-3 {
    left: 52%;
    transform: translateY(-44%) rotateY(8deg) rotateZ(3deg) scale(0.88);
  }

  .reel-card-4 {
    left: 76%;
    transform: translateY(-37%) rotateY(8deg) scale(0.7);
  }

  .stage-dots {
    display: none;
  }

  .works-section,
  .capabilities,
  .about-section {
    padding: 38px 0;
  }

  .works-grid {
    gap: 12px;
    padding: 0;
  }

  .works-grid-portrait,
  .works-grid-landscape {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .card-content {
    padding: 10px 7px 8px;
  }

  .status {
    font-size: 10px;
  }

  .meta-row {
    font-size: 10px;
    gap: 4px;
  }

  .capability-strip {
    grid-template-columns: 1fr;
  }

  .capability-strip article {
    min-height: auto;
  }

  .about-copy h2 {
    font-size: 34px;
  }

  .about-copy p {
    font-size: 16px;
  }

  .about-metrics span {
    min-height: auto;
    padding: 16px;
  }

  .about-metrics b {
    font-size: 24px;
  }

  .team-panel,
  .contact-panel,
  .flow-panel {
    padding: 18px;
  }

  .topic-cloud {
    gap: 8px;
  }

  .topic-cloud span {
    padding: 8px 11px;
    font-size: 13px;
  }

  .founder-grid article,
  .flow-steps article {
    min-height: auto;
    padding: 18px;
  }

  .founder-grid h4 {
    margin-top: 14px;
    font-size: 26px;
  }

  .section-minihead h3 {
    font-size: 25px;
  }

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

  .qr-grid img {
    max-width: 210px;
  }

.modal-panel {
    width: min(420px, 100%);
    max-height: calc(100vh - 20px);
    grid-template-columns: 1fr;
    gap: 14px;
    overflow-y: auto;
    padding: 12px;
  }

  .modal-panel.is-landscape {
    width: min(100%, 720px);
    grid-template-columns: 1fr;
  }

  .modal-media.is-landscape {
    max-height: none;
  }

  .modal-media {
    max-height: 68vh;
  }

  .modal-copy {
    padding-right: 0;
  }
}

@media (max-width: 420px) {
  .hero-stage {
    min-height: 250px;
  }

  .hero-reel {
    height: 250px;
    min-height: 250px;
  }

  .reel-card {
    width: 104px;
  }

  .reel-caption strong {
    font-size: 14px;
  }

  .works-grid,
  .works-grid-portrait,
  .works-grid-landscape {
    gap: 10px;
  }

  .center-heading h2 {
    font-size: 28px;
  }
}
