:root {
  --paper: #f8f6fb;
  --white: #fff;
  --ink: #17151b;
  --muted: #6e6975;
  --line: rgba(31, 26, 39, 0.12);
  --purple: #7554f5;
  --purple-dark: #5131d8;
  --pink: #eaa0c5;
  --night: #15121b;
  --radius-lg: 34px;
  --font-cn: "Noto Sans SC", sans-serif;
  --font-en: "DM Sans", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-cn);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

button {
  color: inherit;
  font: inherit;
}

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

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 50%;
  width: min(1440px, calc(100% - 72px));
  height: 104px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font: 600 21px/1 var(--font-en);
  letter-spacing: -0.6px;
}

.brand-mark {
  width: 39px;
  height: 39px;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(28px, 3.3vw, 56px);
  margin-left: 8%;
}

.desktop-nav a {
  position: relative;
  color: #3c3842;
  font-size: 14px;
}

.desktop-nav a::after {
  position: absolute;
  content: "";
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  background: var(--purple);
  transform: scaleX(0);
  transition: transform 0.25s ease;
}

.desktop-nav a:hover::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 28px;
}

.lang-switch {
  display: flex;
  align-items: center;
  gap: 8px;
  border: 0;
  background: transparent;
  font-size: 13px;
  cursor: pointer;
}

.lang-switch i {
  width: 1px;
  height: 13px;
  background: #b4b0b8;
  transform: rotate(16deg);
}

.lang-switch .active {
  color: var(--purple-dark);
  font-weight: 600;
}

.nav-cta,
.primary-button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 22px;
  padding: 0 25px;
  color: white;
  border-radius: 999px;
  background: var(--ink);
  font-size: 14px;
  box-shadow: 0 12px 30px rgba(37, 26, 70, 0.14);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.nav-cta:hover,
.primary-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(74, 47, 157, 0.2);
}

.menu-button,
.mobile-nav {
  display: none;
}

.mobile-lang-switch {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0 0;
  color: var(--purple-dark);
  border: 0;
  border-top: 1px solid var(--line);
  background: transparent;
  font: 500 12px/1 var(--font-en);
  cursor: pointer;
}

.hero {
  position: relative;
  min-height: 900px;
  padding: 104px 0 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 43%, rgba(163, 119, 255, 0.12), transparent 26%),
    linear-gradient(130deg, #faf9fb 0%, #f7f4fb 52%, #f3f0fa 100%);
}

.hero::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(70, 55, 94, 0.14), transparent);
}

.hero-grid {
  position: relative;
  z-index: 2;
  width: min(1440px, calc(100% - 72px));
  min-height: 796px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
}

.hero-copy {
  padding: 18px 0 0 1.4vw;
}

.eyebrow,
.section-kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #6f58bd;
  font: 500 12px/1 var(--font-en);
  letter-spacing: 0.15em;
}

.eyebrow span {
  width: 34px;
  height: 1px;
  background: currentColor;
}

.hero h1 {
  margin: 32px 0 24px;
  font-size: clamp(56px, 5.4vw, 88px);
  font-weight: 500;
  line-height: 1.13;
  letter-spacing: -0.075em;
}

.hero h1 em {
  color: var(--purple);
  font-style: normal;
}

.hero-lead {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 2;
  letter-spacing: 0.015em;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-top: 42px;
}

.primary-button {
  min-width: 190px;
  min-height: 58px;
  background: linear-gradient(120deg, #6c46ed, #815cf7);
}

.text-link {
  display: inline-flex;
  gap: 22px;
  align-items: center;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(23, 21, 27, 0.4);
  font-size: 14px;
}

.hero-notes {
  display: flex;
  gap: 30px;
  margin-top: 65px;
}

.hero-notes div {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding-right: 25px;
  border-right: 1px solid var(--line);
}

.hero-notes div:last-child {
  border: 0;
  padding-right: 0;
}

.hero-notes b {
  color: #9b8fa8;
  font: 500 10px/1 var(--font-en);
}

.hero-notes span {
  color: #49444e;
  font-size: 12px;
  line-height: 1.7;
}

.hero-product {
  position: relative;
  min-height: 690px;
}

.phone {
  position: absolute;
  z-index: 3;
  width: 287px;
  padding: 9px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.95);
  border-radius: 51px;
  background: linear-gradient(145deg, #fdfdff, #c7c1d0);
  box-shadow:
    0 40px 80px rgba(49, 35, 86, 0.18),
    inset 0 0 0 1px rgba(85, 70, 105, 0.2);
}

.phone::after {
  position: absolute;
  z-index: 3;
  inset: 0;
  content: "";
  pointer-events: none;
  border-radius: inherit;
  box-shadow: inset 7px 0 11px rgba(255, 255, 255, 0.65), inset -5px 0 8px rgba(87, 76, 103, 0.12);
}

.phone img {
  width: 100%;
  border-radius: 42px;
}

.phone-speaker {
  position: absolute;
  z-index: 5;
  top: 17px;
  left: 50%;
  width: 82px;
  height: 23px;
  transform: translateX(-50%);
  border-radius: 20px;
  background: #0f0e12;
}

.phone-back {
  top: 63px;
  left: 11%;
  transform: rotate(-8deg);
}

.phone-front {
  z-index: 4;
  top: 21px;
  right: 5%;
  transform: rotate(6deg);
}

.orbit {
  position: absolute;
  z-index: 1;
  border: 2px solid rgba(139, 91, 246, 0.26);
  border-radius: 50%;
  filter: drop-shadow(0 0 18px rgba(182, 119, 255, 0.35));
}

.orbit-one {
  top: 143px;
  right: -18%;
  width: 740px;
  height: 310px;
  transform: rotate(-13deg);
}

.orbit-two {
  top: 189px;
  right: -23%;
  width: 740px;
  height: 260px;
  border-color: rgba(235, 145, 196, 0.24);
  transform: rotate(13deg);
}

.pearl {
  position: absolute;
  z-index: 2;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #fff, #e7dcfb 42%, #a785ee 100%);
  box-shadow: 0 15px 35px rgba(100, 70, 160, 0.22);
}

.pearl-one {
  top: 72px;
  right: 1%;
  width: 31px;
  height: 31px;
}

.pearl-two {
  right: 47%;
  bottom: 60px;
  width: 17px;
  height: 17px;
}

.product-label {
  position: absolute;
  z-index: 6;
  min-width: 128px;
  padding: 13px 17px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(14px);
  box-shadow: 0 12px 28px rgba(56, 43, 87, 0.1);
}

.product-label span {
  display: block;
  margin-bottom: 5px;
  color: #8d7ba0;
  font: 500 9px/1 var(--font-en);
  letter-spacing: 0.16em;
}

.product-label strong {
  font-size: 13px;
  font-weight: 500;
}

.label-top {
  top: 164px;
  left: 1%;
}

.label-bottom {
  right: -1%;
  bottom: 119px;
}

.ambient {
  position: absolute;
  border-radius: 50%;
  filter: blur(1px);
}

.ambient-one {
  right: -100px;
  bottom: -330px;
  width: 700px;
  height: 700px;
  border: 85px solid rgba(134, 85, 245, 0.08);
}

.ambient-two {
  right: 25%;
  bottom: -140px;
  width: 250px;
  height: 250px;
  background: rgba(233, 145, 195, 0.08);
  filter: blur(55px);
}

.hero-index {
  position: absolute;
  z-index: 4;
  right: 4.5%;
  bottom: 38px;
  display: flex;
  gap: 13px;
  align-items: center;
  color: #847c8e;
  font: 500 10px/1 var(--font-en);
}

.hero-index span {
  width: 48px;
  height: 1px;
  background: #a79eae;
}

.section-shell {
  width: min(1320px, calc(100% - 96px));
  margin-right: auto;
  margin-left: auto;
}

.intro {
  padding-top: 130px;
  padding-bottom: 150px;
}

.section-kicker {
  justify-content: space-between;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
  color: #7e7488;
}

.section-kicker span {
  color: #aaa3b0;
}

.intro-heading {
  display: grid;
  grid-template-columns: 1fr 0.64fr;
  align-items: end;
  gap: 40px;
  margin: 64px 0 80px;
}

.intro-heading h2,
.trust-heading h2,
.showcase-title h2,
.craft h2,
.download h2 {
  margin: 0;
  font-size: clamp(42px, 4vw, 65px);
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: -0.055em;
}

.intro-heading p,
.showcase-title > p:last-child {
  max-width: 470px;
  margin: 0 0 7px auto;
  color: var(--muted);
  font-size: 15px;
  line-height: 2;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 19px;
}

.feature-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(38, 31, 47, 0.08);
  border-radius: var(--radius-lg);
  background: #fdfcfe;
  box-shadow: 0 22px 60px rgba(49, 37, 68, 0.05);
}

.card-number {
  position: absolute;
  z-index: 4;
  top: 25px;
  left: 27px;
  color: rgba(255, 255, 255, 0.85);
  font: 500 11px/1 var(--font-en);
}

.mini-stage {
  position: relative;
  height: 360px;
  overflow: hidden;
}

.portrait-stage {
  background:
    radial-gradient(circle at 73% 20%, rgba(255, 255, 255, 0.72), transparent 27%),
    linear-gradient(145deg, #ddd0f1 0%, #b69ada 47%, #8063ab 100%);
}

.portrait-aura {
  position: absolute;
  top: 54px;
  left: 50%;
  width: 330px;
  height: 205px;
  transform: translateX(-50%);
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 50%;
  box-shadow: 0 0 55px rgba(255, 255, 255, 0.22);
}

.app-screen {
  position: absolute;
  width: 174px;
  height: 355px;
  padding: 5px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.88);
  border-radius: 25px;
  background: rgba(255, 255, 255, 0.52);
  box-shadow: 0 24px 45px rgba(46, 29, 76, 0.24);
}

.app-screen::after {
  position: absolute;
  inset: 5px;
  content: "";
  pointer-events: none;
  border-radius: 20px;
  box-shadow: inset 0 0 0 1px rgba(91, 77, 104, 0.08);
}

.app-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

.app-screen > span {
  position: absolute;
  z-index: 3;
  top: 13px;
  right: 13px;
  padding: 5px 8px;
  color: #4f4657;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(8px);
  font-size: 9px;
}

.app-screen-skin {
  bottom: -58px;
  left: 26px;
  transform: rotate(-7deg);
}

.app-screen-eyes {
  z-index: 2;
  top: 27px;
  right: 25px;
  transform: rotate(5deg);
}

.portrait-mode {
  position: absolute;
  z-index: 4;
  right: 24px;
  bottom: 18px;
  display: flex;
  align-items: center;
  gap: 7px;
  color: white;
  font: 500 8px/1 var(--font-en);
  letter-spacing: 0.13em;
  text-shadow: 0 1px 5px rgba(30, 18, 48, 0.3);
}

.portrait-mode i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 8px #fff;
}

.stage-chip {
  position: absolute;
  right: 23px;
  bottom: 20px;
  padding: 9px 13px;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 99px;
  background: rgba(42, 29, 65, 0.38);
  backdrop-filter: blur(9px);
  font-size: 10px;
}

.light-stage {
  background:
    radial-gradient(circle at 78% 28%, rgba(234, 174, 113, 0.18), transparent 28%),
    linear-gradient(145deg, #19161c, #282127);
}

.light-beam {
  position: absolute;
  top: -48px;
  right: -37px;
  width: 280px;
  height: 460px;
  transform: rotate(18deg);
  background: linear-gradient(90deg, transparent, rgba(239, 181, 117, 0.16), transparent);
  filter: blur(11px);
}

.light-photo {
  position: absolute;
  width: 171px;
  height: 280px;
  margin: 0;
  padding: 5px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.09);
  box-shadow: 0 23px 45px rgba(0, 0, 0, 0.32);
}

.light-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 19px;
}

.light-photo figcaption {
  position: absolute;
  right: 12px;
  bottom: 12px;
  left: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 9px;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 9px;
  background: rgba(15, 13, 16, 0.62);
  backdrop-filter: blur(8px);
  font-size: 9px;
}

.light-photo figcaption span {
  color: rgba(255, 255, 255, 0.62);
  font: 500 7px/1 var(--font-en);
  letter-spacing: 0.12em;
}

.light-before {
  top: 48px;
  left: 28px;
  transform: rotate(-6deg);
}

.light-before img {
  filter: saturate(0.78) brightness(0.9);
}

.light-after {
  z-index: 2;
  top: 28px;
  right: 27px;
  transform: rotate(5deg);
}

.compare-axis {
  position: absolute;
  z-index: 4;
  top: 147px;
  left: 50%;
  display: grid;
  width: 39px;
  height: 39px;
  transform: translateX(-50%);
  place-items: center;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 50%;
  background: rgba(27, 22, 29, 0.72);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(10px);
  font-size: 14px;
}

.light-mode {
  position: absolute;
  z-index: 4;
  right: 25px;
  bottom: 16px;
  color: rgba(255, 255, 255, 0.76);
  font: 500 8px/1 var(--font-en);
  letter-spacing: 0.12em;
}

.video-stage {
  background:
    radial-gradient(circle at 72% 26%, rgba(255, 255, 255, 0.82), transparent 24%),
    linear-gradient(145deg, #eee9f7, #d8cbed);
}

.video-aura {
  position: absolute;
  top: 50px;
  left: 50%;
  width: 330px;
  height: 205px;
  transform: translateX(-50%);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  box-shadow: 0 0 60px rgba(255, 255, 255, 0.28);
}

.video-screen {
  position: absolute;
  width: 174px;
  height: 323px;
  margin: 0;
  padding: 5px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 25px;
  background: rgba(255, 255, 255, 0.54);
  box-shadow: 0 24px 45px rgba(53, 38, 82, 0.23);
}

.video-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

.video-screen figcaption {
  position: absolute;
  right: 11px;
  bottom: 11px;
  left: 11px;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 7px 8px;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 9px;
  background: rgba(21, 17, 25, 0.64);
  backdrop-filter: blur(8px);
  font-size: 8px;
}

.video-screen figcaption i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #9a74ff;
  box-shadow: 0 0 7px #a98aff;
}

.video-screen figcaption span {
  margin-left: auto;
  color: rgba(255, 255, 255, 0.62);
  font: 500 7px/1 var(--font-en);
}

.frame-one {
  top: 43px;
  left: 25px;
  transform: rotate(-6deg);
}

.frame-two {
  z-index: 2;
  top: 24px;
  right: 24px;
  transform: rotate(5deg);
}

.play-button {
  position: absolute;
  z-index: 4;
  top: 143px;
  left: 50%;
  display: grid;
  width: 48px;
  height: 48px;
  transform: translateX(-50%);
  place-items: center;
  color: var(--purple-dark);
  border: 1px solid rgba(117, 84, 245, 0.14);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 8px 25px rgba(46, 30, 81, 0.15);
  backdrop-filter: blur(8px);
  font-size: 13px;
  text-indent: 3px;
}

.timeline {
  position: absolute;
  z-index: 5;
  right: 28px;
  bottom: 17px;
  left: 28px;
  height: 2px;
  background: rgba(63, 49, 80, 0.24);
}

.timeline i {
  display: block;
  width: 62%;
  height: 100%;
  background: var(--purple);
}

.timeline b {
  position: absolute;
  top: 50%;
  left: 62%;
  width: 7px;
  height: 7px;
  transform: translate(-50%, -50%);
  border: 2px solid white;
  border-radius: 50%;
  background: var(--purple);
  box-shadow: 0 2px 6px rgba(56, 37, 90, 0.3);
}

.video-mode {
  position: absolute;
  z-index: 5;
  right: 27px;
  bottom: 28px;
  color: rgba(71, 57, 88, 0.64);
  font: 500 7px/1 var(--font-en);
  letter-spacing: 0.12em;
}

.card-copy {
  min-height: 254px;
  padding: 32px 31px 30px;
}

.card-copy h3 {
  margin: 0 0 14px;
  font-size: 25px;
  font-weight: 500;
  letter-spacing: -0.04em;
}

.card-copy p {
  min-height: 78px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.9;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 22px;
}

.tags span {
  padding: 7px 11px;
  color: #6b6272;
  border: 1px solid rgba(55, 46, 65, 0.12);
  border-radius: 99px;
  font-size: 10px;
}

.craft {
  position: relative;
  padding: 140px 0;
  overflow: hidden;
  color: white;
  background: var(--night);
}

.craft::before {
  position: absolute;
  top: -40%;
  left: -13%;
  width: 600px;
  height: 600px;
  content: "";
  border-radius: 50%;
  background: rgba(107, 65, 220, 0.11);
  filter: blur(70px);
}

.craft-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 70px;
  align-items: center;
}

.section-kicker.light {
  color: #a99bc5;
  border-color: rgba(255, 255, 255, 0.15);
}

.craft-copy h2 {
  margin-top: 62px;
}

.craft-copy > p {
  max-width: 480px;
  margin: 32px 0 40px;
  color: #a9a4af;
  font-size: 14px;
  line-height: 2.1;
}

.line-button {
  display: inline-flex;
  gap: 35px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.48);
  font-size: 13px;
}

.craft-visual {
  position: relative;
  min-height: 580px;
}

.craft-word {
  position: absolute;
  top: 0;
  left: 5%;
  color: rgba(255, 255, 255, 0.035);
  font: 600 clamp(80px, 10vw, 155px)/0.8 var(--font-en);
  letter-spacing: -0.08em;
}

.craft-word.bottom {
  top: auto;
  right: 0;
  bottom: 0;
  left: auto;
}

.craft-orb {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 355px;
  height: 355px;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
}

.orb-core {
  position: absolute;
  inset: 65px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 30%, #fff 0 2%, #dda6ce 11%, #8c62ee 38%, #332448 67%, #141117 74%);
  box-shadow:
    0 0 80px rgba(133, 80, 236, 0.5),
    0 0 160px rgba(221, 132, 188, 0.18);
}

.orb-ring {
  position: absolute;
  border: 1px solid rgba(195, 152, 244, 0.38);
  border-radius: 50%;
}

.ring-a {
  top: 111px;
  right: -65px;
  left: -65px;
  height: 130px;
  transform: rotate(-14deg);
}

.ring-b {
  top: 90px;
  right: -37px;
  left: -37px;
  height: 175px;
  border-color: rgba(237, 154, 204, 0.24);
  transform: rotate(16deg);
}

.craft-orb > span {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font: 500 13px/1.35 var(--font-en);
  letter-spacing: 0.22em;
  text-align: center;
}

.showcase {
  padding-top: 140px;
  padding-bottom: 145px;
}

.showcase-grid {
  display: grid;
  grid-template-columns: 0.74fr 1.26fr;
  gap: 80px;
  align-items: center;
  margin-top: 70px;
}

.overline {
  margin: 0 0 24px;
  color: #7b68a3;
  font: 500 11px/1 var(--font-en);
  letter-spacing: 0.15em;
}

.showcase-title > p:last-child {
  margin: 28px 0 0;
}

.showcase-phones {
  position: relative;
  min-height: 630px;
  border-radius: 42px;
  background:
    radial-gradient(circle at 75% 25%, rgba(238, 159, 206, 0.32), transparent 29%),
    radial-gradient(circle at 25% 70%, rgba(132, 93, 240, 0.24), transparent 34%),
    #ece7f3;
  overflow: hidden;
}

.showcase-phones::before {
  position: absolute;
  top: -150px;
  left: 44%;
  width: 1px;
  height: 950px;
  content: "";
  background: rgba(255, 255, 255, 0.8);
  transform: rotate(22deg);
}

.flat-phone {
  position: absolute;
  width: 270px;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 47px;
  background: #d8d3df;
  box-shadow: 0 35px 65px rgba(41, 31, 64, 0.22);
}

.flat-phone img {
  border-radius: 39px;
}

.flat-phone.left {
  top: 93px;
  left: 11%;
  transform: rotate(-8deg);
}

.flat-phone.right {
  top: 32px;
  right: 10%;
  transform: rotate(7deg);
}

.trust {
  padding-bottom: 155px;
}

.trust-heading {
  max-width: 860px;
  margin: 70px 0 75px;
}

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

.trust-list article {
  position: relative;
  padding: 38px 45px 44px;
  border-right: 1px solid var(--line);
}

.trust-list article:first-child {
  padding-left: 0;
}

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

.trust-list article > span {
  position: absolute;
  top: 28px;
  right: 28px;
  color: #aaa2ae;
  font: 500 10px/1 var(--font-en);
}

.trust-list svg {
  width: 45px;
  height: 45px;
  fill: none;
  stroke: var(--purple);
  stroke-width: 1.4;
}

.trust-list h3 {
  margin: 33px 0 14px;
  font-size: 21px;
  font-weight: 500;
}

.trust-list p {
  max-width: 310px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.9;
}

.download {
  position: relative;
  min-height: 660px;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: white;
  background:
    radial-gradient(circle at 50% 45%, rgba(137, 85, 247, 0.4), transparent 28%),
    linear-gradient(150deg, #18131f, #21172c 50%, #18131f);
}

.download::before,
.download::after {
  position: absolute;
  content: "";
  border: 1px solid rgba(214, 166, 244, 0.18);
  border-radius: 50%;
}

.download::before {
  width: 900px;
  height: 280px;
  transform: rotate(-10deg);
}

.download::after {
  width: 1050px;
  height: 330px;
  transform: rotate(12deg);
}

.download-glow {
  position: absolute;
  width: 210px;
  height: 210px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #fff, #efb6d5 12%, #875cf0 48%, transparent 71%);
  filter: blur(3px);
  opacity: 0.35;
}

.download-content {
  position: relative;
  z-index: 2;
  padding: 80px 20px;
  text-align: center;
}

.download-mark {
  display: grid;
  width: 58px;
  height: 58px;
  margin: 0 auto 26px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

.download-mark svg {
  width: 35px;
  fill: white;
}

.download-mark circle {
  fill: #5c40cf;
}

.download-content > p {
  margin: 0 0 25px;
  color: #bbabc8;
  font: 500 10px/1 var(--font-en);
  letter-spacing: 0.2em;
}

.download h2 {
  font-size: clamp(48px, 5.3vw, 80px);
}

.store-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 38px;
}

.store-actions a {
  min-width: 168px;
  padding: 11px 22px 12px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.08);
  text-align: left;
  backdrop-filter: blur(10px);
  transition: background 0.25s ease;
}

.store-actions a:hover {
  background: rgba(255, 255, 255, 0.14);
}

.store-actions small,
.store-actions strong {
  display: block;
  font-family: var(--font-en);
}

.store-actions small {
  color: #cbc3d1;
  font-size: 8px;
  letter-spacing: 0.05em;
}

.store-actions strong {
  margin-top: 2px;
  font-size: 17px;
  font-weight: 500;
}

.download-note {
  display: block;
  margin-top: 18px;
  color: #938a9b;
  font-size: 10px;
}

footer {
  color: #dcd8e0;
  background: #111014;
}

.footer-main {
  display: grid;
  grid-template-columns: 0.72fr 1.42fr 0.9fr;
  gap: clamp(42px, 5vw, 82px);
  padding-top: 85px;
  padding-bottom: 70px;
}

.light-brand .brand-mark {
  fill: white;
}

.light-brand circle {
  fill: #111014;
}

.footer-brand p {
  margin: 22px 0 0;
  color: #837d88;
  font-size: 13px;
}

.footer-brand-note {
  display: block;
  margin-top: 65px;
  color: #514c55;
  font: 500 8px/1 var(--font-en);
  letter-spacing: 0.17em;
}

.footer-contact {
  padding: 1px 0 0;
}

.footer-section-title {
  display: flex;
  align-items: baseline;
  gap: 17px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-section-title span {
  color: #6f6875;
  font: 500 9px/1 var(--font-en);
  letter-spacing: 0.16em;
}

.footer-section-title h3 {
  margin: 0;
  color: #f2eef4;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.footer-contact address {
  font-style: normal;
}

.contact-row {
  position: relative;
  display: grid;
  grid-template-columns: 37px 1fr;
  gap: 15px;
  align-items: start;
  padding: 22px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-icon {
  display: grid;
  width: 37px;
  height: 37px;
  place-items: center;
  border: 1px solid rgba(170, 135, 245, 0.24);
  border-radius: 12px;
  background: rgba(119, 80, 219, 0.08);
}

.contact-icon svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: #a88af2;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.4;
}

.contact-row span {
  display: block;
  margin: 1px 0 7px;
  color: #6f6875;
  font-size: 10px;
}

.contact-row p {
  margin: 0;
  color: #d3cdd7;
  font-size: 12px;
  line-height: 1.85;
}

.contact-email {
  transition: padding-left 0.25s ease, background 0.25s ease;
}

.contact-email:hover {
  padding-left: 8px;
  background: linear-gradient(90deg, rgba(117, 84, 245, 0.07), transparent);
}

.contact-email > b {
  position: absolute;
  top: 31px;
  right: 5px;
  color: #8f78c5;
  font: 400 13px/1 var(--font-en);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.footer-links div {
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.footer-links h4 {
  margin: 0 0 10px;
  color: #77717b;
  font-size: 11px;
  font-weight: 500;
}

.footer-links a,
.footer-links span {
  color: #c8c3cb;
  font-size: 12px;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: #fff;
}

.footer-links span {
  cursor: default;
}

html[lang="en"] .hero h1,
html[lang="en"] .intro-heading h2,
html[lang="en"] .trust-heading h2,
html[lang="en"] .showcase-title h2,
html[lang="en"] .craft h2,
html[lang="en"] .download h2 {
  font-family: var(--font-en);
  letter-spacing: -0.055em;
}

html[lang="en"] .hero h1 {
  font-size: clamp(54px, 5vw, 82px);
}

html[lang="en"] .hero-lead,
html[lang="en"] .intro-heading p,
html[lang="en"] .card-copy p,
html[lang="en"] .craft-copy > p,
html[lang="en"] .showcase-title > p:last-child,
html[lang="en"] .trust-list p,
html[lang="en"] .contact-row p {
  line-height: 1.75;
}

.footer-bottom {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 30px;
  align-items: center;
  padding-top: 23px;
  padding-bottom: 25px;
  color: #625d65;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font: 500 9px/1 var(--font-en);
  letter-spacing: 0.08em;
}

.footer-bottom > span:last-child {
  text-align: right;
}

.footer-bottom a {
  color: #7f7784;
  font-family: var(--font-cn);
  font-size: 10px;
  letter-spacing: 0.02em;
  transition: color 0.2s ease;
}

.footer-bottom a:hover {
  color: #b8a5e8;
}

.footer-bottom a i {
  margin-left: 4px;
  font-style: normal;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1180px) {
  .desktop-nav {
    gap: 25px;
    margin-left: 0;
  }

  .hero-grid {
    grid-template-columns: 0.82fr 1.18fr;
  }

  .hero h1 {
    font-size: 58px;
  }

  .phone {
    width: 250px;
  }

  .phone-back {
    left: 4%;
  }

  .phone-front {
    right: 0;
  }

  .hero-notes {
    gap: 18px;
  }

  .hero-notes div {
    padding-right: 15px;
  }

  .flat-phone {
    width: 240px;
  }

  .footer-main {
    grid-template-columns: 0.72fr 1.3fr;
  }

  .footer-links {
    grid-column: 1 / -1;
    max-width: 560px;
  }
}

@media (max-width: 920px) {
  .site-header {
    width: calc(100% - 40px);
    height: 82px;
  }

  .desktop-nav,
  .nav-cta,
  .lang-switch {
    display: none;
  }

  .menu-button {
    display: flex;
    width: 38px;
    height: 38px;
    padding: 10px 7px;
    flex-direction: column;
    justify-content: center;
    gap: 7px;
    border: 0;
    background: transparent;
  }

  .menu-button span {
    display: block;
    width: 24px;
    height: 1px;
    background: var(--ink);
    transition: transform 0.25s ease;
  }

  .menu-button.open span:first-child {
    transform: translateY(4px) rotate(45deg);
  }

  .menu-button.open span:last-child {
    transform: translateY(-4px) rotate(-45deg);
  }

  .mobile-nav {
    position: absolute;
    top: 72px;
    right: 0;
    left: 0;
    display: flex;
    padding: 20px;
    flex-direction: column;
    gap: 18px;
    border: 1px solid rgba(53, 44, 66, 0.08);
    border-radius: 18px;
    background: rgba(251, 249, 252, 0.96);
    box-shadow: 0 20px 50px rgba(35, 27, 48, 0.12);
    backdrop-filter: blur(18px);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: 0.25s ease;
  }

  .mobile-lang-switch {
    display: flex;
  }

  .mobile-nav.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .hero {
    min-height: auto;
    padding-top: 110px;
  }

  .hero-grid {
    width: calc(100% - 40px);
    grid-template-columns: 1fr;
  }

  .hero-copy {
    padding: 50px 2vw 0;
    text-align: center;
  }

  .eyebrow,
  .hero-actions,
  .hero-notes {
    justify-content: center;
  }

  .hero-product {
    min-height: 670px;
    margin-top: 20px;
  }

  .phone {
    width: 265px;
  }

  .phone-back {
    left: calc(50% - 250px);
  }

  .phone-front {
    right: calc(50% - 250px);
  }

  .section-shell {
    width: calc(100% - 40px);
  }

  .intro {
    padding-top: 95px;
    padding-bottom: 100px;
  }

  .intro-heading {
    grid-template-columns: 1fr;
    margin: 48px 0 56px;
  }

  .intro-heading p {
    margin: 0;
  }

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

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

  .mini-stage {
    height: 420px;
  }

  .card-copy {
    display: flex;
    min-height: auto;
    padding: 45px 35px;
    flex-direction: column;
    justify-content: center;
  }

  .craft-grid,
  .showcase-grid {
    grid-template-columns: 1fr;
  }

  .craft-visual {
    min-height: 500px;
  }

  .showcase {
    padding-top: 100px;
    padding-bottom: 110px;
  }

  .showcase-title {
    max-width: 600px;
  }

  .showcase-phones {
    min-height: 600px;
  }

  .trust-list article {
    padding-right: 25px;
    padding-left: 25px;
  }
}

@media (max-width: 620px) {
  .brand {
    font-size: 18px;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
  }

  .hero-copy {
    padding-top: 25px;
  }

  .eyebrow {
    font-size: 10px;
  }

  .hero h1 {
    margin-top: 24px;
    font-size: 47px;
    line-height: 1.18;
  }

  html[lang="en"] .hero h1 {
    font-size: 43px;
  }

  .hero-lead {
    font-size: 14px;
    line-height: 1.9;
  }

  .desktop-only {
    display: none;
  }

  .hero-actions {
    gap: 22px;
    margin-top: 34px;
  }

  .primary-button {
    min-width: 164px;
    min-height: 52px;
    padding: 0 19px;
  }

  .text-link {
    gap: 9px;
  }

  .hero-notes {
    gap: 0;
    margin-top: 52px;
  }

  .hero-notes div {
    width: 33.333%;
    justify-content: center;
    gap: 6px;
    padding: 0 8px;
  }

  .hero-notes span {
    font-size: 10px;
  }

  .hero-product {
    min-height: 540px;
  }

  .phone {
    width: 205px;
    padding: 6px;
    border-radius: 38px;
  }

  .phone img {
    border-radius: 32px;
  }

  .phone-speaker {
    top: 12px;
    width: 58px;
    height: 17px;
  }

  .phone-back {
    top: 76px;
    left: calc(50% - 188px);
  }

  .phone-front {
    top: 26px;
    right: calc(50% - 188px);
  }

  .orbit-one,
  .orbit-two {
    top: 140px;
    right: -100%;
    width: 780px;
  }

  .product-label {
    min-width: 100px;
    padding: 9px 11px;
  }

  .product-label strong {
    font-size: 11px;
  }

  .label-top {
    top: 111px;
    left: -2%;
  }

  .label-bottom {
    right: -1%;
    bottom: 59px;
  }

  .hero-index {
    display: none;
  }

  .intro-heading h2,
  .trust-heading h2,
  .showcase-title h2,
  .craft h2 {
    font-size: 39px;
  }

  .intro-heading p {
    font-size: 13px;
  }

  .feature-card {
    display: block;
  }

  .mini-stage {
    height: 330px;
  }

  .card-copy {
    padding: 29px 25px 31px;
  }

  .card-copy p {
    min-height: auto;
  }

  .craft {
    padding: 100px 0;
  }

  .craft-grid {
    gap: 35px;
  }

  .craft-copy h2 {
    margin-top: 48px;
  }

  .craft-visual {
    min-height: 380px;
  }

  .craft-orb {
    width: 270px;
    height: 270px;
  }

  .orb-core {
    inset: 52px;
  }

  .ring-a {
    top: 84px;
    height: 102px;
  }

  .ring-b {
    top: 71px;
    height: 132px;
  }

  .showcase-grid {
    gap: 50px;
  }

  .showcase-phones {
    min-height: 475px;
    border-radius: 28px;
  }

  .flat-phone {
    width: 192px;
    padding: 5px;
    border-radius: 35px;
  }

  .flat-phone img {
    border-radius: 30px;
  }

  .flat-phone.left {
    top: 99px;
    left: 3%;
  }

  .flat-phone.right {
    top: 34px;
    right: 3%;
  }

  .trust {
    padding-bottom: 100px;
  }

  .trust-heading {
    margin: 50px 0;
  }

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

  .trust-list article,
  .trust-list article:first-child {
    padding: 32px 5px 35px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .trust-list article:last-child {
    border-bottom: 0;
  }

  .download {
    min-height: 620px;
  }

  .download h2 {
    font-size: 50px;
  }

  .store-actions {
    flex-direction: column;
    align-items: center;
  }

  .store-actions a {
    width: 185px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 50px;
    padding-top: 65px;
  }

  .footer-brand-note {
    margin-top: 28px;
  }

  .footer-contact {
    max-width: 600px;
  }

  .footer-links {
    grid-column: auto;
    gap: 20px;
  }

  .footer-bottom {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .footer-bottom > span:last-child {
    text-align: left;
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
