/*! tailwindcss v4.3.0 | MIT License | https://tailwindcss.com */
@layer properties;
@layer theme, base, components, utilities;
@layer theme {
  :root, :host {
    --font-sans: var(--sans);
    --font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono",
      "Courier New", monospace;
    --default-transition-duration: 150ms;
    --default-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    --default-font-family: var(--font-sans);
    --default-mono-font-family: var(--font-mono);
    --color-brand: var(--brand);
    --color-green: var(--green);
    --color-orange: var(--orange);
    --color-light: var(--light);
    --radius-card: var(--radius-card);
    --radius-pill: var(--radius-pill);
  }
}
@layer base {
  *, ::after, ::before, ::backdrop, ::file-selector-button {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    border: 0 solid;
  }
  html, :host {
    line-height: 1.5;
    -webkit-text-size-adjust: 100%;
    -moz-tab-size: 4;
      -o-tab-size: 4;
         tab-size: 4;
    font-family: var(--default-font-family, ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji");
    font-feature-settings: var(--default-font-feature-settings, normal);
    font-variation-settings: var(--default-font-variation-settings, normal);
    -webkit-tap-highlight-color: transparent;
  }
  hr {
    height: 0;
    color: inherit;
    border-top-width: 1px;
  }
  abbr:where([title]) {
    -webkit-text-decoration: underline dotted;
    text-decoration: underline dotted;
  }
  h1, h2, h3, h4, h5, h6 {
    font-size: inherit;
    font-weight: inherit;
  }
  a {
    color: inherit;
    -webkit-text-decoration: inherit;
    text-decoration: inherit;
  }
  b, strong {
    font-weight: bolder;
  }
  code, kbd, samp, pre {
    font-family: var(--default-mono-font-family, ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace);
    font-feature-settings: var(--default-mono-font-feature-settings, normal);
    font-variation-settings: var(--default-mono-font-variation-settings, normal);
    font-size: 1em;
  }
  small {
    font-size: 80%;
  }
  sub, sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
  }
  sub {
    bottom: -0.25em;
  }
  sup {
    top: -0.5em;
  }
  table {
    text-indent: 0;
    border-color: inherit;
    border-collapse: collapse;
  }
  :-moz-focusring {
    outline: auto;
  }
  progress {
    vertical-align: baseline;
  }
  summary {
    display: list-item;
  }
  ol, ul, menu {
    list-style: none;
  }
  img, svg, video, canvas, audio, iframe, embed, object {
    display: block;
    vertical-align: middle;
  }
  img, video {
    max-width: 100%;
    height: auto;
  }
  button, input, select, optgroup, textarea, ::file-selector-button {
    font: inherit;
    font-feature-settings: inherit;
    font-variation-settings: inherit;
    letter-spacing: inherit;
    color: inherit;
    border-radius: 0;
    background-color: transparent;
    opacity: 1;
  }
  :where(select:is([multiple], [size])) optgroup {
    font-weight: bolder;
  }
  :where(select:is([multiple], [size])) optgroup option {
    padding-inline-start: 20px;
  }
  ::file-selector-button {
    margin-inline-end: 4px;
  }
  ::-moz-placeholder {
    opacity: 1;
  }
  ::placeholder {
    opacity: 1;
  }
  @supports (not (-webkit-appearance: -apple-pay-button))  or (contain-intrinsic-size: 1px) {
    ::-moz-placeholder {
      color: currentcolor;
      @supports (color: color-mix(in lab, red, red)) {
        color: color-mix(in oklab, currentcolor 50%, transparent);
      }
    }
    ::placeholder {
      color: currentcolor;
      @supports (color: color-mix(in lab, red, red)) {
        color: color-mix(in oklab, currentcolor 50%, transparent);
      }
    }
  }
  textarea {
    resize: vertical;
  }
  ::-webkit-search-decoration {
    -webkit-appearance: none;
  }
  ::-webkit-date-and-time-value {
    min-height: 1lh;
    text-align: inherit;
  }
  ::-webkit-datetime-edit {
    display: inline-flex;
  }
  ::-webkit-datetime-edit-fields-wrapper {
    padding: 0;
  }
  ::-webkit-datetime-edit, ::-webkit-datetime-edit-year-field, ::-webkit-datetime-edit-month-field, ::-webkit-datetime-edit-day-field, ::-webkit-datetime-edit-hour-field, ::-webkit-datetime-edit-minute-field, ::-webkit-datetime-edit-second-field, ::-webkit-datetime-edit-millisecond-field, ::-webkit-datetime-edit-meridiem-field {
    padding-block: 0;
  }
  ::-webkit-calendar-picker-indicator {
    line-height: 1;
  }
  :-moz-ui-invalid {
    box-shadow: none;
  }
  button, input:where([type="button"], [type="reset"], [type="submit"]), ::file-selector-button {
    -webkit-appearance: button;
       -moz-appearance: button;
            appearance: button;
  }
  ::-webkit-inner-spin-button, ::-webkit-outer-spin-button {
    height: auto;
  }
  [hidden]:where(:not([hidden="until-found"])) {
    display: none !important;
  }
}
@layer utilities {
  .visible {
    visibility: visible;
  }
  .absolute {
    position: absolute;
  }
  .fixed {
    position: fixed;
  }
  .relative {
    position: relative;
  }
  .static {
    position: static;
  }
  .container {
    width: 100%;
    @media (width >= 40rem) {
      max-width: 40rem;
    }
    @media (width >= 48rem) {
      max-width: 48rem;
    }
    @media (width >= 64rem) {
      max-width: 64rem;
    }
    @media (width >= 80rem) {
      max-width: 80rem;
    }
    @media (width >= 96rem) {
      max-width: 96rem;
    }
  }
  .block {
    display: block;
  }
  .flex {
    display: flex;
  }
  .grid {
    display: grid;
  }
  .hidden {
    display: none;
  }
  .inline {
    display: inline;
  }
  .inline-block {
    display: inline-block;
  }
  .transform {
    transform: var(--tw-rotate-x,) var(--tw-rotate-y,) var(--tw-rotate-z,) var(--tw-skew-x,) var(--tw-skew-y,);
  }
  .resize {
    resize: both;
  }
  .flex-wrap {
    flex-wrap: wrap;
  }
  .border {
    border-style: var(--tw-border-style);
    border-width: 1px;
  }
  .bg-brand {
    background-color: var(--color-brand);
  }
  .bg-green {
    background-color: var(--color-green);
  }
  .bg-light {
    background-color: var(--color-light);
  }
  .bg-orange {
    background-color: var(--color-orange);
  }
  .italic {
    font-style: italic;
  }
  .blur {
    --tw-blur: blur(8px);
    filter: var(--tw-blur,) var(--tw-brightness,) var(--tw-contrast,) var(--tw-grayscale,) var(--tw-hue-rotate,) var(--tw-invert,) var(--tw-saturate,) var(--tw-sepia,) var(--tw-drop-shadow,);
  }
  .filter {
    filter: var(--tw-blur,) var(--tw-brightness,) var(--tw-contrast,) var(--tw-grayscale,) var(--tw-hue-rotate,) var(--tw-invert,) var(--tw-saturate,) var(--tw-sepia,) var(--tw-drop-shadow,);
  }
  .transition {
    transition-property: color, background-color, border-color, outline-color, text-decoration-color, fill, stroke, --tw-gradient-from, --tw-gradient-via, --tw-gradient-to, opacity, box-shadow, transform, translate, scale, rotate, filter, backdrop-filter, display, content-visibility, overlay, pointer-events;
    transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
    transition-duration: var(--tw-duration, var(--default-transition-duration));
  }
}
:root {
  --brand: #EF3922;
  --ink: #0E0E0E;
  --green: #1B7F4E;
  --orange: #F46927;
  --light: #F2F2F2;
  --grid: #E8E8E8;
  --bg: #FFFFFF;
  --display: "Syne", "Plus Jakarta Sans", "Noto Sans SC", system-ui, sans-serif;
  --sans: "Plus Jakarta Sans", "Noto Sans SC", system-ui, sans-serif;
  --zh: "Noto Sans SC", "PingFang SC", system-ui, sans-serif;
  --fs-hero: clamp(2.75rem, 8.5vw, 8.5rem);
  --fs-display: clamp(2.75rem, 6vw, 5.5rem);
  --fs-h1: clamp(2.25rem, 4.2vw, 3.5rem);
  --fs-h2: clamp(1.75rem, 3vw, 2.6rem);
  --fs-h3: clamp(1.35rem, 2vw, 1.75rem);
  --fs-h4: 1.2rem;
  --fs-lead: clamp(1.2rem, 1.7vw, 1.55rem);
  --fs-body: 1rem;
  --fs-sm: 0.9rem;
  --fs-label: 0.8125rem;
  --fs-cap: 0.6875rem;
  --lh-display: 0.92;
  --lh-h1: 1.04;
  --lh-h2: 1.1;
  --lh-h3: 1.15;
  --lh-body: 1.7;
  --tr-display: -0.035em;
  --tr-h2: -0.02em;
  --sp-3xs: clamp(6px, 0.6vw, 8px);
  --sp-2xs: clamp(10px, 1vw, 14px);
  --sp-xs: clamp(16px, 1.7vw, 24px);
  --sp-sm: clamp(24px, 2.8vw, 38px);
  --sp-md: clamp(40px, 4.6vw, 64px);
  --sp-lg: clamp(64px, 7.5vw, 108px);
  --sp-xl: clamp(100px, 11vw, 168px);
  --sp-2xl: clamp(140px, 15vw, 232px);
  --sp-3xl: clamp(184px, 20vw, 320px);
  --gap-section: var(--sp-xl);
  --pad-page: clamp(20px, 5vw, 48px);
  --w-full: 100%;
  --w-wide: 1440px;
  --w-page: 1280px;
  --w-text: 720px;
  --w-narrow: 560px;
  --radius-card: 0;
  --radius-pill: 999px;
  --gutter-page: max(clamp(20px, 5vw, 48px), calc((100vw - 1280px) / 2 + 48px));
}
body {
  overflow-x: hidden;
}
::-moz-selection {
  background: var(--brand);
  color: #fff;
}
::selection {
  background: var(--brand);
  color: #fff;
}
.its-arrow {
  display: inline-block;
  width: 1em;
  height: 1em;
  color: currentColor;
  vertical-align: -0.12em;
  overflow: visible;
  flex: 0 0 auto;
}
.its-arrow.is-inline {
  margin-left: 0.32em;
}
.its-arrow.is-leading {
  margin-right: 0.32em;
}
:where(.nt-arrow, .scen-arrow, .ar, .go) > .its-arrow:not(.is-inline):not(.is-leading) {
  display: block;
}
.default-main {
  width: min(var(--w-page), calc(100% - (var(--pad-page) * 2)));
  min-height: 62vh;
  margin: 0 auto;
  padding: var(--sp-xl) 0 var(--sp-lg);
}
.default-main article {
  max-width: var(--w-text);
}
.default-main h1 {
  margin: 0 0 var(--sp-sm);
  color: var(--brand);
  font-family: var(--display);
  font-size: var(--fs-h1);
  line-height: var(--lh-h1);
}
.default-main :where(p, li) {
  color: rgba(14, 14, 14, 0.76);
  line-height: var(--lh-body);
}
.skip-link:focus {
  position: fixed;
  top: 16px;
  left: 16px;
  z-index: 2000;
  width: auto;
  height: auto;
  padding: 10px 14px;
  clip: auto;
  white-space: normal;
  background: var(--brand);
  color: #fff;
}
.nv4 {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  pointer-events: none;
  transform: translateY(0);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.nv4 a {
  text-decoration: none;
}
.nv4.is-hidden {
  transform: translateY(-130%);
}
.nv4.is-scrolled .nv4-panel {
  box-shadow: 0 10px 32px rgba(14, 14, 14, 0.12);
}
.nv4-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(16px, 3vw, 40px);
  padding: 16px clamp(20px, 4vw, 44px);
}
.nv4-bar > * {
  pointer-events: auto;
}
.nv4-brand {
  display: inline-flex;
  align-items: center;
  line-height: 0;
  transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.nv4-brand:hover {
  opacity: 0.75;
  transform: rotate(-6deg);
}
.nv4-brand img {
  width: auto;
  height: 34px;
  display: block;
}
.nv4-panel {
  display: flex;
  align-items: center;
  gap: clamp(6px, 1vw, 14px);
  margin-left: auto;
  padding: 5px 5px 5px clamp(8px, 1.2vw, 14px);
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(14, 14, 14, 0.08);
  border-radius: 999px;
  box-shadow: 0 6px 24px rgba(14, 14, 14, 0.07);
  transition: box-shadow 0.3s ease;
}
.nv4-links {
  display: flex;
  align-items: center;
  gap: 2px;
}
.nv4-links > a {
  padding: 9px 14px;
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: rgba(14, 14, 14, 0.72);
  transition: color 0.2s ease, background 0.2s ease;
}
.nv4-links > a:hover {
  color: var(--ink);
  background: rgba(14, 14, 14, 0.05);
}
.nv4-links > a.is-current {
  color: var(--brand);
}
.nv4-group {
  position: relative;
}
.nv4-group-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 9px 14px;
  border-radius: 999px;
  background: transparent;
  border: 0;
  cursor: pointer;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: rgba(14, 14, 14, 0.72);
  transition: color 0.2s ease, background 0.2s ease;
}
@media (min-width: 1024px) {
  .nv4-group:hover .nv4-group-btn, .nv4-group.is-open .nv4-group-btn {
    background: rgba(14, 14, 14, 0.05);
  }
}
.nv4-group-btn .chev {
  width: 13px;
  height: 13px;
  transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1);
}
.nv4-group:hover .nv4-group-btn, .nv4-group.is-open .nv4-group-btn {
  color: var(--ink);
}
.nv4-group.is-current .nv4-group-btn {
  color: var(--brand);
}
@media (min-width: 1024px) {
  .nv4-drop {
    position: absolute;
    top: calc(100% + 16px);
    left: 50%;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(14, 14, 14, 0.08);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(14, 14, 14, 0.13);
    opacity: 0;
    transform: translate(-50%, -6px);
    visibility: hidden;
    transition: opacity 0.22s ease, transform 0.28s cubic-bezier(0.22, 1, 0.36, 1), visibility 0s linear 0.28s;
  }
  .nv4-drop::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: -16px;
    height: 16px;
  }
  .nv4-group:hover .nv4-drop, .nv4-group:focus-within .nv4-drop, .nv4-group.is-open .nv4-drop {
    opacity: 1;
    transform: translate(-50%, 0);
    visibility: visible;
    transition-delay: 0s;
  }
  .nv4-group:hover .nv4-group-btn .chev, .nv4-group.is-open .nv4-group-btn .chev {
    transform: rotate(180deg);
  }
  .nv4-mega {
    width: 660px;
    padding: 24px;
  }
  .nv4-mega-main {
    display: grid;
    grid-template-columns: 1fr 248px;
    gap: 28px;
  }
  .nv4-mega-eyebrow {
    font-family: var(--sans);
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(14, 14, 14, 0.38);
    padding: 4px 12px 12px;
  }
  .nv4-mega-list a {
    display: block;
    padding: 10px 12px;
    border-radius: 10px;
    font-family: var(--sans);
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.01em;
    color: rgba(14, 14, 14, 0.8);
    transition: color 0.2s ease, background 0.2s ease;
    white-space: nowrap;
  }
  .nv4-mega-list a:hover {
    color: var(--ink);
    background: rgba(14, 14, 14, 0.05);
  }
  .nv4-mega-list a.is-current {
    color: var(--brand);
  }
  .nv4-mega-pane {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    min-height: 312px;
    background: #F6F4EF;
  }
  .nv4-mega-illo {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    padding: 22px 22px 18px;
    opacity: 0;
    transform: scale(0.94);
    pointer-events: none;
    transition: opacity 0.22s ease, transform 0.32s cubic-bezier(0.22, 1, 0.36, 1);
  }
  .nv4-mega-illo.is-active {
    opacity: 1;
    transform: none;
  }
  .nv4-mega-illo .ttl {
    font-family: var(--zh);
    font-weight: 700;
    font-size: 21px;
    line-height: 1.25;
    letter-spacing: -0.01em;
    color: var(--ink);
  }
  .nv4-mega-illo .cap {
    font-family: var(--zh);
    font-size: 13.5px;
    font-weight: 500;
    line-height: 1.5;
    color: rgba(14, 14, 14, 0.55);
  }
  .nv4-mega-illo .pic {
    flex: 1;
    min-height: 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .nv4-mega-illo .pic picture {
    display: contents;
  }
  .nv4-mega-illo img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    -o-object-fit: contain;
       object-fit: contain;
    transform: scale(1.12);
  }
}
.nv4-cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 20px;
  border-radius: 999px;
  background: var(--brand);
  color: #fff;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  white-space: nowrap;
  transition: background 0.25s ease, transform 0.25s cubic-bezier(0.22, 1, 0.36, 1);
}
.nv4-cta span {
  transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1);
}
.nv4-cta:hover {
  background: #d52f1a;
  transform: translateY(-1px);
}
.nv4-cta:hover span {
  transform: translateX(3px);
}
.nv4-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  width: 46px;
  height: 46px;
  margin-left: auto;
  padding: 8px;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(14, 14, 14, 0.08);
  border-radius: 999px;
  box-shadow: 0 6px 24px rgba(14, 14, 14, 0.07);
  cursor: pointer;
}
.nv4-burger span {
  display: block;
  width: 22px;
  height: 2.5px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.nv4.is-open .nv4-burger span:nth-child(1) {
  transform: translateY(4.25px) rotate(45deg);
}
.nv4.is-open .nv4-burger span:nth-child(2) {
  transform: translateY(-4.25px) rotate(-45deg);
}
@media (max-width: 1023px) {
  .nv4-burger {
    display: flex;
  }
  .nv4-panel {
    position: absolute;
    top: calc(100% + 4px);
    left: 14px;
    right: 14px;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    margin: 0;
    padding: 12px 18px 18px;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(14, 14, 14, 0.08);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(14, 14, 14, 0.14);
    opacity: 0;
    transform: translateY(-8px);
    visibility: hidden;
    transition: opacity 0.28s ease, transform 0.32s cubic-bezier(0.22, 1, 0.36, 1), visibility 0s linear 0.32s;
  }
  .nv4.is-open .nv4-panel {
    opacity: 1;
    transform: none;
    visibility: visible;
    transition-delay: 0s;
  }
  .nv4-links {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }
  .nv4-links > a {
    padding: 11px 0;
    font-size: 16px;
    border-radius: 0;
    border-bottom: 1px solid rgba(14, 14, 14, 0.06);
  }
  .nv4-links > a:hover {
    background: transparent;
  }
  .nv4-mega-pane, .nv4-mega-eyebrow {
    display: none;
  }
  .nv4-mega-main {
    display: block;
  }
  .nv4-group-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 11px 0;
    font-size: 16px;
    border-radius: 0;
    border-bottom: 1px solid rgba(14, 14, 14, 0.06);
  }
  .nv4-group-btn .chev {
    width: 16px;
    height: 16px;
  }
  .nv4-group.is-open .nv4-group-btn .chev {
    transform: rotate(180deg);
  }
  .nv4-drop {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.36s cubic-bezier(0.22, 1, 0.36, 1);
  }
  .nv4-group.is-open .nv4-drop {
    max-height: 420px;
  }
  .nv4-mega-list a {
    display: block;
    padding: 10px 0 10px 18px;
    font-family: var(--sans);
    font-size: 15px;
    font-weight: 600;
    color: rgba(14, 14, 14, 0.62);
    border-bottom: 1px solid rgba(14, 14, 14, 0.05);
  }
  .nv4-mega-list a.is-current {
    color: var(--brand);
  }
  .nv4-cta {
    justify-content: center;
    margin-top: 14px;
    padding: 12px 20px;
    font-size: 15px;
  }
}
.site-footer {
  position: relative;
  z-index: 5;
  width: min(1184px, calc(100% - (clamp(20px, 5vw, 48px) * 2)));
  margin: clamp(72px, 10vw, 156px) auto 0;
  padding: clamp(44px, 4.5vw, 64px) 0 36px;
  border-top: 1px solid var(--grid);
}
.site-footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.site-footer-mail {
  color: var(--ink);
  border-bottom: 3px solid transparent;
  padding-bottom: 4px;
  font-family: var(--sans);
  font-weight: 700;
  font-size: clamp(22px, 2.4vw, 30px);
  transition: color 0.3s ease, border-color 0.3s ease;
}
.site-footer-mail:hover {
  color: var(--brand);
  border-bottom-color: var(--brand);
}
.site-footer-social {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.site-footer-social a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--brand);
  font-family: var(--zh);
  font-size: 14px;
  font-weight: 600;
  transition: opacity 0.25s ease;
}
.site-footer-social a:hover {
  opacity: 0.55;
}
.site-footer-social a .ar {
  font-family: var(--display);
  font-weight: 700;
}
.site-footer-mark-clip {
  overflow: hidden;
  display: block;
  line-height: 0;
}
.site-footer-mark {
  width: 100%;
  display: block;
  transform: translateY(105%);
  transition: transform 1.05s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: 0.12s;
  will-change: transform;
}
.site-footer.in .site-footer-mark {
  transform: translateY(0);
}
.site-footer-top, .site-footer-bottom {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.site-footer.in .site-footer-top {
  opacity: 1;
  transform: none;
}
.site-footer.in .site-footer-bottom {
  opacity: 1;
  transform: none;
  transition-delay: 0.36s;
}
@media (prefers-reduced-motion: reduce) {
  .site-footer-mark {
    transform: none;
    transition: none;
  }
  .site-footer-top, .site-footer-bottom {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
.site-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 6px;
  color: rgba(14, 14, 14, 0.5);
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
}
.scallop {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 40px;
  color: var(--brand);
  background: transparent;
  border: 0;
  font-family: var(--display);
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.scallop.sm {
  padding: 12px 32px;
  font-size: 14px;
}
.scallop.lg {
  padding: 18px 44px;
  font-size: 18px;
}
.scallop-wrap {
  position: absolute;
  inset: -4px;
  z-index: 0;
  pointer-events: none;
}
.scallop-wrap svg {
  width: 100%;
  height: 100%;
  display: block;
}
.scallop-wrap path {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linejoin: round;
  transition: fill 0.3s ease;
}
.scallop > span:not(.scallop-wrap) {
  position: relative;
  z-index: 2;
}
.scallop:hover {
  transform: scale(1.05);
}
.scallop:hover .scallop-wrap path {
  fill: var(--brand);
}
.scallop:hover > span:not(.scallop-wrap) {
  color: #fff;
}
.scallop.on-red {
  color: #fff;
}
.scallop.on-red .scallop-wrap path {
  stroke: #fff;
}
.scallop.on-red:hover .scallop-wrap path {
  fill: #fff;
}
.scallop.on-red:hover > span:not(.scallop-wrap) {
  color: var(--brand);
}
img, image-slot, .cs-frame, .pr-shot, .pr-hero-illo, .pr-reel-stage, .sc-case .ph, .ab-qr .slot, .wl-cover, .v3-work-cover, .v3-reel-item, .v3-tool-card, .cs-frame > img, .wl-cover img, .v3-work-cover img {
  border-radius: 0 !important;
}
@media (max-width: 760px) {
  .nv4-bar {
    min-height: 58px;
    padding: 0 18px;
  }
  .nv4-brand img {
    height: 30px;
  }
  .site-footer {
    width: calc(100% - 40px);
  }
  .site-footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}
@layer base {
  html:not(.lenis) {
    scroll-behavior: smooth;
  }
  body {
    margin: 0;
    background: var(--bg);
    color: var(--ink);
    font-family: var(--zh);
    font-size: var(--fs-body);
  }
}
@property --tw-rotate-x {
  syntax: "*";
  inherits: false;
}
@property --tw-rotate-y {
  syntax: "*";
  inherits: false;
}
@property --tw-rotate-z {
  syntax: "*";
  inherits: false;
}
@property --tw-skew-x {
  syntax: "*";
  inherits: false;
}
@property --tw-skew-y {
  syntax: "*";
  inherits: false;
}
@property --tw-border-style {
  syntax: "*";
  inherits: false;
  initial-value: solid;
}
@property --tw-blur {
  syntax: "*";
  inherits: false;
}
@property --tw-brightness {
  syntax: "*";
  inherits: false;
}
@property --tw-contrast {
  syntax: "*";
  inherits: false;
}
@property --tw-grayscale {
  syntax: "*";
  inherits: false;
}
@property --tw-hue-rotate {
  syntax: "*";
  inherits: false;
}
@property --tw-invert {
  syntax: "*";
  inherits: false;
}
@property --tw-opacity {
  syntax: "*";
  inherits: false;
}
@property --tw-saturate {
  syntax: "*";
  inherits: false;
}
@property --tw-sepia {
  syntax: "*";
  inherits: false;
}
@property --tw-drop-shadow {
  syntax: "*";
  inherits: false;
}
@property --tw-drop-shadow-color {
  syntax: "*";
  inherits: false;
}
@property --tw-drop-shadow-alpha {
  syntax: "<percentage>";
  inherits: false;
  initial-value: 100%;
}
@property --tw-drop-shadow-size {
  syntax: "*";
  inherits: false;
}
@layer properties {
  @supports ((-webkit-hyphens: none) and (not (margin-trim: inline))) or ((-moz-orient: inline) and (not (color:rgb(from red r g b)))) {
    *, ::before, ::after, ::backdrop {
      --tw-rotate-x: initial;
      --tw-rotate-y: initial;
      --tw-rotate-z: initial;
      --tw-skew-x: initial;
      --tw-skew-y: initial;
      --tw-border-style: solid;
      --tw-blur: initial;
      --tw-brightness: initial;
      --tw-contrast: initial;
      --tw-grayscale: initial;
      --tw-hue-rotate: initial;
      --tw-invert: initial;
      --tw-opacity: initial;
      --tw-saturate: initial;
      --tw-sepia: initial;
      --tw-drop-shadow: initial;
      --tw-drop-shadow-color: initial;
      --tw-drop-shadow-alpha: 100%;
      --tw-drop-shadow-size: initial;
    }
  }
}
