/* =========================================================
   REMIFY — LEGAL PAGES SHARED STYLES
   ========================================================= */

@font-face {
  font-family: "Satoshi";
  src: url("./fonts/Satoshi-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Satoshi";
  src: url("./fonts/Satoshi-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Satoshi";
  src: url("./fonts/Satoshi-Black.woff2") format("woff2");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --violet: #290052;
  --violet-light: #6d32a8;
  --violet-deep: #17002e;
  --bg: #f7f5f8;
  --text: #171717;
  --muted: #5c5560;
  --border: rgba(41, 0, 82, 0.1);
  --card: #ffffff;
}

* { box-sizing: border-box; }

html { scrollbar-width: none; -ms-overflow-style: none; }
html::-webkit-scrollbar { display: none; width: 0; height: 0; }
body::-webkit-scrollbar { display: none; width: 0; height: 0; }

body {
  margin: 0;
  font-family: "Satoshi", sans-serif;
  background: var(--bg);
  color: var(--text);
  font-weight: 400;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Satoshi", sans-serif;
  font-weight: 700;
  color: var(--violet-deep);
  margin: 0;
}

p, span, li, a, button, input, textarea, select {
  font-family: "Satoshi", sans-serif;
  font-weight: 400;
}

a { color: var(--violet); text-decoration: none; }
a:hover { text-decoration: underline; }

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

.legal-header {
  position: sticky;
  top: 0;
  z-index: 500;
  display: flex;
  align-items: center;
  padding: 18px 6vw;
  background: rgba(247, 245, 248, 0.82);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
/* =========================================================
   HEADER — LOGO + HAMBURGER
   ========================================================= */

.legal-header {
  justify-content: space-between;
}

/* =========================================================
   HAMBURGER BUTTON
   ========================================================= */

.menu-toggle {
  position: relative;
  width: 42px;
  height: 42px;
  border: none;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  z-index: 1000;
}

.menu-toggle span {
  position: absolute;
  left: 9px;
  width: 24px;
  height: 2px;
  border-radius: 2px;
  background: var(--violet-deep);
  transition: transform .32s cubic-bezier(.65,0,.35,1),
              opacity .2s ease,
              background .3s ease;
}

.menu-toggle span:nth-child(1) { top: 15px; }
.menu-toggle span:nth-child(2) { top: 21px; }
.menu-toggle span:nth-child(3) { top: 27px; }

.menu-toggle.is-active span { background: #fff; }
.menu-toggle.is-active span:nth-child(1) {
  top: 21px;
  transform: rotate(45deg);
}
.menu-toggle.is-active span:nth-child(2) { opacity: 0; }
.menu-toggle.is-active span:nth-child(3) {
  top: 21px;
  transform: rotate(-45deg);
}

/* =========================================================
   NAV OVERLAY — GLASSY DARK MENU
   ========================================================= */

.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(15, 0, 28, 0.72);
  backdrop-filter: blur(22px) saturate(140%);
  -webkit-backdrop-filter: blur(22px) saturate(140%);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .45s cubic-bezier(.65,0,.35,1),
              visibility .45s;
}

.nav-overlay.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.nav-overlay-inner {
  width: 100%;
  max-width: 480px;
  padding: 40px 8vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-height: 90vh;
  overflow-y: auto;
}

.nav-overlay-logo {
  display: inline-flex;
  margin-bottom: 44px;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .5s ease, transform .5s ease;
  transition-delay: .1s;
}

.nav-overlay-logo img {
  height: 32px;
  width: auto;
  transform: scale(4);
  filter: brightness(0) invert(1);
}

.nav-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 100%;
}

.nav-links li {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .5s ease, transform .5s ease;
}

.nav-links a {
  display: inline-block;
  padding: 12px 0;
  font-size: clamp(1.4rem, 5vw, 1.9rem);
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  letter-spacing: -0.01em;
  transition: color .25s ease, opacity .25s ease;
}

.nav-links a:hover {
  color: var(--violet-light);
  text-decoration: none;
}

.nav-overlay.is-open .nav-overlay-logo,
.nav-overlay.is-open .nav-links li {
  opacity: 1;
  transform: translateY(0);
}

.nav-overlay.is-open .nav-links li:nth-child(1) { transition-delay: .14s; }
.nav-overlay.is-open .nav-links li:nth-child(2) { transition-delay: .19s; }
.nav-overlay.is-open .nav-links li:nth-child(3) { transition-delay: .24s; }
.nav-overlay.is-open .nav-links li:nth-child(4) { transition-delay: .29s; }
.nav-overlay.is-open .nav-links li:nth-child(5) { transition-delay: .34s; }

.nav-overlay-footer {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  width: 100%;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .5s ease, transform .5s ease;
  transition-delay: .4s;
}

.nav-overlay.is-open .nav-overlay-footer {
  opacity: 1;
  transform: translateY(0);
}

.nav-overlay-footer p {
  margin: 0 0 8px;
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.75);
}

.nav-overlay-footer span {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.42);
}

body.nav-open {
  overflow: hidden;
}

@media (max-width: 480px) {
  .nav-overlay-inner { padding: 32px 7vw; }
  .nav-overlay-logo { margin-bottom: 32px; }
  .nav-links a { padding: 10px 0; }
  .nav-overlay-footer { margin-top: 32px; }
}

@media (max-height: 560px) {
  .nav-overlay-inner { justify-content: flex-start; padding-top: 90px; }
}
.legal-header a {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.legal-header img {
  height: 34px;
  width: auto;
  transform: scale(2.5);
  transform-origin: left center;
}

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

.legal-hero {
  padding: 72px 6vw 40px;
  max-width: 860px;
  margin: 0 auto;
}

.legal-hero .eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--violet-light);
  margin-bottom: 14px;
}

.legal-hero h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.01em;
}

.legal-hero .updated {
  margin-top: 16px;
  font-size: 14px;
  color: var(--muted);
}

/* =========================================================
   CONTENT
   ========================================================= */

.legal-content {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 6vw 120px;
}

.legal-content section {
  padding: 30px 0;
  border-top: 1px solid var(--border);
}

.legal-content section:first-of-type {
  border-top: none;
  padding-top: 0;
}

.legal-content h2 {
  font-size: clamp(1.1rem, 2.4vw, 1.35rem);
  margin-bottom: 14px;
  padding-left: 16px;
  border-left: 3px solid var(--violet);
}

.legal-content h3 {
  font-size: 1.02rem;
  margin: 18px 0 8px;
  padding-left: 16px;
}

.legal-content p,
.legal-content li {
  color: var(--text);
  font-size: 15.5px;
}

.legal-content > section > p,
.legal-content > section > ul,
.legal-content > section > ol,
.legal-content > section > h3,
.legal-content > section > .info-card {
  padding-left: 16px;
}

.legal-content p { margin: 0 0 14px; }

.legal-content ul,
.legal-content ol {
  margin: 0 0 14px;
  padding-left: 38px;
}

.legal-content li { margin-bottom: 8px; }

.legal-content strong {
  font-weight: 700;
  color: var(--violet-deep);
}

/* =========================================================
   INFO CARD (shipping page + contact blocks)
   ========================================================= */

.info-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 26px 28px;
  margin: 0 0 20px;
  box-shadow: 0 6px 24px rgba(41, 0, 82, 0.05);
}

.info-card h3 {
  margin-top: 0;
  padding-left: 0;
}

.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin: 24px 0 0;
}

.info-grid .info-card { margin: 0; }

.badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--violet);
  background: rgba(41, 0, 82, 0.08);
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 12px;
}

/* =========================================================
   SCROLL PROGRESS
   ========================================================= */

.scroll-progress {
  position: fixed;
  top: 0;
  right: 0;
  width: 6px;
  height: 100vh;
  background: rgba(41, 0, 82, .07);
  pointer-events: none;
  z-index: 99999;
}

.scroll-progress-fill {
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #6d32a8 0%, #5b2d82 55%, #17002e 100%);
  transform: scaleY(0);
  transform-origin: top;
  will-change: transform;
  box-shadow: 0 0 6px rgba(41, 0, 82, .45), 0 0 14px rgba(41, 0, 82, .18);
  border-radius: 0 0 4px 4px;
}

/* =========================================================
   CURSOR
   ========================================================= */

.cursor-trail {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 100000;
}

@media (hover: hover) and (pointer: fine) {
  * { cursor: none !important; }

  .cursor-spark {
    position: fixed;
    top: 0;
    left: 0;
    width: 16px;
    height: 16px;
    pointer-events: none;
    z-index: 100001;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform .2s cubic-bezier(.22, 1, .36, 1), filter .2s ease;
  }

  .cursor-spark::before,
  .cursor-spark::after,
  .cursor-spark span::before,
  .cursor-spark span::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    background: var(--violet);
    transform-origin: center;
    border-radius: 999px;
    box-shadow: 0 0 5px rgba(41, 0, 82, .35);
  }

  .cursor-spark::before { width: 2px; height: 16px; transform: translate(-50%, -50%); }
  .cursor-spark::after { width: 16px; height: 2px; transform: translate(-50%, -50%); }
  .cursor-spark span::before { width: 1.5px; height: 12px; transform: translate(-50%, -50%) rotate(45deg); }
  .cursor-spark span::after { width: 1.5px; height: 12px; transform: translate(-50%, -50%) rotate(-45deg); }

  .cursor-spark--active {
    transform: translate(-50%, -50%) scale(1.45);
    filter: drop-shadow(0 0 5px rgba(41, 0, 82, .35)) drop-shadow(0 0 14px rgba(92, 45, 145, .35));
  }

  .cursor-spark--click { transform: translate(-50%, -50%) scale(.72); }
}

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

@media (max-width: 640px) {
  .legal-header { padding: 14px 5vw; }
  .legal-header img { height: 28px; }
  .legal-hero { padding: 48px 5vw 28px; }
  .legal-content { padding: 0 5vw 80px; }
  .legal-content section { padding: 24px 0; }
  .info-grid { grid-template-columns: 1fr; }
  .info-card { padding: 20px; }
}




/* =========================================================
   REMIFY — SOCIAL TRANSITION
   ========================================================= */

.remify-social-transition {

  position: relative;

  overflow: hidden;

  background:
    linear-gradient(
      180deg,
      #4a1767 0%,
      #321047 48%,
      #1d082b 100%
    );

  color: #fff;

}


/* subtle atmospheric light */

.remify-social-transition::before {

  content: "";

  position: absolute;

  width: 700px;
  height: 300px;

  left: 50%;
  top: -180px;

  transform: translateX(-50%);

  background:
    radial-gradient(
      ellipse,
      rgba(217,185,233,.16),
      transparent 70%
    );

  filter: blur(45px);

  pointer-events: none;

}


/* =========================================================
   INNER
   ========================================================= */

.remify-social-inner {

  position: relative;

  width:
    min(1380px,100%);

  margin:
    0 auto;

  padding:
    70px clamp(24px,6vw,90px);

  display:
    flex;

  align-items:
    center;

  justify-content:
    space-between;

  gap:
    50px;

}


/* =========================================================
   COPY
   ========================================================= */

.remify-social-copy {

  display:
    flex;

  flex-direction:
    column;

  gap:
    13px;

}


.remify-social-kicker {

  color:
    rgba(255,255,255,.38);

  font-size:
    9px;

  font-weight:
    800;

  letter-spacing:
    .2em;

  text-transform:
    uppercase;

}


.remify-social-copy h3 {

  margin:
    0;

  font-family: "Satoshi", sans-serif;

  font-size:
    clamp(30px,3.5vw,48px);

  font-weight:
    400;

  line-height:
    .95;

  letter-spacing:
    -.045em;

}


.remify-social-copy h3 em {

  color:
    #d9b9e9;

  font-style:
    italic;

}


/* =========================================================
   SOCIAL LINKS
   ========================================================= */

.remify-social-links {

  display:
    flex;

  align-items:
    center;

  gap:
    10px;

}


.remify-social-links a {

  min-width:
    145px;

  height:
    52px;

  padding:
    0 18px;

  display:
    flex;

  align-items:
    center;

  justify-content:
    space-between;

  gap:
    25px;

  border:
    1px solid rgba(255,255,255,.13);

  border-radius:
    999px;

  color:
    rgba(255,255,255,.7);

  text-decoration:
    none;

  background:
    rgba(255,255,255,.025);

  backdrop-filter:
    blur(10px);

  transition:
    transform .4s cubic-bezier(.22,1,.36,1),
    background .35s ease,
    border-color .35s ease,
    color .35s ease;

}


.remify-social-links a:hover {

  transform:
    translateY(-4px);

  background:
    rgba(255,255,255,.09);

  border-color:
    rgba(255,255,255,.3);

  color:
    #fff;

}


.remify-social-links span {

  font-size:
    10px;

  font-weight:
    700;

  letter-spacing:
    .07em;

  text-transform:
    uppercase;

}


.remify-social-links svg {

  width:
    16px;

  height:
    16px;

  fill:
    none;

  stroke:
    currentColor;

  stroke-width:
    1.5;

  stroke-linecap:
    round;

  stroke-linejoin:
    round;

}


.remify-social-links a:nth-child(2) svg {

  fill:
    currentColor;

  stroke:
    none;

}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 900px) {

  .remify-social-inner {

    padding:
      60px 35px;

  }

  .remify-social-links {

    gap:
      8px;

  }

  .remify-social-links a {

    min-width:
      125px;

  }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 650px) {

  .remify-social-inner {

    padding:
      55px 20px;

    flex-direction:
      column;

    align-items:
      flex-start;

    gap:
      35px;

  }


  .remify-social-copy {

    gap:
      10px;

  }


  .remify-social-copy h3 {

    font-size:
      clamp(34px,10vw,46px);

  }


  .remify-social-links {

    width:
      100%;

    display:
      grid;

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

    gap:
      7px;

  }


  .remify-social-links a {

    min-width:
      0;

    width:
      100%;

    height:
      48px;

    padding:
      0 12px;

    gap:
      5px;

  }


  .remify-social-links span {

    font-size:
      8px;

    letter-spacing:
      .04em;

  }


  .remify-social-links svg {

    width:
      14px;

    height:
      14px;

  }

}


/* =========================================================
   SMALL PHONES
   ========================================================= */

@media (max-width:400px) {

  .remify-social-inner {

    padding:
      48px 18px;

  }


  .remify-social-links a {

    height:
      45px;

    padding:
      0 10px;

  }


  .remify-social-links span {

    font-size:
      7px;

  }

}

/* =========================================================
   FOOTER TOP LINE
   ========================================================= */

.remify-footer-top-line {

  width:
    90%;

  height:
    1px;

  margin:
    0 auto;

  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(255,255,255,.18),
      transparent
    );

}

/* =========================================================
   REMIFY — FOOTER
   ========================================================= */

.remify-footer {

  position: relative;

  overflow: hidden;

  background:
    linear-gradient(
      180deg,
      #1d082b 0%,
      #12051b 48%,
      #09030d 100%
    );

  color: #fff;

  isolation: isolate;

}


/* =========================================================
   ATMOSPHERE
   ========================================================= */

.remify-footer::before {

  content: "";

  position: absolute;

  inset: 0;

  background:
    radial-gradient(
      ellipse at 80% 15%,
      rgba(128,55,163,.18),
      transparent 34%
    ),
    radial-gradient(
      ellipse at 15% 65%,
      rgba(84,30,111,.12),
      transparent 35%
    );

  pointer-events: none;

  z-index: -2;

}


.remify-footer::after {

  content: "";

  position: absolute;

  inset: 0;

  background:
    linear-gradient(
      115deg,
      transparent 20%,
      rgba(255,255,255,.018) 50%,
      transparent 80%
    );

  pointer-events: none;

  z-index: -1;

}


.remify-footer-glow {

  position: absolute;

  border-radius: 50%;

  filter: blur(110px);

  pointer-events: none;

  z-index: -1;

}


.remify-footer-glow--one {

  width: 420px;

  height: 420px;

  right: -180px;

  top: 100px;

  background:
    rgba(132,63,164,.13);

}


.remify-footer-glow--two {

  width: 300px;

  height: 300px;

  left: -170px;

  bottom: 180px;

  background:
    rgba(92,36,119,.1);

}


/* =========================================================
   CONTAINER
   ========================================================= */

.remify-footer-container {

  width:
    min(1380px,100%);

  margin:
    0 auto;

  padding:
    0 clamp(24px,6vw,90px);

}


/* =========================================================
   TOP
   ========================================================= */

.remify-footer-top {

  display:
    grid;

  grid-template-columns:
    .8fr 1.2fr;

  gap:
    clamp(70px,10vw,160px);

  padding:
    85px 0 90px;

}


/* =========================================================
   BRAND
   ========================================================= */

.remify-footer-brand {

  display:
    flex;

  flex-direction:
    column;

  align-items:
    flex-start;

}


.remify-footer-logo {

  display:
    inline-block;

}


.remify-footer-logo img {

  width:
    clamp(125px,12vw,165px);

  display:
    block;

  filter:
    brightness(0) invert(1);

}


.remify-footer-brand p {

  margin:
    28px 0 24px;

  color:
    rgba(255,255,255,.42);

  font-family: "Satoshi", sans-serif;

  font-size:
    clamp(17px,1.6vw,21px);

  line-height:
    1.3;

  letter-spacing:
    -.025em;

}


.remify-footer-email {

  color:
    rgba(255,255,255,.65);

  font-size:
    11px;

  letter-spacing:
    .04em;

  text-decoration:
    none;

  border-bottom:
    1px solid rgba(255,255,255,.18);

  padding-bottom:
    5px;

  transition:
    .3s ease;

}


.remify-footer-email:hover {

  color:
    #fff;

  border-color:
    rgba(255,255,255,.5);

}


/* =========================================================
   NAVIGATION
   ========================================================= */

.remify-footer-nav {

  display:
    grid;

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

  gap:
    35px;

}


.remify-footer-group {

  display:
    flex;

  flex-direction:
    column;

  align-items:
    flex-start;

  gap:
    13px;

}


.remify-footer-label {

  margin-bottom:
    9px;

  color:
    rgba(255,255,255,.28);

  font-size:
    8px;

  font-weight:
    800;

  letter-spacing:
    .2em;

}


.remify-footer-group a {

  color:
    rgba(255,255,255,.62);

  font-size:
    12px;

  text-decoration:
    none;

  transition:
    color .25s ease,
    transform .25s ease;

}


.remify-footer-group a:hover {

  color:
    #fff;

  transform:
    translateX(4px);

}


.remify-footer-location {

  color:
    rgba(255,255,255,.28);

  font-size:
    11px;

}


/* =========================================================
   DIVIDER
   ========================================================= */

.remify-footer-line {

  width:
    100%;

  height:
    1px;

  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(255,255,255,.13),
      transparent
    );

}


/* =========================================================
   MIDDLE
   ========================================================= */

.remify-footer-middle {

  display:
    flex;

  align-items:
    center;

  justify-content:
    space-between;

  gap:
    40px;

  padding:
    48px 0;

}


.remify-footer-message {

  display:
    flex;

  align-items:
    baseline;

  gap:
    13px;

}


.remify-footer-message span {

  color:
    rgba(255,255,255,.3);

  font-size:
    8px;

  font-weight:
    800;

  letter-spacing:
    .18em;

}


.remify-footer-message strong {

  font-family: "Satoshi", sans-serif;

  font-size:
    clamp(22px,2.3vw,32px);

  font-weight:
    400;

  letter-spacing:
    -.04em;

}


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

.remify-footer-cta {

  display:
    inline-flex;

  align-items:
    center;

  gap:
    18px;

  padding:
    6px 6px 6px 20px;

  color:
    #16061f;

  background:
    #fff;

  border-radius:
    999px;

  text-decoration:
    none;

  transition:
    transform .4s cubic-bezier(.22,1,.36,1),
    box-shadow .4s ease;

}


.remify-footer-cta:hover {

  transform:
    translateY(-3px);

  box-shadow:
    0 18px 45px rgba(0,0,0,.3);

}


.remify-footer-cta > span {

  font-size:
    9px;

  font-weight:
    800;

  letter-spacing:
    .08em;

  text-transform:
    uppercase;

}


.remify-footer-cta i {

  width:
    40px;

  height:
    40px;

  display:
    flex;

  align-items:
    center;

  justify-content:
    center;

  border-radius:
    50%;

  background:
    #5f277b;

  color:
    #fff;

  font-style:
    normal;

}


.remify-footer-cta svg {

  width:
    15px;

  height:
    15px;

  fill:
    none;

  stroke:
    currentColor;

  stroke-width:
    1.7;

  stroke-linecap:
    round;

  stroke-linejoin:
    round;

}


/* =========================================================
   GIANT WORDMARK
   ========================================================= */

.remify-giant-wordmark {

  overflow:
    hidden;

  padding:
    55px 0 8px;

  margin-top:
    15px;

  text-align:
    center;

}


.remify-giant-wordmark span {

  display:
    block;

  font-family: "Satoshi", sans-serif;

  font-size:
    clamp(150px,21vw,300px);

  font-weight:
    400;

  line-height:
    .68;

  letter-spacing:
    -.015em;

  white-space:
    nowrap;

  color:
    transparent;

  -webkit-text-stroke:
    1px rgba(255,255,255,.18);

  background:
    linear-gradient(
      180deg,
      rgba(255,255,255,.13),
      rgba(255,255,255,.025)
    );

  -webkit-background-clip:
    text;

  background-clip:
    text;

}


/* =========================================================
   BOTTOM
   ========================================================= */

.remify-footer-bottom {

  display:
    grid;

  grid-template-columns:
    1fr 1fr 1fr;

  align-items:
    center;

  padding:
    25px 0 30px;

  border-top:
    1px solid rgba(255,255,255,.07);

  color:
    rgba(255,255,255,.22);

  font-size:
    8px;

  letter-spacing:
    .08em;

}


.remify-footer-bottom span:nth-child(2) {

  text-align:
    center;

}


.remify-footer-bottom span:last-child {

  text-align:
    right;

}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 900px) {

  .remify-footer-top {

    grid-template-columns:
      1fr;

    gap:
      65px;

    padding:
      70px 0 75px;

  }


  .remify-footer-nav {

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

  }


  .remify-giant-wordmark {

    padding-top:
      45px;

  }

}


/* =========================================================
   MOBILE
   ========================================================= */
@media (max-width: 600px) {

  .remify-footer-container {
    padding: 0 20px;
  }

  .remify-footer-top {
    padding: 60px 0 55px;
    gap: 55px;
  }

  .remify-footer-logo img {
    width: 135px;
  }

  .remify-footer-brand p {
    margin-top: 22px;
    font-size: 17px;
  }

  .remify-footer-nav {
    grid-template-columns: 1fr 1fr;
    gap: 42px 25px;
  }

  .remify-footer-group:last-child {
    grid-column: 1 / -1;
  }

  .remify-footer-middle {
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
    padding: 40px 0;
  }

  .remify-footer-message {
    flex-direction: column;
    gap: 8px;
  }

  .remify-footer-message strong {
    font-size: 27px;
  }

  .remify-footer-cta {
    width: 100%;
    justify-content: space-between;
  }

  .remify-giant-wordmark {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }

  .remify-giant-wordmark span {
    display: block;
    width: max-content;
    max-width: none;
    margin: 0 auto;
    white-space: nowrap;
    font-size: 28vw;
  }

  .remify-footer-bottom {
    grid-template-columns: 1fr;
    gap: 9px;
    padding: 20px 0 25px;
    line-height: 1.5;
  }

  .remify-footer-bottom span {
    text-align: left !important;
  }

}


/* =========================================================
   SMALL PHONES
   ========================================================= */

@media (max-width: 400px) {

  .remify-footer-top {

    padding-top:
      50px;

  }


  .remify-footer-nav {

    grid-template-columns:
      1fr;

    gap:
      30px;

  }


  .remify-footer-group:last-child {

    grid-column:
      auto;

  }


  .remify-giant-wordmark span {

    font-size:
      27vw;

  }

}


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

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

  .remify-footer * {

    animation:
      none !important;

    transition:
      none !important;

  }

}
