:root {
  --primary: #1f7bff;
  --primary-dark: #1459b5;
  --accent: #00c4b3;
  --bg: #f5f8fc;
  --body: #101828;
  --muted: #475467;
  --border: #e4e7ec;
  --shadow: 0 20px 40px rgba(31, 123, 255, 0.08);
  font-size: 16px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Pretendard', 'Apple SD Gothic Neo', 'Noto Sans KR', sans-serif;
  color: var(--body);
  background: #ffffff;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1100px, 92vw);
  margin: 0 auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn.primary {
  background: linear-gradient(120deg, var(--primary), var(--accent));
  color: #ffffff;
  box-shadow: var(--shadow);
}

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

.btn.ghost {
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.4);
}

.btn.ghost:hover {
  background: rgba(255, 255, 255, 0.3);
}

.btn.tertiary {
  background: #eef4ff;
  color: var(--primary);
  border: none;
  font-size: 0.85rem;
  padding: 0.45rem 0.8rem;
  border-radius: 8px;
}

.btn.wide {
  width: 100%;
}

.hero {
  position: relative;
  overflow: hidden;
  color: #ffffff;
  padding: 3.5rem 0 5rem;
  min-height: 70vh;
  display: flex;
  align-items: center;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(5, 12, 30, 0.65), rgba(10, 35, 76, 0.35));
  z-index: 0;
}

.hero > .container {
  position: relative;
  z-index: 1;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.hero-layout {
  max-width: 680px;
}

.top-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3rem;
}

.brand {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.hero-content {
  max-width: 620px;
}

.hero-content h1 {
  font-size: clamp(2.1rem, 4vw, 3rem);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.hero-content p {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.section {
  padding: 4.5rem 0;
}

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

.section-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-header h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: 0.75rem;
}

.section-header p {
  color: var(--muted);
  margin: 0;
}

.columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  align-items: start;
}

.text-block h2 {
  margin-top: 0;
}

.bullet-list {
  padding-left: 1.2rem;
  margin: 1.5rem 0 0;
  color: var(--muted);
}

.bullet-list li {
  margin-bottom: 0.6rem;
}

.card {
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid var(--border);
  padding: 2rem;
  box-shadow: 0 18px 44px rgba(16, 24, 40, 0.06);
}

.card.highlight {
  background: linear-gradient(160deg, #ffffff 30%, rgba(239, 244, 255, 0.9) 100%);
}

.card h3 {
  margin-top: 0;
}

.status-board {
  border-radius: 20px;
  border: 1px solid var(--border);
  overflow: hidden;
  background: #ffffff;
}

.status-head,
.status-body li {
  display: grid;
  grid-template-columns: 1.2fr 1.8fr 1.2fr 1.5fr 1fr;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.5rem;
}

.status-head {
  background: var(--bg);
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  font-size: 0.9rem;
}

.status-body {
  position: relative;
  height: 320px;
  overflow: hidden;
}

.status-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.status-body li {
  border-bottom: 1px solid var(--border);
  transition: transform 0.5s ease;
}

.status-body li:last-child {
  border-bottom: none;
}

.status-body li.slide-up {
  transform: translateY(-100%);
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.review-card {
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid var(--border);
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  color: var(--muted);
}

.review-card h3 {
  color: var(--body);
  margin: 0;
}

.review-card p {
  margin: 0;
  line-height: 1.6;
}

.review-card .author {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--body);
}

.stars {
  font-size: 1.1rem;
  color: #ffb400;
  letter-spacing: 0.2rem;
}

.form {
  max-width: 640px;
  margin: 0 auto;
  display: grid;
  gap: 1.2rem;
  background: #ffffff;
  padding: 2rem;
  border-radius: 18px;
  border: 1px solid var(--border);
  box-shadow: 0 16px 38px rgba(16, 24, 40, 0.08);
}

.franchise-form {
  margin-top: 1.5rem;
  transition: max-height 0.4s ease;
  overflow: hidden;
}

.franchise-form:not([data-open]) {
  padding-top: 0;
  padding-bottom: 0;
  border-width: 0;
  box-shadow: none;
}

.form fieldset {
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.2rem 1.5rem;
  margin: 0;
}

.form legend {
  font-weight: 600;
  padding: 0 0.5rem;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.field span {
  font-weight: 600;
}

.field input {
  padding: 0.85rem 1rem;
  border-radius: 12px;
  border: 1px solid var(--border);
  font-size: 1rem;
  transition: border 0.2s ease, box-shadow 0.2s ease;
}

.field input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(31, 123, 255, 0.15);
}

.checkbox {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 500;
  color: var(--muted);
}

.checkbox input {
  width: 18px;
  height: 18px;
}

.checkbox.agreement {
  align-items: flex-start;
  line-height: 1.5;
}

.recruit {
  background: linear-gradient(120deg, rgba(31, 123, 255, 0.12), rgba(0, 196, 179, 0.08));
}

.footer {
  background: #0b1f3a;
  color: #ffffff;
  padding: 2.5rem 0 2rem;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1.5rem;
  align-items: center;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
  font-weight: 500;
}

.footer-copy {
  text-align: center;
  margin: 1.5rem 0 0;
  font-size: 0.85rem;
  color: #d0d5dd;
}

.footer-company {
  margin-top: 1rem;
  font-size: 0.8rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.75);
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 2.5rem;
  transform: translate(-50%, 25px);
  background: #0b66ff;
  color: #ffffff;
  padding: 1rem 1.5rem;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 20px 30px rgba(11, 102, 255, 0.25);
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 9999;
}

.toast.visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

@media (max-width: 720px) {
  .top-nav {
    flex-direction: column;
    gap: 1rem;
  }

  .status-head,
  .status-body li {
    grid-template-columns: 1.3fr 1.7fr 1.1fr 1.3fr 1fr;
    font-size: 0.9rem;
  }

  .status-body li button {
    padding: 0.35rem 0.7rem;
  }
}

@media (max-width: 520px) {
  .status-head span:nth-child(3),
  .status-head span:nth-child(5),
  .status-body span:nth-child(3),
  .status-body span:nth-child(5) {
    display: none;
  }

  .status-head,
  .status-body li {
    grid-template-columns: 1.3fr 1.7fr 1.5fr;
  }

  .status-body li {
    font-size: 0.9rem;
  }
}

