/* Font Faces */
@font-face {
  font-family: "Neue Alte Grotesk";
  src: url("fonts/neue_alte_grotesk_regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Neue Alte Grotesk";
  src: url("fonts/neue_alte_grotesk_medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: "Neue Alte Grotesk";
  src: url("fonts/neue_alte_grotesk_semibold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: "Neue Alte Grotesk";
  src: url("fonts/neue_alte_grotesk_bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: "Neue Alte Grotesk";
  src: url("fonts/neue_alte_grotesk_thin.ttf") format("truetype");
  font-weight: 100;
  font-style: normal;
}

@font-face {
  font-family: "VK Sans Display";
  src: url("fonts/vk_sans_display_regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "VK Sans Display";
  src: url("fonts/vk_sans_display_medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: "VK Sans Display";
  src: url("fonts/vk_sans_display_semibold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: "VK Sans Display";
  src: url("fonts/vk_sans_display_bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}

/* Arizona Mix - Expecting user to upload this file */
@font-face {
  font-family: "Arizona Mix";
  src: url("fonts/arizona_mix_regular.ttf") format("truetype"); /* Adjust format if .ttf or .woff2 */
  font-weight: 400;
  font-style: normal;
}

/* Variables */
:root {
  --color-light-blue: #007bff; /* Adjust to match image closer if needed, maybe #0066cc or #0080ff */
  --color-black: #111111;
  --color-gray: #555555;
  --color-slate: #4a5565;
  --color-border: #e5e5e5;
  --font-source-sans: "Source Sans 3", sans-serif;
  --font-arizona-mix: "Arizona Mix", "VK Sans Display", sans-serif; /* Fallback to VK Sans if Arizona missing */
}

/* Global Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-source-sans);
  color: var(--color-black);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

a {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.2s;
}

ul {
  list-style: none;
}

.container {
  max-width: 1200px; /* Or maybe slightly wider */
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

/* Header */
.site-header {
  height: 72px; /* Estimate */
  border-bottom: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  position: sticky;
  top: 0;
  background: white;
  z-index: 100;
}

.site-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: "VK Sans Display", sans-serif;
  font-weight: 600;
  font-size: 1.5rem; /* Increased size slightly */
  color: var(--color-black);
}

.logo a {
  display: flex;
  align-items: center;
}

.logo img {
  height: 32px; /* Increased logo size */
  width: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-link {
  font-size: 1rem;
  color: var(--color-slate);
  font-weight: 400;
}

.nav-link:hover {
  color: var(--color-black);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px; /* Rounded corners */
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.2s;
}

.btn-primary {
  background-color: var(--color-black);
  color: white;
  border: none;
}

.btn-primary:hover {
  background-color: #333333;
}

.btn-sm {
  padding: 8px 16px;
  font-size: 0.95rem;
}

.btn-lg {
  padding: 12px 24px;
  font-size: 1.1rem;
  border-radius: 6px;
}

/* Hero Section */
main {
  flex: 1;
  display: flex;
  align-items: center; /* Center vertically if needed, or just padding */
  padding-top: 80px; /* Space from header */
  padding-bottom: 80px;
}

.hero-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.bank-logos {
  display: flex;
  align-items: center;
  margin-bottom: 24px;
}

@keyframes separate-logos {
  0%,
  100% {
    margin-left: -12px;
  }
  50% {
    margin-left: -2px; /* Slight separation */
  }
}

.bank-logo-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: #fcfcfc; /* Very light gray, almost white */
  border: 1px solid #e5e5e5; /* Gray-like border */
  box-shadow: 0 0 0 2px white; /* Outer white border for overlap */
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: -12px; /* Overlap */
}

.bank-logo-circle:not(:first-child) {
  animation: separate-logos 4s ease-in-out infinite;
}

.bank-logo-circle:first-child {
  margin-left: 0;
}

.bank-logo-circle img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.bank-logo-circle img.novo-logo,
.bank-logo-circle img.gmail-logo {
  width: 32px;
  height: 32px;
}

.hero-title {
  font-family: "Neue Alte Grotesk", sans-serif;
  font-size: 3.5rem; /* Large heading */
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 24px;
  color: var(--color-black);
  letter-spacing: -0.02em;
  max-width: 800px;
}

.hero-text {
  font-size: 1.25rem;
  color: var(--color-slate);
  margin-bottom: 32px;
  max-width: 640px; /* Constrain paragraph width */
  line-height: 1.6;
}

/* Footer */
.site-footer {
  padding-bottom: 48px;
  margin-top: auto;
}

.footer-divider {
  border-top: 1px dashed var(--color-border);
  margin-bottom: 32px;
  width: 100%;
}

.footer-content {
  display: flex;
  align-items: center;
  gap: 48px;
}

.footer-logo {
  opacity: 0.5; /* Greyscale look */
  filter: grayscale(100%);
}

.footer-logo img {
  height: 24px; /* Smaller than header logo */
}

.footer-nav {
  display: flex;
  gap: 32px;
}

.footer-nav a {
  color: var(--color-black);
  font-size: 1rem;
  font-weight: 400;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .footer-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }

  .footer-nav {
    flex-direction: column;
    gap: 16px;
  }

  /* .logo img {
    height: 28px;
  } */

  .site-nav {
    display: none;
  }
}
