@charset "UTF-8";
/* ===== Sections ===== */
.section {
  padding: 64px 0;
}

.section-hero {
  position: relative;
  min-height: 100vh;
  padding: 96px 0 64px;
  overflow: hidden;
}

.section-hero-new {
  position: relative;
  min-height: 100vh;
  padding: 96px 0 64px;
  overflow: hidden;
  background: #f3f3ff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media (max-width: 768px) {
  .section-hero-new {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
  }
}

.section-muted {
  background: color-mix(in oklch, var(--muted), transparent 70%);
  position: relative;
}

.section-muted#news {
  background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 50%, #2563eb 100%);
}

.section-muted#news .section-title {
  color: white;
}

.section-muted#news .muted {
  color: white;
}

@-webkit-keyframes rotateBackground {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes rotateBackground {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

/* Hero */
/* Slick Slideshow Background */
.hero-slideshow {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  /* Slickのドット・矢印を非表示 */
}

.hero-slideshow .slide-item {
  position: relative;
  width: 100%;
  height: 100vh;
}

.hero-slideshow .slide-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  opacity: 1;
}

.hero-slideshow .slide-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 119, 255, 0.7) 0%, rgba(0, 208, 255, 0.6) 100%);
  pointer-events: none;
}

.hero-slideshow .slick-dots,
.hero-slideshow .slick-arrow {
  display: none !important;
}

.hero-inner {
  position: relative;
  z-index: 2;
  min-height: calc(100vh - 120px);
  display: -ms-grid;
  display: grid;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.hero-copy {
  max-width: 48rem;
  display: -ms-grid;
  display: grid;
  gap: 24px;
}

/* Hero SVG Heading */
.hero-svg-heading {
  margin: 0;
  padding: 0;
}

.hero-svg-main {
  width: 100%;
  max-width: 100%;
  height: auto;
  overflow: visible;
}

.hero-main-text {
  font-family: 'Shadows Into Light', cursive;
  font-size: 120px;
  font-weight: bold;
}

.hero-main-text.line1 {
  stroke: #fff;
  stroke-width: 10;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 2000;
  stroke-dashoffset: 2000;
  -webkit-animation: drawStroke 4.5s ease-out 0s forwards;
          animation: drawStroke 4.5s ease-out 0s forwards;
}

.hero-main-text.line2 {
  font-size: 72px;
  fill: #fff;
  opacity: 0;
  -webkit-animation: fadeInText 1.5s ease-out 3s forwards;
          animation: fadeInText 1.5s ease-out 3s forwards;
}

@-webkit-keyframes drawStroke {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes drawStroke {
  to {
    stroke-dashoffset: 0;
  }
}

@-webkit-keyframes fadeInText {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes fadeInText {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .hero-main-text {
    font-size: 64px;
  }
  .hero-main-text.line2 {
    font-size: 42px;
  }
}

/* Message Section */
.message-section {
  padding: 80px 0;
}

.message-content-centered {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  display: -ms-grid;
  display: grid;
  gap: 32px;
}

.message-lead {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: bold;
  margin: 0;
  color: #000;
  line-height: 1.5;
}

.message-paragraphs {
  display: -ms-grid;
  display: grid;
  gap: 16px;
}

.message-paragraphs p {
  margin: 0;
  line-height: 1.8;
  color: #000;
  font-weight: bold;
}

.message-question {
  font-weight: bold;
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
  margin-top: 8px !important;
}

.accent {
  color: var(--accent);
  font-weight: 700;
}

/* Infinite Slide */
.infinite-slide-section {
  padding: 60px 0;
  overflow: hidden;
  background: var(--background);
}

.infinite-slide-wrapper {
  overflow: hidden;
}

.infinite-slide-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
  -webkit-animation: infiniteSlide 30s linear infinite;
          animation: infiniteSlide 30s linear infinite;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.slide-image {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 400px;
  height: 280px;
  border-radius: 16px;
  overflow: hidden;
}

@media (max-width: 768px) {
  .slide-image {
    width: 45vw;
    height: 200px;
  }
}

.slide-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

@-webkit-keyframes infiniteSlide {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

@keyframes infiniteSlide {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

/* ===== Message Section ===== */
.message-section {
  padding: 120px 0;
  background: #f8f9fa;
  position: relative;
  overflow: hidden;
}

@media (max-width: 768px) {
  .message-section {
    padding: 80px 0;
  }
}

.message-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 3rem;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 2fr;
      grid-template-columns: 1fr 2fr;
  gap: 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}

@media (max-width: 1024px) {
  .message-container {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    gap: 50px;
    padding: 0 2rem;
  }
}

@media (max-width: 768px) {
  .message-container {
    padding: 0 1rem;
  }
}

.message-image {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-width: 1024px) {
  .message-image {
    max-width: 500px;
    margin: 0 auto;
  }
}

/* iPhone Frame Styles */
.phone-frame {
  position: relative;
  width: 100%;
  max-width: 280px;
  background: #1a1a1a;
  border-radius: 36px;
  padding: 4px;
  -webkit-box-shadow: 0 0 0 3px #2c2c2c, 0 0 0 6px #3a3a3a, 0 20px 60px rgba(0, 0, 0, 0.4), inset 0 0 3px rgba(255, 255, 255, 0.1);
          box-shadow: 0 0 0 3px #2c2c2c, 0 0 0 6px #3a3a3a, 0 20px 60px rgba(0, 0, 0, 0.4), inset 0 0 3px rgba(255, 255, 255, 0.1);
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
  will-change: transform;
}

.phone-frame::before {
  content: '';
  position: absolute;
  top: 8px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 120px;
  height: 4px;
  background: #2c2c2c;
  border-radius: 2px;
  z-index: 2;
}

@media (max-width: 768px) {
  .phone-frame {
    max-width: 250px;
    border-radius: 32px;
    padding: 4px;
  }
}

.phone-notch {
  position: absolute;
  top: 14px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 140px;
  height: 30px;
  background: #1a1a1a;
  border-radius: 0 0 20px 20px;
  z-index: 3;
}

.phone-notch::before {
  content: '';
  position: absolute;
  top: 8px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 60px;
  height: 6px;
  background: #333;
  border-radius: 3px;
}

.phone-notch::after {
  content: '';
  position: absolute;
  top: 9px;
  right: 20px;
  width: 10px;
  height: 10px;
  background: #1e3a5f;
  border-radius: 50%;
  -webkit-box-shadow: 0 0 8px rgba(30, 58, 95, 0.8);
          box-shadow: 0 0 8px rgba(30, 58, 95, 0.8);
}

@media (max-width: 768px) {
  .phone-notch {
    width: 120px;
    height: 26px;
  }
}

.phone-screen {
  position: relative;
  width: 100%;
  background: #000;
  border-radius: 36px;
  overflow: hidden;
  aspect-ratio: 9 / 19.5;
  z-index: 1;
}

.phone-screen img,
.phone-screen video {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}

@media (max-width: 768px) {
  .phone-screen {
    border-radius: 30px;
  }
}

.phone-bottom-bar {
  position: absolute;
  bottom: 22px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 140px;
  height: 5px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 3px;
  z-index: 3;
}

@media (max-width: 768px) {
  .phone-bottom-bar {
    bottom: 18px;
    width: 120px;
    height: 4px;
  }
}

.message-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 32px;
}

.message-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.02em;
  margin: 0;
  color: #1a1a1a;
}

@media (max-width: 768px) {
  .message-title {
    font-size: 2rem;
  }
}

.message-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
}

.message-text p {
  font-size: 1rem;
  line-height: 1.8;
  margin: 0;
  color: #000;
  font-weight: bold;
}

.message-stats {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
      grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 20px;
  padding-top: 40px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .message-stats {
    gap: 24px;
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
  }
}

.message-stat-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
}

.stat-label {
  font-size: 0.75rem;
  color: #000;
  letter-spacing: 0.05em;
  font-weight: bold;
}

.stat-value {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
}

.stat-value .stat-unit {
  font-size: 0.9rem;
  font-weight: bold;
  margin-left: 4px;
  color: #000;
}

.message-vertical-text {
  position: absolute;
  right: 40px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  text-orientation: mixed;
  font-size: 8rem;
  font-weight: 700;
  font-family: Impact, 'Arial Black', sans-serif;
  color: transparent;
  -webkit-text-stroke: 2px rgba(0, 0, 0, 0.05);
  letter-spacing: 0.1em;
  z-index: 0;
  pointer-events: none;
}

@media (max-width: 1024px) {
  .message-vertical-text {
    display: none;
  }
}

/* ===== News (cards) ===== */
.news-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 900px) {
  .news-grid {
    -ms-grid-columns: (1fr)[3];
        grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }
}

.news-card {
  display: -ms-grid;
  display: grid;
  gap: 12px;
}

.news-thumb {
  aspect-ratio: 16/9;
  border-radius: 12px;
  overflow: hidden;
  background: var(--muted);
}

.news-thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.news-meta {
  color: white;
  font-size: 0.875rem;
  font-weight: bold;
}

.news-title {
  font-size: 1.1rem;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.5;
  color: white;
}

.news-title a {
  color: white;
  text-decoration: none;
}

.news-title a:hover {
  color: rgba(255, 255, 255, 0.8);
}

.section-head {
  text-align: center;
  margin-bottom: 48px;
}

.section-title {
  position: relative;
  font-size: clamp(3rem, 8vw, 5rem);
  font-weight: 800;
  letter-spacing: 0.02em;
  margin: 0 0 16px 0;
}

/* ===== Services (BUSINESS) ===== */
.business-section {
  padding: 80px 0;
}

.business-head {
  margin-bottom: 40px;
}

.business-title {
  font-size: clamp(3rem, 8vw, 5rem);
  font-weight: 800;
  letter-spacing: 0.02em;
  margin: 0;
}

.business-layout {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
  gap: 48px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}

@media (min-width: 1024px) {
  .business-layout {
    -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
    gap: 64px;
  }
}

/* Left Side */
.business-left {
  display: -ms-grid;
  display: grid;
  gap: 32px;
  position: relative;
}

.business-hero {
  position: absolute;
  z-index: -1;
}

.business-hero img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.fluid-shape {
  width: 100%;
  height: 100%;
  min-height: 400px;
  opacity: 0.2;
}

.business-message {
  margin-top: 24px;
}

.business-lead {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: bold;
  line-height: 1.6;
  margin: 0;
  color: #000;
}

.text-accent {
  color: var(--primary);
}

.business-desc {
  margin-top: 16px;
  padding: 20px;
  background: color-mix(in oklch, var(--muted), transparent 50%);
  border-radius: 12px;
}

.business-desc p {
  margin: 0;
  line-height: 1.8;
  color: #000;
  font-weight: bold;
}

/* Right Side */
.business-right {
  display: -ms-grid;
  display: grid;
  gap: 48px;
  padding-top: 20px;
}

.business-item {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: auto auto 1fr;
      grid-template-columns: auto auto 1fr;
  gap: 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
}

.business-item:last-child {
  border-bottom: none;
}

.business-num {
  color: var(--primary);
  font-weight: bold;
  letter-spacing: 0.1em;
  font-size: 1rem;
}

.business-icon {
  width: 64px;
  height: 64px;
  color: var(--primary);
}

.business-icon svg {
  width: 100%;
  height: 100%;
}

.business-content {
  display: -ms-grid;
  display: grid;
  gap: 8px;
}

.business-subtitle {
  font-size: 1rem;
  color: var(--primary);
  font-weight: 500;
  margin: 0 0 24px 0;
  line-height: 1.5;
}

.business-title-item {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: bold;
  margin: 0;
  color: #000;
}

@media (max-width: 768px) {
  .business-item {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    gap: 16px;
    text-align: center;
  }
  .business-icon {
    margin: 0 auto;
  }
}

/* ===== Company ===== */
@media (max-width: 768px) {
  #company.section {
    padding: 0;
  }
}

.company-wrap {
  display: -ms-grid;
  display: grid;
  gap: 48px;
}

@media (max-width: 768px) {
  .company-wrap {
    gap: 0;
    padding: 0;
  }
}

.company-head h2 {
  font-size: clamp(2rem, 6vw, 3.5rem);
  margin: 0;
}

/* Company Message Hero Section */
.company-message-hero {
  background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 50%, #2563eb 100%);
  border-radius: 24px;
  overflow: hidden;
  margin: 0 -3rem;
  padding: 80px 3rem;
}

@media (max-width: 1024px) {
  .company-message-hero {
    margin: 0;
    padding: 60px 2rem;
  }
}

@media (max-width: 768px) {
  .company-message-hero {
    padding: 40px 1rem 0;
    border-radius: 0;
  }
}

.company-message-content {
  max-width: 1400px;
  margin: 0 auto;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
  gap: 60px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (min-width: 1024px) {
  .company-message-content {
    -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
    gap: 80px;
  }
}

.company-message-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 32px;
  color: white;
}

.company-message-left .btn {
  min-width: 200px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.company-message-left .section-title {
  font-size: clamp(3rem, 8vw, 5rem);
  font-weight: 800;
  letter-spacing: 0.02em;
  margin: 0;
  color: white;
  text-align: left;
}

.company-message-left .section-subtitle {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 24px 0;
  font-weight: 500;
}

.company-message-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
  margin-top: 0;
}

.company-message-text p {
  margin: 0;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.95);
  font-size: 1rem;
  font-weight: bold;
}

.company-message-right {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.company-logo-container {
  width: 100%;
  max-width: 800px;
  aspect-ratio: 16 / 9;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media (max-width: 768px) {
  .company-logo-container {
    max-width: 600px;
  }
}

#company-logo-canvas {
  width: 100% !important;
  height: 100% !important;
  display: block;
}

.company-grid-item {
  border-radius: 16px;
  overflow: hidden;
  -webkit-box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
          box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.company-grid-item:hover {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.company-grid-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.company-grid-item-1 {
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
  grid-column: 1 / 2;
  -ms-grid-row: 1;
  -ms-grid-row-span: 1;
  grid-row: 1 / 2;
}

.company-grid-item-2 {
  -ms-grid-column: 2;
  -ms-grid-column-span: 1;
  grid-column: 2 / 3;
  -ms-grid-row: 1;
  -ms-grid-row-span: 1;
  grid-row: 1 / 2;
}

.company-grid-item-3 {
  -ms-grid-column: 1;
  -ms-grid-column-span: 2;
  grid-column: 1 / 3;
  -ms-grid-row: 2;
  -ms-grid-row-span: 1;
  grid-row: 2 / 3;
}

.company-profile {
  margin-top: 8px;
}

.profile-title {
  margin: 0 0 12px;
  font-size: 1rem;
  letter-spacing: 0.08em;
  color: var(--primary);
  text-transform: uppercase;
}

.profile-grid {
  border: none;
  border-radius: 0;
  background: transparent;
}

.profile-grid .row {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 180px 1fr;
      grid-template-columns: 180px 1fr;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  border-bottom: 1px solid var(--border);
}

.profile-grid .row:first-child {
  border-top: 1px solid var(--border);
}

.profile-grid .th {
  background: transparent;
  padding: 16px 20px;
  font-weight: 700;
  color: oklch(0.55 0.18 220);
  border-right: none;
}

.profile-grid .td {
  padding: 16px 20px;
}

@media (max-width: 768px) {
  .profile-grid .row {
    -ms-grid-columns: 120px 1fr;
        grid-template-columns: 120px 1fr;
  }
}

/* Section heading accent bar */
.company-head h2 {
  position: relative;
}

.company-head h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: -16px;
  width: 80px;
  height: 6px;
  background: var(--primary);
  border-radius: 999px;
}

/* Access Section */
.company-access {
  margin-top: 64px;
  padding-top: 48px;
  border-top: 1px solid var(--border);
}

.access-content {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
  gap: 32px;
  margin-top: 24px;
}

@media (min-width: 1024px) {
  .access-content {
    -ms-grid-columns: 1fr 2fr;
        grid-template-columns: 1fr 2fr;
    gap: 48px;
  }
}

.access-info {
  display: -ms-grid;
  display: grid;
  gap: 32px;
}

.access-item {
  display: -ms-grid;
  display: grid;
  gap: 8px;
}

.access-label {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 0;
}

.access-text {
  margin: 0;
  line-height: 1.8;
  color: #000;
  font-weight: bold;
}

.access-map {
  border-radius: 12px;
  overflow: hidden;
  -webkit-box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.access-map iframe {
  display: block;
  width: 100%;
  min-height: 350px;
}

@media (min-width: 1024px) {
  .access-map iframe {
    min-height: 450px;
  }
}

/* ===== Member Section ===== */
.member-section {
  padding: 80px 0;
  background: #f5f5f5;
}

.member-layout {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
  gap: 48px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}

@media (min-width: 1024px) {
  .member-layout {
    -ms-grid-columns: 400px 1fr;
        grid-template-columns: 400px 1fr;
    gap: 80px;
  }
}

.member-left {
  display: -ms-grid;
  display: grid;
  gap: 16px;
}

.member-title {
  font-size: clamp(3rem, 8vw, 5rem);
  font-weight: 800;
  letter-spacing: 0.02em;
  margin: 0;
  color: #000;
}

.member-subtitle {
  font-size: 1rem;
  color: var(--primary);
  margin: 0 0 24px 0;
}

.btn-all-interviews {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background: var(--primary);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -webkit-box-shadow: 0 4px 16px rgba(0, 119, 255, 0.2);
          box-shadow: 0 4px 16px rgba(0, 119, 255, 0.2);
}

.btn-all-interviews:hover {
  background: color-mix(in oklch, var(--primary), black 10%);
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: 0 6px 24px rgba(0, 119, 255, 0.3);
          box-shadow: 0 6px 24px rgba(0, 119, 255, 0.3);
}

.btn-all-interviews svg {
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.btn-all-interviews:hover svg {
  -webkit-transform: translateX(4px);
          transform: translateX(4px);
}

.member-right {
  display: -ms-grid;
  display: grid;
  gap: 32px;
}

.member-carousel-wrapper {
  overflow: hidden;
  position: relative;
}

.member-carousel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
  padding: 8px 0;
}

.member-card {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc(50% - 12px);
          flex: 0 0 calc(50% - 12px);
  display: -ms-grid;
  display: grid;
  gap: 16px;
}

@media (min-width: 768px) {
  .member-card {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(33.333% - 16px);
            flex: 0 0 calc(33.333% - 16px);
  }
}

.member-image {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  -webkit-box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.member-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.member-card:hover .member-image img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.member-badge {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: var(--primary);
  color: white;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: bold;
}

.member-name {
  font-size: 1.125rem;
  font-weight: bold;
  margin: 0;
  color: #000;
  text-align: center;
}

.member-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.member-nav-btn {
  width: 52px;
  height: 52px;
  border-radius: 50px;
  border: 2px solid var(--border);
  background: white;
  color: #000;
  cursor: pointer;
  display: -ms-grid;
  display: grid;
  place-items: center;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
          box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.member-nav-btn:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: white;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: 0 4px 16px rgba(0, 119, 255, 0.2);
          box-shadow: 0 4px 16px rgba(0, 119, 255, 0.2);
}

.member-nav-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
  -webkit-transform: none;
          transform: none;
}

@media (max-width: 767px) {
  .member-card {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 80%;
            flex: 0 0 80%;
  }
}

/* Recruit banner */
.recruit-banner {
  position: relative;
  height: auto;
  border-radius: 24px;
  overflow: hidden;
  display: -ms-grid;
  display: grid;
  place-items: center;
  -webkit-box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
          box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
}

@media (max-width: 768px) {
  .recruit-banner {
    border-radius: 16px;
    min-height: 300px;
  }
}

.recruit-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.recruit-bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.recruit-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(30, 58, 138, 0.92) 0%, rgba(59, 130, 246, 0.88) 50%, rgba(37, 99, 235, 0.9) 100%);
  z-index: 1;
}

.recruit-content {
  position: relative;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
  text-align: center;
  padding: 48px;
}

@media (max-width: 768px) {
  .recruit-content {
    padding: 32px 24px;
    gap: 20px;
  }
}

.recruit-title {
  font-size: clamp(3rem, 8vw, 5rem);
  font-weight: 900;
  color: white;
  margin: 0;
  letter-spacing: 0.05em;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.recruit-sub {
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
  color: rgba(255, 255, 255, 0.95);
  font-weight: 600;
  margin: 0 0 8px;
  letter-spacing: 0.1em;
}

.recruit-actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 16px;
}

@media (max-width: 640px) {
  .recruit-actions {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
    max-width: 320px;
  }
}

/* Buttons */
.btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 8px;
  padding: 18px 40px;
  border-radius: 60px;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
  font-weight: bold;
  white-space: nowrap;
}

@media (max-width: 640px) {
  .btn {
    width: 100%;
    padding: 20px 32px;
  }
}

.btn.primary {
  background: white;
  color: var(--primary);
  border: none;
  -webkit-box-shadow: 0 8px 24px rgba(255, 255, 255, 0.3);
          box-shadow: 0 8px 24px rgba(255, 255, 255, 0.3);
}

.btn.primary:hover {
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: 0 12px 32px rgba(255, 255, 255, 0.4);
          box-shadow: 0 12px 32px rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.95);
}

.btn.outline {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.btn.outline:hover {
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.1);
  -webkit-box-shadow: 0 8px 24px rgba(255, 255, 255, 0.2);
          box-shadow: 0 8px 24px rgba(255, 255, 255, 0.2);
}

/* Pills and sizes */
.pill {
  border-radius: 60px;
}

.lg {
  padding: 18px 40px;
  font-size: 1rem;
}

@media (max-width: 640px) {
  .lg {
    padding: 20px 32px;
  }
}

/* Contact Section */
.contact-section {
  position: relative;
  min-height: 600px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0;
  overflow: hidden;
}

.contact-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.contact-bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.contact-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 119, 255, 0.85) 0%, rgba(0, 208, 255, 0.75) 50%, rgba(0, 176, 255, 0.8) 100%);
}

.contact-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: white;
  max-width: 900px;
  padding: 80px 24px;
}

.contact-title {
  font-size: clamp(2rem, 6vw, 3.5rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  margin: 0 0 24px;
  line-height: 1.2;
}

.contact-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  margin: 0 0 48px;
  opacity: 0.95;
  line-height: 1.8;
}

.btn-contact {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  padding: 20px 48px;
  background: white;
  color: #0077ff;
  text-decoration: none;
  font-size: 1.125rem;
  font-weight: 700;
  border-radius: 50px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
          box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.btn-contact svg {
  width: 24px;
  height: 24px;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.btn-contact:hover {
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
          box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.btn-contact:hover svg {
  -webkit-transform: translateX(4px);
          transform: translateX(4px);
}

@media (max-width: 768px) {
  .contact-section {
    min-height: 500px;
  }
  .btn-contact {
    padding: 16px 32px;
    font-size: 1rem;
  }
}

/* Utilities */
.center {
  text-align: center;
}

.mt {
  margin-top: 2rem;
}

.muted {
  color: #000;
  font-weight: bold;
}

/* ===== New Hero FV Styles ===== */
.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.03) 1px, transparent 1px), linear-gradient(to bottom, rgba(0, 0, 0, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
  z-index: 0;
}

.hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: auto;
  cursor: default;
  z-index: 1;
}

.hero-content-wrapper {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  width: 100%;
  padding: 0 3.5rem;
}

@media (max-width: 768px) {
  .hero-content-wrapper {
    padding: 0 1.5rem;
  }
}

.hero-right-image {
  position: absolute;
  right: 3%;
  bottom: 0;
  z-index: 2;
  max-width: 600px;
  max-height: 80vh;
  width: 45%;
}

.hero-right-image img {
  width: 100%;
  height: 100%;
  max-height: 80vh;
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.2));
          filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.2));
}

@media (max-width: 1024px) {
  .hero-right-image {
    max-width: 500px;
    width: 40%;
  }
}

@media (max-width: 768px) {
  .hero-right-image {
    max-width: 500px;
    width: 65%;
    right: -3%;
  }
}

.hero-title-section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.5rem;
}

.hero-title-main {
  font-family: 'IBM Plex Mono', monospace;
  font-size: clamp(3rem, 8vw, 5.625rem);
  font-weight: bold;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0;
  text-transform: uppercase;
}

@media (max-width: 768px) {
  .hero-title-main {
    font-size: clamp(2.5rem, 10vw, 4rem);
  }
}

.hero-barcode {
  font-family: 'Libre Barcode 128', cursive;
  font-size: 3rem;
  line-height: 1;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  pointer-events: none;
  color: var(--color-black-2);
}

@media (max-width: 768px) {
  .hero-barcode {
    font-size: 2rem;
  }
}

.hero-sns-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.hero-btn {
  display: inline-block;
  border-radius: 100vh;
  background-color: transparent;
  color: #000;
  border: solid 1px #000;
  -webkit-transition: all 0.15s ease-out;
  transition: all 0.15s ease-out;
  text-decoration: none;
  position: relative;
  z-index: 10;
}

.hero-btn:hover {
  background-color: #000;
  color: white;
}

.hero-btn-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.5em;
  padding: 0.25em 1.2em 0.3em;
  font-size: 0.9375rem;
  font-family: 'IBM Plex Mono', monospace;
}

.hero-btn-arrow {
  width: 0.8em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 0.16em;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.hero-dialog-boxes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.hero-dialog-box {
  position: absolute;
  width: 280px;
  background: white;
  border-radius: 0.1875rem;
  overflow: hidden;
  -webkit-box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  pointer-events: all;
}

.hero-dialog-box:nth-child(1) {
  top: 15%;
  right: 10%;
}

@media (max-width: 1024px) {
  .hero-dialog-box:nth-child(1) {
    top: 10%;
    right: 5%;
  }
}

@media (max-width: 768px) {
  .hero-dialog-box:nth-child(1) {
    display: none;
  }
}

.hero-dialog-box:nth-child(2) {
  bottom: 20%;
  right: 25%;
}

@media (max-width: 1024px) {
  .hero-dialog-box:nth-child(2) {
    bottom: 15%;
    right: 15%;
  }
}

@media (max-width: 768px) {
  .hero-dialog-box:nth-child(2) {
    width: 220px;
    bottom: 10%;
    right: 10%;
  }
}

.hero-dialog-box:nth-child(3) {
  bottom: 35%;
  left: 60%;
}

@media (max-width: 1024px) {
  .hero-dialog-box:nth-child(3) {
    display: none;
  }
}

@media (max-width: 768px) {
  .hero-dialog-box {
    width: 200px;
  }
}

.hero-dialog-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0.75rem 1rem;
  background: rgba(0, 0, 0, 0.02);
  border-bottom: solid 1px rgba(0, 0, 0, 0.05);
}

.hero-dialog-title {
  font-size: 0.875rem;
  font-family: 'IBM Plex Mono', monospace;
  font-weight: bold;
}

.hero-dialog-close {
  width: 1.5rem;
  height: 1.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: transparent;
  border: none;
  cursor: pointer;
  font-size: 1.25rem;
  line-height: 1;
  color: rgba(0, 0, 0, 0.5);
  -webkit-transition: color 0.15s ease-out;
  transition: color 0.15s ease-out;
}

.hero-dialog-close:hover {
  color: rgba(0, 0, 0, 0.8);
}

.hero-dialog-image {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.hero-dialog-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

/* ===== New Simple Hero Section ===== */
.section-hero-simple {
  position: relative;
  min-height: 100vh;
  padding: 0;
  background-image: url("../images/fv/bg01.jpeg");
  background-size: cover;
  background-position: left;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  overflow: hidden;
}

@media (max-width: 768px) {
  .section-hero-simple {
    background-position: bottom;
  }
}

.section-hero-simple::before, .section-hero-simple::after {
  content: '';
  position: absolute;
  z-index: 1;
  opacity: 0;
}

.section-hero-simple::before {
  top: -20%;
  right: -10%;
  width: 600px;
  height: 800px;
  background: linear-gradient(135deg, rgba(45, 212, 191, 0.3) 0%, rgba(20, 184, 166, 0.25) 50%, rgba(13, 148, 136, 0.2) 100%);
  -webkit-transform: rotate(25deg);
          transform: rotate(25deg);
  border-radius: 60px;
}

@media (max-width: 1024px) {
  .section-hero-simple::before {
    width: 400px;
    height: 600px;
    right: -15%;
  }
}

@media (max-width: 768px) {
  .section-hero-simple::before {
    width: 300px;
    height: 500px;
    right: -20%;
  }
}

.section-hero-simple::after {
  bottom: -15%;
  left: -8%;
  width: 500px;
  height: 700px;
  background: linear-gradient(135deg, rgba(45, 212, 191, 0.25) 0%, rgba(20, 184, 166, 0.2) 50%, rgba(13, 148, 136, 0.15) 100%);
  -webkit-transform: rotate(25deg);
          transform: rotate(25deg);
  border-radius: 50px;
}

@media (max-width: 1024px) {
  .section-hero-simple::after {
    width: 350px;
    height: 500px;
    left: -12%;
  }
}

@media (max-width: 768px) {
  .section-hero-simple::after {
    width: 250px;
    height: 400px;
    left: -15%;
  }
}

@media (max-width: 768px) {
  .section-hero-simple {
    min-height: 90vh;
    padding: 100px 0 60px;
    overflow: hidden;
  }
}

.hero-simple-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1.2fr 1fr;
      grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-width: 968px) {
  .hero-simple-content {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
}

.hero-simple-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
}

@media (max-width: 968px) {
  .hero-simple-left {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    text-align: left;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}

.hero-simple-lead {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  color: #1a1a1a;
  font-weight: 500;
  margin: 0;
  letter-spacing: 0.05em;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .hero-simple-lead {
    font-size: 1.125rem;
  }
}

.hero-simple-title {
  font-size: clamp(4rem, 8vw, 7rem);
  font-weight: 900;
  line-height: 1.05;
  color: #000000;
  letter-spacing: -0.02em;
  margin: 0;
  text-shadow: none;
}

@media (max-width: 768px) {
  .hero-simple-title {
    font-size: 3rem;
  }
}

.hero-simple-subtitle {
  font-size: clamp(1.375rem, 2.5vw, 2rem);
  color: #1a1a1a;
  font-weight: 600;
  margin: 0;
  letter-spacing: 0.05em;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .hero-simple-subtitle {
    font-size: 1.25rem;
  }
}

.hero-simple-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media (max-width: 968px) {
  .hero-simple-buttons {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

@media (max-width: 768px) {
  .hero-simple-buttons {
    display: none !important;
  }
}

.hero-btn-simple {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  padding: 16px 32px;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 50px;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.hero-btn-simple svg {
  width: 12px;
  height: 9px;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.hero-btn-simple:hover svg {
  -webkit-transform: translateX(4px);
          transform: translateX(4px);
}

.hero-btn-simple.primary {
  background: white;
  color: #000;
  border: 2px solid #000;
}

.hero-btn-simple.primary:hover {
  background: #000;
  color: #fff;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
          box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.hero-btn-simple.secondary {
  background: #fff;
  color: #000;
  border: 2px solid #000;
}

.hero-btn-simple.secondary:hover {
  background: #000;
  color: #fff;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
          box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

@media (max-width: 480px) {
  .hero-btn-simple {
    width: 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 14px 28px;
  }
}

.hero-simple-right {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: -40px;
}

.hero-simple-right img {
  width: 100%;
  max-width: 500px;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-filter: drop-shadow(0 10px 40px rgba(0, 0, 0, 0.3));
          filter: drop-shadow(0 10px 40px rgba(0, 0, 0, 0.3));
  -webkit-transform: scale(1.4);
          transform: scale(1.4);
}

@media (max-width: 968px) {
  .hero-simple-right img {
    max-width: 400px;
  }
}

@media (max-width: 480px) {
  .hero-simple-right img {
    max-width: 300px;
  }
}

/* ===== About Section Canvas ===== */
.message-section {
  position: relative;
}

.about-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2000;
  pointer-events: none;
}

.message-container {
  position: relative;
  z-index: 1000;
}
/*# sourceMappingURL=top.css.map */