:root {
  --ink: #101522;
  --muted: #5b6475;
  --paper: #f7f9fc;
  --line: rgba(16, 21, 34, 0.12);
  --teal: #16b8a6;
  --coral: #f15d4f;
  --gold: #f6bd39;
  --violet: #7665ff;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(21, 33, 55, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 12% 18%, rgba(22, 184, 166, 0.18), transparent 30%),
    radial-gradient(circle at 82% 8%, rgba(241, 93, 79, 0.14), transparent 24%),
    linear-gradient(135deg, #fbfcff 0%, #eef5f3 46%, #fff7ee 100%);
  color: var(--ink);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

.cursor-glow {
  position: fixed;
  width: 18rem;
  height: 18rem;
  left: var(--mouse-x, 50%);
  top: var(--mouse-y, 50%);
  z-index: -1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(22, 184, 166, 0.22), transparent 65%);
  transform: translate(-50%, -50%);
  pointer-events: none;
  transition: opacity 180ms ease;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: min(1160px, calc(100% - 32px));
  margin: 16px auto 0;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.64);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 44px rgba(26, 37, 61, 0.08);
  backdrop-filter: blur(18px);
}

.brand,
.nav-links,
.hero-actions,
.contact-actions {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 800;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 14px;
  overflow: hidden;
  background: #ffffff;
  color: #09211f;
  box-shadow: 0 10px 24px rgba(22, 184, 166, 0.28);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 18% center;
  transform: scale(1.35);
}

.nav-links {
  gap: 14px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 700;
}

.nav-links a:hover {
  color: var(--ink);
}

.header-action,
.primary-button,
.secondary-button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 800;
}

.header-action,
.primary-button {
  background: var(--ink);
  color: var(--white);
  box-shadow: 0 16px 32px rgba(16, 21, 34, 0.2);
}

.header-action {
  padding: 0 18px;
  font-size: 0.92rem;
}

.hero-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.78fr);
  gap: 42px;
  align-items: center;
  width: min(1160px, calc(100% - 32px));
  min-height: calc(100vh - 92px);
  margin: 0 auto;
  padding: 60px 0 48px;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--coral);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 720px;
  margin-bottom: 20px;
  font-size: clamp(4rem, 8vw, 7.8rem);
  line-height: 0.88;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 630px;
  color: #3d4657;
  font-size: clamp(1.05rem, 1.7vw, 1.36rem);
  line-height: 1.7;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.primary-button,
.secondary-button {
  padding: 0 24px;
}

.secondary-button {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
}

.hero-orbit {
  position: relative;
  min-height: 560px;
  perspective: 1000px;
}

.space-grid {
  position: absolute;
  inset: 8% 0 4%;
  border-radius: 34px;
  background:
    linear-gradient(rgba(16, 21, 34, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 21, 34, 0.08) 1px, transparent 1px);
  background-size: 32px 32px;
  transform: rotateX(62deg) rotateZ(-11deg);
  opacity: 0.5;
}

.device-stack {
  position: absolute;
  inset: 38px 10px 10px;
  transform-style: preserve-3d;
  animation: floatStack 6s ease-in-out infinite;
}

.phone {
  position: absolute;
  width: 230px;
  height: 430px;
  overflow: hidden;
  border: 10px solid #151b29;
  border-radius: 34px;
  background: #fefefe;
  box-shadow: var(--shadow);
}

.phone-front {
  right: 72px;
  top: 28px;
  transform: rotateZ(7deg) rotateY(-17deg);
}

.phone-back {
  left: 10px;
  top: 112px;
  transform: rotateZ(-13deg) rotateY(16deg) scale(0.88);
  opacity: 0.94;
}

.phone-notch {
  position: absolute;
  top: 12px;
  left: 50%;
  z-index: 3;
  width: 76px;
  height: 18px;
  border-radius: 99px;
  background: #151b29;
  transform: translateX(-50%);
}

.app-screen {
  display: grid;
  min-height: 100%;
  place-items: center;
  background:
    radial-gradient(circle at 50% 42%, rgba(246, 189, 57, 0.54), transparent 27%),
    linear-gradient(145deg, #16b8a6, #ffffff 45%, #f15d4f);
}

.screen-pill {
  position: absolute;
  top: 54px;
  left: 22px;
  padding: 8px 13px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  font-size: 0.72rem;
  font-weight: 900;
}

.coin-ring {
  width: 132px;
  height: 132px;
  border: 18px solid var(--gold);
  border-right-color: var(--teal);
  border-radius: 50%;
  animation: spinCoin 5s linear infinite;
  box-shadow: inset 0 0 0 12px rgba(255, 255, 255, 0.42);
}

.screen-bars {
  position: absolute;
  right: 24px;
  bottom: 28px;
  display: grid;
  gap: 10px;
}

.screen-bars span {
  width: 118px;
  height: 13px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
}

.screen-bars span:nth-child(2) {
  width: 88px;
}

.screen-bars span:nth-child(3) {
  width: 104px;
}

.game-pad {
  display: grid;
  grid-template-columns: repeat(2, 68px);
  gap: 20px;
  min-height: 100%;
  place-content: center;
  background: linear-gradient(145deg, #ffffff, #e8fff9 44%, #fff1d0);
}

.game-pad span {
  height: 68px;
  border-radius: 21px;
  background: var(--ink);
  box-shadow: 0 14px 28px rgba(16, 21, 34, 0.16);
}

.game-pad span:nth-child(2) {
  background: var(--coral);
}

.game-pad span:nth-child(3) {
  background: var(--gold);
}

.game-pad span:nth-child(4) {
  background: var(--teal);
}

.floating-card {
  position: absolute;
  padding: 15px 20px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 18px 40px rgba(21, 33, 55, 0.12);
  font-weight: 900;
  backdrop-filter: blur(14px);
  animation: drift 5s ease-in-out infinite;
}

.card-app {
  top: 72px;
  left: 38px;
}

.card-game {
  right: 6px;
  bottom: 132px;
  animation-delay: -1.5s;
}

.card-earn {
  left: 74px;
  bottom: 54px;
  animation-delay: -3s;
}

.metrics-strip,
.section-shell,
.showcase-section,
.contact-section,
.site-footer {
  width: min(1160px, calc(100% - 32px));
  margin-inline: auto;
}

.metrics-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: var(--line);
  box-shadow: var(--shadow);
}

.metrics-strip div {
  position: relative;
  display: grid;
  gap: 6px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.68);
}

.metric-graphic {
  position: absolute;
  right: 24px;
  top: 24px;
  width: 58px;
  height: 58px;
  opacity: 0.9;
}

.metric-cube {
  border-radius: 16px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.5), transparent 45%),
    linear-gradient(135deg, var(--teal), var(--gold));
  box-shadow: 12px 12px 0 rgba(22, 184, 166, 0.15);
  transform: rotate(-10deg);
}

.metric-radar {
  border: 4px solid rgba(241, 93, 79, 0.26);
  border-radius: 50%;
  background:
    radial-gradient(circle, var(--coral) 0 7px, transparent 8px),
    conic-gradient(from 20deg, rgba(241, 93, 79, 0.72), transparent 35%);
  animation: pulseRadar 3s ease-in-out infinite;
}

.metric-window {
  border: 4px solid var(--ink);
  border-radius: 16px;
  background:
    linear-gradient(var(--ink) 0 10px, transparent 10px),
    linear-gradient(135deg, #ffffff, #dffbf6);
}

.metric-window::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 13px;
  height: 8px;
  border-radius: 99px;
  background: var(--gold);
  box-shadow: 0 -14px 0 var(--teal);
}

.metrics-strip strong {
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1;
}

.metrics-strip span {
  color: var(--muted);
  font-weight: 700;
}

.section-shell,
.showcase-section,
.contact-section {
  padding: 96px 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.page-hero {
  padding-bottom: 32px;
}

.page-hero h1,
.page-showcase h1,
.contact-page-section h1 {
  max-width: 920px;
  margin-bottom: 22px;
  font-size: clamp(3rem, 7vw, 6.4rem);
  line-height: 0.95;
  letter-spacing: 0;
}

.page-showcase {
  min-height: calc(100vh - 120px);
  padding-top: 78px;
}

.contact-page-section {
  margin-top: 54px;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4.6vw, 4.2rem);
  line-height: 1;
  letter-spacing: 0;
}

.service-grid,
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.service-card,
.profile-card,
.product-tile {
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 18px 42px rgba(21, 33, 55, 0.09);
  backdrop-filter: blur(16px);
}

.service-card {
  min-height: 290px;
  padding: 28px;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 68px rgba(21, 33, 55, 0.14);
}

.service-graphic {
  position: relative;
  width: 100%;
  height: 148px;
  margin-bottom: 28px;
  overflow: hidden;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.32));
}

.app-graphic::before {
  content: "";
  position: absolute;
  left: 28px;
  top: 18px;
  width: 82px;
  height: 112px;
  border: 7px solid var(--ink);
  border-radius: 22px;
  background:
    linear-gradient(var(--ink) 0 12px, transparent 12px),
    linear-gradient(150deg, #ffffff 0 28%, #dffbf6 29% 62%, #ffe8c0 63%);
  box-shadow: 34px 18px 0 rgba(22, 184, 166, 0.2);
}

.app-graphic span {
  position: absolute;
  right: 22px;
  width: 56px;
  height: 16px;
  border-radius: 99px;
  background: var(--teal);
}

.app-graphic span:nth-child(1) {
  top: 28px;
  background: var(--coral);
}

.app-graphic span:nth-child(2) {
  top: 58px;
  width: 74px;
}

.app-graphic span:nth-child(3) {
  top: 88px;
  background: var(--gold);
}

.app-graphic span:nth-child(4) {
  top: 118px;
  width: 42px;
  background: var(--ink);
}

.game-graphic::before,
.game-graphic::after {
  content: "";
  position: absolute;
}

.game-graphic::before {
  left: 31px;
  top: 36px;
  width: 160px;
  height: 74px;
  border-radius: 35px;
  background: var(--ink);
  box-shadow: 0 20px 34px rgba(16, 21, 34, 0.2);
}

.game-graphic::after {
  left: 54px;
  top: 62px;
  width: 50px;
  height: 12px;
  border-radius: 99px;
  background: var(--white);
  box-shadow: 19px 0 0 var(--white), 91px -8px 0 3px var(--coral), 116px 8px 0 3px var(--gold);
}

.game-graphic span {
  position: absolute;
  border-radius: 50%;
}

.game-graphic span:nth-child(1) {
  right: 34px;
  top: 18px;
  width: 30px;
  height: 30px;
  background: var(--teal);
}

.game-graphic span:nth-child(2) {
  right: 78px;
  bottom: 20px;
  width: 20px;
  height: 20px;
  background: var(--gold);
}

.game-graphic span:nth-child(3) {
  left: 18px;
  top: 20px;
  width: 18px;
  height: 18px;
  background: var(--coral);
}

.game-graphic span:nth-child(4) {
  left: 114px;
  top: 18px;
  width: 12px;
  height: 12px;
  background: var(--violet);
}

.earn-graphic::before {
  content: "";
  position: absolute;
  left: 28px;
  bottom: 22px;
  width: 156px;
  height: 88px;
  border-radius: 20px;
  background:
    radial-gradient(circle at 75% 35%, rgba(255, 255, 255, 0.62) 0 15px, transparent 16px),
    linear-gradient(135deg, var(--gold), #ffeec3);
  box-shadow: 0 18px 34px rgba(246, 189, 57, 0.24);
}

.earn-graphic::after {
  content: "";
  position: absolute;
  left: 63px;
  top: 34px;
  width: 92px;
  height: 92px;
  border: 14px solid var(--teal);
  border-right-color: var(--coral);
  border-radius: 50%;
  animation: spinCoin 6s linear infinite;
}

.earn-graphic span {
  position: absolute;
  right: 23px;
  bottom: 22px;
  width: 16px;
  border-radius: 99px;
  background: var(--ink);
}

.earn-graphic span:nth-child(1) {
  height: 48px;
}

.earn-graphic span:nth-child(2) {
  right: 49px;
  height: 70px;
  background: var(--teal);
}

.earn-graphic span:nth-child(3) {
  right: 75px;
  height: 34px;
  background: var(--coral);
}

.service-card h3,
.profile-card h3,
.product-tile h3 {
  margin-bottom: 12px;
  font-size: 1.38rem;
}

.service-card p,
.showcase-copy p {
  color: var(--muted);
  line-height: 1.7;
}

.showcase-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  align-items: center;
}

.product-board {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  transform: rotateZ(-2deg);
}

.product-tile {
  position: relative;
  display: flex;
  min-height: 180px;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  overflow: hidden;
}

.product-tile:nth-child(2),
.product-tile:nth-child(3) {
  transform: translateY(28px);
}

.product-tile span {
  position: relative;
  z-index: 1;
  color: var(--coral);
  font-weight: 900;
}

.product-tile h3 {
  position: relative;
  z-index: 1;
}

.tile-graphic {
  position: absolute;
  right: 18px;
  top: 16px;
  width: 100px;
  height: 100px;
  opacity: 0.82;
}

.tile-app {
  border: 7px solid var(--ink);
  border-radius: 24px;
  background: linear-gradient(145deg, #ffffff, #dffbf6);
  transform: rotate(10deg);
}

.tile-app::after {
  content: "";
  position: absolute;
  left: 19px;
  right: 19px;
  bottom: 18px;
  height: 10px;
  border-radius: 99px;
  background: var(--teal);
  box-shadow: 0 -20px 0 var(--gold);
}

.tile-game {
  border-radius: 50%;
  background:
    radial-gradient(circle at 34% 48%, var(--white) 0 9px, transparent 10px),
    radial-gradient(circle at 66% 48%, var(--coral) 0 12px, transparent 13px),
    var(--ink);
  box-shadow: 0 18px 34px rgba(16, 21, 34, 0.18);
}

.tile-game::before {
  content: "";
  position: absolute;
  left: 23px;
  top: 50px;
  width: 28px;
  height: 8px;
  border-radius: 99px;
  background: var(--white);
  box-shadow: 10px -10px 0 -1px var(--white), 10px 10px 0 -1px var(--white);
}

.tile-reward {
  border: 12px solid var(--gold);
  border-right-color: var(--teal);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.68);
  animation: spinCoin 7s linear infinite;
}

.tile-reward::after {
  content: "";
  position: absolute;
  inset: 20px;
  border-radius: 50%;
  background: var(--coral);
}

.tile-growth {
  border-radius: 20px;
  background:
    linear-gradient(135deg, transparent 52%, rgba(22, 184, 166, 0.22) 53%),
    #ffffff;
  box-shadow: inset 0 0 0 5px var(--ink);
}

.tile-growth::after {
  content: "";
  position: absolute;
  left: 18px;
  bottom: 18px;
  width: 14px;
  height: 28px;
  border-radius: 99px;
  background: var(--coral);
  box-shadow: 24px -18px 0 var(--gold), 48px -38px 0 var(--teal);
}

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

.profile-card {
  padding: 30px;
}

.profile-avatar {
  display: grid;
  width: 88px;
  height: 88px;
  margin-bottom: 28px;
  place-items: center;
  border-radius: 28px;
  background: var(--ink);
  color: var(--white);
  font-size: 1.4rem;
  font-weight: 900;
}

.profile-card p {
  margin-bottom: 8px;
  color: var(--coral);
  font-weight: 900;
  text-transform: uppercase;
}

.profile-card span {
  color: var(--muted);
  font-weight: 700;
}

.contact-section {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 24px;
  align-items: center;
  margin-bottom: 34px;
  padding: 46px;
  border-radius: 32px;
  background: #101522;
  color: var(--white);
  box-shadow: var(--shadow);
}

.contact-section h2 {
  max-width: 760px;
  margin-bottom: 18px;
}

.contact-copy p:not(.eyebrow) {
  max-width: 520px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.7;
}

.contact-actions {
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.contact-actions a {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
  font-weight: 900;
  white-space: nowrap;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.08);
}

.contact-form label {
  display: grid;
  gap: 8px;
}

.contact-form span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.84rem;
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
  font: inherit;
  outline: none;
}

.contact-form input,
.contact-form select {
  height: 50px;
  padding: 0 14px;
}

.contact-form textarea {
  min-height: 120px;
  resize: vertical;
  padding: 14px;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(246, 189, 57, 0.18);
}

.full-field,
.contact-form button {
  grid-column: 1 / -1;
}

.contact-form button {
  min-height: 54px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--teal), var(--gold));
  color: #09211f;
  cursor: pointer;
  font: inherit;
  font-weight: 900;
  box-shadow: 0 18px 34px rgba(22, 184, 166, 0.18);
}

.contact-form button:hover {
  transform: translateY(-2px);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 0 0 34px;
  color: var(--muted);
  font-weight: 700;
}

.site-footer a {
  color: var(--ink);
}

.policy-hero,
.policy-layout {
  width: min(1160px, calc(100% - 32px));
  margin-inline: auto;
}

.policy-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 30px;
  align-items: center;
  padding: 78px 0 38px;
}

.policy-hero h1 {
  max-width: 900px;
  margin-bottom: 22px;
  font-size: clamp(3.1rem, 8vw, 7rem);
}

.policy-hero p {
  max-width: 760px;
  color: #3d4657;
  font-size: clamp(1rem, 1.6vw, 1.24rem);
  line-height: 1.7;
}

.policy-jump {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.policy-jump a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  font-weight: 900;
}

.policy-visual {
  position: relative;
  min-height: 330px;
  perspective: 900px;
}

.policy-doc {
  position: absolute;
  left: 26px;
  top: 26px;
  width: 210px;
  height: 270px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: var(--shadow);
  transform: rotateZ(-7deg) rotateY(12deg);
}

.policy-doc::before {
  content: "";
  position: absolute;
  left: 24px;
  top: 28px;
  width: 86px;
  height: 20px;
  border-radius: 99px;
  background: var(--ink);
}

.policy-doc span {
  position: absolute;
  left: 24px;
  right: 24px;
  height: 13px;
  border-radius: 99px;
  background: rgba(91, 100, 117, 0.22);
}

.policy-doc span:nth-child(1) {
  top: 88px;
}

.policy-doc span:nth-child(2) {
  top: 126px;
  right: 58px;
}

.policy-doc span:nth-child(3) {
  top: 164px;
}

.policy-shield {
  position: absolute;
  right: 16px;
  top: 76px;
  width: 118px;
  height: 132px;
  border-radius: 58px 58px 42px 42px;
  background: linear-gradient(135deg, var(--teal), var(--gold));
  box-shadow: 0 22px 42px rgba(22, 184, 166, 0.22);
  transform: rotate(10deg);
}

.policy-shield::after {
  content: "";
  position: absolute;
  left: 36px;
  top: 32px;
  width: 28px;
  height: 54px;
  border-bottom: 8px solid var(--white);
  border-right: 8px solid var(--white);
  transform: rotate(42deg);
}

.policy-lock {
  position: absolute;
  right: 72px;
  bottom: 38px;
  width: 92px;
  height: 78px;
  border-radius: 18px;
  background: var(--ink);
  box-shadow: 0 18px 34px rgba(16, 21, 34, 0.2);
}

.policy-lock::before {
  content: "";
  position: absolute;
  left: 22px;
  top: -42px;
  width: 48px;
  height: 56px;
  border: 9px solid var(--ink);
  border-bottom: 0;
  border-radius: 28px 28px 0 0;
}

.policy-lock::after {
  content: "";
  position: absolute;
  left: 41px;
  top: 26px;
  width: 11px;
  height: 24px;
  border-radius: 99px;
  background: var(--gold);
}

.policy-layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
  padding: 24px 0 96px;
}

.policy-sidebar {
  position: sticky;
  top: 104px;
  display: grid;
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--line);
  box-shadow: 0 18px 42px rgba(21, 33, 55, 0.09);
}

.policy-sidebar div,
.policy-card,
.contact-table div {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(16px);
}

.policy-sidebar div {
  display: grid;
  gap: 8px;
  padding: 20px;
}

.policy-sidebar span,
.contact-table span {
  color: var(--coral);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.policy-sidebar strong,
.contact-table strong,
.contact-table a {
  color: var(--ink);
  line-height: 1.45;
}

.policy-content {
  display: grid;
  gap: 22px;
}

.policy-card {
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 26px;
  padding: clamp(24px, 4vw, 42px);
  box-shadow: 0 18px 42px rgba(21, 33, 55, 0.09);
}

.policy-card h2 {
  font-size: clamp(2rem, 4vw, 3.6rem);
}

.policy-card h3 {
  margin: 34px 0 12px;
  font-size: 1.22rem;
}

.policy-card p,
.policy-list {
  color: var(--muted);
  line-height: 1.75;
}

.policy-list {
  display: grid;
  gap: 10px;
  padding-left: 1.2rem;
}

.contact-table {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--line);
}

.contact-table div {
  display: grid;
  gap: 8px;
  min-height: 96px;
  padding: 20px;
}

.reveal-item {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms ease;
}

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

@keyframes floatStack {
  0%,
  100% {
    transform: translateY(0) rotateX(0deg);
  }
  50% {
    transform: translateY(-18px) rotateX(3deg);
  }
}

@keyframes spinCoin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes drift {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-14px);
  }
}

@keyframes pulseRadar {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.08);
  }
}

@media (max-width: 900px) {
  .site-header {
    align-items: stretch;
    flex-wrap: wrap;
  }

  .nav-links {
    order: 3;
    width: 100%;
    justify-content: space-between;
    gap: 10px;
  }

  .hero-section,
  .showcase-section,
  .policy-hero,
  .contact-section,
  .policy-layout {
    grid-template-columns: 1fr;
  }

  .policy-sidebar {
    position: static;
    grid-template-columns: repeat(2, 1fr);
  }

  .policy-visual {
    order: -1;
    min-height: 300px;
  }

  .hero-section {
    padding-top: 42px;
  }

  .hero-orbit {
    order: -1;
    min-height: 500px;
  }

  .metrics-strip,
  .service-grid {
    grid-template-columns: 1fr;
  }

  .contact-actions {
    align-items: stretch;
  }

  .contact-form {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .site-header,
  .hero-section,
  .metrics-strip,
  .section-shell,
  .showcase-section,
  .contact-section,
  .policy-hero,
  .policy-layout,
  .site-footer {
    width: min(100% - 22px, 1160px);
  }

  .brand {
    width: 100%;
  }

  .header-action {
    display: none;
  }

  .nav-links {
    overflow-x: auto;
    padding-bottom: 4px;
  }

  h1 {
    font-size: clamp(3.2rem, 18vw, 5rem);
  }

  .hero-orbit {
    min-height: 420px;
  }

  .phone {
    width: 172px;
    height: 324px;
    border-width: 8px;
    border-radius: 28px;
  }

  .phone-front {
    right: 28px;
  }

  .phone-back {
    left: 6px;
  }

  .coin-ring {
    width: 94px;
    height: 94px;
    border-width: 14px;
  }

  .game-pad {
    grid-template-columns: repeat(2, 48px);
  }

  .game-pad span {
    height: 48px;
    border-radius: 16px;
  }

  .floating-card {
    padding: 12px 15px;
  }

  .service-grid,
  .team-grid,
  .product-board {
    grid-template-columns: 1fr;
  }

  .product-board,
  .product-tile:nth-child(2),
  .product-tile:nth-child(3) {
    transform: none;
  }

  .contact-section {
    padding: 30px 20px;
  }

  .metric-graphic {
    width: 46px;
    height: 46px;
  }

  .service-graphic {
    height: 132px;
  }

  .tile-graphic {
    width: 82px;
    height: 82px;
  }

  .policy-visual {
    min-height: 250px;
  }

  .policy-doc {
    width: 176px;
    height: 226px;
  }

  .policy-shield {
    width: 96px;
    height: 108px;
  }

  .contact-actions a {
    white-space: normal;
    text-align: center;
  }

  .site-footer {
    flex-direction: column;
  }

  .policy-sidebar,
  .contact-table {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}
