:root {
  color-scheme: light;
  --font-display:
    "Iowan Old Style", "Palatino Linotype", "Times New Roman", serif;
  --font-sans: "Avenir Next", "PingFang SC", "Hiragino Sans GB", sans-serif;
  --ink-strong: #101827;
  --ink: #1b2434;
  --ink-soft: #53627b;
  --surface: rgba(255, 251, 247, 0.72);
  --surface-strong: rgba(255, 255, 255, 0.9);
  --line: rgba(87, 103, 135, 0.16);
  --line-strong: rgba(87, 103, 135, 0.24);
  --blue: #4a8cff;
  --blue-deep: #2d61d6;
  --blue-soft: rgba(74, 140, 255, 0.16);
  --mint: #42a988;
  --mint-soft: rgba(66, 169, 136, 0.16);
  --warm: #f39a61;
  --warm-soft: rgba(243, 154, 97, 0.18);
  --pearl: #f7efe8;
  --shadow: 0 28px 90px rgba(22, 34, 55, 0.12);
  --radius-xl: 38px;
  --radius-lg: 28px;
  --radius-md: 22px;
  --radius-sm: 16px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  font-family: var(--font-sans);
  color: var(--ink);
  background:
    radial-gradient(
      circle at top left,
      rgba(255, 255, 255, 0.82),
      transparent 34%
    ),
    radial-gradient(
      circle at 85% 18%,
      rgba(255, 212, 175, 0.4),
      transparent 22%
    ),
    linear-gradient(180deg, #f3ede6 0%, #ecf3fb 44%, #ecf0f8 100%);
}

body[data-page="translate"] {
  background:
    radial-gradient(
      circle at top left,
      rgba(255, 255, 255, 0.76),
      transparent 34%
    ),
    radial-gradient(
      circle at 84% 14%,
      rgba(252, 186, 146, 0.34),
      transparent 22%
    ),
    linear-gradient(180deg, #f5ede8 0%, #e8eef8 48%, #e9eef9 100%);
}

body[data-page="workspace"] {
  background:
    radial-gradient(
      circle at top left,
      rgba(255, 255, 255, 0.8),
      transparent 34%
    ),
    radial-gradient(
      circle at 86% 14%,
      rgba(177, 225, 205, 0.32),
      transparent 24%
    ),
    linear-gradient(180deg, #f2eee8 0%, #edf3f8 46%, #e6edf7 100%);
}

body[data-page="about"] {
  background:
    radial-gradient(
      circle at top left,
      rgba(255, 255, 255, 0.82),
      transparent 34%
    ),
    radial-gradient(
      circle at 84% 18%,
      rgba(168, 192, 255, 0.3),
      transparent 24%
    ),
    linear-gradient(180deg, #f4eee7 0%, #ecf0f9 50%, #edf1fa 100%);
}

a {
  color: inherit;
}

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

.background-glow,
.background-noise {
  pointer-events: none;
  position: fixed;
  inset: 0;
}

.background-glow {
  filter: blur(64px);
  opacity: 0.95;
}

.background-glow-left {
  inset: -16% auto auto -10%;
  width: 42vw;
  height: 38vw;
  border-radius: 999px;
  background: radial-gradient(
    circle,
    rgba(117, 170, 255, 0.34) 0%,
    rgba(117, 170, 255, 0) 70%
  );
  animation: drift 18s ease-in-out infinite alternate;
}

.background-glow-right {
  inset: auto -10% -14% auto;
  width: 34vw;
  height: 36vw;
  border-radius: 999px;
  background: radial-gradient(
    circle,
    rgba(255, 201, 167, 0.34) 0%,
    rgba(255, 201, 167, 0) 70%
  );
  animation: drift 22s ease-in-out infinite alternate-reverse;
}

.background-noise {
  opacity: 0.35;
  background-image:
    linear-gradient(rgba(58, 75, 105, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(58, 75, 105, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(circle at center, black 0%, transparent 82%);
}

.page-shell {
  position: relative;
  z-index: 1;
  width: min(1760px, calc(100vw - clamp(18px, 3vw, 56px)));
  margin: 18px auto 28px;
}

.chrome-card {
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
}

[data-animate] {
  opacity: 0;
  transform: translateY(48px) scale(0.985);
  transition:
    opacity 720ms ease,
    transform 720ms cubic-bezier(0.2, 0.9, 0.2, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

[data-animate].is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.topbar {
  position: sticky;
  top: 12px;
  z-index: 10;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 16px 20px;
  border-radius: 24px;
  background: rgba(255, 251, 247, 0.56);
}

.brand-cluster {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
  text-decoration: none;
  color: var(--ink-strong);
  font-size: 1.34rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.brand-icon {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 6px 18px rgba(38, 65, 105, 0.16);
}

.brand-subtitle {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.88rem;
}

.nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.nav-link {
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--ink-soft);
  text-decoration: none;
  transition:
    background 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--ink-strong);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: inset 0 0 0 1px rgba(74, 140, 255, 0.16);
  transform: translateY(-1px);
}

.mail-entry {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--blue-deep);
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(74, 140, 255, 0.16);
}

.site-main {
  display: grid;
  gap: 22px;
  margin-top: 22px;
}

.page-hero:empty {
  display: none;
}

.hero-shell {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(420px, 0.86fr) minmax(640px, 1.14fr);
  gap: 28px;
  align-items: center;
  padding: 34px;
  border-radius: var(--radius-xl);
}

.hero-shell::before,
.hero-shell::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.hero-shell::before {
  inset: -18% auto auto -10%;
  width: 24rem;
  height: 24rem;
  background: radial-gradient(
    circle,
    rgba(74, 140, 255, 0.22),
    transparent 70%
  );
}

.hero-shell::after {
  inset: auto -10% -28% auto;
  width: 22rem;
  height: 22rem;
  background: radial-gradient(
    circle,
    rgba(244, 162, 104, 0.2),
    transparent 72%
  );
}

.theme-light {
  background:
    linear-gradient(
      180deg,
      rgba(255, 251, 247, 0.86),
      rgba(241, 247, 255, 0.76)
    ),
    var(--surface);
}

.theme-tint {
  background:
    radial-gradient(
      circle at top right,
      rgba(182, 214, 255, 0.34),
      transparent 30%
    ),
    linear-gradient(
      145deg,
      rgba(255, 249, 245, 0.88),
      rgba(232, 241, 251, 0.82)
    );
}

.theme-dark {
  color: var(--ink-strong);
  background:
    radial-gradient(
      circle at 18% 18%,
      rgba(170, 201, 255, 0.22),
      transparent 30%
    ),
    radial-gradient(
      circle at 86% 20%,
      rgba(255, 218, 192, 0.24),
      transparent 22%
    ),
    radial-gradient(
      circle at 50% 100%,
      rgba(197, 214, 244, 0.24),
      transparent 32%
    ),
    linear-gradient(
      145deg,
      rgba(255, 249, 243, 0.96),
      rgba(242, 247, 255, 0.94)
    );
  border-color: rgba(142, 161, 199, 0.12);
  box-shadow: 0 24px 72px rgba(42, 63, 96, 0.1);
}

.theme-dark .eyebrow {
  color: var(--blue-deep);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: inset 0 0 0 1px rgba(111, 160, 255, 0.12);
}

.theme-dark .hero-copy p,
.theme-dark .section-heading p,
.theme-dark .feature-card p,
.theme-dark .bullet-card p,
.theme-dark .gallery-card p,
.theme-dark .step-card p,
.theme-dark .cta-note,
.theme-dark .cta-mail,
.theme-dark .stat-card span {
  color: var(--ink-soft);
}

.theme-dark .stat-card,
.theme-dark .feature-card,
.theme-dark .bullet-card,
.theme-dark .gallery-card,
.theme-dark .step-card {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.92),
    rgba(241, 246, 252, 0.82)
  );
  border-color: rgba(171, 189, 222, 0.12);
}

.theme-dark .button-secondary {
  color: var(--ink-strong);
  background: rgba(255, 255, 255, 0.82);
  border-color: rgba(87, 103, 135, 0.14);
}

.theme-dark .gallery-tag,
.theme-dark .feature-meta,
.theme-dark .section-badge {
  background: rgba(255, 255, 255, 0.82);
}

.theme-dark .shot-frame {
  border-color: rgba(186, 202, 233, 0.12);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.96),
    rgba(232, 240, 250, 0.86)
  );
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.84),
    0 18px 48px rgba(42, 63, 96, 0.1);
}

.hero-copy {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.eyebrow {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 8px;
  padding: 9px 13px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--blue-deep);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-copy h1,
.section-heading h2 {
  font-family: var(--font-display);
  letter-spacing: -0.04em;
}

.hero-copy h1 {
  margin: 18px 0 16px;
  max-width: 11ch;
  color: currentColor;
  font-size: clamp(3.4rem, 5.4vw, 7rem);
  line-height: 0.9;
}

.hero-copy p {
  max-width: 54ch;
  margin: 0;
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.78;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
  margin-top: 24px;
}

.stat-card {
  min-height: 118px;
  padding: 18px;
  border-radius: 22px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.88),
    rgba(235, 242, 249, 0.7)
  );
  border: 1px solid rgba(87, 103, 135, 0.1);
}

.stat-card span {
  display: block;
  margin-bottom: 10px;
  color: var(--ink-soft);
  font-size: 0.82rem;
}

.stat-card strong {
  display: block;
  font-size: 1.02rem;
  line-height: 1.42;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.button {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.button::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent 20%,
    rgba(255, 255, 255, 0.26),
    transparent 80%
  );
  transform: translateX(-120%);
  transition: transform 480ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button:hover::after {
  transform: translateX(120%);
}

.button-primary {
  color: white;
  background: linear-gradient(180deg, #8dc1ff 0%, #68a2f6 100%);
  box-shadow: 0 14px 28px rgba(104, 162, 246, 0.16);
}

.button-secondary {
  color: var(--ink-strong);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(87, 103, 135, 0.14);
}

.hero-media,
.showcase-media,
.workflow-media {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-media {
  min-height: 640px;
}

.hero-media-glow {
  position: absolute;
  inset: 8% 10% auto;
  height: 65%;
  border-radius: 999px;
  background: radial-gradient(
    circle,
    rgba(188, 215, 255, 0.24),
    transparent 70%
  );
  filter: blur(26px);
  pointer-events: none;
}

.shot-frame {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.92),
    rgba(225, 235, 247, 0.78)
  );
  border: 1px solid rgba(87, 103, 135, 0.12);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.74),
    0 24px 80px rgba(36, 52, 83, 0.14);
}

.shot-frame::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 30%;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0),
    rgba(243, 247, 253, 0.26)
  );
  pointer-events: none;
}

.media-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.media-image-contain {
  object-fit: contain;
}

.frame-contain {
  display: flex;
  align-items: center;
  justify-content: center;
}

.frame-contain .media-image {
  width: 100%;
  height: auto;
}

.shot-frame-hero {
  position: relative;
  z-index: 1;
  width: min(100%, 880px);
  min-height: clamp(420px, 34vw, 760px);
  animation: floatFrame 8s ease-in-out infinite;
}

.shot-frame-hero.frame-contain {
  min-height: 0;
}

.shot-frame-showcase,
.shot-frame-workflow {
  width: 100%;
  min-height: 460px;
}

.shot-frame-showcase.frame-contain,
.shot-frame-workflow.frame-contain,
.shot-frame-gallery.frame-contain {
  min-height: 0;
  height: auto;
}

.hero-spotlights {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-spotlight {
  position: absolute;
  width: clamp(170px, 18vw, 290px);
  padding: 10px;
  border-radius: 24px;
  border: 1px solid rgba(143, 170, 213, 0.14);
  background: linear-gradient(
    180deg,
    rgba(255, 252, 248, 0.9),
    rgba(238, 245, 252, 0.84)
  );
  box-shadow: 0 18px 42px rgba(42, 63, 96, 0.1);
  backdrop-filter: blur(18px);
}

.hero-spotlight-top {
  top: -2%;
  right: -1%;
  animation: floatSpotlight 7s ease-in-out infinite;
}

.hero-spotlight-bottom {
  left: -2%;
  bottom: 2%;
  animation: floatSpotlight 9s ease-in-out infinite reverse;
}

.hero-spotlight-label {
  display: inline-flex;
  align-items: center;
  margin-bottom: 8px;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-strong);
}

.tone-blue .hero-spotlight-label {
  background: rgba(170, 201, 255, 0.32);
}

.tone-mint .hero-spotlight-label {
  background: rgba(176, 229, 210, 0.34);
}

.tone-warm .hero-spotlight-label {
  background: rgba(255, 223, 198, 0.42);
}

.hero-spotlight-frame {
  overflow: hidden;
  border-radius: 18px;
}

.hero-spotlight-frame img {
  aspect-ratio: 1.15;
  object-fit: cover;
}

.content-stack {
  display: grid;
  gap: 22px;
}

.section-card {
  position: relative;
  overflow: hidden;
  padding: 32px;
  border-radius: var(--radius-xl);
}

.section-card::before {
  content: "";
  position: absolute;
  inset: auto auto -120px -80px;
  width: 240px;
  height: 240px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(74, 140, 255, 0.1), transparent 70%);
  pointer-events: none;
}

.section-heading {
  position: relative;
  z-index: 1;
  max-width: 860px;
}

.section-heading h2 {
  margin: 16px 0 10px;
  font-size: clamp(2.2rem, 3.1vw, 4.2rem);
  line-height: 0.94;
}

.section-heading p {
  margin: 0;
  max-width: 60ch;
  color: var(--ink-soft);
  line-height: 1.78;
}

.feature-grid,
.gallery-grid {
  position: relative;
  z-index: 1;
  margin-top: 28px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}

.feature-card,
.bullet-card,
.gallery-card,
.step-card {
  position: relative;
  overflow: hidden;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.86),
    rgba(233, 240, 248, 0.74)
  );
  border: 1px solid rgba(87, 103, 135, 0.1);
  transform: translateY(0);
  transition:
    transform 240ms ease,
    box-shadow 240ms ease,
    border-color 240ms ease;
}

.feature-card:hover,
.bullet-card:hover,
.gallery-card:hover,
.step-card:hover {
  transform: translateY(-4px);
  border-color: rgba(74, 140, 255, 0.22);
  box-shadow: 0 16px 36px rgba(40, 61, 95, 0.12);
}

.feature-card {
  min-height: 240px;
  padding: 22px;
  border-radius: 26px;
}

.feature-meta,
.gallery-tag,
.section-badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 7px 11px;
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.feature-meta,
.gallery-tag {
  color: var(--warm);
  background: var(--warm-soft);
}

.section-badge {
  margin-top: 20px;
  color: var(--mint);
  background: var(--mint-soft);
}

.feature-card h3,
.bullet-card h3,
.gallery-card h3,
.step-card h3 {
  margin: 16px 0 10px;
  font-size: 1.22rem;
  letter-spacing: -0.03em;
}

.feature-card p,
.bullet-card p,
.gallery-card p,
.step-card p,
.cta-note,
.cta-mail {
  color: var(--ink-soft);
  line-height: 1.72;
}

.showcase-layout,
.workflow-layout,
.cta-layout {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 26px;
}

.showcase-layout,
.workflow-layout {
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  align-items: center;
}

.showcase-layout.is-reversed {
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
}

.showcase-layout.is-reversed .showcase-copy {
  order: 2;
}

.showcase-layout.is-reversed .showcase-media {
  order: 1;
}

.bullet-list {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

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

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
}

.gallery-card {
  border-radius: 26px;
}

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

.shot-frame-gallery {
  height: 300px;
  border-radius: 26px 26px 0 0;
  border: none;
  border-bottom: 1px solid rgba(87, 103, 135, 0.08);
  box-shadow: none;
  background: linear-gradient(180deg, #dbe8f6, #cad9ec);
}

.gallery-card.is-featured .shot-frame-gallery {
  height: 360px;
}

.gallery-card-copy {
  padding: 18px 18px 22px;
}

.workflow-layout.is-text-only {
  grid-template-columns: 1fr;
}

.workflow-steps {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.step-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  padding: 18px 18px 16px;
  border-radius: 24px;
}

.step-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 15px;
  color: var(--blue-deep);
  background: var(--blue-soft);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.cta-card {
  background:
    radial-gradient(
      circle at top right,
      rgba(184, 231, 210, 0.34),
      transparent 28%
    ),
    linear-gradient(145deg, rgba(255, 248, 242, 0.9), rgba(231, 240, 250, 0.82));
}

.cta-layout {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
}

.cta-copy {
  max-width: 760px;
}

.cta-mail {
  display: inline-flex;
  margin-top: 18px;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--blue-deep);
  text-decoration: none;
}

.cta-note {
  margin-top: 12px;
}

.cta-actions .button-row {
  justify-content: flex-end;
  margin-top: 0;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 22px;
  padding: 18px 20px;
  border-radius: 24px;
}

.footer p {
  margin: 8px 0 0;
  color: var(--ink-soft);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-links a {
  color: var(--ink-soft);
  text-decoration: none;
}

.footer-links a:hover,
.mail-entry:hover,
.cta-mail:hover {
  color: var(--blue-deep);
}

@keyframes drift {
  from {
    transform: translate3d(0, 0, 0) scale(1);
  }
  to {
    transform: translate3d(20px, -18px, 0) scale(1.08);
  }
}

@keyframes floatFrame {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes floatSpotlight {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, -8px, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }

  [data-animate] {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1380px) {
  .hero-shell,
  .showcase-layout,
  .showcase-layout.is-reversed,
  .workflow-layout,
  .cta-layout {
    grid-template-columns: 1fr;
  }

  .showcase-layout.is-reversed .showcase-copy,
  .showcase-layout.is-reversed .showcase-media {
    order: initial;
  }

  .hero-copy h1 {
    max-width: none;
  }

  .hero-media {
    min-height: 520px;
  }

  .hero-spotlight-top {
    top: 0;
    right: 1%;
  }

  .hero-spotlight-bottom {
    left: 2%;
    bottom: 2%;
  }

  .cta-actions .button-row {
    justify-content: flex-start;
    margin-top: 18px;
  }
}

@media (max-width: 960px) {
  .page-shell {
    width: min(100%, calc(100vw - 18px));
    margin: 10px auto 20px;
  }

  .topbar {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .nav {
    justify-content: flex-start;
  }

  .hero-shell,
  .section-card {
    padding: 22px;
    border-radius: 28px;
  }

  .hero-copy h1 {
    font-size: clamp(2.6rem, 11vw, 4.6rem);
  }

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

  .hero-media {
    min-height: 360px;
  }

  .hero-spotlight {
    display: none;
  }

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

  .gallery-card.is-featured {
    grid-column: span 1;
  }

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

  .shot-frame-showcase,
  .shot-frame-workflow,
  .shot-frame-gallery,
  .gallery-card.is-featured .shot-frame-gallery {
    min-height: 0;
    height: 240px;
  }

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