/* ==========================================================================
   Crypto Verify — design-system overlay (v2)
   Layered on top of the Webflow export to bring consistency + polish without
   rewriting the generated classes. Loaded AFTER the webflow stylesheet.
   ========================================================================== */

:root {
  --cv-green: #29ccb1;
  --cv-green-dark: #1fae96;
  --cv-ink: #1d1d1b;
  --cv-mist: #f0fbf8;
  --cv-line: rgba(29, 29, 27, 0.12);
  --cv-radius: 10px;
  --cv-radius-lg: 16px;
  --cv-ease: 0.2s ease;
  --cv-shadow: 0 18px 40px -18px rgba(29, 29, 27, 0.35);
}

html { scroll-behavior: smooth; }

/* Consistent, on-brand keyboard focus everywhere */
a:focus-visible,
button:focus-visible,
.button-primary:focus-visible,
.button-primary-2:focus-visible,
.button-white:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--cv-green);
  outline-offset: 2px;
}

/* --------------------------------------------------------------------------
   Buttons — give every generated button variant a shared, tactile hover.
   This is the single biggest "feels more finished" win across both pages.
   -------------------------------------------------------------------------- */
.button-primary,
.button-primary-2,
.button-primary-3,
.button-primary-4,
.button-primary-5,
.button-secondary-3,
.button-secondary-4,
.button-white {
  transition: transform var(--cv-ease), box-shadow var(--cv-ease),
    background-color var(--cv-ease), filter var(--cv-ease);
}

.button-primary:hover,
.button-primary-2:hover,
.button-primary-3:hover,
.button-primary-4:hover,
.button-primary-5:hover,
.button-secondary-3:hover,
.button-secondary-4:hover,
.button-white:hover {
  transform: translateY(-2px);
  box-shadow: var(--cv-shadow);
}

.button-primary:active,
.button-primary-2:active,
.button-primary-3:active,
.button-primary-4:active,
.button-primary-5:active,
.button-secondary-3:active,
.button-secondary-4:active,
.button-white:active {
  transform: translateY(0);
  box-shadow: none;
}

/* Keep the green primary reading as THE action on hover */
.button-primary:hover,
.button-primary-5:hover { background-color: var(--cv-green-dark); }
.button-white:hover { background-color: var(--cv-mist); }

/* Nudge the arrow on primary CTAs for a little life */
.button-primary .arrow_forward,
.button-primary-2 .arrow_forward,
.button-primary-5 .arrow_forward {
  transition: transform var(--cv-ease);
}
.button-primary:hover .arrow_forward,
.button-primary-2:hover .arrow_forward,
.button-primary-5:hover .arrow_forward {
  transform: translateX(3px);
}

/* --------------------------------------------------------------------------
   Forms — align inputs to the rounded button language and use a brand focus.
   Fixes the "square inputs under a rounded button" mismatch on Contact.
   -------------------------------------------------------------------------- */
.form_input {
  border-radius: var(--cv-radius) !important;
  border: 1px solid var(--cv-line) !important;
  transition: border-color var(--cv-ease), box-shadow var(--cv-ease);
}
.form_input:focus {
  border-color: var(--cv-green) !important;
  box-shadow: 0 0 0 3px rgba(41, 204, 177, 0.18) !important;
}
.form_field-label { font-weight: 500; }

/* --------------------------------------------------------------------------
   Contact page — give the form a real section: heading + card + reassurance.
   -------------------------------------------------------------------------- */
.cv-contact {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: start;
}

.cv-card {
  background: #fff;
  border: 1px solid var(--cv-line);
  border-radius: var(--cv-radius-lg);
  box-shadow: var(--cv-shadow);
  padding: 32px;
}

.cv-aside { padding-top: 8px; }

.cv-aside__eyebrow {
  color: var(--cv-green);
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 12px;
}

.cv-aside__title {
  font-family: Helveticanowdisplay, Arial, sans-serif;
  color: var(--cv-ink);
  font-size: 2.25rem;
  line-height: 1.15;
  font-weight: 700;
  margin: 0 0 16px;
}

.cv-aside__lead {
  color: rgba(29, 29, 27, 0.7);
  font-size: 1.0625rem;
  line-height: 1.6;
  margin: 0 0 28px;
}

.cv-checklist { display: flex; flex-direction: column; gap: 18px; margin-bottom: 28px; }
.cv-checklist__item { display: flex; gap: 12px; align-items: flex-start; }
.cv-checklist__icon {
  flex: 0 0 auto;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: rgba(41, 204, 177, 0.15);
  color: var(--cv-green-dark);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; margin-top: 1px;
}
.cv-checklist__text b { display: block; color: var(--cv-ink); font-weight: 600; margin-bottom: 2px; }
.cv-checklist__text span { color: rgba(29, 29, 27, 0.65); font-size: 0.95rem; line-height: 1.5; }

.cv-aside__contact { border-top: 1px solid var(--cv-line); padding-top: 20px; }
.cv-aside__contact a { color: var(--cv-green-dark); font-weight: 600; text-decoration: none; }
.cv-aside__contact a:hover { text-decoration: underline; }

@media screen and (max-width: 767px) {
  .cv-contact { grid-template-columns: 1fr; gap: 32px; }
  .cv-aside__title { font-size: 1.875rem; }
}

/* --------------------------------------------------------------------------
   Footer — turn the empty gradient band into a real footer with navigation.
   -------------------------------------------------------------------------- */
/* Replace the light gradient image with a solid dark band so footer text is
   always legible (the old gradient faded to near-black at the bottom). */
.footer {
  justify-content: space-between !important;
  background-image: none !important;
  background-color: var(--cv-ink) !important;
  background-attachment: initial !important;
  min-height: auto !important;
  padding: 72px 20px 40px !important;
  gap: 32px !important;
}

.cv-footer {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 40px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.cv-footer__logo { height: 40px; width: auto; margin-bottom: 16px; }
.cv-footer__tagline { color: rgba(255, 255, 255, 0.6); font-size: 0.95rem; line-height: 1.6; max-width: 300px; }

.cv-footer__heading {
  color: #fff;
  font-weight: 600;
  font-size: 0.8125rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.cv-footer__col a,
.cv-footer__col span {
  display: block;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.95rem;
  margin-bottom: 10px;
  transition: color var(--cv-ease);
}
.cv-footer__col a:hover { color: var(--cv-green); }

.cv-footer-bottom {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.875rem;
}
.cv-footer-bottom a { color: rgba(255, 255, 255, 0.55); text-decoration: none; }
.cv-footer-bottom a:hover { color: var(--cv-green); }

@media screen and (max-width: 860px) {
  .cv-footer { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media screen and (max-width: 479px) {
  .cv-footer { grid-template-columns: 1fr; }
}

/* --------------------------------------------------------------------------
   Supported networks — a clean compatibility card that matches the site's
   rounded, airy language (replaces the heavy dark data table).
   -------------------------------------------------------------------------- */
.cv-support {
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--cv-line);
  border-radius: var(--cv-radius-lg);
  box-shadow: var(--cv-shadow);
  overflow: hidden;
}

.cv-support__head { padding: 26px 28px 6px; }
.cv-support__title {
  font-family: Helveticanowdisplay, Arial, sans-serif;
  font-weight: 700;
  color: var(--cv-ink);
  font-size: 1.25rem;
}
.cv-support__sub { color: rgba(29, 29, 27, 0.6); font-size: 0.9rem; margin-top: 4px; }

.cv-support__table { width: 100%; border-collapse: collapse; }

.cv-support__table thead th {
  text-align: center;
  padding: 16px 20px;
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(29, 29, 27, 0.55);
  font-weight: 600;
  border-bottom: 1px solid var(--cv-line);
}
.cv-support__table thead th.cv-support__net-col { text-align: left; }

.cv-support__table tbody th {
  text-align: left;
  font-weight: 500;
  color: var(--cv-ink);
  padding: 18px 20px;
  border-top: 1px solid var(--cv-line);
  white-space: nowrap;
}
.cv-support__table tbody td {
  text-align: center;
  padding: 18px 20px;
  border-top: 1px solid var(--cv-line);
}
.cv-support__table tbody tr:first-child th,
.cv-support__table tbody tr:first-child td { border-top: 0; }

.cv-support__table tbody tr:hover th,
.cv-support__table tbody tr:hover td { background: var(--cv-mist); }

.cv-support__name { font-weight: 600; }
.cv-support__ticker { color: rgba(29, 29, 27, 0.45); font-size: 0.85rem; margin-left: 6px; }

.cv-support__yes { color: var(--cv-green); font-size: 24px; vertical-align: middle; }

.cv-support__soon {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 999px;
  background: rgba(29, 29, 27, 0.06);
  color: rgba(29, 29, 27, 0.55);
  font-size: 0.8rem;
  font-weight: 500;
  white-space: nowrap;
}

@media screen and (max-width: 479px) {
  .cv-support__head { padding: 20px 18px 4px; }
  .cv-support__table thead th,
  .cv-support__table tbody th,
  .cv-support__table tbody td { padding: 14px 14px; }
  .cv-support__ticker { display: block; margin-left: 0; }
}

/* --------------------------------------------------------------------------
   Navbar — replace the translucent green (poor contrast with the white logo)
   with a solid brand-ink bar that matches the footer and dark hero.
   -------------------------------------------------------------------------- */
.navbar1_component.navigation,
.navigation {
  background-color: var(--cv-ink) !important;
  -webkit-backdrop-filter: none !important;
  backdrop-filter: none !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
}

/* "Sign in" as a ghost button: clearly visible on the dark bar, but a step
   below the green primary (Register) and the white Contact button. */
.navigation .button-primary-2 {
  background-color: transparent;
  border: 1px solid rgba(255, 255, 255, 0.45);
}
.navigation .button-primary-2:hover {
  background-color: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.7);
}
