/* ==========================================
DYVE FOOTER
FULL CSS UPDATED TO MATCH YOUR HTML EXACTLY
Replace old ff-* footer CSS completely.
Because keeping dead classes around is how bugs earn pensions.
========================================== */

.dyve-footer{
  background:#000;
  color:#fff;
  padding:30px 16px 38px;
  overflow:hidden;
  position:relative;
}

/* ===============================
FLAGS / CLOCKS
=============================== */

.dyve-flags{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:16px;
  align-items:start;
  margin-bottom:52px;
}

.dyve-flag-item{
  min-width:0;
  text-align:center;
}

.dyve-flag{
  width:72px;
  height:44px;
  margin:0 auto 10px;
  border-radius:12px;
  overflow:hidden;

  box-shadow:
    0 10px 20px rgba(0,0,0,.38),
    inset 0 1px 0 rgba(255,255,255,.08);
}

.dyve-flag svg{
  width:100%;
  height:100%;
  display:block;
}

.dyve-time{
  display:block;
  min-height:24px;

  font-size:24px;
  line-height:1;
  font-weight:500;
  letter-spacing:-.03em;
  font-variant-numeric:tabular-nums;

  color:rgba(255,255,255,.72);
}

/* ===============================
TITLE
=============================== */

.dyve-title{
  margin:0 0 26px;

  font-size:32px;
  line-height:1.02;
  font-weight:700;
  letter-spacing:-.05em;

  color:#fff;
}

/* ===============================
CTA BUTTON
=============================== */

.dyve-cta{
  width:100%;
  min-height:86px;
  padding:0 18px;
  margin:0 0 42px;

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

  text-decoration:none;
  color:#ff6a00;

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

  background:
    radial-gradient(circle at right center, rgba(255,106,0,.18), transparent 34%),
    linear-gradient(135deg,#161616,#060606 62%,#1a0d06);

  box-shadow:
    0 18px 34px rgba(0,0,0,.28),
    inset 0 1px 0 rgba(255,255,255,.04);

  transition:
    transform .18s ease,
    border-color .18s ease,
    box-shadow .18s ease;

  box-sizing:border-box;
}

.dyve-cta:hover,
.dyve-cta:focus-visible{
  transform:translateY(-2px);

  border-color:rgba(255,106,0,.34);

  box-shadow:
    0 24px 42px rgba(0,0,0,.34);
}

.dyve-cta:active{
  transform:scale(.985);
}

.dyve-cta-text{
  font-size:26px;
  line-height:1;
  font-weight:700;
  letter-spacing:-.03em;
}

.dyve-cta-icon{
  width:46px;
  height:46px;
  border-radius:50%;

  display:grid;
  place-items:center;

  background:rgba(255,255,255,.06);
  flex-shrink:0;
}

.dyve-cta-icon svg{
  width:22px;
  height:22px;
  display:block;
}

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

.dyve-brand{
  font-family:'Audiowide', sans-serif;
  font-size:92px;
  line-height:.84;
  font-weight:400;
  letter-spacing:-.04em;

  color:#ededed;

  display:block;
  width:100%;
  max-width:100%;

  word-break:break-word;
  overflow-wrap:anywhere;
}

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

@media (max-width:360px){

  .dyve-footer{
    padding:26px 14px 34px;
  }

  .dyve-flags{
    gap:10px;
    margin-bottom:40px;
  }

  .dyve-flag{
    width:62px;
    height:40px;
    border-radius:10px;
  }

  .dyve-time{
    font-size:22px;
  }

  .dyve-title{
    font-size:28px;
    margin-bottom:22px;
  }

  .dyve-cta{
    min-height:78px;
    padding:0 16px;
    border-radius:22px;
    margin-bottom:36px;
  }

  .dyve-cta-text{
    font-size:22px;
  }

  .dyve-cta-icon{
    width:42px;
    height:42px;
  }

  .dyve-brand{
    font-size:78px;
  }

}

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

@media (min-width:768px){

  .dyve-footer{
    padding:40px 28px 48px;
  }

  .dyve-flags{
    max-width:760px;
    gap:26px;
    margin-bottom:68px;
  }

  .dyve-flag{
    width:88px;
    height:54px;
  }

  .dyve-time{
    font-size:34px;
  }

  .dyve-title{
    font-size:74px;
    margin-bottom:34px;
    max-width:900px;
  }

  .dyve-cta{
    min-height:116px;
    padding:0 28px;
    border-radius:34px;
    max-width:1180px;
    margin-bottom:58px;
  }

  .dyve-cta-text{
    font-size:48px;
  }

  .dyve-cta-icon{
    width:72px;
    height:72px;
  }

  .dyve-cta-icon svg{
    width:32px;
    height:32px;
  }

  .dyve-brand{
    font-size:220px;
    white-space:nowrap;
  }

}



/* ==========================================
DYVE FOOTER — CONTENT ONLY REDUCTION
(does NOT touch container or CTA card)
========================================== */

/* FLAGS */
.dyve-flags{
  gap:10px;
  margin-bottom:20px;
}

.dyve-flag{
  width:54px;
  height:32px;
  border-radius:8px;
}

/* TIME */
.dyve-time{
  font-size:14px;
  font-weight:500;
  color:rgba(255,255,255,.65);
}

/* TITLE (keep strong but not oversized) */
.dyve-title{
  font-size:22px;
  font-weight:600;
  letter-spacing:-.02em;
  margin-bottom:18px;
}

/* CTA TEXT ONLY (card untouched) */
.dyve-cta-text{
  font-size:16px;
  font-weight:600;
}

/* ICON smaller inside same card */
.dyve-cta-icon{
  width:34px;
  height:34px;
}

.dyve-cta-icon svg{
  width:18px;
  height:18px;
}

/* BRAND — reduce dominance */
.dyve-brand{
  font-size:42px;
  letter-spacing:-.02em;
  margin-top:16px;
  color:#cfcfcf;
}


/* ==========================================
DYVE FOOTER — SPACING + MICRO DIVIDERS (REFINED)
========================================== */

/* FLAGS */
.dyve-flags{
  position:relative;
  padding-bottom:26px;
  margin-bottom:28px;
}

.dyve-flags::after{
  content:"";
  position:absolute;
  left:6%;
  right:6%;
  bottom:0;
  height:1px;
  background:linear-gradient(
    to right,
    transparent,
    rgba(255,255,255,.08),
    transparent
  );
}

/* TITLE */
.dyve-title{
  position:relative;
  padding-bottom:18px;
  margin-bottom:24px;
}

.dyve-title::after{
  content:"";
  position:absolute;
  left:6%;
  right:6%;
  bottom:0;
  height:1px;
  background:linear-gradient(
    to right,
    transparent,
    rgba(255,255,255,.06),
    transparent
  );
}

/* CTA */
.dyve-cta{
  position:relative;
  margin-bottom:30px; /* more breathing room */
}

.dyve-cta::after{
  content:"";
  position:absolute;
  left:6%;
  right:6%;
  bottom:-16px;
  height:1px;
  background:linear-gradient(
    to right,
    transparent,
    rgba(255,255,255,.05),
    transparent
  );
}

/* BRAND */
.dyve-brand{
  margin-top:22px;
}



/* ==========================================
DYVE LOGO — HARD BOLD STAMP (FINAL)
========================================== */

.dyve-brand{
  position:relative;
  display:flex;
  justify-content:center;
  align-items:center;
  margin-top:64px;   /* more separation = authority */
  padding-top:34px;
}

/* sharp editorial divider (tighter + more confident) */
.dyve-brand::after{
  content:"";
  position:absolute;
  top:0;
  left:18%;
  right:18%;
  height:1px;
  background:rgba(255,255,255,.18);
}

/* no glow */
.dyve-brand::before{
  display:none;
}

/* LOGO — bold through scale + density */
.dyve-brand img{
  width:220px;        /* increased slightly */
  max-width:92%;
  height:auto;

  filter:
    contrast(1.28)
    brightness(1.2);

  transform:scale(1.06); /* stronger presence */

  image-rendering: -webkit-optimize-contrast; /* crisp edges */

  transition:transform .2s ease, filter .2s ease;
}

/* interaction = minimal authority */
.dyve-brand img:hover{
  transform:scale(1.08);

  filter:
    contrast(1.32)
    brightness(1.22);
}


.dyve-subtext{
  text-align:center;

  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;

  font-size:11.5px;
  line-height:1.8;

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

  letter-spacing:.22em;
  text-transform:uppercase;

  max-width:340px;
  margin:18px auto 0;
}




.dyve-links{
  margin-top:28px;
  padding-top:14px;

  text-align:center;

  font-family: ui-monospace, SFMono-Regular, Menlo, monospace; /* match */
  font-size:11.5px;   /* match */
  line-height:1.8;

  letter-spacing:.18em; /* slightly tighter than subtext (better readability for links) */
  text-transform:uppercase;

  display:flex;
  justify-content:center;
  align-items:center;
  gap:14px;
  flex-wrap:wrap;

  color:rgba(255,255,255,.5);
}

.dyve-links a{
  color:rgba(255,255,255,.5);
  text-decoration:none;

  transition:color .2s ease, opacity .2s ease;
}

.dyve-links a:hover{
  color:var(--brand); /* subtle brand accent instead of white */
}

.dyve-links a:hover + span{
  opacity:1;
  transform:scaleY(1.2);
}

.dyve-links span{
  width:1px;
  height:12px;

  background:var(--brand);

  opacity:.5;
}