:root {
  --ink: #171717;
  --muted: #646a70;
  --line: #d8dde1;
  --paper: #ffffff;
  --mist: #f4f6f7;
  --panel: #e8ecef;
  --charcoal: #111416;
  --blue: #2877b8;
  --gold: #b4945b;
  --green: #5d7d6a;
  --shadow: 0 22px 55px rgba(0, 0, 0, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Verdana, "Hiragino Sans GB", sans-serif;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 220;
  background: transparent;
  pointer-events: none;
}

.global-bar,
.product-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 58px;
  padding: 0 clamp(18px, 4vw, 35px);
  pointer-events: auto;
}

.global-bar {
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(16px);
  transition: opacity 220ms ease, transform 220ms ease;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  font-weight: 800;
}

.brand-logo {
  display: block;
  width: 132px;
  height: auto;
}

.global-nav,
.product-nav {
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.6vw, 38px);
  font-size: 14px;
  white-space: nowrap;
}

.global-nav a,
.product-nav a,
.has-submenu > a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  color: #24282c;
}

.global-nav a::after,
.product-nav a::after,
.has-submenu > a::after {
  position: absolute;
  right: 0;
  bottom: 7px;
  left: 0;
  height: 2px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.global-nav a:hover::after,
.global-nav a.is-active::after,
.product-nav a:hover::after,
.product-nav a.is-active::after,
.has-submenu:hover > a::after,
.has-submenu.is-active > a::after {
  transform: scaleX(1);
  transform-origin: left;
}

.product-bar {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 240;
  min-height: 46px;
  background: rgba(247, 248, 249, 0.98);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-110%);
  transition: opacity 220ms ease, transform 220ms ease;
  backdrop-filter: blur(16px);
}

body.product-nav-visible .global-bar {
  opacity: 0;
  transform: translateY(-110%);
}

body.product-nav-visible .product-bar {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.product-title {
  font-size: 13px;
  font-weight: 800;
}

.product-nav {
  gap: clamp(16px, 2.2vw, 32px);
  font-size: 14px;
}

.has-submenu {
  position: relative;
}

.feature-submenu {
  position: absolute;
  z-index: 250;
  top: calc(100% + 1px);
  left: 50%;
  display: grid;
  min-width: 210px;
  padding: 10px 0;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 8px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.has-submenu:hover .feature-submenu,
.has-submenu:focus-within .feature-submenu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.feature-submenu a {
  min-height: 38px;
  padding: 0 18px;
}

.feature-page-nav {
  position: fixed;
  top: 46px;
  right: 0;
  left: 0;
  z-index: 230;
  display: flex;
  justify-content: center;
  gap: clamp(16px, 3vw, 42px);
  min-height: 42px;
  padding: 0 clamp(18px, 4vw, 70px);
  background: #fff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-size: 14px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-110%);
  transition: opacity 220ms ease, transform 220ms ease;
  white-space: nowrap;
}

body.product-nav-visible.feature-page-active .feature-page-nav {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.feature-page-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  color: #333;
}

.feature-page-nav a::after {
  position: absolute;
  right: 0;
  bottom: 8px;
  left: 0;
  height: 2px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.feature-page-nav a:hover::after,
.feature-page-nav a.is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-toggle {
  display: none;
  position: relative;
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  color: inherit;
}

.menu-toggle span {
  position: absolute;
  left: 10px;
  width: 22px;
  height: 2px;
  background: currentColor;
  transition: top 180ms ease, opacity 180ms ease, transform 180ms ease;
}

.menu-toggle span:first-child {
  top: 13px;
}

.menu-toggle span:nth-child(2) {
  top: 20px;
}

.menu-toggle span:nth-child(3) {
  top: 27px;
}

.menu-toggle.is-open span:first-child {
  top: 20px;
  transform: rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
  top: 20px;
  transform: rotate(-45deg);
}

.hero-slider {
  position: relative;
  min-height: clamp(520px, 56vw, 820px);
  overflow: hidden;
  background: #1d2226;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 800ms ease;
}

.slide.is-active {
  opacity: 1;
}

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

.slide-body {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  place-content: center;
  padding: clamp(24px, 8vw, 124px);
  color: #fff;
  text-align: center;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.45);
}

.slide-body p {
  margin: 0 0 12px;
  font-size: clamp(18px, 2.4vw, 36px);
  font-weight: 300;
}

.slide-body h1 {
  margin: 0;
  font-size: clamp(46px, 9vw, 122px);
  line-height: 0.92;
  letter-spacing: 0;
}

.slider-dots {
  position: absolute;
  right: clamp(18px, 4vw, 64px);
  bottom: 28px;
  display: flex;
  gap: 9px;
}

.slider-dots button {
  width: 34px;
  height: 3px;
  padding: 0;
  border: 0;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
}

.slider-dots button.is-active {
  background: #fff;
}

.section {
  padding: clamp(58px, 8vw, 104px) clamp(18px, 5vw, 80px);
}

.section-inner {
  width: min(1080px, 100%);
  margin: 0 auto;
}

.section-title {
  margin: 0 0 28px;
  font-size: clamp(24px, 3vw, 38px);
  text-align: center;
}

.history-body {
  width: min(840px, 100%);
  margin: 0 auto 40px;
  text-align: center;
}

.history-body h2 {
  margin: 0 0 22px;
  font-size: clamp(24px, 3.4vw, 42px);
  font-weight: 500;
}

.history-body p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 2;
}

.history-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  width: min(820px, 100%);
  margin: 0 auto;
}

.history-grid img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  background: var(--mist);
}

.samples {
  background: #536674;
  color: #fff;
  overflow: hidden;
}

.samples .section-inner {
  width: min(1180px, 100%);
}

.sample-head {
  position: relative;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  min-height: 58px;
}

.sample-head h2 {
  margin: 0;
  font-size: clamp(29px, 3.9vw, 44px);
  text-align: center;
}

.sample-showcase {
  display: flex;
  align-items: stretch;
  gap: 16px;
  margin-inline: calc(clamp(18px, 5vw, 80px) * -0.25);
  padding: 4px 0 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.sample-showcase::-webkit-scrollbar {
  display: none;
}

.sample-card {
  position: relative;
  flex: 0 0 clamp(250px, 28vw, 348px);
  height: 270px;
  margin: 0;
  overflow: hidden;
  background: #1f2b33;
  box-shadow: 0 12px 34px rgba(13, 20, 24, 0.22);
  scroll-snap-align: center;
}

.sample-card-wide {
  flex-basis: clamp(360px, 45vw, 560px);
}

.sample-card-tall {
  flex-basis: clamp(220px, 23vw, 300px);
}

.sample-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 420ms ease;
}

.sample-card::after {
  position: absolute;
  inset: auto 0 0;
  height: 46%;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.62));
  content: "";
}

.sample-card figcaption {
  position: absolute;
  right: 18px;
  bottom: 16px;
  left: 18px;
  z-index: 1;
  font-size: 16px;
  font-weight: 800;
}

.sample-card:hover img {
  transform: scale(1.045);
}

.scroll-indicator {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.scroll-indicator-track {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  min-height: 24px;
  padding: 0 8px;
}

.scroll-indicator-dot {
  width: 42px;
  height: 4px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  transition: background 180ms ease, transform 180ms ease, width 180ms ease;
}

.scroll-indicator-dot.is-active {
  width: 58px;
  background: #fff;
}

.scroll-indicator-dot:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 5px;
}

.sample-track img {
  flex: 0 0 auto;
  width: min(70vw, 460px);
  height: 344px;
  object-fit: cover;
  scroll-snap-align: center;
}

.feature-links {
  padding: 18px 0;
  background: #fff;
}

.feature-card {
  position: relative;
  display: block;
  min-height: clamp(360px, 48vw, 680px);
  margin: 0 0 18px;
  overflow: hidden;
  color: #111;
}

.feature-card:last-child {
  margin-bottom: 0;
}

.feature-card img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  transition: transform 700ms ease;
}

.feature-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.22), rgba(0, 0, 0, 0.12));
  content: "";
}

.feature-card:hover img {
  transform: scale(1.045);
}

.feature-card:hover .feature-body {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.78);
}

.feature-body {
  position: absolute;
  left: clamp(22px, 11vw, 170px);
  top: 50%;
  z-index: 2;
  width: min(430px, calc(100% - 44px));
  padding: clamp(20px, 3vw, 34px);
  background: rgba(255, 255, 255, 0.56);
  transition: transform 240ms ease, background 240ms ease;
}

.feature-body strong {
  display: block;
  margin-bottom: 10px;
  font-size: clamp(22px, 3vw, 36px);
}

.feature-body span {
  display: block;
  margin-bottom: 18px;
  font-size: clamp(15px, 2vw, 22px);
  font-weight: 700;
}

.feature-body small {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 22px;
  border-radius: 10px;
  background: #050505;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  transition: background 180ms ease, transform 180ms ease;
}

.feature-card:hover .feature-body small {
  background: #222;
  transform: translateY(-1px);
}

.colors {
  background: var(--mist);
}

.color-layout {
  display: grid;
  gap: clamp(26px, 4vw, 48px);
}

.color-gallery {
  display: block;
  width: 100%;
  background: #fff;
}

.color-image {
  margin: 0;
  overflow: hidden;
  background: #fff;
  animation: color-image-in 320ms ease both;
}

.color-image[hidden] {
  display: none;
}

.color-image img {
  width: 100%;
  aspect-ratio: 1500 / 456;
  object-fit: cover;
  transition: transform 1.5s ease;
}

.color-image:hover img {
  transform: scale(1.03);
}

.color-image figcaption {
  padding: 14px 18px 18px;
  color: #31363a;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
}

.color-body {
  width: min(760px, 100%);
  margin: 0 auto;
  text-align: center;
}

.color-body h2,
.basic-info h2 {
  margin: 0 0 20px;
  font-size: clamp(22px, 3vw, 34px);
}

.color-body p {
  margin: 0 0 24px;
  color: var(--muted);
  line-height: 1.9;
}

.swatches {
  display: flex;
  justify-content: center;
  gap: 16px;
}

.swatch {
  display: grid;
  width: 72px;
  height: 72px;
  place-items: end center;
  padding-top: 8px;
  padding-bottom: 8px;
  border: 1px solid var(--line);
  background: #fff;
  color: #51575d;
  font-size: 12px;
  cursor: pointer;
  transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
  font: inherit;
  font-size: 12px;
}

.swatch:hover,
.swatch:focus-visible,
.swatch.is-active {
  border-color: #222;
  box-shadow: 0 0 0 2px #222;
  transform: translateY(-2px);
  outline: none;
}

.swatch::before {
  display: block;
  width: 30px;
  height: 30px;
  margin-bottom: 4px;
  border-radius: 50%;
  border: 1px solid var(--line);
  content: "";
}

.swatch.silver::before {
  background: linear-gradient(135deg, #dfe4e8, #9ca4aa);
}

.swatch.black::before {
  background: #111;
}

@keyframes color-image-in {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.basic-info {
  background: #fff;
}

.info-box {
  width: min(760px, 100%);
  margin: 0 auto;
  text-align: center;
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
  color: #333;
  font-size: 14px;
}

.spec-table th,
.spec-table td {
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  text-align: center;
  vertical-align: top;
}

.spec-table th {
  width: 34%;
  color: #6d7379;
  font-weight: 500;
}

.blank-page {
  min-height: 58vh;
  padding: clamp(72px, 10vw, 140px) clamp(18px, 5vw, 80px);
  background: #fff;
}

.feature-design-page {
  width: 100%;
  background: #fff;
  line-height: 0;
}

.feature-design-page img {
  display: block;
  width: min(1680px, 100%);
  height: auto;
  margin: 0 auto;
}

.feature-design-slice {
  width: 100%;
  background: #fff;
}

.pen-feature-page {
  background: #fff;
  color: #1a1a1a;
}

.pen-feature-hero {
  position: relative;
  overflow: hidden;
  background: #e8e8e8;
}

.pen-feature-hero img {
  width: 100%;
  height: auto;
}

.pen-feature-hero-body {
  position: absolute;
  bottom: 50px;
  left: clamp(24px, 11.5vw, 190px);
  width: min(580px, calc(100% - 48px));
  padding: clamp(24px, 3.1vw, 50px) clamp(26px, 4.5vw, 66px);
  background: rgba(255, 255, 255, 0.38);
}

.pen-feature-hero-body p {
  margin: 0 0 14px;
  font-size: clamp(28px, 3.3vw, 58px);
  font-weight: 800;
  line-height: 1.03;
}

.pen-feature-hero-body h1 {
  margin: 0;
  font-size: clamp(18px, 1.7vw, 29px);
  font-weight: 800;
  line-height: 1.35;
}

.pen-feature-intro {
  padding: clamp(38px, 4.7vw, 76px) clamp(20px, 5vw, 80px);
  background: #f0f0f0;
}

.pen-feature-inner {
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
}

.pen-feature-inner-narrow {
  width: min(1000px, calc(100% - 40px));
}

.pen-feature-intro h1 {
  margin: 0 0 22px;
  font-size: clamp(28px, 2.7vw, 46px);
  font-weight: 800;
  line-height: 1.35;
  text-align: center;
}

.pen-feature-intro p,
.pen-feature-text p {
  margin: 0;
  color: #2e2e2e;
  font-size: clamp(14px, 1vw, 16px);
  line-height: 2;
}

.pen-feature-section {
  padding: clamp(48px, 5.6vw, 90px) clamp(20px, 5vw, 80px) 0;
}

.pen-variangle-section {
  padding-top: clamp(24px, 2.8vw, 45px);
}

.pen-feature-section-last {
  padding-bottom: clamp(54px, 7vw, 110px);
}

.pen-feature-text {
  margin-bottom: clamp(28px, 3.5vw, 52px);
}

.pen-feature-text h2 {
  margin: 0 0 18px;
  font-size: clamp(22px, 2vw, 34px);
  line-height: 1.55;
  text-align: left;
}

.pen-feature-text h3 {
  margin: 0 0 16px;
  font-size: clamp(18px, 1.5vw, 24px);
  line-height: 1.55;
  text-align: left;
}

.pen-feature-text-spaced {
  margin-top: clamp(30px, 4vw, 62px);
}

.pen-feature-large-heading {
  margin-bottom: clamp(28px, 3.8vw, 58px);
  font-size: clamp(26px, 2.6vw, 42px);
}

.pen-feature-list {
  margin-top: 28px;
  line-height: 2.1;
}

.pen-feature-reference {
  margin-top: 24px;
  padding: 16px 18px;
  background: #f3f5f6;
  color: #50575d;
  font-size: 13px;
  line-height: 1.9;
}

.pen-feature-wide-image {
  width: 100%;
  height: auto;
  margin: 0 auto;
  transition: transform 2.5s ease;
}

.pen-feature-image-spaced {
  margin-top: clamp(18px, 2.4vw, 36px);
}

.pen-feature-image-medium {
  width: min(1074px, 100%);
}

.pen-feature-centered-image {
  width: min(420px, 72%);
  height: auto;
  margin: clamp(28px, 4vw, 58px) auto;
  transition: transform 2.5s ease;
}

.pen-info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(24px, 3vw, 48px);
}

.pen-info-card {
  margin: 0;
}

.pen-info-card h3 {
  margin: 0 0 18px;
  padding: 8px 14px;
  border: 1px solid #202020;
  font-size: clamp(16px, 1.25vw, 20px);
  font-weight: 800;
  line-height: 1.35;
  text-align: center;
}

.pen-info-card p {
  margin: 0 0 24px;
  color: #2e2e2e;
  font-size: clamp(14px, 1vw, 16px);
  line-height: 1.9;
}

.pen-info-card img {
  width: 100%;
  height: auto;
  transition: transform 2.5s ease;
}

.pen-info-card:hover img,
.pen-feature-wide-image:hover,
.pen-feature-centered-image:hover {
  transform: scale(1.03);
}

.pen-info-grid-visual .pen-info-card p {
  min-height: 0;
}

.pen-captioned-image {
  margin: clamp(28px, 4vw, 58px) 0 0;
  overflow: hidden;
}

.pen-captioned-image img {
  width: 100%;
  height: auto;
  transition: transform 2.5s ease;
}

.pen-captioned-image:hover img {
  transform: scale(1.025);
}

.pen-captioned-image figcaption {
  margin-top: 12px;
  color: #333;
  font-size: 13px;
  line-height: 1.65;
  text-align: right;
}

.pen-digital-shift-figure figcaption {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  text-align: left;
}

.pen-digital-shift-figure figcaption span:last-child {
  text-align: right;
}

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

.pen-feature-text-center h2 {
  text-align: center;
}

.pen-scene-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2.4vw, 32px);
  margin-top: clamp(32px, 4vw, 64px);
}

.pen-scene-grid article {
  margin: 0;
  background: #fff;
}

.pen-scene-grid img {
  width: 100%;
  aspect-ratio: 362 / 171;
  object-fit: cover;
  transition: transform 2.5s ease;
}

.pen-scene-grid article:hover img {
  transform: scale(1.04);
}

.pen-scene-grid h3 {
  margin: 14px 0 8px;
  font-size: 16px;
  line-height: 1.4;
}

.pen-scene-grid p {
  margin: 0;
  color: #3b4146;
  font-size: 13px;
  line-height: 1.7;
}

.pen-app-logo {
  width: min(330px, 48%);
  margin: clamp(26px, 3.6vw, 54px) 0 clamp(28px, 4vw, 62px);
}

.pen-app-logo img,
.pen-app-feature img,
.pen-app-profile img {
  width: 100%;
  height: auto;
}

.pen-app-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(340px, 1fr);
  gap: clamp(34px, 4.5vw, 72px);
  align-items: center;
}

.pen-app-feature-body {
  display: grid;
  gap: clamp(28px, 3.5vw, 54px);
}

.pen-app-feature-body section {
  margin: 0;
}

.pen-app-feature-body h3,
.pen-app-profile h3 {
  margin: 0 0 18px;
  padding: 6px 16px;
  border: 1px solid #202020;
  font-size: clamp(16px, 1.4vw, 23px);
  line-height: 1.35;
  text-align: center;
}

.pen-app-feature-body p,
.pen-app-profile p {
  margin: 0;
  color: #2e2e2e;
  font-size: clamp(14px, 1vw, 16px);
  line-height: 1.9;
}

.pen-app-profile {
  margin-top: clamp(46px, 6vw, 92px);
}

.pen-app-profile img {
  margin-top: clamp(28px, 4vw, 60px);
}

.pen-feature-table {
  width: 100%;
  border-collapse: collapse;
  color: #333;
  font-size: 14px;
  line-height: 1.8;
}

.pen-feature-table th,
.pen-feature-table td {
  padding: 18px 20px;
  border: 1px solid #dfe3e6;
  vertical-align: top;
}

.pen-feature-table th {
  width: 28%;
  background: #f4f6f7;
  font-weight: 800;
  text-align: left;
}

.pen-info-grid-center {
  align-items: center;
  width: min(920px, 100%);
  margin: 0 auto;
}

.pen-info-grid-center img,
.pen-media-row img,
.pen-info-grid-caption img {
  width: 100%;
  height: auto;
  transition: transform 2.5s ease;
}

.pen-info-grid-center img:hover,
.pen-media-row img:hover,
.pen-info-grid-caption figure:hover img {
  transform: scale(1.03);
}

.pen-media-row {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(28px, 4vw, 62px);
  align-items: center;
}

.pen-media-row .pen-feature-text {
  margin-bottom: 0;
}

.pen-media-row-narrow {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.75fr);
  margin-bottom: clamp(34px, 4.5vw, 70px);
}

.pen-info-grid-caption {
  margin-top: clamp(28px, 4vw, 58px);
}

.pen-info-grid-caption figure {
  margin: 0;
  overflow: hidden;
}

.pen-info-grid-caption figcaption {
  margin-bottom: 12px;
  padding: 8px 14px;
  border: 1px solid #202020;
  font-size: clamp(14px, 1vw, 16px);
  font-weight: 800;
  line-height: 1.4;
  text-align: center;
}

.pen-info-grid-caption p {
  margin: 14px 0 0;
  color: #2e2e2e;
  font-size: clamp(13px, 0.95vw, 15px);
  line-height: 1.85;
}

.pen-experience-opening-grid {
  align-items: start;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.pen-experience-opening-grid figure {
  overflow: hidden;
}

.pen-experience-opening-grid img {
  width: 100%;
  height: clamp(360px, 40vw, 560px);
  object-fit: cover;
}

.pen-experience-opening-grid p,
.pen-art-grid p {
  text-align: right;
}

.pen-experience-anchor-section {
  background: #fff;
}

.pen-experience-card-nav {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2.2vw, 28px);
}

.pen-experience-card-nav a {
  display: block;
  min-height: 122px;
  padding: 26px 18px 20px;
  border: 2px solid #111;
  background: #fff;
  color: #161616;
  text-align: center;
  transition: background 180ms ease, color 180ms ease;
}

.pen-experience-card-nav a:hover {
  background: #111;
  color: #fff;
}

.pen-experience-card-nav strong {
  display: inline-block;
  border-bottom: 1px solid currentColor;
  font-size: clamp(20px, 1.7vw, 28px);
  line-height: 1.35;
}

.pen-experience-card-nav span {
  display: block;
  margin-top: 22px;
  font-size: 14px;
  line-height: 1.6;
}

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

.pen-experience-preview-grid figure {
  margin: 0;
}

.pen-experience-preview-grid figcaption {
  margin-bottom: 8px;
  min-height: 38px;
  color: #222;
  font-size: 12px;
  line-height: 1.55;
  text-align: left;
}

.pen-experience-preview-grid img {
  width: 100%;
  aspect-ratio: 580 / 435;
  object-fit: cover;
  transition: transform 2.5s ease;
}

.pen-experience-preview-grid figure:hover img {
  transform: scale(1.03);
}

.pen-profile-grid {
  margin-top: clamp(28px, 4vw, 58px);
}

.pen-profile-grid figcaption,
.pen-shading-grid figcaption,
.pen-profile-library-card figcaption {
  text-align: center;
}

.pen-shading-grid p {
  text-align: left;
}

.pen-profile-library-card {
  margin: clamp(34px, 4.5vw, 70px) 0 0;
  overflow: hidden;
}

.pen-profile-library-card figcaption {
  margin-bottom: 12px;
  padding: 8px 14px;
  border: 1px solid #202020;
  font-size: clamp(14px, 1vw, 16px);
  font-weight: 800;
  line-height: 1.4;
}

.pen-profile-library-card p {
  margin: 0 0 clamp(22px, 3vw, 42px);
  color: #2e2e2e;
  font-size: clamp(13px, 0.95vw, 15px);
  line-height: 1.85;
}

.pen-profile-library-card img {
  width: 100%;
  height: auto;
  transition: transform 2.5s ease;
}

.pen-profile-library-card:hover img {
  transform: scale(1.025);
}

.pen-art-grid {
  align-items: start;
}

.pen-art-grid figure {
  display: flex;
  height: 100%;
  flex-direction: column;
}

.pen-depth-composite-grid p {
  text-align: right;
}

.pen-live-nd-grid {
  grid-template-columns: minmax(0, 1.42fr) minmax(0, 0.84fr);
  align-items: end;
}

.pen-live-nd-grid figure {
  display: flex;
  height: 100%;
  flex-direction: column;
  justify-content: flex-end;
}

.pen-live-nd-grid figcaption {
  text-align: right;
}

.pen-multiple-exposure-grid img {
  height: auto;
  object-fit: contain;
}

.pen-multiple-exposure-grid {
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.46fr);
  align-items: end;
}

.pen-multiple-exposure-grid figure {
  display: flex;
  height: 100%;
  flex-direction: column;
  justify-content: flex-end;
}

.pen-multiple-exposure-grid p {
  text-align: right;
}

.pen-live-comp-grid {
  align-items: end;
}

.pen-live-comp-grid figure {
  display: flex;
  height: 100%;
  flex-direction: column;
  justify-content: flex-end;
}

.pen-live-comp-grid img {
  margin-top: auto;
}

.pen-live-comp-grid figcaption,
.pen-live-comp-grid figure figcaption,
.pen-live-comp-grid p,
.pen-live-comp-grid figure p {
  text-align: right;
}

.pen-battery-grid {
  align-items: start;
}

.pen-battery-grid figure {
  background: #fff;
}

.pen-battery-grid img {
  width: min(420px, 80%);
  margin: 0 auto;
}

.pen-photo-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(24px, 3vw, 48px);
  align-items: start;
}

.pen-photo-grid figure {
  margin: 0;
  overflow: hidden;
}

.pen-photo-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 2.5s ease;
}

.pen-photo-grid figure:hover img {
  transform: scale(1.03);
}

.pen-photo-grid figcaption {
  position: relative;
  min-height: 42px;
  padding-top: 10px;
  background: #fff;
  color: #333;
  font-size: 12px;
  line-height: 1.55;
  text-align: right;
}

.pen-feature-note {
  margin: 22px 0 0;
  color: #555;
  font-size: 12px;
  line-height: 1.7;
}

.blank-page .section-inner {
  padding: clamp(50px, 7vw, 90px) 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-align: center;
}

.blank-page h1,
.blank-page h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 500;
}

.spec-page {
  background: #f5f6f7;
  color: #151515;
}

.spec-page-inner {
  width: min(1040px, calc(100% - 40px));
  margin: 0 auto;
}

.spec-section {
  padding: clamp(56px, 7vw, 104px) 0;
}

.lens-spec-table {
  width: 100%;
  border: 1px solid #dfe3e6;
  border-collapse: collapse;
  background: #fff;
  font-size: 15px;
  line-height: 1.8;
}

.lens-spec-table th,
.lens-spec-table td {
  padding: 18px 22px;
  border-bottom: 1px solid #dfe3e6;
  vertical-align: top;
}

.lens-spec-table th {
  width: 30%;
  background: #eef1f3;
  color: #25292d;
  font-weight: 800;
  text-align: left;
}

.lens-spec-table tr:last-child th,
.lens-spec-table tr:last-child td {
  border-bottom: 0;
}

.spec-note {
  margin: 18px 0 0;
  color: #646a70;
  font-size: 13px;
}

.accessory-page {
  background: #f5f5f7;
  color: #1d1d1f;
}

.pen-accessory {
  padding: 0 0 clamp(56px, 7vw, 96px);
  background: #f5f5f7;
}

.pen-accessory-section {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
  padding: clamp(38px, 5vw, 56px) 0;
}

.pen-accessory-section + .pen-accessory-section {
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.pen-accessory-heading {
  margin: 0 0 clamp(22px, 3vw, 30px);
  color: #1d1d1f;
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.3;
}

.pen-accessory-heading a {
  margin-left: 10px;
  color: #0071e3;
  font-size: 14px;
  font-weight: 400;
  white-space: nowrap;
}

.pen-accessory-heading a:hover {
  opacity: 0.75;
}

.pen-accessory-track {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.pen-accessory-card {
  display: block;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  background: #fff;
  color: #1d1d1f;
  transition: transform 350ms cubic-bezier(0.22, 0.61, 0.36, 1), box-shadow 350ms ease, border-color 350ms ease;
}

.pen-accessory-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 0, 0, 0.12);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.pen-accessory-card-img {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1;
  padding: 20px;
  overflow: hidden;
  background: #fff;
}

.pen-accessory-card-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform-origin: center center;
  transition: transform 1.5s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.pen-accessory-card:hover img {
  transform: scale(1.03);
}

.pen-accessory-card-name {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  min-height: 72px;
  padding: 14px 16px 16px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.55;
  text-align: center;
}

.design-page {
  background: #fff;
  color: #161616;
}

.design-inner {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.design-part-section {
  padding: clamp(56px, 7vw, 96px) 0 0;
}

.design-part-section-last {
  padding-bottom: clamp(64px, 8vw, 120px);
}

.design-part-section h2 {
  margin: 0 0 clamp(24px, 3vw, 42px);
  padding-bottom: 14px;
  border-bottom: 1px solid #dfe3e6;
  font-size: clamp(24px, 2.5vw, 38px);
  line-height: 1.35;
}

.design-part-image {
  width: min(960px, 100%);
  margin: 0 auto clamp(28px, 4vw, 54px);
}

.design-part-image img {
  width: 100%;
  height: auto;
}

.design-part-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0 36px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: design-part;
}

.design-part-list li {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 10px;
  align-items: start;
  padding: 14px 0;
  border-bottom: 1px solid #e3e6e9;
  color: #333;
  font-size: 15px;
  line-height: 1.55;
  counter-increment: design-part;
}

.design-part-list li::before {
  display: inline-grid;
  width: 26px;
  height: 26px;
  place-items: center;
  border: 1px solid #1d1f21;
  border-radius: 50%;
  color: #111;
  content: counter(design-part);
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
}

.sample-page {
  background: #fff;
  color: #151515;
}

.sample-hero {
  display: grid;
  min-height: clamp(200px, 21vw, 306px);
  place-items: center;
  padding: clamp(0px, 3vw, 39px) 20px clamp(8px, 2.8vw, 30px);
  background: #111;
  color: #fff;
  text-align: center;
}

.sample-hero p {
  margin: 0 0 14px;
  font-size: clamp(14px, 1vw, 15px);
  font-weight: 800;
  letter-spacing: 0;
}

.sample-hero h1 {
  margin: 0;
  font-size: clamp(24px, 4.45vw, 60px);
  line-height: 1;
}

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

.sample-letter-section,
.sample-list-section {
  padding: clamp(56px, 7vw, 104px) 0;
}

.sample-letter-section {
  padding: clamp(28px, 3.5vw, 52px) 0;
}

.sample-list-section {
  background: #f5f6f7;
}

.sample-page-head {
  width: min(820px, 100%);
  margin: 0 auto clamp(34px, 4vw, 58px);
  text-align: center;
}

.sample-page-head h2 {
  margin: 0 0 16px;
  font-size: clamp(28px, 3vw, 44px);
}

.sample-page-head p {
  margin: 0;
  color: #5b6268;
  font-size: 15px;
  line-height: 1.9;
}

.pen-letter-gallery {
  display: grid;
  grid-template-columns: repeat(11, minmax(0, 1fr));
  gap: clamp(6px, 0.85vw, 12px);
}

.pen-letter-cell {
  aspect-ratio: 1;
}

.pen-letter-cell.is-empty {
  pointer-events: none;
}

.pen-sample-tile {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 0;
  overflow: hidden;
  border: 0;
  background: #dce1e5;
  cursor: pointer;
}

.pen-sample-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s ease, filter 240ms ease;
}

.pen-sample-tile::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 44%, rgba(0, 0, 0, 0.58));
  content: "";
  opacity: 0;
  transition: opacity 220ms ease;
}

.pen-sample-tile span {
  position: absolute;
  right: 10px;
  bottom: 9px;
  left: 10px;
  z-index: 1;
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  line-height: 1.25;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 220ms ease, transform 220ms ease;
}

.pen-sample-tile:hover img {
  filter: saturate(1.08);
  transform: scale(1.08);
}

.pen-sample-tile:hover::after,
.pen-sample-tile:hover span {
  opacity: 1;
  transform: translateY(0);
}

.sample-detail-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(24px, 3vw, 42px);
}

.sample-detail-card {
  background: #fff;
}

.sample-detail-card button {
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.sample-detail-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 2.5s ease;
}

.sample-detail-card button:hover img {
  transform: scale(1.03);
}

.sample-detail-card-body {
  padding: 22px 24px 26px;
}

.sample-detail-card h3 {
  margin: 0 0 18px;
  font-size: 20px;
}

.sample-spec-list {
  display: grid;
  gap: 8px;
  margin: 0;
  color: #333;
  font-size: 13px;
}

.sample-spec-list div {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 12px;
  padding-top: 8px;
  border-top: 1px solid #e0e3e6;
}

.sample-spec-list dt {
  color: #747b82;
}

.sample-spec-list dd {
  margin: 0;
}

[data-sample-lightbox-specs] div {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

[data-sample-lightbox-specs] dt {
  font-weight: 800;
  white-space: nowrap;
}

[data-sample-lightbox-specs] dt::after {
  content: "：";
}

.sample-lightbox {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: grid;
  place-items: center;
  padding: clamp(18px, 4vw, 54px);
  background: rgba(0, 0, 0, 0.78);
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
}

.sample-lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.sample-lightbox-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  width: min(1180px, 100%);
  max-height: calc(100vh - 72px);
  overflow: hidden;
  background: #fff;
}

.sample-lightbox figure {
  position: relative;
  display: grid;
  min-height: 0;
  margin: 0;
  background: #080808;
}

.sample-lightbox img {
  width: 100%;
  height: 100%;
  max-height: calc(100vh - 72px);
  object-fit: contain;
}

.sample-lightbox.is-loading img {
  opacity: 0;
}

.sample-lightbox-loader {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 14px;
  color: #fff;
  background: #080808;
}

.sample-lightbox-loader[hidden] {
  display: none;
}

.sample-lightbox-loader span {
  width: 42px;
  height: 42px;
  border: 2px solid rgba(255, 255, 255, 0.28);
  border-top-color: #fff;
  border-radius: 50%;
  animation: sample-loader-spin 820ms linear infinite;
}

.sample-lightbox-loader strong {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.sample-lightbox-body {
  overflow-y: auto;
  padding: clamp(26px, 4vw, 46px);
}

.sample-lightbox-body h2 {
  margin: 0 0 24px;
  font-size: clamp(24px, 2.6vw, 34px);
}

.sample-lightbox-close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.94);
  cursor: pointer;
}

.sample-lightbox-close::before,
.sample-lightbox-close::after {
  position: absolute;
  top: 20px;
  left: 11px;
  width: 20px;
  height: 2px;
  background: #111;
  content: "";
}

.sample-lightbox-close::before {
  transform: rotate(45deg);
}

.sample-lightbox-close::after {
  transform: rotate(-45deg);
}

.site-footer {
  background: #050505;
  color: #fff;
}

.footer-inner {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  padding: 32px 0 26px;
}

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

.footer-columns section {
  display: grid;
  gap: 11px;
}

.footer-columns h2 {
  margin: 0 0 6px;
  color: #fff;
  font-size: 14px;
}

.footer-columns a,
.footer-bottom {
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

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

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

@media (max-width: 900px) {
  .global-bar {
    min-height: 58px;
  }

  .menu-toggle {
    display: block;
  }

  .global-nav {
    position: fixed;
    top: 58px;
    right: 0;
    left: 0;
    display: grid;
    gap: 0;
    padding: 10px 22px 24px;
    background: #fff;
    border-bottom: 1px solid var(--line);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .global-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .global-nav a {
    min-height: 48px;
  }

  .product-bar {
    display: block;
    min-height: 86px;
    padding: 10px 18px 0;
  }

  .product-title {
    display: block;
    padding-bottom: 8px;
  }

  .product-nav {
    align-items: stretch;
    gap: 20px;
    overflow-x: auto;
    padding-bottom: 9px;
    scrollbar-width: none;
  }

  .product-nav::-webkit-scrollbar {
    display: none;
  }

  .feature-submenu {
    display: none;
  }

  .feature-page-nav {
    top: 86px;
    justify-content: flex-start;
    gap: 24px;
    overflow-x: auto;
    padding-bottom: 0;
    scrollbar-width: none;
  }

  .feature-page-nav::-webkit-scrollbar {
    display: none;
  }

  .history-grid,
  .color-layout,
  .info-box,
  .design-part-list {
    grid-template-columns: 1fr;
  }

  .sample-head {
    align-items: start;
  }

  .sample-showcase {
    gap: 0;
    margin-inline: 0;
    padding-inline: 0;
    scroll-snap-type: x mandatory;
  }

  .sample-card,
  .sample-card-wide,
  .sample-card-tall {
    flex: 0 0 100%;
    height: 260px;
    scroll-snap-align: start;
  }

  .scroll-indicator-track {
    gap: 8px;
  }

  .scroll-indicator-dot {
    width: 30px;
  }

  .scroll-indicator-dot.is-active {
    width: 42px;
  }

  .pen-feature-hero-body {
    bottom: 36px;
    left: 24px;
    padding: 22px 24px;
  }

  .pen-photo-grid {
    grid-template-columns: 1fr;
  }

  .pen-info-grid {
    grid-template-columns: 1fr;
  }

  .pen-info-grid-3,
  .pen-scene-grid,
  .pen-app-feature,
  .pen-experience-card-nav {
    grid-template-columns: 1fr;
  }

  .pen-info-card p {
    min-height: 0;
  }

  .pen-multiple-exposure-grid img {
    height: auto;
  }

  .pen-multiple-exposure-grid {
    grid-template-columns: 1fr;
  }

  .pen-live-nd-grid {
    grid-template-columns: 1fr;
  }

  .pen-media-row,
  .pen-media-row-narrow {
    grid-template-columns: 1fr;
  }

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

  .sample-lightbox-panel {
    grid-template-columns: 1fr;
    overflow-y: auto;
  }

  .sample-lightbox-body {
    display: none;
  }

  .sample-lightbox img {
    max-height: calc(100vh - 72px);
  }
}

@media (max-width: 600px) {
  .hero-slider {
    min-height: 0;
    aspect-ratio: 1680 / 940;
  }

  .slide-body {
    padding: 20px;
  }

  .slide-body p {
    margin: 0;
  }

  .slide-body h1 {
    display: none;
  }

  .section {
    padding-block: 54px;
  }

  .history-grid {
    gap: 12px;
  }

  .feature-card {
    min-height: 390px;
  }

  .feature-body {
    left: 18px;
    top: auto;
    bottom: 28px;
  }

  .pen-feature-hero-body {
    bottom: 22px;
    left: 18px;
    width: calc(100% - 36px);
  }

  .pen-feature-inner,
  .pen-feature-inner-narrow {
    width: 100%;
  }

  .pen-feature-intro,
  .pen-feature-section {
    padding-right: 18px;
    padding-left: 18px;
  }

  .sample-page-inner {
    width: calc(100% - 24px);
  }

  .spec-page-inner {
    width: calc(100% - 24px);
  }

  .pen-accessory-section {
    width: calc(100% - 32px);
    padding-block: 32px;
  }

  .pen-accessory-track {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .pen-accessory-card {
    border-radius: 12px;
  }

  .design-inner {
    width: calc(100% - 28px);
  }

  .pen-letter-gallery {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 4px;
    width: min(420px, 100%);
    margin: 0 auto;
  }

  .pen-letter-gallery .pen-letter-cell {
    order: var(--mobile-order, 999);
  }

  .pen-letter-gallery .pen-letter-gap {
    display: none;
  }

  .pen-letter-gallery .pen-letter-block-start {
    margin-top: 22px;
  }

  .pen-sample-tile span {
    display: none;
  }

  .sample-detail-list {
    grid-template-columns: 1fr;
  }

  .sample-spec-list div {
    grid-template-columns: 84px 1fr;
  }

  .pen-feature-table,
  .pen-feature-table tbody,
  .pen-feature-table tr,
  .pen-feature-table th,
  .pen-feature-table td {
    display: block;
    width: 100%;
  }

  .pen-feature-table th {
    border-bottom: 0;
  }

  .lens-spec-table,
  .lens-spec-table tbody,
  .lens-spec-table tr,
  .lens-spec-table th,
  .lens-spec-table td {
    display: block;
    width: 100%;
  }

  .lens-spec-table th {
    border-bottom: 0;
  }

  .lens-spec-table td {
    padding-top: 0;
  }

  .pen-app-logo {
    width: min(330px, 78%);
  }

  .pen-experience-opening-grid img {
    height: auto;
    object-fit: contain;
  }

  .pen-experience-preview-grid figcaption {
    min-height: 0;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}
