/* =========================================================
   WEJOZ — GLOBAL
========================================================= */

:root {
  --bg-dark: #07111f;
  --bg-dark-2: #0b1628;
  --bg-soft: #f5f8fc;
  --bg-card: #ffffff;

  --text-light: #f7f9fc;
  --text-dark: #101828;
  --text-muted: #667085;
  --text-soft: #98a2b3;

  --blue: #2f80ff;
  --blue-2: #1d4ed8;
  --blue-light: #dbeafe;

  --orange: #f7a61a;
  --orange-soft: #fff4d8;

  --border: #e6eaf0;
  --border-dark: rgba(255, 255, 255, 0.12);

  --shadow-sm: 0 8px 20px rgba(15, 23, 42, 0.08);
  --shadow-md: 0 20px 50px rgba(15, 23, 42, 0.12);
  --shadow-lg: 0 30px 80px rgba(0, 0, 0, 0.25);

  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 32px;

  --container: 1180px;
}


/* =========================================================
   RESET
========================================================= */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  background: var(--bg-soft);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

.container {
  width: min(calc(100% - 32px), var(--container));
  margin-inline: auto;
}

.section {
  padding: 110px 0;
}


/* =========================================================
   TYPOGRAPHY
========================================================= */

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  letter-spacing: -0.035em;
}

h1 {
  font-size: clamp(3rem, 6vw, 6.4rem);
  line-height: 0.96;
  font-weight: 800;
}

h2 {
  font-size: clamp(2.3rem, 4.4vw, 4.6rem);
  line-height: 1.02;
  font-weight: 800;
}

h3 {
  font-size: 1.35rem;
  line-height: 1.15;
}

p {
  color: var(--text-muted);
}

.eyebrow {
  display: inline-block;
  margin-bottom: 18px;
  font-size: 0.76rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
  color: #c7d7ef;
}

.dark-eyebrow {
  color: #8090a6;
}


/* =========================================================
   HEADER
========================================================= */

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  transition: background 0.3s ease, box-shadow 0.3s ease,
    backdrop-filter 0.3s ease;
}

.site-header.scrolled {
  background: rgba(7, 17, 31, 0.84);
  backdrop-filter: blur(18px);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.06);
}

.nav-container {
  min-height: 82px;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 30px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  font-weight: 800;
}

.brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #4f9cff, #1d4ed8);
  box-shadow: 0 12px 30px rgba(47, 128, 255, 0.3);
  font-weight: 900;
}

.brand-name {
  font-size: 1.35rem;
}

.desktop-nav {
  display: flex;
  justify-content: center;
  gap: 32px;
}

.desktop-nav a {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

.desktop-nav a:hover {
  color: #fff;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--blue);
  color: #fff;
  font-weight: 700;
  box-shadow: 0 10px 25px rgba(47, 128, 255, 0.28);
  transition: transform 0.2s ease, background 0.2s ease;
}

.nav-cta:hover {
  transform: translateY(-2px);
  background: #4b91ff;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px auto;
  background: #fff;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.mobile-nav {
  display: none;
}


/* =========================================================
   HERO
========================================================= */

.hero-section {
  position: relative;
  min-height: 100svh;
  background:
    radial-gradient(circle at 82% 24%, rgba(47, 128, 255, 0.22), transparent 34%),
    radial-gradient(circle at 12% 10%, rgba(72, 132, 255, 0.11), transparent 30%),
    linear-gradient(180deg, #07111f 0%, #091525 55%, #0a1728 100%);
  overflow: hidden;
  color: #fff;
}

.hero-background {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.12;
  background-image:
    linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(to bottom, black, transparent 80%);
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.34;
}

.hero-orb-one {
  width: 380px;
  height: 380px;
  background: #176dff;
  right: -100px;
  top: 120px;
}

.hero-orb-two {
  width: 260px;
  height: 260px;
  background: #4bc2ff;
  left: -120px;
  bottom: 80px;
}

.hero-container {
  min-height: 100svh;
  padding-top: 130px;
  padding-bottom: 90px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-copy h1 {
  max-width: 760px;
  margin-bottom: 24px;
}

.hero-copy h1 span {
  background: linear-gradient(90deg, #7db5ff, #2f80ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-text {
  max-width: 650px;
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  color: rgba(255, 255, 255, 0.74);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease,
    background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 12px 32px rgba(47, 128, 255, 0.3);
}

.btn-primary:hover {
  background: #468dff;
}

.btn-secondary {
  border: 1px solid rgba(255, 255, 255, 0.24);
  color: #fff;
  background: rgba(255, 255, 255, 0.03);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
}

.hero-highlights {
  margin-top: 42px;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.9rem;
}

.highlight-icon {
  color: #84b8ff;
}


/* =========================================================
   HERO VISUAL
========================================================= */

.hero-visual {
  position: relative;
  min-height: 560px;
}

.floating-card {
  position: absolute;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(28, 48, 79, 0.94), rgba(12, 25, 46, 0.97));
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(16px);
}

.product-preview {
  padding: 20px;
}

.zas-preview {
  width: 58%;
  left: 0;
  top: 105px;
  transform: rotate(-5deg);
}

.safepass-preview {
  width: 62%;
  right: 0;
  top: 50px;
  transform: rotate(4deg);
}

.preview-top {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  margin-bottom: 16px;
}

.preview-top strong {
  display: block;
  font-size: 1.05rem;
}

.preview-top span {
  font-size: 0.75rem;
  color: rgba(255,255,255,.62);
}

.product-icon {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 14px;
  font-size: 1.35rem;
}

.product-icon:not(.large) {
  width: 44px;
  height: 44px;
}

.product-icon.large {
  width: 54px;
  height: 54px;
  font-size: 1.5rem;
}

.zas-icon {
  background: linear-gradient(135deg, #ffbf47, #f59e0b);
}

.safepass-icon {
  background: linear-gradient(135deg, #2f80ff, #173c8f);
}

.preview-window {
  min-height: 270px;
  padding: 14px;
  border-radius: 20px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
}

.preview-image-placeholder {
  width: 100%;
  height: 240px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-size: 0.82rem;
  color: rgba(255,255,255,.58);
}

.zas-placeholder {
  background:
    linear-gradient(135deg, rgba(255, 170, 37, 0.18), rgba(255,255,255,.03));
}

.safepass-placeholder {
  background:
    linear-gradient(135deg, rgba(47, 128, 255, 0.22), rgba(255,255,255,.03));
}

.hero-floating-badge {
  position: absolute;
  padding: 11px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  color: #fff;
  font-size: 0.78rem;
  backdrop-filter: blur(12px);
  box-shadow: 0 12px 35px rgba(0,0,0,.18);
}

.badge-one {
  left: 18%;
  bottom: 60px;
}

.badge-two {
  right: 5%;
  bottom: 120px;
}

.hero-scroll-indicator {
  position: absolute;
  left: 50%;
  bottom: 22px;
  width: 32px;
  height: 52px;
  transform: translateX(-50%);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 999px;
}

.hero-scroll-indicator span {
  position: absolute;
  left: 50%;
  top: 10px;
  width: 4px;
  height: 10px;
  border-radius: 999px;
  background: #fff;
  transform: translateX(-50%);
  animation: scrollPulse 1.8s ease-in-out infinite;
}

@keyframes scrollPulse {
  0% {
    opacity: 0;
    transform: translate(-50%, 0);
  }
  35% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translate(-50%, 16px);
  }
}


/* =========================================================
   PRODUCTS
========================================================= */

.products-section {
  background:
    radial-gradient(circle at 90% 0%, rgba(47,128,255,.08), transparent 25%),
    #f7f9fc;
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  align-items: end;
  gap: 40px;
  margin-bottom: 48px;
}

.section-heading h2 {
  margin-bottom: 0;
}

.section-heading-text {
  max-width: 500px;
  justify-self: end;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.product-card {
  position: relative;
  min-height: 560px;
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  background: #fff;
  display: grid;
  grid-template-columns: 1fr 0.88fr;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.product-card-zas {
  background:
    radial-gradient(circle at 80% 20%, rgba(255, 194, 75, 0.2), transparent 35%),
    linear-gradient(180deg, #fffdf8, #fffaf0);
}

.product-card-safe {
  background:
    radial-gradient(circle at 85% 15%, rgba(47,128,255,.18), transparent 32%),
    linear-gradient(180deg, #fafdff, #f3f8ff);
}

.product-card-content {
  padding: 42px 34px;
  align-self: center;
}

.product-card-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 26px;
}

.product-card-header h3 {
  margin: 0 0 3px;
  font-size: 1.8rem;
}

.product-card-header span {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.product-description {
  font-size: 1rem;
  margin-bottom: 22px;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
}

.feature-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 10px;
  color: #344054;
}

.feature-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #eef2f7;
  color: #344054;
  font-size: 0.68rem;
  font-weight: 900;
}

.product-card-zas .feature-list li:first-child::before {
  background: #fff2cb;
  color: #d78900;
}

.product-card-safe .feature-list li::before {
  background: var(--blue-light);
  color: var(--blue-2);
}

.product-btn {
  background: #101828;
  color: #fff;
}

.blue-btn {
  background: var(--blue);
}

.product-card-visual {
  display: grid;
  place-items: center;
  padding: 24px;
}


/* =========================================================
   MOCKUPS
========================================================= */

.phone-mockup {
  position: relative;
  width: 250px;
  height: 480px;
  padding: 10px;
  border: 8px solid #1a1d23;
  border-radius: 42px;
  background: #11151c;
  box-shadow: 0 30px 60px rgba(0,0,0,.22);
  transform: rotate(3deg);
}

.phone-notch {
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 88px;
  height: 18px;
  border-radius: 0 0 10px 10px;
  background: #11151c;
  z-index: 2;
}

.device-screen {
  height: 100%;
  border-radius: 30px;
  background: #fff;
  padding: 36px 12px 12px;
  overflow: hidden;
}

.mock-header {
  font-size: 0.9rem;
  font-weight: 800;
  margin-bottom: 14px;
}

.mock-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
  font-size: 0.64rem;
  color: #667085;
}

.mock-tabs span:first-child {
  color: #101828;
  font-weight: 800;
}

.mock-product {
  height: 84px;
  margin-bottom: 12px;
  border-radius: 16px;
  background:
    linear-gradient(135deg, #fff4d8, #f3f4f6);
}

.vault-mockup {
  width: 270px;
  padding: 20px;
  border-radius: 24px;
  background: rgba(255,255,255,.92);
  box-shadow: 0 28px 60px rgba(32, 72, 128, .18);
  transform: rotate(-2deg);
}

.vault-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
  font-weight: 800;
}

.vault-search {
  padding: 11px 12px;
  margin-bottom: 14px;
  border-radius: 12px;
  background: #f3f6fa;
  color: #98a2b3;
  font-size: 0.78rem;
}

.vault-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid #eef1f5;
}

.vault-circle {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: #eef4ff;
  color: #245dc7;
  font-size: 0.65rem;
  font-weight: 900;
}

.vault-item strong {
  display: block;
  font-size: 0.82rem;
}

.vault-item small {
  color: #98a2b3;
}


/* =========================================================
   COMING SOON
========================================================= */

.coming-soon-card {
  grid-column: 1 / -1;
  min-height: 380px;
  grid-template-columns: 1fr 0.75fr;
  color: #fff;
  background:
    radial-gradient(circle at 78% 35%, rgba(47,128,255,.24), transparent 30%),
    linear-gradient(135deg, #0b1423, #0f2037);
  border: 1px solid rgba(255,255,255,.08);
}

.coming-soon-copy {
  padding: 52px;
  align-self: center;
}

.coming-label {
  display: inline-flex;
  padding: 8px 13px;
  margin-bottom: 20px;
  border-radius: 999px;
  background: rgba(47,128,255,.14);
  color: #9ec7ff;
  border: 1px solid rgba(47,128,255,.22);
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.coming-soon-copy h3 {
  font-size: 3rem;
  margin-bottom: 12px;
}

.coming-soon-copy p {
  max-width: 560px;
  color: rgba(255,255,255,.68);
}

.coming-line {
  width: 120px;
  height: 1px;
  margin: 22px 0 16px;
  background: rgba(255,255,255,.15);
}

.coming-note {
  color: rgba(255,255,255,.52);
  font-size: 0.9rem;
}

.coming-soon-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 300px;
}

.served-visual-circle {
  position: relative;
  z-index: 2;
  width: 160px;
  height: 160px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background:
    linear-gradient(135deg, rgba(47,128,255,.65), rgba(19,51,98,.9));
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 24px 60px rgba(47,128,255,.22);
}

.served-visual-circle span {
  font-size: 4rem;
  font-weight: 900;
}

.served-glow {
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(47,128,255,.14);
  filter: blur(50px);
}


/* =========================================================
   PURPOSE / ABOUT
========================================================= */

.purpose-section {
  background: #fff;
}

.purpose-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 72px;
  align-items: center;
}

.purpose-copy p {
  max-width: 560px;
  margin-bottom: 28px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.value-card {
  padding: 26px;
  border-radius: 20px;
  background: #f9fbfd;
  border: 1px solid #edf1f6;
}

.value-icon {
  width: 42px;
  height: 42px;
  margin-bottom: 16px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: #edf5ff;
  color: var(--blue);
  font-size: 1.15rem;
}

.value-card h3 {
  margin-bottom: 8px;
}

.value-card p {
  margin-bottom: 0;
  font-size: 0.95rem;
}


/* =========================================================
   CONTACT
========================================================= */

.contact-section {
  padding: 96px 0;
  color: #fff;
  background:
    radial-gradient(circle at 85% 20%, rgba(47,128,255,.23), transparent 28%),
    #091525;
}

.contact-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

.contact-container h2 {
  margin-bottom: 12px;
}

.contact-container p {
  margin-bottom: 0;
  color: rgba(255,255,255,.62);
}

.contact-btn {
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.05);
  color: #fff;
}


/* =========================================================
   FOOTER
========================================================= */

.site-footer {
  padding: 62px 0 34px;
  background: #07111f;
  color: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr repeat(3, 0.7fr);
  gap: 40px;
}

.footer-brand p {
  margin: 18px 0;
  color: rgba(255,255,255,.55);
}

.footer-brand small {
  color: rgba(255,255,255,.36);
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-column h3 {
  margin-bottom: 10px;
  font-size: 0.9rem;
  color: #fff;
}

.footer-column a,
.footer-column span {
  color: rgba(255,255,255,.55);
  font-size: 0.9rem;
}

.footer-column a:hover {
  color: #fff;
}

.footer-disabled {
  opacity: 0.6;
}

.social-links {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.social-links a {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: rgba(255,255,255,.06);
}


/* =========================================================
   REVEAL ANIMATIONS
========================================================= */

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.7s cubic-bezier(.2,.65,.3,1),
    transform 0.7s cubic-bezier(.2,.65,.3,1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.products-grid .reveal:nth-child(2) {
  transition-delay: 0.08s;
}

.products-grid .reveal:nth-child(3) {
  transition-delay: 0.14s;
}

.values-grid .reveal:nth-child(2) {
  transition-delay: 0.07s;
}

.values-grid .reveal:nth-child(3) {
  transition-delay: 0.12s;
}

.values-grid .reveal:nth-child(4) {
  transition-delay: 0.17s;
}


/* =========================================================
   RESPONSIVE — TABLET
========================================================= */

@media (max-width: 1024px) {

  .desktop-nav,
  .nav-cta {
    display: none;
  }

  .nav-container {
    grid-template-columns: auto 1fr auto;
  }

  .menu-toggle {
    display: block;
    grid-column: 3;
  }

  .mobile-nav {
    position: absolute;
    top: 76px;
    right: 16px;
    left: 16px;
    padding: 18px;
    border-radius: 20px;
    background: rgba(9,21,37,.97);
    border: 1px solid rgba(255,255,255,.08);
    backdrop-filter: blur(18px);
    box-shadow: 0 20px 50px rgba(0,0,0,.2);
  }

  .mobile-nav.active {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .mobile-nav a {
    color: #fff;
    padding: 10px 4px;
  }

  .hero-container {
    grid-template-columns: 1fr;
    gap: 30px;
    padding-top: 150px;
  }

  .hero-copy {
    max-width: 820px;
  }

  .hero-visual {
    min-height: 500px;
  }

  .section-heading {
    grid-template-columns: 1fr;
  }

  .section-heading-text {
    justify-self: start;
  }

  .products-grid {
    grid-template-columns: 1fr;
  }

  .coming-soon-card {
    grid-column: auto;
  }

  .purpose-grid {
    grid-template-columns: 1fr;
  }

  .contact-container {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0,1fr));
  }

}


/* =========================================================
   RESPONSIVE — MOBILE
========================================================= */

@media (max-width: 720px) {

  .section {
    padding: 78px 0;
  }

  .container {
    width: min(calc(100% - 24px), var(--container));
  }

  .nav-container {
    min-height: 72px;
  }

  .hero-container {
    padding-top: 120px;
    padding-bottom: 70px;
  }

  .hero-copy h1 {
    font-size: clamp(2.7rem, 12vw, 4.4rem);
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  .hero-highlights {
    display: grid;
    grid-template-columns: repeat(2, minmax(0,1fr));
    gap: 16px;
  }

  .hero-visual {
    min-height: 430px;
  }

  .zas-preview,
  .safepass-preview {
    width: 72%;
  }

  .zas-preview {
    left: -2%;
    top: 120px;
  }

  .safepass-preview {
    right: -2%;
    top: 40px;
  }

  .preview-window {
    min-height: 190px;
  }

  .preview-image-placeholder {
    height: 170px;
  }

  .hero-floating-badge {
    font-size: 0.7rem;
    padding: 9px 12px;
  }

  .badge-one {
    left: 6%;
    bottom: 20px;
  }

  .badge-two {
    right: 2%;
    bottom: 74px;
  }

  .product-card {
    min-height: unset;
    grid-template-columns: 1fr;
  }

  .product-card-content {
    padding: 30px 24px 16px;
  }

  .product-card-visual {
    padding: 18px 24px 32px;
  }

  .coming-soon-card {
    grid-template-columns: 1fr;
  }

  .coming-soon-copy {
    padding: 34px 26px 10px;
  }

  .coming-soon-copy h3 {
    font-size: 2.3rem;
  }

  .coming-soon-visual {
    min-height: 230px;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

}


/* =========================================================
   VERY SMALL
========================================================= */

@media (max-width: 430px) {

  .hero-highlights {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 380px;
  }

  .zas-preview,
  .safepass-preview {
    width: 78%;
  }

  .phone-mockup {
    width: 210px;
    height: 410px;
  }

  .vault-mockup {
    width: 235px;
  }

}


/* =========================================================
   ACCESSIBILITY / REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

}

a:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(47,128,255,.55);
  outline-offset: 3px;
}



.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.brand-logo {
  width: 52px;
  height: 52px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 8px 22px rgba(55, 120, 255, 0.25));
}

.brand-name {
  font-size: 2rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1;
  letter-spacing: -0.02em;
}

.footer-logo .brand-logo {
  width: 46px;
  height: 46px;
}

@media (max-width: 768px) {
  .brand-logo {
    width: 44px;
    height: 44px;
  }

  .brand-name {
    font-size: 1.7rem;
  }
}