:root {
  --navy-950: #04101d;
  --navy-900: #07192d;
  --navy-850: #0a2039;
  --navy-800: #0d2947;
  --blue: #126fa2;
  --water: #55c3dd;
  --gold: #d4ae63;
  --gold-light: #efd99d;
  --sand: #f4efe6;
  --cream: #fbf9f4;
  --ink: #10233a;
  --muted: #5f6c79;
  --line: rgba(16, 35, 58, 0.14);
  --white: #ffffff;
  --shadow: 0 28px 70px rgba(4, 16, 29, 0.16);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Montserrat", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 105px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 1000;
  padding: 10px 14px;
  background: var(--white);
  color: var(--navy-900);
  transform: translateY(-140%);
}

.skip-link:focus {
  transform: translateY(0);
}

.announcement {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 7px 24px;
  background: var(--navy-950);
  color: rgba(255, 255, 255, 0.78);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.announcement a {
  color: var(--gold-light);
}

.announcement-divider {
  width: 1px;
  height: 12px;
  background: rgba(255, 255, 255, 0.28);
}

.product-header {
  position: sticky;
  top: 0;
  z-index: 100;
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 10px clamp(22px, 4vw, 72px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(7, 25, 45, 0.96);
  box-shadow: 0 10px 30px rgba(4, 16, 29, 0.12);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand img {
  width: 170px;
  height: 58px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(18px, 2.2vw, 36px);
}

.site-nav a {
  position: relative;
  color: rgba(255, 255, 255, 0.83);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.07em;
  white-space: nowrap;
}

.site-nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--white);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.site-nav .nav-cta {
  padding: 12px 20px;
  background: var(--gold);
  color: var(--navy-950);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background 180ms ease, transform 180ms ease;
}

.site-nav .nav-cta:hover,
.site-nav .nav-cta:focus-visible {
  color: var(--navy-950);
  background: var(--gold-light);
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 12px 10px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 0;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 1px;
  background: var(--white);
}

.menu-toggle span + span {
  margin-top: 6px;
}

.hero {
  min-height: calc(100vh - 116px);
  display: grid;
  grid-template-columns: minmax(420px, 0.85fr) minmax(560px, 1.15fr);
  background: var(--navy-900);
  color: var(--white);
  overflow: hidden;
}

.hero-copy {
  position: relative;
  z-index: 2;
  align-self: center;
  padding: clamp(72px, 10vw, 150px) clamp(36px, 6vw, 105px);
}

.hero-copy::before {
  content: "";
  position: absolute;
  top: 12%;
  left: 0;
  width: 1px;
  height: 76%;
  background: linear-gradient(transparent, rgba(212, 174, 99, 0.58), transparent);
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  line-height: 1.4;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 0.98;
}

h1 {
  max-width: 700px;
  margin-bottom: 26px;
  font-size: clamp(58px, 6vw, 96px);
}

h2 {
  margin-bottom: 24px;
  font-size: clamp(46px, 4.7vw, 74px);
}

h3 {
  line-height: 1.25;
}

.hero-lead {
  max-width: 650px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(16px, 1.45vw, 20px);
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 42px;
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  border: 1px solid transparent;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.3;
  text-align: center;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

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

.button-primary {
  background: var(--gold);
  color: var(--navy-950);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--gold-light);
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.35);
  color: var(--white);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: var(--white);
  background: var(--white);
  color: var(--navy-900);
}

.button-dark {
  background: var(--navy-900);
  color: var(--white);
}

.button-dark:hover,
.button-dark:focus-visible {
  background: var(--navy-800);
}

.hero-pricing {
  display: flex;
  align-items: stretch;
  gap: 30px;
}

.hero-offer {
  min-width: 185px;
  display: grid;
  grid-template-columns: auto;
  align-content: start;
  padding-left: 15px;
  border-left: 1px solid rgba(212, 174, 99, 0.58);
  color: rgba(255, 255, 255, 0.74);
}

.hero-offer > span {
  margin-bottom: 5px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-offer strong {
  color: var(--white);
  font-family: var(--serif);
  font-size: 38px;
  font-weight: 500;
  line-height: 1;
}

.hero-offer small {
  margin-top: 7px;
  font-size: 10px;
  letter-spacing: 0.04em;
}

.hero-offer-commercial {
  transition: border-color 180ms ease, color 180ms ease;
}

.hero-offer-commercial:hover,
.hero-offer-commercial:focus-visible {
  border-color: var(--gold-light);
  color: var(--white);
}

.hero-visual {
  position: relative;
  min-height: 650px;
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7, 25, 45, 0.34), transparent 35%), linear-gradient(0deg, rgba(4, 16, 29, 0.24), transparent 35%);
  pointer-events: none;
}

.hero-visual > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% center;
}

.hero-proof {
  position: absolute;
  right: clamp(22px, 4vw, 62px);
  bottom: clamp(22px, 4vw, 58px);
  z-index: 2;
  max-width: 280px;
  padding: 18px 22px;
  border-left: 2px solid var(--gold);
  background: rgba(4, 16, 29, 0.78);
  backdrop-filter: blur(12px);
}

.hero-proof span,
.media-note span {
  display: block;
  margin-bottom: 6px;
  color: var(--gold-light);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-proof strong,
.media-note strong {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  line-height: 1.15;
}

.proof-bar {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--white);
  box-shadow: var(--shadow);
}

.proof-bar article {
  min-height: 112px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 26px clamp(18px, 2.3vw, 38px);
  border-right: 1px solid var(--line);
}

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

.proof-number {
  color: var(--gold);
  font-family: var(--serif);
  font-size: 28px;
  line-height: 1;
}

.proof-bar strong,
.proof-bar small {
  display: block;
}

.proof-bar strong {
  margin-bottom: 3px;
  font-size: 12px;
  letter-spacing: 0.035em;
  text-transform: uppercase;
}

.proof-bar small {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.45;
}

.section {
  padding: clamp(90px, 10vw, 150px) clamp(24px, 7vw, 120px);
}

.section-lead,
.section-heading > p:not(.eyebrow),
.portability-copy > p:not(.eyebrow),
.reviews-copy > p:not(.eyebrow) {
  max-width: 720px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.85;
}

.product-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(360px, 0.76fr);
  align-items: center;
  gap: clamp(55px, 9vw, 145px);
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 34px;
  margin-top: 46px;
  border-top: 1px solid var(--line);
}

.feature-list > div {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 12px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.feature-list span {
  color: var(--gold);
  font-family: var(--serif);
  font-size: 22px;
}

.feature-list p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.feature-list strong {
  display: block;
  margin-bottom: 4px;
  color: var(--ink);
  font-size: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.portrait-card {
  position: relative;
  margin: 0;
  min-height: 720px;
  box-shadow: var(--shadow);
}

.portrait-card img {
  width: 100%;
  height: 100%;
  min-height: 720px;
  object-fit: cover;
}

.portrait-card figcaption {
  position: absolute;
  right: -32px;
  bottom: 38px;
  width: min(290px, 82%);
  padding: 22px 26px;
  border-left: 3px solid var(--gold);
  background: var(--navy-900);
  color: var(--white);
  box-shadow: var(--shadow);
}

.portrait-card figcaption span {
  display: block;
  margin-bottom: 5px;
  color: var(--gold);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.portrait-card figcaption strong {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 500;
}

.dark-section {
  background: var(--navy-900);
  color: var(--white);
}

.centered {
  max-width: 940px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 62px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.benefit-grid article {
  min-height: 310px;
  padding: 38px 30px;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.benefit-grid article:last-child {
  border-right: 0;
}

.benefit-icon {
  display: inline-flex;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  margin-bottom: 45px;
  border: 1px solid rgba(212, 174, 99, 0.6);
  color: var(--gold-light);
  font-family: var(--serif);
  font-size: 28px;
}

.benefit-grid h3 {
  margin-bottom: 14px;
  font-family: var(--serif);
  font-size: 27px;
  font-weight: 500;
}

.benefit-grid p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 13px;
}

.how-section {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(380px, 0.95fr);
  align-items: stretch;
  gap: clamp(52px, 8vw, 125px);
  background: var(--sand);
}

.how-media {
  position: relative;
  min-height: 690px;
}

.how-media > img {
  width: 100%;
  height: 100%;
  min-height: 690px;
  object-fit: cover;
}

.media-note {
  position: absolute;
  right: 28px;
  bottom: 28px;
  max-width: 315px;
  padding: 20px 24px;
  background: rgba(7, 25, 45, 0.9);
  color: var(--white);
}

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

.steps {
  margin: 42px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.steps li {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 18px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.steps li > span {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(16, 35, 58, 0.3);
  color: var(--gold);
  font-family: var(--serif);
  font-size: 20px;
}

.steps strong {
  display: block;
  margin-bottom: 3px;
  font-size: 12px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.steps p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 13px;
}

.included-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr);
  align-items: start;
  gap: clamp(55px, 8vw, 125px);
  background: var(--navy-900);
  color: var(--white);
}

.included-intro h2 {
  color: var(--white);
}

.included-intro > p:not(.eyebrow) {
  max-width: 610px;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  line-height: 1.8;
}

.included-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  list-style: none;
}

.included-grid li {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 3px 14px;
  padding: 24px 20px 24px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.included-grid li:nth-child(odd) {
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.included-grid li:nth-child(even) {
  padding-left: 24px;
}

.included-grid span {
  grid-row: 1 / 3;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 22px;
}

.included-grid strong {
  font-size: 12px;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.included-grid small {
  color: rgba(255, 255, 255, 0.58);
  font-size: 11px;
  line-height: 1.5;
}

.technology-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.65fr) minmax(0, 1.35fr);
  align-items: center;
  gap: clamp(45px, 7vw, 115px);
  background: var(--white);
}

.technology-figure {
  margin: 0;
  overflow: hidden;
  background: var(--navy-900);
  box-shadow: var(--shadow);
}

.technology-figure img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: contain;
  background: var(--navy-900);
}

.technology-mobile-facts {
  display: none;
}

.portability-section {
  padding-top: 0;
  display: grid;
  grid-template-columns: minmax(340px, 0.7fr) minmax(0, 1.3fr);
  align-items: center;
  gap: clamp(48px, 7vw, 110px);
}

.portability-section > img {
  width: 100%;
  min-height: 560px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.check-list {
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding: 12px 0 12px 28px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
}

.check-list li::before {
  content: "";
  position: absolute;
  top: 20px;
  left: 1px;
  width: 12px;
  height: 6px;
  border-bottom: 1px solid var(--gold);
  border-left: 1px solid var(--gold);
  transform: rotate(-45deg);
}

.resort-section {
  position: relative;
  min-height: 760px;
  display: flex;
  align-items: center;
  padding: clamp(65px, 8vw, 120px);
  overflow: hidden;
  color: var(--white);
}

.resort-section > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.resort-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(4, 16, 29, 0.92), rgba(4, 16, 29, 0.7) 45%, rgba(4, 16, 29, 0.06) 78%);
}

.resort-overlay {
  position: relative;
  z-index: 2;
  max-width: 610px;
}

.resort-overlay p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.75);
}

.resort-price {
  margin: 28px 0 32px;
}

.resort-price span {
  display: block;
  margin-bottom: 5px;
  color: var(--gold-light);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.resort-price strong {
  font-family: var(--serif);
  font-size: 54px;
  font-weight: 500;
  line-height: 1;
}

.pricing-section {
  background: var(--sand);
}

.pricing-grid {
  max-width: 1120px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin: 58px auto 0;
}

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: clamp(35px, 4vw, 58px);
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 18px 48px rgba(4, 16, 29, 0.07);
}

.price-card.featured {
  border-top: 3px solid var(--gold);
}

.price-label {
  margin-bottom: 14px;
  color: var(--gold);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.price-card h3 {
  margin-bottom: 8px;
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 500;
}

.price {
  margin-bottom: 20px;
  color: var(--navy-900);
  font-family: var(--serif);
  font-size: clamp(54px, 5vw, 72px);
  line-height: 1;
}

.price span {
  margin-right: 3px;
  font-size: 27px;
  vertical-align: top;
}

.price-card > p:not(.price-label):not(.price) {
  color: var(--muted);
  font-size: 14px;
}

.price-card .check-list {
  margin-bottom: 34px;
}

.price-card .button {
  width: 100%;
  margin-top: auto;
}

.pricing-note {
  max-width: 900px;
  margin: 28px auto 0;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.7;
  text-align: center;
}

.reviews-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.65fr) minmax(0, 1.35fr);
  align-items: start;
  gap: clamp(50px, 8vw, 125px);
  background: var(--white);
}

.text-link {
  display: inline-block;
  padding-bottom: 5px;
  border-bottom: 1px solid var(--gold);
  color: var(--navy-900);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.trust-grid article {
  min-height: 280px;
  padding: 32px 25px;
  border-right: 1px solid var(--line);
}

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

.trust-grid span {
  display: block;
  margin-bottom: 55px;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 24px;
}

.trust-grid h3 {
  margin-bottom: 12px;
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 500;
}

.trust-grid p {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.7;
}

.faq-preview {
  display: grid;
  grid-template-columns: minmax(280px, 0.55fr) minmax(0, 1.1fr);
  gap: clamp(45px, 8vw, 130px);
  background: var(--sand);
}

.faq-preview > .text-link {
  grid-column: 2;
  justify-self: start;
}

.faq-list details {
  border-top: 1px solid var(--line);
}

.faq-list details:last-child {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  padding: 22px 44px 22px 0;
  font-family: var(--serif);
  font-size: 23px;
  line-height: 1.25;
  cursor: pointer;
  list-style: none;
}

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

.faq-list summary::after {
  content: "+";
  position: absolute;
  top: 21px;
  right: 5px;
  color: var(--gold);
  font-family: var(--sans);
  font-size: 22px;
  font-weight: 400;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  max-width: 720px;
  padding: 0 44px 22px 0;
  color: var(--muted);
  font-size: 13px;
}

.kickstarter-cta {
  min-height: 330px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: clamp(70px, 8vw, 120px);
  background: linear-gradient(135deg, var(--navy-900), var(--navy-800));
  color: var(--white);
}

.kickstarter-cta h2 {
  max-width: 880px;
  margin-bottom: 0;
  font-size: clamp(42px, 4.4vw, 68px);
}

.kickstarter-cta .button {
  flex: 0 0 auto;
  min-width: 220px;
}

.product-footer {
  display: grid;
  grid-template-columns: minmax(280px, 1.7fr) repeat(3, minmax(130px, 0.6fr));
  gap: 45px;
  padding: 70px clamp(24px, 7vw, 120px) 28px;
  background: var(--navy-950);
  color: rgba(255, 255, 255, 0.65);
}

.footer-brand img {
  width: 190px;
  height: 92px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.footer-main p {
  max-width: 470px;
  font-size: 12px;
}

.footer-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 9px;
}

.footer-column strong {
  margin-bottom: 10px;
  color: var(--white);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer-column a,
.footer-bottom a {
  font-size: 11px;
}

.footer-column a:hover,
.footer-column a:focus-visible,
.footer-bottom a:hover,
.footer-bottom a:focus-visible {
  color: var(--gold-light);
}

.footer-bottom {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 10px;
}

.footer-bottom div {
  display: flex;
  gap: 20px;
}

.tracking-consent {
  position: fixed;
  right: 18px;
  bottom: 18px;
  left: 18px;
  z-index: 500;
  max-width: 680px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-left: auto;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(4, 16, 29, 0.96);
  color: rgba(255, 255, 255, 0.75);
  box-shadow: var(--shadow);
  backdrop-filter: blur(15px);
}

.tracking-consent strong {
  display: block;
  color: var(--white);
  font-size: 11px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.tracking-consent p {
  margin: 3px 0 0;
  font-size: 9px;
  line-height: 1.5;
}

.tracking-consent-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
}

.tracking-consent-actions button,
.tracking-consent-actions a {
  min-height: 34px;
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: transparent;
  color: var(--white);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  cursor: pointer;
}

.tracking-consent-actions button:nth-child(2) {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--navy-950);
}

@media (max-width: 1180px) {
  .product-header {
    gap: 16px;
  }

  .site-nav {
    gap: 16px;
  }

  .site-nav a {
    font-size: 10px;
  }

  .hero {
    grid-template-columns: minmax(360px, 0.9fr) minmax(470px, 1.1fr);
  }

  .hero-copy {
    padding-right: 44px;
    padding-left: 44px;
  }

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

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

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

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

  .benefit-grid article:nth-child(2) {
    border-right: 0;
  }

  .benefit-grid article:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .reviews-section {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .product-header {
    min-height: 72px;
    padding-right: 22px;
    padding-left: 22px;
  }

  .brand img {
    width: 150px;
    height: 52px;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    padding: 10px 22px 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: var(--navy-900);
    box-shadow: 0 20px 34px rgba(4, 16, 29, 0.2);
  }

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

  .site-nav a {
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 12px;
  }

  .site-nav a::after {
    display: none;
  }

  .site-nav .nav-cta {
    margin-top: 12px;
    padding: 14px 18px;
    border-bottom: 0;
    text-align: center;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .hero-copy {
    padding: 80px 7vw 70px;
  }

  .hero-copy::before {
    display: none;
  }

  .hero-visual {
    min-height: 610px;
  }

  .product-intro,
  .how-section,
  .included-section,
  .technology-section,
  .portability-section,
  .faq-preview {
    grid-template-columns: 1fr;
  }

  .portrait-card {
    width: min(590px, 100%);
    justify-self: center;
  }

  .portrait-card figcaption {
    right: 20px;
  }

  .technology-section .section-heading {
    max-width: 720px;
  }

  .portability-section {
    padding-top: 80px;
  }

  .portability-section > img {
    min-height: 430px;
  }

  .faq-preview > .text-link {
    grid-column: 1;
  }

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

  .product-footer {
    grid-template-columns: 1.5fr repeat(2, 1fr);
  }

  .footer-main {
    grid-column: 1 / -1;
  }
}

@media (max-width: 680px) {
  html {
    scroll-padding-top: 92px;
  }

  .announcement {
    gap: 9px;
    padding-right: 12px;
    padding-left: 12px;
    font-size: 8px;
    letter-spacing: 0.08em;
  }

  .announcement a,
  .announcement-launch-divider {
    display: none;
  }

  .product-header {
    min-height: 66px;
    padding: 7px 16px;
  }

  .brand img {
    width: 136px;
    height: 48px;
  }

  .hero-copy {
    padding: 32px 22px 34px;
  }

  h1 {
    margin-bottom: 18px;
    font-size: clamp(44px, 12vw, 54px);
  }

  h2 {
    font-size: clamp(42px, 12vw, 56px);
  }

  .hero-lead {
    margin-bottom: 22px;
    font-size: 14px;
    line-height: 1.55;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-bottom: 26px;
  }

  .hero-actions .button {
    width: 100%;
    min-height: 46px;
    padding: 10px 8px;
    font-size: 9px;
    letter-spacing: 0.08em;
  }

  .hero-pricing {
    gap: 10px;
  }

  .hero-offer {
    min-width: 0;
    flex: 1 1 50%;
    padding-left: 10px;
  }

  .hero-offer > span {
    min-height: 22px;
    font-size: 8px;
    letter-spacing: 0.1em;
  }

  .hero-offer strong {
    font-size: 30px;
  }

  .hero-offer small {
    font-size: 8px;
    line-height: 1.4;
  }

  .hero-visual {
    min-height: auto;
    display: flex;
    flex-direction: column;
    order: -1;
    background: var(--white);
  }

  .hero-visual > img {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 3 / 2;
    object-fit: contain;
    object-position: center;
  }

  .hero-visual::after {
    display: none;
  }

  .hero-proof {
    position: static;
    max-width: none;
    padding: 20px 18px 22px;
    border-left: 0;
    background: var(--white);
    color: var(--navy-900);
    text-align: center;
    backdrop-filter: none;
  }

  .hero-proof span {
    color: var(--gold-dark);
  }

  .hero-proof strong {
    color: var(--navy-900);
  }

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

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

  .section {
    padding: 70px 22px;
  }

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

  .portrait-card,
  .portrait-card img {
    min-height: 500px;
  }

  .portrait-card figcaption {
    right: 14px;
    bottom: 14px;
    left: 14px;
    width: auto;
  }

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

  .benefit-grid article,
  .benefit-grid article:nth-child(2) {
    min-height: 205px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .benefit-icon {
    margin-bottom: 30px;
  }

  .how-media,
  .how-media > img {
    min-height: 430px;
  }

  .media-note {
    right: 14px;
    bottom: 14px;
    left: 14px;
  }

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

  .included-grid li,
  .included-grid li:nth-child(even) {
    padding: 20px 0;
    border-right: 0;
  }

  .technology-figure img {
    aspect-ratio: auto;
    height: auto;
  }

  .technology-mobile-facts {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1px;
    background: rgba(255, 255, 255, 0.12);
  }

  .technology-mobile-facts span {
    min-height: 70px;
    display: flex;
    align-items: center;
    padding: 13px;
    background: var(--navy-900);
    color: rgba(255, 255, 255, 0.78);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.06em;
    line-height: 1.45;
    text-transform: uppercase;
  }

  .portability-section > img {
    min-height: 350px;
  }

  .resort-section {
    min-height: 640px;
    align-items: flex-end;
    padding: 42px 22px;
  }

  .resort-section::after {
    background: linear-gradient(0deg, rgba(4, 16, 29, 0.96), rgba(4, 16, 29, 0.62) 62%, rgba(4, 16, 29, 0.08));
  }

  .resort-section > img {
    object-position: 58% center;
  }

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

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

  .trust-grid span {
    margin-bottom: 30px;
  }

  .kickstarter-cta {
    padding: 70px 22px;
  }

  .kickstarter-cta .button {
    width: 100%;
  }

  .product-footer {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 22px;
    padding: 44px 22px 22px;
  }

  .footer-main {
    grid-column: 1 / -1;
  }

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

  .tracking-consent {
    right: 10px;
    bottom: 10px;
    left: 10px;
    align-items: stretch;
    flex-direction: column;
    gap: 10px;
    padding: 13px;
  }

  .tracking-consent-actions {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

  .tracking-consent-actions a {
    grid-column: 1 / -1;
    text-align: center;
  }
}

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

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