* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  font-size: 16.5px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: var(--blue);
}
h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  color: var(--navy);
  line-height: 1.08;
  letter-spacing: -0.015em;
}
h1 {
  font-size: clamp(2.4rem, 5.2vw, 4rem);
  font-weight: 900;
}
h2 {
  font-size: clamp(1.9rem, 3.6vw, 2.7rem);
  font-weight: 800;
}
h3 {
  font-size: 1.15rem;
  font-weight: 800;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--amber);
  color: var(--navy);
  padding: 0.7rem 1.2rem;
  font-weight: 600;
  z-index: 200;
  border-radius: 0 0 8px 0;
}
.skip-link:focus {
  left: 0;
}
:focus-visible {
  outline: 3px solid var(--amber);
  outline-offset: 3px;
  border-radius: 4px;
}

.wrap {
  width: var(--wrap);
  margin-inline: auto;
}
.mono {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.btn {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  text-decoration: none;
  padding: 0.85rem 1.7rem;
  border-radius: 9px;
  transition:
    transform 0.2s,
    box-shadow 0.2s,
    background 0.2s;
  border: none;
  cursor: pointer;
}
.btn-amber {
  background: var(--amber);
  color: var(--navy);
}
.btn-amber:hover {
  background: var(--amber-deep);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px -8px rgba(253, 185, 19, 0.55);
}
.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.35);
}
.btn-ghost:hover {
  border-color: var(--blue-soft);
  color: var(--blue-soft);
  transform: translateY(-2px);
}
.btn-navy {
  background: var(--navy);
  color: var(--white);
}
.btn-navy:hover {
  background: var(--navy-deep);
  transform: translateY(-2px);
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  font-size: 0.85rem;
}

.bars-motif {
  display: inline-flex;
  align-items: flex-end;
  gap: 5px;
  height: 28px;
  margin-bottom: 1.1rem;
}
.bars-motif i {
  width: 8px;
  transform: skewX(-8deg);
  border-radius: 2px;
  flex-shrink: 0;
}
.bars-motif i:nth-child(1) {
  height: 78%;
  background: var(--blue-soft);
}
.bars-motif i:nth-child(2) {
  height: 100%;
  background: var(--blue);
}
.bars-motif i:nth-child(3) {
  height: 45%;
  background: var(--blue-mid);
}

.section {
  padding: 5.5rem 0;
}
.section-head {
  max-width: 640px;
  margin-bottom: 3rem;
}
.section-head p {
  margin-top: 1rem;
  color: var(--muted);
  font-size: 1.05rem;
}

.mt-sm {
  margin-top: 0.8rem;
}
.mt-lg {
  margin-top: 2.4rem;
}
.btn-block {
  width: 100%;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.in {
  opacity: 1;
  transform: none;
}

@media (max-width: 600px) {
  body {
    font-size: 15.5px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
  html {
    scroll-behavior: auto;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}
