/* ============================================
   조셉 DY Cho — Landing Page
   머스타드 메인 컬러 + 배경 비디오
   ============================================ */

/* RESET */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* 머스타드 계열 */
  --bg-deep: #E1AD01;
  --bg-deep-dark: #C99801;
  --bg-light: #FFF3D6;
  --bg-card: #D4A017;
  --bg-card-hover: #BF9015;
  --accent: #0B1426;
  --accent-glow: rgba(11, 20, 38, 0.3);
  --blue: #1E3A5F;
  --white: #FFFFFF;
  --black: #0B1426;
  --text-dark: #0B1426;
  --text-body: #1A1A1A;
  --text-muted: #3D3D3D;
  --text-on-dark: #FFFFFF;
  --border: rgba(0, 0, 0, 0.12);
  --border-hover: rgba(0, 0, 0, 0.25);
  --radius: 12px;
  --radius-lg: 16px;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Noto Sans KR', sans-serif;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font);
  color: var(--text-body);
  background: var(--bg-light);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* ============================================
   NAV — 머스타드 배경
   ============================================ */

nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 72px;
  background: rgba(225, 173, 1, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  z-index: 100;
}

.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1500px;
  padding: 0 3rem;
}

.nav-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--black);
  text-decoration: none;
  letter-spacing: -0.02em;
}

.nav-brand {
  font-size: 1.2rem;
  font-weight: 800;
}

.nav-author {
  font-size: 0.75rem;
  font-weight: 400;
  opacity: 0.7;
  vertical-align: middle;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  font-size: 0.85rem;
  font-weight: 600;
  color: #5C3D00;
  text-decoration: none;
  padding: 6px 14px;
  border: 1.5px solid #5C3D00;
  border-radius: 6px;
  transition: background 0.2s, color 0.2s;
}

.nav-links a:hover {
  background: #5C3D00;
  color: var(--white);
}

.nav-cta {
  font-size: 0.85rem;
  font-weight: 600;
  color: #5C3D00;
  text-decoration: none;
  padding: 6px 14px;
  border: 1.5px solid #5C3D00;
  border-radius: 6px;
  transition: background 0.2s, color 0.2s;
  background: transparent;
  box-shadow: none;
}

.nav-cta:hover {
  background: #5C3D00;
  color: var(--white);
  transform: none;
  box-shadow: none;
  opacity: 1 !important;
}

/* ============================================
   HERO — 배경 비디오 + 머스타드 오버레이
   ============================================ */

.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 2rem;
  position: relative;
  overflow: hidden;
}

.hero-video,
#hero-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-video {
  object-fit: cover;
}

.hero-bg {
  position: absolute;
  top: -10%;
  left: -10%;
  width: 120%;
  height: 120%;
  background-size: cover;
  background-position: center;
  z-index: 0;
  filter: blur(1.5px) brightness(0.85);
  opacity: 0;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
}

.hero-bg-1 {
  background-image: url('https://images.unsplash.com/photo-1457530378978-8bac673b8062?w=1920&q=80');
  animation: crossfadeA 15s ease-in-out infinite, slowMoveA 20s ease-in-out infinite alternate;
}

.hero-bg-2 {
  background-image: url('https://images.unsplash.com/photo-1500382017468-9049fed747ef?w=1920&q=80');
  animation: crossfadeB 15s ease-in-out infinite, slowMoveB 25s ease-in-out infinite alternate;
}

.hero-bg-3 {
  background-image: url('https://images.unsplash.com/photo-1441974231531-c6227db76b6e?w=1920&q=80');
  animation: crossfadeC 15s ease-in-out infinite, slowMoveC 22s ease-in-out infinite alternate;
}

@keyframes crossfadeA {
  0% { opacity: 1; }
  23% { opacity: 1; }
  33% { opacity: 0; }
  90% { opacity: 0; }
  100% { opacity: 1; }
}

@keyframes crossfadeB {
  0% { opacity: 0; }
  23% { opacity: 0; }
  33% { opacity: 1; }
  56% { opacity: 1; }
  66% { opacity: 0; }
  100% { opacity: 0; }
}

@keyframes crossfadeC {
  0% { opacity: 0; }
  56% { opacity: 0; }
  66% { opacity: 1; }
  90% { opacity: 1; }
  100% { opacity: 0; }
}

@keyframes slowMoveA {
  0% { transform: scale(1) translate(0, 0); }
  100% { transform: scale(1.08) translate(-2%, -1.5%); }
}

@keyframes slowMoveB {
  0% { transform: scale(1.05) translate(-1%, 0); }
  100% { transform: scale(1) translate(1%, -2%); }
}

@keyframes slowMoveC {
  0% { transform: scale(1.1) translate(1%, 1%); }
  100% { transform: scale(1.02) translate(-1%, -1%); }
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(225, 173, 1, 0.55) 0%, rgba(201, 152, 1, 0.65) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  min-height: 60vh;
  padding: 8rem 0 4rem;
}

.hero-lead {
  font-size: 1.3rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.05em;
  line-height: 1.8;
  margin-top: 2rem;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.3);
}

.hero-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
}

.btn-primary {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--black);
  background: var(--white);
  padding: 14px 32px;
  border-radius: 8px;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.btn-ghost {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
  background: transparent;
  padding: 14px 32px;
  border-radius: 8px;
  text-decoration: none;
  border: 2px solid var(--white);
  transition: background 0.2s, color 0.2s;
}

.btn-ghost:hover {
  background: var(--white);
  color: var(--black);
}

/* ============================================
   ABOUT — 머스타드 배경
   ============================================ */

.about {
  padding: 8rem 3rem;
  max-width: 1500px;
  margin: 0 auto;
}

.about-header {
  margin-bottom: 3rem;
}

.about-header h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--black);
  letter-spacing: -0.02em;
}

.about-body p {
  font-size: 1.3rem;
  color: var(--text-body);
  margin-bottom: 1.5rem;
  line-height: 1.8;
  text-align: center;
}

.about-body p:last-child {
  margin-bottom: 0;
}

/* ============================================
   PROJECT — 옅은 머스타드 배경 (body 공통)
   ============================================ */

.project {
  padding: 8rem 3rem;
  max-width: 1500px;
  margin: 0 auto;
}

.project > * {
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.project h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--black);
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.project-header {
  text-align: left;
  margin-bottom: 3rem;
}

.project-header h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--black);
  letter-spacing: -0.02em;
  text-align: left;
  margin-bottom: 2rem;
}

.project-name {
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 900;
  color: var(--black);
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.project-tagline {
  font-size: 1.3rem;
  color: var(--text-body);
  line-height: 1.8;
  max-width: 700px;
  margin: 0 0 2rem;
  text-align: center;
}

.project-architecture {
  font-size: 1.25rem;
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 900px;
  margin: 0;
  text-align: center;
}

/* AGENT GRID — 3x3 카드 */

.agent-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.agent-card {
  background: rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  transition: border-color 0.3s, transform 0.3s;
}

.agent-card:hover {
  border-color: var(--black);
  transform: translateY(-4px);
}

.agent-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.agent-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 0.6rem;
}

.agent-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.project-quote {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-muted);
  border-left: 3px solid var(--black);
  padding-left: 1.5rem;
  margin-top: 2rem;
  max-width: 600px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

/* DART 공시 분석 강조 */
.dart-highlight {
  background: rgba(0, 0, 0, 0.06);
  border: 1.5px solid rgba(0, 0, 0, 0.15);
  border-radius: var(--radius-lg);
  padding: 2rem;
  margin-bottom: 2rem;
}
.dart-highlight h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 0.6rem;
}
.dart-highlight p {
  font-size: 1.05rem;
  color: var(--text-body);
  line-height: 1.8;
}

/* 증권사 대비 차별점 표 */
.compare-table {
  margin: 2rem 0;
  text-align: center;
}
.compare-table h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 1rem;
}
.compare-table table {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  border-collapse: collapse;
  text-align: left;
}
.compare-table th {
  padding: 0.8rem 1rem;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--black);
  border-bottom: 2px solid var(--black);
}
.compare-table td {
  padding: 0.8rem 1rem;
  font-size: 1rem;
  color: var(--text-body);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.compare-table td:first-child {
  font-weight: 600;
  color: var(--black);
}
.compare-table td strong {
  color: #5C3D00;
}
.compare-tagline {
  margin-top: 1rem;
  font-size: 1.1rem;
  font-style: italic;
  color: var(--text-muted);
}

/* 팀 소개 */
.team-section {
  margin-top: 4rem;
  text-align: center;
}
.team-section h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 2rem;
}
.team-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
}
.team-card {
  background: rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  max-width: 340px;
  text-align: center;
}
.team-card strong {
  display: block;
  font-size: 1.15rem;
  color: var(--black);
  margin-bottom: 0.5rem;
}
.team-card p {
  font-size: 1rem;
  color: var(--text-body);
  line-height: 1.6;
}

/* ============================================
   ARCHITECTURE — 시스템 아키텍처 플로우
   ============================================ */

.architecture {
  padding: 8rem 3rem;
  max-width: 1500px;
  margin: 0 auto;
}

.architecture h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--black);
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}

.architecture-sub {
  font-size: 1.2rem;
  color: var(--text-muted);
  margin-bottom: 4rem;
}

.flow {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.flow-step {
  background: #2D2006;
  color: #FFF8E1;
  padding: 2rem 2.5rem;
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 700px;
  text-align: center;
  border: 1px solid rgba(225, 173, 1, 0.3);
}

.flow-label {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #FFE082;
}

.flow-desc {
  font-size: 0.9rem;
  color: rgba(255, 248, 225, 0.7);
  line-height: 1.6;
}

.flow-sources {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  justify-content: center;
  margin-top: 0.8rem;
}

.flow-sources span {
  background: rgba(225, 173, 1, 0.25);
  color: #FFE082;
  padding: 0.4rem 0.8rem;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 600;
}

.flow-agents {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  margin-top: 1rem;
}

.flow-agents span {
  background: rgba(225, 173, 1, 0.2);
  color: #FFF8E1;
  padding: 0.6rem 0.8rem;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 500;
  text-align: center;
}

.flow-step--agents {
  max-width: 700px;
}

.flow-step--final {
  background: #FFD700;
  color: #1A1000;
  border: 6px solid #B8860B;
  box-shadow: 0 4px 20px rgba(225, 173, 1, 0.3);
}

.flow-step--final .flow-label {
  color: #1A1000;
  font-size: 1.4rem;
}

.flow-step--final .flow-desc {
  color: rgba(26, 16, 0, 0.7);
  font-size: 1.05rem;
}

.flow-arrow {
  font-size: 1.5rem;
  color: #2D2006;
  padding: 0.8rem 0;
  opacity: 0.5;
}

/* ============================================
   NOW — 진한 머스타드 배경
   ============================================ */

.now {
  padding: 8rem 3rem;
  max-width: 1500px;
  margin: 0 auto;
}

.now > * {
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.now h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--black);
  margin-bottom: 3rem;
  letter-spacing: -0.02em;
}

.now-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.now-card {
  background: rgba(0, 0, 0, 0.04);
  border: 1.5px solid rgba(0, 0, 0, 0.15);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: border-color 0.3s;
}

.now-card:hover {
  border-color: var(--black);
}

.now-label {
  display: inline-block;
  font-size: 1.14rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 0.5rem;
}

.now-card p {
  font-size: 1.14rem;
  color: var(--text-body);
  line-height: 1.7;
}

/* ============================================
   CONTACT
   ============================================ */

.contact {
  padding: 10rem 3rem;
  max-width: 1500px;
  margin: 0 auto;
}

.contact h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--black);
  margin-bottom: 2rem;
  letter-spacing: -0.02em;
  text-align: left;
}

.contact-center {
  text-align: center;
}

.email-link {
  display: inline-block;
  font-size: clamp(0.84rem, 1.68vw, 1.4rem);
  font-weight: 600;
  color: var(--black);
  text-decoration: none;
  padding-bottom: 4px;
  border-bottom: 2px solid var(--black);
  transition: opacity 0.2s;
}

.email-link:hover {
  opacity: 0.7;
}

.contact-links {
  margin-top: 2.5rem;
  display: flex;
  justify-content: center;
  gap: 2rem;
}

.contact-links a {
  font-size: clamp(0.84rem, 1.68vw, 1.4rem);
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  padding-bottom: 4px;
  border-bottom: 2px solid var(--black);
  transition: color 0.2s;
}

.contact-links a:hover {
  color: var(--black);
}

/* ============================================
   FOOTER
   ============================================ */

footer {
  padding: 2rem 3rem;
  text-align: center;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  background: var(--bg-deep-dark);
}

footer p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ============================================
   MOBILE
   ============================================ */

@media (max-width: 768px) {
  nav {
    padding: 0 1rem;
    height: auto;
    flex-direction: column;
    padding-top: 0.8rem;
    padding-bottom: 0.8rem;
  }

  .nav-inner {
    flex-direction: column;
    gap: 0.6rem;
    padding: 0 1rem;
  }

  .nav-name {
    font-size: 0.9rem;
  }

  .nav-brand {
    font-size: 1rem;
  }

  .nav-author {
    font-size: 0.65rem;
  }

  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
  }

  .nav-links a {
    font-size: 0.75rem;
    padding: 4px 10px;
  }

  .hero {
    padding: 0 1.5rem;
    padding-top: 8rem;
  }

  .hero-btns {
    flex-direction: column;
    gap: 0.8rem;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-headline {
    max-width: 100%;
  }

  .about {
    padding: 5rem 1.5rem;
  }

  .project {
    padding: 5rem 1.5rem;
  }

  .agent-grid {
    grid-template-columns: 1fr;
  }

  .architecture {
    padding: 5rem 1.5rem;
  }

  .flow-agents {
    grid-template-columns: repeat(3, 1fr);
  }

  .flow-sources {
    grid-template-columns: 1fr;
  }

  .now {
    padding: 5rem 1.5rem;
  }

  .now-list {
    grid-template-columns: 1fr;
  }

  .contact {
    padding: 6rem 1.5rem;
  }
}

/* ============================================
   v2 — MUSTARD 7단계 · 슬로건 · 씨앗 서사
   ============================================ */

/* HERO 슬로건 */
.hero-slogan-en {
  font-size: clamp(0.85rem, 1.5vw, 1.1rem);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #FFE082;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.35);
  margin-bottom: 0.5rem;
}

.hero-headline {
  font-size: clamp(3.2rem, 7.5vw, 6rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.18;
  letter-spacing: -0.03em;
  max-width: 1100px;
  text-shadow: 0 3px 16px rgba(0, 0, 0, 0.55), 0 0 60px rgba(0, 0, 0, 0.3);
}

/* HERO 보조 문구 */
.hero-sub {
  font-size: clamp(1.21rem, 2.42vw, 1.65rem);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.7;
  margin-top: 1.5rem;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.3);
}

/* 섹션 오버라인 */
.section-overline {
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: #5C3D00;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.section-overline--light {
  color: #FFE082;
}

/* MUSTARD 7단계 띠 */
.mustard-band {
  padding: 7rem 3rem;
  max-width: 1500px;
  margin: 0 auto;
  text-align: center;
}

.band-title {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--black);
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.band-section-title {
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-top: 3rem;
  margin-bottom: 0.3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.band-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 3rem;
}

.band-track {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.3rem;
  background: transparent;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: var(--radius-lg);
  padding: 1.2rem 0.6rem 1rem;
}

.band-step {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.1rem;
  text-decoration: none;
  padding: 0.4rem 0.2rem;
  border-radius: var(--radius);
  transition: background 0.25s, transform 0.25s;
}

.band-step:hover {
  background: rgba(0, 0, 0, 0.07);
  transform: translateY(-4px);
}

.band-initial {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 900;
  color: #8B6914;
  line-height: 1.1;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
}

.band-word {
  font-size: clamp(0.6rem, 1.2vw, 0.85rem);
  font-weight: 700;
  color: #5C3D00;
  letter-spacing: 0.02em;
}

.band-ko {
  font-size: clamp(0.7rem, 1.3vw, 0.9rem);
  font-weight: 600;
  color: var(--text-body);
}

/* T pivot 강조 */
/* (v2.2) T 사전 강조 제거 — 호버 전에는 7글자 동일하게 보이도록 */

/* 호버 툴팁 */
.band-step::after {
  content: attr(data-tip);
  position: absolute;
  bottom: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  background: #2D2006;
  color: #FFF8E1;
  font-size: 0.78rem;
  font-weight: 500;
  line-height: 1.5;
  padding: 0.5rem 0.9rem;
  border-radius: 8px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s, transform 0.2s;
  z-index: 10;
}

.band-step:hover::after {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.band-growth {
  margin-top: 1.6rem;
  font-size: 1.3rem;
  letter-spacing: 0.05em;
  color: #5C3D00;
  opacity: 0.75;
}

.band-slogan {
  margin-top: 1rem;
  font-size: 1.1rem;
  font-weight: 700;
  color: #5C3D00;
}

/* MUSTARD 7단계 실행내용 */
.mustard-detail {
  margin-top: 2rem;
  text-align: left;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.detail-item {
  font-size: 1.2rem;
  color: var(--text-body);
  line-height: 2.2;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  padding: 0.5rem 0;
}

/* 얇은 문장 섹션 (S · R · D) — 좌측 정렬, 다른 섹션과 동일 폭 */
.thin-section {
  padding: 8rem 3rem;
  max-width: 1500px;
  margin: 0 auto;
  text-align: left;
}

.thin-headline {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--black);
  line-height: 1.35;
  letter-spacing: -0.02em;
  margin-bottom: 1.6rem;
}

.thin-body {
  font-size: 1.3rem;
  color: var(--text-body);
  line-height: 1.9;
  text-align: center;
}

.thin-quote {
  margin-top: 2.5rem;
  text-align: center;
}

/* (v2.3) T pivot 배경 반전 제거 — 7개 섹션 스타일 통일 */

/* D 순환 회수 문장 */
.now-cycle {
  margin-top: 2.5rem;
  font-size: 1.05rem;
  font-weight: 600;
  font-style: italic;
  color: #5C3D00;
  text-align: center;
}

/* 클로징 (섹션 10) */
.closing {
  text-align: center;
  margin-bottom: 3.5rem;
}

.closing-en {
  font-size: clamp(0.9rem, 1.6vw, 1.15rem);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #5C3D00;
  margin-bottom: 0.8rem;
}

.closing-headline {
  font-size: clamp(1.9rem, 4.5vw, 3rem);
  font-weight: 900;
  color: var(--black);
  letter-spacing: -0.02em;
  margin-bottom: 1.2rem;
}

.closing-lead {
  font-size: 1.2rem;
  color: var(--text-body);
  line-height: 1.9;
}

/* 참여 버튼 3종 */
.join-btns {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.btn-join {
  font-size: 0.95rem;
  font-weight: 700;
  color: #5C3D00;
  background: transparent;
  border: 2px solid #5C3D00;
  padding: 14px 30px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, transform 0.2s;
}

.btn-join:hover {
  background: #5C3D00;
  color: var(--white);
  transform: translateY(-2px);
}

.btn-join--primary {
  background: #2D2006;
  border-color: #2D2006;
  color: #FFD700;
}

.btn-join--primary:hover {
  background: #1A1000;
  border-color: #1A1000;
  color: #FFE082;
}

/* v2 모바일 */
@media (max-width: 768px) {
  .mustard-band {
    padding: 4.5rem 1rem;
  }

  .band-track {
    grid-template-columns: repeat(4, 1fr);
    row-gap: 1rem;
  }

  .band-step::after {
    display: none;
  }

  .thin-section {
    padding: 4rem 1.5rem;
  }

  .thin-section--pivot {
    padding: 5rem 1.5rem;
  }

  .join-btns {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-join {
    text-align: center;
  }
}

/* ============================================
   v2.1 — 겨자씨 의미 · 앵커 보정 · 순환 다이어그램
   ============================================ */

/* 앵커 이동 시 고정 NAV(72px)에 안 가리게 보정 */
html {
  scroll-padding-top: 90px;
}

/* 왜 겨자씨인가 블록 */
.mustard-why {
  max-width: 1000px;
  margin: 0 auto 5rem;
  text-align: left;
  padding: 3rem 2.5rem;
  background: rgba(0, 0, 0, 0.05);
  border: 1.5px solid rgba(0, 0, 0, 0.12);
  border-radius: var(--radius-lg);
}

.mustard-why .band-title {
  margin-bottom: 1.5rem;
}

.why-body {
  font-size: 1.15rem;
  color: var(--text-body);
  line-height: 1.9;
  margin-bottom: 1.2rem;
  text-align: center;
}

.why-body:last-child {
  margin-bottom: 0;
}

.why-body--strong {
  font-weight: 700;
  color: #5C3D00;
}

/* 띠 회귀 화살표 */
.band-return {
  display: inline-block;
  margin-left: 0.8rem;
  font-size: 0.9rem;
  font-weight: 700;
  color: #5C3D00;
  opacity: 1;
}

/* 순환 다이어그램 (D 섹션) */
.cycle-diagram {
  display: flex;
  justify-content: center;
  margin: 3.5rem 0 2rem;
}

.cycle-ring {
  position: relative;
  width: 340px;
  height: 340px;
  border: 3px dashed rgba(92, 61, 0, 0.4);
  border-radius: 50%;
}

.cycle-node {
  position: absolute;
  width: 64px;
  height: 64px;
  margin: -32px 0 0 -32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #FFF8E1;
  border: 2px solid #B8860B;
  border-radius: 50%;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}

.cycle-node:hover {
  transform: scale(1.12);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
  z-index: 5;
}

.cycle-node b {
  font-size: 1.25rem;
  font-weight: 900;
  color: #B8860B;
  line-height: 1.1;
}

.cycle-node i {
  font-style: normal;
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--text-body);
}

/* (v2.2) 순환 다이어그램 T 사전 강조 제거 — 7개 노드 동일 */

/* 7개 노드 시계방향 원형 배치 (12시부터) */
.cycle-node-1 { top: 0%;     left: 50%; }
.cycle-node-2 { top: 19.4%;  left: 89.1%; }
.cycle-node-3 { top: 61.1%;  left: 98.7%; }
.cycle-node-4 { top: 95%;    left: 71.7%; }
.cycle-node-5 { top: 95%;    left: 28.3%; }
.cycle-node-6 { top: 61.1%;  left: 1.3%; }
.cycle-node-7 { top: 19.4%;  left: 10.9%; }

.cycle-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
}

.cycle-seed {
  font-size: 2.2rem;
}

.cycle-label {
  font-size: 0.85rem;
  font-weight: 700;
  color: #5C3D00;
  letter-spacing: 0.15em;
}

.cycle-arrow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 21rem;
  line-height: 1;
  color: rgba(92, 61, 0, 0.10);
  pointer-events: none;
  user-select: none;
}

/* v2.1 모바일 */
@media (max-width: 768px) {
  html {
    scroll-padding-top: 140px; /* 모바일 NAV 2줄 높이 보정 */
  }

  .mustard-why {
    padding: 2rem 1.4rem;
    margin-bottom: 3.5rem;
  }

  .band-return {
    display: block;
    margin: 0.6rem 0 0;
  }

  .cycle-ring {
    width: 270px;
    height: 270px;
  }

  .cycle-node {
    width: 54px;
    height: 54px;
    margin: -27px 0 0 -27px;
  }

  .cycle-node b { font-size: 1.05rem; }
  .cycle-node i { font-size: 0.6rem; }

  .cycle-arrow { font-size: 15rem; }
}

/* ============================================
   v2.3 — 단계 배지 (숫자 + 박스, 7개 섹션 공통)
   ============================================ */

.step-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  background: #2D2006;
  color: #FFE082;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  padding: 0.6rem 1.3rem 0.6rem 0.6rem;
  border-radius: 10px;
  margin-bottom: 1.4rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  background: #E1AD01;
  color: #2D2006;
  font-size: 1.1rem;
  font-weight: 900;
  border-radius: 8px;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .step-badge {
    font-size: 0.9rem;
    padding: 0.5rem 1rem 0.5rem 0.5rem;
  }

  .step-num {
    width: 28px;
    height: 28px;
    font-size: 0.95rem;
  }
}
/* ============================================
/* ============================================
   v2.6 — HERO 배경: 투자·AI 이미지 3컷
   5초 디졸브 + 켄번즈(줌인/줌아웃/무빙)
   ============================================ */

.hero-bg {
  filter: brightness(0.85);
}

.hero-bg-1 {
  background-image: url('assets/hero-1.jpg');
  animation: xfadeA 15s ease-in-out infinite, kenburnsZoomIn 15s ease-in-out infinite;
}

.hero-bg-2 {
  background-image: url('assets/hero-2.jpg');
  animation: xfadeB 15s ease-in-out infinite, kenburnsZoomOut 15s ease-in-out infinite;
}

.hero-bg-3 {
  background-image: url('assets/hero-3.jpg');
  animation: xfadeC 15s ease-in-out infinite, kenburnsPan 15s ease-in-out infinite;
}

/* 15초 주기 = 3컷 × 5초. 디졸브 겸침 1.5초 */
@keyframes xfadeA {
  0% { opacity: 1; }
  30% { opacity: 1; }
  40% { opacity: 0; }
  90% { opacity: 0; }
  100% { opacity: 1; }
}

@keyframes xfadeB {
  0% { opacity: 0; }
  30% { opacity: 0; }
  40% { opacity: 1; }
  63% { opacity: 1; }
  73% { opacity: 0; }
  100% { opacity: 0; }
}

@keyframes xfadeC {
  0% { opacity: 0; }
  63% { opacity: 0; }
  73% { opacity: 1; }
  90% { opacity: 1; }
  100% { opacity: 0; }
}

/* 켄번즈 3종 — 각 컷이 보이는 구간 동안 서서히 */
@keyframes kenburnsZoomIn {
  0% { transform: scale(1); }
  40% { transform: scale(1.12) translate(-1.5%, -1%); }
  100% { transform: scale(1); }
}

@keyframes kenburnsZoomOut {
  0%, 30% { transform: scale(1.14) translate(1%, 1%); }
  73% { transform: scale(1); }
  100% { transform: scale(1.14) translate(1%, 1%); }
}

@keyframes kenburnsPan {
  0%, 63% { transform: scale(1.1) translate(2%, 0); }
  100% { transform: scale(1.1) translate(-2%, -1.5%); }
}

/* 오버레이 — 사진 위 브랜드 톤 + 텍스트 가독성 */
.hero-overlay {
  background: linear-gradient(180deg, rgba(225, 173, 1, 0.5) 0%, rgba(184, 134, 11, 0.55) 100%);
}

/* 모션 최소화 선호 사용자 배려 */
@media (prefers-reduced-motion: reduce) {
  .hero-bg {
    animation: none !important;
  }
  .hero-bg-1 { opacity: 1 !important; }
}

/* ============================================
   v2.2 — 히어로 CTA (초기 진입 행동 유도)
   ============================================ */

.hero-cta {
  display: flex;
  gap: 1rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.btn-hero {
  font-size: 1rem;
  font-weight: 700;
  padding: 15px 34px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, transform 0.2s, box-shadow 0.2s;
}

.btn-hero--primary {
  background: #FFD700;
  color: #2D2006;
  border: 2px solid #FFD700;
  box-shadow: 0 4px 20px rgba(255, 215, 0, 0.35);
}

.btn-hero--primary:hover {
  background: #FFE082;
  border-color: #FFE082;
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(255, 215, 0, 0.5);
}

.btn-hero--ghost {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.95);
  border: 2px solid rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(4px);
}

.btn-hero--ghost:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.85);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .hero-cta {
    flex-direction: column;
    width: 100%;
    max-width: 320px;
  }

  .btn-hero {
    text-align: center;
  }
}

/* ============================================
   v2.3 — 레이아웃 리듬 개선
   히어로 높이 · NAV 톤 다운 · 섹션 배지 · 폭·정렬 정리
   ============================================ */

/* 1. 히어로 높이 축소 (100vh → 78vh) */
.hero {
  min-height: 78vh;
}

.hero-content {
  min-height: auto;
  justify-content: center;
  padding: 7.5rem 0 3.5rem;
}

/* 2. NAV 메뉴 박스 선 연하게 */
.nav-links a {
  color: #6B4A00;
  border: 1px solid rgba(92, 61, 0, 0.22);
  background: rgba(255, 255, 255, 0.14);
}

.nav-links a:hover {
  background: rgba(255, 255, 255, 0.5);
  color: #3D2900;
  border-color: rgba(92, 61, 0, 0.4);
}

.nav-cta,
.nav-links a.nav-cta {
  color: #FFF8E1;
  background: rgba(74, 49, 0, 0.82);
  border: 1px solid rgba(74, 49, 0, 0.82);
}

.nav-cta:hover,
.nav-links a.nav-cta:hover {
  background: #4A3100;
  color: #FFE082;
  border-color: #4A3100;
}

/* 3. 섹션 헤더 배지 — NAV 메뉴와 1:1 대응하는 진한 박스 */
.about-header h2,
.project-header > h2,
.mustard-band .band-title,
.now > h2 {
  display: inline-block;
  font-size: clamp(1.3rem, 2.4vw, 1.7rem);
  font-weight: 800;
  background: #2D2006;
  color: #FFE082;
  padding: 0.5rem 1.6rem;
  border-radius: 10px;
  letter-spacing: 0.02em;
  box-shadow: 0 3px 12px rgba(45, 32, 6, 0.25);
}

.now > h2 {
  margin-bottom: 2.5rem;
}

/* 4. 정렬 통일 — 헤더는 중앙, 본문 프로즈는 좌측 */
.about-header,
.project-header {
  text-align: center;
}

.now {
  text-align: center;
}

.now-card {
  text-align: left;
}

.agent-card,
.dart-highlight {
  text-align: left;
}

.mustard-why {
  text-align: center;
}

.mustard-why .why-body {
  text-align: left;
}

.about-body {
  max-width: 760px;
  margin: 0 auto;
}

.about-body p {
  text-align: left;
  font-size: 1.15rem;
}

.project-tagline {
  margin: 0 auto 1.2rem;
  text-align: center;
  font-size: 1.15rem;
}

.project-architecture {
  margin: 0 auto;
  max-width: 820px;
  text-align: left;
  font-size: 1.05rem;
}

.project-name {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
}

/* 5. 콘텐츠 폭 축소 + 본문 크기 균형 */
.about,
.project,
.mustard-band,
.now,
.contact {
  max-width: 1120px;
}

.about,
.project,
.mustard-band,
.now {
  padding: 6rem 2.5rem;
}

.contact {
  padding: 7.5rem 2.5rem;
}

.nav-inner {
  max-width: 1200px;
}

.now-list {
  max-width: 920px;
  margin: 0 auto;
}

.now-label {
  font-size: 1.05rem;
}

.now-card p {
  font-size: 1rem;
}

.detail-item {
  font-size: 1.05rem;
  line-height: 2;
}

.why-body {
  font-size: 1.1rem;
}

@media (max-width: 768px) {
  .hero {
    min-height: 88vh;
  }

  .about,
  .project,
  .mustard-band,
  .now {
    padding: 4rem 1.25rem;
  }

  .contact {
    padding: 5rem 1.25rem;
  }
}

/* ============================================
   v2.4 — 성장철학 본문 중앙 정렬 · 아키텍처 제목
   ============================================ */

.mustard-why .why-body {
  text-align: center;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.flow-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--black);
  text-align: center;
  margin: 4rem 0 1.5rem;
  letter-spacing: -0.01em;
}

/* ============================================
   v2.5 — 아키텍처 플로우 인포그래픽화 (라이트 톤)
   섹션 헤더 배지(다크)와 시각적으로 구분
   ============================================ */

.flow {
  counter-reset: flowstep;
}

.flow-step {
  background: #FFFDF4;
  color: var(--text-body);
  border: 1px solid rgba(92, 61, 0, 0.16);
  box-shadow: 0 2px 12px rgba(92, 61, 0, 0.08);
  padding: 1.5rem 2rem 1.7rem;
  counter-increment: flowstep;
}

.flow-step::before {
  content: "STEP " counter(flowstep);
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  color: #8B6914;
  background: rgba(225, 173, 1, 0.16);
  border: 1px solid rgba(184, 134, 11, 0.28);
  padding: 2px 12px;
  border-radius: 999px;
  margin-bottom: 0.8rem;
}

.flow-icon {
  font-size: 1.15rem;
  margin-right: 0.3rem;
}

.flow-label {
  color: #3D2900;
}

.flow-desc {
  color: var(--text-muted);
}

.flow-sources span {
  background: rgba(225, 173, 1, 0.16);
  color: #5C3D00;
  border: 1px solid rgba(184, 134, 11, 0.22);
  font-weight: 600;
}

.flow-agents span {
  background: rgba(225, 173, 1, 0.12);
  color: #4A3100;
  border: 1px solid rgba(184, 134, 11, 0.18);
}

.flow-arrow {
  font-size: 1rem;
  color: #8B6914;
  padding: 0.6rem 0;
  opacity: 0.55;
}

.flow-step--final {
  background: linear-gradient(135deg, #FFE082, #FFD700);
  color: #1A1000;
  border: 2px solid #B8860B;
  box-shadow: 0 6px 24px rgba(184, 134, 11, 0.3);
}

.flow-step--final::before {
  content: "RESULT";
  background: rgba(45, 32, 6, 0.9);
  color: #FFE082;
  border-color: rgba(45, 32, 6, 0.9);
}

.flow-step--final .flow-label {
  color: #1A1000;
}

/* ============================================
   v2.6 — 아키텍처 불릿 카드 · 모바일 비교표
   ============================================ */

.arch-points {
  list-style: none;
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  text-align: left;
}

.arch-points li {
  background: rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: var(--radius);
  padding: 1rem 1.4rem;
  font-size: 1.05rem;
  color: var(--text-body);
  line-height: 1.7;
}

.arch-points li strong {
  color: #5C3D00;
}

.arch-points li:last-child {
  background: rgba(255, 255, 255, 0.35);
  border: 1.5px solid rgba(92, 61, 0, 0.35);
  font-weight: 500;
}

/* 모바일 비교표 가로 스크롤 */
.compare-table {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.compare-table table {
  min-width: 540px;
}

@media (max-width: 768px) {
  .compare-table th,
  .compare-table td {
    font-size: 0.85rem;
    padding: 0.6rem 0.7rem;
  }

  .arch-points li {
    font-size: 0.95rem;
    padding: 0.85rem 1.1rem;
  }
}

/* ============================================
   v2.7 — 아키텍처 베이지 톤 · 클로징 헤드라인 중앙
   ============================================ */

/* 클로징 헤드라인 — .contact h2의 좌측 정렬 오버라이드 */
.contact .closing-headline {
  text-align: center;
}

/* 아키텍처 스텝 배경 — 아이보리→웜 베이지 (최종 리포트는 기존 골드 유지) */
.flow-step {
  background: #F3EAD3;
  border-color: rgba(92, 61, 0, 0.2);
}

/* ============================================
   v2.8 — 섹션 구분선 · 팀 3열 · 아키텍처 톤 조정
   ============================================ */

/* 섹션 사이 얇은 구분선 */
.project,
.mustard-band,
.now,
.contact {
  border-top: 1px solid rgba(92, 61, 0, 0.22);
}

/* 팀 멤버 — 한 줄 3개 고정 (내용 많으면 높이로 흡수) */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: stretch;
}

.team-card {
  max-width: none;
}

@media (max-width: 768px) {
  .team-grid {
    grid-template-columns: 1fr;
  }
}

/* 아키텍처 스텝 — 흐린 머스타드 톤 */
.flow-step {
  background: #F2DE9F;
  border-color: rgba(92, 61, 0, 0.25);
}

/* 최종 분석 리포트 — 원래 골드 스타일 원복 */
.flow-step--final {
  background: #FFD700;
  border: 6px solid #B8860B;
  box-shadow: 0 4px 20px rgba(225, 173, 1, 0.3);
}

/* 워크플로우 연결 화살표 — 선명하게 */
.flow-arrow {
  font-size: 1.6rem;
  color: #2D2006;
  opacity: 0.85;
  padding: 0.5rem 0;
}

/* ============================================
   v2.9 — 비교표 머스타드AI 열 강조 · 인용구 확대
   ============================================ */

/* 머스타드AI 열 — 다크 헤더 + 밝은 하이라이트 배경 */
.compare-table th:nth-child(3) {
  background: #2D2006;
  color: #FFE082;
  border-radius: 8px 8px 0 0;
  border-bottom: 2px solid #2D2006;
}

.compare-table td:nth-child(3) {
  background: rgba(255, 255, 255, 0.4);
  font-weight: 600;
  color: var(--black);
}

.compare-table tbody tr:last-child td:nth-child(3) {
  border-radius: 0 0 8px 8px;
}

/* 증권사 AI 열 — 흐리게 눌러서 대비 */
.compare-table th:nth-child(2) {
  color: var(--text-muted);
}

.compare-table td:nth-child(2) {
  color: var(--text-muted);
  opacity: 0.75;
}

/* 애널리스트 인용구 — 50% 확대 */
.project-quote {
  font-size: 1.65rem;
  font-weight: 600;
  color: var(--black);
  max-width: 800px;
}

/* ============================================
   v2.10 — 비교표 증권사 AI 열에도 희미한 박스
   ============================================ */

.compare-table th:nth-child(2) {
  background: rgba(0, 0, 0, 0.09);
  border-left: 1.5px solid rgba(0, 0, 0, 0.25);
  border-right: 1.5px solid rgba(0, 0, 0, 0.25);
  border-top: 1.5px solid rgba(0, 0, 0, 0.25);
  border-bottom: 2px solid var(--black);
  border-radius: 8px 8px 0 0;
}

.compare-table td:nth-child(2) {
  background: rgba(0, 0, 0, 0.05);
  border-left: 1.5px solid rgba(0, 0, 0, 0.25);
  border-right: 1.5px solid rgba(0, 0, 0, 0.25);
}

.compare-table tbody tr:last-child td:nth-child(2) {
  border-bottom: 1.5px solid rgba(0, 0, 0, 0.25);
  border-radius: 0 0 8px 8px;
}

/* 테이블 테두리 렌더링 보정 — 열 박스가 끝까지 그려지도록 */
.compare-table table {
  border-collapse: separate;
  border-spacing: 0;
}

/* ============================================
   v2.11 — 비교표 상단 라인을 전체 폭으로 (라운드 제거)
   ============================================ */

.compare-table th {
  border-top: 1.5px solid rgba(0, 0, 0, 0.3);
}

.compare-table th:nth-child(2),
.compare-table th:nth-child(3) {
  border-radius: 0;
}
