:root {
  --ink: #10130f;
  --ink-soft: #222a22;
  --paper: #f5f1e6;
  --paper-deep: #e3ddcd;
  --cash: #1f7a4d;
  --cash-light: #61c184;
  --signal: #eb5b2d;
  --steel: #65706a;
  --muted: #aeb6aa;
  --white: #fffaf0;
  --line: rgba(16, 19, 15, 0.16);
  --shadow: 0 28px 70px rgba(8, 12, 8, 0.22);
  --header-height: 76px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(rgba(16, 19, 15, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 19, 15, 0.04) 1px, transparent 1px),
    var(--paper);
  background-size: 42px 42px;
  font-family: "Archivo", sans-serif;
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: 0;
}

body::selection {
  background: var(--signal);
  color: var(--white);
}

a {
  color: inherit;
}

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  transform: translateY(-160%);
  background: var(--white);
  color: var(--ink);
  padding: 10px 14px;
  border: 1px solid var(--ink);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  height: var(--header-height);
  display: grid;
  grid-template-columns: minmax(190px, 1fr) auto minmax(156px, 1fr);
  align-items: center;
  gap: 24px;
  padding: 14px 28px;
  color: var(--white);
  transition: background 260ms ease, color 260ms ease, border-color 260ms ease;
  border-bottom: 1px solid rgba(255, 250, 240, 0.16);
}

.site-header.is-scrolled {
  color: var(--ink);
  background: rgba(245, 241, 230, 0.94);
  border-color: var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
  text-decoration: none;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--cash-light);
}

.site-header.is-scrolled .brand-mark {
  color: var(--cash);
}

.brand-mark svg {
  width: 38px;
  height: 38px;
  fill: rgba(255, 250, 240, 0.08);
  stroke: currentColor;
  stroke-width: 2;
}

.site-header.is-scrolled .brand-mark svg {
  fill: rgba(31, 122, 77, 0.08);
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-weight: 800;
  font-size: 1.05rem;
  line-height: 1;
}

.brand small {
  margin-top: 2px;
  font-size: 0.72rem;
  color: currentColor;
  opacity: 0.78;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 6px;
  border: 1px solid rgba(255, 250, 240, 0.18);
  background: rgba(8, 12, 8, 0.22);
}

.site-header.is-scrolled .site-nav {
  border-color: var(--line);
  background: rgba(255, 250, 240, 0.66);
}

.site-nav a {
  min-width: 92px;
  padding: 8px 12px;
  text-decoration: none;
  text-align: center;
  font-size: 0.86rem;
  font-weight: 700;
  transition: background 180ms ease, color 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--ink);
  background: var(--cash-light);
  outline: none;
}

.nav-cta {
  justify-self: end;
  min-width: 148px;
  padding: 12px 18px;
  background: var(--signal);
  color: var(--white);
  text-align: center;
  text-decoration: none;
  font-weight: 800;
  border: 1px solid rgba(255, 250, 240, 0.2);
  transition: transform 180ms ease, background 180ms ease;
}

.nav-cta:hover,
.nav-cta:focus-visible {
  transform: translateY(-2px);
  background: #ff6a36;
  outline: none;
}

.hero {
  position: relative;
  min-height: 86svh;
  overflow: hidden;
  color: var(--white);
  background: #080d0a;
  isolation: isolate;
}

.hero-media,
.hero-slide,
.hero-scrim {
  position: absolute;
  inset: 0;
}

.hero-media {
  z-index: -2;
}

.hero-slide {
  margin: 0;
  opacity: 0;
  clip-path: inset(0 0 0 100%);
  transform: translateX(7%);
  transition: clip-path 980ms cubic-bezier(0.78, 0, 0.18, 1), transform 980ms cubic-bezier(0.78, 0, 0.18, 1), opacity 260ms ease;
}

.hero-slide.is-active {
  opacity: 1;
  clip-path: inset(0 0 0 0);
  transform: translateX(0);
  z-index: 2;
}

.hero-slide.is-prev {
  opacity: 1;
  clip-path: inset(0 100% 0 0);
  transform: translateX(-5%);
  z-index: 1;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
}

.hero-slide.is-active img {
  animation: heroPan 6200ms linear both;
}

.hero-scrim {
  z-index: 3;
  background:
    linear-gradient(90deg, rgba(5, 10, 6, 0.92) 0%, rgba(5, 10, 6, 0.72) 35%, rgba(5, 10, 6, 0.2) 72%, rgba(5, 10, 6, 0.5) 100%),
    linear-gradient(0deg, rgba(5, 10, 6, 0.76) 0%, rgba(5, 10, 6, 0.1) 46%, rgba(5, 10, 6, 0.44) 100%);
}

.hero-copy {
  width: min(860px, calc(100% - 48px));
  padding: 150px 0 118px;
  margin-left: max(28px, calc((100vw - 1180px) / 2));
}

.eyebrow,
.section-kicker {
  margin: 0 0 18px;
  color: var(--cash-light);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.82rem;
}

.hero h1,
.section h2,
.contact h2 {
  margin: 0;
  font-family: "Fraunces", serif;
  line-height: 0.96;
  font-weight: 820;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 780px;
  font-size: 5.35rem;
}

.hero-deck {
  max-width: 650px;
  margin: 24px 0 0;
  color: rgba(255, 250, 240, 0.82);
  font-size: 1.22rem;
}

.hero-actions,
.contact-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  min-width: 178px;
  padding: 14px 20px;
  border: 1px solid currentColor;
  text-decoration: none;
  font-weight: 800;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  outline: none;
}

.button-primary {
  color: var(--white);
  background: var(--cash);
  border-color: var(--cash);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #27965e;
  border-color: #27965e;
}

.button-secondary {
  color: var(--white);
  background: rgba(255, 250, 240, 0.08);
  border-color: rgba(255, 250, 240, 0.34);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  color: var(--ink);
  background: var(--white);
  border-color: var(--white);
}

.hero-control {
  position: absolute;
  left: max(28px, calc((100vw - 1180px) / 2));
  right: max(28px, calc((100vw - 1180px) / 2));
  bottom: 24px;
  z-index: 5;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 250, 240, 0.24);
}

.slide-label {
  display: flex;
  align-items: baseline;
  gap: 16px;
}

.slide-label span {
  font-family: "Fraunces", serif;
  color: var(--cash-light);
  font-size: 2.2rem;
  font-weight: 800;
}

.slide-label strong {
  font-size: 1rem;
}

.slide-dots {
  display: flex;
  gap: 8px;
}

.slide-dots button {
  width: 42px;
  height: 12px;
  border: 1px solid rgba(255, 250, 240, 0.5);
  background: rgba(255, 250, 240, 0.12);
  cursor: pointer;
}

.slide-dots button.is-active {
  background: var(--cash-light);
  border-color: var(--cash-light);
}

.ticker {
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
  border-top: 1px solid rgba(255, 250, 240, 0.12);
  border-bottom: 1px solid rgba(255, 250, 240, 0.12);
}

.ticker div {
  display: flex;
  width: max-content;
  animation: tickerMove 26s linear infinite;
}

.ticker span {
  padding: 16px 32px;
  font-weight: 800;
  color: rgba(255, 250, 240, 0.78);
  white-space: nowrap;
}

.ticker span:nth-child(even) {
  color: var(--cash-light);
}

.section {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 96px 0;
}

.intro {
  padding-top: 82px;
}

.intro-grid,
.section-heading,
.operations {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
  gap: 64px;
  align-items: start;
}

.section h2,
.contact h2 {
  font-size: 3.4rem;
}

.section p,
.contact p {
  color: var(--ink-soft);
  margin: 0;
  font-size: 1.06rem;
}

.section-heading {
  margin-bottom: 34px;
  align-items: end;
}

.section-heading p:last-child {
  max-width: 440px;
}

.placement-steps,
.location-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.step-card,
.location-card {
  position: relative;
  min-height: 270px;
  padding: 24px;
  background: rgba(255, 250, 240, 0.7);
  border: 1px solid var(--line);
  box-shadow: 0 14px 40px rgba(16, 19, 15, 0.06);
  overflow: hidden;
}

.step-card::before,
.location-card::before {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateY(100%);
  background: var(--ink);
  transition: transform 320ms cubic-bezier(0.2, 0.8, 0.2, 1);
  z-index: 0;
}

.step-card > *,
.location-card > * {
  position: relative;
  z-index: 1;
}

.step-card:hover::before,
.location-card:hover::before {
  transform: translateY(0);
}

.step-card:hover,
.step-card:hover p,
.location-card:hover,
.location-card:hover p {
  color: var(--white);
}

.step-card span {
  display: block;
  color: var(--signal);
  font-family: "Fraunces", serif;
  font-size: 2.4rem;
  line-height: 1;
  font-weight: 800;
}

.step-card h3,
.location-card h3 {
  margin: 72px 0 12px;
  font-size: 1.36rem;
}

.step-card p,
.location-card p {
  font-size: 0.98rem;
}

.network {
  display: grid;
  grid-template-columns: minmax(320px, 0.88fr) minmax(0, 1.12fr);
  gap: 58px;
  align-items: center;
}

.network-photo {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  background: var(--ink);
  box-shadow: var(--shadow);
}

.network-photo img {
  width: 100%;
  height: 620px;
  object-fit: cover;
  filter: saturate(0.88) contrast(1.06);
  transform: scale(1.02);
}

.photo-tag {
  position: absolute;
  left: 18px;
  bottom: 18px;
  padding: 10px 12px;
  color: var(--white);
  background: var(--signal);
  font-weight: 800;
}

.network-copy h2 {
  margin-bottom: 24px;
}

.network-copy p {
  max-width: 610px;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 34px;
}

.metrics div {
  min-height: 142px;
  padding: 18px;
  border: 1px solid var(--line);
  background: rgba(255, 250, 240, 0.58);
}

.metrics strong {
  display: block;
  font-family: "Fraunces", serif;
  font-size: 2.7rem;
  line-height: 1;
  color: var(--cash);
}

.metrics span {
  display: block;
  margin-top: 14px;
  color: var(--ink-soft);
  font-weight: 700;
}

.locations {
  padding-top: 74px;
}

.location-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.location-card {
  min-height: 310px;
  background:
    linear-gradient(135deg, rgba(31, 122, 77, 0.1), transparent 44%),
    rgba(255, 250, 240, 0.7);
}

.location-card h3 {
  margin-top: 118px;
  font-size: 1.55rem;
}

.operations {
  align-items: center;
}

.operations-copy h2 {
  margin-bottom: 24px;
}

.ops-panel {
  background: var(--ink);
  color: var(--white);
  padding: 14px;
  box-shadow: var(--shadow);
}

.ops-row {
  display: grid;
  grid-template-columns: minmax(150px, 0.86fr) minmax(180px, 1.14fr);
  gap: 16px;
  align-items: center;
  min-height: 86px;
  padding: 18px;
  border-bottom: 1px solid rgba(255, 250, 240, 0.16);
}

.ops-row:last-child {
  border-bottom: 0;
}

.ops-row span {
  color: var(--cash-light);
  font-weight: 800;
}

.ops-row strong {
  font-size: 1.12rem;
}

.contact {
  background:
    linear-gradient(90deg, rgba(8, 13, 10, 0.92), rgba(8, 13, 10, 0.8)),
    url("/assets/images/hero-neon-atm.jpg") center / cover;
  color: var(--white);
  padding: 108px 24px;
}

.contact-inner {
  width: min(920px, 100%);
  margin: 0 auto;
}

.contact p {
  max-width: 680px;
  margin-top: 24px;
  color: rgba(255, 250, 240, 0.78);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 30px 28px;
  color: var(--white);
  background: #070b08;
}

.site-footer strong,
.site-footer span,
.site-footer a {
  display: block;
}

.site-footer span,
.site-footer a {
  color: rgba(255, 250, 240, 0.66);
}

.footer-links {
  text-align: right;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 640ms ease, transform 640ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.step-card:nth-child(2),
.location-card:nth-child(2) {
  transition-delay: 90ms;
}

.step-card:nth-child(3),
.location-card:nth-child(3) {
  transition-delay: 180ms;
}

.step-card:nth-child(4) {
  transition-delay: 270ms;
}

@keyframes heroPan {
  from {
    transform: scale(1.08) translateX(1.8%);
  }
  to {
    transform: scale(1.02) translateX(-1.8%);
  }
}

@keyframes tickerMove {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 980px) {
  :root {
    --header-height: 68px;
  }

  .site-header {
    grid-template-columns: 1fr auto;
    padding: 12px 18px;
  }

  .site-nav {
    display: none;
  }

  .nav-cta {
    min-width: 132px;
    padding: 10px 14px;
  }

  .hero {
    min-height: 88svh;
  }

  .hero-copy {
    width: min(760px, calc(100% - 36px));
    margin-left: 18px;
    padding-top: 138px;
  }

  .hero h1 {
    font-size: 4rem;
  }

  .hero-deck {
    font-size: 1.08rem;
  }

  .hero-control {
    left: 18px;
    right: 18px;
  }

  .intro-grid,
  .section-heading,
  .network,
  .operations {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .section h2,
  .contact h2 {
    font-size: 2.7rem;
  }

  .placement-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .location-grid,
  .metrics {
    grid-template-columns: 1fr;
  }

  .network-photo,
  .network-photo img {
    min-height: 0;
    height: 460px;
  }
}

@media (max-width: 640px) {
  body {
    font-size: 15px;
  }

  .brand small {
    display: none;
  }

  .brand-mark {
    width: 36px;
    height: 36px;
  }

  .brand-mark svg {
    width: 34px;
    height: 34px;
  }

  .nav-cta {
    min-width: 108px;
    font-size: 0.84rem;
  }

  .hero {
    min-height: 92svh;
  }

  .hero-copy {
    padding-top: 122px;
    padding-bottom: 150px;
  }

  .hero h1 {
    font-size: 3.08rem;
  }

  .hero-actions,
  .contact-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .button {
    width: 100%;
  }

  .hero-control {
    align-items: stretch;
    flex-direction: column;
  }

  .slide-dots button {
    flex: 1;
  }

  .section {
    width: min(100% - 32px, 1180px);
    padding: 72px 0;
  }

  .section h2,
  .contact h2 {
    font-size: 2.15rem;
  }

  .placement-steps {
    grid-template-columns: 1fr;
  }

  .step-card,
  .location-card {
    min-height: 238px;
  }

  .location-card h3,
  .step-card h3 {
    margin-top: 70px;
  }

  .network-photo,
  .network-photo img {
    height: 380px;
  }

  .ops-row {
    grid-template-columns: 1fr;
    gap: 6px;
  }

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

  .footer-links {
    text-align: left;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

  .ticker div {
    animation: none;
  }
}
