:root {
  --bg: #fff8ef;
  --surface: rgba(255, 255, 255, 0.82);
  --surface-strong: #fffef8;
  --text: #241913;
  --muted: #705b4f;
  --line: rgba(36, 25, 19, 0.08);
  --primary: #ff8a1f;
  --primary-deep: #ff5d1f;
  --secondary: #ffd54a;
  --leaf: #2f8f61;
  --accent: #3a2d25;
  --shadow: 0 24px 60px rgba(255, 135, 36, 0.18);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --container: min(1140px, calc(100% - 32px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family:
    "Avenir Next",
    "Segoe UI",
    "Noto Sans KR",
    "Apple SD Gothic Neo",
    sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 0% 0%, rgba(255, 213, 74, 0.55), transparent 28%),
    radial-gradient(circle at 100% 8%, rgba(255, 138, 31, 0.28), transparent 24%),
    radial-gradient(circle at 80% 88%, rgba(47, 143, 97, 0.12), transparent 16%),
    linear-gradient(180deg, #fff9f0 0%, #fffef9 48%, #fff6eb 100%);
}

body.nav-open {
  overflow: hidden;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

.page-shell {
  position: relative;
  overflow: hidden;
}

.section {
  width: var(--container);
  margin: 0 auto;
  padding: 88px 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  width: var(--container);
  margin: 18px auto 0;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 999px;
  background: rgba(255, 251, 243, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(20px);
  box-shadow: 0 12px 30px rgba(58, 45, 37, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: #fff;
  background:
    radial-gradient(circle at 28% 28%, rgba(255, 255, 255, 0.36), transparent 25%),
    linear-gradient(135deg, var(--secondary) 0%, var(--primary) 48%, var(--primary-deep) 100%);
  box-shadow: 0 12px 28px rgba(255, 110, 31, 0.26);
}

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

.site-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 0.96rem;
}

.site-nav a {
  color: var(--muted);
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--text);
}

.nav-cta {
  padding: 12px 18px;
  border-radius: 999px;
  color: #fff !important;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-deep) 100%);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 10px 24px rgba(58, 45, 37, 0.12);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--text);
  border-radius: 99px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.hero {
  min-height: calc(100vh - 96px);
  display: grid;
  grid-template-columns: 1.03fr 0.97fr;
  align-items: center;
  gap: 42px;
  padding-top: 50px;
}

.eyebrow {
  margin: 0 0 14px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  color: var(--leaf);
}

.hero h1,
.section-heading h2,
.highlight-copy h2,
.seo-copy h2,
.apply-copy h2 {
  margin: 0;
  line-height: 1.03;
  letter-spacing: -0.05em;
}

.hero h1 {
  font-size: clamp(2.9rem, 7vw, 5.3rem);
}

.hero-text,
.section-heading p,
.role-card p,
.highlight-copy p,
.process-card p,
.faq-answer p,
.seo-copy p,
.site-footer p,
.apply-copy p,
.apply-notes li,
.benefit-card p,
.screen-card p,
.floating-note p {
  color: var(--muted);
  line-height: 1.72;
}

.hero-text {
  margin: 24px 0 0;
  max-width: 650px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 24px;
  border: 0;
  border-radius: 999px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-deep) 100%);
  box-shadow: 0 18px 40px rgba(255, 110, 31, 0.28);
}

.button-secondary {
  color: var(--accent);
  background: rgba(255, 255, 255, 0.66);
  border: 1px solid rgba(58, 45, 37, 0.1);
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

.hero-points li {
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(58, 45, 37, 0.08);
  background: rgba(255, 255, 255, 0.62);
  font-size: 0.92rem;
}

.hero-visual {
  position: relative;
  min-height: 640px;
  display: grid;
  place-items: center;
}

.mango {
  position: absolute;
  border-radius: 48% 52% 55% 45% / 43% 43% 57% 57%;
  filter: blur(6px);
}

.mango-one {
  top: 42px;
  right: 36px;
  width: 220px;
  height: 170px;
  background: rgba(255, 213, 74, 0.48);
}

.mango-two {
  left: 34px;
  bottom: 36px;
  width: 180px;
  height: 150px;
  background: rgba(255, 138, 31, 0.24);
}

.phone-card {
  position: relative;
  width: min(100%, 430px);
  padding: 20px;
  border-radius: 40px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94) 0%, rgba(255, 250, 240, 0.98) 100%);
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
  z-index: 1;
}

.phone-top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
}

.camera-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--leaf), #7fcf60);
}

.phone-screen,
.highlight-list,
.faq-list,
.apply-form {
  display: grid;
  gap: 14px;
}

.screen-grid,
.benefit-grid,
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.screen-card,
.benefit-card,
.role-card,
.process-card,
.faq-item,
.apply-panel,
.highlight-panel,
.seo-panel {
  border: 1px solid rgba(58, 45, 37, 0.08);
  background: var(--surface);
  backdrop-filter: blur(18px);
  box-shadow: 0 16px 40px rgba(58, 45, 37, 0.06);
}

.screen-card {
  padding: 18px;
  border-radius: 24px;
}

.screen-card strong,
.benefit-card h3,
.role-card h3,
.process-card h3,
.floating-note strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.04rem;
}

.screen-card.highlight {
  color: #fff;
  background: linear-gradient(135deg, #2d8d61 0%, #1f6c49 100%);
}

.screen-card.highlight p,
.screen-card.highlight strong {
  color: inherit;
}

.screen-card.soft {
  background: rgba(255, 213, 74, 0.18);
}

.chip,
.role-tag {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.chip {
  margin-bottom: 12px;
  background: rgba(255, 255, 255, 0.16);
}

.floating-note {
  position: absolute;
  right: -8px;
  bottom: 46px;
  width: 250px;
  padding: 20px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(58, 45, 37, 0.08);
  box-shadow: 0 18px 40px rgba(58, 45, 37, 0.1);
}

.floating-note span,
.benefit-index,
.process-card span,
.highlight-list strong {
  display: block;
  margin-bottom: 10px;
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--primary-deep);
}

.section-grid,
.roles-section,
.process-section,
.faq-section {
  display: grid;
  gap: 34px;
}

.section-heading {
  max-width: 760px;
}

.section-heading h2,
.highlight-copy h2,
.seo-copy h2,
.apply-copy h2 {
  font-size: clamp(2rem, 4vw, 3.3rem);
}

.section-heading p {
  margin: 18px 0 0;
}

.benefit-card,
.role-card,
.process-card,
.faq-item {
  padding: 24px;
  border-radius: var(--radius-lg);
}

.download-links {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.hero-download-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.store-button {
  justify-content: flex-start;
  gap: 12px;
  min-height: 54px;
  padding: 0 18px;
  color: #fff;
  box-shadow: 0 14px 28px rgba(36, 25, 19, 0.12);
}

.android-button {
  background: linear-gradient(135deg, #2f8f61 0%, #1f6f4a 100%);
}

.ios-button {
  background: linear-gradient(135deg, #3a2d25 0%, #1d1612 100%);
}

.store-icon {
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 22px;
}

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

.roles-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 0.9fr;
  gap: 18px;
}

.role-card.wide {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
}

.role-card ul,
.apply-notes {
  padding-left: 20px;
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.role-tag {
  margin-bottom: 14px;
  color: var(--leaf);
  background: rgba(47, 143, 97, 0.12);
}

.highlight-panel,
.apply-panel,
.seo-panel {
  display: grid;
  gap: 28px;
  padding: 34px;
  border-radius: var(--radius-xl);
}

.highlight-panel {
  grid-template-columns: 0.95fr 1.05fr;
  background:
    linear-gradient(135deg, rgba(255, 213, 74, 0.18) 0%, rgba(255, 138, 31, 0.12) 100%),
    rgba(255, 255, 255, 0.82);
}

.highlight-list div {
  padding: 20px 22px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(58, 45, 37, 0.08);
}

.seo-panel {
  grid-template-columns: 1.05fr 0.95fr;
  background:
    radial-gradient(circle at top left, rgba(255, 213, 74, 0.26), transparent 32%),
    rgba(255, 255, 255, 0.82);
}

.seo-list {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.8;
}

.apply-panel {
  grid-template-columns: 0.95fr 1.05fr;
}

.apply-notes {
  margin-top: 18px;
}

.kakao-card {
  display: grid;
  align-content: center;
  gap: 16px;
  padding: 28px;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at top right, rgba(255, 224, 102, 0.5), transparent 34%),
    #fee500;
  border: 1px solid rgba(58, 45, 37, 0.1);
  box-shadow: 0 24px 48px rgba(111, 86, 0, 0.16);
}

.kakao-badge {
  display: inline-flex;
  width: fit-content;
  padding: 8px 12px;
  border-radius: 999px;
  color: rgba(58, 45, 37, 0.82);
  background: rgba(255, 255, 255, 0.52);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.kakao-button {
  gap: 12px;
  color: #391b1b;
  background: #fff;
  box-shadow: 0 14px 30px rgba(57, 27, 27, 0.14);
}

.kakao-icon {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

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

.kakao-caption {
  margin: 0;
  color: rgba(58, 45, 37, 0.82);
  font-size: 0.95rem;
  line-height: 1.6;
  word-break: break-all;
}

.apply-form label {
  display: grid;
  gap: 8px;
  font-weight: 700;
}

.apply-form input,
.apply-form select,
.apply-form textarea {
  width: 100%;
  padding: 16px 18px;
  border: 1px solid rgba(58, 45, 37, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.86);
  color: var(--text);
  outline: none;
}

.apply-form input:focus,
.apply-form select:focus,
.apply-form textarea:focus {
  border-color: rgba(255, 138, 31, 0.45);
  box-shadow: 0 0 0 4px rgba(255, 138, 31, 0.12);
}

.form-feedback {
  min-height: 26px;
  margin: 0;
  font-size: 0.94rem;
}

.form-feedback.success {
  color: #157347;
}

.form-feedback.error {
  color: #b42318;
}

.site-footer {
  width: var(--container);
  margin: 0 auto;
  padding: 0 0 36px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.site-footer strong {
  display: block;
  margin-bottom: 6px;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-reveal="left"] {
  transform: translateX(28px);
}

[data-reveal].revealed {
  opacity: 1;
  transform: translate(0, 0);
}

@media (max-width: 1080px) {
  .hero,
  .highlight-panel,
  .seo-panel,
  .apply-panel,
  .benefit-grid,
  .process-grid,
  .roles-layout,
  .role-card.wide,
  .screen-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .role-card.wide {
    grid-column: 1 / -1;
  }
}

@media (max-width: 820px) {
  .site-header {
    margin-top: 14px;
    padding: 12px 14px;
  }

  .menu-toggle {
    display: inline-block;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    left: 0;
    display: grid;
    gap: 10px;
    padding: 18px;
    border-radius: 28px;
    background: rgba(255, 252, 245, 0.97);
    border: 1px solid rgba(58, 45, 37, 0.08);
    box-shadow: 0 18px 40px rgba(58, 45, 37, 0.12);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-6px);
    transition: opacity 0.22s ease, transform 0.22s ease;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    padding: 12px 14px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.78);
  }

  .nav-cta {
    text-align: center;
  }

  .hero,
  .benefit-grid,
  .process-grid,
  .roles-layout,
  .role-card.wide,
  .highlight-panel,
  .seo-panel,
  .apply-panel,
  .screen-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 44px;
  }

  .hero-visual {
    min-height: 540px;
  }

  .floating-note {
    right: 4px;
    bottom: 16px;
    width: min(240px, 74%);
  }

  .section {
    padding: 74px 0;
  }

  .site-footer {
    flex-direction: column;
    padding-bottom: 28px;
  }
}

@media (max-width: 560px) {
  :root {
    --container: min(100% - 20px, 1140px);
    --radius-xl: 28px;
    --radius-lg: 22px;
  }

  .hero {
    padding-top: 28px;
  }

  .hero h1 {
    font-size: clamp(2.4rem, 14vw, 3.5rem);
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-download-links {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .phone-card {
    padding: 16px;
    border-radius: 30px;
  }

  .benefit-card,
  .role-card,
  .process-card,
  .faq-item,
  .highlight-panel,
  .seo-panel,
  .apply-panel {
    padding: 20px;
  }
}
