:root {
	--ink: #1d1d1f;
	--mute: #6e6e73;
	--line: #d2d2d7;
	--bg: #f5f5f7;
	--white: #ffffff;
	--blue: #0071e3;
	--blue-h: #0077ed;
}

* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
	color: var(--ink);
	background: var(--white);
	line-height: 1.47;
	-webkit-font-smoothing: antialiased;
}

a {
	color: var(--blue);
	text-decoration: none;
}

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

body>nav {
	position: sticky;
	top: 0;
	z-index: 20;
	backdrop-filter: saturate(180%) blur(20px);
	background: rgba(255, 255, 255, .78);
	border-bottom: 1px solid rgba(0, 0, 0, .08);
}

.nav-inner {
	max-width: 980px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 48px;
	padding: 0 22px;
}

.nav-inner img {
	height: 26px;
	width: auto;
}

.nav-links {
	display: flex;
	align-items: center;
	gap: 28px;
}

.nav-inner a.ghost {
	color: var(--ink);
	font-size: 12px;
	font-weight: 400;
	letter-spacing: .01em;
	opacity: .88;
}

.nav-inner a.ghost:hover {
	opacity: 1;
}

.btn {
	display: inline-block;
	background: var(--blue);
	color: #fff !important;
	font-size: 17px;
	font-weight: 500;
	padding: 12px 22px;
	border-radius: 980px;
}

.btn:hover {
	background: var(--blue-h);
}

.btn-sm {
	font-size: 15px;
	padding: 11px 18px;
}

.hero {
	text-align: center;
	padding: 92px 22px 64px;
}

.eyebrow {
	font-size: 12px;
	letter-spacing: .14em;
	text-transform: uppercase;
	color: var(--mute);
	margin-bottom: 18px;
}

.hero h1 {
	font-size: clamp(40px, 7vw, 72px);
	line-height: 1.05;
	font-weight: 600;
	letter-spacing: -.035em;
}

.hero p.lead {
	max-width: 640px;
	margin: 22px auto 0;
	font-size: 21px;
	color: var(--ink);
}

.hero p.sub {
	max-width: 560px;
	margin: 14px auto 28px;
	font-size: 17px;
	color: var(--mute);
}

.band {
	background: var(--bg);
}

.wrap {
	max-width: 980px;
	margin: 0 auto;
	padding: 88px 22px;
}

h2 {
	font-size: clamp(32px, 5vw, 48px);
	font-weight: 600;
	letter-spacing: -.03em;
	line-height: 1.12;
}

.intro {
	font-size: 21px;
	margin-top: 16px;
	max-width: 720px;
}

.mute {
	color: var(--mute);
}

.grid {
	display: grid;
	gap: 20px;
	grid-template-columns: 1fr;
	margin-top: 48px;
}

@media (min-width: 760px) {
	.grid {
		grid-template-columns: 1fr 1fr;
	}

	.grid .span {
		grid-column: 1 / -1;
	}
}

.reveal {
	opacity: 0;
	transform: translateY(28px);
	transition:
	opacity 1.35s cubic-bezier(.22, 1, .36, 1),
	transform 1.35s cubic-bezier(.22, 1, .36, 1);
}
.reveal.is-in {
	opacity: 1;
	transform: none;
}
@media (max-width: 734px) {
	.reveal {
	transform: translateY(18px);
	transition-duration: 1.15s, 1.15s;
	}
}
@media (prefers-reduced-motion: reduce) {
	.reveal {
	opacity: 1;
	transform: none;
	transition: none;
	}
}

.card {
	background: var(--white);
	border-radius: 28px;
	padding: 36px 32px 32px;
	text-align: center;
}

.card img {
	margin: 0 auto 22px;
	max-height: 220px;
	width: auto;
}

.kicker {
	font-size: 12px;
	letter-spacing: .1em;
	text-transform: uppercase;
	color: var(--mute);
	margin-bottom: 8px;
}

.card h3 {
	font-size: 28px;
	letter-spacing: -.025em;
	font-weight: 600;
}

.stage {
	margin: 0 auto 22px;
	max-width: 280px;
	aspect-ratio: 4 / 3;
	overflow: hidden;
}
.stage-video {
	width: 100%;
	height: 100%;
	object-fit: contain;
	background: #fff;
}
@media (prefers-reduced-motion: reduce) {
	.stage-video { display: none; }
}

.spec {
	color: var(--mute);
	font-size: 16px;
	margin: 8px 0 14px;
}

.price {
	font-size: 28px;
	font-weight: 600;
	letter-spacing: -.03em;
}

.vat {
	font-size: 12px;
	color: var(--mute);
	margin: 4px 0 18px;
}

.split {
	display: grid;
	gap: 40px;
	align-items: center;
}

@media (min-width: 800px) {
	.split {
		grid-template-columns: 1fr 1fr;
		gap: 64px;
	}
}

.split p {
	font-size: 19px;
	margin-top: 14px;
}

footer {
	border-top: 1px solid var(--line);
	padding: 48px 22px 64px;
	font-size: 12px;
	color: var(--mute);
	line-height: 1.6;
}

.foot {
	max-width: 980px;
	margin: 0 auto;
}

.foot a {
	color: var(--mute);
}

.legal {
	margin-top: 22px;
	color: #86868b;
	font-size: 11px;
}

footer {
	background: #1d1d1f;
	color: #86868b;
	padding: 0;
	font-size: 12px;
	line-height: 1.47;
}

.foot {
	max-width: 980px;
	margin: 0 auto;
	padding: 20px 22px 36px;
}

.foot-shop {
	color: #6e6e73;
	font-size: 12px;
	padding: 16px 0 12px;
	border-bottom: 1px solid #424245;
}

.foot-shop a {
	color: #6e6e73;
}

.foot-shop a:hover {
	color: #f5f5f7;
}

.foot-links {
	display: flex;
	flex-wrap: wrap;
	gap: 6px 0;
	padding: 16px 0;
	border-bottom: 1px solid #424245;
}

.foot-links a {
	color: #86868b;
	padding-right: 14px;
	margin-right: 14px;
	border-right: 1px solid #424245;
}

.foot-links a:last-child {
	border-right: 0;
	margin-right: 0;
	padding-right: 0;
}

.foot-links a:hover {
	color: #f5f5f7;
}

.foot-copy {
	padding-top: 14px;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 8px 24px;
	color: #6e6e73;
}

.foot-copy a {
	color: #86868b;
}

.legal {
	margin-top: 18px;
	color: #6e6e73;
	font-size: 11px;
	max-width: 720px;
}

.lvm {
	--lvm-dark: #00551a;
	--lvm-mid: #00841a;
	--lvm-brand: #009b31;
	--lvm-light: #8ed96a;
	--gradient-vertical-green-to-green-light: linear-gradient(180deg,
			var(--lvm-dark) 0%,
			var(--lvm-mid) 42%,
			var(--lvm-light) 100%);
	background: var(--gradient-vertical-green-to-green-light);
	color: #fff;
}

.lvm .wrap {
	padding: 96px 22px;
}

.lvm .eyebrow {
	color: rgba(255, 255, 255, .72);
}

.lvm h2 {
	color: #fff;
}

.lvm .intro {
	color: rgba(255, 255, 255, .86);
}

.lvm-panel {
	margin-top: 40px;
	display: grid;
	gap: 20px;
}

@media (min-width: 800px) {
	.lvm-panel {
		grid-template-columns: 1.15fr .85fr;
	}
}

.lvm-card {
	display: flex;
	align-items: stretch;
	background: rgba(255, 255, 255, .12);
	backdrop-filter: blur(16px);
	border-radius: 4px 18px 18px 4px;
	overflow: hidden;
}

.inet-hero-anchor__decoration {
	width: 12px;
	align-self: stretch;
	flex-shrink: 0;
	background: var(--gradient-vertical-green-to-green-light);
}

.lvm-card-body {
	padding: 28px 26px 30px;
}

.lvm-card h3 {
	font-size: 28px;
	letter-spacing: -.025em;
	font-weight: 600;
	margin-bottom: 10px;
}

.lvm-card p {
	font-size: 17px;
	color: rgba(255, 255, 255, .86);
}

.lvm-card--photo {
	padding: 0;
	min-height: 320px;
}

.lvm-card--photo .lvm-card-body {
	padding: 0;
	width: 100%;
}

.lvm-portrait {
	width: 100%;
	height: 100%;
	min-height: 320px;
	object-fit: cover;
	object-position: center top;
	display: block;
}

.lvm-meta {
	font-size: 14px;
	color: rgba(255, 255, 255, .72);
	margin-top: 20px;
	line-height: 1.65;
}

.lvm-meta a {
	color: #fff;
	text-decoration: underline;
	text-underline-offset: 3px;
}

.lvm .btn {
	margin-top: 22px;
	background: #fff;
	color: var(--lvm-mid) !important;
}

.lvm .btn:hover {
	background: #f3fff4;
}

.lvm-logo {
	display: block;
	width: min(280px, 100%);
	height: auto;
	margin: 0 0 22px;
	padding: 16px 18px;
	background: #fff;
	border-radius: 12px;
}

.sheet {
  width: min(100vw - 32px, 820px);
  max-height: min(90dvh, 920px);
  margin: auto;
  padding: 0;
  border: 0;
  border-radius: 22px;
  background: #fff;
  color: var(--ink);
  box-shadow: 0 24px 80px rgba(0, 0, 0, .28);
  overflow: hidden;
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 1.15s cubic-bezier(.22, 1, .36, 1),
    transform 1.15s cubic-bezier(.22, 1, .36, 1);
}
.sheet[open] {
  opacity: 1;
  transform: none;
}
.sheet::backdrop {
  background: rgba(29, 29, 31, 0);
  backdrop-filter: blur(0);
  transition:
    background .9s cubic-bezier(.22, 1, .36, 1),
    backdrop-filter .9s cubic-bezier(.22, 1, .36, 1);
}
.sheet[open]::backdrop {
  background: rgba(29, 29, 31, .42);
  backdrop-filter: blur(18px);
}
.sheet.sheet-out {
  opacity: 0;
  transform: translateY(16px);
}
.sheet.sheet-out::backdrop {
  background: rgba(29, 29, 31, 0);
  backdrop-filter: blur(0);
}

.sheet-bar {
  position: sticky;
  top: 0;
  z-index: 3;
  display: flex;
  justify-content: flex-end;
  padding: 16px 18px 8px;
  background: linear-gradient(#fff 60%, rgba(255,255,255,0));
}
.sheet-close {
  width: 32px;
  height: 32px;
  border: 0;
  border-radius: 50%;
  background: #e8e8ed;
  color: #1d1d1f;
  font-size: 20px;
  line-height: 32px;
  cursor: pointer;
}
.sheet-close:hover { background: #d2d2d7; }

.sheet-body {
  padding: 8px 40px 56px;
  overflow: auto;
  max-height: calc(min(90dvh, 920px) - 56px);
  -webkit-overflow-scrolling: touch;
}
.sheet-kicker {
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--mute);
}
.sheet-body h2 {
  margin: 10px 0 8px;
  font-size: clamp(34px, 6vw, 52px);
  letter-spacing: -.035em;
  line-height: 1.08;
}
.sheet-lead {
  font-size: 21px;
  line-height: 1.4;
  color: var(--ink);
  max-width: 34em;
  margin: 0 0 28px;
}
.sheet-gallery img {
  display: block;
  width: 100%;
  border-radius: 16px;
  margin: 0 0 20px;
  background: #f5f5f7;
}
.sheet-copy {
  font-size: 17px;
  line-height: 1.5;
  max-width: 36em;
}
.sheet-copy p { margin: 0 0 14px; }
.sheet-copy h3 {
  font-size: 21px;
  letter-spacing: -.02em;
  margin: 28px 0 10px;
}
.sheet-copy ul {
  margin: 0 0 18px;
  padding: 0;
  list-style: none;
}
.sheet-copy li {
  position: relative;
  margin: 0 0 8px;
  padding-left: 1.1em;
  color: var(--mute);
}
.sheet-copy li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .55em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #d2d2d7;
}
.sheet-body .price {
  margin: 28px 0 0;
  font-size: 28px;
  letter-spacing: -.03em;
}
.sheet-body .vat {
  margin: 4px 0 20px;
}
.sheet-cta { display: inline-block; }

.sheet-body .sheet-kicker,
.sheet-body h2,
.sheet-body .sheet-lead,
.sheet-body .sheet-gallery,
.sheet-body .sheet-copy,
.sheet-body .price,
.sheet-body .vat,
.sheet-body .sheet-cta {
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity 1.15s cubic-bezier(.22, 1, .36, 1),
    transform 1.15s cubic-bezier(.22, 1, .36, 1);
}
.sheet.is-ready .sheet-kicker { opacity: 1; transform: none; transition-delay: .1s; }
.sheet.is-ready h2 { opacity: 1; transform: none; transition-delay: .2s; }
.sheet.is-ready .sheet-lead { opacity: 1; transform: none; transition-delay: .3s; }
.sheet.is-ready .sheet-gallery { opacity: 1; transform: none; transition-delay: .4s; }
.sheet.is-ready .sheet-copy { opacity: 1; transform: none; transition-delay: .52s; }
.sheet.is-ready .price,
.sheet.is-ready .vat,
.sheet.is-ready .sheet-cta { opacity: 1; transform: none; transition-delay: .64s; }

@media (max-width: 734px) {
  .sheet {
    width: 100vw;
    height: 100dvh;
    max-height: 100dvh;
    border-radius: 0;
    box-shadow: none;
    transform: translateY(10px);
  }
  .sheet-body {
    padding: 4px 22px 48px;
    max-height: calc(100dvh - 52px);
  }
  .sheet-lead { font-size: 19px; }
}
@media (prefers-reduced-motion: reduce) {
  .sheet,
  .sheet::backdrop,
  .sheet-body .sheet-kicker,
  .sheet-body h2,
  .sheet-body .sheet-lead,
  .sheet-body .sheet-gallery,
  .sheet-body .sheet-copy,
  .sheet-body .price,
  .sheet-body .vat,
  .sheet-body .sheet-cta {
    transition: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
}
.sheet {
  contain: layout style;
}
.sheet-body {
  scroll-snap-type: y proximity;
  overscroll-behavior: contain;
  scrollbar-width: thin;
  scrollbar-color: #d2d2d7 transparent;
}
.sheet-body::-webkit-scrollbar {
  width: 8px;
}
.sheet-body::-webkit-scrollbar-thumb {
  background: #d2d2d7;
  border-radius: 8px;
}

.sheet-gallery {
	margin: 0 -8px 36px;
}
.gallery-track {
	display: flex;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	scroll-behavior: smooth;
	overscroll-behavior-x: contain;
	gap: 12px;
	padding: 0 8px 8px;
	scrollbar-width: none;
	-webkit-overflow-scrolling: touch;
}
.gallery-track::-webkit-scrollbar { display: none; }

.gallery-slide {
	flex: 0 0 100%;
	scroll-snap-align: center;
	scroll-snap-stop: always;
	margin: 0;
	background: transparent;
	border-radius: 18px;
	overflow: hidden;
}
.gallery-slide img {
	display: block;
	width: 100%;
	height: min(52dvh, 420px);
	object-fit: contain;
	background: transparent;
}

.gallery-dots {
	display: flex;
	justify-content: center;
	gap: 8px;
	margin-top: 16px;
}
.gallery-dot {
	width: 6px;
	height: 6px;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: #d2d2d7;
	cursor: pointer;
}
.gallery-dot.is-on {
	background: #1d1d1f;
	transform: scale(1.15);
}

@media (max-width: 734px) {
	.gallery-slide img { height: min(48dvh, 360px); }
}

.legal-page .legal-subnav {
    border-bottom: 1px solid rgba(0, 0, 0, .08);
    background: rgba(255, 255, 255, .72);
    backdrop-filter: saturate(180%) blur(20px);
}

.legal-page .legal-subnav .wrap {
    max-width: 980px;
    display: flex;
    align-items: center;
    gap: 28px;
    height: 44px;
    padding: 0 22px;
}

.legal-page .legal-subnav a {
    color: var(--ink);
    font-size: 12px;
    letter-spacing: .01em;
    opacity: .72;
}

.legal-page .legal-subnav a:hover,
.legal-page .legal-subnav a.is-active {
    opacity: 1;
}

.legal-page .legal-subnav a.is-active {
    font-weight: 600;
}

.legal-page .legal-hero .wrap,
.legal-page .legal-body .wrap {
    max-width: 692px;
}

.legal-page .legal-hero .wrap {
    padding: 64px 22px 20px;
}

.legal-page .legal-body .wrap {
    padding: 24px 22px 88px;
}

.legal-page .legal-hero h1 {
    font-size: clamp(36px, 6vw, 56px);
    line-height: 1.07;
    letter-spacing: -.035em;
    font-weight: 600;
}

.legal-page .legal-updated {
    margin-top: 14px;
    font-size: 14px;
    color: var(--mute);
}

.legal-page .legal-hero .lead {
    margin-top: 18px;
    font-size: 21px;
    line-height: 1.381;
    color: var(--ink);
    max-width: 22em;
}

.legal-page .legal-body h2 {
    margin: 42px 0 10px;
    font-size: 28px;
    letter-spacing: -.022em;
    line-height: 1.14;
}

.legal-page .legal-body h2:first-child {
    margin-top: 0;
}

.legal-page .legal-body p,
.legal-page .legal-body li {
    font-size: 17px;
    line-height: 1.47;
    color: var(--ink);
}

.legal-page .legal-body p + p {
    margin-top: 12px;
}

.legal-page .legal-body ul {
    margin: 12px 0 0;
    padding: 0;
    list-style: none;
}

.legal-page .legal-body li {
    position: relative;
    padding-left: 1.1em;
    margin: 0 0 8px;
    color: var(--mute);
}

.legal-page .legal-body li::before {
    content: "";
    position: absolute;
    left: 0;
    top: .62em;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--line);
}

.legal-page .legal-facts {
    margin: 0 0 28px;
    display: grid;
    gap: 12px;
}

.legal-page .legal-fact {
    background: var(--bg);
    border-radius: 18px;
    padding: 22px 22px 20px;
}

.legal-page .legal-fact span {
    display: block;
    font-size: 12px;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--mute);
    margin-bottom: 8px;
}

.legal-page .legal-fact p {
    margin: 0;
    font-size: 17px;
}

.legal-page .legal-body a:hover {
    text-decoration: underline;
    text-underline-offset: 3px;
}

.foot-shop {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px 10px;
}

.foot-home {
    display: inline-flex;
    align-items: center;
    line-height: 0;
}

.foot-home img {
    height: 16px;
    width: auto;
    filter: brightness(0) invert(.72);
}

.foot-home:hover img {
    filter: brightness(0) invert(.96);
}

.foot-sep {
    color: #6e6e73;
    font-size: 14px;
    line-height: 1;
}

.foot-current {
    color: #f5f5f7;
}