html, body, div, span, h1, h2, h3, h4, h5, h6, p,
blockquote, pre, a, abbr, address, code, em, img, ins,
small, strong, sub, sup, dl, dt, dd, ol, ul, li,
fieldset, form, label, legend, table, caption,
tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, menu, nav, output, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}

article, aside, details, figcaption, figure,
footer, header, menu, nav, section {
  display: block;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

li {
  list-style-type: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  appearance: none;
}

html {
  font-family: "Inter", sans-serif;
  font-size: 62.5%;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: 7rem;
  background-color: #ffffff;
  border-bottom: 1px solid #dedede;
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 4rem;
}
@media (max-width: 960px) {
  .header-inner {
    padding: 0 2.4rem;
  }
}

.header-logo a {
  display: block;
}
.header-logo img {
  height: 3.2rem;
  width: auto;
}

.g-nav {
  display: flex;
  align-items: center;
  gap: 3.2rem;
}
@media (max-width: 960px) {
  .g-nav {
    display: none;
  }
}

.g-nav-list {
  display: flex;
  align-items: center;
  gap: 3.2rem;
  list-style: none;
}

.g-nav-item a {
  font-size: 1.4rem;
  font-weight: 500;
  color: #1a1a1a;
  transition: color 0.2s ease;
}
.g-nav-item a:hover {
  color: #1a1a1a;
}

@media (max-width: 960px) {
  .header-cta {
    display: none;
  }
}

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 0.6rem;
  width: 3.2rem;
  height: 3.2rem;
}
.burger span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #1a1a1a;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
@media (max-width: 960px) {
  .burger {
    display: flex;
  }
}
.burger.is-open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.burger.is-open span:nth-child(2) {
  opacity: 0;
}
.burger.is-open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  inset: 7rem 0 0;
  z-index: 99;
  background-color: #ffffff;
  padding: 4rem 2.4rem;
  transform: translateX(100%);
  transition: transform 0.36s cubic-bezier(0.16, 1, 0.3, 1);
}
.mobile-menu.is-open {
  transform: translateX(0);
}
@media (min-width: 961px) {
  .mobile-menu {
    display: none;
  }
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 3.2rem;
}
.mobile-nav li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.6rem 0;
  font-size: 1.8rem;
  font-weight: 700;
  border-bottom: 1px solid #dedede;
}

.mobile-cta {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.footer {
  background-color: #1a1a1a;
  color: #ffffff;
  padding: 6rem 0 3rem;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 4rem;
  margin-bottom: 4rem;
}
@media (max-width: 960px) {
  .footer-inner {
    flex-direction: column;
    gap: 3.2rem;
  }
}

.footer-logo {
  font-family: "Inter", sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.footer-nav {
  display: flex;
  gap: 4rem;
  flex-wrap: wrap;
}
@media (max-width: 960px) {
  .footer-nav {
    gap: 2.4rem;
  }
}

.footer-nav-item a {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.2s ease;
}
.footer-nav-item a:hover {
  color: #ffffff;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2.4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.footer-bottom small {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.4);
}
@media (max-width: 960px) {
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.2rem;
  }
}

.footer-bottom-links {
  display: flex;
  gap: 2.4rem;
}
.footer-bottom-links a {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.4);
  transition: color 0.2s ease;
}
.footer-bottom-links a:hover {
  color: rgba(255, 255, 255, 0.8);
}

.c-btn {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 1.4rem 3.2rem;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  border-radius: 0.4rem;
  transition: background-color 0.2s ease, color 0.2s ease;
  cursor: pointer;
}

.c-btn--primary {
  background-color: #1a1a1a;
  color: #ffffff;
}
.c-btn--primary:hover {
  background-color: #000000;
}

.c-btn--outline {
  background-color: transparent;
  color: #1a1a1a;
  border: 2px solid #1a1a1a;
}
.c-btn--outline:hover {
  background-color: #1a1a1a;
  color: #ffffff;
}

.c-btn--dark {
  background-color: #1a1a1a;
  color: #ffffff;
}
.c-btn--dark:hover {
  background-color: #2a2a2a;
}

.c-frame-btn {
  position: relative;
  min-width: var(--c-frame-btn-min-width, 162px);
  min-height: var(--c-frame-btn-min-height, 50px);
  padding: var(--c-frame-btn-padding, 13px 28px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #FF6200;
  overflow: hidden;
  background: transparent;
  color: #ffffff;
  font-size: var(--c-frame-btn-font-size, 13px);
  font-weight: 800;
  line-height: 1.2;
}

.c-frame-btn::before {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: 0;
  background: linear-gradient(135deg, #FF6200 0%, #FF9500 100%);
  border-radius: var(--c-frame-btn-radius, 26px);
  transition: border-radius 0.36s cubic-bezier(0.45, 0, 0.2, 1);
  will-change: border-radius;
}

.c-frame-btn span {
  position: relative;
  z-index: 1;
}

.c-frame-btn:hover::before,
.c-frame-btn:focus-visible::before {
  border-radius: 0;
}

.c-frame-btn:focus-visible {
  outline: 2px solid #FF6200;
  outline-offset: 3px;
}

.c-heading {
  margin-bottom: 6rem;
}
@media (max-width: 960px) {
  .c-heading {
    margin-bottom: 4rem;
  }
}

.c-heading-label {
  display: block;
  font-family: "Inter", sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #1a1a1a;
  margin-bottom: 1.2rem;
}

.c-heading-title {
  font-size: clamp(2.4rem, 4vw, 4rem);
  font-weight: 900;
  line-height: 1.25;
  letter-spacing: 0.04em;
  color: #1a1a1a;
}

.c-heading-desc {
  margin-top: 2rem;
  font-size: 1.5rem;
  color: #666666;
  max-width: 56rem;
  line-height: 1.9;
}

.c-card {
  background-color: #ffffff;
  border: 1px solid #dedede;
  border-radius: 0.8rem;
  overflow: hidden;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.c-card:hover {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

.c-card-thumb {
  aspect-ratio: 16/9;
  overflow: hidden;
  background-color: #f0f0f0;
}
.c-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.c-card:hover .c-card-thumb img {
  transform: scale(1.04);
}

.c-card-body {
  padding: 2.4rem;
}

.c-card-label {
  display: inline-block;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #1a1a1a;
  margin-bottom: 1rem;
}

.c-card-title {
  font-size: 1.7rem;
  font-weight: 700;
  line-height: 1.5;
  color: #1a1a1a;
  margin-bottom: 1.2rem;
}

.c-card-text {
  font-size: 1.4rem;
  color: #666666;
  line-height: 1.7;
}

.c-breadcrumb {
  padding: 2rem 0;
}

.c-breadcrumb-list {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.c-breadcrumb-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 1.2rem;
  color: #666666;
}
.c-breadcrumb-item:not(:last-child)::after {
  content: "/";
  color: #dedede;
}

.c-breadcrumb-link {
  color: #666666;
  transition: color 0.2s ease;
}
.c-breadcrumb-link:hover {
  color: #1a1a1a;
}

.company-table {
  width: 100%;
  border-collapse: collapse;
}
.company-table th, .company-table td {
  padding: 1.8rem 2.4rem;
  border-bottom: 1px solid #dedede;
  font-size: 1.5rem;
  line-height: 1.7;
  vertical-align: top;
  text-align: left;
}
.company-table th {
  width: 16rem;
  font-weight: 700;
  color: #666666;
  white-space: nowrap;
}
@media (max-width: 960px) {
  .company-table th {
    width: auto;
    display: block;
    padding-bottom: 0.4rem;
    border-bottom: none;
  }
}
@media (max-width: 960px) {
  .company-table td {
    display: block;
    padding-top: 0.4rem;
  }
}

.js-reveal {
  opacity: 0;
  transform: translateY(1.6rem);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0s);
}
.js-reveal.is-revealed {
  opacity: 1;
  transform: translateY(0);
}

.js-section-reveal {
  opacity: 0;
  transform: translate3d(0, 2rem, 0);
  transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--section-reveal-delay, 0s);
  will-change: opacity, transform;
}
.js-section-reveal.is-revealed {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  will-change: auto;
}

@media (prefers-reduced-motion: reduce) {
  .js-reveal,
  .js-section-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
