:root {
  --bg: #10182e;
  --bg-elevated: #162038;
  --bg-soft: #1a2540;
  --ink: #f4f6fb;
  --muted: #9aa6c0;
  --line: rgba(244, 246, 251, 0.12);
  --accent: #6ea0ff;
  --accent-deep: #4d7fe0;
  --white: #ffffff;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  --radius: 2px;
  --font-display: "Figtree", system-ui, sans-serif;
  --font-body: "Figtree", system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background:
    radial-gradient(1000px 520px at 85% -5%, rgba(110, 160, 255, 0.16), transparent 55%),
    radial-gradient(800px 480px at 10% 20%, rgba(255, 255, 255, 0.04), transparent 50%),
    linear-gradient(180deg, #0d1428 0%, var(--bg) 35%, #0c1324 100%);
  line-height: 1.55;
  min-height: 100vh;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin: 0 0 0.6rem;
  color: var(--white);
}

h1 {
  font-size: clamp(2.15rem, 5vw, 3.4rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  max-width: 14ch;
  line-height: 1.12;
}

h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
}

h3 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
}

p {
  margin: 0 0 1rem;
}

.shell {
  width: min(1120px, calc(100% - 2.5rem));
  margin-inline: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  background: var(--white);
  color: var(--bg);
  padding: 0.6rem 1rem;
  z-index: 100;
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(16px);
  background: rgba(16, 24, 46, 0.78);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}

.site-header.is-scrolled {
  border-bottom-color: var(--line);
  background: rgba(16, 24, 46, 0.92);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 5rem;
  gap: 1rem;
  padding-block: 0.25rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.brand-logo {
  width: auto;
  height: 3.75rem;
  object-fit: contain;
  background: transparent;
}

@media (min-width: 760px) {
  .brand-logo {
    height: 4.25rem;
  }
}

.brand-lockup img,
.footer-brand img {
  background: transparent;
}

.brand-text {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.92rem;
}

.nav {
  display: none;
  align-items: center;
  gap: 1.5rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--muted);
}

.nav a:hover {
  color: var(--white);
}

.nav-cta {
  color: var(--bg) !important;
  background: var(--white);
  padding: 0.55rem 0.95rem;
  border-radius: var(--radius);
  font-weight: 600;
}

.nav-cta:hover {
  background: #dbe4ff;
}

.nav-toggle {
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid var(--line);
  background: var(--bg-elevated);
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.35rem;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 1.1rem;
  height: 2px;
  background: var(--white);
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0.5rem 1.25rem 1.25rem;
  border-bottom: 1px solid var(--line);
  background: var(--bg-elevated);
}

.mobile-nav a {
  padding: 0.75rem 0.25rem;
  font-weight: 600;
}

.mobile-nav[hidden] {
  display: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-height: 2.85rem;
  padding: 0.7rem 1.15rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid transparent;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease),
    border-color 0.25s var(--ease);
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--white);
  color: var(--bg);
}

.btn-primary:hover {
  background: #dbe4ff;
}

.btn-ghost {
  background: transparent;
  border-color: var(--line);
  color: var(--ink);
}

.btn-ghost:hover {
  border-color: rgba(244, 246, 251, 0.35);
  background: rgba(255, 255, 255, 0.04);
}

.hero {
  position: relative;
  min-height: calc(100vh - 5rem);
  display: grid;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}

.hero-visual {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(16, 24, 46, 0.96) 0%, rgba(16, 24, 46, 0.72) 45%, rgba(16, 24, 46, 0.25) 75%),
    linear-gradient(180deg, transparent 50%, rgba(8, 12, 24, 0.75) 100%),
    radial-gradient(ellipse at 72% 42%, #24355a, #10182e 55%, #070b16 100%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(90deg, transparent, #000 35%, #000 100%);
  opacity: 0.4;
}

.hero-glow {
  position: absolute;
  width: 42vw;
  height: 42vw;
  right: 6%;
  top: 12%;
  background: radial-gradient(circle, rgba(110, 160, 255, 0.28), transparent 65%);
  filter: blur(10px);
  animation: drift 10s ease-in-out infinite alternate;
}

.pillar {
  position: absolute;
  bottom: 0;
  width: clamp(64px, 8vw, 110px);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.28), rgba(22, 32, 56, 0.95));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
  transform-origin: bottom center;
  animation: rise 1.1s var(--ease) both;
}

.pillar::before {
  content: "";
  position: absolute;
  left: -12%;
  right: -12%;
  top: 0;
  height: 18px;
  background: rgba(255, 255, 255, 0.28);
}

.p1 {
  right: 38%;
  height: 58%;
  animation-delay: 0.05s;
}

.p2 {
  right: 26%;
  height: 78%;
  animation-delay: 0.18s;
  width: clamp(78px, 9.5vw, 130px);
}

.p3 {
  right: 12%;
  height: 66%;
  animation-delay: 0.3s;
}

.hero-copy {
  padding: 3rem 0 4rem;
  animation: fade-up 0.9s var(--ease) both;
}

.brand-lockup {
  display: flex;
  align-items: center;
  margin-bottom: 1.85rem;
}

.brand-lockup img {
  height: clamp(11rem, 28vw, 18rem);
  width: auto;
}

.lede {
  max-width: 36rem;
  font-size: clamp(1.08rem, 1.6vw, 1.22rem);
  color: var(--muted);
  line-height: 1.6;
}

.hero-actions,
.product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.section {
  padding: 5.5rem 0;
}

.section-head {
  max-width: 38rem;
  margin-bottom: 2.75rem;
}

.section-head p,
.product-meta > p,
.band p,
.cta-box p,
.prose p {
  color: var(--muted);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 0.55rem;
}

.product-list {
  display: grid;
  gap: 1.5rem;
}

.product-row {
  display: grid;
  gap: 1.25rem;
  padding: 1.5rem;
  background: rgba(22, 32, 56, 0.72);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.product-meta {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.product-panel {
  min-height: 240px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(145deg, #1c2a4a, #0d1426 55%, #0a1020);
  color: var(--white);
  padding: 1.5rem;
  position: relative;
  overflow: hidden;
}

.panel-label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.35rem;
  margin-bottom: 1.25rem;
}

.securex-panel ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.7rem;
}

.securex-panel li {
  padding: 0.75rem 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  font-size: 0.95rem;
}

.securex-panel::after {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  right: -40px;
  bottom: -50px;
  border: 24px solid rgba(110, 160, 255, 0.18);
  border-radius: 50%;
}

.phoneos-panel {
  display: grid;
  place-items: center;
}

.phone-frame {
  width: 150px;
  height: 260px;
  border-radius: 22px;
  border: 2px solid rgba(255, 255, 255, 0.28);
  background: linear-gradient(180deg, #152038, #0a1020);
  padding: 0.85rem 0.7rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.45);
  animation: floaty 5s ease-in-out infinite;
  position: relative;
  display: flex;
  flex-direction: column;
}

.phone-notch {
  width: 42%;
  height: 8px;
  margin: 0 auto 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
}

.phone-apps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.65rem;
  padding: 0.2rem;
}

.phone-apps span {
  aspect-ratio: 1;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.phone-apps span:nth-child(1) {
  background: rgba(110, 160, 255, 0.55);
}

.phone-apps span:nth-child(3) {
  background: rgba(61, 90, 128, 0.9);
}

.phone-dock {
  margin-top: auto;
  height: 36px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  position: absolute;
  left: 1.35rem;
  right: 1.35rem;
  bottom: 1.1rem;
}

.more-note {
  margin-top: 1.75rem;
  padding: 1.25rem 1.4rem;
  border-left: 3px solid var(--accent);
  background: rgba(22, 32, 56, 0.65);
}

.more-note p {
  margin: 0;
  color: var(--muted);
}

.more-note strong {
  color: var(--white);
}

.band {
  background: linear-gradient(135deg, #152038, #0d1426 60%, #090e1c);
  color: var(--white);
  border-block: 1px solid var(--line);
}

.band p,
.band .stat-list li {
  color: var(--muted);
}

.band-grid {
  display: grid;
  gap: 2rem;
}

.stat-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}

.stat-list li {
  display: grid;
  gap: 0.2rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.stat-list span {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
}

.cta-section {
  padding-top: 4rem;
  padding-bottom: 5rem;
}

.cta-box {
  padding: 2.5rem 1.75rem;
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  text-align: center;
}

.cta-box p {
  max-width: 32rem;
  margin-inline: auto;
  margin-bottom: 1.5rem;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 2.5rem 0 3rem;
  background: rgba(9, 14, 28, 0.7);
}

.footer-inner {
  display: grid;
  gap: 1.25rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-brand img {
  height: 4.25rem;
  width: auto;
}

.footer-note,
.legal {
  color: var(--muted);
  font-size: 0.92rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-weight: 600;
}

.page-hero {
  padding: 5.5rem 0 2.5rem;
}

.page-hero h1 {
  max-width: 14ch;
}

.prose {
  max-width: 40rem;
  padding-bottom: 4rem;
}

.prose h2 {
  margin-top: 2.5rem;
}

.feature-list {
  margin: 1.25rem 0 2rem;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.75rem;
}

.feature-list li {
  padding: 0.95rem 1rem;
  background: rgba(22, 32, 56, 0.72);
  border: 1px solid var(--line);
}

.buy-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  margin: 1.75rem 0 2.5rem;
  padding: 1.1rem;
  background: rgba(22, 32, 56, 0.72);
  border: 1px solid var(--line);
}

.price-hint {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.product-grid {
  display: grid;
  gap: 1.15rem;
  grid-template-columns: 1fr;
}

.product-grid-cards .product-card {
  display: grid;
  gap: 1rem;
  padding: 1.25rem;
  background: rgba(255, 252, 248, 0.04);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.product-grid-cards .product-meta h2 {
  font-size: 1.65rem;
}

.product-grid-cards .product-meta > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 0.98rem;
}

.product-grid-cards .product-panel {
  min-height: 200px;
}

.product-grid-cards .phoneos-panel {
  display: grid;
  place-items: center;
  gap: 0.75rem;
}

.product-grid-cards .phoneos-panel .panel-label {
  position: absolute;
  top: 1rem;
  left: 1.1rem;
  margin: 0;
}

.product-grid-cards .phoneos-panel .phone-frame {
  width: 118px;
  height: 210px;
  animation: none;
}

.product-tile {
  display: grid;
  grid-template-rows: auto 1fr;
  border: 1px solid var(--line);
  background: rgba(22, 32, 56, 0.55);
  overflow: hidden;
  transition: transform 0.25s var(--ease), border-color 0.25s var(--ease), background 0.25s var(--ease);
}

.product-tile:hover {
  transform: translateY(-3px);
  border-color: rgba(244, 246, 251, 0.28);
  background: rgba(26, 37, 64, 0.85);
}

.tile-visual {
  min-height: 9.5rem;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.tile-securex {
  background:
    radial-gradient(circle at 70% 30%, rgba(110, 160, 255, 0.28), transparent 55%),
    linear-gradient(145deg, #1c2a4a, #0d1426);
}

.tile-phoneos {
  background:
    radial-gradient(circle at 30% 70%, rgba(184, 160, 90, 0.18), transparent 50%),
    linear-gradient(145deg, #182338, #0c1222);
}

.tile-mark {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2.4rem;
  letter-spacing: -0.04em;
  color: rgba(255, 255, 255, 0.88);
}

.tile-body {
  padding: 1.25rem 1.3rem 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.tile-body h2 {
  font-size: 1.55rem;
  margin: 0;
}

.tile-body p:not(.eyebrow) {
  color: var(--muted);
  margin: 0 0 0.75rem;
  font-size: 0.98rem;
}

.tile-cta {
  margin-top: auto;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--white);
}

.product-tile:hover .tile-cta {
  color: var(--accent);
}

.catalog-divider {
  margin: 2.25rem 0 1.1rem;
}

.catalog-divider h3 {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
}

.product-row.flagship {
  margin-bottom: 0.25rem;
}

.flagship-shot {
  padding: 0 !important;
  min-height: auto !important;
  display: flex;
  align-items: center;
  background: #0a0e1c !important;
}

.flagship-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.product-grid-small {
  grid-template-columns: 1fr;
}

.product-grid-small .phone-frame.compact {
  width: 88px;
  height: 158px;
  animation: none;
  border-radius: 16px;
}

.product-grid-small .tile-visual {
  min-height: 11rem;
}

.product-showcase {
  padding: 2.5rem 0 1rem;
}

.showcase-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.showcase-copy h1 {
  max-width: 10ch;
}

.showcase-points {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
  color: var(--muted);
}

.showcase-points li {
  padding-left: 1rem;
  border-left: 2px solid var(--accent);
}

.panel-shot {
  margin: 0;
  overflow: hidden;
  border-radius: 10px;
  background: #0b0b0f;
  box-shadow: var(--shadow);
}

.panel-shot img {
  width: 100%;
  height: auto;
  display: block;
}

.slideshow {
  max-width: 980px;
}

.slideshow-viewport {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 12px;
  background: #0b0b0f;
  box-shadow: var(--shadow);
}

.slideshow-track {
  position: absolute;
  inset: 0;
}

.slideshow-slide {
  position: absolute;
  inset: 0;
  margin: 0;
  display: grid;
  place-items: center;
  opacity: 0;
  transform: translateX(18px);
  transition: opacity 0.55s var(--ease), transform 0.55s var(--ease);
  pointer-events: none;
}

.slideshow-slide.is-active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

.slideshow-slide img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

.slideshow-slide figcaption {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.slideshow-ui {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 0.9rem;
}

.slideshow-label {
  margin: 0;
  font-weight: 600;
  color: var(--white);
  text-align: center;
}

.slideshow-btn {
  border: 1px solid var(--line);
  background: rgba(22, 32, 56, 0.7);
  color: var(--white);
  min-height: 2.4rem;
  padding: 0.4rem 0.9rem;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
}

.slideshow-btn:hover {
  border-color: rgba(244, 246, 251, 0.35);
}

.slideshow-dots {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.4rem;
  margin-top: 0.85rem;
}

.slideshow-dot {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 999px;
  border: 0;
  padding: 0;
  background: rgba(244, 246, 251, 0.28);
  cursor: pointer;
}

.slideshow-dot.is-active {
  background: var(--accent);
  width: 1.15rem;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 1.25rem;
  background: rgba(6, 10, 20, 0.88);
  backdrop-filter: blur(8px);
}

.lightbox[hidden] {
  display: none !important;
}

body.lightbox-open {
  overflow: hidden;
}

.lightbox img {
  max-width: min(1200px, 96vw);
  max-height: 86vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.55);
}

.lightbox-caption {
  position: absolute;
  left: 50%;
  bottom: 1.1rem;
  transform: translateX(-50%);
  margin: 0;
  color: var(--white);
  font-weight: 600;
}

.lightbox-close,
.lightbox-nav {
  position: absolute;
  border: 1px solid var(--line);
  background: rgba(22, 32, 56, 0.9);
  color: var(--white);
  font: inherit;
  font-weight: 600;
  cursor: pointer;
  min-height: 2.5rem;
  padding: 0.45rem 0.9rem;
}

.lightbox-close {
  top: 1rem;
  right: 1rem;
}

.lightbox-prev {
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-next {
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
}

.feature-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

.feature-grid article {
  padding: 1.2rem 1.25rem;
  border: 1px solid var(--line);
  background: rgba(22, 32, 56, 0.55);
}

.feature-grid h3 {
  font-size: 1.15rem;
  margin-bottom: 0.4rem;
}

.feature-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
}

.gallery-section {
  background: rgba(9, 14, 28, 0.45);
  border-block: 1px solid var(--line);
}

.shot-gallery {
  display: grid;
  gap: 1.1rem;
  grid-template-columns: 1fr;
}

.shot-tall {
  display: flex;
  flex-direction: column;
}

.shot-tall img {
  max-height: 420px;
  width: auto;
  margin-inline: auto;
  object-fit: contain;
}

@keyframes rise {
  from {
    transform: scaleY(0.2);
    opacity: 0;
  }
  to {
    transform: scaleY(1);
    opacity: 1;
  }
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes drift {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-18px, 22px, 0);
  }
}

@keyframes floaty {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@media (min-width: 760px) {
  .nav {
    display: flex;
  }

  .nav-toggle,
  .mobile-nav {
    display: none !important;
  }

  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.35rem;
  }

  .product-grid-small {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: 920px;
  }

  .product-grid-cards .product-card {
    grid-template-rows: auto 1fr;
    padding: 1.35rem;
    gap: 1.1rem;
  }

  .product-row {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: stretch;
    padding: 1.75rem;
    gap: 1.75rem;
  }

  .product-row.reverse .product-meta {
    order: 2;
  }

  .product-row.reverse .product-panel {
    order: 1;
  }

  .band-grid {
    grid-template-columns: 1.2fr 0.8fr;
    align-items: end;
  }

  .footer-inner {
    grid-template-columns: 1.2fr 1fr;
    align-items: start;
  }

  .legal {
    grid-column: 1 / -1;
  }

  .cta-box {
    padding: 3rem;
  }

  .showcase-grid {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 2.5rem;
  }

  .feature-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .shot-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}
