@charset "UTF-8";
/*! Compiled from assets/scss/object/component/legacy.scss by Dart Sass — do not edit this generated file directly. */
/* FLOCSS Object/Component — legacy kept classes: .btn, .section family, .site-header family. Used by non-FLOCSS templates. */
/* ---------- Layout ---------- */
.section {
  padding: 96px 0;
}

.section-tight {
  padding: 72px 0;
}

.section-soft {
  background: var(--bg-soft);
}

.section-blue {
  background: var(--bg-blue-2);
}

.section-navy {
  background: var(--navy);
  color: #fff;
}

.section-navy h2, .section-navy h3, .section-navy p {
  color: #fff;
}

.section-head {
  margin-bottom: 48px;
  text-align: center;
  display: grid;
  justify-items: center;
  gap: 14px;
}

.section-head h2 {
  max-width: 780px;
}

.section-head p {
  max-width: 640px;
  color: var(--ink-3);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 52px;
  padding: 0 26px;
  border-radius: var(--r-pill);
  font-weight: 700;
  font-size: 15px;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--accent);
  color: var(--accent-ink);
  box-shadow: 0 8px 22px -8px color-mix(in oklab, var(--accent) 70%, transparent);
}

.btn-primary:hover {
  background: var(--accent-strong);
}

.btn-secondary {
  background: #fff;
  color: var(--navy);
  border: 1.5px solid var(--line);
}

.btn-secondary:hover {
  border-color: var(--navy);
  background: var(--bg-blue-2);
}

.btn-ghost {
  background: transparent;
  color: var(--navy);
}

.btn-ghost:hover {
  background: var(--bg-blue-2);
}

.btn-sm {
  height: 40px;
  padding: 0 18px;
  font-size: 13px;
}

.btn-lg {
  height: 60px;
  padding: 0 36px;
  font-size: 16px;
}

.btn-arrow::after {
  content: "→";
  font-family: var(--font-en);
  font-weight: 500;
  transition: transform 0.2s;
}

.btn-arrow:hover::after {
  transform: translateX(4px);
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid transparent;
  z-index: 50;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}

.site-header.is-scrolled {
  border-bottom-color: var(--line);
  background: rgba(255, 255, 255, 0.96);
}

.site-header__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
  height: 72px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.site-header__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.site-header__logo img {
  height: 28px;
  width: auto;
}

.site-header__cta {
  margin-left: 8px;
}
