/* 머니올데이 — soft ocean teal, unique from yellow clone layouts */
:root {
  --primary: #0d9f8c;
  --primary-dark: #0a7a6c;
  --primary-deep: #075e54;
  --primary-light: #2ec4b3;
  --primary-soft: #e8f8f5;
  --primary-mist: #f3fbf9;
  --accent: #ff7a59;
  --channel: #7452ff;
  --channel-dark: #5e3fe0;
  --channel-text: #ffffff;
  --dark: #12212a;
  --text: #1a2b35;
  --muted: #6b7c85;
  --line: rgba(13, 159, 140, 0.12);
  --white: #ffffff;
  --shadow: 0 12px 40px rgba(7, 94, 84, 0.12);
  --radius: 22px;
  --header-h: 72px;
  --banner-h: 58px;
  --font: "Pretendard Variable", Pretendard, -apple-system, BlinkMacSystemFont, "Apple SD Gothic Neo", "Noto Sans KR", sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  padding-bottom: var(--banner-h);
  -webkit-font-smoothing: antialiased;
}

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

ul,
ol {
  list-style: none;
}

.content {
  width: min(1080px, calc(100% - 40px));
  margin: 0 auto;
}

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: var(--primary);
  margin-bottom: 12px;
}

.eyebrow.light {
  color: rgba(255, 255, 255, 0.7);
}

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

.section-head h2 {
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  margin-bottom: 8px;
}

.section-head p {
  color: var(--muted);
}

/* Header */
.header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header-h);
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: 0.3s ease;
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.95);
  border-bottom-color: var(--line);
  box-shadow: 0 6px 24px rgba(16, 34, 39, 0.06);
}

.header-inner {
  width: min(1080px, calc(100% - 32px));
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: -0.03em;
}

.logo-mark {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, var(--primary-light), var(--primary-dark));
  color: var(--white);
  box-shadow: 0 8px 18px rgba(18, 138, 143, 0.3);
}

.logo-mark.light {
  box-shadow: none;
}

.contact-buttons {
  display: flex;
  gap: 8px;
}

.phone-btn,
.channel-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 15px;
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 700;
  transition: transform 0.2s, box-shadow 0.2s;
}

.phone-btn {
  background: var(--primary-soft);
  color: var(--primary-dark);
  border: 1px solid rgba(13, 159, 140, 0.18);
}

.channel-btn {
  background: var(--channel);
  color: var(--channel-text);
}

.phone-btn:hover,
.channel-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
}

/* Hero — person image flush to thigh crop line */
.hero {
  position: relative;
  padding: calc(var(--header-h) + 24px) 0 0;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 60% at 85% 40%, rgba(42, 181, 184, 0.45), transparent 55%),
    radial-gradient(ellipse 60% 50% at 10% 80%, rgba(255, 208, 120, 0.16), transparent 50%),
    linear-gradient(155deg, #0a7a6c 0%, #0d9f8c 42%, #14b8a6 78%, #2dd4bf 100%);
  color: var(--white);
}

.hero-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.18;
  background-image:
    linear-gradient(30deg, transparent 40%, rgba(255, 255, 255, 0.35) 40%, rgba(255, 255, 255, 0.35) 60%, transparent 60%),
    linear-gradient(150deg, transparent 40%, rgba(255, 255, 255, 0.2) 40%, rgba(255, 255, 255, 0.2) 60%, transparent 60%);
  background-size: 72px 72px;
  animation: patternDrift 28s linear infinite;
}

.hero-glow {
  position: absolute;
  width: 420px;
  height: 420px;
  right: 8%;
  top: 18%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.28), transparent 70%);
  filter: blur(8px);
  animation: glowPulse 5s ease-in-out infinite;
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 24px;
  align-items: end;
  min-height: 0;
}

.hero-text {
  padding: 48px 0 72px;
  align-self: center;
}

.hero-eyebrow {
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 600;
  opacity: 0.95;
  margin-bottom: 12px;
}

.hero-title {
  font-size: clamp(3.2rem, 8vw, 5.6rem);
  font-weight: 900;
  letter-spacing: -0.06em;
  line-height: 1.05;
  margin-bottom: 14px;
  text-shadow:
    0 2px 0 rgba(7, 94, 84, 0.25),
    0 18px 40px rgba(7, 94, 84, 0.28);
}

.hero-desc {
  font-size: 1.05rem;
  font-weight: 500;
  opacity: 0.92;
  line-height: 1.55;
  margin-bottom: 28px;
  max-width: none;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  border-radius: 999px;
  background: var(--white);
  color: var(--primary-dark);
  font-weight: 800;
  font-size: 1.05rem;
  box-shadow: 0 14px 32px rgba(7, 94, 84, 0.25);
  transition: transform 0.25s, box-shadow 0.25s;
}

.hero-cta:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 18px 40px rgba(7, 94, 84, 0.32);
}

.hero-cta i {
  transition: transform 0.25s;
}

.hero-cta:hover i {
  transform: translateX(4px);
}

.hero-visual {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  line-height: 0;
  margin-bottom: 0;
}

.hero-person {
  display: block;
  width: min(100%, 640px);
  height: auto;
  max-height: min(88vh, 820px);
  object-fit: contain;
  object-position: bottom center;
  user-select: none;
  pointer-events: none;
}

/* Pillars */
.pillars {
  position: relative;
  z-index: 2;
  padding: 56px 0 64px;
  background: var(--primary-mist);
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.pillar {
  position: relative;
  padding: 28px 26px 30px;
  border-radius: 24px;
  background: var(--white);
  border: 1px solid rgba(13, 159, 140, 0.1);
  box-shadow:
    0 18px 40px rgba(7, 94, 84, 0.1),
    0 2px 0 rgba(255, 255, 255, 0.8) inset;
  overflow: hidden;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.pillar::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-light), var(--primary-dark));
  opacity: 0.9;
}

.pillar:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px rgba(7, 94, 84, 0.16);
}

.pillar-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.pillar-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, var(--primary-soft), #d4f3ee);
  color: var(--primary-dark);
  font-size: 1.2rem;
  box-shadow: inset 0 0 0 1px rgba(13, 159, 140, 0.12);
}

.pillar-num {
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
  background: linear-gradient(180deg, rgba(13, 159, 140, 0.22), rgba(13, 159, 140, 0.05));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.pillar h3 {
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 10px;
  color: var(--text);
}

.pillar p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

/* About */
.about {
  padding: 88px 0 72px;
  background: var(--primary-mist);
}

.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.about-copy h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 1.25;
  margin-bottom: 18px;
}

.about-lead {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 28em;
}

.about-points {
  display: grid;
  gap: 14px;
}

.about-point {
  display: flex;
  gap: 16px;
  padding: 20px 18px;
  border-radius: 18px;
  background: var(--white);
  border: 1px solid var(--line);
}

.about-point > i {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  background: linear-gradient(145deg, var(--primary-light), var(--primary-dark));
  color: var(--white);
}

.about-point h3 {
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: 4px;
}

.about-point p {
  color: var(--muted);
  font-size: 0.92rem;
}

/* Brands */
.brands {
  padding: 80px 0;
  background: var(--primary-mist);
}

.brand-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.brand-card {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 96px;
  padding: 18px 20px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid rgba(13, 159, 140, 0.1);
  box-shadow: 0 8px 24px rgba(7, 94, 84, 0.06);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.brand-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(7, 94, 84, 0.12);
}

.brand-card img {
  display: block;
  width: 100%;
  max-width: 168px;
  max-height: 52px;
  height: auto;
  object-fit: contain;
}

/* Guide / flow */
.guide {
  padding: 80px 0;
  background: linear-gradient(180deg, #f7fcfc 0%, #eef8f8 100%);
}

.flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.flow-item {
  padding: 26px 20px;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 10px 28px rgba(8, 75, 79, 0.05);
  transition: transform 0.25s, box-shadow 0.25s;
}

.flow-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.flow-icon {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  background: linear-gradient(145deg, rgba(255, 122, 89, 0.15), rgba(18, 138, 143, 0.15));
  color: var(--primary-dark);
  font-size: 1.2rem;
}

.flow-step {
  display: block;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin-bottom: 6px;
}

.flow-body h3 {
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.flow-body p {
  color: var(--muted);
  font-size: 0.92rem;
}

/* Promise */
.promise {
  padding: 20px 0 80px;
  background: #eef8f8;
}

.promise-box {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 32px;
  align-items: center;
  padding: 40px 40px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 92% 18%, rgba(255, 122, 89, 0.22), transparent 42%),
    linear-gradient(135deg, #0c6569, #128a8f 55%, #1aa0a4);
  color: var(--white);
  box-shadow: var(--shadow);
}

.promise-copy {
  max-width: 28em;
}

.promise-box h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  margin-bottom: 8px;
}

.promise-box .promise-copy > p:last-of-type {
  opacity: 0.88;
  line-height: 1.6;
}

.promise-tags {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.promise-tags li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.22);
  font-weight: 700;
  font-size: 0.95rem;
  backdrop-filter: blur(6px);
  transition: background 0.2s ease, transform 0.2s ease;
}

.promise-tags li:hover {
  background: rgba(255, 255, 255, 0.22);
  transform: translateY(-1px);
}

.promise-tags i {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.95);
  color: var(--primary-dark);
  font-size: 0.65rem;
}

/* Contact */
.contact {
  padding: 88px 0;
  background: var(--dark);
  color: var(--white);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.contact-copy h2 {
  font-size: clamp(1.7rem, 3.4vw, 2.4rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.25;
  margin-bottom: 14px;
}

.contact-copy p {
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.7;
}

.contact-cards {
  display: grid;
  gap: 12px;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 22px;
  border-radius: 18px;
  transition: transform 0.2s, box-shadow 0.2s;
}

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

.phone-card {
  background: linear-gradient(135deg, var(--primary-light), var(--primary-dark));
}

.channel-card {
  background: linear-gradient(135deg, var(--channel), var(--channel-dark));
  color: var(--channel-text);
}

.card-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.2);
  flex-shrink: 0;
}

.channel-icon {
  background: rgba(255, 255, 255, 0.2);
}

.card-info {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 0;
}

.card-label {
  font-size: 0.85rem;
  opacity: 0.85;
  font-weight: 600;
}

.card-value {
  font-size: 1.15rem;
  font-weight: 800;
}

.card-arrow {
  opacity: 0.7;
}

/* Footer */
.footer {
  background: #0a1518;
  color: rgba(255, 255, 255, 0.62);
  padding: 48px 0 36px;
  font-size: 0.875rem;
}

.footer-inner {
  width: min(1080px, calc(100% - 40px));
  margin: 0 auto;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-weight: 800;
  font-size: 1.05rem;
  margin-bottom: 14px;
}

.footer-info {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin-bottom: 14px;
}

.footer-notice {
  margin-bottom: 8px;
  opacity: 0.8;
}

.footer-copy {
  opacity: 0.55;
}

/* Bottom banner */
.bottom-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 110;
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: var(--banner-h);
  box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.12);
}

.bottom-banner a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 800;
}

.banner-phone {
  background: var(--primary-dark);
  color: var(--white);
}

.banner-channel {
  background: var(--channel);
  color: var(--channel-text);
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

.delay-1 {
  transition-delay: 0.1s;
}
.delay-2 {
  transition-delay: 0.2s;
}
.delay-3 {
  transition-delay: 0.3s;
}

@keyframes patternDrift {
  from {
    background-position: 0 0, 0 0;
  }
  to {
    background-position: 72px 72px, -72px 72px;
  }
}

@keyframes glowPulse {
  0%,
  100% {
    opacity: 0.7;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.08);
  }
}

@media (max-width: 920px) {
  .hero-content,
  .about-layout,
  .contact-layout,
  .flow,
  .pillars-grid {
    grid-template-columns: 1fr;
  }

  .brand-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero {
    padding: calc(var(--header-h) + 28px) 0 0;
  }

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

  .hero-text {
    padding: 24px 0 28px;
    order: 1;
  }

  .hero-desc {
    max-width: none;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-visual {
    order: 2;
    justify-content: center;
  }

  .hero-person {
    width: min(86%, 480px);
    max-height: min(64vh, 620px);
  }

  .promise-box {
    grid-template-columns: 1fr;
    padding: 32px 24px;
  }

  .promise-tags {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 560px) {
  :root {
    --header-h: 64px;
  }

  .phone-btn i,
  .channel-btn i {
    display: none;
  }

  .phone-btn,
  .channel-btn {
    padding: 9px 12px;
    font-size: 0.8rem;
  }

  .hero-person {
    width: min(92%, 400px);
    max-height: min(56vh, 520px);
  }

  .about,
  .brands,
  .guide,
  .contact {
    padding: 64px 0;
  }

  .promise {
    padding-bottom: 64px;
  }
}
