:root {
  --bg: #030713;
  --bg-deep: #081121;
  --surface: rgba(15, 22, 41, 0.76);
  --surface-strong: rgba(17, 25, 47, 0.9);
  --surface-soft: rgba(255, 255, 255, 0.06);
  --stroke: rgba(255, 255, 255, 0.11);
  --stroke-strong: rgba(255, 255, 255, 0.18);
  --text: #f5f7ff;
  --muted: #a6b2cb;
  --blue: #74a7ff;
  --cyan: #71f0dc;
  --purple: #a286ff;
  --pink: #ff73ce;
  --green: #32d67b;
  --red: #ff5c73;
  --shadow: 0 36px 100px rgba(0, 0, 0, 0.42);
  --shadow-soft: 0 20px 48px rgba(0, 0, 0, 0.28);
  --radius-xl: 32px;
  --radius-lg: 26px;
  --radius-md: 20px;
  --container: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
  color: var(--text);
  font-family: "Inter", sans-serif;
  background:
    radial-gradient(circle at 12% 18%, rgba(113, 240, 220, 0.14), transparent 25%),
    radial-gradient(circle at 88% 16%, rgba(116, 167, 255, 0.2), transparent 28%),
    radial-gradient(circle at 78% 64%, rgba(162, 134, 255, 0.14), transparent 26%),
    linear-gradient(180deg, #02040c 0%, #07101e 50%, #030713 100%);
  background-size: 140% 140%;
  animation: pageGradient 18s ease infinite;
}

body.lightbox-open {
  overflow: hidden;
}

main {
  position: relative;
  z-index: 1;
}

a,
button,
img {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
}

button {
  border: 0;
  font: inherit;
  color: inherit;
  background: none;
}

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

h1,
h2,
h3,
h4,
p,
figure {
  margin: 0;
}

h1,
h2,
h3 {
  letter-spacing: -0.055em;
}

h1 {
  font-size: clamp(3.6rem, 8vw, 6.7rem);
  line-height: 0.92;
}

h2 {
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  line-height: 1;
}

h3 {
  font-size: 1.28rem;
  line-height: 1.2;
}

.site-bg,
.device-glow,
.device-reflection {
  pointer-events: none;
}

.site-bg {
  position: fixed;
  inset: 0;
  overflow: hidden;
  z-index: -1;
}

.bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(28px);
  animation: drift 16s ease-in-out infinite;
}

.orb-a {
  width: 440px;
  height: 440px;
  top: 70px;
  left: -160px;
  background: radial-gradient(circle, rgba(113, 240, 220, 0.18), transparent 70%);
}

.orb-b {
  width: 560px;
  height: 560px;
  top: -110px;
  right: -220px;
  background: radial-gradient(circle, rgba(116, 167, 255, 0.24), transparent 70%);
  animation-delay: -5s;
}

.orb-c {
  width: 380px;
  height: 380px;
  right: 18%;
  bottom: 8%;
  background: radial-gradient(circle, rgba(162, 134, 255, 0.16), transparent 72%);
  animation-delay: -8s;
}

.bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.026) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(circle at center, black 30%, transparent 82%);
}

.page-shell {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-inline: clamp(18px, 4vw, 28px);
}

.narrow-shell {
  max-width: 860px;
}

.section {
  position: relative;
  padding: clamp(78px, 10vw, 118px) 0;
}

.section-tight {
  padding-top: 0;
}

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

.page-hero {
  padding-top: 92px;
  padding-bottom: 56px;
}

.eyebrow {
  margin-bottom: 18px;
  color: var(--cyan);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

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

.section-copy,
.hero-text,
.feature-card p,
.step-card p,
.story-card p,
.testimonial-card span,
.gallery-copy span,
.footer-brand p,
.trust-tags span,
.support-item span {
  color: var(--muted);
  line-height: 1.75;
}

.section-copy,
.hero-text,
.feature-card p,
.step-card p,
.story-card p,
.gallery-copy span {
  font-size: 1rem;
}

.align-center {
  text-align: center;
  margin-inline: auto;
}

.align-center .section-copy {
  margin-inline: auto;
  max-width: 700px;
}

.text-gradient {
  background: linear-gradient(135deg, #ffffff 0%, var(--cyan) 34%, var(--blue) 68%, var(--purple) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.text-glow {
  color: #ffffff;
  text-shadow:
    0 0 18px rgba(113, 240, 220, 0.18),
    0 0 28px rgba(116, 167, 255, 0.1);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  padding-top: 18px;
}

.navbar {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 18px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 999px;
  background: rgba(10, 20, 40, 0.65);
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.24);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-img {
  height: 42px;
  width: 42px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 15px rgba(0, 255, 200, 0.25);
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan), var(--blue) 60%, #e3e9ff);
  color: #06101e;
  font-size: 0.96rem;
  font-weight: 900;
  box-shadow:
    0 14px 30px rgba(113, 240, 220, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 22px;
}

.nav-menu a {
  position: relative;
  color: var(--muted);
  text-decoration: none;
  font-size: 0.96rem;
  transition: color 0.3s ease, transform 0.3s ease;
}

.nav-menu a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -6px;
  left: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.is-active {
  color: var(--text);
}

.nav-menu a:hover::after,
.nav-menu a.is-active::after {
  transform: scaleX(1);
}

.nav-download,
.button-primary,
.button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease,
    background 0.3s ease,
    color 0.3s ease;
  position: relative;
  overflow: hidden;
}

.nav-download,
.button-primary {
  color: #04111f;
  background: linear-gradient(135deg, var(--cyan), var(--blue) 58%, #dce6ff);
  box-shadow: 0 18px 42px rgba(113, 240, 220, 0.18);
}

.button-secondary {
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: var(--shadow-soft);
}

.nav-download::after {
  display: none;
}

.download-btn {
  background: linear-gradient(135deg, #00f5a0, #00d9f5);
  color: #ffffff;
  font-weight: 700;
  padding: 12px 24px;
  border-radius: 999px;
  border: none;
  transition: all 0.3s ease;
  box-shadow:
    0 0 20px rgba(0, 245, 160, 0.5),
    0 12px 30px rgba(0, 0, 0, 0.25);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.45);
}

.nav-download:hover,
.button-primary:hover,
.button-secondary:hover,
.social-card:hover,
.feature-card:hover,
.step-card:hover,
.story-card:hover,
.gallery-card:hover,
.email-link:hover,
.policy-link-card:hover {
  transform: translateY(-4px);
}

.download-btn:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow:
    0 0 34px rgba(0, 245, 160, 0.7),
    0 18px 34px rgba(0, 0, 0, 0.3);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--text);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.hero-layout,
.preview-layout,
.highlight-panel,
.contact-grid,
.privacy-grid {
  display: grid;
  gap: 32px;
  align-items: center;
}

.hero-layout {
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
  gap: clamp(40px, 5vw, 64px);
}

.hero-copy h1 {
  max-width: 12ch;
}

.hero-text {
  max-width: 630px;
  margin-top: 24px;
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 34px;
}

.playstore-wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-top: 22px;
}

.playstore-badge {
  display: inline-block;
  margin: 0;
  padding: 0;
  border: 0;
  background: none;
  line-height: 0;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.playstore-badge img {
  display: block;
  width: auto;
  max-width: 180px;
  height: auto;
  margin: 0;
  padding: 0;
  object-fit: contain;
}

.playstore-badge:hover {
  transform: translateY(-3px) scale(1.02);
  filter: drop-shadow(0 0 18px rgba(113, 240, 220, 0.24));
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.meta-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: #dae5ff;
  font-size: 0.92rem;
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(18px);
}

.meta-pill i {
  color: var(--cyan);
}

.hero-stage {
  position: relative;
  min-height: 720px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-stage::before {
  content: "";
  position: absolute;
  width: 540px;
  height: 540px;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(116, 167, 255, 0.24), transparent 58%),
    radial-gradient(circle at 30% 30%, rgba(113, 240, 220, 0.24), transparent 30%);
  filter: blur(14px);
  animation: floatGlow 10s ease-in-out infinite;
}

.float-card,
.float-chip {
  position: absolute;
  z-index: 3;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-soft);
}

.float-card {
  max-width: 240px;
  padding: 18px 20px;
  border-radius: 22px;
}

.float-label {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.float-card strong {
  display: block;
  line-height: 1.55;
  font-size: 0.96rem;
}

.float-card-top {
  top: 30%;
  right: -80px;
  left: auto;
  transform: translateY(-50%) scale(0.9);
  animation: floatNote 7s ease-in-out infinite;
}

.float-card-top::after {
  content: "";
  position: absolute;
  top: 50%;
  left: -62px;
  width: 54px;
  height: 1px;
  background: linear-gradient(90deg, rgba(113, 240, 220, 0), rgba(113, 240, 220, 0.7));
  transform: translateY(-50%);
}

.float-card-bottom {
  right: 0;
  bottom: 92px;
  animation: floatNote 7s ease-in-out infinite;
  animation-delay: -2.2s;
}

.float-chip {
  padding: 12px 16px;
  border-radius: 999px;
  color: #ecf3ff;
  font-size: 0.92rem;
}

.chip-hours {
  top: 168px;
  right: 20px;
}

.chip-salary {
  bottom: 34px;
  left: 18px;
}

.device {
  position: relative;
  z-index: 2;
}

.device-glow {
  position: absolute;
  inset: -26px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(113, 240, 220, 0.16), transparent 62%);
  filter: blur(24px);
}

.device-shell {
  position: relative;
  width: min(370px, 100%);
  padding: 14px;
  border-radius: 46px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0.04)),
    rgba(7, 10, 22, 0.92);
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.5),
    0 42px 112px rgba(0, 0, 0, 0.52),
    0 0 58px rgba(116, 167, 255, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
  animation: floatDevice 8s ease-in-out infinite;
}

.device-notch {
  position: absolute;
  top: 10px;
  left: 50%;
  width: 40%;
  height: 30px;
  border-radius: 0 0 18px 18px;
  background: #04070f;
  transform: translateX(-50%);
  z-index: 3;
}

.device-reflection {
  position: absolute;
  inset: 16px 18px auto auto;
  width: 38%;
  height: 78%;
  border-radius: 36px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.2), transparent 44%, transparent);
  opacity: 0.48;
  z-index: 2;
}

.device-screen {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 9 / 19.5;
  border-radius: 34px;
  background: #07111f;
}

.device-screen img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 28px;
}

.panel,
.feature-card,
.step-card,
.story-card,
.testimonial-card,
.gallery-card,
.contact-card,
.preview-showcase {
  position: relative;
  border: 1px solid var(--stroke);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(16, 23, 43, 0.82), rgba(10, 16, 32, 0.74));
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(22px);
  overflow: hidden;
}

.panel::before,
.feature-card::before,
.step-card::before,
.story-card::before,
.testimonial-card::before,
.gallery-card::before,
.contact-card::before,
.preview-showcase::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(113, 240, 220, 0.34), rgba(116, 167, 255, 0.18), rgba(162, 134, 255, 0.28));
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.trust-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  padding: 34px 36px;
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
}

.trust-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.trust-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 12px;
  margin-top: 24px;
}

.trust-tags span {
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: #d7e3ff;
  font-size: 0.92rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.trust-tags span:hover {
  transform: translateY(-2px) scale(1.03);
  border-color: rgba(113, 240, 220, 0.26);
  background: rgba(113, 240, 220, 0.12);
  box-shadow:
    0 0 20px rgba(113, 240, 220, 0.24),
    0 14px 26px rgba(0, 0, 0, 0.24);
}

.trust-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 420px;
}

.trust-visual::before {
  content: "";
  position: absolute;
  inset: 8% -2% 8% 10%;
  border-radius: 50%;
  background: radial-gradient(circle at right, rgba(0, 255, 200, 0.15), transparent 68%);
  filter: blur(10px);
}

.trust-shot-card {
  position: relative;
  z-index: 1;
  width: min(100%, 320px);
  padding: 16px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(16px);
  box-shadow:
    0 24px 54px rgba(0, 0, 0, 0.4),
    0 0 28px rgba(113, 240, 220, 0.12);
  transform: rotate(-3deg);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.trust-shot-card::after {
  content: "";
  position: absolute;
  top: 50%;
  left: -50px;
  width: 46px;
  height: 1px;
  background: linear-gradient(90deg, rgba(113, 240, 220, 0), rgba(113, 240, 220, 0.7));
  transform: translateY(-50%);
}

.trust-shot-card img {
  width: 100%;
  aspect-ratio: 9 / 19.5;
  object-fit: contain;
  border-radius: 20px;
  background: rgba(6, 12, 24, 0.9);
}

.trust-shot-card:hover {
  transform: rotate(-1deg) translateY(-3px);
  box-shadow:
    0 28px 66px rgba(0, 0, 0, 0.44),
    0 0 32px rgba(113, 240, 220, 0.2);
}

.feature-grid,
.step-grid,
.testimonial-grid,
.story-grid,
.gallery-grid,
.social-row {
  display: grid;
  gap: 22px;
}

.home-feature-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.feature-grid-wide {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-grid-three,
.step-grid,
.testimonial-grid,
.story-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.story-grid-large {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.feature-card,
.step-card,
.story-card,
.testimonial-card {
  padding: 28px;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.feature-card:hover,
.step-card:hover,
.story-card:hover,
.testimonial-card:hover,
.gallery-card:hover {
  box-shadow:
    0 26px 84px rgba(0, 0, 0, 0.4),
    0 0 32px rgba(116, 167, 255, 0.12);
}

.feature-card-accent {
  background:
    linear-gradient(145deg, rgba(23, 34, 62, 0.96), rgba(11, 17, 34, 0.84)),
    linear-gradient(135deg, rgba(113, 240, 220, 0.08), rgba(116, 167, 255, 0.08), rgba(162, 134, 255, 0.08));
}

.icon-badge {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(113, 240, 220, 0.18), rgba(116, 167, 255, 0.16), rgba(162, 134, 255, 0.18));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14);
  color: var(--text);
  font-size: 1.18rem;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.feature-card:hover .icon-badge,
.step-card:hover .icon-badge,
.story-card:hover .icon-badge {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 18px 34px rgba(116, 167, 255, 0.18);
}

.feature-card h3,
.step-card h3,
.story-card h3,
.gallery-copy strong {
  margin-bottom: 10px;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  margin-bottom: 22px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--cyan);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.15em;
}

.preview-layout {
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1fr);
}

.note-list {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.note-list span {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #dde6fb;
}

.note-list i {
  color: var(--cyan);
}

.preview-showcase {
  padding: 34px;
}

.device-preview .device-shell {
  width: min(340px, 100%);
  margin: 0 auto;
}

.preview-screen {
  background: #06101f;
}

.preview-image {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transform: scale(0.97);
  transition: opacity 0.55s ease, transform 0.55s ease, visibility 0.55s ease;
}

.preview-image.is-active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

.preview-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 24px 0 20px;
}

.preview-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.24);
  transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.preview-dot.is-active {
  transform: scale(1.18);
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  box-shadow: 0 0 18px rgba(113, 240, 220, 0.3);
}

.preview-thumb-row {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
}

.preview-thumb {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 12px 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
  transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease, color 0.3s ease;
}

.preview-thumb img {
  width: 100%;
  max-width: 46px;
  aspect-ratio: 9 / 19.5;
  object-fit: contain;
  border-radius: 10px;
  background: #091121;
}

.preview-thumb span {
  font-size: 0.78rem;
  font-weight: 700;
}

.preview-thumb.is-active {
  color: var(--text);
  background: rgba(116, 167, 255, 0.14);
  border-color: rgba(113, 240, 220, 0.24);
  transform: translateY(-2px);
}

.highlight-panel {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.88fr);
  padding: 34px;
}

.report-card {
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.report-tag {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  margin-bottom: 16px;
  border-radius: 999px;
  background: rgba(113, 240, 220, 0.14);
  color: var(--cyan);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.check-list {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #ebf2ff;
  font-size: 0.98rem;
}

.check-list i {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  flex: 0 0 auto;
  color: var(--cyan);
  background: rgba(113, 240, 220, 0.14);
}

.testimonial-card p {
  font-size: 1.04rem;
  line-height: 1.7;
}

.testimonial-card span {
  display: block;
  margin-top: 18px;
  font-size: 0.9rem;
}

.social-panel {
  padding: 34px;
}

.social-row {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 12px;
}

.social-card {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 24px;
  text-decoration: none;
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.social-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.04));
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.social-icon-wrap {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  flex: 0 0 auto;
  font-size: 1.28rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.social-card-copy {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.social-card-copy strong {
  font-size: 1rem;
}

.social-card-copy span {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

.social-card > .fa-arrow-up-right-from-square {
  margin-left: auto;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.88rem;
}

.social-card-instagram .social-icon-wrap {
  background: linear-gradient(135deg, #f58529, #dd2a7b 48%, #8134af 72%, #515bd4);
}

.social-card-youtube .social-icon-wrap {
  background: linear-gradient(135deg, #ff6b6b, #e50914);
}

.social-card-whatsapp .social-icon-wrap {
  background: linear-gradient(135deg, #34d06d, #119f50);
}

.social-card-instagram:hover {
  box-shadow:
    0 24px 70px rgba(0, 0, 0, 0.32),
    0 0 24px rgba(255, 0, 150, 0.28);
}

.social-card-youtube:hover {
  box-shadow:
    0 24px 70px rgba(0, 0, 0, 0.32),
    0 0 24px rgba(255, 0, 0, 0.22);
}

.social-card-whatsapp:hover {
  box-shadow:
    0 24px 70px rgba(0, 0, 0, 0.32),
    0 0 24px rgba(0, 255, 100, 0.18);
}

.cta-banner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: 36px 38px;
  background:
    radial-gradient(circle at top right, rgba(116, 167, 255, 0.18), transparent 34%),
    radial-gradient(circle at bottom left, rgba(113, 240, 220, 0.14), transparent 28%),
    linear-gradient(135deg, rgba(15, 22, 42, 0.94), rgba(12, 18, 36, 0.82));
}

.story-card {
  min-height: 100%;
}

.contact-grid,
.privacy-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.contact-card {
  padding: 32px;
}

.email-link,
.policy-link-card {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
  max-width: 100%;
  padding: 16px 18px;
  margin: 24px 0 26px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  text-decoration: none;
  box-shadow: var(--shadow-soft);
  word-break: break-all;
  overflow-wrap: anywhere;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, color 0.3s ease;
  position: relative;
  z-index: 2;
}

.email-link:hover,
.policy-link-card:hover {
  color: var(--cyan);
  border-color: rgba(113, 240, 220, 0.28);
  box-shadow:
    0 16px 42px rgba(0, 0, 0, 0.28),
    0 0 20px rgba(113, 240, 220, 0.14);
}

.email-link i,
.policy-link-card i {
  color: var(--cyan);
}

.support-list {
  display: grid;
  gap: 16px;
  margin-top: 10px;
}

.support-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.support-item i {
  color: var(--cyan);
  margin-top: 4px;
}

.footer-socials-contact {
  justify-content: flex-start;
  margin-top: 28px;
}

.gallery-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.gallery-card {
  padding: 18px;
  text-align: left;
  cursor: pointer;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.gallery-frame {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 520px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 26px;
  background: rgba(5, 9, 19, 0.82);
}

.gallery-frame img {
  width: 100%;
  height: 100%;
  aspect-ratio: 9 / 19.5;
  object-fit: contain;
  border-radius: 20px;
}

.gallery-copy {
  display: block;
  margin-top: 18px;
}

.gallery-copy strong {
  display: block;
  font-size: 1.04rem;
}

.gallery-copy span {
  display: block;
  margin-top: 8px;
}

.lightbox {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
  z-index: 120;
}

.lightbox.is-open {
  opacity: 1;
  visibility: visible;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  cursor: pointer;
  background: rgba(2, 5, 12, 0.86);
  backdrop-filter: blur(18px);
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
}

.lightbox-figure {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: min(100%, 480px);
  margin: 0;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 32px;
  background: linear-gradient(180deg, rgba(18, 24, 46, 0.94), rgba(10, 16, 30, 0.86));
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.54);
}

.lightbox-image {
  width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 22px;
  background: #07101f;
}

.lightbox-caption {
  margin-top: 16px;
  color: #dfe8fb;
  text-align: center;
}

.site-footer {
  padding: 22px 0 32px;
}

.footer-layout {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
  align-items: flex-start;
  padding: 30px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.brand-footer {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-logo {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.footer-brand p {
  max-width: 360px;
}

.footer-label {
  display: block;
  margin-bottom: 14px;
  color: var(--cyan);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.footer-social-block .footer-label {
  color: #8be9fd;
  letter-spacing: 1px;
  font-weight: 600;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 18px;
}

.footer-links a,
.footer-bottom a {
  position: relative;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

.footer-links a:hover,
.footer-bottom a:hover {
  color: var(--text);
  text-shadow: 0 0 18px rgba(116, 167, 255, 0.14);
}

.footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.social-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.social-btn i {
  font-size: 15px;
}

.social-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.social-btn-instagram i {
  color: #ff5ea7;
}

.social-btn-youtube i {
  color: #ff4f4f;
}

.social-btn-whatsapp i {
  color: #33d57d;
}

.social-btn-instagram:hover {
  box-shadow: 0 0 15px rgba(255, 0, 150, 0.38);
}

.social-btn-youtube:hover {
  box-shadow: 0 0 15px rgba(255, 0, 0, 0.3);
}

.social-btn-whatsapp:hover {
  box-shadow: 0 0 15px rgba(0, 255, 100, 0.24);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--muted);
  font-size: 0.94rem;
}

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

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

.ripple {
  position: absolute;
  border-radius: 50%;
  transform: scale(0);
  background: rgba(255, 255, 255, 0.34);
  animation: ripple 0.65s ease-out;
  pointer-events: none;
}

@media (max-width: 1100px) {
  .hero-layout,
  .preview-layout,
  .highlight-panel,
  .contact-grid,
  .privacy-grid,
  .cta-banner,
  .footer-layout,
  .trust-strip {
    grid-template-columns: 1fr;
  }

  .home-feature-grid,
  .feature-grid-wide,
  .feature-grid-three,
  .step-grid,
  .testimonial-grid,
  .story-grid,
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .story-grid-large {
    grid-template-columns: 1fr;
  }

  .social-row {
    grid-template-columns: 1fr;
  }

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

  .trust-shot-card {
    transform: rotate(-1deg);
  }

  .hero-stage {
    min-height: 640px;
  }

  .float-card-top {
    right: -44px;
  }
}

@media (max-width: 820px) {
  .site-header {
    padding-top: 12px;
  }

  .navbar {
    padding: 12px 14px;
  }

  .nav-left {
    gap: 8px;
  }

  .logo-img {
    width: 40px;
    height: 40px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-menu {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    left: 0;
    display: grid;
    gap: 16px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 28px;
    background: rgba(8, 12, 24, 0.96);
    backdrop-filter: blur(22px);
    box-shadow: var(--shadow-soft);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
  }

  .navbar.is-open .nav-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }

  .navbar.is-open .nav-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .navbar.is-open .nav-toggle span:nth-child(2) {
    opacity: 0;
  }

  .navbar.is-open .nav-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

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

  .nav-download {
    width: 100%;
  }

  .preview-thumb-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .section {
    padding: 70px 0;
  }

  .hero-section,
  .page-hero {
    padding-top: 82px;
  }

  .hero-copy {
    text-align: center;
  }

  .hero-copy h1,
  .hero-text {
    margin-inline: auto;
  }

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

  .playstore-wrapper {
    justify-content: center;
  }

  .hero-stage {
    min-height: 560px;
  }

  .float-chip {
    display: none;
  }

  .float-card-top {
    top: 34%;
    right: -22px;
    transform: translateY(-50%) scale(0.8);
  }

  .float-card-top::after {
    left: -36px;
    width: 30px;
  }

  .float-card-bottom {
    right: 12px;
    bottom: 24px;
  }

  .home-feature-grid,
  .feature-grid-wide,
  .feature-grid-three,
  .step-grid,
  .testimonial-grid,
  .story-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-frame {
    min-height: 480px;
  }

  .preview-showcase,
  .social-panel,
  .contact-card,
  .cta-banner,
  .highlight-panel,
  .trust-strip {
    padding: 28px 24px;
  }

  .trust-visual {
    min-height: auto;
    margin-top: 8px;
  }

  .trust-shot-card {
    width: min(100%, 280px);
    transform: none;
  }

  .trust-shot-card::after {
    display: none;
  }

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

@media (max-width: 560px) {
  h1 {
    font-size: clamp(2.8rem, 13vw, 4.8rem);
  }

  h2 {
    font-size: clamp(1.9rem, 9vw, 3rem);
  }

  .button-primary,
  .button-secondary,
  .nav-download {
    width: 100%;
  }

  .brand {
    font-size: 0.95rem;
  }

  .nav-left {
    gap: 8px;
    min-width: 0;
  }

  .logo-img {
    width: 36px;
    height: 36px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-stage {
    min-height: 490px;
  }

  .device-shell {
    width: min(300px, 100%);
    padding: 12px;
    border-radius: 38px;
  }

  .device-screen {
    border-radius: 28px;
  }

  .float-card {
    max-width: 190px;
    padding: 14px 16px;
  }

  .float-card-top {
    display: none;
  }

  .float-card-bottom {
    display: none;
  }

  .preview-thumb-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-frame {
    min-height: 420px;
    padding: 10px;
  }

  .social-card {
    padding: 16px;
  }

  .footer-socials {
    gap: 10px;
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

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

@keyframes pageGradient {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

@keyframes drift {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(16px, -20px, 0) scale(1.04);
  }
}

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

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

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

@keyframes ripple {
  to {
    transform: scale(4);
    opacity: 0;
  }
}
