:root {
  --font-sans: Manrope, system-ui, sans-serif;
  --font-serif: Georgia, "Times New Roman", serif;
  --black: #0b0b0c;
  --graphite: #1c1c1f;
  --white: #fafaf8;
  --gray: #a1a1aa;
  --gold-dark: #825811;
  --gold: #c3922e;
  --gold-light: #f1d77a;
  --gold-gradient: linear-gradient(135deg, #825811 0%, #c3922e 34%, #f1d77a 58%, #a56f18 100%);
  --border: rgba(255, 255, 255, 0.12);
  --container: min(1180px, calc(100% - 48px));
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
}
body.menu-open {
  overflow: hidden;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
  display: block;
}
button {
  font: inherit;
}
.container {
  width: var(--container);
  margin-inline: auto;
}
.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 1000;
  background: var(--white);
  color: var(--black);
  padding: 12px 18px;
}
.skip-link:focus {
  top: 12px;
}
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: 78px;
  border-bottom: 1px solid transparent;
  transition: 0.4s;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), transparent);
}
.site-header.scrolled {
  background: rgba(11, 11, 12, 0.82);
  backdrop-filter: blur(18px);
  border-color: var(--border);
}
.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 34px;
}
.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  white-space: nowrap;
}
.brand-logo {
  display: block;
  width: auto;
  height: 58px;
  object-fit: contain;
}
.footer-brand .brand-logo {
  height: 92px;
}
.desktop-nav {
  display: flex;
  gap: 26px;
  margin-left: auto;
}
.desktop-nav a {
  font-size: 12px;
  color: #d4d4d8;
  transition: 0.2s;
}
.desktop-nav a:hover {
  color: var(--white);
}
.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  border: 1px solid transparent;
  padding: 0 22px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 700;
  transition: 0.25s var(--ease);
  cursor: pointer;
}
.button:hover {
  transform: translateY(-2px);
}
.button:focus-visible,
a:focus-visible,
summary:focus-visible,
button:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}
.button-gold {
  background: var(--gold-gradient);
  color: #120d04;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.3);
}
.button-outline {
  border-color: rgba(195, 146, 46, 0.68);
  background: rgba(11, 11, 12, 0.38);
}
.button-dark {
  background: var(--black);
  color: #fff;
}
.button-whatsapp {
  background: var(--gold-gradient);
  color: #120d04;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.32),
    0 10px 28px rgba(130, 88, 17, 0.2);
}
.header-cta {
  min-height: 42px;
  padding: 0 16px;
  font-size: 11px;
}
.menu-toggle,
.mobile-nav {
  display: none;
}
.hero {
  min-height: 100svh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #050506;
}
.hero-media {
  position: absolute;
  top: 0;
  right: 0;
  bottom: auto;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transform: translateX(clamp(110px, 12vw, 190px));
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 16%, #000 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 16%, #000 100%);
}
.hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(5, 5, 6, 0.9) 0%,
    rgba(5, 5, 6, 0.78) 34%,
    rgba(5, 5, 6, 0.32) 58%,
    rgba(5, 5, 6, 0.06) 76%,
    transparent 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 88px;
}
.eyebrow {
  text-transform: uppercase;
  color: #d2a850;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  margin: 0 0 22px;
}
.eyebrow i {
  display: inline-block;
  width: 3px;
  height: 3px;
  background: currentColor;
  border-radius: 50%;
  vertical-align: middle;
  margin: 0 8px;
}
.eyebrow.dark {
  color: var(--gold-dark);
}
.eyebrow,
.line-icon,
.pillars span,
.steps span,
.reason-list > article > span,
.category small,
.category a,
.device-card a,
.about a,
.status,
.video-story p span,
.about-number span,
summary span {
  color: var(--gold);
  background-image: var(--gold-gradient);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero h1,
.section-heading h2,
.experience h2,
.why h2,
.moments h2,
.about h2,
.social h2,
.faq h2,
.final-cta h2 {
  font-size: clamp(42px, 5.8vw, 78px);
  line-height: 0.98;
  letter-spacing: -0.06em;
  margin: 0;
  font-weight: 500;
}
.hero-copy {
  max-width: 610px;
  color: #c4c4c7;
  font-size: 17px;
  line-height: 1.7;
  margin: 26px 0 34px;
}
.actions {
  display: flex;
  gap: 12px;
}
.hero-proof {
  list-style: none;
  padding: 0;
  margin: 54px 0 0;
  display: grid;
  grid-template-columns: repeat(4, max-content);
  gap: 40px;
}
.hero-proof li {
  border-left: 1px solid rgba(195, 146, 46, 0.48);
  padding-left: 14px;
}
.hero-proof strong,
.hero-proof small {
  display: block;
}
.hero-proof strong {
  font-size: 12px;
}
.hero-proof small {
  font-size: 10px;
  color: var(--gray);
  margin-top: 5px;
}
.hero-proof .installment-highlight {
  min-width: 132px;
  margin-block: -14px;
  padding: 12px 18px;
  border-left: 0;
  border-radius: 4px;
  background: var(--gold-gradient);
  color: #09090a;
  box-shadow: 0 12px 32px rgba(130, 88, 17, 0.3);
}
.hero-proof .installment-highlight strong {
  font-size: 20px;
  line-height: 1;
  letter-spacing: -0.04em;
}
.hero-proof .installment-highlight small {
  margin-top: 6px;
  color: rgba(9, 9, 10, 0.76);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.scroll-cue {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  font-size: 10px;
  color: #aaa;
  display: flex;
  align-items: center;
  gap: 9px;
}
.scroll-cue span {
  width: 14px;
  height: 22px;
  border: 1px solid #777;
  border-radius: 8px;
  position: relative;
}
.scroll-cue span:after {
  content: "";
  position: absolute;
  top: 4px;
  left: 5px;
  width: 2px;
  height: 5px;
  background: var(--gold-gradient);
  border-radius: 2px;
  animation: scroll 1.7s infinite;
}
.trust-strip {
  background: #171719;
  border-block: 1px solid var(--border);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  min-height: 96px;
}
.trust-grid div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border-right: 1px solid var(--border);
  font-size: 11px;
}
.trust-grid div:first-child {
  border-left: 1px solid var(--border);
}
.line-icon {
  font-size: 22px;
  color: var(--gold);
}
section {
  position: relative;
}
.section-dark,
.section-light {
  padding: 120px 0;
}
.section-dark {
  background: var(--black);
}
.section-light {
  background: var(--white);
  color: var(--black);
}
.experience-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 72px;
  align-items: center;
}
.editorial-media {
  margin: 0;
  position: relative;
}
.editorial-media img {
  display: block;
  width: 100%;
  height: 460px;
  object-fit: cover;
  object-position: center 60%;
  border-radius: 3px;
  filter: saturate(0.84);
}
.editorial-media figcaption {
  position: absolute;
  left: 22px;
  bottom: 20px;
  background: rgba(10, 10, 10, 0.7);
  backdrop-filter: blur(12px);
  padding: 10px 14px;
  font-size: 11px;
}
.experience h2,
.why h2,
.about h2 {
  font-size: clamp(38px, 4.4vw, 60px);
}
h2 em {
  color: var(--gray);
  font-family: var(--font-serif);
  font-style: normal;
  font-weight: 400;
  letter-spacing: -0.04em;
}
.experience-copy > p:not(.eyebrow) {
  color: var(--gray);
  font-size: 16px;
  line-height: 1.75;
  max-width: 650px;
}
.pillars {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 45px;
  border-top: 1px solid var(--border);
}
.pillars article {
  padding: 28px 22px 0 0;
}
.pillars span,
.steps span,
.reason-list > article > span {
  color: var(--gold);
  font-size: 12px;
}
.pillars h3 {
  font-size: 15px;
  margin: 22px 0 10px;
}
.pillars p {
  font-size: 12px !important;
  line-height: 1.6 !important;
}
.section-heading {
  margin-bottom: 62px;
}
.section-heading.split {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 50px;
}
.section-heading h2 {
  font-size: clamp(38px, 4.8vw, 64px);
}
.section-heading > p {
  max-width: 400px;
  color: #555;
  line-height: 1.7;
}
.steps {
  list-style: none;
  margin: 0 0 42px;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid #d7d7d3;
}
.steps li {
  padding: 28px 26px 10px 0;
  position: relative;
}
.steps li:not(:last-child):after {
  content: "";
  position: absolute;
  right: 18px;
  top: 33px;
  width: 42px;
  height: 1px;
  background: var(--gold-gradient);
}
.steps span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  margin-bottom: 42px;
}
.steps h3 {
  font-size: 18px;
}
.steps p {
  font-size: 13px;
  color: #666;
  line-height: 1.7;
}
.products {
  background: #101011;
}
.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 330px;
  gap: 12px;
}
.category {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  padding: 30px;
  background: linear-gradient(145deg, #1d1d20, #111113);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  isolation: isolate;
}
.category::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, transparent 32%, rgba(3, 7, 13, 0.28) 58%, rgba(3, 7, 13, 0.96) 100%);
}
.category-image {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s var(--ease);
}
.category:hover .category-image {
  transform: scale(1.025);
}
.category.featured {
  grid-column: 1;
  grid-row: span 2;
}
.category-grid > .category:nth-child(2) {
  grid-column: 2;
  grid-row: 1;
}
.category.wide {
  grid-column: 2 / span 2;
  grid-row: 2;
  flex-direction: row;
  align-items: flex-end;
  justify-content: space-between;
}
.category.wide::after {
  background: linear-gradient(90deg, rgba(3, 7, 13, 0.96) 0%, rgba(3, 7, 13, 0.72) 31%, transparent 70%);
}
.category-grid > .category:nth-child(4) {
  grid-column: 3;
  grid-row: 1;
}
.category h3 {
  font-size: 24px;
  letter-spacing: -0.04em;
  margin: 7px 0;
}
.category p {
  color: var(--gray);
  font-size: 12px;
  line-height: 1.6;
  max-width: 280px;
}
.category a,
.device-card a,
.about a {
  font-size: 11px;
  color: #d8ad58;
  font-weight: 700;
}
.category small {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.14em;
}
.xiaomi {
  padding-block: 124px 136px;
  overflow: hidden;
  background: #f5f5f3;
  color: #171719;
}
.xiaomi-heading {
  margin-bottom: 58px;
}
.xiaomi-heading h2 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(52px, 6vw, 82px);
  line-height: 0.98;
  letter-spacing: -0.06em;
}
.xiaomi-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.65fr) minmax(340px, 0.85fr);
  grid-template-rows: repeat(2, 340px);
  border: 1px solid #deded9;
  background: #fff;
}
.xiaomi-product {
  position: relative;
  min-width: 0;
  overflow: hidden;
  background: #fff;
  isolation: isolate;
}
.xiaomi-product-main {
  grid-row: 1 / span 2;
  border-right: 1px solid #deded9;
}
.xiaomi-product-side + .xiaomi-product-side {
  border-top: 1px solid #deded9;
}
.xiaomi-product img {
  position: absolute;
  display: block;
  object-fit: contain;
  transition: transform 600ms var(--ease);
}
.xiaomi-product:hover img {
  transform: scale(1.025);
}
.xiaomi-product-main img {
  width: min(72%, 590px);
  height: 82%;
  right: 2%;
  bottom: 2%;
}
.xiaomi-product-side img {
  width: 44%;
  height: 86%;
  left: 1%;
  bottom: 3%;
}
.xiaomi-product-copy {
  position: absolute;
  z-index: 2;
}
.xiaomi-product-main .xiaomi-product-copy {
  left: 40px;
  bottom: 44px;
}
.xiaomi-product-side .xiaomi-product-copy {
  width: 50%;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
}
.xiaomi-product h3 {
  margin: 0;
  color: #19191b;
  font-size: clamp(22px, 2vw, 30px);
  letter-spacing: -0.045em;
}
.xiaomi-product-side h3 {
  font-size: clamp(20px, 1.7vw, 25px);
}
.xiaomi-product p {
  margin: 12px 0 24px;
  color: #5f5f64;
  font-size: 14px;
}
.xiaomi-product a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 46px;
  padding: 0 17px;
  border: 1px solid var(--gold);
  color: #8b6117;
  font-size: 11px;
  font-weight: 800;
}
.xiaomi-product-side a {
  padding-inline: 13px;
  font-size: 10px;
}
.xiaomi-product a span {
  font-size: 13px;
}
.product-orbit {
  position: absolute;
  width: 230px;
  height: 430px;
  right: -20px;
  top: -70px;
  border: 1px solid #777;
  border-radius: 42px;
  background: linear-gradient(130deg, #4d4f55, #111);
  transform: rotate(16deg);
  z-index: -1;
  box-shadow: -30px 20px 70px #000;
}
.device-stack i {
  position: absolute;
  width: 130px;
  height: 240px;
  border-radius: 23px;
  background: linear-gradient(135deg, #ccc, #303035);
  top: 20px;
  right: 70px;
  transform: rotate(13deg);
}
.device-stack i:last-child {
  right: 20px;
  top: 50px;
  background: linear-gradient(135deg, #222, #080808);
}
.product-disc {
  position: absolute;
  width: 230px;
  height: 230px;
  border-radius: 50%;
  top: -50px;
  right: -40px;
  background: radial-gradient(circle at 35% 35%, #555, #080808 66%);
  box-shadow: inset 0 0 0 1px #555;
}
.laptop-shape {
  width: 260px;
  height: 150px;
  border: 8px solid #444;
  border-bottom-width: 16px;
  background: linear-gradient(135deg, #24303e, #a76c3a);
  transform: perspective(500px) rotateY(-12deg);
  box-shadow: 0 20px 40px #000;
}
.highlights {
  border-top: 1px solid var(--border);
}
.highlights .section-heading > p {
  color: var(--gray);
}
.device-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.device-card {
  border-top: 1px solid #39393d;
  padding: 30px 20px 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.025), transparent);
}
.phone-shape {
  height: 260px;
  width: 132px;
  border-radius: 26px;
  margin: 0 auto 28px;
  border: 2px solid #4b4b51;
  position: relative;
  box-shadow: 0 25px 50px #000;
}
.phone-shape:before {
  content: "";
  position: absolute;
  left: 13px;
  top: 13px;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background:
    radial-gradient(
      circle at 30% 30%,
      #111 0 20%,
      #777 22% 26%,
      #111 28% 46%,
      transparent 48%
    ),
    radial-gradient(
      circle at 74% 70%,
      #111 0 20%,
      #777 22% 26%,
      #111 28% 46%,
      transparent 48%
    ),
    #3c3c40;
}
.graphite {
  background: linear-gradient(135deg, #5e6064, #151517);
}
.titanium {
  background: linear-gradient(135deg, #c8bba7, #575049);
}
.midnight {
  background: linear-gradient(135deg, #292d39, #090a0d);
}
.silver {
  background: linear-gradient(135deg, #eee, #777);
}
.status {
  font-size: 9px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.device-card h3 {
  font-size: 20px;
}
.device-card dl {
  font-size: 10px;
  color: var(--gray);
  margin: 24px 0;
}
.device-card dl div {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid var(--border);
  padding: 9px 0;
}
.device-card dd {
  margin: 0;
  color: #ddd;
}
.social {
  padding-block: 110px;
}
.social-grid {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 70px;
  align-items: center;
}
.social h2 {
  font-size: clamp(42px, 5vw, 66px);
}
.social-copy > p:not(.eyebrow) {
  color: #5f5f64;
  line-height: 1.7;
  margin: 25px 0 34px;
}
.social-wall {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.video-story {
  position: relative;
  min-width: 0;
  aspect-ratio: 9 / 16;
  background: #111;
  overflow: hidden;
  isolation: isolate;
}
.video-story::after {
  content: "";
  position: absolute;
  inset: 45% 0 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.82));
}
.video-story video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 500ms ease;
}
.video-story:hover video {
  transform: scale(1.025);
}
.video-story p {
  position: absolute;
  z-index: 2;
  left: 16px;
  right: 16px;
  bottom: 14px;
  margin: 0;
  color: #fff;
  font-size: 12px;
  line-height: 1.35;
}
.video-story p span {
  display: block;
  margin-bottom: 5px;
  color: var(--gold);
  font-size: 9px;
  letter-spacing: 0.18em;
}
.video-toggle {
  position: absolute;
  z-index: 3;
  top: 14px;
  right: 14px;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  color: #fff;
  background: rgba(0, 0, 0, 0.38);
  backdrop-filter: blur(8px);
  cursor: pointer;
}
.video-toggle span {
  font-size: 11px;
  transform: translateX(1px);
}
.celebrities {
  padding-block: 132px 150px;
  overflow: hidden;
  background: #050506;
}
.celebrities-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(320px, 0.65fr);
  gap: clamp(54px, 8vw, 128px);
  align-items: start;
}
.celebrities h2 {
  max-width: 900px;
  margin: 0;
  color: #fff;
  font-size: clamp(52px, 5vw, 72px);
  line-height: 0.94;
  letter-spacing: -0.055em;
  text-transform: uppercase;
  white-space: nowrap;
}
.celebrities h2 em {
  color: #fff;
  font-family: var(--font-serif);
  font-weight: 400;
  letter-spacing: -0.04em;
}
.celebrities-copy {
  padding-left: 42px;
  border-left: 1px solid rgba(210, 168, 80, 0.72);
}
.celebrities-copy h3 {
  margin: 0 0 22px;
  color: var(--gold);
  font-size: clamp(18px, 1.65vw, 24px);
  line-height: 1.35;
}
.celebrities-copy p {
  margin: 0;
  color: #b8b8bc;
  font-size: 16px;
  line-height: 1.65;
}
.celebrities-gallery {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 8px;
  align-items: start;
  margin-top: 78px;
  padding-bottom: 34px;
}
.celebrity-card {
  position: relative;
  min-width: 0;
  height: clamp(390px, 40vw, 570px);
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(210, 168, 80, 0.5);
  background: #111;
  isolation: isolate;
}
.celebrity-card:nth-child(even) {
  margin-top: 28px;
}
.celebrity-card::after {
  content: "";
  position: absolute;
  inset: 48% 0 0;
  z-index: 1;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.86));
  pointer-events: none;
}
.celebrity-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.88) contrast(1.04);
  transition: transform 600ms cubic-bezier(0.2, 0.7, 0.2, 1), filter 400ms ease;
}
.celebrity-card:nth-child(2) img,
.celebrity-card:nth-child(3) img,
.celebrity-card:nth-child(5) img {
  object-position: 68% center;
}
.celebrity-card:hover img {
  transform: scale(1.035);
  filter: saturate(1) contrast(1.02);
}
.celebrity-card figcaption {
  position: absolute;
  z-index: 2;
  left: 16px;
  right: 16px;
  bottom: 16px;
  color: #fff;
  font-size: clamp(14px, 1.25vw, 18px);
  font-weight: 750;
  line-height: 1.1;
}
.celebrity-card figcaption::after {
  content: "";
  display: block;
  width: 34px;
  height: 1px;
  margin-top: 10px;
  background: var(--gold);
}
.why {
  background: #09090a;
}
.why-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 90px;
}
.why-title {
  position: sticky;
  top: 140px;
  align-self: start;
}
.reason-list {
  border-top: 1px solid var(--border);
}
.reason-list article {
  display: flex;
  gap: 26px;
  padding: 25px 0;
  border-bottom: 1px solid var(--border);
}
.reason-list h3 {
  margin: 0 0 6px;
  font-size: 18px;
}
.reason-list p {
  margin: 0;
  color: var(--gray);
  font-size: 13px;
  line-height: 1.6;
}
.moments {
  padding-block: 80px;
}
.moment-panel {
  background: #e8e5df;
  min-height: 430px;
  padding: 64px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  overflow: hidden;
}
.moments h2 {
  font-size: clamp(38px, 4.6vw, 62px);
}
.moments p {
  color: #666;
}
.gift-sculpture {
  height: 300px;
  position: relative;
  display: grid;
  place-items: center;
}
.gift-sculpture span {
  width: 210px;
  height: 210px;
  border-radius: 42px;
  background: linear-gradient(135deg, #343438, #0d0d0f);
  transform: rotate(8deg);
  box-shadow: 30px 40px 70px rgba(0, 0, 0, 0.25);
}
.gift-sculpture:after {
  content: "";
  position: absolute;
  width: 220px;
  height: 22px;
  background: var(--gold-gradient);
  transform: rotate(-35deg);
  border-radius: 50%;
  filter: blur(0.2px);
}
.about {
  background: #121214;
}
.about-grid {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 90px;
  align-items: center;
}
.about-number {
  font-size: clamp(80px, 14vw, 190px);
  letter-spacing: -0.09em;
  color: #2d2d31;
  font-weight: 800;
}
.about-number span {
  font-size: 12px;
  color: var(--gold);
  letter-spacing: 0.1em;
  margin-left: 10px;
}
.about p:not(.eyebrow) {
  color: var(--gray);
  line-height: 1.8;
  max-width: 680px;
}
.location-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 14px;
}
.location-info,
.map-placeholder {
  min-height: 440px;
  padding: 44px;
  border: 1px solid #d6d4ce;
}
.location-info h3 {
  font-size: 24px;
}
.location-info dl div {
  border-top: 1px solid #dedcd6;
  padding: 18px 0;
}
.location-info dt {
  font-size: 10px;
  text-transform: uppercase;
  color: #777;
}
.location-info dd {
  margin: 6px 0 0;
  font-size: 14px;
}
.location-info address {
  font-style: normal;
}
.map-placeholder {
  position: relative;
  overflow: hidden;
  background: #e9e7e1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: inherit;
  text-decoration: none;
}
.map-lines {
  position: absolute;
  inset: 0;
  opacity: 0.4;
  background:
    linear-gradient(35deg, transparent 46%, #aaa 47% 48%, transparent 49%),
    linear-gradient(-40deg, transparent 48%, #bbb 49% 50%, transparent 51%);
  background-size:
    120px 100px,
    160px 130px;
}
.map-pin {
  z-index: 2;
  width: 58px;
  height: 58px;
  background: var(--black);
  color: #fff;
  border-radius: 50% 50% 50% 4px;
  transform: rotate(-45deg);
  display: grid;
  place-items: center;
  font-weight: 800;
}
.map-pin::first-letter {
  transform: rotate(45deg);
}
.map-placeholder p {
  z-index: 2;
  margin-top: 44px;
  font-size: 11px;
  background: var(--white);
  padding: 8px;
}
.faq {
  padding-top: 50px;
}
.faq-grid {
  display: grid;
  grid-template-columns: 0.65fr 1.35fr;
  gap: 80px;
}
.faq h2 {
  font-size: clamp(36px, 4vw, 54px);
}
details {
  border-top: 1px solid #d7d5d0;
}
details:last-child {
  border-bottom: 1px solid #d7d5d0;
}
summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  font-weight: 700;
}
summary::-webkit-details-marker {
  display: none;
}
summary span {
  color: var(--gold);
  font-size: 20px;
  transition: 0.2s;
}
details[open] summary span {
  transform: rotate(45deg);
}
details p {
  margin: 0;
  padding: 0 40px 22px 0;
  color: #666;
  font-size: 13px;
  line-height: 1.7;
}
.resellers {
  padding-block: 132px;
  overflow: hidden;
  background: #050506;
}
.resellers-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(480px, 1.1fr);
  gap: clamp(70px, 9vw, 140px);
  align-items: start;
}
.resellers-heading {
  padding-right: clamp(20px, 4vw, 64px);
  border-right: 1px solid rgba(195, 146, 46, 0.65);
}
.resellers-heading h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(52px, 5.6vw, 80px);
  font-weight: 500;
  line-height: 0.96;
  letter-spacing: -0.06em;
  text-transform: uppercase;
}
.resellers-heading h2::after {
  content: "";
  display: block;
  width: 58px;
  height: 2px;
  margin-top: 30px;
  background: var(--gold-gradient);
}
.resellers-heading p {
  max-width: 500px;
  margin: 24px 0 0;
  color: #c4c4c7;
  font-size: 17px;
  line-height: 1.7;
}
.resellers-conditions {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(195, 146, 46, 0.5);
}
.resellers-conditions li {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 24px;
  align-items: center;
  min-height: 94px;
  border-bottom: 1px solid rgba(195, 146, 46, 0.42);
}
.resellers-conditions span {
  color: var(--gold);
  font-size: 30px;
  font-weight: 500;
  letter-spacing: -0.05em;
}
.resellers-conditions p {
  margin: 0;
  padding-left: 24px;
  border-left: 1px solid rgba(195, 146, 46, 0.55);
  color: #e6e6e8;
  font-size: 15px;
  line-height: 1.55;
}
.resellers-access {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 56px;
  align-items: center;
  margin-top: 64px;
  padding: 30px 32px;
  border: 1px solid rgba(195, 146, 46, 0.72);
}
.resellers-access p {
  max-width: 680px;
  margin: 0;
  padding-left: 24px;
  border-left: 1px solid var(--gold);
  color: #e7e7e9;
  font-size: 16px;
  line-height: 1.65;
}
.resellers-access strong {
  color: var(--gold-light);
}
.resellers-access .button {
  min-width: 330px;
  min-height: 58px;
  text-transform: uppercase;
}
.final-cta {
  padding: 140px 0;
  text-align: center;
  background:
    radial-gradient(
      circle at 50% 130%,
      rgba(195, 146, 46, 0.2),
      transparent 48%
    ),
    #070708;
}
.final-cta h2 {
  font-size: clamp(54px, 7vw, 94px);
}
.final-cta p {
  color: var(--gray);
  max-width: 600px;
  margin: 28px auto;
}
.final-cta .large {
  min-height: 58px;
  padding-inline: 30px;
}
.final-cta small {
  display: block;
  color: #777;
  margin-top: 14px;
}
footer {
  background: #050506;
  border-top: 1px solid var(--border);
  padding: 70px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 40px;
}
.footer-grid > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  color: #8f8f96;
  font-size: 11px;
}
.footer-grid b {
  color: #fff;
  margin-bottom: 8px;
}
.footer-grid p {
  color: #777;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid var(--border);
  margin-top: 50px;
  padding-top: 24px;
  color: #666;
  font-size: 10px;
}
.mobile-wa {
  display: none;
}
.reveal {
  opacity: 1;
  transform: none;
}
.reveal.visible {
  animation: soft-reveal 0.72s var(--ease) both;
}
@keyframes scroll {
  0%,
  100% {
    opacity: 0.2;
    transform: translateY(0);
  }
  50% {
    opacity: 1;
    transform: translateY(6px);
  }
}
@keyframes soft-reveal {
  from {
    opacity: 0.78;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@media (min-width: 981px) and (max-width: 1180px) {
  .hero-copy {
    max-width: 520px;
  }
  .hero-proof {
    grid-template-columns: repeat(2, minmax(0, 230px));
    gap: 18px 28px;
    margin-top: 34px;
  }
  .hero h1 {
    max-width: 600px;
    font-size: clamp(54px, 6.1vw, 66px);
  }
  .hero-media {
    width: 100%;
  }
}
@media (max-width: 980px) {
  :root {
    --container: min(100% - 48px, 880px);
  }
  .hero-media {
    transform: none;
    -webkit-mask-image: none;
    mask-image: none;
  }
  .desktop-nav,
  .header-cta {
    display: none;
  }
  .menu-toggle {
    display: flex;
    margin-left: auto;
    width: 48px;
    height: 48px;
    border: 0;
    background: transparent;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 7px;
  }
  .menu-toggle span {
    width: 24px;
    height: 1px;
    background: #fff;
    transition: 0.25s;
  }
  .menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(4px) rotate(45deg);
  }
  .menu-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-4px) rotate(-45deg);
  }
  .mobile-nav {
    position: fixed;
    top: 77px;
    inset-inline: 0;
    background: rgba(11, 11, 12, 0.98);
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 0;
    transform: translateY(-140%);
    transition: 0.35s var(--ease);
    border-bottom: 1px solid var(--border);
  }
  .mobile-nav.open {
    transform: none;
  }
  .mobile-nav a {
    padding: 15px 0;
    border-bottom: 1px solid var(--border);
  }
  .hero-proof {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: min(100%, 620px);
  }
  .trust-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    min-height: 0;
  }
  .trust-grid div {
    min-height: 76px;
    padding: 14px 12px;
    text-align: center;
  }
  .experience-grid,
  .social-grid,
  .why-grid,
  .about-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }
  .why-title {
    position: static;
  }
  .experience-grid {
    gap: 52px;
  }
  .editorial-media img {
    height: 430px;
    object-position: center 40%;
  }
  .section-heading.split {
    align-items: flex-start;
  }
  .category-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .category-grid > .category,
  .category.featured,
  .category.wide {
    grid-column: auto;
    grid-row: auto;
  }
  .device-list {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .footer-grid > div:first-child {
    grid-column: span 2;
  }
  .location-grid {
    grid-template-columns: 1fr;
  }
  .location-info,
  .map-placeholder {
    min-height: 360px;
  }
  .about-number {
    display: none;
  }
}

@media (max-width: 980px) and (orientation: portrait), (max-width: 820px) {
  .hero {
    min-height: 940px;
    align-items: flex-start;
  }
  .hero-media {
    top: auto;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 52%;
    object-fit: cover;
    object-position: 58% center;
  }
  .hero-shade {
    background: linear-gradient(
      180deg,
      rgba(5, 5, 6, 0.9) 0%,
      rgba(5, 5, 6, 0.9) 54%,
      rgba(5, 5, 6, 0.34) 72%,
      rgba(5, 5, 6, 0.18) 88%,
      rgba(5, 5, 6, 0.5) 100%
    );
  }
  .hero-content {
    padding-top: 132px;
  }
  .hero h1 {
    max-width: 650px;
    font-size: clamp(52px, 8vw, 68px);
  }
  .hero-copy {
    max-width: 620px;
  }
  .hero-proof {
    margin-top: 38px;
  }
  .scroll-cue {
    display: none;
  }
  .section-heading.split {
    display: block;
  }
  .section-heading.split > p {
    margin-top: 24px;
  }
  .steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 28px;
  }
  .steps li {
    border-bottom: 1px solid #ddd;
    padding-bottom: 24px;
  }
  .steps li::after {
    display: none;
  }
  .moment-panel {
    padding: 48px;
  }
}
@media (max-width: 640px) {
  :root {
    --container: calc(100% - 32px);
  }
  .site-header {
    height: 68px;
  }
  .mobile-nav {
    top: 67px;
  }
  .hero {
    min-height: 860px;
    align-items: flex-start;
  }
  .hero-media {
    width: 100%;
    height: 48%;
    top: auto;
    right: 0;
    bottom: 0;
    object-fit: cover;
    object-position: 58% center;
  }
  .hero-shade {
    background: linear-gradient(
      180deg,
      rgba(5, 5, 6, 0.9) 0%,
      rgba(5, 5, 6, 0.9) 57%,
      rgba(5, 5, 6, 0.32) 73%,
      rgba(5, 5, 6, 0.16) 88%,
      rgba(5, 5, 6, 0.52) 100%
    );
  }
  .hero-content {
    padding-top: 125px;
  }
  .hero h1 {
    font-size: 48px;
  }
  .hero-copy {
    font-size: 15px;
    line-height: 1.6;
    margin-block: 22px;
  }
  .actions {
    flex-direction: column;
    align-items: stretch;
  }
  .hero-proof {
    grid-template-columns: 1fr 1fr;
    gap: 20px 12px;
    margin-top: 36px;
  }
  .scroll-cue {
    display: none;
  }
  .trust-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    min-height: 80px;
  }
  .trust-grid div {
    min-height: 68px;
    justify-content: flex-start;
    text-align: left;
  }
  .section-dark,
  .section-light {
    padding: 82px 0;
  }
  .experience-grid {
    gap: 40px;
  }
  .editorial-media img {
    height: 340px;
    object-position: center 42%;
  }
  .pillars {
    grid-template-columns: 1fr;
  }
  .pillars article {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 0 12px;
  }
  .pillars h3 {
    margin: 0;
  }
  .pillars p {
    grid-column: 2;
  }
  .section-heading.split {
    display: block;
  }
  .section-heading > p {
    margin-top: 22px;
  }
  .steps {
    grid-template-columns: 1fr;
  }
  .steps li {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 0 14px;
    border-bottom: 1px solid #ddd;
  }
  .steps li:after {
    display: none;
  }
  .steps span {
    grid-row: span 2;
    margin: 0;
  }
  .steps h3 {
    margin-top: 5px;
  }
  .steps p {
    grid-column: 2;
    margin-top: 0;
  }
  .category-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 300px;
    min-width: 0;
  }
  .category-grid > .category,
  .category-grid > .category:nth-child(2),
  .category-grid > .category:nth-child(4) {
    grid-column: auto;
    grid-row: auto;
    min-width: 0;
  }
  .category.wide {
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-end;
  }
  .category.wide::after {
    background: linear-gradient(180deg, transparent 30%, rgba(3, 7, 13, 0.3) 56%, rgba(3, 7, 13, 0.96) 100%);
  }
  .device-list {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    margin-inline: -16px;
    padding-inline: 16px;
  }
  .device-card {
    min-width: 78vw;
    scroll-snap-align: start;
  }
  .social-grid {
    gap: 44px;
  }
  .social-wall {
    display: flex;
    width: auto;
    overflow-x: auto;
    margin-inline: -16px;
    padding: 0 16px 12px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }
  .social-wall::-webkit-scrollbar {
    display: none;
  }
  .video-story {
    flex: 0 0 min(76vw, 290px);
    scroll-snap-align: center;
  }
  .why-grid {
    gap: 46px;
  }
  .moment-panel {
    padding: 36px 28px;
    grid-template-columns: 1fr;
    min-height: 620px;
  }
  .gift-sculpture {
    height: 230px;
  }
  .location-info,
  .map-placeholder {
    padding: 28px;
    min-height: 360px;
  }
  .faq-grid {
    gap: 35px;
  }
  .final-cta {
    padding: 100px 0 130px;
  }
  .final-cta h2 {
    font-size: 52px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-grid > div:first-child {
    grid-column: span 2;
  }
  .footer-bottom {
    display: block;
    line-height: 2;
  }
  .mobile-wa {
    position: fixed;
    z-index: 90;
    right: 16px;
    bottom: max(16px, env(safe-area-inset-bottom));
    width: 56px;
    height: 56px;
    background: #25d366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.28),
      0 10px 28px rgba(0, 0, 0, 0.34);
    transition:
      opacity 0.25s ease,
      transform 0.25s ease,
      background-color 0.2s ease;
  }
  .mobile-wa:hover {
    background: #20bd5a;
  }
  .mobile-wa:active {
    transform: scale(0.94);
  }
  .mobile-wa svg {
    width: 30px;
    height: 30px;
  }
  .social-copy h2 {
    font-size: 42px;
  }
}
@media (max-width: 640px) and (max-height: 700px) {
  .mobile-wa:not(.is-visible) {
    opacity: 0;
    transform: translateY(calc(100% + 20px));
    pointer-events: none;
  }
}
@media (max-width: 360px) {
  .hero h1 {
    font-size: 41px;
  }
  .hero-proof {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid > div:first-child {
    grid-column: auto;
  }
}
@media (max-width: 980px) {
  .resellers {
    padding-block: 100px;
  }
  .resellers-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .resellers-heading {
    max-width: 720px;
    padding: 0;
    border-right: 0;
    border-bottom: 0;
  }
  .resellers-access {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .resellers-access .button {
    width: fit-content;
  }
  .xiaomi {
    padding-block: 100px 112px;
  }
  .xiaomi-showcase {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: 580px 390px;
  }
  .xiaomi-product-main {
    grid-column: 1 / -1;
    grid-row: 1;
    border-right: 0;
    border-bottom: 1px solid #deded9;
  }
  .xiaomi-product-side + .xiaomi-product-side {
    border-top: 0;
    border-left: 1px solid #deded9;
  }
  .xiaomi-product-side img {
    width: 76%;
    height: 67%;
    left: 12%;
    top: 2%;
    bottom: auto;
  }
  .xiaomi-product-side .xiaomi-product-copy {
    width: auto;
    left: 26px;
    right: 26px;
    top: auto;
    bottom: 24px;
    transform: none;
  }
  .celebrities {
    padding-block: 100px 112px;
  }
  .celebrities-intro {
    grid-template-columns: 1fr;
    gap: 46px;
  }
  .celebrities-copy {
    max-width: 620px;
  }
  .celebrities-gallery {
    display: flex;
    width: auto;
    gap: 12px;
    overflow-x: auto;
    margin-inline: calc((100vw - var(--container)) / -2);
    padding-inline: calc((100vw - var(--container)) / 2);
    padding-bottom: 18px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }
  .celebrities-gallery::-webkit-scrollbar {
    display: none;
  }
  .celebrity-card,
  .celebrity-card:nth-child(even) {
    flex: 0 0 min(40vw, 300px);
    height: 480px;
    margin-top: 0;
    scroll-snap-align: center;
  }
}
@media (max-width: 640px) {
  .resellers {
    padding-block: 82px;
  }
  .resellers-heading h2 {
    font-size: clamp(44px, 13vw, 58px);
  }
  .resellers-heading p {
    font-size: 15px;
  }
  .resellers-conditions li {
    grid-template-columns: 48px 1fr;
    gap: 12px;
    min-height: 100px;
  }
  .resellers-conditions span {
    font-size: 23px;
  }
  .resellers-conditions p {
    padding-left: 16px;
    font-size: 14px;
  }
  .resellers-access {
    margin-top: 44px;
    padding: 24px 20px;
  }
  .resellers-access p {
    padding-left: 16px;
    font-size: 14px;
  }
  .resellers-access .button {
    width: 100%;
    min-width: 0;
    min-height: 56px;
    padding-inline: 16px;
    font-size: 11px;
  }
  .xiaomi {
    padding-block: 82px 92px;
  }
  .xiaomi-heading {
    margin-bottom: 42px;
  }
  .xiaomi-heading h2 {
    font-size: clamp(46px, 14vw, 62px);
  }
  .xiaomi-showcase {
    display: block;
  }
  .xiaomi-product,
  .xiaomi-product-main,
  .xiaomi-product-side {
    height: 520px;
    border-right: 0;
    border-left: 0;
    border-bottom: 1px solid #deded9;
  }
  .xiaomi-product:last-child {
    border-bottom: 0;
  }
  .xiaomi-product-main img,
  .xiaomi-product-side img {
    width: 88%;
    height: 69%;
    left: 6%;
    right: auto;
    top: 2%;
    bottom: auto;
  }
  .xiaomi-product-main .xiaomi-product-copy,
  .xiaomi-product-side .xiaomi-product-copy {
    width: auto;
    left: 24px;
    right: 24px;
    top: auto;
    bottom: 25px;
    transform: none;
  }
  .xiaomi-product p {
    margin-bottom: 18px;
  }
  .celebrities {
    padding-block: 82px 92px;
  }
  .celebrities h2 {
    font-size: clamp(42px, 12vw, 58px);
    line-height: 0.98;
    white-space: normal;
  }
  .celebrities-copy {
    padding-left: 22px;
  }
  .celebrities-copy h3 {
    font-size: 18px;
  }
  .celebrities-copy p {
    font-size: 15px;
  }
  .celebrities-gallery {
    margin-top: 52px;
  }
  .celebrity-card,
  .celebrity-card:nth-child(even) {
    flex-basis: min(76vw, 286px);
    height: 430px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    animation: none !important;
    transition: none !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}
