:root {
  --black: #030607;
  --night: #071215;
  --deep: #00343d;
  --text: #f5f7f7;
  --muted: rgba(245, 247, 247, 0.66);
  --line: rgba(255, 255, 255, 0.12);
  --cyan: #42dcef;
  --paper: #f3f5f5;
  --ink: #071014;
  font-family: Inter, "SF Pro Display", "SF Pro Text", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--black);
  scroll-behavior: smooth;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--black);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

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

h1,
h2,
p {
  margin: 0;
}

h1,
h2 {
  max-width: 920px;
  font-weight: 300;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  font-size: clamp(68px, 10vw, 168px);
  line-height: 0.86;
}

h2 {
  font-size: clamp(42px, 6.7vw, 112px);
  line-height: 0.92;
}

p {
  font-size: clamp(18px, 2vw, 28px);
  line-height: 1.3;
  color: var(--muted);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 30px;
  padding: 28px clamp(22px, 4vw, 66px);
  color: var(--text);
  transition: background 220ms ease, padding 220ms ease, border-color 220ms ease;
}

.site-header.is-scrolled {
  padding-top: 16px;
  padding-bottom: 16px;
  background: rgba(3, 6, 7, 0.74);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(20px);
}

.brand {
  justify-self: start;
  font-size: clamp(18px, 2vw, 28px);
  font-weight: 760;
  letter-spacing: 0.22em;
}

.nav {
  display: flex;
  gap: clamp(20px, 3vw, 52px);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.68);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.nav a:hover {
  color: var(--text);
}

.nav a[aria-current="page"] {
  color: var(--text);
}

.header-buy {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 112px;
  min-height: 42px;
  padding: 0 22px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: rgba(255, 255, 255, 0.06);
}

.menu-button {
  display: none;
  justify-self: end;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
}

.menu-button span {
  display: block;
  width: 16px;
  height: 1px;
  margin: 5px auto;
  background: var(--text);
}

.hero,
.detail,
.final {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: var(--black);
}

.hero-media,
.detail-media,
.final-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image,
.detail-media img,
.final-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-image {
  object-position: 66% 50%;
  transform: translate3d(var(--hero-x, 0), var(--hero-y, 0), 0) scale(1.035);
  transition: transform 260ms ease-out;
  will-change: transform;
}

.hero-shade,
.final::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(3, 6, 7, 0.92), rgba(3, 6, 7, 0.52) 38%, rgba(3, 6, 7, 0.06) 68%),
    linear-gradient(180deg, rgba(3, 6, 7, 0.52), transparent 42%, rgba(3, 6, 7, 0.78));
}

.hero-glint {
  position: absolute;
  top: 0;
  bottom: 0;
  left: -30%;
  z-index: 1;
  width: 26%;
  background: linear-gradient(105deg, transparent, rgba(255, 255, 255, 0.13), transparent);
  filter: blur(10px);
  transform: skewX(-18deg);
  animation: lensGlint 7s ease-in-out infinite;
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  width: min(760px, calc(100vw - 44px));
  min-height: 100vh;
  padding: 120px 0 110px clamp(22px, 4vw, 66px);
}

.hero-copy p {
  max-width: 560px;
  margin-top: 28px;
}

.hero-price {
  margin-top: 42px;
  font-size: clamp(30px, 4vw, 58px);
  line-height: 1;
  font-weight: 520;
}

.hero-action {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 30px;
}

.hero-action span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 170px;
  min-height: 54px;
  padding: 0 34px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 780;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  transition: transform 180ms ease, background 180ms ease;
}

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

.button-light {
  color: var(--black);
  background: var(--text);
}

.hero-bottom {
  position: absolute;
  right: clamp(22px, 4vw, 66px);
  bottom: 32px;
  z-index: 2;
  display: flex;
  gap: 18px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.hero-bottom span + span::before {
  content: "/";
  margin-right: 18px;
  color: rgba(255, 255, 255, 0.28);
}

.proof-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #050808;
}

.proof-item {
  min-height: 132px;
  padding: 26px clamp(18px, 3vw, 42px);
  border-right: 1px solid var(--line);
}

.proof-item:last-child {
  border-right: 0;
}

.proof-item strong {
  display: block;
  font-size: clamp(28px, 3.5vw, 58px);
  line-height: 0.96;
  font-weight: 360;
  text-transform: uppercase;
}

.proof-item span {
  display: block;
  max-width: 190px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  line-height: 1.35;
  text-transform: uppercase;
  letter-spacing: 0.11em;
}

.section-kicker {
  margin-bottom: 24px;
  color: rgba(66, 220, 239, 0.78);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.pov {
  padding: clamp(74px, 9vw, 140px) 0 0;
  background: #050808;
}

.pov-copy {
  padding: 0 clamp(22px, 4vw, 66px) clamp(38px, 5vw, 74px);
}

.pov-copy h2 {
  max-width: 980px;
  font-size: clamp(42px, 7vw, 104px);
}

.pov-strip {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.pov-strip picture,
.privacy-media picture,
.kit-shot picture {
  display: block;
  width: 100%;
  height: 100%;
}

.pov-strip img {
  width: 100%;
  min-height: 430px;
  object-fit: cover;
}

.pov-labels {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  text-align: center;
  font-size: clamp(26px, 3.3vw, 58px);
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.pov-labels span {
  text-shadow: 0 16px 40px rgba(0, 0, 0, 0.8);
}

.shoot-anything {
  display: flex;
  gap: clamp(18px, 4vw, 70px);
  overflow: hidden;
  padding: 28px clamp(22px, 4vw, 66px);
  border-bottom: 1px solid var(--line);
  color: rgba(255, 255, 255, 0.62);
  font-size: clamp(14px, 1.5vw, 21px);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  white-space: nowrap;
}

.shoot-anything span {
  flex: 0 0 auto;
}

.how {
  padding: clamp(78px, 10vw, 150px) clamp(22px, 4vw, 66px);
  background:
    linear-gradient(180deg, #050808, #081316),
    radial-gradient(circle at 18% 20%, rgba(66, 220, 239, 0.1), transparent 36%);
}

.how h2 {
  max-width: 980px;
}

.step-grid,
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: clamp(42px, 6vw, 82px);
  border: 1px solid var(--line);
  background: var(--line);
}

.step-card,
.why-card {
  min-height: 290px;
  padding: clamp(22px, 3vw, 38px);
  background: #071215;
}

.step-card span,
.why-card span {
  display: block;
  color: rgba(66, 220, 239, 0.62);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.step-card strong,
.why-card strong {
  display: block;
  max-width: 360px;
  margin-top: 52px;
  font-size: clamp(24px, 2.5vw, 42px);
  line-height: 1;
  font-weight: 360;
  text-transform: uppercase;
}

.step-card p,
.why-card p {
  max-width: 360px;
  margin-top: 22px;
  font-size: 15px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.58);
}

.detail {
  min-height: 112vh;
}

.detail::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.14), rgba(0, 0, 0, 0.48));
}

.detail-copy {
  position: absolute;
  top: clamp(86px, 10vw, 150px);
  left: clamp(22px, 4vw, 66px);
  z-index: 2;
}

.detail-copy h2 {
  max-width: 720px;
  font-size: clamp(38px, 5.8vw, 88px);
}

.spec {
  position: absolute;
  z-index: 2;
  padding: 11px 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(14px);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.11em;
}

.spec-one {
  top: 48%;
  left: 44%;
}

.spec-two {
  top: 34%;
  left: 14%;
}

.spec-three {
  bottom: 18%;
  left: 36%;
}

.spec-four {
  right: 8%;
  bottom: 14%;
}

.specs-section {
  padding: clamp(78px, 10vw, 148px) clamp(22px, 4vw, 66px);
  color: var(--ink);
  background: var(--paper);
}

.specs-section .section-kicker {
  color: rgba(7, 16, 20, 0.48);
}

.specs-head {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(280px, 0.55fr);
  gap: clamp(24px, 5vw, 88px);
  align-items: end;
}

.specs-head h2 {
  color: var(--ink);
}

.specs-head p {
  color: rgba(7, 16, 20, 0.58);
  font-size: clamp(17px, 1.8vw, 24px);
}

.specs-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: clamp(42px, 6vw, 80px);
  border-top: 1px solid rgba(7, 16, 20, 0.18);
}

.spec-line {
  display: grid;
  grid-template-columns: minmax(120px, 0.42fr) minmax(180px, 1fr);
  gap: 18px;
  min-height: 84px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(7, 16, 20, 0.18);
}

.spec-line:nth-child(odd) {
  padding-right: clamp(18px, 4vw, 60px);
}

.spec-line span {
  color: rgba(7, 16, 20, 0.46);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.13em;
}

.spec-line strong {
  color: var(--ink);
  font-size: clamp(17px, 1.7vw, 24px);
  line-height: 1.15;
  font-weight: 420;
  text-transform: uppercase;
}

.privacy {
  display: grid;
  grid-template-columns: minmax(320px, 0.78fr) minmax(360px, 1fr);
  gap: clamp(30px, 6vw, 110px);
  align-items: center;
  padding: clamp(80px, 10vw, 154px) clamp(22px, 4vw, 66px);
  background:
    radial-gradient(circle at 80% 20%, rgba(66, 220, 239, 0.12), transparent 35%),
    linear-gradient(135deg, #050808, #0a1c22);
}

.privacy-copy h2 {
  max-width: 680px;
}

.privacy-copy p {
  max-width: 520px;
  margin-top: 30px;
}

.privacy-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 40px;
}

.privacy-points span {
  padding: 10px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.privacy-media {
  overflow: hidden;
  border-radius: 0;
  box-shadow: 0 50px 120px rgba(0, 0, 0, 0.38);
}

.privacy-media img {
  width: 100%;
  height: min(720px, 62vw);
  object-fit: cover;
}

.models {
  display: grid;
  grid-template-columns: minmax(320px, 0.56fr) minmax(420px, 1fr);
  gap: clamp(28px, 6vw, 100px);
  align-items: center;
  padding: clamp(74px, 9vw, 142px) clamp(22px, 4vw, 66px);
  color: var(--ink);
  background: var(--paper);
}

.models h2 {
  color: var(--ink);
}

.model-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  max-width: 460px;
  margin-top: 44px;
}

.model-card {
  min-height: 168px;
  padding: 22px;
  color: var(--text);
  background: #121719;
  transition: transform 180ms ease;
}

.model-card:hover {
  transform: translateY(-3px);
}

.model-card span,
.model-card small,
.model-card em {
  display: block;
  color: rgba(255, 255, 255, 0.56);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.model-card em {
  max-width: 170px;
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.72);
  font-style: normal;
  line-height: 1.35;
}

.model-card strong {
  display: block;
  margin-top: 54px;
  font-size: 25px;
  font-weight: 520;
}

.model-card small {
  margin-top: 12px;
  color: var(--cyan);
}

.is-pro {
  background: linear-gradient(135deg, #121719, #243035);
}

.kit-shot {
  align-self: stretch;
  display: grid;
  align-content: end;
  overflow: hidden;
  background: #e8ecec;
}

.kit-shot img {
  width: 100%;
  height: 100%;
  min-height: 440px;
  object-fit: cover;
}

.kit-caption {
  margin-top: -96px;
  padding: 0 30px 30px;
}

.kit-caption span {
  display: block;
  margin-bottom: 10px;
  color: rgba(7, 16, 20, 0.56);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.kit-caption p {
  color: rgba(7, 16, 20, 0.72);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.trust {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #050808;
}

.trust span {
  position: relative;
  min-height: 106px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  border-right: 1px solid var(--line);
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  text-align: center;
}

.trust span::before {
  content: "MADELAWE /";
  position: absolute;
  top: 18px;
  left: 18px;
  color: rgba(66, 220, 239, 0.36);
  font-size: 9px;
  letter-spacing: 0.14em;
}

.trust span:last-child {
  border-right: 0;
}

.reviews-proof {
  padding: clamp(78px, 10vw, 150px) clamp(22px, 4vw, 66px);
  color: var(--ink);
  background: var(--paper);
}

.reviews-proof .section-kicker {
  color: rgba(7, 16, 20, 0.48);
}

.reviews-head {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(280px, 0.56fr);
  gap: clamp(24px, 5vw, 88px);
  align-items: end;
}

.reviews-head h2 {
  color: var(--ink);
}

.reviews-head p {
  color: rgba(7, 16, 20, 0.62);
  font-size: clamp(18px, 2vw, 27px);
}

.review-scoreboard {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: clamp(34px, 5vw, 68px);
  border: 1px solid rgba(7, 16, 20, 0.18);
  background: rgba(7, 16, 20, 0.18);
}

.review-scoreboard div {
  min-height: 132px;
  padding: 24px;
  background: #e8ecec;
}

.review-scoreboard strong {
  display: block;
  color: var(--ink);
  font-size: clamp(34px, 5vw, 72px);
  line-height: 0.9;
  font-weight: 320;
}

.review-scoreboard span {
  display: block;
  margin-top: 18px;
  color: rgba(7, 16, 20, 0.54);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 1px;
  background: rgba(7, 16, 20, 0.18);
  border: 1px solid rgba(7, 16, 20, 0.18);
  border-top: 0;
}

.review-card {
  min-height: 270px;
  margin: 0;
  padding: clamp(24px, 3vw, 38px);
  background: #e8ecec;
}

.review-card blockquote {
  margin: 0;
  color: var(--ink);
  font-size: clamp(22px, 2.4vw, 36px);
  line-height: 1.05;
  font-weight: 340;
  text-transform: uppercase;
}

.review-card figcaption {
  margin-top: 34px;
  color: rgba(7, 16, 20, 0.48);
  font-size: 11px;
  font-weight: 780;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.review-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.review-tags span {
  padding: 10px 13px;
  border: 1px solid rgba(7, 16, 20, 0.18);
  border-radius: 999px;
  color: rgba(7, 16, 20, 0.58);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.review-insights {
  display: grid;
  grid-template-columns: minmax(180px, 0.24fr) minmax(0, 1fr);
  gap: 24px;
  margin-top: 24px;
  padding: 22px 0 0;
  border-top: 1px solid rgba(7, 16, 20, 0.18);
}

.review-insights > span {
  color: rgba(7, 16, 20, 0.46);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.review-insights div {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.review-insights strong {
  padding: 11px 14px;
  color: var(--ink);
  background: rgba(7, 16, 20, 0.07);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.why {
  padding: clamp(78px, 10vw, 152px) clamp(22px, 4vw, 66px);
  background: #050808;
}

.why h2 {
  max-width: 1050px;
}

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

.why-card {
  min-height: 340px;
  background: #071114;
}

.why-card strong {
  margin-top: 74px;
  font-size: clamp(21px, 2vw, 34px);
}

.market-proof {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(260px, 420px);
  gap: clamp(24px, 5vw, 86px);
  align-items: stretch;
  padding: clamp(72px, 9vw, 128px) clamp(22px, 4vw, 66px);
  color: var(--ink);
  background: #e8ecec;
}

.market-copy {
  align-self: center;
}

.market-copy > span {
  display: block;
  margin-bottom: 24px;
  color: rgba(7, 16, 20, 0.48);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.market-copy h2 {
  color: var(--ink);
  max-width: 780px;
}

.market-copy p {
  max-width: 620px;
  margin-top: 28px;
  color: rgba(7, 16, 20, 0.62);
  font-size: clamp(18px, 2vw, 27px);
}

.market-card {
  display: flex;
  min-height: 320px;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(24px, 4vw, 42px);
  color: var(--text);
  background: linear-gradient(135deg, #071114, #203037);
  transition: transform 180ms ease;
}

.market-card:hover {
  transform: translateY(-3px);
}

.market-card strong {
  font-size: clamp(54px, 7vw, 96px);
  line-height: 0.9;
  font-weight: 320;
}

.market-card span {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.13em;
}

.market-card small {
  margin-top: 42px;
  color: var(--cyan);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.seo-page {
  background: #030607;
}

.seo-hero {
  position: relative;
  min-height: 86vh;
  overflow: hidden;
  background: var(--black);
}

.seo-hero-media {
  position: absolute;
  inset: 0;
}

.seo-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 66% 50%;
  opacity: 0.74;
}

.seo-hero-copy {
  position: relative;
  z-index: 2;
  width: min(980px, calc(100vw - 44px));
  min-height: 86vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 126px 0 90px clamp(22px, 4vw, 66px);
}

.seo-hero-copy h1 {
  max-width: 980px;
  font-size: clamp(56px, 8vw, 132px);
}

.seo-hero-copy p {
  max-width: 680px;
  margin-top: 30px;
}

.seo-section {
  padding: clamp(76px, 10vw, 148px) clamp(22px, 4vw, 66px);
  background: #050808;
}

.seo-section-light {
  color: var(--ink);
  background: var(--paper);
}

.seo-section-light .section-kicker {
  color: rgba(7, 16, 20, 0.48);
}

.seo-section-title {
  max-width: 920px;
}

.seo-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.seo-card {
  min-height: 330px;
  padding: clamp(24px, 3vw, 40px);
  background: #071215;
}

.seo-card span {
  display: block;
  color: rgba(66, 220, 239, 0.62);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.seo-card h2 {
  max-width: 410px;
  margin-top: 62px;
  font-size: clamp(24px, 2.5vw, 42px);
  line-height: 1;
}

.seo-card p {
  max-width: 420px;
  margin-top: 22px;
  font-size: 15px;
  line-height: 1.45;
}

.seo-specs {
  margin-top: 0;
}

.faq-list {
  display: grid;
  gap: 1px;
  margin-top: clamp(38px, 5vw, 70px);
  border: 1px solid var(--line);
  background: var(--line);
}

.faq-item {
  background: #071215;
}

.faq-item summary {
  cursor: pointer;
  padding: 24px clamp(20px, 3vw, 34px);
  color: var(--text);
  font-size: clamp(18px, 2vw, 28px);
  line-height: 1.15;
  text-transform: uppercase;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  float: right;
  color: var(--cyan);
  font-weight: 300;
}

.faq-item[open] summary::after {
  content: "-";
}

.faq-item p {
  max-width: 820px;
  padding: 0 clamp(20px, 3vw, 34px) 28px;
  font-size: clamp(16px, 1.6vw, 21px);
  line-height: 1.45;
}

.seo-reviews {
  background: var(--paper);
}

.seo-related {
  display: grid;
  grid-template-columns: minmax(180px, 0.24fr) minmax(0, 1fr);
  gap: 24px;
  padding: 28px clamp(22px, 4vw, 66px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #050808;
}

.seo-related > span {
  color: rgba(66, 220, 239, 0.62);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.seo-related div {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.seo-related a {
  padding: 10px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.seo-related a:hover {
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.32);
}

.seo-final {
  min-height: 68vh;
}

.seo-final .final-copy {
  min-height: 68vh;
}

.article-index {
  background:
    radial-gradient(circle at 78% 18%, rgba(66, 220, 239, 0.1), transparent 34%),
    #050808;
}

.article-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: clamp(42px, 6vw, 82px);
  border: 1px solid var(--line);
  background: var(--line);
}

.article-card {
  min-height: 380px;
  padding: clamp(24px, 3vw, 40px);
  background: #071215;
  transition: transform 180ms ease, background 180ms ease;
}

.article-card:hover {
  transform: translateY(-3px);
  background: #0a171a;
}

.article-card span,
.article-aside span,
.article-chapter span {
  display: block;
  color: rgba(66, 220, 239, 0.62);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.article-card h2 {
  margin-top: 64px;
  font-size: clamp(25px, 2.8vw, 46px);
  line-height: 1;
}

.article-card p {
  max-width: 430px;
  margin-top: 22px;
  font-size: 15px;
  line-height: 1.45;
}

.article-hero .seo-hero-copy h1 {
  max-width: 1040px;
}

.article-body {
  padding: clamp(76px, 10vw, 150px) clamp(22px, 4vw, 66px);
  background: var(--paper);
  color: var(--ink);
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(220px, 0.34fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 100px);
  align-items: start;
}

.article-aside {
  position: sticky;
  top: 100px;
  padding-top: 6px;
}

.article-aside strong {
  display: block;
  margin-top: 34px;
  color: var(--ink);
  font-size: clamp(24px, 2.8vw, 42px);
  line-height: 1;
  font-weight: 360;
  text-transform: uppercase;
}

.article-aside p {
  margin-top: 22px;
  color: rgba(7, 16, 20, 0.6);
  font-size: 16px;
  line-height: 1.48;
}

.article-text {
  display: grid;
  gap: 1px;
  border: 1px solid rgba(7, 16, 20, 0.16);
  background: rgba(7, 16, 20, 0.16);
}

.article-chapter {
  padding: clamp(26px, 4vw, 48px);
  background: #e8ecec;
}

.article-chapter span {
  color: rgba(7, 16, 20, 0.42);
}

.article-chapter h2 {
  max-width: 780px;
  margin-top: 40px;
  color: var(--ink);
  font-size: clamp(30px, 4vw, 64px);
  line-height: 0.98;
}

.article-chapter p {
  max-width: 860px;
  margin-top: 24px;
  color: rgba(7, 16, 20, 0.66);
  font-size: clamp(17px, 1.8vw, 24px);
  line-height: 1.45;
}

.final {
  min-height: 76vh;
}

.final-media img {
  opacity: 0.7;
  object-position: 50% 64%;
}

.final-copy {
  position: relative;
  z-index: 2;
  min-height: 76vh;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(70px, 10vw, 130px) clamp(22px, 4vw, 66px);
}

.final-copy h2 {
  max-width: 780px;
}

.final-action {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 40px;
}

.final-action span {
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(18px, 2.3vw, 34px);
  font-weight: 300;
}

@keyframes lensGlint {
  0%,
  22% {
    opacity: 0;
    transform: translateX(0) skewX(-18deg);
  }
  34% {
    opacity: 1;
  }
  55% {
    opacity: 0;
    transform: translateX(540%) skewX(-18deg);
  }
  100% {
    opacity: 0;
    transform: translateX(540%) skewX(-18deg);
  }
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 24px clamp(22px, 4vw, 66px);
  color: rgba(255, 255, 255, 0.5);
  background: #030607;
  border-top: 1px solid var(--line);
}

.footer span {
  color: var(--text);
  font-weight: 760;
  letter-spacing: 0.22em;
}

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

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto auto;
  }

  .nav {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 18px;
    right: 18px;
    flex-direction: column;
    gap: 0;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(3, 6, 7, 0.92);
    backdrop-filter: blur(18px);
  }

  .nav.is-open {
    display: flex;
  }

  .nav a {
    padding: 14px 16px;
  }

  .menu-button {
    display: block;
  }

  .hero-shade {
    background:
      linear-gradient(180deg, rgba(3, 6, 7, 0.68), rgba(3, 6, 7, 0.5) 42%, rgba(3, 6, 7, 0.86)),
      linear-gradient(90deg, rgba(3, 6, 7, 0.88), rgba(3, 6, 7, 0.16));
  }

  .hero-copy {
    justify-content: flex-start;
    min-height: 84vh;
    padding-top: 140px;
  }

  .privacy,
  .models,
  .reviews-head,
  .specs-head,
  .market-proof {
    grid-template-columns: 1fr;
  }

  .proof-bar {
    grid-template-columns: repeat(2, 1fr);
  }

  .proof-item:nth-child(2) {
    border-right: 0;
  }

  .proof-item:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .step-grid,
  .why-grid,
  .seo-card-grid,
  .review-grid,
  .review-scoreboard,
  .article-card-grid {
    grid-template-columns: 1fr;
  }

  .article-layout {
    grid-template-columns: 1fr;
  }

  .article-aside {
    position: static;
  }

  .step-card,
  .why-card,
  .seo-card,
  .article-card {
    min-height: auto;
  }

  .step-card strong,
  .why-card strong,
  .seo-card h2,
  .article-card h2 {
    margin-top: 42px;
  }

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

  .spec-line:nth-child(odd) {
    padding-right: 0;
  }

  .privacy-media img {
    height: auto;
  }
}

@media (max-width: 640px) {
  h1 {
    font-size: 58px;
  }

  h2 {
    font-size: 44px;
  }

  p {
    font-size: 18px;
  }

  .site-header {
    padding: 20px 18px;
  }

  .brand {
    font-size: 17px;
  }

  .header-buy {
    min-width: 94px;
    min-height: 38px;
    padding: 0 16px;
  }

  .hero,
  .detail {
    min-height: 86vh;
  }

  .hero-image {
    object-position: 72% 50%;
  }

  .hero-copy {
    width: 100%;
    min-height: 86vh;
    padding: 116px 18px 90px;
  }

  .hero-copy p {
    max-width: 330px;
    margin-top: 22px;
  }

  .hero-price {
    margin-top: 30px;
  }

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

  .hero-bottom {
    left: 18px;
    right: 18px;
    bottom: 22px;
    gap: 10px;
    flex-wrap: wrap;
  }

  .hero-bottom span + span::before {
    margin-right: 10px;
  }

  .pov-copy,
  .how,
  .specs-section,
  .seo-section,
  .seo-hero-copy,
  .privacy,
  .models,
  .reviews-proof,
  .why,
  .market-proof,
  .final-copy {
    padding-left: 18px;
    padding-right: 18px;
  }

  .proof-bar {
    grid-template-columns: 1fr;
  }

  .proof-item,
  .proof-item:nth-child(2) {
    min-height: 104px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .proof-item:last-child {
    border-bottom: 0;
  }

  .proof-item strong {
    font-size: 36px;
  }

  .proof-item span {
    max-width: none;
    margin-top: 12px;
  }

  .step-card,
  .why-card,
  .seo-card {
    padding: 24px;
  }

  .step-card strong,
  .why-card strong,
  .seo-card h2 {
    margin-top: 38px;
  }

  .step-card p,
  .why-card p,
  .seo-card p {
    font-size: 14px;
  }

  .seo-hero {
    min-height: 82vh;
  }

  .seo-hero-copy {
    width: 100%;
    min-height: 82vh;
    padding-top: 116px;
    padding-bottom: 80px;
  }

  .seo-hero-copy h1 {
    font-size: 48px;
  }

  .seo-hero-copy p {
    max-width: 340px;
  }

  .seo-related {
    grid-template-columns: 1fr;
    padding-left: 18px;
    padding-right: 18px;
  }

  .review-insights {
    grid-template-columns: 1fr;
  }

  .article-body {
    padding-left: 18px;
    padding-right: 18px;
  }

  .article-chapter {
    padding: 24px;
  }

  .article-chapter h2 {
    margin-top: 32px;
    font-size: 34px;
  }

  .article-chapter p {
    font-size: 16px;
  }

  .faq-item summary {
    padding: 20px;
    font-size: 18px;
  }

  .faq-item p {
    padding: 0 20px 22px;
    font-size: 15px;
  }

  .pov-strip,
  .pov-strip img {
    min-height: 520px;
  }

  .pov-strip img {
    width: auto;
    max-width: none;
    height: 520px;
    transform: translateX(-28%);
  }

  .pov-labels {
    grid-template-columns: 1fr;
    align-content: space-around;
    font-size: 34px;
  }

  .shoot-anything {
    padding: 22px 18px;
    gap: 28px;
    overflow-x: auto;
  }

  .detail-media img {
    object-position: 58% 50%;
  }

  .detail-copy {
    top: 92px;
    left: 18px;
    right: 18px;
  }

  .spec {
    font-size: 10px;
  }

  .spec-one {
    top: 49%;
    left: 20px;
  }

  .spec-two {
    top: 61%;
    left: 20px;
  }

  .spec-three {
    bottom: 19%;
    left: 20px;
  }

  .spec-four {
    right: 18px;
    bottom: 9%;
  }

  .spec-line {
    grid-template-columns: 1fr;
    gap: 10px;
    min-height: auto;
    padding: 20px 0;
  }

  .spec-line strong {
    font-size: 18px;
  }

  .model-row {
    grid-template-columns: 1fr;
  }

  .kit-shot img {
    min-height: 330px;
  }

  .kit-caption {
    margin-top: 0;
    padding: 18px;
  }

  .kit-caption p {
    font-size: 12px;
  }

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

  .trust span {
    min-height: 82px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .review-card {
    min-height: auto;
    padding: 24px;
  }

  .review-card blockquote {
    font-size: 22px;
  }

  .market-card {
    min-height: 260px;
  }

  .final-action {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .footer {
    flex-direction: column;
  }
}
