@charset "UTF-8";
:root {
  color-scheme: dark;
  --bg: #0a0f1e;
  --surface: #121a2c;
  --ink: #f5f0e6;
  --muted: #a7adbd;
  --gold: #e7c779;
  --line: #ffffff16;
  --serif: Georgia, "Noto Naskh Arabic", serif;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 30px;
}
body {
  position: relative;
  isolation: isolate;
  overflow-x: hidden;
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font:
    16px/1.65 -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Arial,
    sans-serif;
  -webkit-font-smoothing: antialiased;
}
body:before,
body:after {
  content: "";
  position: fixed;
  z-index: -1;
  width: 38vw;
  height: 38vw;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(95px);
  opacity: 0.1;
  animation: ambient-drift 20s ease-in-out infinite alternate;
}
body:before {
  inset-block-start: 10%;
  inset-inline-start: -22%;
  background: #284f77;
}
body:after {
  inset-block-start: 55%;
  inset-inline-end: -24%;
  background: #9c762e;
  animation-delay: -9s;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
select,
textarea {
  font: inherit;
}
button,
a,
input,
select,
textarea {
  touch-action: manipulation;
}
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 5px;
}
img {
  max-width: 100%;
  display: block;
}
button {
  cursor: pointer;
}
button:disabled {
  opacity: 0.6;
  cursor: wait;
}
[hidden] {
  display: none !important;
}
.skip {
  position: absolute;
  top: -100px;
  background: var(--gold);
  color: #14182a;
  padding: 12px;
  z-index: 100;
}
.skip:focus {
  top: 0;
}
.header {
  max-width: 1320px;
  margin: auto;
  padding: 27px 44px;
  display: flex;
  align-items: center;
  gap: 36px;
  border-bottom: 1px solid var(--line);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  letter-spacing: 0.16em;
  font-size: 15px;
  font-weight: 750;
  white-space: nowrap;
}
.brand-seal {
  position: relative;
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid #e7c77988;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 28%, #f7e4a335, transparent 36%),
    linear-gradient(145deg, #25324a, #101728);
  color: var(--gold);
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 500;
  letter-spacing: 0;
  box-shadow:
    inset 0 1px #fff2,
    0 0 24px #d6ad4f1f;
}
.brand-seal:after {
  content: "";
  position: absolute;
  width: 5px;
  height: 5px;
  inset-block-start: 1px;
  inset-inline-end: 2px;
  background: #ffe8a3;
  transform: rotate(45deg);
  box-shadow: 0 0 10px #f3cb68;
}
.header nav {
  margin-inline-start: auto;
  display: flex;
  gap: 28px;
  font-size: 14px;
  color: #d4d7e1;
}
.header a:hover,
footer a:hover {
  color: var(--gold);
}
.language-menu {
  position: relative;
  padding-inline-start: 22px;
  border-inline-start: 1px solid var(--line);
}
.language-menu summary {
  display: flex;
  min-width: 142px;
  min-height: 40px;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 13px;
  color: #d9dce5;
  font-size: 12px;
  cursor: pointer;
  list-style: none;
  transition:
    border-color 0.2s,
    background 0.2s;
}
.language-menu summary::-webkit-details-marker {
  display: none;
}
.language-menu summary:hover,
.language-menu[open] summary {
  border-color: #e7c77955;
  background: #172137;
}
.language-symbol {
  position: relative;
  width: 17px;
  height: 17px;
  flex: 0 0 17px;
  border: 1px solid var(--gold);
  border-radius: 50%;
}
.language-symbol:before,
.language-symbol:after {
  content: "";
  position: absolute;
  inset: 3px 6px;
  border: 1px solid var(--gold);
  border-block: 0;
  border-radius: 50%;
}
.language-symbol:after {
  inset: 7px 1px auto;
  height: 0;
  border: 0;
  border-top: 1px solid var(--gold);
  border-radius: 0;
}
.language-chevron {
  width: 7px;
  height: 7px;
  margin-inline-start: auto;
  border-inline-end: 1px solid var(--muted);
  border-block-end: 1px solid var(--muted);
  transform: rotate(45deg) translateY(-2px);
  transition: transform 0.2s;
}
.language-menu[open] .language-chevron {
  transform: rotate(225deg) translate(-2px, -2px);
}
.language-list {
  position: absolute;
  z-index: 20;
  inset-block-start: calc(100% + 10px);
  inset-inline-end: 0;
  width: 205px;
  padding: 8px;
  border: 1px solid #e7c77935;
  border-radius: 17px;
  background: #111a2cf5;
  box-shadow: 0 22px 55px #000b;
  backdrop-filter: blur(20px);
}
.language-option {
  display: flex;
  min-height: 43px;
  align-items: center;
  padding: 9px 12px;
  border-radius: 11px;
  color: #c4c9d5;
  font-size: 13px;
}
.language-option:hover {
  background: #ffffff0a;
}
.language-option[aria-current] {
  color: var(--gold);
  background: #e7c77912;
}
.language-option[aria-current]:after {
  content: "";
  width: 6px;
  height: 6px;
  margin-inline-start: auto;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 10px #e7c779aa;
}
main {
  max-width: 1320px;
  margin: auto;
}
.hero {
  min-height: 720px;
  display: grid;
  grid-template-columns: 1fr 1.06fr;
  align-items: center;
  gap: 24px;
  padding: 65px 44px 70px;
}
.eyebrow {
  font-size: 11px;
  letter-spacing: 0.21em;
  font-weight: 650;
  color: var(--gold);
}
h1,
h2,
h3,
p {
  margin-top: 0;
}
h1 {
  font-family: var(--serif);
  font-size: clamp(43px, 4.7vw, 66px);
  line-height: 1.13;
  letter-spacing: -0.045em;
  font-weight: 400;
  margin: 27px 0;
}
h2 {
  font-family: var(--serif);
  font-size: clamp(32px, 3vw, 46px);
  line-height: 1.22;
  font-weight: 400;
  letter-spacing: -0.025em;
  margin: 18px 0;
}
h3 {
  font-size: 22px;
  font-weight: 500;
  line-height: 1.35;
}
.lead {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.85;
  max-width: 460px;
}
.download {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  margin-top: 30px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #1a2338;
  border: 1px solid #ffffff25;
  border-radius: 100px;
  padding: 13px 25px;
  font-size: 14px;
  font-weight: 650;
  min-height: 50px;
  color: var(--ink);
  transition:
    transform 0.2s,
    background 0.2s;
}
.button:hover {
  transform: translateY(-2px);
  background: #27334d;
}
.button.primary {
  background: linear-gradient(110deg, #f3dda0, #d9b968);
  color: #14192a;
  border-color: #f5db91;
  box-shadow: 0 8px 30px #a97f2515;
}
.button svg {
  width: 22px;
  height: 22px;
}
.download small {
  font-size: 11px;
  color: var(--muted);
}
.play-link {
  font-size: 12px;
  color: var(--gold);
  margin-top: 8px;
}
.download .play-note {
  max-width: 290px;
  line-height: 1.4;
}
.hero-art {
  position: relative;
  width: min(100%, 420px);
  justify-self: center;
  padding: 35px 0 35px 10px;
}
.hero-art:before {
  content: "";
  position: absolute;
  inset: -65px -10px;
  background: radial-gradient(ellipse, #63532724, transparent 68%);
  pointer-events: none;
}
.art-frame {
  position: relative;
  overflow: hidden;
  border-radius: 32px;
  aspect-ratio: 720 / 1378;
  background: #080d19;
  border: 1px solid #dabd685c;
  box-shadow:
    0 30px 80px #0008,
    0 0 0 12px #edc97904;
}
.hero-slide {
  position: absolute;
  inset: 0;
  height: 100%;
  width: 100%;
  object-fit: contain;
  opacity: 0;
  transform: scale(1.025);
  transition:
    opacity 0.75s ease,
    transform 5.5s ease;
}
.hero-slide.is-active {
  z-index: 1;
  opacity: 1;
  transform: scale(1);
}
.art-caption {
  z-index: 3;
  position: absolute;
  bottom: 13px;
  inset-inline-start: 65px;
  font-size: 10px;
  letter-spacing: 0.3em;
  background: #121a2c;
  border: 1px solid var(--line);
  border-radius: 40px;
  padding: 13px 23px;
  box-shadow: 0 10px 30px #0005;
}
.carousel-dots {
  position: absolute;
  z-index: 4;
  inset-inline-end: 26px;
  bottom: 26px;
  display: flex;
  gap: 7px;
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 100px;
  background: #0b1222d9;
  box-shadow: 0 10px 30px #0006;
  backdrop-filter: blur(12px);
}
.carousel-dots button {
  width: 7px;
  height: 7px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #8991a5;
  transition:
    width 0.25s,
    background 0.25s;
}
.carousel-dots button[aria-current="true"] {
  width: 22px;
  border-radius: 10px;
  background: var(--gold);
}
.carousel-copy {
  display: none;
}
.pulse {
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  margin-inline-end: 10px;
  box-shadow: 0 0 13px #e7c77aaa;
  animation: breathe 3s infinite;
}
.section {
  padding: 85px 44px;
}
.motion-ready .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.75s ease var(--reveal-delay, 0ms),
    transform 0.75s cubic-bezier(0.2, 0.75, 0.25, 1) var(--reveal-delay, 0ms);
}
.motion-ready .reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}
.section-heading {
  max-width: 550px;
  margin-bottom: 42px;
}
.section p {
  color: var(--muted);
  max-width: 520px;
}
.experiences {
  border-top: 1px solid var(--line);
}
.experience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.experience {
  padding: 32px 29px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: linear-gradient(155deg, #23334760, #0f152600);
  box-shadow: inset 0 1px #ffffff08;
  position: relative;
  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}
.experience:hover {
  transform: translateY(-5px);
  border-color: #e7c77935;
  box-shadow:
    inset 0 1px #ffffff12,
    0 24px 50px #0004;
}
.e1 {
  background: linear-gradient(155deg, #233b3460, #0f152600);
}
.e2 {
  background: linear-gradient(155deg, #42372660, #0f152600);
}
.experience .eyebrow {
  font-size: 10px;
}
.experience p {
  font-size: 14px;
  line-height: 1.9;
}
.feature-name {
  font-size: 11px;
  color: var(--gold);
  display: block;
  margin-top: 25px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.experience-symbol {
  height: 125px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.wave {
  display: flex;
  align-items: center;
  gap: 7px;
}
.wave i {
  display: block;
  width: 5px;
  height: 25px;
  background: linear-gradient(var(--gold), #7b663c);
  border-radius: 4px;
  animation: wave-dance 1.8s ease-in-out infinite alternate;
}
.wave i:nth-child(2n) {
  height: 48px;
  animation-delay: -0.7s;
}
.wave i:nth-child(3n) {
  height: 65px;
  animation-delay: -1.1s;
}
.wave i:nth-child(4n) {
  height: 82px;
  animation-delay: -1.5s;
}
.orbits {
  position: relative;
  width: 130px;
  height: 85px;
}
.orbits span {
  position: absolute;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  border: 1px solid #dabd6877;
  background: radial-gradient(circle at 35% 25%, #718f77, #18362c);
  left: 0;
  top: 12px;
  box-shadow: 0 10px 20px #0004;
  animation: orbit-float 4.8s ease-in-out infinite alternate;
}
.orbits span:nth-child(2) {
  left: 35px;
  top: 0;
  background: radial-gradient(circle at 35% 25%, #c3a778, #42392b);
  z-index: 1;
  animation-delay: -1.6s;
}
.orbits span:nth-child(3) {
  left: 70px;
  background: radial-gradient(circle at 35% 25%, #8b90b7, #34344c);
  animation-delay: -3.2s;
}
.board-mark {
  display: grid;
  grid-template-columns: repeat(2, 30px);
  gap: 6px;
  transform: rotate(-12deg);
}
.board-mark i {
  width: 30px;
  height: 30px;
  border-radius: 10px;
  background: #c8a757;
  box-shadow:
    inset 0 2px #fff3,
    0 5px 10px #0005;
  animation: board-breathe 3s ease-in-out infinite alternate;
}
.board-mark i:nth-child(2) {
  background: #4b7181;
  animation-delay: -0.8s;
}
.board-mark i:nth-child(3) {
  background: #ae606b;
  animation-delay: -1.6s;
}
.board-mark i:nth-child(4) {
  background: #528875;
  animation-delay: -2.4s;
}
.translation {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(360px, 1.2fr);
  gap: 90px;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 78% 46%, #216e6325, transparent 34%),
    linear-gradient(160deg, transparent, #101c2b80);
}
.translation-copy {
  position: relative;
  z-index: 2;
}
.translation-pair {
  display: flex;
  align-items: center;
  gap: 12px;
  width: max-content;
  margin-top: 30px;
  padding: 10px 15px;
  border: 1px solid #e7c77935;
  border-radius: 100px;
  background: #101a2cbb;
  color: #d8dce6;
  font-size: 12px;
}
.translation-pair i {
  width: 24px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.translation-visual {
  position: relative;
  width: min(100%, 560px);
  margin: 0;
  justify-self: center;
}
.translation-frame {
  position: relative;
  overflow: hidden;
  border: 1px solid #e7c7794d;
  border-radius: 34px;
  background: #101a2c;
  box-shadow:
    0 35px 90px #000b,
    0 0 0 10px #e7c77908;
  animation: visual-float 7s ease-in-out infinite alternate;
}
.translation-frame img {
  width: 100%;
  height: auto;
}
.translation-live {
  position: absolute;
  inset-block-start: 22px;
  inset-inline-start: -20px;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 11px 17px;
  border: 1px solid #e7c77955;
  border-radius: 100px;
  background: #101827ef;
  color: #f6e1a6;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  box-shadow: 0 15px 35px #0008;
  backdrop-filter: blur(16px);
}
.translation-live i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #49d2a3;
  box-shadow: 0 0 12px #49d2a3;
  animation: breathe 2.2s infinite;
}
.battle-showcase {
  border-bottom: 1px solid var(--line);
}
.battle-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: start;
}
.battle-shot {
  margin: 0;
}
.screen-frame {
  position: relative;
  overflow: hidden;
  border: 1px solid #ffffff20;
  border-radius: 29px;
  background: #0b1120;
  box-shadow:
    0 24px 55px #0008,
    inset 0 1px #fff1;
  transition:
    transform 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}
.battle-shot:hover .screen-frame {
  transform: translateY(-7px);
  border-color: #e7c77950;
  box-shadow:
    0 35px 70px #0009,
    0 0 35px #d4ae4a12;
}
.screen-frame:after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 45px #080d19a6;
  pointer-events: none;
}
.screen-frame img {
  width: 100%;
  height: auto;
}
.battle-shot:nth-child(2) {
  margin-top: 56px;
}
.battle-shot figcaption {
  padding: 22px 5px 0;
}
.battle-shot figcaption span {
  color: var(--ink);
  font-size: 16px;
  font-weight: 650;
}
.battle-shot figcaption p {
  margin: 6px 0 0;
  font-size: 13px;
  line-height: 1.7;
}
.creator {
  display: grid;
  grid-template-columns: minmax(360px, 1.14fr) minmax(0, 0.86fr);
  gap: 90px;
  align-items: center;
  border-bottom: 1px solid var(--line);
  background: radial-gradient(circle at 20% 50%, #76551d25, transparent 34%);
}
.creator-visual {
  position: relative;
  overflow: hidden;
  width: min(100%, 570px);
  margin: 0;
  border: 1px solid #e7c77955;
  border-radius: 34px;
  box-shadow:
    0 35px 90px #000b,
    0 0 0 10px #e7c77907;
  animation: visual-float-reverse 7.5s ease-in-out infinite alternate;
}
.creator-visual img {
  width: 100%;
  height: auto;
}
.creator-features {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0 20px;
}
.creator-features span {
  padding: 8px 13px;
  border: 1px solid #e7c77935;
  border-radius: 100px;
  background: #e7c7790a;
  color: #e4d5a9;
  font-size: 12px;
}
.creator-copy small {
  display: block;
  max-width: 470px;
  color: #7f8799;
  font-size: 11px;
  line-height: 1.7;
}
.app-preview {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
  overflow: hidden;
}
.screens {
  display: flex;
  gap: 20px;
  align-items: center;
  height: 420px;
  overflow: hidden;
  mask-image: linear-gradient(transparent, #000 10%, #000 75%, transparent);
}
.screens img {
  width: 44%;
  height: auto;
  border-radius: 25px;
  border: 1px solid #ffffff20;
  box-shadow: 0 30px 40px #0005;
  transform: rotate(-6deg);
}
.screens img + img {
  margin-top: 85px;
  transform: rotate(5deg);
}
.text-link {
  display: inline-block;
  color: var(--gold);
  font-size: 14px;
  margin: 12px 20px 0 0;
}
.closing {
  text-align: center;
  background: radial-gradient(ellipse at bottom, #68582d21, transparent 70%);
  border-top: 1px solid var(--line);
}
.closing p {
  margin-inline: auto;
}
.closing .download {
  align-items: center;
}
.closing h2 {
  max-width: 650px;
  margin-inline: auto;
}
footer {
  max-width: 1232px;
  margin: auto;
  padding: 42px 0 30px;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
footer p,
footer small {
  color: var(--muted);
  font-size: 12px;
}
footer nav {
  display: flex;
  justify-content: flex-end;
  gap: 15px 24px;
  flex-wrap: wrap;
  align-content: flex-start;
  font-size: 13px;
}
footer small {
  grid-column: 1/-1;
}
.legal,
.support-page {
  padding: 65px 44px 95px;
}
.legal-head {
  max-width: 850px;
  padding-bottom: 40px;
}
.legal-head h1 {
  font-size: 52px;
}
.legal-head p {
  color: var(--muted);
  font-size: 17px;
}
.legal-layout {
  display: grid;
  grid-template-columns: 230px minmax(0, 760px);
  gap: 70px;
}
.legal aside {
  position: sticky;
  top: 30px;
  align-self: start;
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-size: 13px;
  color: var(--muted);
  padding-inline-end: 20px;
}
.legal aside strong {
  color: var(--ink);
  font-size: 12px;
  letter-spacing: 0.04em;
  margin-bottom: 8px;
}
.legal aside a:hover {
  color: var(--gold);
}
.legal article section {
  padding: 0 0 25px;
  margin-bottom: 26px;
  border-bottom: 1px solid var(--line);
  scroll-margin-top: 30px;
}
.legal article h2 {
  font-family: inherit;
  font-size: 23px;
  letter-spacing: 0;
  font-weight: 500;
  display: flex;
  align-items: baseline;
  gap: 14px;
}
.legal article h2 span {
  font-size: 12px;
  color: var(--gold);
}
.legal article p {
  line-height: 1.95;
  font-size: 16px;
  color: #bec3cf;
}
.policy-contact {
  padding: 25px;
  border-radius: 20px;
  background: #182238;
}
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 35px;
}
.steps article {
  padding-inline-start: 20px;
  border-inline-start: 1px solid #e7c77966;
}
.steps article > span {
  font-size: 13px;
  color: var(--gold);
}
.steps h2 {
  font-family: inherit;
  font-size: 20px;
  margin: 10px 0;
}
.steps p,
.deletion-info {
  color: var(--muted);
  font-size: 14px;
}
.deletion-info {
  max-width: 950px;
  line-height: 1.9;
  margin-bottom: 40px;
}
.support-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 60px;
  padding-top: 35px;
  border-top: 1px solid var(--line);
}
.support-grid h2 {
  font-family: inherit;
  font-size: 26px;
  letter-spacing: -0.02em;
}
.tracking {
  padding-inline-start: 35px;
  border-inline-start: 1px solid var(--line);
}
label {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 22px;
  font-size: 13px;
  color: #c9cdd7;
}
input,
select,
textarea {
  width: 100%;
  background: #141d30;
  border: 1px solid #ffffff24;
  border-radius: 12px;
  color: var(--ink);
  padding: 12px 14px;
  min-width: 0;
}
textarea {
  resize: vertical;
}
input::placeholder {
  color: #848da4;
  font-size: 12px;
}
.check {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  font-size: 12px;
  line-height: 1.7;
}
.check input {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  accent-color: var(--gold);
  margin-top: 2px;
}
.check a {
  text-decoration: underline;
  color: var(--gold);
}
.field-note {
  color: var(--muted);
  font-size: 12px;
}
.honey {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.error {
  color: #ffb5b5;
  font-size: 13px;
  margin-top: 18px;
}
.success-mark {
  font-size: 34px;
  color: #7bcda4;
}
.support-grid code {
  display: block;
  padding: 15px;
  background: #17283a;
  border-radius: 12px;
  overflow-wrap: anywhere;
  user-select: all;
  color: var(--gold);
  font-size: 15px;
}
.status {
  display: inline-block;
  background: #dfbf7320;
  color: var(--gold);
  border: 1px solid #dfbf7355;
  border-radius: 30px;
  padding: 4px 13px;
  font-size: 12px;
}
#status-reply {
  white-space: pre-wrap;
  overflow-wrap: anywhere;
  color: #c9cdd7;
}
#receipt > p {
  color: var(--muted);
  font-size: 14px;
}
.tracking .text-link {
  margin-top: 30px;
}
html[dir="rtl"] h1,
html[dir="rtl"] h2 {
  letter-spacing: 0;
  font-family: Tahoma, Arial, sans-serif;
  line-height: 1.5;
}
html[dir="rtl"] .eyebrow {
  letter-spacing: 0.02em;
}
html[dir="rtl"] .brand {
  letter-spacing: 0.12em;
}
@keyframes ambient-drift {
  from {
    transform: translate3d(-2vw, -2vh, 0) scale(0.92);
  }
  to {
    transform: translate3d(5vw, 4vh, 0) scale(1.08);
  }
}
@keyframes wave-dance {
  from {
    transform: scaleY(0.72);
  }
  to {
    transform: scaleY(1.08);
  }
}
@keyframes orbit-float {
  from {
    transform: translateY(-4px);
  }
  to {
    transform: translateY(5px);
  }
}
@keyframes board-breathe {
  from {
    filter: brightness(0.9);
    transform: translateY(1px) scale(0.96);
  }
  to {
    filter: brightness(1.14);
    transform: translateY(-2px) scale(1.03);
  }
}
@keyframes visual-float {
  from {
    transform: translateY(-4px);
  }
  to {
    transform: translateY(7px);
  }
}
@keyframes visual-float-reverse {
  from {
    transform: translateY(6px);
  }
  to {
    transform: translateY(-5px);
  }
}
@keyframes breathe {
  50% {
    opacity: 0.35;
    box-shadow: 0 0 5px #e7c77a55;
  }
}
@media (max-width: 1050px) {
  .header {
    padding: 23px 28px;
    gap: 20px;
  }
  .header nav {
    gap: 15px;
  }
  .language-menu {
    padding-inline-start: 15px;
  }
  .hero {
    padding-inline: 28px;
    min-height: 610px;
  }
  .section {
    padding: 60px 28px;
  }
  .experience {
    padding: 25px 20px;
  }
  .app-preview {
    gap: 40px;
  }
  .translation,
  .creator {
    gap: 45px;
  }
  .battle-gallery {
    gap: 20px;
  }
  footer {
    margin: 0 28px;
  }
  .legal,
  .support-page {
    padding: 50px 28px;
  }
  .legal-layout {
    grid-template-columns: 180px 1fr;
    gap: 35px;
  }
  .support-grid {
    gap: 30px;
  }
  .tracking {
    padding-inline-start: 25px;
  }
}
@media (max-width: 760px) {
  .header {
    flex-wrap: wrap;
    padding: 20px;
    gap: 18px;
  }
  .brand {
    font-size: 13px;
    gap: 9px;
  }
  .brand-seal {
    width: 31px;
    height: 31px;
    font-size: 16px;
  }
  .language-menu {
    margin-inline-start: auto;
    border: 0;
    padding: 0;
  }
  .language-menu summary {
    min-width: 0;
    min-height: 36px;
    padding: 7px 10px;
  }
  .language-menu summary > span:nth-child(2) {
    max-width: 76px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .language-list {
    width: 190px;
  }
  .header nav {
    order: 3;
    width: 100%;
    justify-content: space-between;
    margin: 0;
    font-size: 12px;
    padding-top: 10px;
    border-top: 1px solid var(--line);
  }
  .hero {
    grid-template-columns: 1fr;
    padding: 45px 22px 40px;
    gap: 35px;
  }
  .hero h1 {
    font-size: 47px;
    margin: 22px 0;
  }
  .hero .lead {
    font-size: 16px;
    max-width: 500px;
  }
  .hero-art {
    max-width: 360px;
    width: 100%;
    justify-self: center;
    padding: 15px;
  }
  .art-frame {
    aspect-ratio: 720 / 1378;
    border-radius: 26px;
  }
  .hero-art:before {
    inset: 0;
  }
  .art-caption {
    bottom: 3px;
    inset-inline-start: 24px;
    font-size: 9px;
    max-width: 210px;
    overflow: hidden;
    padding: 10px 15px;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .carousel-dots {
    inset-inline-end: 4px;
    bottom: 17px;
  }
  .section {
    padding: 55px 22px;
  }
  .section-heading {
    margin-bottom: 30px;
  }
  .experience-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .experience {
    padding: 24px;
    display: grid;
    grid-template-columns: 1fr 80px;
    column-gap: 15px;
  }
  .experience .eyebrow {
    grid-column: 1;
  }
  .experience-symbol {
    grid-column: 2;
    grid-row: 1/4;
    height: 120px;
    align-self: center;
    transform: scale(0.75);
  }
  .experience h3 {
    margin: 16px 0 12px;
    font-size: 22px;
  }
  .experience p {
    margin: 0;
    grid-column: 1;
    font-size: 14px;
  }
  .feature-name {
    grid-column: 1/-1;
    margin-top: 20px;
    padding-top: 14px;
  }
  .translation {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .translation-visual {
    width: min(92%, 470px);
  }
  .translation-live {
    inset-inline-start: -14px;
  }
  .battle-gallery {
    display: flex;
    gap: 16px;
    margin-inline: -22px;
    padding: 0 22px 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }
  .battle-gallery::-webkit-scrollbar {
    display: none;
  }
  .battle-shot {
    flex: 0 0 min(78vw, 330px);
    scroll-snap-align: center;
  }
  .battle-shot:nth-child(2) {
    margin-top: 0;
  }
  .creator {
    grid-template-columns: 1fr;
    gap: 42px;
  }
  .creator-visual {
    width: min(92%, 470px);
    margin: auto;
  }
  .app-preview {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .app-preview > div:last-child {
    grid-row: 1;
  }
  .screens {
    height: 370px;
    max-width: 460px;
    margin: auto;
  }
  .closing {
    padding: 55px 22px;
  }
  .closing h2 {
    font-size: 35px;
  }
  footer {
    grid-template-columns: 1fr;
    margin: 0 22px;
    padding-top: 30px;
    gap: 20px;
  }
  footer nav {
    justify-content: flex-start;
    gap: 12px 23px;
  }
  .legal,
  .support-page {
    padding: 40px 22px 60px;
  }
  .legal-head {
    padding-bottom: 25px;
  }
  .legal-head h1 {
    font-size: 39px;
  }
  .legal-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .legal aside {
    position: static;
    border-bottom: 1px solid var(--line);
    padding-bottom: 25px;
    gap: 10px;
  }
  .legal article h2 {
    font-size: 21px;
  }
  .legal article p {
    font-size: 15px;
  }
  .steps {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .support-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .tracking {
    padding: 30px 0 0;
    border-inline-start: 0;
    border-top: 1px solid var(--line);
  }
  .support-grid code {
    font-size: 13px;
  }
  .button {
    max-width: 100%;
  }
  .eyebrow {
    font-size: 10px;
  }
  html[dir="rtl"] .hero h1 {
    font-size: 40px;
  }
  html[dir="rtl"] .experience {
    grid-template-columns: 1fr 65px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    animation: none !important;
    transition: none !important;
  }
}
