:root {
  --brand-red: #ff0d1b;
  --brand-red-dark: #d90613;
  --brand-red-soft: #fff0f1;

  --brand-turquoise: #4ecdc4;
  --brand-yellow: #ffd166;

  --bg: #fff8f8;
  --surface: #ffffff;
  --surface-2: #fff0f1;

  --text: #111111;
  --muted: #666666;
  --muted-light: #999999;

  --line: rgba(17, 17, 17, 0.09);

  --shadow-sm:
    0 12px 35px rgba(17, 17, 17, 0.08);

  --shadow-md:
    0 25px 60px rgba(17, 17, 17, 0.12);

  --shadow-lg:
    0 35px 90px rgba(17, 17, 17, 0.18);

  --radius: 28px;

  --container: 1180px;
}

/* =========================================================
   RESET
========================================================= */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
  font-family: "Poppins", system-ui, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

::selection {
  background: rgba(255, 13, 27, 0.16);
}

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

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

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

button {
  font: inherit;
}

.container {
  width: min(
    var(--container),
    calc(100% - 40px)
  );

  margin-inline: auto;
}

/* =========================================================
   GENERAL
========================================================= */

.section {
  padding: 112px 0;
  position: relative;
}

.section-sm {
  padding: 36px 0;
}

.gradient-text {
  background:
    linear-gradient(
      100deg,
      #ff0d1b 0%,
      #e30613 48%,
      #4ecdc4 100%
    );

  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.page-glow {
  position: fixed;
  width: 480px;
  height: 480px;

  border-radius: 50%;

  filter: blur(80px);

  pointer-events: none;

  z-index: -1;

  opacity: 0.34;
}

.glow-one {
  top: 80px;
  left: -220px;

  background:
    rgba(255, 13, 27, 0.2);
}

.glow-two {
  top: 420px;
  right: -240px;

  background:
    rgba(78, 205, 196, 0.2);
}

/* =========================================================
   HEADER
========================================================= */

.site-header {
  position: sticky;
  top: 0;

  z-index: 50;

  border-bottom:
    1px solid
    rgba(17, 17, 17, 0.07);

  background:
    rgba(255, 255, 255, 0.82);

  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.nav-wrap {
  height: 76px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 24px;
}

.brand {
  display: inline-flex;

  align-items: center;

  gap: 10px;

  font-weight: 800;
}

/* =========================================================
   ROUNDED LOGO
========================================================= */

.logo-box {
  width: 36px;
  height: 36px;

  display: grid;
  place-items: center;

  overflow: hidden;

  border-radius: 11px;

  background: #ffffff;

  box-shadow:
    0 8px 22px
    rgba(255, 13, 27, 0.20);

  flex-shrink: 0;
}

.brand-mark {
  width: 100%;
  height: 100%;

  object-fit: cover;

  border-radius: 11px;

  filter:
    drop-shadow(
      0 5px 14px
      rgba(255, 13, 27, 0.18)
    );
}

.brand-name {
  font-size: 1.17rem;

  letter-spacing: -0.03em;
}

.desktop-nav {
  display: flex;

  align-items: center;

  gap: 30px;

  margin-left: auto;
}

.desktop-nav a {
  font-size: 0.92rem;

  color: #666;

  font-weight: 600;

  transition:
    color 0.2s ease;
}

.desktop-nav a:hover {
  color: var(--text);
}

.nav-cta {
  padding: 11px 17px;

  border-radius: 14px;

  color: #fff;

  display: inline-flex;
  align-items: center;
  gap: 8px;

  font-weight: 800;

  font-size: 0.88rem;

  background:
    linear-gradient(
      135deg,
      var(--brand-red),
      var(--brand-red-dark)
    );

  box-shadow:
    0 10px 24px
    rgba(255, 13, 27, 0.22);

  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.nav-cta:hover {
  transform:
    translateY(-2px);

  box-shadow:
    0 15px 28px
    rgba(255, 13, 27, 0.28);
}

/* =========================================================
   GOOGLE PLAY ICON
========================================================= */

.play-store-icon {
  width: 24px;
  height: 24px;

  display: inline-grid;
  place-items: center;

  flex-shrink: 0;
}

.play-store-icon svg {
  width: 100%;
  height: 100%;

  display: block;
}

.play-store-icon.small {
  width: 18px;
  height: 18px;
}

.menu-toggle {
  display: none;

  width: 44px;
  height: 44px;

  border-radius: 14px;

  border:
    1px solid var(--line);

  background: #fff;

  cursor: pointer;
}

.menu-toggle span {
  display: block;

  width: 18px;
  height: 2px;

  background: #292234;

  border-radius: 10px;

  margin: 4px auto;
}

.mobile-menu {
  display: none;
}

/* =========================================================
   HERO
========================================================= */

.hero {
  padding-top: 92px;

  min-height: 740px;

  position: relative;

  overflow: hidden;
}

.hero-grid {
  display: grid;

  grid-template-columns:
    1fr
    0.95fr;

  align-items: center;

  gap: 60px;
}

.hero-copy {
  max-width: 650px;

  position: relative;

  z-index: 3;
}

.eyebrow {
  display: inline-flex;

  align-items: center;

  gap: 8px;

  text-transform: uppercase;

  letter-spacing: 0.14em;

  font-size: 0.7rem;

  font-weight: 800;

  color: #777;
}

.eyebrow-dot {
  width: 7px;
  height: 7px;

  border-radius: 50%;

  background:
    linear-gradient(
      135deg,
      var(--brand-turquoise),
      var(--brand-red)
    );

  box-shadow:
    0 0 0 6px
    rgba(255, 13, 27, 0.08);
}

h1,
h2,
h3 {
  font-family: "Poppins", sans-serif;
}

h1 {
  margin: 21px 0 22px;

  font-size:
    clamp(
      3.1rem,
      6vw,
      5.4rem
    );

  line-height: 0.98;

  letter-spacing: -0.07em;

  max-width: 680px;
}

.hero-text {
  font-size: 1.08rem;

  line-height: 1.75;

  color: var(--muted);

  max-width: 600px;
}

.hero-actions {
  display: flex;

  align-items: center;

  gap: 24px;

  margin-top: 34px;

  flex-wrap: wrap;
}

.btn {
  display: inline-flex;

  align-items: center;

  justify-content: center;

  gap: 11px;

  min-height: 54px;

  padding: 0 20px;

  border-radius: 16px;

  font-weight: 800;

  font-size: 0.92rem;

  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.btn:hover {
  transform:
    translateY(-2px);
}

.btn-primary {
  color: #fff;

  background:
    linear-gradient(
      135deg,
      #ff0d1b 0%,
      #e30613 65%,
      #ff4d57 100%
    );

  box-shadow:
    0 18px 35px
    rgba(255, 13, 27, 0.27);
}

.text-link {
  font-weight: 800;

  color: #333;
}

.text-link span {
  margin-left: 8px;

  font-size: 1.1rem;
}

.trust-row {
  display: flex;

  gap: 9px;

  flex-wrap: wrap;

  margin-top: 28px;
}

.trust-pill {
  display: inline-flex;

  align-items: center;

  gap: 7px;

  padding: 8px 12px;

  background:
    rgba(255, 255, 255, 0.82);

  border:
    1px solid var(--line);

  border-radius: 999px;

  color: #777;

  font-size: 0.76rem;

  font-weight: 700;

  box-shadow:
    0 8px 20px
    rgba(17, 17, 17, 0.03);
}

.check {
  width: 17px;
  height: 17px;

  display: inline-grid;

  place-items: center;

  border-radius: 50%;

  color: #fff;

  font-size: 10px;

  background:
    linear-gradient(
      135deg,
      var(--brand-red),
      var(--brand-red-dark)
    );
}

/* =========================================================
   HERO PEOPLE
========================================================= */

.hero-visual {
  min-height: 620px;

  position: relative;

  display: grid;

  place-items: center;
}

.hero-bg-person {
  position: absolute;

  border-radius: 50%;

  overflow: hidden;

  opacity: 0.13;

  filter: blur(1px);

  box-shadow:
    0 30px 80px
    rgba(17, 17, 17, 0.12);
}

.hero-bg-person img {
  width: 100%;
  height: 100%;

  object-fit: cover;
}

.person-left {
  width: 170px;
  height: 170px;

  left: -50px;
  top: 20px;

  transform:
    rotate(-10deg);
}

.person-right {
  width: 200px;
  height: 200px;

  right: -40px;
  bottom: 40px;

  transform:
    rotate(8deg);
}

.hero-bg-ring {
  position: absolute;

  border-radius: 50%;

  border: 1px solid;
}

.ring-one {
  width: 470px;
  height: 470px;

  border-color:
    rgba(255, 13, 27, 0.12);
}

.ring-two {
  width: 620px;
  height: 620px;

  border-color:
    rgba(78, 205, 196, 0.12);
}

.hero-image-main {
  width: 360px;
  height: 500px;

  position: relative;

  overflow: hidden;

  border-radius: 42px;

  z-index: 3;

  transform:
    rotate(4deg);

  border:
    7px solid
    rgba(255, 255, 255, 0.88);

  box-shadow:
    0 35px 90px
    rgba(17, 17, 17, 0.24);
}

.hero-image-main img {
  width: 100%;
  height: 100%;

  object-fit: cover;
}

.hero-image-overlay {
  position: absolute;

  inset: 35% 0 0;

  background:
    linear-gradient(
      180deg,
      transparent,
      rgba(10, 5, 10, 0.78)
    );
}

.hero-image-back {
  position: absolute;

  overflow: hidden;

  border-radius: 30px;

  border:
    5px solid
    rgba(255, 255, 255, 0.88);

  box-shadow:
    0 25px 65px
    rgba(17, 17, 17, 0.16);
}

.hero-image-back img {
  width: 100%;
  height: 100%;

  object-fit: cover;
}

.back-one {
  width: 210px;
  height: 290px;

  left: 15px;
  top: 115px;

  transform:
    rotate(-10deg);

  z-index: 1;

  opacity: 0.72;
}

.back-two {
  width: 210px;
  height: 290px;

  right: 0;
  bottom: 90px;

  transform:
    rotate(10deg);

  z-index: 1;

  opacity: 0.72;
}

.hero-profile-info {
  position: absolute;

  left: 24px;
  right: 24px;
  bottom: 24px;

  color: #fff;

  z-index: 5;
}

.hero-profile-name {
  font-size: 1.35rem;

  font-weight: 800;
}

.hero-profile-location {
  margin-top: 5px;

  font-size: 0.74rem;

  color:
    rgba(255, 255, 255, 0.78);
}

.hero-profile-bio {
  margin-top: 7px;

  font-size: 0.73rem;

  line-height: 1.45;

  color:
    rgba(255, 255, 255, 0.86);
}

.verified {
  display: inline-grid;

  place-items: center;

  width: 18px;
  height: 18px;

  margin-left: 3px;

  border-radius: 50%;

  font-size: 10px;

  color: #fff;

  background: #54a7ff;

  vertical-align: 2px;
}

/* =========================================================
   FLOATING CARDS
========================================================= */

.floating-card {
  position: absolute;

  z-index: 6;

  display: flex;

  gap: 10px;

  align-items: center;

  padding: 13px 14px;

  background:
    rgba(255, 255, 255, 0.91);

  border:
    1px solid
    rgba(255, 255, 255, 0.85);

  border-radius: 18px;

  box-shadow:
    0 18px 40px
    rgba(17, 17, 17, 0.14);

  backdrop-filter: blur(14px);
}

.floating-card strong,
.floating-card span {
  display: block;
}

.floating-card strong {
  font-size: 0.77rem;
}

.floating-card span {
  color: #7b7484;

  font-size: 0.66rem;

  margin-top: 2px;
}

.floating-icon,
.avatar-mini {
  width: 34px;
  height: 34px;

  border-radius: 12px;

  display: grid;

  place-items: center;

  font-weight: 900;
}

.like-icon {
  color: #fff;

  background:
    linear-gradient(
      135deg,
      var(--brand-red),
      var(--brand-red-dark)
    );
}

.avatar-mini {
  color: #fff;

  background:
    linear-gradient(
      135deg,
      #4ecdc4,
      #2faaa3
    );
}

.like-card {
  right: -15px;
  top: 145px;

  transform:
    rotate(-5deg);
}

.message-card {
  left: -25px;
  bottom: 100px;

  transform:
    rotate(4deg);
}

/* =========================================================
   CONNECTION STRIP
========================================================= */

.connection-strip-inner {
  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 24px;

  padding: 20px 0;

  border-top:
    1px solid var(--line);

  border-bottom:
    1px solid var(--line);
}

.muted-label {
  font-size: 0.66rem;

  letter-spacing: 0.14em;

  color: #999;

  font-weight: 800;
}

.mini-feature {
  font-size: 0.78rem;

  color: #777;

  font-weight: 800;

  display: flex;

  align-items: center;

  gap: 7px;
}

.mini-dot {
  width: 8px;
  height: 8px;

  border-radius: 50%;

  background:
    var(--brand-turquoise);

  box-shadow:
    0 0 0 5px
    rgba(78, 205, 196, 0.08);
}

.mini-dot.pink {
  background: #ff4d57;
}

.mini-dot.red {
  background: var(--brand-red);
}

.mini-dot.blue {
  background: #60a5fa;
}

/* =========================================================
   SECTION HEADING
========================================================= */

.section-heading {
  max-width: 740px;

  margin-bottom: 52px;
}

.section-heading h2,
.experience-copy h2,
.safety-copy h2,
.download-copy h2 {
  margin:
    17px 0 16px;

  font-size:
    clamp(
      2.35rem,
      4.4vw,
      4rem
    );

  line-height: 1.02;

  letter-spacing: -0.055em;
}

.section-heading p,
.experience-copy > p,
.safety-copy > p,
.download-copy > p {
  color: var(--muted);

  max-width: 670px;

  font-size: 1.02rem;
}

/* =========================================================
   FEATURE PHOTO GRID
========================================================= */

.feature-photo-grid {
  display: grid;

  grid-template-columns:
    repeat(4, 1fr);

  gap: 16px;
}

.feature-photo-card {
  overflow: hidden;

  border-radius: var(--radius);

  background: #fff;

  border:
    1px solid
    rgba(17, 17, 17, 0.07);

  box-shadow:
    var(--shadow-sm);

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.feature-photo-card:hover {
  transform:
    translateY(-8px);

  box-shadow:
    var(--shadow-md);
}

.feature-photo {
  height: 300px;

  position: relative;

  overflow: hidden;
}

.feature-photo img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  transition:
    transform 0.5s ease;
}

.feature-photo-card:hover
.feature-photo img {
  transform:
    scale(1.06);
}

.feature-photo-gradient {
  position: absolute;

  inset: 30% 0 0;

  background:
    linear-gradient(
      180deg,
      transparent,
      rgba(20, 5, 10, 0.62)
    );
}

.photo-label {
  position: absolute;

  left: 18px;
  bottom: 18px;

  padding: 7px 11px;

  border-radius: 999px;

  background:
    rgba(255, 255, 255, 0.88);

  color: #242020;

  font-size: 0.68rem;

  font-weight: 800;
}

.feature-photo-content {
  padding: 23px 24px 28px;
}

.feature-number {
  color: var(--brand-red);

  font-size: 0.68rem;

  font-weight: 800;

  letter-spacing: 0.12em;
}

.feature-photo-content h3 {
  margin:
    8px 0 8px;

  font-size: 1.18rem;
}

.feature-photo-content p {
  margin: 0;

  color: #777;

  font-size: 0.86rem;

  line-height: 1.65;
}

/* =========================================================
   DARK EXPERIENCE
========================================================= */

.dark-section {
  background: #111;

  color: #fff;

  overflow: hidden;
}

.experience-bg-photo {
  position: absolute;

  right: -100px;
  top: 0;

  width: 520px;
  height: 100%;

  opacity: 0.13;
}

.experience-bg-photo img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  filter:
    grayscale(1);
}

.experience-bg-overlay {
  position: absolute;

  inset: 0;

  background:
    linear-gradient(
      90deg,
      #111 0%,
      rgba(17, 17, 17, 0.94) 46%,
      rgba(17, 17, 17, 0.76) 100%
    );
}

.experience-grid {
  position: relative;

  z-index: 2;

  display: grid;

  grid-template-columns:
    0.9fr
    1.1fr;

  align-items: center;

  gap: 85px;
}

.eyebrow-light {
  color: #999;
}

.experience-copy > p {
  color: #aaa;
}

.step-list {
  margin-top: 36px;

  display: grid;

  gap: 9px;
}

.step {
  display: grid;

  grid-template-columns:
    48px 1fr;

  gap: 16px;

  align-items: start;

  padding: 18px 0;

  border-top:
    1px solid
    rgba(255, 255, 255, 0.08);
}

.step:last-child {
  border-bottom:
    1px solid
    rgba(255, 255, 255, 0.08);
}

.step-number {
  color: #888;

  font-size: 0.75rem;

  font-weight: 800;
}

.step strong {
  font-size: 0.98rem;
}

.step p {
  margin: 5px 0 0;

  color: #999;

  font-size: 0.82rem;
}

.step.active .step-number {
  color: var(--brand-yellow);
}

/* =========================================================
   EXPERIENCE VISUAL
========================================================= */

.experience-visual {
  min-height: 560px;

  position: relative;

  display: grid;

  place-items: center;
}

.experience-photo-main {
  width: 390px;
  height: 500px;

  position: relative;

  overflow: hidden;

  border-radius: 38px;

  transform:
    rotate(3deg);

  box-shadow:
    0 35px 90px
    rgba(0, 0, 0, 0.42);

  border:
    5px solid
    rgba(255, 255, 255, 0.1);
}

.experience-photo-main img {
  width: 100%;
  height: 100%;

  object-fit: cover;
}

.experience-photo-overlay {
  position: absolute;

  inset: 35% 0 0;

  background:
    linear-gradient(
      180deg,
      transparent,
      rgba(0, 0, 0, 0.78)
    );
}

.experience-photo-text {
  position: absolute;

  left: 25px;
  right: 25px;
  bottom: 25px;

  color: #fff;
}

.experience-photo-text span {
  display: block;

  color:
    rgba(255, 255, 255, 0.68);

  font-size: 0.7rem;

  margin-bottom: 3px;
}

.experience-photo-text strong {
  font-size: 1.3rem;
}

.experience-photo-small {
  position: absolute;

  width: 160px;
  height: 215px;

  overflow: hidden;

  border-radius: 24px;

  border:
    5px solid
    rgba(255, 255, 255, 0.12);

  box-shadow:
    0 25px 60px
    rgba(0, 0, 0, 0.42);
}

.experience-photo-small img {
  width: 100%;
  height: 100%;

  object-fit: cover;
}

.small-one {
  left: 8px;
  top: 80px;

  transform:
    rotate(-11deg);

  opacity: 0.9;
}

.small-two {
  right: 3px;
  bottom: 62px;

  transform:
    rotate(10deg);

  opacity: 0.9;
}

/* =========================================================
   SAFETY
========================================================= */

.safety-grid {
  display: grid;

  grid-template-columns:
    0.9fr
    1.1fr;

  align-items: center;

  gap: 85px;
}

.safety-visual {
  min-height: 500px;

  position: relative;

  display: grid;

  place-items: center;
}

.safety-image-bg {
  position: absolute;

  width: 280px;
  height: 360px;

  left: 10px;
  top: 55px;

  overflow: hidden;

  border-radius: 35px;

  opacity: 0.18;

  transform:
    rotate(-8deg);
}

.safety-image-bg img {
  width: 100%;
  height: 100%;

  object-fit: cover;
}

.safety-image-card {
  width: 300px;
  height: 390px;

  position: relative;

  overflow: hidden;

  border-radius: 36px;

  transform:
    rotate(4deg);

  z-index: 2;

  box-shadow:
    var(--shadow-lg);

  border:
    6px solid
    rgba(255, 255, 255, 0.85);
}

.safety-image-card img {
  width: 100%;
  height: 100%;

  object-fit: cover;
}

.safety-image-overlay {
  position: absolute;

  inset: 30% 0 0;

  background:
    linear-gradient(
      180deg,
      transparent,
      rgba(10, 4, 8, 0.72)
    );
}

.safety-image-title {
  position: absolute;

  left: 22px;
  bottom: 22px;

  color: #fff;

  font-size: 1rem;

  font-weight: 800;
}

.shield-ring {
  position: absolute;

  width: 125px;
  height: 125px;

  right: 0;
  top: 65px;

  border-radius: 50%;

  display: grid;

  place-items: center;

  background:
    rgba(255, 255, 255, 0.94);

  box-shadow:
    0 25px 60px
    rgba(17, 17, 17, 0.12);

  z-index: 4;
}

.shield {
  width: 58px;
  height: 70px;

  clip-path:
    polygon(
      50% 0%,
      90% 14%,
      90% 55%,
      74% 78%,
      50% 100%,
      26% 78%,
      10% 55%,
      10% 14%
    );

  display: grid;

  place-items: center;

  color: #fff;

  font-size: 1.3rem;

  font-weight: 900;

  background:
    linear-gradient(
      150deg,
      var(--brand-red),
      var(--brand-red-dark)
    );

  box-shadow:
    0 20px 35px
    rgba(255, 13, 27, 0.22);
}

.safety-points {
  margin-top: 30px;

  display: grid;

  gap: 18px;
}

.safety-points > div {
  display: grid;

  grid-template-columns:
    27px 1fr;

  gap: 12px;
}

.safety-points > div > span {
  width: 24px;
  height: 24px;

  border-radius: 8px;

  display: grid;

  place-items: center;

  color: #fff;

  font-size: 11px;

  background:
    linear-gradient(
      135deg,
      var(--brand-red),
      var(--brand-red-dark)
    );

  margin-top: 2px;
}

.safety-points p {
  margin: 0;

  color: #6b6b6b;

  font-size: 0.86rem;

  line-height: 1.55;
}

.safety-points strong {
  color: #1a1a1a;
}

/* =========================================================
   PHOTO WALL
========================================================= */

.photo-wall-section {
  padding: 0;

  background: #111;
}

.photo-wall {
  display: grid;

  grid-template-columns:
    1.2fr
    0.8fr
    0.8fr
    0.8fr
    1.2fr;

  min-height: 330px;
}

.wall-image {
  height: 330px;

  overflow: hidden;

  position: relative;
}

.wall-image::after {
  content: "";

  position: absolute;

  inset: 0;

  background:
    linear-gradient(
      180deg,
      transparent 30%,
      rgba(0, 0, 0, 0.2)
    );
}

.wall-image img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  transition:
    transform 0.6s ease;
}

.wall-image:hover img {
  transform:
    scale(1.08);
}

/* =========================================================
   DOWNLOAD
========================================================= */

.download-box {
  min-height: 420px;

  position: relative;

  overflow: hidden;

  padding: 64px;

  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 50px;

  border-radius: 38px;

  color: #fff;

  box-shadow:
    0 30px 90px
    rgba(120, 0, 10, 0.24);
}

.download-background {
  position: absolute;

  inset: 0;

  z-index: 0;
}

.download-background img {
  width: 100%;
  height: 100%;

  object-fit: cover;
}

.download-overlay {
  position: absolute;

  inset: 0;

  background:
    linear-gradient(
      110deg,
      rgba(58, 3, 7, 0.94),
      rgba(164, 7, 19, 0.90) 55%,
      rgba(255, 13, 27, 0.76)
    );

  z-index: 1;
}

.download-copy {
  position: relative;

  z-index: 2;

  max-width: 650px;
}

.eyebrow-white {
  color:
    rgba(255, 255, 255, 0.72);
}

.download-copy h2 {
  color: #fff;
}

.download-copy h2 span {
  color: #ffd166;
}

.download-copy > p {
  color:
    rgba(255, 255, 255, 0.78);
}

.download-btn {
  margin-top: 20px;

  background: #fff;

  color: var(--brand-red);

  box-shadow: none;
}

.download-btn:hover {
  box-shadow:
    0 12px 30px
    rgba(0, 0, 0, 0.15);
}

.download-badge {
  position: relative;

  z-index: 2;

  width: 270px;

  padding: 28px;

  border-radius: 28px;

  background:
    rgba(255, 255, 255, 0.10);

  border:
    1px solid
    rgba(255, 255, 255, 0.16);

  text-align: center;

  backdrop-filter: blur(15px);
}

/* Rounded logo inside download badge */
.badge-icon {
  width: 65px;
  height: 65px;

  border-radius: 20px;

  display: grid;

  place-items: center;

  margin:
    0 auto 14px;

  background:
    rgba(255, 255, 255, 0.12);

  overflow: hidden;
}

.logo-badge img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  border-radius: 20px;
}

.download-badge strong {
  display: block;

  font-size: 1.16rem;
}

.download-badge > span {
  display: block;

  color:
    rgba(255, 255, 255, 0.72);

  font-size: 0.74rem;

  margin-top: 3px;
}

.badge-line {
  height: 1px;

  background:
    rgba(255, 255, 255, 0.15);

  margin: 18px 0;
}

.download-badge small {
  color:
    rgba(255, 255, 255, 0.68);

  font-size: 0.69rem;
}

/* =========================================================
   FOOTER
========================================================= */

.site-footer {
  padding: 56px 0 24px;

  background: #fff5f5;

  border-top:
    1px solid
    rgba(17, 17, 17, 0.07);
}

.footer-grid {
  display: grid;

  grid-template-columns:
    1fr 2fr;

  gap: 60px;
}

.footer-brand p {
  color: #777;

  font-size: 0.82rem;

  max-width: 260px;
}

.footer-links {
  display: grid;

  grid-template-columns:
    repeat(3, 1fr);

  gap: 24px;
}

.footer-links div {
  display: grid;

  gap: 9px;

  align-content: start;
}

.footer-links strong {
  font-size: 0.75rem;

  text-transform: uppercase;

  letter-spacing: 0.1em;

  color: #555;

  margin-bottom: 3px;
}

.footer-links a {
  color: #777;

  font-size: 0.77rem;

  transition:
    color 0.2s ease;
}

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

.footer-bottom {
  display: flex;

  justify-content: space-between;

  gap: 20px;

  margin-top: 48px;

  padding-top: 20px;

  border-top:
    1px solid
    rgba(17, 17, 17, 0.07);

  color: #999;

  font-size: 0.68rem;
}

/* =========================================================
   REVEAL ANIMATION
========================================================= */

.reveal {
  opacity: 0;

  transform:
    translateY(28px);

  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;

  transform:
    translateY(0);
}

.reveal-delay {
  transition-delay: 0.12s;
}

.reveal-delay-2 {
  transition-delay: 0.22s;
}

/* =========================================================
   FOCUS
========================================================= */

a:focus-visible,
button:focus-visible {
  outline:
    3px solid
    rgba(255, 13, 27, 0.3);

  outline-offset: 4px;

  border-radius: 10px;
}

/* =========================================================
   RESPONSIVE 1050
========================================================= */

@media (max-width: 1050px) {

  .desktop-nav {
    gap: 20px;
  }

  .hero-grid {
    gap: 35px;
  }

  h1 {
    font-size:
      clamp(
        3rem,
        6vw,
        4.7rem
      );
  }

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

  .experience-grid,
  .safety-grid {
    gap: 50px;
  }

}

/* =========================================================
   RESPONSIVE 820
========================================================= */

@media (max-width: 820px) {

  .container {
    width:
      min(
        var(--container),
        calc(100% - 28px)
      );
  }

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

  .menu-toggle {
    display: block;
  }

  .mobile-menu {
    display: grid;

    max-height: 0;

    overflow: hidden;

    gap: 0;

    padding:
      0 14px;

    transition:
      max-height 0.3s ease,
      padding 0.3s ease;

    border-top:
      1px solid transparent;
  }

  .mobile-menu.open {
    max-height: 340px;

    padding:
      8px 14px 14px;

    border-top-color:
      var(--line);
  }

  .mobile-menu a {
    padding: 13px 0;

    font-weight: 700;

    color: #555;

    font-size: 0.9rem;
  }

  .mobile-menu .mobile-cta {
    text-align: center;

    color: #fff;

    border-radius: 14px;

    margin-top: 5px;

    background:
      linear-gradient(
        135deg,
        var(--brand-red),
        var(--brand-red-dark)
      );

    padding: 13px;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 8px;
  }

  .hero {
    padding-top: 62px;
  }

  .hero-grid,
  .experience-grid,
  .safety-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    text-align: center;

    margin-inline: auto;
  }

  .hero-copy .eyebrow,
  .hero-actions,
  .trust-row {
    justify-content: center;
  }

  .hero-text {
    margin-inline: auto;
  }

  .hero-visual {
    min-height: 610px;

    margin-top: 10px;
  }

  .connection-strip-inner {
    flex-wrap: wrap;

    justify-content: center;
  }

  .muted-label {
    width: 100%;

    text-align: center;
  }

  .experience-copy,
  .safety-copy {
    max-width: 720px;
  }

  .experience-visual {
    margin-top: 10px;
  }

  .download-box {
    padding: 45px 30px;

    flex-direction: column;

    align-items: flex-start;
  }

  .download-badge {
    width: 100%;
  }

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

/* =========================================================
   RESPONSIVE 560
========================================================= */

@media (max-width: 560px) {

  .section {
    padding: 82px 0;
  }

  h1 {
    font-size:
      clamp(
        2.75rem,
        14vw,
        4rem
      );
  }

  .hero-text {
    font-size: 1rem;
  }

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

  .hero-actions .btn {
    width: 100%;
  }

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

  .hero-image-main {
    width: 290px;
    height: 430px;

    border-radius: 34px;
  }

  .hero-image-back {
    width: 160px;
    height: 230px;
  }

  .back-one {
    left: -5px;
    top: 115px;
  }

  .back-two {
    right: -2px;
    bottom: 75px;
  }

  .ring-one {
    width: 350px;
    height: 350px;
  }

  .ring-two {
    width: 460px;
    height: 460px;
  }

  .like-card {
    right: -5px;
    top: 95px;
  }

  .message-card {
    left: -5px;
    bottom: 65px;
  }

  .person-left,
  .person-right {
    opacity: 0.08;
  }

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

  .feature-photo {
    height: 330px;
  }

  .experience-photo-main {
    width: 300px;
    height: 420px;
  }

  .experience-photo-small {
    width: 125px;
    height: 175px;
  }

  .small-one {
    left: 0;
  }

  .small-two {
    right: 0;
  }

  .safety-visual {
    min-height: 460px;
  }

  .safety-image-card {
    width: 270px;
    height: 360px;
  }

  .safety-image-bg {
    width: 220px;
    height: 300px;

    left: -10px;
  }

  .shield-ring {
    width: 100px;
    height: 100px;

    right: 0;
    top: 40px;
  }

  .shield {
    width: 48px;
    height: 58px;
  }

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

  .wall-image {
    height: 250px;
  }

  .wall-large,
  .wall-wide {
    grid-column: 1 / -1;
  }

  .download-box {
    padding: 38px 24px;
  }

  .download-copy .btn {
    width: 100%;
  }

  .footer-links {
    grid-template-columns:
      1fr 1fr;
  }

  .footer-links div:last-child {
    grid-column: 1 / -1;
  }

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

}

/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration:
      0.01ms !important;

    animation-iteration-count:
      1 !important;

    transition-duration:
      0.01ms !important;
  }

  .reveal {
    opacity: 1;

    transform: none;
  }

}
