/* CRZY – minimal, loud, readable */

:root{
  --crzy-orange: #e45712; /* tweak if you want it closer to the original */
  --crzy-white: #ffffff;
}

html, body {
  height: 100%;
}

body {
  background: var(--crzy-orange);
  color: var(--crzy-white);
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  letter-spacing: -0.01em;
}

/* Navbar */
.crzy-navbar {
  padding: 28px 36px;
}

.crzy-navbar .nav-link {
  color: rgba(255,255,255,0.9);
  font-size: 0.95rem;
  padding: 0.25rem 0.75rem;
  border-bottom: 2px solid transparent;
}

.crzy-navbar .nav-link:hover {
  color: #fff;
  border-bottom-color: rgba(255,255,255,0.45);
}

.crzy-navbar .nav-link.active {
  color: #fff;
  border-bottom-color: #fff;
}

/* Big hero statement */
.crzy-hero {
  padding: 72px 18px 36px;
}

.crzy-hero h1{
  font-weight: 700;
  line-height: 1.08;
  font-size: clamp(2.4rem, 4.2vw, 4.8rem);
  max-width: 1100px;
  margin: 0 auto;
}

/* “Two thought blocks” section */
.crzy-sections{
  padding: 64px 18px 24px;
}

.crzy-h2{
  font-weight: 700;
  font-size: clamp(2.2rem, 3.2vw, 3.2rem);
  line-height: 1.05;
  margin: 0;
}

.crzy-small{
  font-size: 0.92rem;
  line-height: 1.6;
  max-width: 520px;
  opacity: 0.95;
}

.crzy-spacer{
  height: clamp(48px, 7vw, 120px);
}

/* Footer */
.crzy-footer{
  padding: 70px 36px 32px;
  font-size: 0.82rem;
  opacity: 0.9;
}

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

/* Logo sizing */
.crzy-logo svg{
  display: block;
  height: 46px;
  width: auto;
}

/* Responsive polish */
@media (max-width: 991.98px){
  .crzy-navbar{
    padding: 22px 20px;
  }
  .crzy-footer{
    padding: 52px 20px 26px;
  }
  .crzy-footer .right{
    text-align: left;
    margin-top: 10px;
  }
}
