:root {
  --bg: #050608;
  --bg-soft: #0b0d12;
  --panel: rgba(16, 19, 26, 0.82);
  --panel-strong: rgba(14, 16, 22, 0.96);
  --line: rgba(255, 255, 255, 0.1);
  --line-strong: rgba(255, 255, 255, 0.18);
  --text: #f2efe8;
  --text-soft: rgba(242, 239, 232, 0.72);
  --accent-blue: #92d2ff;
  --accent-coral: #f39d8f;
  --accent-gold: #d0b27c;
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.36);
  --radius-xl: 36px;
  --radius-lg: 28px;
  --radius-md: 20px;
  --page-width: min(1220px, calc(100vw - 36px));
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  background:
    radial-gradient(circle at 10% 0%, rgba(146, 210, 255, 0.18), transparent 26%),
    radial-gradient(circle at 90% 12%, rgba(243, 157, 143, 0.14), transparent 22%),
    radial-gradient(circle at 55% 100%, rgba(208, 178, 124, 0.08), transparent 28%),
    linear-gradient(180deg, #020304 0%, #07080b 28%, #090b10 52%, #050608 100%);
  font-family: "Avenir Next", "Segoe UI Variable", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
}

img {
  display: block;
  width: 100%;
}

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

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

.site-shell {
  position: relative;
  overflow: clip;
}

.site-shell::before,
.site-shell::after {
  content: "";
  position: fixed;
  z-index: 0;
  pointer-events: none;
  filter: blur(120px);
  opacity: 0.3;
}

.site-shell::before {
  top: -12vw;
  left: -12vw;
  width: 40vw;
  height: 40vw;
  background: rgba(146, 210, 255, 0.1);
}

.site-shell::after {
  top: 18vh;
  right: -14vw;
  width: 36vw;
  height: 36vw;
  background: rgba(243, 157, 143, 0.09);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  width: var(--page-width);
  margin: 16px auto 0;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(7, 8, 11, 0.72);
  backdrop-filter: blur(20px);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.24);
  transition: border-color 220ms ease, background 220ms ease, transform 220ms ease;
}

main,
.site-footer {
  position: relative;
  z-index: 1;
}

.site-header.is-scrolled {
  background: rgba(7, 8, 11, 0.92);
  border-color: rgba(255, 255, 255, 0.14);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand__logo {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  object-fit: cover;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.32);
}

.brand__copy {
  display: grid;
  min-width: 0;
  gap: 2px;
}

.brand__copy strong {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.brand__copy small {
  color: var(--text-soft);
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

.site-nav a {
  color: var(--text-soft);
  font-size: 0.95rem;
  transition: color 180ms ease, transform 180ms ease;
}

.site-nav a:hover {
  color: var(--text);
  transform: translateY(-1px);
}

.site-nav__contact {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-left: 18px;
  padding-left: 18px;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-soft);
  font-size: 0.82rem;
  white-space: nowrap;
}

.site-nav__contact span {
  display: inline-flex;
  align-items: center;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  border-radius: 999px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

main {
  width: var(--page-width);
  margin: 0 auto;
  padding: 34px 0 72px;
}

.hero {
  min-height: min(920px, calc(100vh - 120px));
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
  gap: clamp(28px, 5vw, 78px);
  align-items: center;
  padding: clamp(34px, 5vw, 84px) 0 50px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent-blue);
  font-size: 0.76rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.contact-copy h2 {
  margin: 0;
  font-family: "Optima", "Palatino Linotype", "STSong", serif;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.02;
}

.hero h1 {
  max-width: 9ch;
  font-size: clamp(3.2rem, 6.8vw, 6.4rem);
}

.hero__lead,
.section-intro,
.intro-copy p,
.intro-copy blockquote,
.business-card p,
.studio-copy p,
.product-card p,
.workflow-step p,
.contact-copy p {
  color: var(--text-soft);
  line-height: 1.85;
}

.hero__lead {
  max-width: 36rem;
  margin-top: 24px;
  font-size: clamp(1rem, 1.55vw, 1.16rem);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 150px;
  min-height: 54px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 600;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.button:hover,
.text-link:hover,
.contact-card:hover {
  transform: translateY(-2px);
}

.button--primary {
  color: #111;
  background: linear-gradient(120deg, rgba(146, 210, 255, 0.96), rgba(243, 157, 143, 0.94));
  box-shadow: 0 18px 34px rgba(146, 210, 255, 0.16);
}

.button--ghost {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
}

.button--small {
  min-width: 124px;
  min-height: 46px;
  padding: 0 20px;
}

.hero__tags,
.pill-list,
.detail-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.hero__tags li,
.pill-list li {
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-soft);
  font-size: 0.92rem;
}

.hero__visual {
  position: relative;
  min-height: 720px;
}

.hero__visual::before {
  content: "";
  position: absolute;
  inset: 12% 8% 6% 10%;
  border-radius: 40px;
  background:
    linear-gradient(135deg, rgba(146, 210, 255, 0.2), transparent 46%),
    linear-gradient(225deg, rgba(243, 157, 143, 0.18), transparent 42%),
    rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  filter: blur(0.2px);
}

.hero-frame {
  position: absolute;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.02);
  box-shadow: var(--shadow);
}

.hero-frame img {
  height: 100%;
  object-fit: cover;
}

.hero-frame--large {
  inset: 0 8% 10% 4%;
}

.hero-frame--top {
  top: 5%;
  right: 0;
  width: 38%;
  height: 34%;
}

.hero-frame--bottom {
  right: 4%;
  bottom: 0;
  width: 34%;
  height: 28%;
}

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

.signal-strip div {
  padding: 22px 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.02);
}

.signal-strip span {
  display: block;
  margin-bottom: 8px;
  color: var(--text-soft);
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.signal-strip strong {
  display: block;
  font-size: 1rem;
}

.section {
  padding: 112px 0 0;
}

.section-heading {
  max-width: 780px;
}

.section-heading--split {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(260px, 0.7fr);
  gap: 24px;
  align-items: end;
}

.section-heading h2 {
  font-size: clamp(2rem, 4vw, 3.6rem);
}

.section-intro {
  margin: 0;
}

.glass-card,
.workflow-step,
.contact-card {
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: var(--panel);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.intro-grid,
.studio-layout,
.contact-panel {
  display: grid;
  gap: 24px;
  margin-top: 34px;
}

.intro-grid {
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  align-items: center;
}

.intro-copy {
  padding: 30px;
  border-radius: var(--radius-lg);
}

.intro-copy p {
  margin: 0 0 16px;
}

.intro-copy blockquote {
  margin: 26px 0 0;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 1.05rem;
}

.intro-media {
  display: grid;
  grid-template-columns: 1.05fr 0.8fr;
  gap: 18px;
}

.intro-shot,
.studio-shot,
.gallery-card {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.02);
  box-shadow: var(--shadow);
}

.intro-shot img,
.studio-shot img,
.gallery-card img {
  height: 100%;
  object-fit: cover;
}

.intro-shot--main {
  min-height: 520px;
}

.intro-shot--minor {
  min-height: 340px;
  align-self: end;
}

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

.business-card {
  position: relative;
  overflow: hidden;
  min-height: 320px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.02);
  box-shadow: var(--shadow);
}

.business-card--primary {
  grid-column: span 2;
  grid-row: span 2;
  min-height: 660px;
}

.business-card__backdrop {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  transform: scale(1.01);
}

.business-card__content {
  position: relative;
  z-index: 1;
  display: flex;
  height: 100%;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
}

.business-card__index {
  display: inline-flex;
  width: fit-content;
  padding: 9px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  color: var(--accent-blue);
  font-size: 0.8rem;
  letter-spacing: 0.18em;
}

.business-card__meta {
  margin: 16px 0 0;
  color: rgba(242, 239, 232, 0.84);
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.business-card h3,
.info-block h3,
.product-card h3,
.workflow-step h3 {
  margin: 14px 0 10px;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-top: 22px;
  color: var(--accent-blue);
  font-weight: 600;
  transition: transform 180ms ease, color 180ms ease;
}

.text-link::after {
  content: "→";
  margin-left: 8px;
}

.studio-layout {
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  align-items: start;
}

.studio-copy {
  display: grid;
  gap: 18px;
}

.info-block {
  padding: 28px;
  border-radius: var(--radius-lg);
}

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

.detail-list li {
  position: relative;
  padding-left: 20px;
  color: var(--text-soft);
  line-height: 1.75;
}

.detail-list li::before {
  content: "";
  position: absolute;
  top: 0.78em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-blue), var(--accent-coral));
}

.studio-media {
  display: grid;
  grid-template-columns: 1.05fr 0.8fr;
  gap: 18px;
}

.studio-shot--wide {
  min-height: 520px;
}

.studio-shot--portrait {
  min-height: 420px;
  align-self: end;
}

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

.product-card {
  padding: 28px;
  border-radius: var(--radius-lg);
}

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

.gallery-card {
  position: relative;
  min-height: 250px;
}

.gallery-card--wide {
  grid-column: span 2;
}

.gallery-card--tall {
  grid-row: span 2;
  min-height: 520px;
}

.gallery-card figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 14px 16px;
  background: linear-gradient(180deg, rgba(5, 6, 8, 0), rgba(5, 6, 8, 0.92));
  font-size: 0.95rem;
}

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

.workflow-step {
  padding: 26px 24px;
  border-radius: 24px;
}

.workflow-step span {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  color: var(--accent-blue);
  font-size: 0.84rem;
  letter-spacing: 0.16em;
}

.contact-panel {
  grid-template-columns: minmax(0, 0.86fr) minmax(320px, 1.14fr);
  align-items: start;
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(130deg, rgba(146, 210, 255, 0.08), transparent 34%),
    linear-gradient(225deg, rgba(243, 157, 143, 0.08), transparent 32%),
    var(--panel-strong);
  box-shadow: var(--shadow);
}

.contact-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.contact-card {
  display: grid;
  gap: 8px;
  padding: 22px 20px;
  border-radius: 22px;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.contact-card span {
  color: var(--text-soft);
  font-size: 0.9rem;
}

.contact-card strong {
  font-size: 1rem;
  word-break: break-word;
}

.site-footer {
  width: var(--page-width);
  margin: 0 auto;
  padding: 30px 0 42px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  color: var(--text-soft);
  font-size: 0.94rem;
}

.site-footer p {
  margin: 0;
}

.site-footer__meta {
  white-space: nowrap;
}

.site-footer__record {
  margin-top: 8px;
  color: rgba(242, 239, 232, 0.82);
  font-size: 0.88rem;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 650ms ease, transform 650ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1120px) {
  .hero,
  .intro-grid,
  .studio-layout,
  .contact-panel,
  .section-heading--split {
    grid-template-columns: 1fr;
  }

  .hero__visual {
    min-height: 640px;
  }

  .business-grid,
  .product-deck,
  .workflow-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .business-card--primary {
    grid-column: span 2;
    min-height: 560px;
  }

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

  .gallery-card--wide,
  .gallery-card--tall {
    grid-column: auto;
    grid-row: auto;
    min-height: 320px;
  }
}

@media (max-width: 860px) {
  .site-header {
    margin-top: 12px;
    padding: 12px 14px;
  }

  .nav-toggle {
    display: block;
    flex-shrink: 0;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    left: 0;
    display: none;
    padding: 14px;
    z-index: 60;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 24px;
    background: rgba(5, 7, 10, 0.98);
    backdrop-filter: blur(20px);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.42);
  }

  .site-nav.is-open {
    display: grid;
    gap: 10px;
  }

  .site-nav a {
    display: block;
    padding: 12px 14px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.04);
    color: rgba(242, 239, 232, 0.92);
  }

  .site-nav a.is-active {
    background: rgba(146, 210, 255, 0.14);
    border-color: rgba(146, 210, 255, 0.22);
    color: #f6f2ea;
  }

  .site-nav__contact {
    display: grid;
    gap: 8px;
    margin-left: 0;
    padding: 12px 10px 4px;
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    white-space: normal;
    color: rgba(242, 239, 232, 0.88);
  }

  .hero {
    min-height: auto;
    padding-top: 26px;
  }

  .hero h1 {
    max-width: 12ch;
  }

  .hero__visual {
    min-height: 520px;
  }

  .hero-frame--large {
    inset: 10% 4% 8% 0;
  }

  .hero-frame--top {
    width: 42%;
  }

  .hero-frame--bottom {
    width: 38%;
  }

  .signal-strip,
  .business-grid,
  .product-deck,
  .gallery-grid,
  .workflow-grid,
  .contact-links {
    grid-template-columns: 1fr;
  }

  .business-card--primary {
    grid-column: auto;
    grid-row: auto;
    min-height: 420px;
  }

  .intro-media,
  .studio-media {
    grid-template-columns: 1fr;
  }

  .intro-shot--main,
  .studio-shot--wide {
    min-height: 380px;
  }

  .intro-shot--minor,
  .studio-shot--portrait {
    min-height: 320px;
  }

  .contact-panel {
    padding: 28px;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 560px) {
  body {
    background:
      radial-gradient(circle at 12% 0%, rgba(146, 210, 255, 0.2), transparent 28%),
      radial-gradient(circle at 88% 12%, rgba(243, 157, 143, 0.18), transparent 26%),
      linear-gradient(180deg, #030406 0%, #07080b 100%);
  }

  .site-header {
    width: min(100vw - 18px, 100%);
    margin-top: 8px;
    padding: 10px 12px;
    gap: 10px;
    border-radius: 24px;
  }

  .brand__logo {
    width: 46px;
    height: 46px;
    border-radius: 14px;
  }

  .brand__copy strong {
    font-size: 0.86rem;
  }

  .brand__copy small {
    font-size: 0.6rem;
    letter-spacing: 0.18em;
  }

  main {
    padding-top: 18px;
  }

  .section {
    padding-top: 64px;
  }

  .section-heading h2,
  .contact-copy h2 {
    font-size: clamp(1.65rem, 8vw, 2.2rem);
    line-height: 1.08;
  }

  .hero {
    gap: 18px;
    padding-top: 18px;
    padding-bottom: 12px;
  }

  .hero h1 {
    max-width: 11ch;
    font-size: clamp(2.35rem, 9vw, 3.2rem);
    line-height: 1.06;
  }

  .hero__lead {
    margin-top: 16px;
    font-size: 0.96rem;
    line-height: 1.75;
  }

  .hero__actions,
  .hero__tags {
    gap: 10px;
  }

  .hero__actions {
    margin-top: 24px;
  }

  .hero__tags {
    margin-top: 18px;
  }

  .hero__tags li,
  .pill-list li {
    padding: 8px 12px;
    font-size: 0.84rem;
  }

  .button {
    width: 100%;
    min-height: 48px;
  }

  .button--small {
    min-height: 44px;
  }

  .hero__visual {
    display: block;
    min-height: auto;
    margin-top: 4px;
  }

  .hero__visual::before {
    display: none;
  }

  .hero-frame {
    position: static;
    inset: auto;
    width: auto;
    height: auto;
    border-radius: 20px;
  }

  .hero-frame--large {
    min-height: 280px;
  }

  .hero-frame--top,
  .hero-frame--bottom {
    display: none;
  }

  .signal-strip {
    gap: 10px;
  }

  .signal-strip div {
    padding: 16px 16px 18px;
    border-radius: 18px;
  }

  .signal-strip strong {
    font-size: 0.94rem;
  }

  .intro-copy,
  .info-block,
  .product-card,
  .workflow-step {
    padding: 20px;
  }

  .business-card {
    min-height: 236px;
  }

  .business-card--primary {
    min-height: 330px;
  }

  .business-card__content {
    padding: 20px;
  }

  .business-card__meta {
    margin-top: 12px;
    font-size: 0.82rem;
  }

  .business-card h3,
  .info-block h3,
  .product-card h3,
  .workflow-step h3 {
    margin-top: 12px;
    font-size: 1.2rem;
  }

  .text-link {
    margin-top: 16px;
    font-size: 0.94rem;
  }

  .intro-shot--main,
  .studio-shot--wide {
    min-height: 300px;
  }

  .intro-shot--minor,
  .studio-shot--portrait {
    min-height: 220px;
  }

  .gallery-card {
    min-height: 196px;
  }

  .gallery-card figcaption {
    padding: 12px 14px;
    font-size: 0.88rem;
  }

  .workflow-step span {
    width: 40px;
    height: 40px;
  }

  .contact-panel {
    padding: 22px;
  }

  .contact-card {
    padding: 18px 16px;
    border-radius: 18px;
  }

  .hero-frame,
  .intro-shot,
  .studio-shot,
  .gallery-card,
  .business-card,
  .info-block,
  .product-card,
  .workflow-step,
  .contact-panel {
    border-radius: 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

.site-nav a.is-active {
  color: var(--text);
}

.page-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(360px, 1.14fr);
  gap: clamp(24px, 5vw, 68px);
  align-items: center;
  padding: clamp(28px, 4vw, 72px) 0 32px;
}

.page-hero__copy h1 {
  max-width: 10ch;
  font-size: clamp(2.8rem, 6vw, 5.3rem);
}

.page-hero__copy p {
  color: var(--text-soft);
  line-height: 1.85;
}

.page-hero__copy .hero__actions {
  margin-top: 28px;
}

.page-hero__media,
.media-card {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.02);
  box-shadow: var(--shadow);
}

.page-hero__media {
  min-height: 560px;
}

.page-hero__media img,
.media-card img {
  height: 100%;
  object-fit: cover;
}

.page-hero__media--contain {
  display: flex;
  align-items: center;
  padding: 18px;
  min-height: auto;
}

.page-hero__media--contain img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.page-hero--lrcsyn .page-hero__copy h1 {
  max-width: 8ch;
  font-size: clamp(2.7rem, 5.8vw, 4.9rem);
}

.page-hero__media--stack {
  display: grid;
  grid-template-rows: minmax(0, 1fr) minmax(180px, 0.56fr);
  gap: 14px;
  padding: 16px;
}

.page-hero__shot {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.02);
}

.page-hero__shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.metric-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.metric-strip .glass-card {
  padding: 22px 24px;
  border-radius: 22px;
}

.metric-strip span {
  display: block;
  margin-bottom: 8px;
  color: var(--text-soft);
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.metric-strip strong {
  display: block;
  font-size: 1rem;
}

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

.feature-card {
  padding: 28px;
  border-radius: var(--radius-lg);
}

.feature-card h3,
.story-copy h3,
.quote-card h3,
.stack-card h3 {
  margin: 0 0 12px;
  font-size: 1.34rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.feature-card p,
.story-copy p,
.quote-card p,
.stack-card p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.8;
}

.story-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(320px, 1.12fr);
  gap: 24px;
  align-items: start;
  margin-top: 34px;
}

.story-copy {
  display: grid;
  gap: 18px;
}

.story-copy .glass-card,
.quote-card,
.stack-card {
  padding: 28px;
  border-radius: var(--radius-lg);
}

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

.media-stack .media-card:first-child {
  min-height: 520px;
}

.media-stack .media-card:last-child {
  min-height: 320px;
  align-self: end;
}

.media-stack--equal .media-card:first-child,
.media-stack--equal .media-card:last-child {
  min-height: 340px;
  align-self: stretch;
}

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

.media-stack--vertical .media-card:first-child {
  min-height: 420px;
  align-self: stretch;
}

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

.media-stack--workflow .media-card:first-child {
  min-height: auto;
  align-self: stretch;
}

.media-card--contain {
  padding: 18px;
}

.media-card--contain img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.media-note {
  padding: 24px;
}

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

.stack-card {
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.quote-card {
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(130deg, rgba(146, 210, 255, 0.08), transparent 36%),
    linear-gradient(225deg, rgba(243, 157, 143, 0.08), transparent 34%),
    var(--panel-strong);
  box-shadow: var(--shadow);
}

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

.process-card {
  padding: 26px 24px;
  border-radius: 24px;
}

.process-card span {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  color: var(--accent-blue);
  font-size: 0.84rem;
  letter-spacing: 0.16em;
}

.process-card h3 {
  margin: 14px 0 10px;
  font-size: 1.18rem;
}

.process-card p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.8;
}

.cta-banner {
  margin-top: 36px;
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(130deg, rgba(146, 210, 255, 0.08), transparent 34%),
    linear-gradient(225deg, rgba(243, 157, 143, 0.08), transparent 32%),
    var(--panel-strong);
  box-shadow: var(--shadow);
}

.cta-banner p {
  margin: 14px 0 0;
  color: var(--text-soft);
  line-height: 1.8;
}

.cta-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}

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

.showcase-card {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.showcase-card--wide {
  grid-column: span 2;
}

.showcase-card__media {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.02);
}

.showcase-card__media img {
  width: 100%;
  height: auto;
}

.showcase-card h3 {
  margin: 14px 0 8px;
  font-size: 1.18rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.showcase-card p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.75;
}

.page-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.page-links a {
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-soft);
  font-size: 0.9rem;
}

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

  .feature-grid,
  .process-grid,
  .metric-strip,
  .showcase-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .page-hero {
    gap: 22px;
    padding-top: 24px;
  }

  .page-hero__media {
    min-height: 420px;
  }

  .page-hero__media--stack {
    grid-template-rows: 1fr 1fr;
  }

  .feature-grid,
  .stack-grid,
  .process-grid,
  .metric-strip,
  .media-stack,
  .showcase-grid {
    grid-template-columns: 1fr;
  }

  .showcase-card--wide {
    grid-column: auto;
  }

  .media-stack .media-card:first-child,
  .media-stack .media-card:last-child {
    min-height: 300px;
  }

  .media-stack--equal .media-card:first-child,
  .media-stack--equal .media-card:last-child {
    min-height: 260px;
  }

  .media-stack--vertical .media-card:first-child {
    min-height: 300px;
  }

  .media-card--contain {
    padding: 14px;
  }
}

@media (max-width: 560px) {
  .page-hero {
    padding-top: 16px;
    padding-bottom: 12px;
  }

  .page-hero__copy h1 {
    font-size: clamp(2.25rem, 9vw, 3.2rem);
    line-height: 1.06;
  }

  .page-hero__media {
    min-height: 280px;
    border-radius: 24px;
  }

  .page-hero__media--contain {
    padding: 12px;
  }

  .page-hero__media--stack {
    padding: 12px;
    gap: 12px;
    min-height: auto;
  }

  .page-hero__shot {
    border-radius: 18px;
  }

  .metric-strip .glass-card,
  .feature-card,
  .story-copy .glass-card,
  .quote-card,
  .stack-card,
  .process-card,
  .cta-banner,
  .showcase-card {
    padding: 20px;
    border-radius: 24px;
  }

  .page-links {
    gap: 10px;
  }

  .page-links a {
    font-size: 0.84rem;
    padding: 8px 12px;
  }

  .cta-banner__actions {
    gap: 10px;
  }

  .cta-banner__actions .button {
    width: 100%;
  }
}
